Fix: Relay daemon ownership and reference counting
[lttng-tools.git] / src / common / utils.c
CommitLineData
81b86775
DG
1/*
2 * Copyright (C) 2012 - David Goulet <dgoulet@efficios.com>
66495845 3 * Copyright (C) 2013 - Raphaël Beamonte <raphael.beamonte@gmail.com>
8db0dc00 4 * Copyright (C) 2013 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
81b86775
DG
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License, version 2 only, as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc., 51
17 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20#define _GNU_SOURCE
6c1c0768 21#define _LGPL_SOURCE
35f90c40 22#include <assert.h>
81b86775
DG
23#include <ctype.h>
24#include <fcntl.h>
25#include <limits.h>
26#include <stdlib.h>
27#include <string.h>
2d851108 28#include <sys/stat.h>
0c7bcad5 29#include <sys/types.h>
2d851108 30#include <unistd.h>
fe4477ee 31#include <inttypes.h>
6c71277b 32#include <grp.h>
fb198a11 33#include <pwd.h>
c9cb3e7d 34#include <sys/file.h>
3d071855 35#include <dirent.h>
81b86775
DG
36
37#include <common/common.h>
fe4477ee 38#include <common/runas.h>
e8fa9fb0 39#include <common/compat/getenv.h>
81b86775
DG
40
41#include "utils.h"
feb0f3e5 42#include "defaults.h"
81b86775 43
5154230f
RB
44/*
45 * Return a partial realpath(3) of the path even if the full path does not
46 * exist. For instance, with /tmp/test1/test2/test3, if test2/ does not exist
47 * but the /tmp/test1 does, the real path for /tmp/test1 is concatened with
48 * /test2/test3 then returned. In normal time, realpath(3) fails if the end
49 * point directory does not exist.
50 * In case resolved_path is NULL, the string returned was allocated in the
51 * function and thus need to be freed by the caller. The size argument allows
52 * to specify the size of the resolved_path argument if given, or the size to
53 * allocate.
54 */
55LTTNG_HIDDEN
56char *utils_partial_realpath(const char *path, char *resolved_path, size_t size)
57{
58 char *cut_path, *try_path = NULL, *try_path_prev = NULL;
59 const char *next, *prev, *end;
60
61 /* Safety net */
62 if (path == NULL) {
63 goto error;
64 }
65
66 /*
67 * Identify the end of the path, we don't want to treat the
68 * last char if it is a '/', we will just keep it on the side
69 * to be added at the end, and return a value coherent with
70 * the path given as argument
71 */
72 end = path + strlen(path);
73 if (*(end-1) == '/') {
74 end--;
75 }
76
77 /* Initiate the values of the pointers before looping */
78 next = path;
79 prev = next;
80 /* Only to ensure try_path is not NULL to enter the while */
81 try_path = (char *)next;
82
83 /* Resolve the canonical path of the first part of the path */
84 while (try_path != NULL && next != end) {
85 /*
86 * If there is not any '/' left, we want to try with
87 * the full path
88 */
89 next = strpbrk(next + 1, "/");
90 if (next == NULL) {
91 next = end;
92 }
93
94 /* Cut the part we will be trying to resolve */
95 cut_path = strndup(path, next - path);
d9dbcf5e
MD
96 if (cut_path == NULL) {
97 PERROR("strndup");
98 goto error;
99 }
5154230f
RB
100
101 /* Try to resolve this part */
102 try_path = realpath((char *)cut_path, NULL);
103 if (try_path == NULL) {
104 /*
105 * There was an error, we just want to be assured it
106 * is linked to an unexistent directory, if it's another
107 * reason, we spawn an error
108 */
109 switch (errno) {
110 case ENOENT:
111 /* Ignore the error */
112 break;
113 default:
114 PERROR("realpath (partial_realpath)");
115 goto error;
116 break;
117 }
118 } else {
119 /* Save the place we are before trying the next step */
120 free(try_path_prev);
121 try_path_prev = try_path;
122 prev = next;
123 }
124
125 /* Free the allocated memory */
126 free(cut_path);
127 };
128
129 /* Allocate memory for the resolved path if necessary */
130 if (resolved_path == NULL) {
131 resolved_path = zmalloc(size);
132 if (resolved_path == NULL) {
133 PERROR("zmalloc resolved path");
134 goto error;
135 }
136 }
137
138 /*
139 * If we were able to solve at least partially the path, we can concatenate
140 * what worked and what didn't work
141 */
142 if (try_path_prev != NULL) {
143 /* If we risk to concatenate two '/', we remove one of them */
144 if (try_path_prev[strlen(try_path_prev) - 1] == '/' && prev[0] == '/') {
145 try_path_prev[strlen(try_path_prev) - 1] = '\0';
146 }
147
148 /*
149 * Duplicate the memory used by prev in case resolved_path and
150 * path are pointers for the same memory space
151 */
152 cut_path = strdup(prev);
d9dbcf5e
MD
153 if (cut_path == NULL) {
154 PERROR("strdup");
155 goto error;
156 }
5154230f
RB
157
158 /* Concatenate the strings */
159 snprintf(resolved_path, size, "%s%s", try_path_prev, cut_path);
160
161 /* Free the allocated memory */
162 free(cut_path);
163 free(try_path_prev);
164 /*
165 * Else, we just copy the path in our resolved_path to
166 * return it as is
167 */
168 } else {
169 strncpy(resolved_path, path, size);
170 }
171
172 /* Then we return the 'partially' resolved path */
173 return resolved_path;
174
175error:
176 free(resolved_path);
177 return NULL;
178}
179
81b86775 180/*
3d229795
RB
181 * Make a full resolution of the given path even if it doesn't exist.
182 * This function uses the utils_partial_realpath function to resolve
183 * symlinks and relatives paths at the start of the string, and
184 * implements functionnalities to resolve the './' and '../' strings
185 * in the middle of a path. This function is only necessary because
186 * realpath(3) does not accept to resolve unexistent paths.
187 * The returned string was allocated in the function, it is thus of
188 * the responsibility of the caller to free this memory.
81b86775 189 */
90e535ef 190LTTNG_HIDDEN
81b86775
DG
191char *utils_expand_path(const char *path)
192{
3d229795 193 char *next, *previous, *slash, *start_path, *absolute_path = NULL;
5de083f4
RB
194 char *last_token;
195 int is_dot, is_dotdot;
81b86775
DG
196
197 /* Safety net */
198 if (path == NULL) {
199 goto error;
200 }
201
3d229795
RB
202 /* Allocate memory for the absolute_path */
203 absolute_path = zmalloc(PATH_MAX);
204 if (absolute_path == NULL) {
81b86775
DG
205 PERROR("zmalloc expand path");
206 goto error;
207 }
208
3d229795
RB
209 /*
210 * If the path is not already absolute nor explicitly relative,
211 * consider we're in the current directory
212 */
213 if (*path != '/' && strncmp(path, "./", 2) != 0 &&
214 strncmp(path, "../", 3) != 0) {
215 snprintf(absolute_path, PATH_MAX, "./%s", path);
2dcd84b7 216 /* Else, we just copy the path */
116f95d9 217 } else {
3d229795
RB
218 strncpy(absolute_path, path, PATH_MAX);
219 }
116f95d9 220
3d229795
RB
221 /* Resolve partially our path */
222 absolute_path = utils_partial_realpath(absolute_path,
223 absolute_path, PATH_MAX);
116f95d9 224
3d229795
RB
225 /* As long as we find '/./' in the working_path string */
226 while ((next = strstr(absolute_path, "/./"))) {
116f95d9 227
3d229795
RB
228 /* We prepare the start_path not containing it */
229 start_path = strndup(absolute_path, next - absolute_path);
d9dbcf5e
MD
230 if (!start_path) {
231 PERROR("strndup");
232 goto error;
233 }
3d229795
RB
234 /* And we concatenate it with the part after this string */
235 snprintf(absolute_path, PATH_MAX, "%s%s", start_path, next + 2);
116f95d9 236
3d229795
RB
237 free(start_path);
238 }
116f95d9 239
3d229795
RB
240 /* As long as we find '/../' in the working_path string */
241 while ((next = strstr(absolute_path, "/../"))) {
242 /* We find the last level of directory */
243 previous = absolute_path;
244 while ((slash = strpbrk(previous, "/")) && slash != next) {
245 previous = slash + 1;
81b86775 246 }
81b86775 247
3d229795
RB
248 /* Then we prepare the start_path not containing it */
249 start_path = strndup(absolute_path, previous - absolute_path);
d9dbcf5e
MD
250 if (!start_path) {
251 PERROR("strndup");
252 goto error;
253 }
3d229795
RB
254
255 /* And we concatenate it with the part after the '/../' */
256 snprintf(absolute_path, PATH_MAX, "%s%s", start_path, next + 4);
257
258 /* We can free the memory used for the start path*/
259 free(start_path);
260
261 /* Then we verify for symlinks using partial_realpath */
262 absolute_path = utils_partial_realpath(absolute_path,
263 absolute_path, PATH_MAX);
116f95d9 264 }
81b86775 265
5de083f4
RB
266 /* Identify the last token */
267 last_token = strrchr(absolute_path, '/');
268
269 /* Verify that this token is not a relative path */
270 is_dotdot = (strcmp(last_token, "/..") == 0);
271 is_dot = (strcmp(last_token, "/.") == 0);
272
273 /* If it is, take action */
274 if (is_dot || is_dotdot) {
275 /* For both, remove this token */
276 *last_token = '\0';
277
278 /* If it was a reference to parent directory, go back one more time */
279 if (is_dotdot) {
280 last_token = strrchr(absolute_path, '/');
281
282 /* If there was only one level left, we keep the first '/' */
283 if (last_token == absolute_path) {
284 last_token++;
285 }
286
287 *last_token = '\0';
288 }
289 }
290
3d229795 291 return absolute_path;
81b86775
DG
292
293error:
3d229795 294 free(absolute_path);
81b86775
DG
295 return NULL;
296}
297
298/*
299 * Create a pipe in dst.
300 */
90e535ef 301LTTNG_HIDDEN
81b86775
DG
302int utils_create_pipe(int *dst)
303{
304 int ret;
305
306 if (dst == NULL) {
307 return -1;
308 }
309
310 ret = pipe(dst);
311 if (ret < 0) {
312 PERROR("create pipe");
313 }
314
315 return ret;
316}
317
318/*
319 * Create pipe and set CLOEXEC flag to both fd.
320 *
321 * Make sure the pipe opened by this function are closed at some point. Use
322 * utils_close_pipe().
323 */
90e535ef 324LTTNG_HIDDEN
81b86775
DG
325int utils_create_pipe_cloexec(int *dst)
326{
327 int ret, i;
328
329 if (dst == NULL) {
330 return -1;
331 }
332
333 ret = utils_create_pipe(dst);
334 if (ret < 0) {
335 goto error;
336 }
337
338 for (i = 0; i < 2; i++) {
339 ret = fcntl(dst[i], F_SETFD, FD_CLOEXEC);
340 if (ret < 0) {
341 PERROR("fcntl pipe cloexec");
342 goto error;
343 }
344 }
345
346error:
347 return ret;
348}
349
094f381c
MD
350/*
351 * Create pipe and set fd flags to FD_CLOEXEC and O_NONBLOCK.
352 *
353 * Make sure the pipe opened by this function are closed at some point. Use
354 * utils_close_pipe(). Using pipe() and fcntl rather than pipe2() to
355 * support OSes other than Linux 2.6.23+.
356 */
357LTTNG_HIDDEN
358int utils_create_pipe_cloexec_nonblock(int *dst)
359{
360 int ret, i;
361
362 if (dst == NULL) {
363 return -1;
364 }
365
366 ret = utils_create_pipe(dst);
367 if (ret < 0) {
368 goto error;
369 }
370
371 for (i = 0; i < 2; i++) {
372 ret = fcntl(dst[i], F_SETFD, FD_CLOEXEC);
373 if (ret < 0) {
374 PERROR("fcntl pipe cloexec");
375 goto error;
376 }
377 /*
378 * Note: we override any flag that could have been
379 * previously set on the fd.
380 */
381 ret = fcntl(dst[i], F_SETFL, O_NONBLOCK);
382 if (ret < 0) {
383 PERROR("fcntl pipe nonblock");
384 goto error;
385 }
386 }
387
388error:
389 return ret;
390}
391
81b86775
DG
392/*
393 * Close both read and write side of the pipe.
394 */
90e535ef 395LTTNG_HIDDEN
81b86775
DG
396void utils_close_pipe(int *src)
397{
398 int i, ret;
399
400 if (src == NULL) {
401 return;
402 }
403
404 for (i = 0; i < 2; i++) {
405 /* Safety check */
406 if (src[i] < 0) {
407 continue;
408 }
409
410 ret = close(src[i]);
411 if (ret) {
412 PERROR("close pipe");
413 }
414 }
415}
a4b92340
DG
416
417/*
418 * Create a new string using two strings range.
419 */
90e535ef 420LTTNG_HIDDEN
a4b92340
DG
421char *utils_strdupdelim(const char *begin, const char *end)
422{
423 char *str;
424
425 str = zmalloc(end - begin + 1);
426 if (str == NULL) {
427 PERROR("zmalloc strdupdelim");
428 goto error;
429 }
430
431 memcpy(str, begin, end - begin);
432 str[end - begin] = '\0';
433
434error:
435 return str;
436}
b662582b
DG
437
438/*
439 * Set CLOEXEC flag to the give file descriptor.
440 */
90e535ef 441LTTNG_HIDDEN
b662582b
DG
442int utils_set_fd_cloexec(int fd)
443{
444 int ret;
445
446 if (fd < 0) {
447 ret = -EINVAL;
448 goto end;
449 }
450
451 ret = fcntl(fd, F_SETFD, FD_CLOEXEC);
452 if (ret < 0) {
453 PERROR("fcntl cloexec");
454 ret = -errno;
455 }
456
457end:
458 return ret;
459}
35f90c40
DG
460
461/*
462 * Create pid file to the given path and filename.
463 */
90e535ef 464LTTNG_HIDDEN
35f90c40
DG
465int utils_create_pid_file(pid_t pid, const char *filepath)
466{
467 int ret;
468 FILE *fp;
469
470 assert(filepath);
471
472 fp = fopen(filepath, "w");
473 if (fp == NULL) {
474 PERROR("open pid file %s", filepath);
475 ret = -1;
476 goto error;
477 }
478
479 ret = fprintf(fp, "%d\n", pid);
480 if (ret < 0) {
481 PERROR("fprintf pid file");
e205d79b 482 goto error;
35f90c40
DG
483 }
484
e205d79b
MD
485 if (fclose(fp)) {
486 PERROR("fclose");
487 }
35f90c40 488 DBG("Pid %d written in file %s", pid, filepath);
e205d79b 489 ret = 0;
35f90c40
DG
490error:
491 return ret;
492}
2d851108 493
c9cb3e7d
JG
494/*
495 * Create lock file to the given path and filename.
496 * Returns the associated file descriptor, -1 on error.
497 */
498LTTNG_HIDDEN
499int utils_create_lock_file(const char *filepath)
500{
501 int ret;
502 int fd;
503
504 assert(filepath);
505
506 fd = open(filepath, O_CREAT,
507 O_WRONLY | S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
508 if (fd < 0) {
509 PERROR("open lock file %s", filepath);
510 ret = -1;
511 goto error;
512 }
513
514 /*
515 * Attempt to lock the file. If this fails, there is
516 * already a process using the same lock file running
517 * and we should exit.
518 */
519 ret = flock(fd, LOCK_EX | LOCK_NB);
520 if (ret) {
208ff148 521 ERR("Could not get lock file %s, another instance is running.",
c9cb3e7d 522 filepath);
ffb0b851
JG
523 if (close(fd)) {
524 PERROR("close lock file");
525 }
c9cb3e7d
JG
526 fd = ret;
527 goto error;
528 }
529
530error:
531 return fd;
532}
533
2d851108 534/*
d77dded2 535 * Create directory using the given path and mode.
2d851108
DG
536 *
537 * On success, return 0 else a negative error code.
538 */
90e535ef 539LTTNG_HIDDEN
d77dded2
JG
540int utils_mkdir(const char *path, mode_t mode, int uid, int gid)
541{
542 int ret;
543
544 if (uid < 0 || gid < 0) {
545 ret = mkdir(path, mode);
546 } else {
547 ret = run_as_mkdir(path, mode, uid, gid);
548 }
549 if (ret < 0) {
550 if (errno != EEXIST) {
551 PERROR("mkdir %s, uid %d, gid %d", path ? path : "NULL",
552 uid, gid);
553 } else {
554 ret = 0;
555 }
556 }
557
558 return ret;
559}
560
561/*
562 * Internal version of mkdir_recursive. Runs as the current user.
563 * Don't call directly; use utils_mkdir_recursive().
564 *
565 * This function is ominously marked as "unsafe" since it should only
566 * be called by a caller that has transitioned to the uid and gid under which
567 * the directory creation should occur.
568 */
569LTTNG_HIDDEN
570int _utils_mkdir_recursive_unsafe(const char *path, mode_t mode)
2d851108
DG
571{
572 char *p, tmp[PATH_MAX];
2d851108
DG
573 size_t len;
574 int ret;
575
576 assert(path);
577
578 ret = snprintf(tmp, sizeof(tmp), "%s", path);
579 if (ret < 0) {
580 PERROR("snprintf mkdir");
581 goto error;
582 }
583
584 len = ret;
585 if (tmp[len - 1] == '/') {
586 tmp[len - 1] = 0;
587 }
588
589 for (p = tmp + 1; *p; p++) {
590 if (*p == '/') {
591 *p = 0;
592 if (tmp[strlen(tmp) - 1] == '.' &&
593 tmp[strlen(tmp) - 2] == '.' &&
594 tmp[strlen(tmp) - 3] == '/') {
595 ERR("Using '/../' is not permitted in the trace path (%s)",
596 tmp);
597 ret = -1;
598 goto error;
599 }
0c7bcad5 600 ret = mkdir(tmp, mode);
2d851108 601 if (ret < 0) {
0c7bcad5
MD
602 if (errno != EEXIST) {
603 PERROR("mkdir recursive");
604 ret = -errno;
605 goto error;
2d851108
DG
606 }
607 }
608 *p = '/';
609 }
610 }
611
612 ret = mkdir(tmp, mode);
613 if (ret < 0) {
614 if (errno != EEXIST) {
d77dded2 615 PERROR("mkdir recursive last element");
2d851108
DG
616 ret = -errno;
617 } else {
618 ret = 0;
619 }
620 }
621
622error:
623 return ret;
624}
fe4477ee 625
d77dded2
JG
626/*
627 * Recursively create directory using the given path and mode, under the
628 * provided uid and gid.
629 *
630 * On success, return 0 else a negative error code.
631 */
632LTTNG_HIDDEN
633int utils_mkdir_recursive(const char *path, mode_t mode, int uid, int gid)
634{
635 int ret;
636
637 if (uid < 0 || gid < 0) {
638 /* Run as current user. */
639 ret = _utils_mkdir_recursive_unsafe(path, mode);
640 } else {
641 ret = run_as_mkdir_recursive(path, mode, uid, gid);
642 }
643 if (ret < 0) {
644 PERROR("mkdir %s, uid %d, gid %d", path ? path : "NULL",
645 uid, gid);
646 }
647
648 return ret;
649}
650
fe4477ee 651/*
d77dded2 652 * path is the output parameter. It needs to be PATH_MAX len.
fe4477ee
JD
653 *
654 * Return 0 on success or else a negative value.
655 */
7591bab1
MD
656static int utils_stream_file_name(char *path,
657 const char *path_name, const char *file_name,
658 uint64_t size, uint64_t count,
659 const char *suffix)
fe4477ee 660{
7591bab1
MD
661 int ret;
662 char full_path[PATH_MAX];
663 char *path_name_suffix = NULL;
309167d2 664 char *extra = NULL;
fe4477ee 665
fe4477ee
JD
666 ret = snprintf(full_path, sizeof(full_path), "%s/%s",
667 path_name, file_name);
668 if (ret < 0) {
669 PERROR("snprintf create output file");
670 goto error;
671 }
672
309167d2
JD
673 /* Setup extra string if suffix or/and a count is needed. */
674 if (size > 0 && suffix) {
675 ret = asprintf(&extra, "_%" PRIu64 "%s", count, suffix);
676 } else if (size > 0) {
677 ret = asprintf(&extra, "_%" PRIu64, count);
678 } else if (suffix) {
679 ret = asprintf(&extra, "%s", suffix);
680 }
681 if (ret < 0) {
682 PERROR("Allocating extra string to name");
683 goto error;
684 }
685
fe4477ee 686 /*
7591bab1
MD
687 * If we split the trace in multiple files, we have to add the count at
688 * the end of the tracefile name.
fe4477ee 689 */
309167d2
JD
690 if (extra) {
691 ret = asprintf(&path_name_suffix, "%s%s", full_path, extra);
fe4477ee 692 if (ret < 0) {
309167d2
JD
693 PERROR("Allocating path name with extra string");
694 goto error_free_suffix;
fe4477ee 695 }
7591bab1
MD
696 strncpy(path, path_name_suffix, PATH_MAX - 1);
697 path[PATH_MAX - 1] = '\0';
fe4477ee 698 } else {
7591bab1
MD
699 strncpy(path, full_path, PATH_MAX - 1);
700 }
701 path[PATH_MAX - 1] = '\0';
702 ret = 0;
703
704 free(path_name_suffix);
705error_free_suffix:
706 free(extra);
707error:
708 return ret;
709}
710
711/*
712 * Create the stream file on disk.
713 *
714 * Return 0 on success or else a negative value.
715 */
716LTTNG_HIDDEN
717int utils_create_stream_file(const char *path_name, char *file_name, uint64_t size,
718 uint64_t count, int uid, int gid, char *suffix)
719{
720 int ret, flags, mode;
721 char path[PATH_MAX];
722
723 ret = utils_stream_file_name(path, path_name, file_name,
724 size, count, suffix);
725 if (ret < 0) {
726 goto error;
fe4477ee
JD
727 }
728
be96a7d1 729 flags = O_WRONLY | O_CREAT | O_TRUNC;
0f907de1 730 /* Open with 660 mode */
be96a7d1
DG
731 mode = S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP;
732
733 if (uid < 0 || gid < 0) {
7591bab1 734 ret = open(path, flags, mode);
be96a7d1 735 } else {
7591bab1 736 ret = run_as_open(path, flags, mode, uid, gid);
be96a7d1 737 }
7591bab1 738 if (ret < 0) {
fe4477ee 739 PERROR("open stream path %s", path);
fe4477ee 740 }
7591bab1
MD
741error:
742 return ret;
743}
fe4477ee 744
7591bab1
MD
745/*
746 * Unlink the stream tracefile from disk.
747 *
748 * Return 0 on success or else a negative value.
749 */
750LTTNG_HIDDEN
751int utils_unlink_stream_file(const char *path_name, char *file_name, uint64_t size,
752 uint64_t count, int uid, int gid, char *suffix)
753{
754 int ret;
755 char path[PATH_MAX];
756
757 ret = utils_stream_file_name(path, path_name, file_name,
758 size, count, suffix);
759 if (ret < 0) {
760 goto error;
761 }
762 if (uid < 0 || gid < 0) {
763 ret = unlink(path);
764 } else {
765 ret = run_as_unlink(path, uid, gid);
766 if (ret < 0) {
767 errno = -ret;
768 ret = -1;
769 }
770 }
771 if (ret < 0) {
772 goto error;
773 }
fe4477ee 774error:
7591bab1 775 DBG("utils_unlink_stream_file %s returns %d", path, ret);
fe4477ee
JD
776 return ret;
777}
778
779/*
780 * Change the output tracefile according to the given size and count The
781 * new_count pointer is set during this operation.
782 *
783 * From the consumer, the stream lock MUST be held before calling this function
784 * because we are modifying the stream status.
785 *
786 * Return 0 on success or else a negative value.
787 */
bc182241 788LTTNG_HIDDEN
fe4477ee 789int utils_rotate_stream_file(char *path_name, char *file_name, uint64_t size,
309167d2
JD
790 uint64_t count, int uid, int gid, int out_fd, uint64_t *new_count,
791 int *stream_fd)
fe4477ee
JD
792{
793 int ret;
794
309167d2
JD
795 assert(new_count);
796 assert(stream_fd);
797
fe4477ee
JD
798 ret = close(out_fd);
799 if (ret < 0) {
800 PERROR("Closing tracefile");
801 goto error;
802 }
803
804 if (count > 0) {
7591bab1
MD
805 /*
806 * In tracefile rotation, for the relay daemon we need
807 * to unlink the old file if present, because it may
808 * still be open in reading by the live thread, and we
809 * need to ensure that we do not overwrite the content
810 * between get_index and get_packet. Since we have no
811 * way to verify integrity of the data content compared
812 * to the associated index, we need to ensure the reader
813 * has exclusive access to the file content, and that
814 * the open of the data file is performed in get_index.
815 * Unlinking the old file rather than overwriting it
816 * achieves this.
817 */
fe4477ee 818 *new_count = (*new_count + 1) % count;
7591bab1
MD
819 ret = utils_unlink_stream_file(path_name, file_name,
820 size, *new_count, uid, gid, 0);
821 if (ret < 0 && errno != ENOENT) {
822 goto error;
823 }
fe4477ee
JD
824 } else {
825 (*new_count)++;
826 }
827
309167d2
JD
828 ret = utils_create_stream_file(path_name, file_name, size, *new_count,
829 uid, gid, 0);
830 if (ret < 0) {
831 goto error;
832 }
833 *stream_fd = ret;
834
835 /* Success. */
836 ret = 0;
837
fe4477ee
JD
838error:
839 return ret;
840}
70d0b120 841
70d0b120
SM
842
843/**
844 * Parse a string that represents a size in human readable format. It
5983a922 845 * supports decimal integers suffixed by 'k', 'K', 'M' or 'G'.
70d0b120
SM
846 *
847 * The suffix multiply the integer by:
848 * 'k': 1024
849 * 'M': 1024^2
850 * 'G': 1024^3
851 *
852 * @param str The string to parse.
5983a922 853 * @param size Pointer to a uint64_t that will be filled with the
cfa9a5a2 854 * resulting size.
70d0b120
SM
855 *
856 * @return 0 on success, -1 on failure.
857 */
00a52467 858LTTNG_HIDDEN
5983a922 859int utils_parse_size_suffix(const char * const str, uint64_t * const size)
70d0b120 860{
70d0b120 861 int ret;
5983a922 862 uint64_t base_size;
70d0b120 863 long shift = 0;
5983a922
SM
864 const char *str_end;
865 char *num_end;
70d0b120
SM
866
867 if (!str) {
5983a922 868 DBG("utils_parse_size_suffix: received a NULL string.");
70d0b120
SM
869 ret = -1;
870 goto end;
871 }
872
5983a922
SM
873 /* strtoull will accept a negative number, but we don't want to. */
874 if (strchr(str, '-') != NULL) {
875 DBG("utils_parse_size_suffix: invalid size string, should not contain '-'.");
70d0b120 876 ret = -1;
5983a922 877 goto end;
70d0b120
SM
878 }
879
5983a922
SM
880 /* str_end will point to the \0 */
881 str_end = str + strlen(str);
70d0b120 882 errno = 0;
5983a922 883 base_size = strtoull(str, &num_end, 0);
70d0b120 884 if (errno != 0) {
5983a922 885 PERROR("utils_parse_size_suffix strtoull");
70d0b120 886 ret = -1;
5983a922
SM
887 goto end;
888 }
889
890 if (num_end == str) {
891 /* strtoull parsed nothing, not good. */
892 DBG("utils_parse_size_suffix: strtoull had nothing good to parse.");
893 ret = -1;
894 goto end;
895 }
896
897 /* Check if a prefix is present. */
898 switch (*num_end) {
899 case 'G':
900 shift = GIBI_LOG2;
901 num_end++;
902 break;
903 case 'M': /* */
904 shift = MEBI_LOG2;
905 num_end++;
906 break;
907 case 'K':
908 case 'k':
909 shift = KIBI_LOG2;
910 num_end++;
911 break;
912 case '\0':
913 break;
914 default:
915 DBG("utils_parse_size_suffix: invalid suffix.");
916 ret = -1;
917 goto end;
918 }
919
920 /* Check for garbage after the valid input. */
921 if (num_end != str_end) {
922 DBG("utils_parse_size_suffix: Garbage after size string.");
923 ret = -1;
924 goto end;
70d0b120
SM
925 }
926
927 *size = base_size << shift;
928
929 /* Check for overflow */
930 if ((*size >> shift) != base_size) {
5983a922 931 DBG("utils_parse_size_suffix: oops, overflow detected.");
70d0b120 932 ret = -1;
5983a922 933 goto end;
70d0b120
SM
934 }
935
936 ret = 0;
70d0b120
SM
937end:
938 return ret;
939}
cfa9a5a2
DG
940
941/*
942 * fls: returns the position of the most significant bit.
943 * Returns 0 if no bit is set, else returns the position of the most
944 * significant bit (from 1 to 32 on 32-bit, from 1 to 64 on 64-bit).
945 */
946#if defined(__i386) || defined(__x86_64)
947static inline unsigned int fls_u32(uint32_t x)
948{
949 int r;
950
951 asm("bsrl %1,%0\n\t"
952 "jnz 1f\n\t"
953 "movl $-1,%0\n\t"
954 "1:\n\t"
955 : "=r" (r) : "rm" (x));
956 return r + 1;
957}
958#define HAS_FLS_U32
959#endif
960
961#ifndef HAS_FLS_U32
962static __attribute__((unused)) unsigned int fls_u32(uint32_t x)
963{
964 unsigned int r = 32;
965
966 if (!x) {
967 return 0;
968 }
969 if (!(x & 0xFFFF0000U)) {
970 x <<= 16;
971 r -= 16;
972 }
973 if (!(x & 0xFF000000U)) {
974 x <<= 8;
975 r -= 8;
976 }
977 if (!(x & 0xF0000000U)) {
978 x <<= 4;
979 r -= 4;
980 }
981 if (!(x & 0xC0000000U)) {
982 x <<= 2;
983 r -= 2;
984 }
985 if (!(x & 0x80000000U)) {
986 x <<= 1;
987 r -= 1;
988 }
989 return r;
990}
991#endif
992
993/*
994 * Return the minimum order for which x <= (1UL << order).
995 * Return -1 if x is 0.
996 */
997LTTNG_HIDDEN
998int utils_get_count_order_u32(uint32_t x)
999{
1000 if (!x) {
1001 return -1;
1002 }
1003
1004 return fls_u32(x - 1);
1005}
feb0f3e5
AM
1006
1007/**
1008 * Obtain the value of LTTNG_HOME environment variable, if exists.
1009 * Otherwise returns the value of HOME.
1010 */
00a52467 1011LTTNG_HIDDEN
feb0f3e5
AM
1012char *utils_get_home_dir(void)
1013{
1014 char *val = NULL;
04135dbd
DG
1015 struct passwd *pwd;
1016
e8fa9fb0 1017 val = lttng_secure_getenv(DEFAULT_LTTNG_HOME_ENV_VAR);
feb0f3e5 1018 if (val != NULL) {
04135dbd
DG
1019 goto end;
1020 }
e8fa9fb0 1021 val = lttng_secure_getenv(DEFAULT_LTTNG_FALLBACK_HOME_ENV_VAR);
04135dbd
DG
1022 if (val != NULL) {
1023 goto end;
feb0f3e5 1024 }
04135dbd
DG
1025
1026 /* Fallback on the password file entry. */
1027 pwd = getpwuid(getuid());
1028 if (!pwd) {
1029 goto end;
1030 }
1031 val = pwd->pw_dir;
1032
1033 DBG3("Home directory is '%s'", val);
1034
1035end:
1036 return val;
feb0f3e5 1037}
26fe5938 1038
fb198a11
JG
1039/**
1040 * Get user's home directory. Dynamically allocated, must be freed
1041 * by the caller.
1042 */
1043LTTNG_HIDDEN
1044char *utils_get_user_home_dir(uid_t uid)
1045{
1046 struct passwd pwd;
1047 struct passwd *result;
1048 char *home_dir = NULL;
1049 char *buf = NULL;
1050 long buflen;
1051 int ret;
1052
1053 buflen = sysconf(_SC_GETPW_R_SIZE_MAX);
1054 if (buflen == -1) {
1055 goto end;
1056 }
1057retry:
1058 buf = zmalloc(buflen);
1059 if (!buf) {
1060 goto end;
1061 }
1062
1063 ret = getpwuid_r(uid, &pwd, buf, buflen, &result);
1064 if (ret || !result) {
1065 if (ret == ERANGE) {
1066 free(buf);
1067 buflen *= 2;
1068 goto retry;
1069 }
1070 goto end;
1071 }
1072
1073 home_dir = strdup(pwd.pw_dir);
1074end:
1075 free(buf);
1076 return home_dir;
1077}
1078
fbb9748b
JG
1079/*
1080 * Obtain the value of LTTNG_KMOD_PROBES environment variable, if exists.
c9d42407 1081 * Otherwise returns NULL.
fbb9748b
JG
1082 */
1083LTTNG_HIDDEN
1084char *utils_get_kmod_probes_list(void)
1085{
e8fa9fb0 1086 return lttng_secure_getenv(DEFAULT_LTTNG_KMOD_PROBES);
fbb9748b
JG
1087}
1088
c9d42407
PP
1089/*
1090 * Obtain the value of LTTNG_EXTRA_KMOD_PROBES environment variable, if
1091 * exists. Otherwise returns NULL.
1092 */
1093LTTNG_HIDDEN
1094char *utils_get_extra_kmod_probes_list(void)
1095{
e8fa9fb0 1096 return lttng_secure_getenv(DEFAULT_LTTNG_EXTRA_KMOD_PROBES);
c9d42407
PP
1097}
1098
26fe5938
DG
1099/*
1100 * With the given format, fill dst with the time of len maximum siz.
1101 *
1102 * Return amount of bytes set in the buffer or else 0 on error.
1103 */
1104LTTNG_HIDDEN
1105size_t utils_get_current_time_str(const char *format, char *dst, size_t len)
1106{
1107 size_t ret;
1108 time_t rawtime;
1109 struct tm *timeinfo;
1110
1111 assert(format);
1112 assert(dst);
1113
1114 /* Get date and time for session path */
1115 time(&rawtime);
1116 timeinfo = localtime(&rawtime);
1117 ret = strftime(dst, len, format, timeinfo);
1118 if (ret == 0) {
68e6efdd 1119 ERR("Unable to strftime with format %s at dst %p of len %zu", format,
26fe5938
DG
1120 dst, len);
1121 }
1122
1123 return ret;
1124}
6c71277b
MD
1125
1126/*
1127 * Return the group ID matching name, else 0 if it cannot be found.
1128 */
1129LTTNG_HIDDEN
1130gid_t utils_get_group_id(const char *name)
1131{
1132 struct group *grp;
1133
1134 grp = getgrnam(name);
1135 if (!grp) {
1136 static volatile int warn_once;
1137
1138 if (!warn_once) {
1139 WARN("No tracing group detected");
1140 warn_once = 1;
1141 }
1142 return 0;
1143 }
1144 return grp->gr_gid;
1145}
8db0dc00
JG
1146
1147/*
1148 * Return a newly allocated option string. This string is to be used as the
1149 * optstring argument of getopt_long(), see GETOPT(3). opt_count is the number
1150 * of elements in the long_options array. Returns NULL if the string's
1151 * allocation fails.
1152 */
1153LTTNG_HIDDEN
1154char *utils_generate_optstring(const struct option *long_options,
1155 size_t opt_count)
1156{
1157 int i;
1158 size_t string_len = opt_count, str_pos = 0;
1159 char *optstring;
1160
1161 /*
1162 * Compute the necessary string length. One letter per option, two when an
1163 * argument is necessary, and a trailing NULL.
1164 */
1165 for (i = 0; i < opt_count; i++) {
1166 string_len += long_options[i].has_arg ? 1 : 0;
1167 }
1168
1169 optstring = zmalloc(string_len);
1170 if (!optstring) {
1171 goto end;
1172 }
1173
1174 for (i = 0; i < opt_count; i++) {
1175 if (!long_options[i].name) {
1176 /* Got to the trailing NULL element */
1177 break;
1178 }
1179
a596dcb9
JG
1180 if (long_options[i].val != '\0') {
1181 optstring[str_pos++] = (char) long_options[i].val;
1182 if (long_options[i].has_arg) {
1183 optstring[str_pos++] = ':';
1184 }
8db0dc00
JG
1185 }
1186 }
1187
1188end:
1189 return optstring;
1190}
3d071855
MD
1191
1192/*
1193 * Try to remove a hierarchy of empty directories, recursively. Don't unlink
9529ec1b 1194 * any file. Try to rmdir any empty directory within the hierarchy.
3d071855
MD
1195 */
1196LTTNG_HIDDEN
1197int utils_recursive_rmdir(const char *path)
1198{
1199 DIR *dir;
9529ec1b 1200 int dir_fd, ret = 0, closeret, is_empty = 1;
3d071855
MD
1201 struct dirent *entry;
1202
1203 /* Open directory */
1204 dir = opendir(path);
1205 if (!dir) {
1206 PERROR("Cannot open '%s' path", path);
1207 return -1;
1208 }
1209 dir_fd = dirfd(dir);
1210 if (dir_fd < 0) {
1211 PERROR("dirfd");
1212 return -1;
1213 }
1214
1215 while ((entry = readdir(dir))) {
1216 if (!strcmp(entry->d_name, ".")
1217 || !strcmp(entry->d_name, ".."))
1218 continue;
1219 switch (entry->d_type) {
1220 case DT_DIR:
1221 {
1222 char subpath[PATH_MAX];
1223
1224 strncpy(subpath, path, PATH_MAX);
1225 subpath[PATH_MAX - 1] = '\0';
1226 strncat(subpath, "/",
1227 PATH_MAX - strlen(subpath) - 1);
1228 strncat(subpath, entry->d_name,
1229 PATH_MAX - strlen(subpath) - 1);
9529ec1b
MD
1230 if (utils_recursive_rmdir(subpath)) {
1231 is_empty = 0;
3d071855
MD
1232 }
1233 break;
1234 }
1235 case DT_REG:
9529ec1b
MD
1236 is_empty = 0;
1237 break;
3d071855
MD
1238 default:
1239 ret = -EINVAL;
1240 goto end;
1241 }
1242 }
1243end:
1244 closeret = closedir(dir);
1245 if (closeret) {
1246 PERROR("closedir");
1247 }
9529ec1b 1248 if (is_empty) {
3d071855
MD
1249 DBG3("Attempting rmdir %s", path);
1250 ret = rmdir(path);
1251 }
1252 return ret;
1253}
This page took 0.096631 seconds and 5 git commands to generate.