libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::SecretFile Class Reference

Memory based files suitable for storing of sensitive secret data. More...

#include <SecretFile.hxx>

+ Inheritance diagram for cosmos::SecretFile:

Public Member Functions

 SecretFile (const CloseOnExec cloexec)
 
void create (const CloseOnExec cloexec=CloseOnExec{true})
 Create a new MemFile using the given settings.
 
- Public Member Functions inherited from cosmos::FileBase
 FileBase (const FileBase &)=delete
 
FileBaseoperator= (const FileBase &)=delete
 
virtual void close ()
 Close the current file object.
 
bool isOpen () const
 Returns whether currently a FileDescriptor is opened.
 
FileDescriptor fd () const
 Allows access to the underlying fd with const semantics.
 
void truncate (const off_t length)
 
- Public Member Functions inherited from cosmos::StreamIO
 StreamIO (FileDescriptor &fd)
 
 StreamIO (const StreamIO &)=delete
 
StreamIOoperator= (const StreamIO &)=delete
 
StreamIOoperator= (StreamIO &&) noexcept
 
size_t read (void *buf, size_t length)
 Read up to length bytes from the file into buf.
 
size_t write (const void *buf, size_t length)
 Write up to length bytes from buf into the underlying file.
 
size_t write (const std::string_view data)
 string_view wrapper around write(const void*, size_t).
 
void readAll (void *buf, size_t length)
 Read all length bytes from the underlying file.
 
void readAll (std::string &s, size_t length)
 Like readAll(void*, size_t) using an STL string.
 
void writeAll (const void *buf, size_t length)
 Write all length bytes into the underlying file.
 
void writeAll (const std::string_view data)
 string_view wrapper around writeAll(const void*, size_t).
 
bool read (ReadIOVector &iovec)
 Read data from file into a vector of data regions.
 
bool write (WriteIOVector &iovec)
 Write data to file from a vector of data regions.
 
void readAll (ReadIOVector &iovec)
 Read into all data regions specified in iovec.
 
void writeAll (WriteIOVector &iovec)
 Write all data regions specified in iovec.
 
off_t seek (const SeekType type, off_t off)
 Seek to the given offset based on the given offset type.
 
off_t seekFromStart (off_t off)
 Seek to the given offset relative to the start of the file.
 
off_t seekFromCurrent (off_t off)
 Seek to the given offset relative to the current file position.
 
off_t seekFromEnd (off_t off)
 Seek to the given offset relative to the end of the file.
 

Additional Inherited Members

- Public Types inherited from cosmos::StreamIO
enum class  SeekType : int {
  SET = SEEK_SET , CUR = SEEK_CUR , END = SEEK_END , DATA = SEEK_DATA ,
  HOLE = SEEK_HOLE
}
 Different methods for changing the file read/write position. More...
 
- Protected Member Functions inherited from cosmos::FileBase
 FileBase (const FileDescriptor fd=FileDescriptor{})
 
 FileBase (FileBase &&other) noexcept
 
FileBaseoperator= (FileBase &&other) noexcept
 
- Protected Attributes inherited from cosmos::FileBase
FileDescriptor m_fd
 
- Protected Attributes inherited from cosmos::StreamIO
FileDescriptorm_stream_fd
 

Detailed Description

Memory based files suitable for storing of sensitive secret data.

This type is similar to MemFile, but the file has some special properties that make is suitable for storing sensitive secret data. The memory pages will even we hidden from kernel space to a certain extent. The memory will be locked i.e. it will never be swapped out.

Definition at line 16 of file SecretFile.hxx.

Constructor & Destructor Documentation

◆ SecretFile()

cosmos::SecretFile::SecretFile ( const CloseOnExec cloexec)
inlineexplicit
See also
create().

Definition at line 23 of file SecretFile.hxx.

23 {
24 create(cloexec);
25 }
void create(const CloseOnExec cloexec=CloseOnExec{true})
Create a new MemFile using the given settings.

Member Function Documentation

◆ create()

void cosmos::SecretFile::create ( const CloseOnExec cloexec = CloseOnExec{true})

Create a new MemFile using the given settings.

Create a new memory file using the given flags and optional page size. The name is only for debugging purposes and is used as an identifier in the /proc file system.

Definition at line 10 of file SecretFile.cxx.

10 {
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}
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.

The documentation for this class was generated from the following files: