GETFH(2) | System Calls Manual | GETFH(2) |
getfh
, lgetfh
,
getfhat
— get file
handle
Standard C Library (libc, -lc)
#include
<sys/param.h>
#include <sys/mount.h>
int
getfh
(const
char *path, fhandle_t
*fhp);
int
lgetfh
(const
char *path, fhandle_t
*fhp);
int
getfhat
(int
fd, const char
*path, fhandle_t
*fhp, int
flag);
The
getfh
()
system call returns a file handle for the specified file or directory in the
file handle pointed to by fhp.
The
lgetfh
()
system call is like getfh
() except in the case where
the named file is a symbolic link, in which case
lgetfh
() returns information about the link, while
getfh
() returns information about the file the link
references.
The
getfhat
()
system call is equivalent to getfh
() and
lgetfh
() except when the path
specifies a relative path, or the AT_BENEATH
flag is
provided. For getfhat
() and relative
path, the status is retrieved from a file relative to
the directory associated with the file descriptor fd
instead of the current working directory. For
AT_BENEATH
and absolute path,
the status is retrieved from a file specified by the
path, but additional permission checks are performed,
see below.
The values for the flag are constructed by a
bitwise-inclusive OR of flags from this list, defined in
<fcntl.h>
:
AT_SYMLINK_NOFOLLOW
AT_BENEATH
O_BENEATH
flag in the
open(2) manual page.If
getfhat
()
is passed the special value AT_FDCWD
in the
fd parameter, the current working directory is used
and the behavior is identical to a call to
getfth
()
or lgetfh
() respectively, depending on whether or
not the AT_SYMLINK_NOFOLLOW
bit is set in
flag.
When
getfhat
()
is called with an absolute path without the
AT_BENEATH
flag, it ignores the
fd argument. When AT_BENEATH
is specified with an absolute path, a directory passed
by the fd argument is used as the topping point for
the resolution. These system calls are restricted to the superuser.
Upon successful completion, the value 0 is returned; otherwise the value -1 is returned and the global variable errno is set to indicate the error.
The getfh
() and
lgetfh
() system calls fail if one or more of the
following are true:
ENOTDIR
]ENAMETOOLONG
]ENOENT
]EACCES
]ELOOP
]EFAULT
]EFAULT
]EIO
]EINTEGRITY
]ESTALE
]In addition to the errors returned by
getfh
(), and lgetfh
(), the
getfhat
() system call may fail if:
EBADF
]AT_FDCWD
nor a valid file descriptor open for
searching.EINVAL
]ENOTDIR
]AT_FDCWD
nor a
file descriptor associated with a directory.The getfh
() system call first appeared in
4.4BSD.
March 30, 2020 | Debian |