CernVM-FS  2.11.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
posix.h
Go to the documentation of this file.
1 
5 #ifndef CVMFS_UTIL_POSIX_H_
6 #define CVMFS_UTIL_POSIX_H_
7 
8 #include <pthread.h>
9 #include <sys/stat.h>
10 #include <sys/types.h>
11 #include <sys/uio.h>
12 #include <unistd.h>
13 
14 #include <cassert>
15 #include <cerrno>
16 #include <cstddef>
17 #include <map>
18 #include <set>
19 #include <string>
20 #include <vector>
21 
22 #include "util/export.h"
23 #include "util/pointer.h"
24 #include "util/single_copy.h"
25 
26 #ifdef CVMFS_NAMESPACE_GUARD
27 namespace CVMFS_NAMESPACE_GUARD {
28 #endif
29 
30 const unsigned kPageSize = 4096;
31 const size_t kMaxPathLength = 256;
32 const int kDefaultFileMode = S_IWUSR | S_IRUSR | S_IRGRP | S_IROTH;
33 const int kDefaultDirMode = S_IXUSR | S_IWUSR | S_IRUSR |
34  S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH;
35 const int kPrivateFileMode = S_IWUSR | S_IRUSR;
36 const int kPrivateDirMode = S_IXUSR | S_IWUSR | S_IRUSR;
37 
44  kFsTypeAutofs = 0x0187,
45  kFsTypeNFS = 0x6969,
46  kFsTypeProc = 0x9fa0,
47  kFsTypeBeeGFS = 0x19830326
48 };
49 
51  FileSystemInfo() : type(kFsTypeUnknown), is_rdonly(false) {}
53  bool is_rdonly;
54 };
55 
57  pid_t pid;
58  uid_t owner;
59  bool read_only;
60  std::string executable;
61  std::string path;
62 
63  LsofEntry() : pid(0), owner(0), read_only(false) {}
64 };
65 
66 CVMFS_EXPORT std::string MakeCanonicalPath(const std::string &path);
67 CVMFS_EXPORT std::string GetParentPath(const std::string &path);
68 CVMFS_EXPORT std::string GetFileName(const std::string &path);
69 CVMFS_EXPORT void SplitPath(const std::string &path,
70  std::string *dirname,
71  std::string *filename);
72 CVMFS_EXPORT bool IsAbsolutePath(const std::string &path);
73 CVMFS_EXPORT std::string GetAbsolutePath(const std::string &path);
74 CVMFS_EXPORT bool IsHttpUrl(const std::string &path);
75 
76 CVMFS_EXPORT std::string ReadSymlink(const std::string &path);
77 CVMFS_EXPORT std::string ResolvePath(const std::string &path);
78 CVMFS_EXPORT bool IsMountPoint(const std::string &path);
79 CVMFS_EXPORT FileSystemInfo GetFileSystemInfo(const std::string &path);
80 
81 CVMFS_EXPORT void CreateFile(const std::string &path, const int mode,
82  const bool ignore_failure = false);
83 CVMFS_EXPORT int MakeSocket(const std::string &path, const int mode);
84 CVMFS_EXPORT int MakeTcpEndpoint(const std::string &ipv4_address, int portno);
85 CVMFS_EXPORT int ConnectSocket(const std::string &path);
86 CVMFS_EXPORT int ConnectTcpEndpoint(const std::string &ipv4_address,
87  int portno);
88 CVMFS_EXPORT void MakePipe(int pipe_fd[2]);
89 CVMFS_EXPORT void WritePipe(int fd, const void *buf, size_t nbyte);
90 CVMFS_EXPORT void ReadPipe(int fd, void *buf, size_t nbyte);
91 CVMFS_EXPORT void ReadHalfPipe(int fd, void *buf, size_t nbyte);
92 CVMFS_EXPORT void ClosePipe(int pipe_fd[2]);
93 CVMFS_EXPORT bool DiffTree(const std::string &path_a,
94  const std::string &path_b);
95 
96 CVMFS_EXPORT void Nonblock2Block(int filedes);
97 CVMFS_EXPORT void Block2Nonblock(int filedes);
98 CVMFS_EXPORT void SendMsg2Socket(const int fd, const std::string &msg);
99 CVMFS_EXPORT bool SendFd2Socket(int socket_fd, int passing_fd);
100 CVMFS_EXPORT int RecvFdFromSocket(int msg_fd);
101 CVMFS_EXPORT std::string GetHostname();
102 
103 CVMFS_EXPORT bool SwitchCredentials(const uid_t uid, const gid_t gid,
104  const bool temporarily);
105 
106 CVMFS_EXPORT bool FileExists(const std::string &path);
107 CVMFS_EXPORT int64_t GetFileSize(const std::string &path);
108 CVMFS_EXPORT bool DirectoryExists(const std::string &path);
109 CVMFS_EXPORT bool SymlinkExists(const std::string &path);
110 CVMFS_EXPORT bool SymlinkForced(const std::string &src,
111  const std::string &dest);
112 CVMFS_EXPORT bool MkdirDeep(const std::string &path, const mode_t mode,
113  bool verify_writable = true);
114 CVMFS_EXPORT bool MakeCacheDirectories(const std::string &path,
115  const mode_t mode);
116 CVMFS_EXPORT FILE *CreateTempFile(const std::string &path_prefix,
117  const int mode,
118  const char *open_flags,
119  std::string *final_path);
120 CVMFS_EXPORT std::string CreateTempPath(const std::string &path_prefix,
121  const int mode);
122 CVMFS_EXPORT std::string CreateTempDir(const std::string &path_prefix);
124 CVMFS_EXPORT int TryLockFile(const std::string &path);
125 CVMFS_EXPORT int LockFile(const std::string &path);
126 CVMFS_EXPORT int WritePidFile(const std::string &path);
127 CVMFS_EXPORT void UnlockFile(const int filedes);
128 CVMFS_EXPORT bool RemoveTree(const std::string &path);
130 std::vector<std::string> FindFilesBySuffix(const std::string &dir,
131  const std::string &suffix);
133 std::vector<std::string> FindFilesByPrefix(const std::string &dir,
134  const std::string &prefix);
136 std::vector<std::string> FindDirectories(const std::string &parent_dir);
137 CVMFS_EXPORT std::string FindExecutable(const std::string &exe);
138 CVMFS_EXPORT bool ListDirectory(const std::string &directory,
139  std::vector<std::string> *names,
140  std::vector<mode_t> *modes);
141 
142 CVMFS_EXPORT std::string GetUserName();
143 CVMFS_EXPORT std::string GetShell();
144 CVMFS_EXPORT bool GetUserNameOf(uid_t uid, std::string *username);
145 CVMFS_EXPORT bool GetUidOf(const std::string &username,
146  uid_t *uid,
147  gid_t *main_gid);
148 CVMFS_EXPORT bool GetGidOf(const std::string &groupname, gid_t *gid);
149 CVMFS_EXPORT mode_t GetUmask();
150 CVMFS_EXPORT bool AddGroup2Persona(const gid_t gid);
151 CVMFS_EXPORT std::string GetHomeDirectory();
152 
153 CVMFS_EXPORT std::string GetArch();
154 
155 CVMFS_EXPORT int SetLimitNoFile(unsigned limit_nofile);
156 CVMFS_EXPORT void GetLimitNoFile(unsigned *soft_limit, unsigned *hard_limit);
157 
162 CVMFS_EXPORT std::vector<LsofEntry> Lsof(const std::string &path);
163 
164 CVMFS_EXPORT bool ProcessExists(pid_t pid);
165 CVMFS_EXPORT void BlockSignal(int signum);
166 CVMFS_EXPORT void WaitForSignal(int signum);
168 int WaitForChild(pid_t pid,
169  const std::vector<int> &sig_ok = std::vector<int>());
170 CVMFS_EXPORT void Daemonize();
171 CVMFS_EXPORT bool Shell(int *pipe_stdin, int *pipe_stdout, int *pipe_stderr);
172 CVMFS_EXPORT bool ExecuteBinary(int *fd_stdin,
173  int *fd_stdout,
174  int *fd_stderr,
175  const std::string &binary_path,
176  const std::vector<std::string> &argv,
177  const bool double_fork = true,
178  pid_t *child_pid = NULL);
179 CVMFS_EXPORT bool ManagedExec(const std::vector<std::string> &command_line,
180  const std::set<int> &preserve_fildes,
181  const std::map<int, int> &map_fildes,
182  const bool drop_credentials,
183  const bool clear_env = false,
184  const bool double_fork = true,
185  pid_t *child_pid = NULL);
186 CVMFS_EXPORT bool CloseAllFildes(const std::set<int> &preserve_fildes);
187 
188 CVMFS_EXPORT void SafeSleepMs(const unsigned ms);
189 // Note that SafeWrite cannot return partial results but
190 // SafeRead can (as we may have hit the EOF).
191 CVMFS_EXPORT ssize_t SafeRead(int fd, void *buf, size_t nbyte);
192 CVMFS_EXPORT bool SafeWrite(int fd, const void *buf, size_t nbyte);
193 CVMFS_EXPORT bool SafeWriteV(int fd, struct iovec *iov, unsigned iovcnt);
194 
195 // Read the contents of a file descriptor to a string.
196 CVMFS_EXPORT bool SafeReadToString(int fd, std::string *final_result);
197 CVMFS_EXPORT bool SafeWriteToFile(const std::string &content,
198  const std::string &path, int mode);
199 
200 #ifdef CVMFS_NAMESPACE_GUARD
201 } // namespace CVMFS_NAMESPACE_GUARD
202 #endif
203 
204 #endif // CVMFS_UTIL_POSIX_H_
bool MakeCacheDirectories(const std::string &path, const mode_t mode)
Definition: posix.cc:879
mode_t GetUmask()
Definition: posix.cc:1387
uid_t owner
Definition: posix.h:58
int MakeSocket(const std::string &path, const int mode)
Definition: posix.cc:328
bool SymlinkForced(const std::string &src, const std::string &dest)
Definition: posix.cc:830
NameString GetFileName(const PathString &path)
Definition: shortstring.cc:29
const int kPrivateDirMode
Definition: posix.h:36
int MakeTcpEndpoint(const std::string &ipv4_address, int portno)
Definition: posix.cc:386
std::string GetUserName()
Definition: posix.cc:1279
const int kDefaultFileMode
Definition: posix.h:32
void CreateFile(const std::string &path, const int mode, const bool ignore_failure)
Definition: posix.cc:277
bool GetUserNameOf(uid_t uid, std::string *username)
Definition: posix.cc:1318
FILE * CreateTempFile(const std::string &path_prefix, const int mode, const char *open_flags, std::string *final_path)
Definition: posix.cc:1002
int ConnectTcpEndpoint(const std::string &ipv4_address, int portno)
Definition: posix.cc:458
EFileSystemTypes type
Definition: posix.h:52
bool Shell(int *fd_stdin, int *fd_stdout, int *fd_stderr)
Definition: posix.cc:1712
bool IsHttpUrl(const std::string &path)
Definition: posix.cc:168
bool ManagedExec(const std::vector< std::string > &command_line, const std::set< int > &preserve_fildes, const std::map< int, int > &map_fildes, const bool drop_credentials, const bool clear_env, const bool double_fork, pid_t *child_pid)
Definition: posix.cc:1840
void Daemonize()
Definition: posix.cc:1625
std::string CreateTempPath(const std::string &path_prefix, const int mode)
Definition: posix.cc:1031
#define CVMFS_EXPORT
Definition: export.h:11
bool SafeWrite(int fd, const void *buf, size_t nbyte)
Definition: posix.cc:1980
void SendMsg2Socket(const int fd, const std::string &msg)
Definition: posix.cc:656
bool SafeWriteToFile(const std::string &content, const std::string &path, int mode)
Definition: posix.cc:2078
std::string FindExecutable(const std::string &exe)
Definition: posix.cc:1241
bool SendFd2Socket(int socket_fd, int passing_fd)
Definition: posix.cc:665
int WaitForChild(pid_t pid, const std::vector< int > &sig_ok)
Definition: posix.cc:1599
bool AddGroup2Persona(const gid_t gid)
Definition: posix.cc:1398
void MakePipe(int pipe_fd[2])
Definition: posix.cc:489
std::vector< std::string > FindDirectories(const std::string &parent_dir)
Definition: posix.cc:1176
FileSystemInfo()
Definition: posix.h:51
bool is_rdonly
Definition: posix.h:53
int SetLimitNoFile(unsigned limit_nofile)
Definition: posix.cc:1455
std::string path
Definition: posix.h:61
bool SymlinkExists(const std::string &path)
Definition: posix.cc:820
bool FileExists(const std::string &path)
Definition: posix.cc:788
const int kPrivateFileMode
Definition: posix.h:35
std::string GetAbsolutePath(const std::string &path)
Definition: posix.cc:160
void SplitPath(const std::string &path, std::string *dirname, std::string *filename)
Definition: posix.cc:113
std::string GetHostname()
Definition: posix.cc:747
void GetLimitNoFile(unsigned *soft_limit, unsigned *hard_limit)
Definition: posix.cc:1477
std::string executable
Definition: posix.h:60
void ReadHalfPipe(int fd, void *buf, size_t nbyte)
Definition: posix.cc:522
ssize_t SafeRead(int fd, void *buf, size_t nbyte)
Definition: posix.cc:2039
const int kDefaultDirMode
Definition: posix.h:33
FileSystemInfo GetFileSystemInfo(const std::string &path)
Definition: posix.cc:180
void Nonblock2Block(int filedes)
Definition: posix.cc:633
bool read_only
Definition: posix.h:59
int TryLockFile(const std::string &path)
Definition: posix.cc:910
bool MkdirDeep(const std::string &path, const mode_t mode, bool verify_writable)
Definition: posix.cc:843
int LockFile(const std::string &path)
Definition: posix.cc:968
string ResolvePath(const std::string &path)
std::string GetHomeDirectory()
Definition: posix.cc:1421
void WaitForSignal(int signum)
Definition: posix.cc:1585
std::string GetShell()
Definition: posix.cc:1297
LsofEntry()
Definition: posix.h:63
pid_t pid
Definition: posix.h:57
bool GetGidOf(const std::string &groupname, gid_t *gid)
Definition: posix.cc:1364
std::string GetArch()
Definition: posix.cc:1443
std::string CreateTempDir(const std::string &path_prefix)
Definition: posix.cc:1044
bool DirectoryExists(const std::string &path)
Definition: posix.cc:810
bool ExecuteBinary(int *fd_stdin, int *fd_stdout, int *fd_stderr, const std::string &binary_path, const std::vector< std::string > &argv, const bool double_fork, pid_t *child_pid)
Definition: posix.cc:1656
bool RemoveTree(const std::string &path)
Definition: posix.cc:1092
bool SafeReadToString(int fd, std::string *final_result)
Definition: posix.cc:2062
bool CloseAllFildes(const std::set< int > &preserve_fildes)
Definition: posix.cc:1807
int WritePidFile(const std::string &path)
Definition: posix.cc:932
int ConnectSocket(const std::string &path)
Definition: posix.cc:424
const unsigned kPageSize
Definition: posix.h:30
bool GetUidOf(const std::string &username, uid_t *uid, gid_t *main_gid)
Definition: posix.cc:1341
std::vector< std::string > FindFilesByPrefix(const std::string &dir, const std::string &prefix)
Definition: posix.cc:1148
bool SwitchCredentials(const uid_t uid, const gid_t gid, const bool temporarily)
Definition: posix.cc:758
std::string ReadSymlink(const std::string &path)
Definition: posix.cc:220
PathString GetParentPath(const PathString &path)
Definition: shortstring.cc:15
std::vector< LsofEntry > Lsof(const std::string &path)
Definition: posix.cc:1496
EFileSystemTypes
Definition: posix.h:42
bool ListDirectory(const std::string &directory, std::vector< std::string > *names, std::vector< mode_t > *modes)
Definition: posix.cc:1205
Definition: posix.h:56
int64_t GetFileSize(const std::string &path)
Definition: posix.cc:798
void SafeSleepMs(const unsigned ms)
Definition: posix.cc:1969
bool DiffTree(const std::string &path_a, const std::string &path_b)
Definition: posix.cc:558
void Block2Nonblock(int filedes)
Definition: posix.cc:644
bool IsAbsolutePath(const std::string &path)
Definition: posix.cc:155
bool ProcessExists(pid_t pid)
Definition: posix.cc:1558
std::string MakeCanonicalPath(const std::string &path)
Definition: posix.cc:98
void WritePipe(int fd, const void *buf, size_t nbyte)
Definition: posix.cc:498
std::string GetCurrentWorkingDirectory()
Definition: posix.cc:1057
void ReadPipe(int fd, void *buf, size_t nbyte)
Definition: posix.cc:510
std::vector< std::string > FindFilesBySuffix(const std::string &dir, const std::string &suffix)
Definition: posix.cc:1121
void ClosePipe(int pipe_fd[2])
Definition: posix.cc:548
bool IsMountPoint(const std::string &path)
Definition: posix.cc:263
int RecvFdFromSocket(int msg_fd)
Definition: posix.cc:705
const size_t kMaxPathLength
Definition: posix.h:31
bool SafeWriteV(int fd, struct iovec *iov, unsigned iovcnt)
Definition: posix.cc:1998
void UnlockFile(const int filedes)
Definition: posix.cc:992
void BlockSignal(int signum)
Definition: posix.cc:1570