libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
SecretFile.cxx
1// Linux
2#include <sys/syscall.h>
3
4// cosmos
5#include <cosmos/error/ApiError.hxx>
6#include <cosmos/io/SecretFile.hxx>
7
8namespace cosmos {
9
10void SecretFile::create(const CloseOnExec cloexec) {
11 close();
12
13 // this is a rather new system call, be prepared for it's non
14 // existence
15#ifdef SYS_memfd_secret
16 auto fd = ::syscall(SYS_memfd_secret, cloexec ? FD_CLOEXEC : 0);
17
18 if (fd == -1) {
19 cosmos_throw (ApiError("memfd_secret()"));
20 }
21
22 m_fd.setFD(FileNum{static_cast<int>(fd)});
23#else
24 (void)cloexec;
25 cosmos_throw (ApiError("memfd_secret()", Errno::NO_SYS));
26#endif
27}
28
29} // end ns
Specialized exception type used when system APIs fail.
Definition ApiError.hxx:18
virtual void close()
Close the current file object.
Definition FileBase.hxx:63
FileDescriptor fd() const
Allows access to the underlying fd with const semantics.
Definition FileBase.hxx:74
void setFD(const FileNum fd)
Assigns a new primitive file descriptor to the object.
Strong template type to wrap boolean values in a named type.
Definition utils.hxx:50
void create(const CloseOnExec cloexec=CloseOnExec{true})
Create a new MemFile using the given settings.
FileNum
Primitive file descriptor.
Definition types.hxx:32