OpenBSD manual page server

Manual Page Search Parameters

MKNOD(2) System Calls Manual MKNOD(2)

mknod, mknodatmake a special file node

#include <sys/stat.h>

int
mknod(const char *path, mode_t mode, dev_t dev);

#include <sys/stat.h>
#include <fcntl.h>

int
mknodat(int fd, const char *path, mode_t mode, dev_t dev);

The device special file path is created with the major and minor device numbers extracted from mode. The access permissions of path are descendant from the umask(2) of the parent process.

If mode indicates a block or character special file, dev is a configuration dependent specification of a character or block I/O device and the superblock of the device. If mode does not indicate a block special or character special device, dev is ignored.

() requires superuser privileges.

The () function is equivalent to mknod() except that where path specifies a relative path, the newly created device special file is created relative to the directory associated with file descriptor fd instead of the current working directory.

If () is passed the special value AT_FDCWD (defined in <fcntl.h>) in the fd parameter, the current working directory is used and the behavior is identical to a call to mknod().

Upon successful completion a value of 0 is returned. Otherwise, a value of -1 is returned and errno is set to indicate the error.

mknod() and mknodat() will fail and the file will be not created if:

[]
A component of the path prefix is not a directory.
[]
A component of a pathname exceeded {NAME_MAX} characters, or an entire path name exceeded {PATH_MAX} characters.
[]
A component of the path prefix does not exist.
[]
Search permission is denied for a component of the path prefix.
[]
Too many symbolic links were encountered in translating the pathname.
[]
The process's effective user ID is not superuser.
[]
An I/O error occurred while making the directory entry or allocating the inode.
[]
The directory in which the entry for the new node is being placed cannot be extended because there is no space left on the file system containing the directory.
[]
There are no free inodes on the file system on which the node is being created.
[]
The directory in which the entry for the new node is being placed cannot be extended because the user's quota of disk blocks on the file system containing the directory has been exhausted.
[]
The user's quota of inodes on the file system on which the node is being created has been exhausted.
[]
The named file resides on a read-only file system.
[]
The named file exists.
[]
path points outside the process's allocated address space.
[]
The process is running within an alternate root directory, as created by chroot(2).

Additionally, mknodat() will fail if:

[]
The path argument specifies a relative path and the fd argument is neither AT_FDCWD nor a valid file descriptor.
[]
The path argument specifies a relative path and the fd argument is a valid file descriptor but it does not reference a directory.
[]
The path argument specifies a relative path but search permission is denied for the directory which the fd file descriptor references.

chmod(2), chroot(2), stat(2), umask(2)

The mknod() and mknodat() functions conform to IEEE Std 1003.1-2008 (“POSIX.1”).

The mknod() system call first appeared in Version 4 AT&T UNIX, and mknodat() has been available since OpenBSD 5.0.

July 17, 2013 OpenBSD-5.6