Hubbry Logo
search
logo
Mkstemp
Mkstemp
current hub

Mkstemp

logo
Community Hub0 Subscribers
Write something...
Be the first to start a discussion here.
Be the first to start a discussion here.
See all
Mkstemp

In computing, mkstemp is a POSIX function for creating a temporary file (a computer file which usually ceases to exist when the program, which opened the file, closes it or terminates). It accepts an argument that determines the location of the temporary file, and the prefix of its generated filename. After mkstemp was added to the Single UNIX Specification, the function tmpnam() was deprecated, because the latter carried the risk that a temporary file with the same name could be created by another thread or process within the time from when the caller obtains the temporary filename and attempts to create it. mkstemp does not suffer from this problem.

In C, this is included by <stdlib.h> (or <cstdlib> in C++, if import std; is not available) per IEEE Std 1003.1, 2004, otherwise it is included through <unistd.h> in legacy systems.

In C++, it can be replaced with std::tmpnam() or std::filesystem::temp_directory_path().

Do note that template is a keyword in C++, for templates.

The following code is an example of the usage of mkstemp; the local variable filename is modified by mkstemp and will contain the path to the new file:

It is unspecified if mkstemp sets errno, and what values of errno are set, in the event of failure.

The mkstemp function generates a filename according to the supplied argument for the template, and attempts to create it. It repeats this process until a file has been successfully created. After this, it opens the file and returns the file descriptor to the caller, with the data buffer that was passed to the function with the template now containing the new filename. The file can be deleted immediately after the mkstemp call returns to prevent other processes from opening it, but the file can still be used because the calling process will still have a valid file descriptor. Older versions of mkstemp created the file with an umask of 0666, resulting in the temporary files being readable and writable to all users, and thus presenting a security vulnerability; this is mitigated by setting the umask manually before calling mkstemp. Newer versions of the function create the file with the umask 600, so that only the owner of the file may read from and write to it.

See all
User Avatar
No comments yet.