libcosmos
Linux C++ System Programming Library
|
Memory based files suitable for storing of sensitive secret data. More...
#include <SecretFile.hxx>
Public Member Functions | |
SecretFile (const CloseOnExec cloexec) | |
void | create (const CloseOnExec cloexec=CloseOnExec{true}) |
Create a new MemFile using the given settings. | |
![]() | |
FileBase (const FileBase &)=delete | |
FileBase & | operator= (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) |
![]() | |
StreamIO (FileDescriptor &fd) | |
StreamIO (const StreamIO &)=delete | |
StreamIO & | operator= (const StreamIO &)=delete |
StreamIO & | operator= (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 | |
![]() | |
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... | |
![]() | |
FileBase (const FileDescriptor fd=FileDescriptor{}) | |
FileBase (FileBase &&other) noexcept | |
FileBase & | operator= (FileBase &&other) noexcept |
![]() | |
FileDescriptor | m_fd |
![]() | |
FileDescriptor & | m_stream_fd |
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.
|
inlineexplicit |
Definition at line 23 of file SecretFile.hxx.
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.