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

Obtain and access file status information. More...

#include <FileStatus.hxx>

Public Member Functions

 FileStatus (const SysString path, const FollowSymlinks follow=FollowSymlinks{false})
 
 FileStatus (const FileDescriptor fd)
 
 FileStatus (const DirFD fd, const SysString path, const FollowSymlinks follow=FollowSymlinks{false})
 
void updateFrom (const SysString path, const FollowSymlinks follow=FollowSymlinks{false})
 Obtains stat data for the file object at the given path (stat, lstat).
 
void updateFrom (const FileDescriptor fd)
 Obtains stat data for the file object represented by the given FD (fstat).
 
void updateFrom (const DirFD fd, const SysString path, const FollowSymlinks follow=FollowSymlinks{false})
 Obtains stat data for the path relative to fd.
 
void reset ()
 
bool valid () const
 
ModeT rawMode () const
 Returns the composite ModeT for the file.
 
FileMode mode () const
 Returns the file mode bitmask containing the permission bits for the file.
 
FileType type () const
 Returns the FileType representation for the file.
 
DeviceID device () const
 Returns the identifier for the block device this file resides on.
 
Inode inode () const
 Returns the unique file inode for the file.
 
nlink_t numLinks () const
 Returns the number of hard links for this file.
 
UserID uid () const
 Returns the UID of the owner of the file.
 
GroupID gid () const
 Returns the GID of the owner of the file.
 
off_t size () const
 Returns the size of the file in bytes.
 
DeviceID representedDevice () const
 Returns the identifier of the device this file represents.
 
blksize_t blockSize () const
 Preferred block size for file system I/O.
 
blkcnt_t allocatedBlocks () const
 Returns the number of blocks in 512 byte units allocated to the file.
 
const RealTimemodTime () const
 Returns the time of the last modification of the file content.
 
const RealTimestatusTime () const
 Returns the time of the last status (inode) modification.
 
const RealTimeaccessTime () const
 Returns the time of the last (read) access of the file content.
 
bool isSameFile (const FileStatus &other) const
 Returns whether the two FileStatus objects refer to the same file.
 
bool operator== (const FileStatus &other)
 Compares the two objects on raw data level.
 
bool operator!= (const FileStatus &other)
 

Protected Member Functions

void throwBadType (const std::string_view context) const
 

Protected Attributes

struct stat m_st
 

Detailed Description

Obtain and access file status information.

The file status contains metadata information about a file object at a certain point in time. The information can be looked up either by path or directly from an already opened file descriptor.

The latter is the preferred method if you have to open the file anyway since it is race-free. Otherwise the file you obtained the status from and the file you're opening might end up referring to two different objects if the files on disk are changed (e.g. by an attacker). The file descriptor method is also faster, since the path doesn't have to be parsed and followed once again.

Definition at line 34 of file FileStatus.hxx.

Constructor & Destructor Documentation

◆ FileStatus() [1/4]

cosmos::FileStatus::FileStatus ( )
inline

Definition at line 37 of file FileStatus.hxx.

37 {
38 reset();
39 }

◆ FileStatus() [2/4]

cosmos::FileStatus::FileStatus ( const SysString path,
const FollowSymlinks follow = FollowSymlinks{false} )
inlineexplicit

Definition at line 41 of file FileStatus.hxx.

41 {false}) {
42 updateFrom(path, follow);
43 }
void updateFrom(const SysString path, const FollowSymlinks follow=FollowSymlinks{false})
Obtains stat data for the file object at the given path (stat, lstat).

◆ FileStatus() [3/4]

cosmos::FileStatus::FileStatus ( const FileDescriptor fd)
inlineexplicit

Definition at line 45 of file FileStatus.hxx.

45 {
46 updateFrom(fd);
47 }

◆ FileStatus() [4/4]

cosmos::FileStatus::FileStatus ( const DirFD fd,
const SysString path,
const FollowSymlinks follow = FollowSymlinks{false} )
inlineexplicit

Definition at line 49 of file FileStatus.hxx.

49 {false}) {
50 updateFrom(fd, path, follow);
51 }

Member Function Documentation

◆ accessTime()

const RealTime & cosmos::FileStatus::accessTime ( ) const
inline

Returns the time of the last (read) access of the file content.

This timestamp may not be available on all file systems or in all circumstances, for example there is mount option noatime that disables this for performance reasons.

Definition at line 228 of file FileStatus.hxx.

228 {
229 return *reinterpret_cast<const RealTime*>(&m_st.st_atim);
230 }

◆ allocatedBlocks()

blkcnt_t cosmos::FileStatus::allocatedBlocks ( ) const
inline

Returns the number of blocks in 512 byte units allocated to the file.

