int mount(const char *source, const char *target, const char *filesystemtype, unsigned lo

mount() - Unix, Linux System Call


previous next AddThis Social Bookmark Button


Advertisements

NAME

mount, umount - mount and unmount filesystems

SYNOPSIS

#include <sys/mount.h> 

int mount(const char *source, const char *target, const char *filesystemtype, unsigned long mountflags, const void *data);

int umount(const char *target);

int umount2(const char *target, int flags);

DESCRIPTION

mount() attaches the filesystem specified by source (which is often a device name, but can also be a directory nameor a dummy) to the directory specified by target.

umount() andumount2() remove the attachment of the (topmost) filesystem mounted ontarget.

Appropriate privilege (Linux: theCAP_SYS_ADMIN capability) is required to mount and unmount filesystems.

Since Linux 2.4 a single filesystem can be visible atmultiple mount points, and multiple mounts can be stackedon the same mount point.

Values for thefilesystemtype argument supported by the kernel are listed in/proc/filesystems (like "minix", "ext2", "msdos", "proc", "nfs", "iso9660" etc.).Further types may become available when the appropriate modulesare loaded.

Themountflags argument may have the magic number 0xC0ED (MS_MGC_VAL)in the top 16 bits (this was required in kernel versions prior to 2.4, butis no longer required and ignored if specified),and various mount flags (as defined in <linux/fs.h> for libc4 and libc5and in <sys/mount.h> for glibc2) in the low order 16 bits:

TagDescription
MS_BIND
 (Linux 2.4 onwards)Perform a bind mount, making a file or a directory subtree visible atanother point within a file system.Bind mounts may cross file system boundaries and spanchroot(2)jails.Thefilesystemtype, mountflags, and data arguments are ignored.
MS_DIRSYNC (since Linux 2.5.19)
 Make directory changes on this file system synchronous.(This property can be obtained for individual directoriesor subtrees usingchattr(8).)
MS_MANDLOCK
 Permit mandatory locking on files in this file system.(Mandatory locking must still be enabled on a per-file basis,as described infcntl(2).)
MS_MOVE
 Move a subtree.source specifies an existing mount point andtarget specifies the new location.The move is atomic: at no point is the subtree unmounted.Thefilesystemtype, mountflags, and data arguments are ignored.
MS_NOATIME
 Do not update access times for (all types of) files on this file system.
MS_NODEV
 Do not allow access to devices (special files) on this file system.
MS_NODIRATIME
 Do not update access times for directories on this file system.
MS_NOEXEC
 Do not allow programs to be executed from this file system.
MS_NOSUID
 Do not honour set-user-ID and set-group-ID bits when executingprograms from this file system.
MS_RDONLY
 Mount file system read-only.
MS_REMOUNT
 Remount an existing mount. This is allows you to change themountflags anddata of an existing mount without having to unmount and remount the file system.source andtarget should be the same values specified in the initialmount() call;filesystemtype is ignored.

The followingmountflags can be changed:MS_RDONLY, MS_SYNCHRONOUS, MS_MANDLOCK; before kernel 2.6.16, the following could also be changed:MS_NOATIME andMS_NODIRATIME; and, additionally, before kernel 2.4, the following could also be changed:MS_NOSUID, MS_NODEV, MS_NOEXEC.

MS_SYNCHRONOUS
 Make writes on this file system synchronous (as thoughtheO_SYNC flag toopen(2)was specified for all file opens to this file system).
From Linux 2.4 onwards, theMS_NODEV, MS_NOEXEC, and MS_NOSUID flags are settable on a per-mount-point basis.From kernel 2.6.16 onwards,MS_NOATIME andMS_NODIRATIME are also settable on a per-mount-point basis.
Thedata argument is interpreted by the different file systems.Typically it is a string of comma-separated optionsunderstood by this file system.Seemount(8)for details of the options available for each filesystem type.
Linux 2.1.116 added theumount2() system call, which, likeumount(), unmounts a target, but allows additionalflags controlling the behaviour of the operation:
MNT_FORCE (since Linux 2.1.116)
 Force unmount even if busy.(Only for NFS mounts.)
MNT_DETACH (since Linux 2.4.11)
 Perform a lazy unmount: make the mount point unavailable fornew accesses, and actually perform the unmount when the mount pointceases to be busy.
MNT_EXPIRE (since Linux 2.6.8)
 Mark the mount point as expired.If a mount point is not currently in use, then an initial call toumount2() with this flag fails with the errorEAGAIN, but marks the mount point as expired.The mount point remains expired as long as it isn’t accessedby any process.A secondumount2() call specifyingMNT_EXPIRE unmounts an expired mount point.This flag cannot be specified with eitherMNT_FORCE orMNT_DETACH.

RETURN VALUE

On success, zero is returned. On error, -1 is returned, and errno is set appropriately.

ERRORS

The error values given below result from filesystem type independenterrors. Each filesystem type may have its own special errors and itsown special behavior. See the kernel source code for details.

TagDescription
EACCESA component of a path was not searchable. (See alsopath_resolution(2).)Or, mounting a read-only filesystem was attempted without giving theMS_RDONLY flag.Or, the block devicesource is located on a filesystem mounted with theMS_NODEV option.
EAGAINA call toumount2() specifyingMNT_EXPIRE successfully marked an unbusy file system as expired.
EBUSYsource is already mounted. Or, it cannot be remounted read-only,because it still holds files open for writing.Or, it cannot be mounted ontarget becausetarget is still busy (it is the working directory of some task,the mount point of another device, has open files, etc.).Or, it could not be unmounted because it is busy.
EFAULTOne of the pointer arguments points outside the user address space.
EINVALsource had an invalid superblock.Or, a remount(MS_REMOUNT) was attempted, butsource was not already mounted ontarget. Or, a move(MS_MOVE) was attempted, butsource was not a mount point, or was ’/’.Or, an unmount was attempted, buttarget was not a mount point.Or,umount2() was called withMNT_EXPIRE and eitherMNT_DETACH orMNT_FORCE.
ELOOPToo many link encountered during pathname resolution.Or, a move was attempted, whiletarget is a descendant ofsource.
EMFILE(In case no block device is required:)Table of dummy devices is full.
ENAMETOOLONG
 A pathname was longer than MAXPATHLEN.
ENODEVfilesystemtype not configured in the kernel.
ENOENTA pathname was empty or had a nonexistent component.
ENOMEMThe kernel could not allocate a free page to copy filenames or data into.
ENOTBLK
 source is not a block device (and a device was required).
ENOTDIR
 The second argument, or a prefix of the first argument, is nota directory.
ENXIOThe major number of the block devicesource is out of range.
EPERMThe caller does not have the required privileges.

CONFORMING TO

These functions are Linux-specific and should not be used inprograms intended to be portable.

HISTORY

The original umount() function was called as umount(device) and would return ENOTBLKwhen called with something other than a block device.In Linux 0.98p4 a call umount(dir) was added, in order tosupport anonymous devices.In Linux 2.3.99-pre7 the call umount(device) was removed,leaving only umount(dir) (since now devices can be mountedin more than one place, so specifying the device does not suffice).

The original MS_SYNC flag was renamed MS_SYNCHRONOUS in 1.1.69when a different MS_SYNC was added to <mman.h>.

Before Linux 2.4 an attempt to execute a set-user-ID or set-group-ID programon a filesystem mounted withMS_NOSUID would fail withEPERM. Since Linux 2.4 the set-user-ID and set-group-ID bits arejust silently ignored in this case.

SEE ALSO

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值