GCC Code Coverage Report


Directory: cvmfs/
File: cvmfs/util/posix.cc
Date: 2026-07-26 02:35:14
Exec Total Coverage
Lines: 904 1160 77.9%
Branches: 670 1265 53.0%

Line Branch Exec Source
1 /**
2 * This file is part of the CernVM File System.
3 *
4 * Some common functions.
5 */
6
7 #include <cctype>
8 #include <stdlib.h>
9 #include <cstdlib>
10 #include <dirent.h>
11 #include <sys/file.h>
12 #include <string.h>
13 #include <stdio.h>
14 #include <sched.h>
15 #include <sys/select.h>
16 #include <sys/uio.h>
17
18 #include "posix.h"
19
20 #include <arpa/inet.h>
21 #include <errno.h>
22 #include <fcntl.h>
23 #include <grp.h>
24 #include <inttypes.h>
25 #include <netinet/in.h>
26 #include <pthread.h>
27 #include <pwd.h>
28 #include <signal.h>
29 #include <stdint.h>
30 #include <sys/resource.h>
31 #include <sys/socket.h>
32 #include <sys/stat.h>
33 #ifdef __APPLE__
34 #include <sys/mount.h> // for statfs()
35 #else
36 #include <sys/statfs.h>
37 #endif
38 #include <sys/time.h>
39 #include <sys/types.h>
40 #include <sys/un.h>
41 #include <sys/utsname.h>
42 #include <sys/wait.h>
43 #include <unistd.h>
44 // If valgrind headers are present on the build system, then we can detect
45 // valgrind at runtime.
46 #ifdef HAS_VALGRIND_HEADERS
47 #include <valgrind/valgrind.h>
48 #endif
49
50 #include <algorithm>
51 #include <cassert>
52 #include <cstdio>
53 #include <cstring>
54 #include <map>
55 #include <set>
56 #include <string>
57 #include <vector>
58
59 #include "util/algorithm.h"
60 #include "util/capabilities.h"
61 #include "util/exception.h"
62 #include "util/fs_traversal.h"
63 #include "util/logging.h"
64 #include "util/pipe.h"
65 #include "util/string.h"
66 #include "util/smalloc.h"
67 #include "util/smalloc.h"
68 #include "util/smalloc.h"
69 #include "util/mutex.h"
70 #include "util/mutex.h"
71 #include "util/mutex.h"
72
73 // using namespace std; // NOLINT
74
75 #ifndef ST_RDONLY
76 // On Linux, this is in sys/statvfs.h
77 // On macOS, this flag is called MNT_RDONLY /usr/include/sys/mount.h
78 #define ST_RDONLY 1
79 #endif
80
81 // Older Linux glibc versions do not provide the f_flags member in struct statfs
82 #define CVMFS_HAS_STATFS_F_FLAGS
83 #ifndef __APPLE__
84 #ifdef __GLIBC_MINOR__
85 #if __GLIBC_MINOR__ < 12
86 #undef CVMFS_HAS_STATFS_F_FLAGS
87 #endif
88 #endif
89 #endif
90
91 // Work around missing clearenv()
92 #ifdef __APPLE__
93 extern "C" {
94 extern char **environ;
95 }
96 #endif
97
98 #ifdef CVMFS_NAMESPACE_GUARD
99 namespace CVMFS_NAMESPACE_GUARD {
100 #endif
101
102 static pthread_mutex_t getumask_mutex = PTHREAD_MUTEX_INITIALIZER;
103
104
105 /**
106 * Removes a trailing "/" from a path.
107 */
108 10519 std::string MakeCanonicalPath(const std::string &path) {
109
2/2
✓ Branch 1 taken 24 times.
✓ Branch 2 taken 10495 times.
10519 if (path.length() == 0)
110 24 return path;
111
112
2/2
✓ Branch 2 taken 176 times.
✓ Branch 3 taken 10319 times.
10495 if (path[path.length() - 1] == '/') {
113 176 return path.substr(0, path.length() - 1);
114 } else {
115 10319 return path;
116 }
117 }
118
119 /**
120 * Return both the file and directory name for a given path.
121 *
122 * NOTE: If only a filename is given, the directory is returned as "."
123 */
124 1028 void SplitPath(const std::string &path,
125 std::string *dirname,
126 std::string *filename) {
127 1028 const size_t dir_sep = path.rfind('/');
128
2/2
✓ Branch 0 taken 870 times.
✓ Branch 1 taken 158 times.
1028 if (dir_sep != std::string::npos) {
129 870 *dirname = path.substr(0, dir_sep);
130 870 *filename = path.substr(dir_sep + 1);
131 } else {
132 158 *dirname = ".";
133 158 *filename = path;
134 }
135 1028 }
136
137
138 /**
139 * Gets the directory part of a path.
140 */
141 10370 std::string GetParentPath(const std::string &path) {
142 10370 const std::string::size_type idx = path.find_last_of('/');
143
2/2
✓ Branch 0 taken 10247 times.
✓ Branch 1 taken 123 times.
10370 if (idx != std::string::npos) {
144 10247 return path.substr(0, idx);
145 } else {
146
1/2
✓ Branch 2 taken 123 times.
✗ Branch 3 not taken.
123 return "";
147 }
148 }
149
150
151 /**
152 * Gets the file name part of a path.
153 */
154 220582 std::string GetFileName(const std::string &path) {
155 220582 const std::string::size_type idx = path.find_last_of('/');
156
2/2
✓ Branch 0 taken 220141 times.
✓ Branch 1 taken 441 times.
220582 if (idx != std::string::npos) {
157 220141 return path.substr(idx + 1);
158 } else {
159 441 return path;
160 }
161 }
162
163
164 333 bool IsAbsolutePath(const std::string &path) {
165
4/4
✓ Branch 1 taken 313 times.
✓ Branch 2 taken 20 times.
✓ Branch 4 taken 32 times.
✓ Branch 5 taken 281 times.
333 return (!path.empty() && path[0] == '/');
166 }
167
168
169 273 std::string GetAbsolutePath(const std::string &path) {
170
2/2
✓ Branch 1 taken 12 times.
✓ Branch 2 taken 261 times.
273 if (IsAbsolutePath(path))
171 12 return path;
172
173
2/4
✓ Branch 2 taken 261 times.
✗ Branch 3 not taken.
✓ Branch 5 taken 261 times.
✗ Branch 6 not taken.
522 return GetCurrentWorkingDirectory() + "/" + path;
174 }
175
176
177 872 bool IsHttpUrl(const std::string &path) {
178
2/2
✓ Branch 1 taken 48 times.
✓ Branch 2 taken 824 times.
872 if (path.length() < 7) {
179 48 return false;
180 }
181
182
1/2
✓ Branch 1 taken 824 times.
✗ Branch 2 not taken.
824 std::string prefix = path.substr(0, 8);
183 824 std::transform(prefix.begin(), prefix.end(), prefix.begin(), ::tolower);
184
185
6/12
✓ Branch 1 taken 824 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 704 times.
✓ Branch 5 taken 120 times.
✗ Branch 6 not taken.
✓ Branch 7 taken 120 times.
✓ Branch 8 taken 584 times.
✓ Branch 9 taken 824 times.
✗ Branch 10 not taken.
✗ Branch 12 not taken.
✗ Branch 13 not taken.
824 return prefix.substr(0, 7) == "http://" || prefix == "https://";
186 824 }
187
188
189 4961 FileSystemInfo GetFileSystemInfo(const std::string &path) {
190 4961 FileSystemInfo result;
191
192 struct statfs info;
193 4961 const int retval = statfs(path.c_str(), &info);
194
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4961 times.
4961 if (retval != 0)
195 return result;
196
197
2/6
✗ Branch 0 not taken.
✗ Branch 1 not taken.
✓ Branch 2 taken 20 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 4941 times.
4961 switch (info.f_type) {
198 case kFsTypeAutofs:
199 result.type = kFsTypeAutofs;
200 break;
201 case kFsTypeNFS:
202 result.type = kFsTypeNFS;
203 break;
204 20 case kFsTypeProc:
205 20 result.type = kFsTypeProc;
206 20 break;
207 case kFsTypeBeeGFS:
208 result.type = kFsTypeBeeGFS;
209 break;
210 case kFsTypeTmpfs:
211 result.type = kFsTypeTmpfs;
212 break;
213 4941 default:
214 4941 result.type = kFsTypeUnknown;
215 }
216
217 #ifdef CVMFS_HAS_STATFS_F_FLAGS
218
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4961 times.
4961 if (info.f_flags & ST_RDONLY)
219 result.is_rdonly = true;
220 #else
221 // On old Linux systems, fall back to access()
222 retval = access(path.c_str(), W_OK);
223 result.is_rdonly = (retval != 0);
224 #endif
225
226
227 4961 return result;
228 }
229
230
231 906 std::string ReadSymlink(const std::string &path) {
232 // TODO(jblomer): avoid PATH_MAX
233 char buf[PATH_MAX + 1];
234 906 const ssize_t nchars = readlink(path.c_str(), buf, PATH_MAX);
235
2/2
✓ Branch 0 taken 878 times.
✓ Branch 1 taken 28 times.
906 if (nchars >= 0) {
236 878 buf[nchars] = '\0';
237
1/2
✓ Branch 2 taken 878 times.
✗ Branch 3 not taken.
878 return std::string(buf);
238 }
239
1/2
✓ Branch 2 taken 28 times.
✗ Branch 3 not taken.
28 return "";
240 }
241
242
243 /**
244 * Follow all symlinks if possible. Equivalent to
245 * `readlink --canonicalize-missing`
246 */
247 564 std::string ResolvePath(const std::string &path) {
248
6/6
✓ Branch 1 taken 416 times.
✓ Branch 2 taken 148 times.
✓ Branch 4 taken 50 times.
✓ Branch 5 taken 366 times.
✓ Branch 6 taken 198 times.
✓ Branch 7 taken 366 times.
564 if (path.empty() || (path == "/"))
249
1/2
✓ Branch 2 taken 198 times.
✗ Branch 3 not taken.
198 return "/";
250
1/2
✓ Branch 1 taken 366 times.
✗ Branch 2 not taken.
366 const std::string name = GetFileName(path);
251
1/2
✓ Branch 1 taken 366 times.
✗ Branch 2 not taken.
366 std::string result = name;
252
2/2
✓ Branch 1 taken 318 times.
✓ Branch 2 taken 48 times.
366 if (name != path) {
253 // There is a parent path of 'path'
254
2/4
✓ Branch 1 taken 318 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 318 times.
✗ Branch 5 not taken.
318 const std::string parent = ResolvePath(GetParentPath(path));
255
4/6
✓ Branch 1 taken 194 times.
✓ Branch 2 taken 124 times.
✓ Branch 4 taken 318 times.
✗ Branch 5 not taken.
✓ Branch 7 taken 318 times.
✗ Branch 8 not taken.
318 result = parent + (parent == "/" ? "" : "/") + name;
256 318 }
257 366 char *real_result = realpath(result.c_str(), NULL);
258
2/2
✓ Branch 0 taken 192 times.
✓ Branch 1 taken 174 times.
366 if (real_result) {
259
1/2
✓ Branch 1 taken 192 times.
✗ Branch 2 not taken.
192 result = real_result;
260 192 free(real_result);
261 }
262
3/4
✓ Branch 1 taken 366 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 24 times.
✓ Branch 4 taken 342 times.
366 if (SymlinkExists(result)) {
263 char buf[PATH_MAX + 1];
264 24 const ssize_t nchars = readlink(result.c_str(), buf, PATH_MAX);
265
1/2
✓ Branch 0 taken 24 times.
✗ Branch 1 not taken.
24 if (nchars >= 0) {
266 24 buf[nchars] = '\0';
267
1/2
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
24 result = buf;
268 }
269 }
270 366 return result;
271 366 }
272
273
274 78 bool IsMountPoint(const std::string &path) {
275
1/2
✓ Branch 1 taken 78 times.
✗ Branch 2 not taken.
78 std::vector<std::string> mount_list = platform_mountlist();
276
1/2
✓ Branch 1 taken 78 times.
✗ Branch 2 not taken.
78 const std::string resolved_path = ResolvePath(path);
277
2/2
✓ Branch 1 taken 6396 times.
✓ Branch 2 taken 26 times.
6422 for (unsigned i = 0; i < mount_list.size(); ++i) {
278
2/2
✓ Branch 2 taken 52 times.
✓ Branch 3 taken 6344 times.
6396 if (mount_list[i] == resolved_path)
279 52 return true;
280 }
281 26 return false;
282 78 }
283
284
285 /**
286 * By default PANIC(NULL) on failure
287 */
288 2195 void CreateFile(const std::string &path,
289 const int mode,
290 const bool ignore_failure) {
291 2195 const int fd = open(path.c_str(), O_CREAT, mode);
292
2/2
✓ Branch 0 taken 2054 times.
✓ Branch 1 taken 141 times.
2195 if (fd >= 0) {
293 2054 close(fd);
294 2054 return;
295 }
296
2/2
✓ Branch 0 taken 128 times.
✓ Branch 1 taken 13 times.
141 if (ignore_failure)
297 128 return;
298 13 PANIC(NULL);
299 }
300
301
302 /**
303 * Symlinks /tmp/cvmfs.XYZ/l --> ParentPath(path) to make it shorter
304 */
305 87 static std::string MakeShortSocketLink(const std::string &path) {
306 //NOLINTNEXTLINE(misc-const-correctness)
307 struct sockaddr_un sock_addr;
308 87 const unsigned max_length = sizeof(sock_addr.sun_path);
309
310 87 std::string result;
311
2/4
✓ Branch 2 taken 87 times.
✗ Branch 3 not taken.
✓ Branch 5 taken 87 times.
✗ Branch 6 not taken.
174 const std::string tmp_path = CreateTempDir("/tmp/cvmfs");
312
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 87 times.
87 if (tmp_path.empty())
313 return "";
314
1/2
✓ Branch 1 taken 87 times.
✗ Branch 2 not taken.
87 const std::string link = tmp_path + "/l";
315
3/6
✓ Branch 1 taken 87 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 87 times.
✗ Branch 5 not taken.
✓ Branch 7 taken 87 times.
✗ Branch 8 not taken.
87 result = link + "/" + GetFileName(path);
316
2/2
✓ Branch 1 taken 35 times.
✓ Branch 2 taken 52 times.
87 if (result.length() >= max_length) {
317 35 rmdir(tmp_path.c_str());
318
1/2
✓ Branch 2 taken 35 times.
✗ Branch 3 not taken.
35 return "";
319 }
320
1/2
✓ Branch 2 taken 52 times.
✗ Branch 3 not taken.
52 const int retval = symlink(GetParentPath(path).c_str(), link.c_str());
321
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 52 times.
52 if (retval != 0) {
322 rmdir(tmp_path.c_str());
323 return "";
324 }
325 52 return result;
326 87 }
327
328 52 static void RemoveShortSocketLink(const std::string &short_path) {
329
1/2
✓ Branch 1 taken 52 times.
✗ Branch 2 not taken.
52 const std::string link = GetParentPath(short_path);
330 52 unlink(link.c_str());
331
1/2
✓ Branch 1 taken 52 times.
✗ Branch 2 not taken.
52 rmdir(GetParentPath(link).c_str());
332 52 }
333
334
335 /**
336 * Creates and binds to a named socket.
337 */
338 1893 int MakeSocket(const std::string &path, const int mode) {
339
1/2
✓ Branch 1 taken 1893 times.
✗ Branch 2 not taken.
1893 std::string short_path(path);
340 struct sockaddr_un sock_addr;
341
2/2
✓ Branch 1 taken 53 times.
✓ Branch 2 taken 1840 times.
1893 if (path.length() >= sizeof(sock_addr.sun_path)) {
342 // Socket paths are limited to 108 bytes (on some systems to 92 bytes),
343 // try working around
344
1/2
✓ Branch 1 taken 53 times.
✗ Branch 2 not taken.
53 short_path = MakeShortSocketLink(path);
345
2/2
✓ Branch 1 taken 18 times.
✓ Branch 2 taken 35 times.
53 if (short_path.empty())
346 18 return -1;
347 }
348 1875 sock_addr.sun_family = AF_UNIX;
349 1875 strncpy(sock_addr.sun_path, short_path.c_str(), sizeof(sock_addr.sun_path));
350
351 1875 const int socket_fd = socket(AF_UNIX, SOCK_STREAM, 0);
352
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1875 times.
1875 assert(socket_fd != -1);
353
354 #ifndef __APPLE__
355 // fchmod on a socket is not allowed under Mac OS X
356 // using default 0770 here
357
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 1875 times.
1875 if (fchmod(socket_fd, mode) != 0)
358 goto make_socket_failure;
359 #endif
360
361 1875 if (bind(socket_fd, reinterpret_cast<struct sockaddr *>(&sock_addr),
362 sizeof(sock_addr.sun_family) + sizeof(sock_addr.sun_path))
363
2/2
✓ Branch 0 taken 18 times.
✓ Branch 1 taken 1857 times.
1875 < 0) {
364
3/6
✓ Branch 0 taken 18 times.
✗ Branch 1 not taken.
✓ Branch 4 taken 18 times.
✗ Branch 5 not taken.
✓ Branch 6 taken 18 times.
✗ Branch 7 not taken.
18 if ((errno == EADDRINUSE) && (unlink(path.c_str()) == 0)) {
365 // Second try, perhaps the file was left over
366 18 if (bind(socket_fd, reinterpret_cast<struct sockaddr *>(&sock_addr),
367 sizeof(sock_addr.sun_family) + sizeof(sock_addr.sun_path))
368
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 18 times.
18 < 0) {
369 LogCvmfs(kLogCvmfs, kLogDebug, "binding socket failed (%d)", errno);
370 goto make_socket_failure;
371 }
372 } else {
373 LogCvmfs(kLogCvmfs, kLogDebug, "binding socket failed (%d)", errno);
374 goto make_socket_failure;
375 }
376 }
377
378
2/2
✓ Branch 1 taken 35 times.
✓ Branch 2 taken 1840 times.
1875 if (short_path != path)
379
1/2
✓ Branch 1 taken 35 times.
✗ Branch 2 not taken.
35 RemoveShortSocketLink(short_path);
380
381 1875 return socket_fd;
382
383 make_socket_failure:
384 close(socket_fd);
385 if (short_path != path)
386 RemoveShortSocketLink(short_path);
387 return -1;
388 1893 }
389
390
391 /**
392 * Creates and binds a TCP/IPv4 socket. An empty address binds to the "any"
393 * address.
394 */
395 796 int MakeTcpEndpoint(const std::string &ipv4_address, int portno) {
396 796 const int socket_fd = socket(AF_INET, SOCK_STREAM, 0);
397
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 796 times.
796 assert(socket_fd != -1);
398 796 const int on = 1;
399 796 int retval = setsockopt(socket_fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));
400
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 796 times.
796 assert(retval == 0);
401
402 struct sockaddr_in endpoint_addr;
403 796 memset(&endpoint_addr, 0, sizeof(endpoint_addr));
404 796 endpoint_addr.sin_family = AF_INET;
405
2/2
✓ Branch 1 taken 745 times.
✓ Branch 2 taken 51 times.
796 if (ipv4_address.empty()) {
406 745 endpoint_addr.sin_addr.s_addr = INADDR_ANY;
407 } else {
408 51 retval = inet_aton(ipv4_address.c_str(), &(endpoint_addr.sin_addr));
409
2/2
✓ Branch 0 taken 17 times.
✓ Branch 1 taken 34 times.
51 if (retval == 0) {
410
1/2
✓ Branch 1 taken 17 times.
✗ Branch 2 not taken.
17 LogCvmfs(kLogCvmfs, kLogDebug, "invalid IPv4 address");
411
1/2
✓ Branch 1 taken 17 times.
✗ Branch 2 not taken.
17 close(socket_fd);
412 17 return -1;
413 }
414 }
415 779 endpoint_addr.sin_port = htons(portno);
416
417 779 retval = bind(socket_fd, reinterpret_cast<struct sockaddr *>(&endpoint_addr),
418 sizeof(endpoint_addr));
419
2/2
✓ Branch 0 taken 17 times.
✓ Branch 1 taken 762 times.
779 if (retval < 0) {
420
1/2
✓ Branch 1 taken 17 times.
✗ Branch 2 not taken.
17 LogCvmfs(kLogCvmfs, kLogDebug, "binding TCP endpoint failed (%d)", errno);
421
1/2
✓ Branch 1 taken 17 times.
✗ Branch 2 not taken.
17 close(socket_fd);
422 17 return -1;
423 }
424 762 return socket_fd;
425 }
426
427
428 /**
429 * Connects to a named socket.
430 *
431 * \return socket file descriptor on success, -1 else
432 */
433 224 int ConnectSocket(const std::string &path) {
434
1/2
✓ Branch 1 taken 224 times.
✗ Branch 2 not taken.
224 std::string short_path(path);
435 struct sockaddr_un sock_addr;
436
2/2
✓ Branch 1 taken 34 times.
✓ Branch 2 taken 190 times.
224 if (path.length() >= sizeof(sock_addr.sun_path)) {
437 // Socket paths are limited to 108 bytes (on some systems to 92 bytes),
438 // try working around
439
1/2
✓ Branch 1 taken 34 times.
✗ Branch 2 not taken.
34 short_path = MakeShortSocketLink(path);
440
2/2
✓ Branch 1 taken 17 times.
✓ Branch 2 taken 17 times.
34 if (short_path.empty())
441 17 return -1;
442 }
443 207 sock_addr.sun_family = AF_UNIX;
444 207 strncpy(sock_addr.sun_path, short_path.c_str(), sizeof(sock_addr.sun_path));
445
446 207 const int socket_fd = socket(AF_UNIX, SOCK_STREAM, 0);
447
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 207 times.
207 assert(socket_fd != -1);
448
449
1/2
✓ Branch 1 taken 207 times.
✗ Branch 2 not taken.
207 const int retval = connect(
450 socket_fd, reinterpret_cast<struct sockaddr *>(&sock_addr),
451 sizeof(sock_addr.sun_family) + sizeof(sock_addr.sun_path));
452
2/2
✓ Branch 1 taken 17 times.
✓ Branch 2 taken 190 times.
207 if (short_path != path)
453
1/2
✓ Branch 1 taken 17 times.
✗ Branch 2 not taken.
17 RemoveShortSocketLink(short_path);
454
455
2/2
✓ Branch 0 taken 17 times.
✓ Branch 1 taken 190 times.
207 if (retval < 0) {
456
1/2
✓ Branch 1 taken 17 times.
✗ Branch 2 not taken.
17 close(socket_fd);
457 17 return -1;
458 }
459
460 190 return socket_fd;
461 224 }
462
463
464 /**
465 * Connects to a (remote) TCP server
466 */
467 77 int ConnectTcpEndpoint(const std::string &ipv4_address, int portno) {
468 77 const int socket_fd = socket(AF_INET, SOCK_STREAM, 0);
469
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 77 times.
77 assert(socket_fd != -1);
470
471 struct sockaddr_in endpoint_addr;
472 77 memset(&endpoint_addr, 0, sizeof(endpoint_addr));
473 77 endpoint_addr.sin_family = AF_INET;
474 77 int retval = inet_aton(ipv4_address.c_str(), &(endpoint_addr.sin_addr));
475
2/2
✓ Branch 0 taken 17 times.
✓ Branch 1 taken 60 times.
77 if (retval == 0) {
476
1/2
✓ Branch 1 taken 17 times.
✗ Branch 2 not taken.
17 LogCvmfs(kLogCvmfs, kLogDebug, "invalid IPv4 address");
477
1/2
✓ Branch 1 taken 17 times.
✗ Branch 2 not taken.
17 close(socket_fd);
478 17 return -1;
479 }
480 60 endpoint_addr.sin_port = htons(portno);
481
482
1/2
✓ Branch 1 taken 60 times.
✗ Branch 2 not taken.
60 retval = connect(socket_fd,
483 reinterpret_cast<struct sockaddr *>(&endpoint_addr),
484 sizeof(endpoint_addr));
485
2/2
✓ Branch 0 taken 17 times.
✓ Branch 1 taken 43 times.
60 if (retval != 0) {
486 17 LogCvmfs(kLogCvmfs, kLogDebug, "failed to connect to TCP endpoint (%d)",
487
1/2
✓ Branch 1 taken 17 times.
✗ Branch 2 not taken.
17 errno);
488
1/2
✓ Branch 1 taken 17 times.
✗ Branch 2 not taken.
17 close(socket_fd);
489 17 return -1;
490 }
491 43 return socket_fd;
492 }
493
494
495 /**
496 * Creating a pipe should always succeed.
497 */
498 14955 void MakePipe(int pipe_fd[2]) {
499 14955 const int retval = pipe(pipe_fd);
500
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 14955 times.
14955 assert(retval == 0);
501 14955 }
502
503
504 /**
505 * Writes to a pipe should always succeed.
506 */
507 12653042 void WritePipe(int fd, const void *buf, size_t nbyte) {
508 ssize_t num_bytes;
509 do {
510 12653042 num_bytes = write(fd, buf, nbyte);
511
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 12653042 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
12653042 } while ((num_bytes < 0) && (errno == EINTR));
512
2/4
✓ Branch 0 taken 12653042 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 12653042 times.
✗ Branch 3 not taken.
12653042 assert((num_bytes >= 0) && (static_cast<size_t>(num_bytes) == nbyte));
513 12653042 }
514
515
516 /**
517 * Reads from a pipe should always succeed.
518 */
519 64897765 void ReadPipe(int fd, void *buf, size_t nbyte) {
520 ssize_t num_bytes;
521 do {
522 64897765 num_bytes = read(fd, buf, nbyte);
523
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 64897765 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
64897765 } while ((num_bytes < 0) && (errno == EINTR));
524
2/4
✓ Branch 0 taken 64897765 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 64897765 times.
✗ Branch 3 not taken.
64897765 assert((num_bytes >= 0) && (static_cast<size_t>(num_bytes) == nbyte));
525 64897765 }
526
527
528 /**
529 * Reads from a pipe where writer's end is not yet necessarily connected
530 */
531 3604866 bool ReadHalfPipe(int fd, void *buf, size_t nbyte, unsigned timeout_ms) {
532 ssize_t num_bytes;
533 3604866 unsigned i = 0;
534 3604866 unsigned backoff_ms = 1;
535 3604866 uint64_t duration_ms = 0;
536 3604866 uint64_t timestamp = 0;
537
2/2
✓ Branch 0 taken 24 times.
✓ Branch 1 taken 3604842 times.
3604866 if (timeout_ms != 0)
538 24 timestamp = platform_monotonic_time_ns();
539
540 3604866 const unsigned max_backoff_ms = 256;
541 do {
542 // When the writer is not connected, this takes ~200-300ns per call as per
543 // micro benchmarks
544 3604866 num_bytes = read(fd, buf, nbyte);
545
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 3604866 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
3604866 if ((num_bytes < 0) && (errno == EINTR))
546 continue;
547 3604866 i++;
548 // Start backing off when the busy loop reaches the ballpark of 1ms
549
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 3604866 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
3604866 if ((i > 3000) && (num_bytes == 0)) {
550 // The BackoffThrottle would pull in too many dependencies
551 SafeSleepMs(backoff_ms);
552 if (backoff_ms < max_backoff_ms)
553 backoff_ms *= 2;
554 }
555
3/4
✓ Branch 0 taken 24 times.
✓ Branch 1 taken 3604842 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 24 times.
3604866 if ((timeout_ms != 0) && (num_bytes == 0)) {
556 duration_ms = (platform_monotonic_time_ns() - timestamp)
557 / (1000UL * 1000UL);
558 if (duration_ms > timeout_ms)
559 return false;
560 }
561
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 3604866 times.
3604866 } while (num_bytes == 0);
562
2/4
✓ Branch 0 taken 3604866 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 3604866 times.
✗ Branch 3 not taken.
3604866 assert((num_bytes >= 0) && (static_cast<size_t>(num_bytes) == nbyte));
563 3604866 return true;
564 }
565
566
567 /**
568 * Closes both ends of a pipe
569 */
570 11750 void ClosePipe(int pipe_fd[2]) {
571 11750 close(pipe_fd[0]);
572 11750 close(pipe_fd[1]);
573 11750 }
574
575
576 /**
577 * Compares two directory trees on the meta-data level. Returns true iff the
578 * trees have identical content.
579 */
580 104166 bool DiffTree(const std::string &path_a, const std::string &path_b) {
581 int retval;
582 104166 std::vector<std::string> ls_a;
583 104166 std::vector<std::string> ls_b;
584 104166 std::vector<std::string> subdirs;
585
586
1/2
✓ Branch 2 taken 104166 times.
✗ Branch 3 not taken.
104166 DIR *dirp_a = opendir(path_a.c_str());
587
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 104166 times.
104166 if (dirp_a == NULL)
588 return false;
589
1/2
✓ Branch 2 taken 104166 times.
✗ Branch 3 not taken.
104166 DIR *dirp_b = opendir(path_b.c_str());
590
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 104166 times.
104166 if (dirp_b == NULL) {
591 closedir(dirp_a);
592 return false;
593 }
594
595 platform_dirent64 *dirent;
596
3/4
✓ Branch 1 taken 422784 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 318618 times.
✓ Branch 4 taken 104166 times.
422784 while ((dirent = platform_readdir(dirp_a))) {
597
1/2
✓ Branch 2 taken 318618 times.
✗ Branch 3 not taken.
318618 const std::string name(dirent->d_name);
598
6/6
✓ Branch 1 taken 214452 times.
✓ Branch 2 taken 104166 times.
✓ Branch 4 taken 104166 times.
✓ Branch 5 taken 110286 times.
✓ Branch 6 taken 208332 times.
✓ Branch 7 taken 110286 times.
318618 if ((name == ".") || (name == ".."))
599 208332 continue;
600
2/4
✓ Branch 1 taken 110286 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 110286 times.
✗ Branch 5 not taken.
110286 const std::string path = path_a + "/" + name;
601
1/2
✓ Branch 1 taken 110286 times.
✗ Branch 2 not taken.
110286 ls_a.push_back(path);
602
603 platform_stat64 info;
604 110286 retval = platform_lstat(path.c_str(), &info);
605
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 110286 times.
110286 if (retval != 0) {
606 closedir(dirp_a);
607 closedir(dirp_b);
608 return false;
609 }
610
2/2
✓ Branch 0 taken 104760 times.
✓ Branch 1 taken 5526 times.
110286 if (S_ISDIR(info.st_mode))
611
1/2
✓ Branch 1 taken 104760 times.
✗ Branch 2 not taken.
104760 subdirs.push_back(name);
612
3/5
✓ Branch 1 taken 110286 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 110286 times.
✓ Branch 5 taken 208332 times.
✗ Branch 6 not taken.
318618 }
613
3/4
✓ Branch 1 taken 422280 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 318114 times.
✓ Branch 4 taken 104166 times.
422280 while ((dirent = platform_readdir(dirp_b))) {
614
1/2
✓ Branch 2 taken 318114 times.
✗ Branch 3 not taken.
318114 const std::string name(dirent->d_name);
615
6/6
✓ Branch 1 taken 213948 times.
✓ Branch 2 taken 104166 times.
✓ Branch 4 taken 104166 times.
✓ Branch 5 taken 109782 times.
✓ Branch 6 taken 208332 times.
✓ Branch 7 taken 109782 times.
318114 if ((name == ".") || (name == ".."))
616 208332 continue;
617
2/4
✓ Branch 1 taken 109782 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 109782 times.
✗ Branch 5 not taken.
109782 const std::string path = path_b + "/" + name;
618
1/2
✓ Branch 1 taken 109782 times.
✗ Branch 2 not taken.
109782 ls_b.push_back(path);
619
2/2
✓ Branch 2 taken 109782 times.
✓ Branch 3 taken 208332 times.
318114 }
620
1/2
✓ Branch 1 taken 104166 times.
✗ Branch 2 not taken.
104166 closedir(dirp_a);
621
1/2
✓ Branch 1 taken 104166 times.
✗ Branch 2 not taken.
104166 closedir(dirp_b);
622
623
1/2
✓ Branch 3 taken 104166 times.
✗ Branch 4 not taken.
104166 sort(ls_a.begin(), ls_a.end());
624
1/2
✓ Branch 3 taken 104166 times.
✗ Branch 4 not taken.
104166 sort(ls_b.begin(), ls_b.end());
625
2/2
✓ Branch 2 taken 18 times.
✓ Branch 3 taken 104148 times.
104166 if (ls_a.size() != ls_b.size())
626 18 return false;
627
2/2
✓ Branch 1 taken 109404 times.
✓ Branch 2 taken 104148 times.
213552 for (unsigned i = 0; i < ls_a.size(); ++i) {
628
3/7
✓ Branch 2 taken 109404 times.
✗ Branch 3 not taken.
✓ Branch 6 taken 109404 times.
✗ Branch 7 not taken.
✗ Branch 8 not taken.
✗ Branch 11 not taken.
✓ Branch 12 taken 109404 times.
109404 if (GetFileName(ls_a[i]) != GetFileName(ls_b[i]))
629 return false;
630 platform_stat64 info_a;
631 platform_stat64 info_b;
632 109404 retval = platform_lstat(ls_a[i].c_str(), &info_a);
633
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 109404 times.
109404 if (retval != 0)
634 return false;
635 109404 retval = platform_lstat(ls_b[i].c_str(), &info_b);
636
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 109404 times.
109404 if (retval != 0)
637 return false;
638
2/4
✓ Branch 0 taken 109404 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 109404 times.
✗ Branch 3 not taken.
109404 if ((info_a.st_mode != info_b.st_mode) || (info_a.st_uid != info_b.st_uid)
639
1/2
✓ Branch 0 taken 109404 times.
✗ Branch 1 not taken.
109404 || (info_a.st_gid != info_b.st_gid)
640
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 109404 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
109404 || ((info_a.st_size != info_b.st_size) && !S_ISDIR(info_a.st_mode))) {
641 return false;
642 }
643 }
644
645
2/2
✓ Branch 1 taken 104112 times.
✓ Branch 2 taken 104148 times.
208260 for (unsigned i = 0; i < subdirs.size(); ++i) {
646
3/6
✓ Branch 2 taken 104112 times.
✗ Branch 3 not taken.
✓ Branch 5 taken 104112 times.
✗ Branch 6 not taken.
✓ Branch 8 taken 104112 times.
✗ Branch 9 not taken.
104112 const bool retval_subtree = DiffTree(path_a + "/" + subdirs[i],
647
2/4
✓ Branch 2 taken 104112 times.
✗ Branch 3 not taken.
✓ Branch 5 taken 104112 times.
✗ Branch 6 not taken.
208224 path_b + "/" + subdirs[i]);
648
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 104112 times.
104112 if (!retval_subtree)
649 return false;
650 }
651
652 104148 return true;
653 104166 }
654
655
656 /**
657 * Changes a non-blocking file descriptor to a blocking one.
658 */
659 162 void Nonblock2Block(int filedes) {
660 162 const int flags = fcntl(filedes, F_GETFL);
661
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 162 times.
162 assert(flags != -1);
662 162 const int retval = fcntl(filedes, F_SETFL, flags & ~O_NONBLOCK);
663
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 162 times.
162 assert(retval != -1);
664 162 }
665
666
667 /**
668 * Changes a blocking file descriptor to a non-blocking one.
669 */
670 165 void Block2Nonblock(int filedes) {
671 165 const int flags = fcntl(filedes, F_GETFL);
672
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 165 times.
165 assert(flags != -1);
673 165 const int retval = fcntl(filedes, F_SETFL, flags | O_NONBLOCK);
674
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 165 times.
165 assert(retval != -1);
675 165 }
676
677
678 /**
679 * Drops the characters of string to a socket. It doesn't matter
680 * if the other side has hung up.
681 */
682 300 void SendMsg2Socket(const int fd, const std::string &msg) {
683 300 (void)send(fd, &msg[0], msg.length(), MSG_NOSIGNAL);
684 300 }
685
686 /**
687 * Sends the file descriptor passing_fd to the socket socket_fd. Can be used
688 * to transfer an open file descriptor from one process to another. Use
689 * ConnectSocket() to get the socket_fd.
690 */
691 17 bool SendFd2Socket(int socket_fd, int passing_fd) {
692 union {
693 // Make sure that ctrl_msg is properly aligned.
694 struct cmsghdr align;
695 // Buffer large enough to store the file descriptor (ancillary data)
696 unsigned char buf[CMSG_SPACE(sizeof(int))];
697 } ctrl_msg;
698
699 17 memset(ctrl_msg.buf, 0, sizeof(ctrl_msg.buf));
700
701 struct msghdr msgh;
702 17 msgh.msg_name = NULL;
703 17 msgh.msg_namelen = 0;
704
705 17 unsigned char dummy = 0;
706 struct iovec iov;
707 17 iov.iov_base = &dummy;
708 17 iov.iov_len = 1;
709 17 msgh.msg_iov = &iov;
710 17 msgh.msg_iovlen = 1;
711
712 17 msgh.msg_control = ctrl_msg.buf;
713 17 msgh.msg_controllen = sizeof(ctrl_msg.buf);
714
1/2
✓ Branch 0 taken 17 times.
✗ Branch 1 not taken.
17 struct cmsghdr *cmsgp = CMSG_FIRSTHDR(&msgh);
715 17 cmsgp->cmsg_len = CMSG_LEN(sizeof(int));
716 17 cmsgp->cmsg_level = SOL_SOCKET;
717 17 cmsgp->cmsg_type = SCM_RIGHTS;
718 17 memcpy(CMSG_DATA(cmsgp), &passing_fd, sizeof(int));
719
720
1/2
✓ Branch 1 taken 17 times.
✗ Branch 2 not taken.
17 const ssize_t retval = sendmsg(socket_fd, &msgh, 0);
721 17 return (retval != -1);
722 }
723
724
725 /**
726 * Returns the file descriptor that has been sent with SendFd2Socket. The
727 * msg_fd file descriptor needs to come from a call to accept() on the socket
728 * where the passing file descriptor has been sent to.
729 * Returns -errno on error.
730 */
731 int RecvFdFromSocket(int msg_fd) {
732 union {
733 // Make sure that ctrl_msg is properly aligned.
734 struct cmsghdr align;
735 // Buffer large enough to store the file descriptor (ancillary data)
736 unsigned char buf[CMSG_SPACE(sizeof(int))];
737 } ctrl_msg;
738
739 memset(ctrl_msg.buf, 0, sizeof(ctrl_msg.buf));
740
741 struct msghdr msgh;
742 msgh.msg_name = NULL;
743 msgh.msg_namelen = 0;
744
745 unsigned char dummy;
746 struct iovec iov;
747 iov.iov_base = &dummy;
748 iov.iov_len = 1;
749 msgh.msg_iov = &iov;
750 msgh.msg_iovlen = 1;
751
752 msgh.msg_control = ctrl_msg.buf;
753 msgh.msg_controllen = sizeof(ctrl_msg.buf);
754
755 const ssize_t retval = recvmsg(msg_fd, &msgh, 0);
756 if (retval == -1)
757 return -errno;
758
759 struct cmsghdr *cmsgp = CMSG_FIRSTHDR(&msgh);
760 assert(cmsgp != NULL);
761 if (cmsgp->cmsg_len != CMSG_LEN(sizeof(int)))
762 return -ERANGE;
763 assert(cmsgp->cmsg_level == SOL_SOCKET);
764 assert(cmsgp->cmsg_type == SCM_RIGHTS);
765
766 int passing_fd;
767 memcpy(&passing_fd, CMSG_DATA(cmsgp), sizeof(int));
768 assert(passing_fd >= 0);
769 return passing_fd;
770 }
771
772
773 11 std::string GetHostname() {
774 char name[HOST_NAME_MAX + 1];
775 11 const int retval = gethostname(name, HOST_NAME_MAX);
776
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 11 times.
11 assert(retval == 0);
777
1/2
✓ Branch 2 taken 11 times.
✗ Branch 3 not taken.
11 return name;
778 }
779
780
781 /**
782 * set(e){g/u}id wrapper.
783 * If temporarily is true, reserve the ability to switch back.
784 *
785 * avoid_mutexes: if true, means that we are a forked child and must not use
786 * mutexes.
787 */
788 27 bool SwitchCredentials(const uid_t uid, const gid_t gid, const bool temporarily,
789 const bool avoid_mutexes) {
790
1/2
✓ Branch 0 taken 27 times.
✗ Branch 1 not taken.
27 if (!avoid_mutexes) {
791 27 LogCvmfs(kLogCvmfs, kLogDebug,
792 "current credentials uid %d gid %d "
793 "euid %d egid %d, switching to %d %d (temp: %d)",
794 getuid(), getgid(), geteuid(), getegid(), uid, gid, temporarily);
795 }
796 27 int retval = 0;
797
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 27 times.
27 if (temporarily) {
798 if (gid != getegid())
799 retval = setegid(gid);
800 if ((retval == 0) && (uid != geteuid()))
801 retval = seteuid(uid);
802 } else {
803 // If effective uid is not root, we probably need setuid+setgid
804 // capabilities first
805
1/2
✓ Branch 1 taken 27 times.
✗ Branch 2 not taken.
27 if (geteuid() != 0) {
806 27 retval = ObtainSetuidgidCapabilities(avoid_mutexes);
807
2/4
✓ Branch 0 taken 27 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 27 times.
✗ Branch 3 not taken.
27 if (!retval && !avoid_mutexes) {
808 27 LogCvmfs(kLogCvmfs, kLogDebug,
809 "unable to obtain setuid & setgid capabilities first");
810 }
811 // The setuid below will drop the capability again unless
812 // switching to root or keepcaps has been enabled.
813 }
814
1/4
✗ Branch 1 not taken.
✓ Branch 2 taken 27 times.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
27 retval = setgid(gid) || setuid(uid);
815 }
816
1/2
✓ Branch 0 taken 27 times.
✗ Branch 1 not taken.
27 if (!avoid_mutexes) {
817 27 LogCvmfs(kLogCvmfs, kLogDebug, "switch credentials result %d (%d)", retval,
818 27 errno);
819 }
820 27 return retval == 0;
821 }
822
823
824 /**
825 * Checks if the regular file path exists.
826 */
827 33214 bool FileExists(const std::string &path) {
828 platform_stat64 info;
829
4/4
✓ Branch 2 taken 13184 times.
✓ Branch 3 taken 20030 times.
✓ Branch 4 taken 12332 times.
✓ Branch 5 taken 852 times.
33214 return ((platform_lstat(path.c_str(), &info) == 0) && S_ISREG(info.st_mode));
830 }
831
832
833 /**
834 * Returns -1 on failure.
835 */
836 13324968 int64_t GetFileSize(const std::string &path) {
837 platform_stat64 info;
838 13324968 const int retval = platform_stat(path.c_str(), &info);
839
2/2
✓ Branch 0 taken 13336649 times.
✓ Branch 1 taken 23995 times.
13360644 if (retval != 0)
840 13336649 return -1;
841 23995 return info.st_size;
842 }
843
844
845 /**
846 * Checks if the directory (not symlink) path exists.
847 */
848 4668 bool DirectoryExists(const std::string &path) {
849 platform_stat64 info;
850
3/4
✓ Branch 2 taken 4581 times.
✓ Branch 3 taken 87 times.
✓ Branch 4 taken 4581 times.
✗ Branch 5 not taken.
4668 return ((platform_lstat(path.c_str(), &info) == 0) && S_ISDIR(info.st_mode));
851 }
852
853
854 /**
855 * Checks if the symlink file path exists.
856 */
857 1352 bool SymlinkExists(const std::string &path) {
858 platform_stat64 info;
859
4/4
✓ Branch 2 taken 1175 times.
✓ Branch 3 taken 177 times.
✓ Branch 4 taken 983 times.
✓ Branch 5 taken 192 times.
1352 return ((platform_lstat(path.c_str(), &info) == 0) && S_ISLNK(info.st_mode));
860 }
861
862
863 /**
864 * Equivalent of `ln -sf $src $dest`
865 */
866 131 bool SymlinkForced(const std::string &src, const std::string &dest) {
867 131 int retval = unlink(dest.c_str());
868
3/4
✓ Branch 0 taken 105 times.
✓ Branch 1 taken 26 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 105 times.
131 if ((retval != 0) && (errno != ENOENT))
869 return false;
870 131 retval = symlink(src.c_str(), dest.c_str());
871 131 return retval == 0;
872 }
873
874
875 /**
876 * The mkdir -p command. Additionally checks if the directory is writable
877 * if it exists.
878 */
879 1535985 bool MkdirDeep(const std::string &path,
880 const mode_t mode,
881 bool verify_writable) {
882
2/2
✓ Branch 1 taken 29 times.
✓ Branch 2 taken 1535956 times.
1535985 if (path == "")
883 29 return false;
884
885 1535956 int retval = mkdir(path.c_str(), mode);
886
2/2
✓ Branch 0 taken 1528263 times.
✓ Branch 1 taken 7693 times.
1535956 if (retval == 0)
887 1528263 return true;
888
889 15386 if ((errno == ENOENT)
890
9/15
✓ Branch 0 taken 2361 times.
✓ Branch 1 taken 5332 times.
✓ Branch 3 taken 2361 times.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
✓ Branch 6 taken 2361 times.
✗ Branch 7 not taken.
✓ Branch 8 taken 2361 times.
✗ Branch 9 not taken.
✓ Branch 10 taken 2361 times.
✓ Branch 11 taken 5332 times.
✓ Branch 13 taken 2361 times.
✓ Branch 14 taken 5332 times.
✗ Branch 15 not taken.
✗ Branch 16 not taken.
7693 && (MkdirDeep(GetParentPath(path), mode, verify_writable))) {
891 2361 return MkdirDeep(path, mode, verify_writable);
892 }
893
894
1/2
✓ Branch 0 taken 5332 times.
✗ Branch 1 not taken.
5332 if (errno == EEXIST) {
895 platform_stat64 info;
896
5/6
✓ Branch 2 taken 5332 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 5275 times.
✓ Branch 5 taken 57 times.
✓ Branch 6 taken 5275 times.
✓ Branch 7 taken 57 times.
5332 if ((platform_stat(path.c_str(), &info) == 0) && S_ISDIR(info.st_mode)) {
897
2/2
✓ Branch 0 taken 73 times.
✓ Branch 1 taken 5202 times.
5275 if (verify_writable) {
898 73 retval = utimes(path.c_str(), NULL);
899
1/2
✓ Branch 0 taken 73 times.
✗ Branch 1 not taken.
73 if (retval == 0)
900 5275 return true;
901 } else {
902 5202 return true;
903 }
904 }
905 }
906
907 57 return false;
908 }
909
910
911 /**
912 * Creates the "hash cache" directory structure in path.
913 */
914 5804 bool MakeCacheDirectories(const std::string &path, const mode_t mode) {
915
1/2
✓ Branch 1 taken 5804 times.
✗ Branch 2 not taken.
5804 const std::string canonical_path = MakeCanonicalPath(path);
916
917
1/2
✓ Branch 1 taken 5804 times.
✗ Branch 2 not taken.
5804 std::string this_path = canonical_path + "/quarantaine";
918
2/4
✓ Branch 1 taken 5804 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 5804 times.
5804 if (!MkdirDeep(this_path, mode, false))
919 return false;
920
921
1/2
✓ Branch 1 taken 5804 times.
✗ Branch 2 not taken.
5804 this_path = canonical_path + "/ff";
922
923 platform_stat64 stat_info;
924
2/2
✓ Branch 2 taken 5657 times.
✓ Branch 3 taken 147 times.
5804 if (platform_stat(this_path.c_str(), &stat_info) != 0) {
925
1/2
✓ Branch 1 taken 5657 times.
✗ Branch 2 not taken.
5657 this_path = canonical_path + "/txn";
926
2/4
✓ Branch 1 taken 5657 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 5657 times.
5657 if (!MkdirDeep(this_path, mode, false))
927 return false;
928
2/2
✓ Branch 0 taken 1448192 times.
✓ Branch 1 taken 5657 times.
1453849 for (int i = 0; i <= 0xff; i++) {
929 char hex[4];
930 1448192 snprintf(hex, sizeof(hex), "%02x", i);
931
3/6
✓ Branch 2 taken 1448192 times.
✗ Branch 3 not taken.
✓ Branch 5 taken 1448192 times.
✗ Branch 6 not taken.
✓ Branch 8 taken 1448192 times.
✗ Branch 9 not taken.
1448192 this_path = canonical_path + "/" + std::string(hex);
932
2/4
✓ Branch 1 taken 1448192 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 1448192 times.
1448192 if (!MkdirDeep(this_path, mode, false))
933 return false;
934 }
935 }
936 5804 return true;
937 5804 }
938
939
940 /**
941 * Tries to locks file path, return an error if file is already locked.
942 * Creates path if required.
943 *
944 * \return file descriptor, -1 on error, -2 if it would block
945 */
946 2478 int TryLockFile(const std::string &path) {
947 2478 const int fd_lockfile = open(path.c_str(), O_RDONLY | O_CREAT, 0600);
948
2/2
✓ Branch 0 taken 26 times.
✓ Branch 1 taken 2452 times.
2478 if (fd_lockfile < 0)
949 26 return -1;
950
951
2/2
✓ Branch 1 taken 48 times.
✓ Branch 2 taken 2404 times.
2452 if (flock(fd_lockfile, LOCK_EX | LOCK_NB) != 0) {
952 48 close(fd_lockfile);
953
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 48 times.
48 if (errno != EWOULDBLOCK)
954 return -1;
955 48 return -2;
956 }
957
958 2404 return fd_lockfile;
959 }
960
961
962 /**
963 * Tries to write the process id in a /var/run/progname.pid like file. Returns
964 * the same as TryLockFile.
965 *
966 * \return file descriptor, -1 on error, -2 if it would block
967 */
968 48 int WritePidFile(const std::string &path) {
969
1/2
✓ Branch 2 taken 48 times.
✗ Branch 3 not taken.
48 const int fd = open(path.c_str(), O_CREAT | O_RDWR, 0600);
970
2/2
✓ Branch 0 taken 12 times.
✓ Branch 1 taken 36 times.
48 if (fd < 0)
971 12 return -1;
972
2/2
✓ Branch 1 taken 12 times.
✓ Branch 2 taken 24 times.
36 if (flock(fd, LOCK_EX | LOCK_NB) != 0) {
973
1/2
✓ Branch 1 taken 12 times.
✗ Branch 2 not taken.
12 close(fd);
974
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 12 times.
12 if (errno != EWOULDBLOCK)
975 return -1;
976 12 return -2;
977 }
978
979 // Don't leak the file descriptor to exec'd children
980
1/2
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
24 int flags = fcntl(fd, F_GETFD);
981
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 24 times.
24 assert(flags != -1);
982 24 flags |= FD_CLOEXEC;
983
1/2
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
24 flags = fcntl(fd, F_SETFD, flags);
984
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 24 times.
24 assert(flags != -1);
985
986 char buf[64];
987
988 24 snprintf(buf, sizeof(buf), "%" PRId64 "\n", static_cast<uint64_t>(getpid()));
989 24 const bool retval = (ftruncate(fd, 0) == 0)
990
3/6
✓ Branch 0 taken 24 times.
✗ Branch 1 not taken.
✓ Branch 3 taken 24 times.
✗ Branch 4 not taken.
✓ Branch 5 taken 24 times.
✗ Branch 6 not taken.
24 && SafeWrite(fd, buf, strlen(buf));
991
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 24 times.
24 if (!retval) {
992 UnlockFile(fd);
993 return -1;
994 }
995 24 return fd;
996 }
997
998
999 /**
1000 * Locks file path, blocks if file is already locked. Creates path if required.
1001 *
1002 * \return file descriptor, -1 on error
1003 */
1004 3890 int LockFile(const std::string &path) {
1005 3890 const int fd_lockfile = open(path.c_str(), O_RDONLY | O_CREAT, 0600);
1006
2/2
✓ Branch 0 taken 106 times.
✓ Branch 1 taken 3784 times.
3890 if (fd_lockfile < 0)
1007 106 return -1;
1008
1009
1010
2/2
✓ Branch 1 taken 13 times.
✓ Branch 2 taken 3771 times.
3784 if (flock(fd_lockfile, LOCK_EX | LOCK_NB) != 0) {
1011
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 13 times.
13 if (errno != EWOULDBLOCK) {
1012 close(fd_lockfile);
1013 return -1;
1014 }
1015 13 LogCvmfs(kLogCvmfs, kLogSyslog, "another process holds %s, waiting.",
1016 path.c_str());
1017
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 13 times.
13 if (flock(fd_lockfile, LOCK_EX) != 0) {
1018 close(fd_lockfile);
1019 return -1;
1020 }
1021 13 LogCvmfs(kLogCvmfs, kLogSyslog, "lock %s acquired", path.c_str());
1022 }
1023
1024 3784 return fd_lockfile;
1025 }
1026
1027
1028 6135 void UnlockFile(const int filedes) {
1029 6135 const int retval = flock(filedes, LOCK_UN);
1030
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 6135 times.
6135 assert(retval == 0);
1031 6135 close(filedes);
1032 6135 }
1033
1034
1035 /**
1036 * Wrapper around mkstemp.
1037 */
1038 22913 FILE *CreateTempFile(const std::string &path_prefix, const int mode,
1039 const char *open_flags, std::string *final_path) {
1040 22913 *final_path = path_prefix + ".XXXXXX";
1041 22913 char *tmp_file = strdupa(final_path->c_str());
1042 22913 const int tmp_fd = mkstemp(tmp_file);
1043
2/2
✓ Branch 0 taken 89 times.
✓ Branch 1 taken 22824 times.
22913 if (tmp_fd < 0) {
1044 89 return NULL;
1045 }
1046
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 22824 times.
22824 if (fchmod(tmp_fd, mode) != 0) {
1047 close(tmp_fd);
1048 return NULL;
1049 }
1050
1051 22824 *final_path = tmp_file;
1052 22824 FILE *tmp_fp = fdopen(tmp_fd, open_flags);
1053
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 22824 times.
22824 if (!tmp_fp) {
1054 close(tmp_fd);
1055 unlink(tmp_file);
1056 return NULL;
1057 }
1058
1059 22824 return tmp_fp;
1060 }
1061
1062
1063 /**
1064 * Create the file but don't open. Use only in non-public tmp directories.
1065 */
1066 7867 std::string CreateTempPath(const std::string &path_prefix, const int mode) {
1067 7867 std::string result;
1068
1/2
✓ Branch 1 taken 7867 times.
✗ Branch 2 not taken.
7867 FILE *f = CreateTempFile(path_prefix, mode, "w", &result);
1069
2/2
✓ Branch 0 taken 21 times.
✓ Branch 1 taken 7846 times.
7867 if (!f)
1070
1/2
✓ Branch 2 taken 21 times.
✗ Branch 3 not taken.
21 return "";
1071
1/2
✓ Branch 1 taken 7846 times.
✗ Branch 2 not taken.
7846 fclose(f);
1072 7846 return result;
1073 7867 }
1074
1075
1076 /**
1077 * Create a directory with a unique name.
1078 */
1079 6308 std::string CreateTempDir(const std::string &path_prefix) {
1080
1/2
✓ Branch 1 taken 6308 times.
✗ Branch 2 not taken.
6308 const std::string dir = path_prefix + ".XXXXXX";
1081 6308 char *tmp_dir = strdupa(dir.c_str());
1082 6308 tmp_dir = mkdtemp(tmp_dir);
1083
2/2
✓ Branch 0 taken 12 times.
✓ Branch 1 taken 6296 times.
6308 if (tmp_dir == NULL)
1084
1/2
✓ Branch 2 taken 12 times.
✗ Branch 3 not taken.
12 return "";
1085
1/2
✓ Branch 2 taken 6296 times.
✗ Branch 3 not taken.
6296 return std::string(tmp_dir);
1086 6308 }
1087
1088
1089 /**
1090 * Get the current working directory of the running process
1091 */
1092 4285 std::string GetCurrentWorkingDirectory() {
1093 char cwd[PATH_MAX];
1094
3/9
✓ Branch 1 taken 4285 times.
✗ Branch 2 not taken.
✓ Branch 5 taken 4285 times.
✗ Branch 6 not taken.
✗ Branch 7 not taken.
✓ Branch 8 taken 4285 times.
✗ Branch 9 not taken.
✗ Branch 11 not taken.
✗ Branch 12 not taken.
4285 return (getcwd(cwd, sizeof(cwd)) != NULL) ? std::string(cwd) : std::string();
1095 }
1096
1097
1098 /**
1099 * Helper class that provides callback functions for the file system traversal.
1100 */
1101 class RemoveTreeHelper {
1102 public:
1103 bool success;
1104 9923 RemoveTreeHelper() { success = true; }
1105 39669 void RemoveFile(const std::string &parent_path, const std::string &name) {
1106
1/2
✓ Branch 2 taken 39669 times.
✗ Branch 3 not taken.
39669 const int retval = unlink((parent_path + "/" + name).c_str());
1107
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 39669 times.
39669 if (retval != 0)
1108 success = false;
1109 39669 }
1110 25447 void RemoveDir(const std::string &parent_path, const std::string &name) {
1111
1/2
✓ Branch 2 taken 25447 times.
✗ Branch 3 not taken.
25447 const int retval = rmdir((parent_path + "/" + name).c_str());
1112
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 25447 times.
25447 if (retval != 0)
1113 success = false;
1114 25447 }
1115 1441586 bool TryRemoveDir(const std::string &parent_path, const std::string &name) {
1116
1/2
✓ Branch 2 taken 1441586 times.
✗ Branch 3 not taken.
1441586 const int retval = rmdir((parent_path + "/" + name).c_str());
1117 1441586 return (retval != 0);
1118 }
1119 };
1120
1121
1122 /**
1123 * Does rm -rf on path.
1124 */
1125 10778 bool RemoveTree(const std::string &path) {
1126 platform_stat64 info;
1127 10778 const int retval = platform_lstat(path.c_str(), &info);
1128
2/2
✓ Branch 0 taken 855 times.
✓ Branch 1 taken 9923 times.
10778 if (retval != 0)
1129 855 return errno == ENOENT;
1130
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 9923 times.
9923 if (!S_ISDIR(info.st_mode))
1131 return false;
1132
1133
1/2
✓ Branch 1 taken 9923 times.
✗ Branch 2 not taken.
9923 RemoveTreeHelper *remove_tree_helper = new RemoveTreeHelper();
1134
2/4
✓ Branch 2 taken 9923 times.
✗ Branch 3 not taken.
✓ Branch 5 taken 9923 times.
✗ Branch 6 not taken.
19846 FileSystemTraversal<RemoveTreeHelper> traversal(remove_tree_helper, "", true);
1135 9923 traversal.fn_new_file = &RemoveTreeHelper::RemoveFile;
1136 9923 traversal.fn_new_character_dev = &RemoveTreeHelper::RemoveFile;
1137 9923 traversal.fn_new_symlink = &RemoveTreeHelper::RemoveFile;
1138 9923 traversal.fn_new_socket = &RemoveTreeHelper::RemoveFile;
1139 9923 traversal.fn_new_fifo = &RemoveTreeHelper::RemoveFile;
1140 9923 traversal.fn_leave_dir = &RemoveTreeHelper::RemoveDir;
1141 9923 traversal.fn_new_dir_prefix = &RemoveTreeHelper::TryRemoveDir;
1142
1/2
✓ Branch 1 taken 9923 times.
✗ Branch 2 not taken.
9923 traversal.Recurse(path);
1143 9923 const bool result = remove_tree_helper->success;
1144
1/2
✓ Branch 0 taken 9923 times.
✗ Branch 1 not taken.
9923 delete remove_tree_helper;
1145
1146 9923 return result;
1147 9923 }
1148
1149
1150 /**
1151 * Returns ls $dir/GLOB$suffix
1152 */
1153 563 std::vector<std::string> FindFilesBySuffix(const std::string &dir,
1154 const std::string &suffix) {
1155 563 std::vector<std::string> result;
1156
1/2
✓ Branch 2 taken 563 times.
✗ Branch 3 not taken.
563 DIR *dirp = opendir(dir.c_str());
1157
2/2
✓ Branch 0 taken 443 times.
✓ Branch 1 taken 120 times.
563 if (!dirp)
1158 443 return result;
1159
1160 platform_dirent64 *dirent;
1161
3/4
✓ Branch 1 taken 696 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 576 times.
✓ Branch 4 taken 120 times.
696 while ((dirent = platform_readdir(dirp))) {
1162
1/2
✓ Branch 2 taken 576 times.
✗ Branch 3 not taken.
576 const std::string name(dirent->d_name);
1163 576 if ((name.length() >= suffix.length())
1164
9/14
✓ Branch 1 taken 450 times.
✓ Branch 2 taken 126 times.
✓ Branch 6 taken 450 times.
✗ Branch 7 not taken.
✗ Branch 8 not taken.
✓ Branch 9 taken 261 times.
✓ Branch 10 taken 189 times.
✓ Branch 11 taken 450 times.
✓ Branch 12 taken 126 times.
✗ Branch 13 not taken.
✓ Branch 14 taken 261 times.
✓ Branch 15 taken 315 times.
✗ Branch 16 not taken.
✗ Branch 17 not taken.
1152 && (name.substr(name.length() - suffix.length()) == suffix)) {
1165
3/6
✓ Branch 1 taken 261 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 261 times.
✗ Branch 5 not taken.
✓ Branch 7 taken 261 times.
✗ Branch 8 not taken.
261 result.push_back(dir + "/" + name);
1166 }
1167 576 }
1168
1/2
✓ Branch 1 taken 120 times.
✗ Branch 2 not taken.
120 closedir(dirp);
1169
1/2
✓ Branch 3 taken 120 times.
✗ Branch 4 not taken.
120 std::sort(result.begin(), result.end());
1170 120 return result;
1171 }
1172
1173
1174 /**
1175 * Returns ls $dir/$prefixGLOB
1176 */
1177 85 std::vector<std::string> FindFilesByPrefix(const std::string &dir,
1178 const std::string &prefix) {
1179 85 std::vector<std::string> result;
1180
1/2
✓ Branch 2 taken 85 times.
✗ Branch 3 not taken.
85 DIR *dirp = opendir(dir.c_str());
1181
2/2
✓ Branch 0 taken 17 times.
✓ Branch 1 taken 68 times.
85 if (!dirp)
1182 17 return result;
1183
1184 platform_dirent64 *dirent;
1185
3/4
✓ Branch 1 taken 476 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 408 times.
✓ Branch 4 taken 68 times.
476 while ((dirent = platform_readdir(dirp))) {
1186
1/2
✓ Branch 2 taken 408 times.
✗ Branch 3 not taken.
408 const std::string name(dirent->d_name);
1187 408 if ((name.length() >= prefix.length())
1188
9/14
✓ Branch 1 taken 340 times.
✓ Branch 2 taken 68 times.
✓ Branch 5 taken 340 times.
✗ Branch 6 not taken.
✗ Branch 7 not taken.
✓ Branch 8 taken 187 times.
✓ Branch 9 taken 153 times.
✓ Branch 10 taken 340 times.
✓ Branch 11 taken 68 times.
✗ Branch 12 not taken.
✓ Branch 13 taken 187 times.
✓ Branch 14 taken 221 times.
✗ Branch 15 not taken.
✗ Branch 16 not taken.
816 && (name.substr(0, prefix.length()) == prefix)) {
1189
3/6
✓ Branch 1 taken 187 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 187 times.
✗ Branch 5 not taken.
✓ Branch 7 taken 187 times.
✗ Branch 8 not taken.
187 result.push_back(dir + "/" + name);
1190 }
1191 408 }
1192
1/2
✓ Branch 1 taken 68 times.
✗ Branch 2 not taken.
68 closedir(dirp);
1193
1/2
✓ Branch 3 taken 68 times.
✗ Branch 4 not taken.
68 std::sort(result.begin(), result.end());
1194 68 return result;
1195 }
1196
1197
1198 /**
1199 * Finds all direct subdirectories under parent_dir (except ., ..). Used,
1200 * for instance, to parse /etc/cvmfs/repositories.d/<reponoame>
1201 */
1202 108 std::vector<std::string> FindDirectories(const std::string &parent_dir) {
1203 108 std::vector<std::string> result;
1204
1/2
✓ Branch 2 taken 108 times.
✗ Branch 3 not taken.
108 DIR *dirp = opendir(parent_dir.c_str());
1205
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 108 times.
108 if (!dirp)
1206 return result;
1207
1208 platform_dirent64 *dirent;
1209
3/4
✓ Branch 1 taken 567 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 459 times.
✓ Branch 4 taken 108 times.
567 while ((dirent = platform_readdir(dirp))) {
1210
1/2
✓ Branch 2 taken 459 times.
✗ Branch 3 not taken.
459 const std::string name(dirent->d_name);
1211
6/6
✓ Branch 1 taken 351 times.
✓ Branch 2 taken 108 times.
✓ Branch 4 taken 108 times.
✓ Branch 5 taken 243 times.
✓ Branch 6 taken 216 times.
✓ Branch 7 taken 243 times.
459 if ((name == ".") || (name == ".."))
1212 216 continue;
1213
2/4
✓ Branch 1 taken 243 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 243 times.
✗ Branch 5 not taken.
243 const std::string path = parent_dir + "/" + name;
1214
1215 platform_stat64 info;
1216 243 const int retval = platform_stat(path.c_str(), &info);
1217
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 243 times.
243 if (retval != 0)
1218 continue;
1219
2/2
✓ Branch 0 taken 189 times.
✓ Branch 1 taken 54 times.
243 if (S_ISDIR(info.st_mode))
1220
1/2
✓ Branch 1 taken 189 times.
✗ Branch 2 not taken.
189 result.push_back(path);
1221
3/4
✓ Branch 1 taken 243 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 243 times.
✓ Branch 5 taken 216 times.
459 }
1222
1/2
✓ Branch 1 taken 108 times.
✗ Branch 2 not taken.
108 closedir(dirp);
1223
1/2
✓ Branch 3 taken 108 times.
✗ Branch 4 not taken.
108 sort(result.begin(), result.end());
1224 108 return result;
1225 }
1226
1227
1228 /**
1229 * Finds all files and direct subdirectories under directory (except ., ..).
1230 */
1231 153 bool ListDirectory(const std::string &directory,
1232 std::vector<std::string> *names,
1233 std::vector<mode_t> *modes) {
1234 153 DIR *dirp = opendir(directory.c_str());
1235
2/2
✓ Branch 0 taken 17 times.
✓ Branch 1 taken 136 times.
153 if (!dirp)
1236 17 return false;
1237
1238 platform_dirent64 *dirent;
1239
2/2
✓ Branch 1 taken 1989 times.
✓ Branch 2 taken 136 times.
2125 while ((dirent = platform_readdir(dirp))) {
1240
1/2
✓ Branch 2 taken 1989 times.
✗ Branch 3 not taken.
1989 const std::string name(dirent->d_name);
1241
6/6
✓ Branch 1 taken 1853 times.
✓ Branch 2 taken 136 times.
✓ Branch 4 taken 136 times.
✓ Branch 5 taken 1717 times.
✓ Branch 6 taken 272 times.
✓ Branch 7 taken 1717 times.
1989 if ((name == ".") || (name == ".."))
1242 272 continue;
1243
2/4
✓ Branch 1 taken 1717 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 1717 times.
✗ Branch 5 not taken.
1717 const std::string path = directory + "/" + name;
1244
1245 platform_stat64 info;
1246 1717 const int retval = platform_lstat(path.c_str(), &info);
1247
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1717 times.
1717 if (retval != 0) {
1248 closedir(dirp);
1249 return false;
1250 }
1251
1252
1/2
✓ Branch 1 taken 1717 times.
✗ Branch 2 not taken.
1717 names->push_back(name);
1253
1/2
✓ Branch 1 taken 1717 times.
✗ Branch 2 not taken.
1717 modes->push_back(info.st_mode);
1254
3/5
✓ Branch 1 taken 1717 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 1717 times.
✓ Branch 5 taken 272 times.
✗ Branch 6 not taken.
1989 }
1255 136 closedir(dirp);
1256
1257 136 SortTeam(names, modes);
1258 136 return true;
1259 }
1260
1261
1262 /**
1263 * Looks whether exe is an executable file. If exe is not an absolute path,
1264 * searches the PATH environment.
1265 */
1266 78 std::string FindExecutable(const std::string &exe) {
1267
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 78 times.
78 if (exe.empty())
1268 return "";
1269
1270 78 std::vector<std::string> search_paths;
1271
2/2
✓ Branch 1 taken 26 times.
✓ Branch 2 taken 52 times.
78 if (exe[0] == '/') {
1272
2/4
✓ Branch 1 taken 26 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 26 times.
✗ Branch 5 not taken.
26 search_paths.push_back(GetParentPath(exe));
1273 } else {
1274 52 char *path_env = getenv("PATH");
1275
1/2
✓ Branch 0 taken 52 times.
✗ Branch 1 not taken.
52 if (path_env) {
1276
2/4
✓ Branch 2 taken 52 times.
✗ Branch 3 not taken.
✓ Branch 5 taken 52 times.
✗ Branch 6 not taken.
52 search_paths = SplitString(path_env, ':');
1277 }
1278 }
1279
1280
2/2
✓ Branch 1 taken 286 times.
✓ Branch 2 taken 26 times.
312 for (unsigned i = 0; i < search_paths.size(); ++i) {
1281
1/2
✗ Branch 2 not taken.
✓ Branch 3 taken 286 times.
286 if (search_paths[i].empty())
1282 234 continue;
1283
2/4
✓ Branch 2 taken 286 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 286 times.
286 if (search_paths[i][0] != '/')
1284 continue;
1285
1286
3/6
✓ Branch 1 taken 286 times.
✗ Branch 2 not taken.
✓ Branch 5 taken 286 times.
✗ Branch 6 not taken.
✓ Branch 8 taken 286 times.
✗ Branch 9 not taken.
572 std::string path = search_paths[i] + "/" + GetFileName(exe);
1287 platform_stat64 info;
1288 286 int retval = platform_stat(path.c_str(), &info);
1289
2/2
✓ Branch 0 taken 234 times.
✓ Branch 1 taken 52 times.
286 if (retval != 0)
1290 234 continue;
1291
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 52 times.
52 if (!S_ISREG(info.st_mode))
1292 continue;
1293 52 retval = access(path.c_str(), X_OK);
1294
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 52 times.
52 if (retval != 0)
1295 continue;
1296
1297 52 return path;
1298
2/2
✓ Branch 1 taken 234 times.
✓ Branch 2 taken 52 times.
286 }
1299
1300
1/2
✓ Branch 2 taken 26 times.
✗ Branch 3 not taken.
26 return "";
1301 78 }
1302
1303
1304 18 std::string GetUserName() {
1305 struct passwd pwd;
1306 18 struct passwd *result = NULL;
1307 18 int bufsize = 16 * 1024;
1308 18 char *buf = static_cast<char *>(smalloc(bufsize));
1309
2/4
✓ Branch 2 taken 18 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 18 times.
18 while (getpwuid_r(geteuid(), &pwd, buf, bufsize, &result) == ERANGE) {
1310 bufsize *= 2;
1311 buf = static_cast<char *>(srealloc(buf, bufsize));
1312 }
1313
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 18 times.
18 if (result == NULL) {
1314 free(buf);
1315 return "";
1316 }
1317
1/2
✓ Branch 2 taken 18 times.
✗ Branch 3 not taken.
18 std::string user_name = pwd.pw_name;
1318 18 free(buf);
1319 18 return user_name;
1320 18 }
1321
1322 std::string GetShell() {
1323 struct passwd pwd;
1324 struct passwd *result = NULL;
1325 int bufsize = 16 * 1024;
1326 char *buf = static_cast<char *>(smalloc(bufsize));
1327 while (getpwuid_r(geteuid(), &pwd, buf, bufsize, &result) == ERANGE) {
1328 bufsize *= 2;
1329 buf = static_cast<char *>(srealloc(buf, bufsize));
1330 }
1331 if (result == NULL) {
1332 free(buf);
1333 return "";
1334 }
1335 std::string shell = pwd.pw_shell;
1336 free(buf);
1337 return shell;
1338 }
1339
1340 /**
1341 * UID -> Name from passwd database
1342 */
1343 17 bool GetUserNameOf(uid_t uid, std::string *username) {
1344 struct passwd pwd;
1345 17 struct passwd *result = NULL;
1346 17 int bufsize = 16 * 1024;
1347 17 char *buf = static_cast<char *>(smalloc(bufsize));
1348
2/4
✓ Branch 1 taken 17 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 17 times.
17 while (getpwuid_r(uid, &pwd, buf, bufsize, &result) == ERANGE) {
1349 bufsize *= 2;
1350 buf = static_cast<char *>(srealloc(buf, bufsize));
1351 }
1352
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 17 times.
17 if (result == NULL) {
1353 free(buf);
1354 return false;
1355 }
1356
1/2
✓ Branch 0 taken 17 times.
✗ Branch 1 not taken.
17 if (username)
1357
1/2
✓ Branch 1 taken 17 times.
✗ Branch 2 not taken.
17 *username = result->pw_name;
1358 17 free(buf);
1359 17 return true;
1360 }
1361
1362
1363 /**
1364 * Name -> UID from passwd database
1365 */
1366 63 bool GetUidOf(const std::string &username, uid_t *uid, gid_t *main_gid) {
1367 struct passwd pwd;
1368 63 struct passwd *result = NULL;
1369 63 int bufsize = 16 * 1024;
1370 63 char *buf = static_cast<char *>(smalloc(bufsize));
1371
2/4
✓ Branch 2 taken 63 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 63 times.
63 while (getpwnam_r(username.c_str(), &pwd, buf, bufsize, &result) == ERANGE) {
1372 bufsize *= 2;
1373 buf = static_cast<char *>(srealloc(buf, bufsize));
1374 }
1375
2/2
✓ Branch 0 taken 14 times.
✓ Branch 1 taken 49 times.
63 if (result == NULL) {
1376 14 free(buf);
1377 14 return false;
1378 }
1379 49 *uid = result->pw_uid;
1380 49 *main_gid = result->pw_gid;
1381 49 free(buf);
1382 49 return true;
1383 }
1384
1385
1386 /**
1387 * Name -> GID from groups database
1388 */
1389 26 bool GetGidOf(const std::string &groupname, gid_t *gid) {
1390 struct group grp;
1391 26 struct group *result = NULL;
1392 26 int bufsize = 16 * 1024;
1393 26 char *buf = static_cast<char *>(smalloc(bufsize));
1394
2/4
✓ Branch 2 taken 26 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 26 times.
26 while (getgrnam_r(groupname.c_str(), &grp, buf, bufsize, &result) == ERANGE) {
1395 bufsize *= 2;
1396 buf = static_cast<char *>(srealloc(buf, bufsize));
1397 }
1398
2/2
✓ Branch 0 taken 13 times.
✓ Branch 1 taken 13 times.
26 if (result == NULL) {
1399 13 free(buf);
1400 13 return false;
1401 }
1402 13 *gid = result->gr_gid;
1403 13 free(buf);
1404 13 return true;
1405 }
1406
1407 /**
1408 * read the current umask of this process
1409 * Note: umask query is guarded by a global mutex. Hence, always use
1410 * this function and beware of scalability bottlenecks
1411 */
1412 1757 mode_t GetUmask() {
1413 1757 const MutexLockGuard m(&getumask_mutex);
1414 1757 const mode_t my_umask = umask(0);
1415 1757 umask(my_umask);
1416 3514 return my_umask;
1417 1757 }
1418
1419
1420 /**
1421 * Adds gid to the list of supplementary groups
1422 */
1423 bool AddGroup2Persona(const gid_t gid) {
1424 const int ngroups = getgroups(0, NULL);
1425 if (ngroups < 0)
1426 return false;
1427 gid_t *groups = static_cast<gid_t *>(smalloc((ngroups + 1) * sizeof(gid_t)));
1428 int retval = getgroups(ngroups, groups);
1429 if (retval < 0) {
1430 free(groups);
1431 return false;
1432 }
1433 for (int i = 0; i < ngroups; ++i) {
1434 if (groups[i] == gid) {
1435 free(groups);
1436 return true;
1437 }
1438 }
1439 groups[ngroups] = gid;
1440 retval = setgroups(ngroups + 1, groups);
1441 free(groups);
1442 return retval == 0;
1443 }
1444
1445
1446 44 std::string GetHomeDirectory() {
1447 44 const uid_t uid = getuid();
1448 struct passwd pwd;
1449 44 struct passwd *result = NULL;
1450 44 int bufsize = 16 * 1024;
1451 44 char *buf = static_cast<char *>(smalloc(bufsize));
1452
2/4
✓ Branch 1 taken 44 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 44 times.
44 while (getpwuid_r(uid, &pwd, buf, bufsize, &result) == ERANGE) {
1453 bufsize *= 2;
1454 buf = static_cast<char *>(srealloc(buf, bufsize));
1455 }
1456
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 44 times.
44 if (result == NULL) {
1457 free(buf);
1458 return "";
1459 }
1460
1/2
✓ Branch 2 taken 44 times.
✗ Branch 3 not taken.
44 std::string home_dir = result->pw_dir;
1461 44 free(buf);
1462 44 return home_dir;
1463 44 }
1464
1465 /**
1466 * Returns the output of `uname -m`
1467 */
1468 13 std::string GetArch() {
1469 struct utsname info;
1470 13 const int retval = uname(&info);
1471
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 13 times.
13 assert(retval == 0);
1472
1/2
✓ Branch 2 taken 13 times.
✗ Branch 3 not taken.
13 return info.machine;
1473 }
1474
1475
1476 /**
1477 * Sets soft and hard limit for maximum number of open file descriptors.
1478 * Returns 0 on success, -1 on failure, -2 if running under valgrind.
1479 */
1480 86 int SetLimitNoFile(unsigned limit_nofile) {
1481 struct rlimit rpl;
1482 86 memset(&rpl, 0, sizeof(rpl));
1483 86 getrlimit(RLIMIT_NOFILE, &rpl);
1484
2/2
✓ Branch 0 taken 53 times.
✓ Branch 1 taken 33 times.
86 if (rpl.rlim_max < limit_nofile)
1485 53 rpl.rlim_max = limit_nofile;
1486 86 rpl.rlim_cur = limit_nofile;
1487 86 const int retval = setrlimit(RLIMIT_NOFILE, &rpl);
1488
2/2
✓ Branch 0 taken 33 times.
✓ Branch 1 taken 53 times.
86 if (retval == 0)
1489 33 return 0;
1490
1491 #ifdef HAS_VALGRIND_HEADERS
1492
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 53 times.
53 return RUNNING_ON_VALGRIND ? -2 : -1;
1493 #else
1494 return -1;
1495 #endif
1496 }
1497
1498
1499 /**
1500 * Get the file descriptor limits
1501 */
1502 682 void GetLimitNoFile(unsigned *soft_limit, unsigned *hard_limit) {
1503 682 *soft_limit = 0;
1504 682 *hard_limit = 0;
1505
1506 struct rlimit rpl;
1507 682 memset(&rpl, 0, sizeof(rpl));
1508 682 getrlimit(RLIMIT_NOFILE, &rpl);
1509 682 *soft_limit = rpl.rlim_cur;
1510
1511 #ifdef __APPLE__
1512 int value = sysconf(_SC_OPEN_MAX);
1513 assert(value > 0);
1514 *hard_limit = value;
1515 #else
1516 682 *hard_limit = rpl.rlim_max;
1517 #endif
1518 682 }
1519
1520
1521 /**
1522 * Sets soft and hard limit for maximum core size
1523 */
1524 bool SetLimitCore(unsigned limit_core) {
1525 struct rlimit rpl;
1526 memset(&rpl, 0, sizeof(rpl));
1527 rpl.rlim_max = limit_core;
1528 rpl.rlim_cur = limit_core;
1529 return (setrlimit(RLIMIT_CORE, &rpl) == 0);
1530 }
1531
1532
1533 17 std::vector<LsofEntry> Lsof(const std::string &path) {
1534 17 std::vector<LsofEntry> result;
1535
1536 17 std::vector<std::string> proc_names;
1537 17 std::vector<mode_t> proc_modes;
1538
2/4
✓ Branch 2 taken 17 times.
✗ Branch 3 not taken.
✓ Branch 5 taken 17 times.
✗ Branch 6 not taken.
17 ListDirectory("/proc", &proc_names, &proc_modes);
1539
1540
2/2
✓ Branch 1 taken 1088 times.
✓ Branch 2 taken 17 times.
1105 for (unsigned i = 0; i < proc_names.size(); ++i) {
1541
2/2
✓ Branch 1 taken 833 times.
✓ Branch 2 taken 255 times.
1088 if (!S_ISDIR(proc_modes[i]))
1542 1003 continue;
1543
2/2
✓ Branch 2 taken 170 times.
✓ Branch 3 taken 85 times.
255 if (proc_names[i].find_first_not_of("1234567890") != std::string::npos)
1544 170 continue;
1545
1546 85 std::vector<std::string> fd_names;
1547 85 std::vector<mode_t> fd_modes;
1548
1/2
✓ Branch 2 taken 85 times.
✗ Branch 3 not taken.
85 const std::string proc_dir = "/proc/" + proc_names[i];
1549
1/2
✓ Branch 1 taken 85 times.
✗ Branch 2 not taken.
85 const std::string fd_dir = proc_dir + "/fd";
1550
1/2
✓ Branch 1 taken 85 times.
✗ Branch 2 not taken.
85 const bool rvb = ListDirectory(fd_dir, &fd_names, &fd_modes);
1551 85 uid_t proc_uid = 0;
1552
1553 // The working directory of the process requires special handling
1554
1/2
✓ Branch 0 taken 85 times.
✗ Branch 1 not taken.
85 if (rvb) {
1555 platform_stat64 info;
1556 85 platform_stat(proc_dir.c_str(), &info);
1557 85 proc_uid = info.st_uid;
1558
1559
2/4
✓ Branch 1 taken 85 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 85 times.
✗ Branch 5 not taken.
85 const std::string cwd = ReadSymlink(proc_dir + "/cwd");
1560
5/9
✓ Branch 1 taken 85 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 85 times.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
✓ Branch 7 taken 85 times.
✗ Branch 8 not taken.
✓ Branch 11 taken 17 times.
✓ Branch 12 taken 68 times.
85 if (HasPrefix(cwd + "/", path + "/", false /* ignore_case */)) {
1561 17 LsofEntry entry;
1562
1/2
✓ Branch 2 taken 17 times.
✗ Branch 3 not taken.
17 entry.pid = static_cast<pid_t>(String2Uint64(proc_names[i]));
1563 17 entry.owner = proc_uid;
1564 17 entry.read_only = true; // A bit sloppy but good enough for the moment
1565
2/4
✓ Branch 1 taken 17 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 17 times.
✗ Branch 5 not taken.
17 entry.executable = ReadSymlink(proc_dir + "/exe");
1566
1/2
✓ Branch 1 taken 17 times.
✗ Branch 2 not taken.
17 entry.path = cwd;
1567
1/2
✓ Branch 1 taken 17 times.
✗ Branch 2 not taken.
17 result.push_back(entry);
1568 17 }
1569 85 }
1570
1571
2/2
✓ Branch 1 taken 561 times.
✓ Branch 2 taken 85 times.
646 for (unsigned j = 0; j < fd_names.size(); ++j) {
1572
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 561 times.
561 if (!S_ISLNK(fd_modes[j]))
1573 374 continue;
1574
1/2
✗ Branch 2 not taken.
✓ Branch 3 taken 561 times.
561 if (fd_names[j].find_first_not_of("1234567890") != std::string::npos)
1575 continue;
1576
1577
3/6
✓ Branch 2 taken 561 times.
✗ Branch 3 not taken.
✓ Branch 5 taken 561 times.
✗ Branch 6 not taken.
✓ Branch 8 taken 561 times.
✗ Branch 9 not taken.
1122 const std::string target = ReadSymlink(fd_dir + "/" + fd_names[j]);
1578
5/9
✓ Branch 1 taken 561 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 561 times.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
✓ Branch 7 taken 561 times.
✗ Branch 8 not taken.
✓ Branch 11 taken 374 times.
✓ Branch 12 taken 187 times.
561 if (!HasPrefix(target + "/", path + "/", false /* ignore_case */))
1579 374 continue;
1580
1581 187 LsofEntry entry;
1582
1/2
✓ Branch 2 taken 187 times.
✗ Branch 3 not taken.
187 entry.pid = static_cast<pid_t>(String2Uint64(proc_names[i]));
1583 187 entry.owner = proc_uid;
1584 187 entry.read_only = !((fd_modes[j] & S_IWUSR) == S_IWUSR);
1585
2/4
✓ Branch 1 taken 187 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 187 times.
✗ Branch 5 not taken.
187 entry.executable = ReadSymlink(proc_dir + "/exe");
1586
1/2
✓ Branch 1 taken 187 times.
✗ Branch 2 not taken.
187 entry.path = target;
1587
1/2
✓ Branch 1 taken 187 times.
✗ Branch 2 not taken.
187 result.push_back(entry);
1588
2/2
✓ Branch 2 taken 187 times.
✓ Branch 3 taken 374 times.
561 }
1589 85 }
1590
1591 34 return result;
1592 17 }
1593
1594
1595 66 bool ProcessExists(pid_t pid) {
1596
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 66 times.
66 assert(pid > 0);
1597 66 const int retval = kill(pid, 0);
1598
2/2
✓ Branch 0 taken 44 times.
✓ Branch 1 taken 22 times.
66 if (retval == 0)
1599 44 return true;
1600 22 return (errno != ESRCH);
1601 }
1602
1603
1604 /**
1605 * Blocks a signal for the calling thread.
1606 */
1607 43 void BlockSignal(int signum) {
1608 sigset_t sigset;
1609 43 int retval = sigemptyset(&sigset);
1610
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 43 times.
43 assert(retval == 0);
1611 43 retval = sigaddset(&sigset, signum);
1612
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 43 times.
43 assert(retval == 0);
1613 43 retval = pthread_sigmask(SIG_BLOCK, &sigset, NULL);
1614
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 43 times.
43 assert(retval == 0);
1615 43 }
1616
1617
1618 /**
1619 * Waits for a signal. The signal should be blocked before for all threads.
1620 * Threads inherit their parent's signal mask.
1621 */
1622 24 void WaitForSignal(int signum) {
1623 int retval;
1624 do {
1625 24 retval = platform_sigwait(signum);
1626
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
24 } while ((retval != signum) && (errno == EINTR));
1627
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 24 times.
24 assert(retval == signum);
1628 24 }
1629
1630
1631 /**
1632 * Returns -1 if the child crashed or the exit code otherwise.
1633 * @param pid Process identifier.
1634 * @param sig_ok List of signals that are still considered a successful
1635 * termination.
1636 */
1637 90 int WaitForChild(pid_t pid, const std::vector<int> &sig_ok) {
1638
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 90 times.
90 assert(pid > 0);
1639 int statloc;
1640 while (true) {
1641
1/2
✓ Branch 1 taken 90 times.
✗ Branch 2 not taken.
90 const pid_t retval = waitpid(pid, &statloc, 0);
1642
2/2
✓ Branch 0 taken 13 times.
✓ Branch 1 taken 77 times.
90 if (retval == -1) {
1643
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 13 times.
13 if (errno == EINTR)
1644 continue;
1645 13 PANIC(kLogSyslogErr | kLogDebug, "waitpid failed with errno %d", errno);
1646 }
1647
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 77 times.
77 assert(retval == pid);
1648 77 break;
1649 }
1650
2/2
✓ Branch 0 taken 64 times.
✓ Branch 1 taken 13 times.
77 if (WIFEXITED(statloc))
1651 64 return WEXITSTATUS(statloc);
1652 26 if (WIFSIGNALED(statloc)
1653
3/6
✓ Branch 0 taken 13 times.
✗ Branch 1 not taken.
✓ Branch 5 taken 13 times.
✗ Branch 6 not taken.
✗ Branch 7 not taken.
✓ Branch 8 taken 13 times.
39 && (std::find(sig_ok.begin(), sig_ok.end(), WTERMSIG(statloc))
1654
1/2
✗ Branch 2 not taken.
✓ Branch 3 taken 13 times.
39 != sig_ok.end()))
1655 return 0;
1656 13 return -1;
1657 }
1658
1659 /**
1660 * Exec a command as a daemon.
1661 */
1662
1663 bool ExecAsDaemon(const std::vector<std::string> &command_line,
1664 pid_t *child_pid) {
1665 assert(command_line.size() >= 1);
1666
1667 Pipe<kPipeDetachedChild> pipe_fork;
1668 const pid_t pid = fork();
1669 assert(pid >= 0);
1670 if (pid == 0) {
1671 pid_t pid_grand_child;
1672
1673 const char *argv[command_line.size() + 1];
1674 for (unsigned i = 0; i < command_line.size(); ++i)
1675 argv[i] = command_line[i].c_str();
1676 argv[command_line.size()] = NULL;
1677 int retval = setsid();
1678 assert(retval != -1);
1679
1680 pid_grand_child = fork();
1681 assert(pid_grand_child >= 0);
1682
1683 if (pid_grand_child != 0) {
1684 pipe_fork.Write<pid_t>(pid_grand_child);
1685 _exit(0);
1686 } else {
1687 const int null_read = open("/dev/null", O_RDONLY);
1688 const int null_write = open("/dev/null", O_WRONLY);
1689 assert((null_read >= 0) && (null_write >= 0));
1690 retval = dup2(null_read, 0);
1691 assert(retval == 0);
1692 retval = dup2(null_write, 1);
1693 assert(retval == 1);
1694 retval = dup2(null_write, 2);
1695 assert(retval == 2);
1696 close(null_read);
1697 close(null_write);
1698
1699 execvp(command_line[0].c_str(), const_cast<char **>(argv));
1700
1701 pipe_fork.CloseWriteFd();
1702 }
1703 }
1704 int statloc;
1705 waitpid(pid, &statloc, 0);
1706 pid_t buf_child_pid = 0;
1707 pipe_fork.Read(&buf_child_pid);
1708 if (child_pid != NULL)
1709 *child_pid = buf_child_pid;
1710 pipe_fork.CloseReadFd();
1711
1712 LogCvmfs(kLogCvmfs, kLogDebug, "exec'd as daemon %s (PID: %d)",
1713 command_line[0].c_str(), static_cast<int>(*child_pid));
1714 return true;
1715 }
1716
1717
1718 /**
1719 * Makes a daemon. The daemon() call is deprecated on OS X
1720 */
1721 void Daemonize() {
1722 pid_t pid;
1723 int statloc;
1724 if ((pid = fork()) == 0) {
1725 int retval = setsid();
1726 assert(retval != -1);
1727 if ((pid = fork()) == 0) {
1728
1/2
✓ Branch 1 taken 49 times.
✗ Branch 2 not taken.
49 const int null_read = open("/dev/null", O_RDONLY);
1729
1/2
✓ Branch 1 taken 49 times.
✗ Branch 2 not taken.
49 const int null_write = open("/dev/null", O_WRONLY);
1730
2/4
✓ Branch 0 taken 49 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 49 times.
✗ Branch 3 not taken.
49 assert((null_read >= 0) && (null_write >= 0));
1731 49 retval = dup2(null_read, 0);
1732
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 49 times.
49 assert(retval == 0);
1733 49 retval = dup2(null_write, 1);
1734
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 49 times.
49 assert(retval == 1);
1735 49 retval = dup2(null_write, 2);
1736
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 49 times.
49 assert(retval == 2);
1737
1/2
✓ Branch 1 taken 49 times.
✗ Branch 2 not taken.
49 close(null_read);
1738
1/2
✓ Branch 1 taken 49 times.
✗ Branch 2 not taken.
49 close(null_write);
1739
1/2
✓ Branch 1 taken 49 times.
✗ Branch 2 not taken.
49 LogCvmfs(kLogCvmfs, kLogDebug, "daemonized");
1740 } else {
1741 assert(pid > 0);
1742 _exit(0);
1743 }
1744 } else {
1745 assert(pid > 0);
1746 waitpid(pid, &statloc, 0);
1747 _exit(0);
1748 }
1749 49 }
1750
1751
1752 492 bool ExecuteBinary(int *fd_stdin,
1753 int *fd_stdout,
1754 int *fd_stderr,
1755 const std::string &binary_path,
1756 const std::vector<std::string> &argv,
1757 const bool double_fork,
1758 pid_t *child_pid) {
1759 int pipe_stdin[2];
1760 int pipe_stdout[2];
1761 int pipe_stderr[2];
1762
1/2
✓ Branch 1 taken 492 times.
✗ Branch 2 not taken.
492 MakePipe(pipe_stdin);
1763
1/2
✓ Branch 1 taken 492 times.
✗ Branch 2 not taken.
492 MakePipe(pipe_stdout);
1764
1/2
✓ Branch 1 taken 492 times.
✗ Branch 2 not taken.
492 MakePipe(pipe_stderr);
1765
1766 492 std::set<int> preserve_fildes;
1767
1/2
✓ Branch 1 taken 492 times.
✗ Branch 2 not taken.
492 preserve_fildes.insert(0);
1768
1/2
✓ Branch 1 taken 492 times.
✗ Branch 2 not taken.
492 preserve_fildes.insert(1);
1769
1/2
✓ Branch 1 taken 492 times.
✗ Branch 2 not taken.
492 preserve_fildes.insert(2);
1770 492 std::map<int, int> map_fildes;
1771
1/2
✓ Branch 1 taken 492 times.
✗ Branch 2 not taken.
492 map_fildes[pipe_stdin[0]] = 0; // Reading end of pipe_stdin
1772
1/2
✓ Branch 1 taken 492 times.
✗ Branch 2 not taken.
492 map_fildes[pipe_stdout[1]] = 1; // Writing end of pipe_stdout
1773
1/2
✓ Branch 1 taken 492 times.
✗ Branch 2 not taken.
492 map_fildes[pipe_stderr[1]] = 2; // Writing end of pipe_stderr
1774 492 std::vector<std::string> cmd_line;
1775
1/2
✓ Branch 1 taken 492 times.
✗ Branch 2 not taken.
492 cmd_line.push_back(binary_path);
1776
1/2
✓ Branch 5 taken 492 times.
✗ Branch 6 not taken.
492 cmd_line.insert(cmd_line.end(), argv.begin(), argv.end());
1777
1778
2/4
✓ Branch 1 taken 492 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 492 times.
492 if (!ManagedExec(cmd_line,
1779 preserve_fildes,
1780 map_fildes,
1781 true /* drop_credentials */,
1782 false /* clear_env */,
1783 double_fork,
1784 child_pid)) {
1785 ClosePipe(pipe_stdin);
1786 ClosePipe(pipe_stdout);
1787 ClosePipe(pipe_stderr);
1788 return false;
1789 }
1790
1791
1/2
✓ Branch 1 taken 492 times.
✗ Branch 2 not taken.
492 close(pipe_stdin[0]);
1792
1/2
✓ Branch 1 taken 492 times.
✗ Branch 2 not taken.
492 close(pipe_stdout[1]);
1793
1/2
✓ Branch 1 taken 492 times.
✗ Branch 2 not taken.
492 close(pipe_stderr[1]);
1794 492 *fd_stdin = pipe_stdin[1];
1795 492 *fd_stdout = pipe_stdout[0];
1796 492 *fd_stderr = pipe_stderr[0];
1797 492 return true;
1798 492 }
1799
1800
1801 /**
1802 * Opens /bin/sh and provides file descriptors to write into stdin and
1803 * read from stdout. Quit shell simply by closing stderr, stdout, and stdin.
1804 */
1805 436 bool Shell(int *fd_stdin, int *fd_stdout, int *fd_stderr) {
1806 436 const bool double_fork = true;
1807
2/4
✓ Branch 2 taken 436 times.
✗ Branch 3 not taken.
✓ Branch 5 taken 436 times.
✗ Branch 6 not taken.
872 return ExecuteBinary(fd_stdin, fd_stdout, fd_stderr, "/bin/sh",
1808 1308 std::vector<std::string>(), double_fork);
1809 }
1810
1811 struct ForkFailures { // TODO(rmeusel): C++11 (type safe enum)
1812 enum Names {
1813 kSendPid,
1814 kUnknown,
1815 kFailDupFd,
1816 kFailCloseFds,
1817 kFailGetFdFlags,
1818 kFailSetFdFlags,
1819 kFailDropCredentials,
1820 kFailExec,
1821 };
1822
1823 static std::string ToString(const Names name) {
1824 switch (name) {
1825 case kSendPid:
1826 return "Sending PID";
1827
1828 default:
1829 case kUnknown:
1830 return "Unknown Status";
1831 case kFailDupFd:
1832 return "Duplicate File Descriptor";
1833 case kFailCloseFds:
1834 return "Close File Descriptors";
1835 case kFailGetFdFlags:
1836 return "Read File Descriptor Flags";
1837 case kFailSetFdFlags:
1838 return "Set File Descriptor Flags";
1839 case kFailDropCredentials:
1840 return "Lower User Permissions";
1841 case kFailExec:
1842 return "Invoking execvp()";
1843 }
1844 }
1845 };
1846
1847 /**
1848 * Loop through all possible FDs and close them.
1849 */
1850 8 static bool CloseAllFildesUntilMaxFD(const std::set<int> &preserve_fildes,
1851 long max_fd) { // NOLINT(runtime/int)
1852
2/2
✓ Branch 0 taken 4000 times.
✓ Branch 1 taken 8 times.
4008 for (long fd = 0; fd < max_fd; fd++) { // NOLINT(runtime/int)
1853
3/4
✓ Branch 1 taken 4000 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 3960 times.
✓ Branch 4 taken 40 times.
4000 if (preserve_fildes.count(static_cast<int>(fd)) == 0) {
1854 3960 close(static_cast<int>(fd));
1855 }
1856 }
1857
1858 8 return true;
1859 }
1860
1861 /**
1862 * Enumerate currently open file descriptors via a procfs-like directory
1863 * (/proc/self/fd on Linux, /dev/fd on macOS) and close the ones not in
1864 * preserve_fildes.
1865 */
1866 43 static bool CloseAllFildesInFdDir(const char *fd_dir,
1867 const std::set<int> &preserve_fildes) {
1868 43 DIR *dirp = opendir(fd_dir);
1869
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 43 times.
43 if (!dirp)
1870 return false;
1871
1872 platform_dirent64 *dirent;
1873
1874
2/2
✓ Branch 1 taken 935 times.
✓ Branch 2 taken 43 times.
978 while ((dirent = platform_readdir(dirp))) {
1875
1/2
✓ Branch 2 taken 935 times.
✗ Branch 3 not taken.
935 const std::string name(dirent->d_name);
1876 uint64_t name_uint64;
1877
1878 // Make sure the dir name is digits only (skips ".", ".." and similar).
1879
3/4
✓ Branch 1 taken 935 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 86 times.
✓ Branch 4 taken 849 times.
935 if (!String2Uint64Parse(name, &name_uint64)) {
1880 86 continue;
1881 }
1882
1883 849 const int fd = static_cast<int>(name_uint64);
1884
3/4
✓ Branch 1 taken 849 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 213 times.
✓ Branch 4 taken 636 times.
849 if (preserve_fildes.count(fd)) {
1885 213 continue;
1886 }
1887
1888
1/2
✓ Branch 1 taken 636 times.
✗ Branch 2 not taken.
636 close(fd);
1889
2/2
✓ Branch 1 taken 636 times.
✓ Branch 2 taken 299 times.
935 }
1890
1891 43 closedir(dirp);
1892
1893 43 return true;
1894 }
1895
1896 /**
1897 * Closes all file descriptors except the ones in preserve_fildes.
1898 * To be used after fork but before exec.
1899 */
1900 51 bool CloseAllFildes(const std::set<int> &preserve_fildes) {
1901 51 const long max_fd = sysconf(_SC_OPEN_MAX); // NOLINT(runtime/int)
1902
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 51 times.
51 if (max_fd < 0) {
1903 return false;
1904 }
1905
1906 // When RLIMIT_NOFILE is unbounded (sysconf returns LONG_MAX) or simply very
1907 // large, iterating [0, max_fd) is impractical. Enumerate the actually open
1908 // fds via the kernel's fd directory instead.
1909
2/2
✓ Branch 0 taken 43 times.
✓ Branch 1 taken 8 times.
51 if (max_fd > 100000) {
1910 #ifdef __APPLE__
1911 return CloseAllFildesInFdDir("/dev/fd", preserve_fildes);
1912 #else
1913 43 return CloseAllFildesInFdDir("/proc/self/fd", preserve_fildes);
1914 #endif
1915 }
1916
1917 8 return CloseAllFildesUntilMaxFD(preserve_fildes, max_fd);
1918 }
1919
1920 /**
1921 * Execve to the given command line, preserving the given file descriptors.
1922 * If stdin, stdout, stderr should be preserved, add 0, 1, 2.
1923 * File descriptors from the parent process can also be mapped to the new
1924 * process (dup2) using map_fildes. Can be useful for
1925 * stdout/in/err redirection.
1926 * NOTE: The destination fildes have to be preserved!
1927 * NOTE: For forked child, held mutexes have invalid state, avoid operations.
1928 * Does a double fork to detach child.
1929 * The command_line parameter contains the binary at index 0 and the arguments
1930 * in the rest of the vector.
1931 * Using the optional parameter *pid it is possible to retrieve the process ID
1932 * of the spawned process.
1933 */
1934 555 bool ManagedExec(const std::vector<std::string> &command_line,
1935 const std::set<int> &preserve_fildes,
1936 const std::map<int, int> &map_fildes,
1937 const bool drop_credentials,
1938 const bool clear_env,
1939 const bool double_fork,
1940 pid_t *child_pid) {
1941
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 555 times.
555 assert(command_line.size() >= 1);
1942
1943
1/2
✓ Branch 1 taken 555 times.
✗ Branch 2 not taken.
555 Pipe<kPipeDetachedChild> pipe_fork;
1944 555 const pid_t pid = fork();
1945
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 557 times.
557 assert(pid >= 0);
1946
2/2
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 555 times.
557 if (pid == 0) {
1947 pid_t pid_grand_child;
1948 int fd_flags;
1949 2 ForkFailures::Names failed = ForkFailures::kUnknown;
1950
1951 2 std::set<int> skip_fds = preserve_fildes;
1952
1/2
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
2 skip_fds.insert(pipe_fork.GetWriteFd());
1953
1954
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2 times.
2 if (clear_env) {
1955 #ifdef __APPLE__
1956 environ = NULL;
1957 #else
1958 const int retval = clearenv();
1959 assert(retval == 0);
1960 #endif
1961 }
1962
1963 2 const char *argv[command_line.size() + 1];
1964
2/2
✓ Branch 1 taken 3 times.
✓ Branch 2 taken 2 times.
5 for (unsigned i = 0; i < command_line.size(); ++i)
1965 3 argv[i] = command_line[i].c_str();
1966 2 argv[command_line.size()] = NULL;
1967
1968 // Child, map file descriptors
1969 4 for (std::map<int, int>::const_iterator i = map_fildes.begin(),
1970 2 iEnd = map_fildes.end();
1971
2/2
✓ Branch 1 taken 6 times.
✓ Branch 2 taken 2 times.
8 i != iEnd;
1972 6 ++i) {
1973 6 const int retval = dup2(i->first, i->second);
1974
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 6 times.
6 if (retval == -1) {
1975 failed = ForkFailures::kFailDupFd;
1976 goto fork_failure;
1977 }
1978 }
1979
1980 // Child, close file descriptors
1981
2/4
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 2 times.
2 if (!CloseAllFildes(skip_fds)) {
1982 failed = ForkFailures::kFailCloseFds;
1983 goto fork_failure;
1984 }
1985
1986 // Double fork to disconnect from parent
1987
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2 times.
2 if (double_fork) {
1988 pid_grand_child = fork();
1989
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 28 times.
28 assert(pid_grand_child >= 0);
1990
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 28 times.
28 if (pid_grand_child != 0)
1991 _exit(0);
1992 }
1993
1994
1/2
✓ Branch 2 taken 30 times.
✗ Branch 3 not taken.
30 fd_flags = fcntl(pipe_fork.GetWriteFd(), F_GETFD);
1995
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 30 times.
30 if (fd_flags < 0) {
1996 failed = ForkFailures::kFailGetFdFlags;
1997 goto fork_failure;
1998 }
1999 30 fd_flags |= FD_CLOEXEC;
2000
2/4
✓ Branch 2 taken 30 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 30 times.
30 if (fcntl(pipe_fork.GetWriteFd(), F_SETFD, fd_flags) < 0) {
2001 failed = ForkFailures::kFailSetFdFlags;
2002 goto fork_failure;
2003 }
2004
2005 #ifdef DEBUGMSG
2006
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 30 times.
30 assert(setenv("__CVMFS_DEBUG_MODE__", "yes", 1) == 0);
2007 #endif
2008
5/8
✓ Branch 0 taken 29 times.
✓ Branch 1 taken 1 times.
✓ Branch 3 taken 29 times.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
✓ Branch 6 taken 29 times.
✗ Branch 7 not taken.
✓ Branch 8 taken 30 times.
30 if (drop_credentials && SetuidCapabilityPermitted() &&
2009 !SwitchCredentials(geteuid(),
2010 getegid(),
2011 false /* temporarily */,
2012 true /* avoid_mutexes */)) {
2013 failed = ForkFailures::kFailDropCredentials;
2014 goto fork_failure;
2015 }
2016
2017 // retrieve the PID of the new (grand) child process and send it to the
2018 // grand father
2019 30 pid_grand_child = getpid();
2020 30 failed = ForkFailures::kSendPid;
2021
1/2
✓ Branch 1 taken 30 times.
✗ Branch 2 not taken.
30 pipe_fork.Write<ForkFailures::Names>(failed);
2022
1/2
✓ Branch 1 taken 30 times.
✗ Branch 2 not taken.
30 pipe_fork.Write<pid_t>(pid_grand_child);
2023
2024 30 execvp(command_line[0].c_str(), const_cast<char **>(argv));
2025
2026 failed = ForkFailures::kFailExec;
2027
2028 fork_failure:
2029 pipe_fork.Write<ForkFailures::Names>(failed);
2030 _exit(1);
2031
1/2
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
2 }
2032
2/2
✓ Branch 0 taken 524 times.
✓ Branch 1 taken 31 times.
555 if (double_fork) {
2033 int statloc;
2034
1/2
✓ Branch 1 taken 524 times.
✗ Branch 2 not taken.
524 waitpid(pid, &statloc, 0);
2035 }
2036
2037
1/2
✓ Branch 1 taken 555 times.
✗ Branch 2 not taken.
555 pipe_fork.CloseWriteFd();
2038
2039 // Either the PID or a return value is sent
2040 ForkFailures::Names status_code;
2041
1/2
✓ Branch 1 taken 555 times.
✗ Branch 2 not taken.
555 pipe_fork.Read<ForkFailures::Names>(&status_code);
2042
2043
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 555 times.
555 if (status_code != ForkFailures::kSendPid) {
2044 pipe_fork.CloseReadFd();
2045 LogCvmfs(kLogCvmfs, kLogDebug, "managed execve failed (%s)",
2046 ForkFailures::ToString(status_code).c_str());
2047 return false;
2048 }
2049
2050 // read the PID of the spawned process if requested
2051 // (the actual read needs to be done in any case!)
2052 555 pid_t buf_child_pid = 0;
2053
1/2
✓ Branch 1 taken 555 times.
✗ Branch 2 not taken.
555 pipe_fork.Read(&buf_child_pid);
2054
2/2
✓ Branch 0 taken 119 times.
✓ Branch 1 taken 436 times.
555 if (child_pid != NULL)
2055 119 *child_pid = buf_child_pid;
2056
1/2
✓ Branch 1 taken 555 times.
✗ Branch 2 not taken.
555 pipe_fork.CloseReadFd();
2057
1/2
✓ Branch 2 taken 555 times.
✗ Branch 3 not taken.
555 LogCvmfs(kLogCvmfs, kLogDebug, "execve'd %s (PID: %d)",
2058 555 command_line[0].c_str(), static_cast<int>(buf_child_pid));
2059 555 return true;
2060 555 }
2061
2062
2063 /**
2064 * Sleeps using select. This is without signals and doesn't interfere with
2065 * other uses of the ALRM signal.
2066 */
2067 1734 void SafeSleepMs(const unsigned ms) {
2068 struct timeval wait_for;
2069 1734 wait_for.tv_sec = ms / 1000;
2070 1734 wait_for.tv_usec = (ms % 1000) * 1000;
2071
2/2
✓ Branch 1 taken 1698 times.
✓ Branch 2 taken 36 times.
1734 select(0, NULL, NULL, NULL, &wait_for);
2072 1698 }
2073
2074
2075 /**
2076 * Deal with EINTR and partial writes.
2077 */
2078 5812 bool SafeWrite(int fd, const void *buf, size_t nbyte) {
2079
2/2
✓ Branch 0 taken 5812 times.
✓ Branch 1 taken 5771 times.
11583 while (nbyte) {
2080 5812 const ssize_t retval = write(fd, buf, nbyte);
2081
2/2
✓ Branch 0 taken 41 times.
✓ Branch 1 taken 5771 times.
5812 if (retval < 0) {
2082
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 41 times.
41 if (errno == EINTR)
2083 continue;
2084 41 return false;
2085 }
2086
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 5771 times.
5771 assert(static_cast<size_t>(retval) <= nbyte);
2087 5771 buf = reinterpret_cast<const char *>(buf) + retval;
2088 5771 nbyte -= retval;
2089 }
2090 5771 return true;
2091 }
2092
2093 /**
2094 * The contents of the iov vector might be modified by the function.
2095 */
2096 54053 bool SafeWriteV(int fd, struct iovec *iov, unsigned iovcnt) {
2097 54053 unsigned nbytes = 0;
2098
2/2
✓ Branch 0 taken 152382 times.
✓ Branch 1 taken 54053 times.
206435 for (unsigned i = 0; i < iovcnt; ++i)
2099 152382 nbytes += iov[i].iov_len;
2100 54053 unsigned iov_idx = 0;
2101
2102
2/2
✓ Branch 0 taken 54053 times.
✓ Branch 1 taken 14 times.
54067 while (nbytes) {
2103 108099 const ssize_t retval = writev(fd, &iov[iov_idx],
2104 54053 static_cast<int>(iovcnt - iov_idx));
2105
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 54046 times.
54046 if (retval < 0) {
2106 if (errno == EINTR)
2107 continue;
2108 return false;
2109 }
2110
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 54046 times.
54046 assert(static_cast<size_t>(retval) <= nbytes);
2111 54046 nbytes -= retval;
2112
2113 54046 unsigned sum_written_blocks = 0;
2114 54046 while ((sum_written_blocks + iov[iov_idx].iov_len)
2115
2/2
✓ Branch 0 taken 152354 times.
✓ Branch 1 taken 14 times.
152368 <= static_cast<size_t>(retval)) {
2116 152354 sum_written_blocks += iov[iov_idx].iov_len;
2117 152354 iov_idx++;
2118
2/2
✓ Branch 0 taken 54032 times.
✓ Branch 1 taken 98322 times.
152354 if (iov_idx == iovcnt) {
2119
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 54032 times.
54032 assert(sum_written_blocks == static_cast<size_t>(retval));
2120 54032 return true;
2121 }
2122 }
2123 14 const unsigned offset = retval - sum_written_blocks;
2124 14 iov[iov_idx].iov_len -= offset;
2125 14 iov[iov_idx].iov_base = reinterpret_cast<char *>(iov[iov_idx].iov_base)
2126 14 + offset;
2127 }
2128
2129 14 return true;
2130 }
2131
2132
2133 /**
2134 * Deal with EINTR and partial reads.
2135 */
2136 4017429 ssize_t SafeRead(int fd, void *buf, size_t nbyte) {
2137 4017429 ssize_t total_bytes = 0;
2138
2/2
✓ Branch 0 taken 4079503 times.
✓ Branch 1 taken 4009663 times.
8089166 while (nbyte) {
2139 4079503 const ssize_t retval = read(fd, buf, nbyte);
2140
2/2
✓ Branch 0 taken 44 times.
✓ Branch 1 taken 4084665 times.
4084709 if (retval < 0) {
2141
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 44 times.
44 if (errno == EINTR)
2142 continue;
2143 44 return -1;
2144
2/2
✓ Branch 0 taken 12928 times.
✓ Branch 1 taken 4071737 times.
4084665 } else if (retval == 0) {
2145 12928 return total_bytes;
2146 }
2147
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4071737 times.
4071737 assert(static_cast<size_t>(retval) <= nbyte);
2148 4071737 buf = reinterpret_cast<char *>(buf) + retval;
2149 4071737 nbyte -= retval;
2150 4071737 total_bytes += retval;
2151 }
2152 4009663 return total_bytes;
2153 }
2154
2155
2156 /**
2157 * Pull file contents into a string
2158 */
2159 1280 bool SafeReadToString(int fd, std::string *final_result) {
2160
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1280 times.
1280 if (!final_result) {
2161 return false;
2162 }
2163
2164 1280 std::string tmp_result;
2165 static const int buf_size = 4096;
2166 char buf[4096];
2167 1280 ssize_t total_bytes = -1;
2168 do {
2169
1/2
✓ Branch 1 taken 14192 times.
✗ Branch 2 not taken.
14192 total_bytes = SafeRead(fd, buf, buf_size);
2170
2/2
✓ Branch 0 taken 22 times.
✓ Branch 1 taken 14170 times.
14192 if (total_bytes < 0) {
2171 22 return false;
2172 }
2173
1/2
✓ Branch 1 taken 14170 times.
✗ Branch 2 not taken.
14170 tmp_result.append(buf, total_bytes);
2174
2/2
✓ Branch 0 taken 12912 times.
✓ Branch 1 taken 1258 times.
14170 } while (total_bytes == buf_size);
2175 1258 final_result->swap(tmp_result);
2176 1258 return true;
2177 1280 }
2178
2179 4748 bool SafeWriteToFile(const std::string &content,
2180 const std::string &path,
2181 int mode) {
2182 4748 const int fd = open(path.c_str(), O_WRONLY | O_CREAT | O_TRUNC, mode);
2183
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4748 times.
4748 if (fd < 0)
2184 return false;
2185 4748 const bool retval = SafeWrite(fd, content.data(), content.size());
2186 4748 close(fd);
2187 4748 return retval;
2188 }
2189
2190
2191 #ifdef CVMFS_NAMESPACE_GUARD
2192 } // namespace CVMFS_NAMESPACE_GUARD
2193 #endif
2194