This can be smaller than the result of size() / 512 if the file has holes in it.

Definition at line 196 of file FileStatus.hxx.

196 {
197 return m_st.st_blocks;
198 }

◆ blockSize()

blksize_t cosmos::FileStatus::blockSize ( ) const
inline

Preferred block size for file system I/O.

This returns the optimal size for individual read and write operations on this file system with regards to performance. The value can theoretically be different for different files on the same file system.

Definition at line 187 of file FileStatus.hxx.

187 {
188 return m_st.st_blksize;
189 }

◆ device()

DeviceID cosmos::FileStatus::device ( ) const
inline

Returns the identifier for the block device this file resides on.

Definition at line 117 of file FileStatus.hxx.

117 {
118 return DeviceID{m_st.st_dev};
119 }
DeviceID
A device file identification type (consists of major:minor parts).
Definition types.hxx:48

◆ gid()

GroupID cosmos::FileStatus::gid ( ) const
inline

Returns the GID of the owner of the file.

Definition at line 142 of file FileStatus.hxx.

142 {
143 return GroupID{m_st.st_gid};
144 }

◆ inode()

Inode cosmos::FileStatus::inode ( ) const
inline

Returns the unique file inode for the file.

The pair of data device() and inode() allow to uniquely identifier a file on the system. For example this allows to detect hard links to the same file data.

Definition at line 127 of file FileStatus.hxx.

127 {
128 return Inode{m_st.st_ino};
129 }
Inode
A unique file number for a file on a block device.
Definition types.hxx:44

◆ isSameFile()

bool cosmos::FileStatus::isSameFile ( const FileStatus & other) const
inline

Returns whether the two FileStatus objects refer to the same file.

This condition is true if both the inodes and the block device IDs for both FileStatus objects match. Note that files can be identical even if the file names aren't (hard links).

Definition at line 238 of file FileStatus.hxx.

238 {
239 return this->inode() == other.inode() &&
240 this->device() == other.device();
241 }
Inode inode() const
Returns the unique file inode for the file.
DeviceID device() const
Returns the identifier for the block device this file resides on.

◆ mode()

FileMode cosmos::FileStatus::mode ( ) const
inline

Returns the file mode bitmask containing the permission bits for the file.

Definition at line 107 of file FileStatus.hxx.

107 {
108 return FileMode{rawMode()};
109 }
ModeT rawMode() const
Returns the composite ModeT for the file.

◆ modTime()

const RealTime & cosmos::FileStatus::modTime ( ) const
inline

Returns the time of the last modification of the file content.

Definition at line 204 of file FileStatus.hxx.

204 {
205 // This is a bit dirty, casting the struct timespec to its
206 // wrapper type. Should work as long as we don't change the
207 // object size (is checked in the compilation unit for
208 // TimeSpec). This saves us some copying since struct timespec
209 // is 16 bytes in size.
210 return *reinterpret_cast<const RealTime*>(&m_st.st_mtim);
211 }

◆ numLinks()

nlink_t cosmos::FileStatus::numLinks ( ) const
inline

Returns the number of hard links for this file.

Definition at line 132 of file FileStatus.hxx.

132 {
133 return m_st.st_nlink;
134 }

◆ operator!=()

bool cosmos::FileStatus::operator!= ( const FileStatus & other)
inline

Definition at line 253 of file FileStatus.hxx.

253 {
254 return !(*this == other);
255 }

◆ operator==()

bool cosmos::FileStatus::operator== ( const FileStatus & other)
inline

Compares the two objects on raw data level.

All file status fields need to be equal for this to match. To compare file objects on a logical level (i.e. if they refer to the same file system object) use isSameFile().

Definition at line 249 of file FileStatus.hxx.

249 {
250 return std::memcmp(&m_st, &other.m_st, sizeof(m_st)) == 0;
251 }

◆ rawMode()

ModeT cosmos::FileStatus::rawMode ( ) const
inline

Returns the composite ModeT for the file.

Definition at line 102 of file FileStatus.hxx.

102 {
103 return ModeT{m_st.st_mode};
104 }
ModeT
Combined file type and mode bits of a file (as found in st_mode struct stat).
Definition types.hxx:106

◆ representedDevice()

DeviceID cosmos::FileStatus::representedDevice ( ) const

Returns the identifier of the device this file represents.

This is only valid if

    type() == FileType::BLOCKDEV || type() == FileType::CHARDEV

If this condition is not fulfilled then a UsageError is thrown.

Definition at line 40 of file FileStatus.cxx.

40 {
41 switch (type().raw()) {
42 case FileType::BLOCKDEV:
43 case FileType::CHARDEV:
44 return DeviceID{m_st.st_rdev};
45 default:
46 throwBadType("attempted to get st_rdev but this is no dev!");
47 return DeviceID{0};
48 }
49}
FileType type() const
Returns the FileType representation for the file.

