#include <unistd.h> int readlink(const char *path, char *buf, size_t bufsiz);Service Program Name: QP0LLIB1
The readlink() function places the contents of the symbolic link path in the buffer buf. The size of the buffer is set by bufsiz. The contents of the returned buffer do not include a terminating NULL. When bufsiz is 0, the number of bytes contained in the symbolic link is returned and the buffer is unchanged.
If the buffer is too small to contain the contents of the symbolic link, the contents are truncated to the size of the buffer (bufsiz).
A successful readlink(), where bufsiz is greater than zero, sets the access time of the symbolic link.
This parameter is assumed to be represented in the CCSID (coded character set identifier) currently in effect for the job. If the CCSID of the job is 65535, this parameter is assumed to be represented in the default CCSID of the job.
See QlgReadlink()--Read Value of Symbolic Link for a description and an example of supplying the path in any CCSID.
This parameter will be returned in the CCSID currently in effect for the job. If the CCSID of the job is 65535, this parameter is assumed to be represented in the default CCSID of the job.
Note: Adopted authority is not used.
Authorization required for readlink()Object Referred to | Authority Required | errno |
---|---|---|
Each directory in the path name preceding the object | *X | EACCES |
Object | None | None |
When bufsiz is greater than zero, the value returned is the number of bytes placed in the buffer. When bufsiz is zero, the value returned is the number of bytes contained in the symbolic link. The buffer is not changed.
If the return value is equal to bufsiz, the entire contents of the symbolic link may not have been returned. You can determine the size of the contents of the symbolic link by using either lstat() or readlink() with a zero value for bufsiz.
If readlink() is not successful, errno usually indicates one of the following errors. Under some conditions, errno could indicate an error other than those listed here.
Error condition | Additional information |
---|---|
[EACCES] |
If you are accessing a remote file through the Network File System, update operations to file permissions at the server are not reflected at the client until updates to data that is stored locally by the Network File System take place. (Several options on the Add Mounted File System (ADDMFS) command determine the time between refresh operations of local data.) Access to a remote file may also fail due to different mappings of user IDs (UID) or group IDs (GID) on the local and remote systems. |
[EAGAIN] | |
[EBADFID] | |
[EBADNAME] | |
[EBUSY] | |
[ECONVERT] | |
[EDAMAGE] | |
[EFAULT] | |
[EFILECVT] | |
[EINTR] | |
[EINVAL] |
For example, the named file is not a symbolic link. |
[EIO] | |
[EISDIR] | |
[ELOOP] | |
[ENAMETOOLONG] | |
[ENOENT] | |
[ENOMEM] | |
[ENOSPC] | |
[ENOTAVAIL] | |
[ENOTDIR] | |
[ENOTSAFE] | |
[ENOTSUP] | |
[EROOBJ] | |
[ESTALE] |
If you are accessing a remote file through the Network File System, the file may have been deleted at the server. |
[EUNKNOWN] |
If interaction with a file server is required to access the object, errno could indicate one of the following errors:
Error condition | Additional information |
---|---|
[EADDRNOTAVAIL] | |
[ECONNABORTED] | |
[ECONNREFUSED] | |
[ECONNRESET] | |
[EHOSTDOWN] | |
[EHOSTUNREACH] | |
[ENETDOWN] | |
[ENETRESET] | |
[ENETUNREACH] | |
[ESTALE] |
If you are accessing a remote file through the Network File System, the file may have been deleted at the server. |
[ETIMEDOUT] | |
[EUNATCH] |
The following messages may be sent from this function:
Message ID | Error Message Text |
---|---|
CPE3418 E | Possible APAR condition or hardware failure. |
CPFA0D4 E | File system error occurred. Error number &1. |
CPF3CF2 E | Error(s) occurred during running of &1 API. |
CPF9872 E | Program or service program &1 in library &2 ended. Reason code &3. |
This function will fail with error code [ENOTSAFE] when all the following conditions are true:
See Code disclaimer information for information pertaining to code examples.
The following example uses readlink():
#include <unistd.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> main() { char fn[]="readlink.file"; char sl[]="readlink.symlink"; char buf[30]; int file_descriptor; if ((file_descriptor = creat(fn, S_IWUSR)) < 0) perror("creat() error"); else { close(file_descriptor); if (symlink(fn, sl) != 0) perror("symlink() error"); else { if (readlink(sl, buf, sizeof(buf)) < 0) perror("readlink() error"); else printf("readlink() returned '%s' for '%s'\n", buf, sl); unlink(sl); } unlink(fn); } }
Output:
readlink() returned 'readlink.file' for 'readlink.symlink'
Top | UNIX-Type APIs | APIs by category |