Fix: Double free in utils_partial_realpath error path
[lttng-tools.git] / src / common / utils.c
1 /*
2 * Copyright (C) 2012 - David Goulet <dgoulet@efficios.com>
3 * Copyright (C) 2013 - Raphaël Beamonte <raphael.beamonte@gmail.com>
4 * Copyright (C) 2013 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
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
21 #define _LGPL_SOURCE
22 #include <assert.h>
23 #include <ctype.h>
24 #include <fcntl.h>
25 #include <limits.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <sys/stat.h>
29 #include <sys/types.h>
30 #include <unistd.h>
31 #include <inttypes.h>
32 #include <grp.h>
33 #include <pwd.h>
34 #include <sys/file.h>
35 #include <dirent.h>
36
37 #include <common/common.h>
38 #include <common/runas.h>
39 #include <common/compat/getenv.h>
40
41 #include "utils.h"
42 #include "defaults.h"
43
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 */
55 LTTNG_HIDDEN
56 char *utils_partial_realpath(const char *path, char *resolved_path, size_t size)
57 {
58 char *cut_path = NULL, *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);
96 if (cut_path == NULL) {
97 PERROR("strndup");
98 goto error;
99 }
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 cut_path = NULL;
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);
154 if (cut_path == NULL) {
155 PERROR("strdup");
156 goto error;
157 }
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
176 error:
177 free(resolved_path);
178 free(cut_path);
179 free(try_path);
180 if (try_path_prev != try_path) {
181 free(try_path_prev);
182 }
183 return NULL;
184 }
185
186 /*
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.
195 */
196 LTTNG_HIDDEN
197 char *utils_expand_path(const char *path)
198 {
199 char *next, *previous, *slash, *start_path, *absolute_path = NULL;
200 char *last_token;
201 int is_dot, is_dotdot;
202
203 /* Safety net */
204 if (path == NULL) {
205 goto error;
206 }
207
208 /* Allocate memory for the absolute_path */
209 absolute_path = zmalloc(PATH_MAX);
210 if (absolute_path == NULL) {
211 PERROR("zmalloc expand path");
212 goto error;
213 }
214
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);
222 /* Else, we just copy the path */
223 } else {
224 strncpy(absolute_path, path, PATH_MAX);
225 }
226
227 /* Resolve partially our path */
228 absolute_path = utils_partial_realpath(absolute_path,
229 absolute_path, PATH_MAX);
230
231 /* As long as we find '/./' in the working_path string */
232 while ((next = strstr(absolute_path, "/./"))) {
233
234 /* We prepare the start_path not containing it */
235 start_path = strndup(absolute_path, next - absolute_path);
236 if (!start_path) {
237 PERROR("strndup");
238 goto error;
239 }
240 /* And we concatenate it with the part after this string */
241 snprintf(absolute_path, PATH_MAX, "%s%s", start_path, next + 2);
242
243 free(start_path);
244 }
245
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;
252 }
253
254 /* Then we prepare the start_path not containing it */
255 start_path = strndup(absolute_path, previous - absolute_path);
256 if (!start_path) {
257 PERROR("strndup");
258 goto error;
259 }
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);
270 }
271
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
297 return absolute_path;
298
299 error:
300 free(absolute_path);
301 return NULL;
302 }
303
304 /*
305 * Create a pipe in dst.
306 */
307 LTTNG_HIDDEN
308 int 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 */
330 LTTNG_HIDDEN
331 int 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
352 error:
353 return ret;
354 }
355
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 */
363 LTTNG_HIDDEN
364 int 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
394 error:
395 return ret;
396 }
397
398 /*
399 * Close both read and write side of the pipe.
400 */
401 LTTNG_HIDDEN
402 void 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 }
422
423 /*
424 * Create a new string using two strings range.
425 */
426 LTTNG_HIDDEN
427 char *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
440 error:
441 return str;
442 }
443
444 /*
445 * Set CLOEXEC flag to the give file descriptor.
446 */
447 LTTNG_HIDDEN
448 int 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
463 end:
464 return ret;
465 }
466
467 /*
468 * Create pid file to the given path and filename.
469 */
470 LTTNG_HIDDEN
471 int 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");
488 goto error;
489 }
490
491 if (fclose(fp)) {
492 PERROR("fclose");
493 }
494 DBG("Pid %d written in file %s", pid, filepath);
495 ret = 0;
496 error:
497 return ret;
498 }
499
500 /*
501 * Create lock file to the given path and filename.
502 * Returns the associated file descriptor, -1 on error.
503 */
504 LTTNG_HIDDEN
505 int 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) {
527 ERR("Could not get lock file %s, another instance is running.",
528 filepath);
529 if (close(fd)) {
530 PERROR("close lock file");
531 }
532 fd = ret;
533 goto error;
534 }
535
536 error:
537 return fd;
538 }
539
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 */
550 static
551 int 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);
574 end:
575 return ret;
576 }
577
578 /*
579 * Create directory using the given path and mode.
580 *
581 * On success, return 0 else a negative error code.
582 */
583 LTTNG_HIDDEN
584 int utils_mkdir(const char *path, mode_t mode, int uid, int gid)
585 {
586 int ret;
587
588 if (uid < 0 || gid < 0) {
589 ret = mkdir_check_exists(path, mode);
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 */
613 LTTNG_HIDDEN
614 int _utils_mkdir_recursive_unsafe(const char *path, mode_t mode)
615 {
616 char *p, tmp[PATH_MAX];
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 }
644 ret = mkdir_check_exists(tmp, mode);
645 if (ret < 0) {
646 if (errno != EACCES) {
647 PERROR("mkdir recursive");
648 ret = -errno;
649 goto error;
650 }
651 }
652 *p = '/';
653 }
654 }
655
656 ret = mkdir_check_exists(tmp, mode);
657 if (ret < 0) {
658 PERROR("mkdir recursive last element");
659 ret = -errno;
660 }
661
662 error:
663 return ret;
664 }
665
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 */
672 LTTNG_HIDDEN
673 int 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
691 /*
692 * path is the output parameter. It needs to be PATH_MAX len.
693 *
694 * Return 0 on success or else a negative value.
695 */
696 static 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)
700 {
701 int ret;
702 char full_path[PATH_MAX];
703 char *path_name_suffix = NULL;
704 char *extra = NULL;
705
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
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
726 /*
727 * If we split the trace in multiple files, we have to add the count at
728 * the end of the tracefile name.
729 */
730 if (extra) {
731 ret = asprintf(&path_name_suffix, "%s%s", full_path, extra);
732 if (ret < 0) {
733 PERROR("Allocating path name with extra string");
734 goto error_free_suffix;
735 }
736 strncpy(path, path_name_suffix, PATH_MAX - 1);
737 path[PATH_MAX - 1] = '\0';
738 } else {
739 strncpy(path, full_path, PATH_MAX - 1);
740 }
741 path[PATH_MAX - 1] = '\0';
742 ret = 0;
743
744 free(path_name_suffix);
745 error_free_suffix:
746 free(extra);
747 error:
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 */
756 LTTNG_HIDDEN
757 int 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;
767 }
768
769 flags = O_WRONLY | O_CREAT | O_TRUNC;
770 /* Open with 660 mode */
771 mode = S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP;
772
773 if (uid < 0 || gid < 0) {
774 ret = open(path, flags, mode);
775 } else {
776 ret = run_as_open(path, flags, mode, uid, gid);
777 }
778 if (ret < 0) {
779 PERROR("open stream path %s", path);
780 }
781 error:
782 return ret;
783 }
784
785 /*
786 * Unlink the stream tracefile from disk.
787 *
788 * Return 0 on success or else a negative value.
789 */
790 LTTNG_HIDDEN
791 int 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);
806 }
807 if (ret < 0) {
808 goto error;
809 }
810 error:
811 DBG("utils_unlink_stream_file %s returns %d", path, ret);
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 */
824 LTTNG_HIDDEN
825 int utils_rotate_stream_file(char *path_name, char *file_name, uint64_t size,
826 uint64_t count, int uid, int gid, int out_fd, uint64_t *new_count,
827 int *stream_fd)
828 {
829 int ret;
830
831 assert(new_count);
832 assert(stream_fd);
833
834 ret = close(out_fd);
835 if (ret < 0) {
836 PERROR("Closing tracefile");
837 goto error;
838 }
839
840 if (count > 0) {
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 */
854 *new_count = (*new_count + 1) % count;
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 }
860 } else {
861 (*new_count)++;
862 }
863
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
874 error:
875 return ret;
876 }
877
878
879 /**
880 * Parse a string that represents a size in human readable format. It
881 * supports decimal integers suffixed by 'k', 'K', 'M' or 'G'.
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.
889 * @param size Pointer to a uint64_t that will be filled with the
890 * resulting size.
891 *
892 * @return 0 on success, -1 on failure.
893 */
894 LTTNG_HIDDEN
895 int utils_parse_size_suffix(const char * const str, uint64_t * const size)
896 {
897 int ret;
898 uint64_t base_size;
899 long shift = 0;
900 const char *str_end;
901 char *num_end;
902
903 if (!str) {
904 DBG("utils_parse_size_suffix: received a NULL string.");
905 ret = -1;
906 goto end;
907 }
908
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 '-'.");
912 ret = -1;
913 goto end;
914 }
915
916 /* str_end will point to the \0 */
917 str_end = str + strlen(str);
918 errno = 0;
919 base_size = strtoull(str, &num_end, 0);
920 if (errno != 0) {
921 PERROR("utils_parse_size_suffix strtoull");
922 ret = -1;
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;
961 }
962
963 *size = base_size << shift;
964
965 /* Check for overflow */
966 if ((*size >> shift) != base_size) {
967 DBG("utils_parse_size_suffix: oops, overflow detected.");
968 ret = -1;
969 goto end;
970 }
971
972 ret = 0;
973 end:
974 return ret;
975 }
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)
983 static 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
998 static __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 */
1033 LTTNG_HIDDEN
1034 int utils_get_count_order_u32(uint32_t x)
1035 {
1036 if (!x) {
1037 return -1;
1038 }
1039
1040 return fls_u32(x - 1);
1041 }
1042
1043 /**
1044 * Obtain the value of LTTNG_HOME environment variable, if exists.
1045 * Otherwise returns the value of HOME.
1046 */
1047 LTTNG_HIDDEN
1048 char *utils_get_home_dir(void)
1049 {
1050 char *val = NULL;
1051 struct passwd *pwd;
1052
1053 val = lttng_secure_getenv(DEFAULT_LTTNG_HOME_ENV_VAR);
1054 if (val != NULL) {
1055 goto end;
1056 }
1057 val = lttng_secure_getenv(DEFAULT_LTTNG_FALLBACK_HOME_ENV_VAR);
1058 if (val != NULL) {
1059 goto end;
1060 }
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
1071 end:
1072 return val;
1073 }
1074
1075 /**
1076 * Get user's home directory. Dynamically allocated, must be freed
1077 * by the caller.
1078 */
1079 LTTNG_HIDDEN
1080 char *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 }
1093 retry:
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);
1110 end:
1111 free(buf);
1112 return home_dir;
1113 }
1114
1115 /*
1116 * Obtain the value of LTTNG_KMOD_PROBES environment variable, if exists.
1117 * Otherwise returns NULL.
1118 */
1119 LTTNG_HIDDEN
1120 char *utils_get_kmod_probes_list(void)
1121 {
1122 return lttng_secure_getenv(DEFAULT_LTTNG_KMOD_PROBES);
1123 }
1124
1125 /*
1126 * Obtain the value of LTTNG_EXTRA_KMOD_PROBES environment variable, if
1127 * exists. Otherwise returns NULL.
1128 */
1129 LTTNG_HIDDEN
1130 char *utils_get_extra_kmod_probes_list(void)
1131 {
1132 return lttng_secure_getenv(DEFAULT_LTTNG_EXTRA_KMOD_PROBES);
1133 }
1134
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 */
1140 LTTNG_HIDDEN
1141 size_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) {
1155 ERR("Unable to strftime with format %s at dst %p of len %zu", format,
1156 dst, len);
1157 }
1158
1159 return ret;
1160 }
1161
1162 /*
1163 * Return the group ID matching name, else 0 if it cannot be found.
1164 */
1165 LTTNG_HIDDEN
1166 gid_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 }
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 */
1189 LTTNG_HIDDEN
1190 char *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
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 }
1221 }
1222 }
1223
1224 end:
1225 return optstring;
1226 }
1227
1228 /*
1229 * Try to remove a hierarchy of empty directories, recursively. Don't unlink
1230 * any file. Try to rmdir any empty directory within the hierarchy.
1231 */
1232 LTTNG_HIDDEN
1233 int utils_recursive_rmdir(const char *path)
1234 {
1235 DIR *dir;
1236 int dir_fd, ret = 0, closeret, is_empty = 1;
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);
1266 if (utils_recursive_rmdir(subpath)) {
1267 is_empty = 0;
1268 }
1269 break;
1270 }
1271 case DT_REG:
1272 is_empty = 0;
1273 break;
1274 default:
1275 ret = -EINVAL;
1276 goto end;
1277 }
1278 }
1279 end:
1280 closeret = closedir(dir);
1281 if (closeret) {
1282 PERROR("closedir");
1283 }
1284 if (is_empty) {
1285 DBG3("Attempting rmdir %s", path);
1286 ret = rmdir(path);
1287 }
1288 return ret;
1289 }
This page took 0.054506 seconds and 4 git commands to generate.