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