◆ reset()

void cosmos::FileStatus::reset ( )
inline

Definition at line 90 of file FileStatus.hxx.

90 {
91 // we identify an invalid stat structure by clearing the mode
92 // field only. Due to the file type bits it should never be
93 // zero for any valid struct stat.
94 m_st.st_mode = 0;
95 }

◆ size()

off_t cosmos::FileStatus::size ( ) const
inline

Returns the size of the file in bytes.

The size only has meaning for the following file types:

  • REGULAR: net size of the file in bytes
  • LINK: number of characters in the symlink, excluding '\0' terminator
  • DIRECTORY: the size the directory entries uses (depends on file system internal details, does not include sizes of contained files).

For any other type a UsageError exception is thrown.

Definition at line 158 of file FileStatus.hxx.

158 {
159 switch (type().raw()) {
161 case FileType::LINK:
162 case FileType::DIRECTORY:
163 return m_st.st_size;
164 default:
165 throwBadType("invalid type for st_size");
166 return 0;
167 }
168 };
@ REGULAR
symbolic link
Definition types.hxx:172

◆ statusTime()

const RealTime & cosmos::FileStatus::statusTime ( ) const
inline

Returns the time of the last status (inode) modification.

This timestamp reflects the last change to the inode data i.e. the metadata of the file (e.g. ownership, permissions etc.)

Definition at line 218 of file FileStatus.hxx.

218 {
219 return *reinterpret_cast<const RealTime*>(&m_st.st_ctim);
220 }

◆ throwBadType()

void cosmos::FileStatus::throwBadType ( const std::string_view context) const
protected

Definition at line 13 of file FileStatus.cxx.

13 {
14 cosmos_throw (UsageError(context));
15}

◆ type()

FileType cosmos::FileStatus::type ( ) const
inline

Returns the FileType representation for the file.

Definition at line 112 of file FileStatus.hxx.

112 {
113 return FileType{rawMode()};
114 }

◆ uid()

UserID cosmos::FileStatus::uid ( ) const
inline

Returns the UID of the owner of the file.

Definition at line 137 of file FileStatus.hxx.

137 {
138 return UserID{m_st.st_uid};
139 }

◆ updateFrom() [1/3]

void cosmos::FileStatus::updateFrom ( const DirFD fd,
const SysString path,
const FollowSymlinks follow = FollowSymlinks{false} )

Obtains stat data for the path relative to fd.

If path is an absolute path then this behaves like updateFrom(const SysString, const FollowSymlinks) and fd is ignored.

If path is relative then it will be looked up relative to the given dir fd. You can pass cosmos::AT_CWD as fd to lookup path relative to the current working directory.

If path is an empty string then this behaves similar to updateFrom(const FileDescriptor) and fd can be any type of file descriptor (but this usage is not encouraged due to libcosmos' type modeling).

Definition at line 31 of file FileStatus.cxx.

31 {
32
33 auto res = ::fstatat(to_integral(fd.raw()), path.raw(), &m_st, follow ? 0 : AT_SYMLINK_NOFOLLOW);
34
35 if (res != 0) {
36 cosmos_throw (FileError(path, "fstatat()"));
37 }
38}

◆ updateFrom() [2/3]

void cosmos::FileStatus::updateFrom ( const FileDescriptor fd)

Obtains stat data for the file object represented by the given FD (fstat).

On error an ApiError exception is thrown. Typical errors are like in updateFrom(const SysString, const FollowSymlinks), with the following addition:

Definition at line 17 of file FileStatus.cxx.

17 {
18 if (fstat(to_integral(fd.raw()), &m_st) != 0) {
19 cosmos_throw (ApiError("fstat()"));
20 }
21}

◆ updateFrom() [3/3]

void cosmos::FileStatus::updateFrom ( const SysString path,
const FollowSymlinks follow = FollowSymlinks{false} )

Obtains stat data for the file object at the given path (stat, lstat).

On error an ApiError exception is thrown. Typical errors are:

Definition at line 23 of file FileStatus.cxx.

23 {
24 auto statfunc = follow ? ::stat : ::lstat;
25
26 if (statfunc(path.raw(), &m_st) != 0) {
27 cosmos_throw (FileError(path, follow ? "stat" : "lstat"));
28 }
29}

◆ valid()

bool cosmos::FileStatus::valid ( ) const
inline

Definition at line 97 of file FileStatus.hxx.

97 {
98 return m_st.st_mode != 0;
99 }

Member Data Documentation

◆ m_st

struct stat cosmos::FileStatus::m_st
protected

Definition at line 263 of file FileStatus.hxx.


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