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>
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.
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
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.
27 #include <sys/types.h>
35 #include <common/common.h>
36 #include <common/readwrite.h>
37 #include <common/runas.h>
38 #include <common/compat/getenv.h>
39 #include <common/compat/string.h>
40 #include <common/compat/dirent.h>
41 #include <common/compat/directory-handle.h>
42 #include <common/dynamic-buffer.h>
43 #include <common/string-utils/format.h>
44 #include <lttng/constant.h>
50 #define PROC_MEMINFO_PATH "/proc/meminfo"
51 #define PROC_MEMINFO_MEMAVAILABLE_LINE "MemAvailable:"
52 #define PROC_MEMINFO_MEMTOTAL_LINE "MemTotal:"
54 /* The length of the longest field of `/proc/meminfo`. */
55 #define PROC_MEMINFO_FIELD_MAX_NAME_LEN 20
57 #if (PROC_MEMINFO_FIELD_MAX_NAME_LEN == 20)
58 #define MAX_NAME_LEN_SCANF_IS_A_BROKEN_API "19"
60 #error MAX_NAME_LEN_SCANF_IS_A_BROKEN_API must be updated to match (PROC_MEMINFO_FIELD_MAX_NAME_LEN - 1)
64 * Return a partial realpath(3) of the path even if the full path does not
65 * exist. For instance, with /tmp/test1/test2/test3, if test2/ does not exist
66 * but the /tmp/test1 does, the real path for /tmp/test1 is concatened with
67 * /test2/test3 then returned. In normal time, realpath(3) fails if the end
68 * point directory does not exist.
69 * In case resolved_path is NULL, the string returned was allocated in the
70 * function and thus need to be freed by the caller. The size argument allows
71 * to specify the size of the resolved_path argument if given, or the size to
75 char *utils_partial_realpath(const char *path
, char *resolved_path
, size_t size
)
77 char *cut_path
= NULL
, *try_path
= NULL
, *try_path_prev
= NULL
;
78 const char *next
, *prev
, *end
;
86 * Identify the end of the path, we don't want to treat the
87 * last char if it is a '/', we will just keep it on the side
88 * to be added at the end, and return a value coherent with
89 * the path given as argument
91 end
= path
+ strlen(path
);
92 if (*(end
-1) == '/') {
96 /* Initiate the values of the pointers before looping */
99 /* Only to ensure try_path is not NULL to enter the while */
100 try_path
= (char *)next
;
102 /* Resolve the canonical path of the first part of the path */
103 while (try_path
!= NULL
&& next
!= end
) {
104 char *try_path_buf
= NULL
;
107 * If there is not any '/' left, we want to try with
110 next
= strpbrk(next
+ 1, "/");
115 /* Cut the part we will be trying to resolve */
116 cut_path
= lttng_strndup(path
, next
- path
);
117 if (cut_path
== NULL
) {
118 PERROR("lttng_strndup");
122 try_path_buf
= zmalloc(LTTNG_PATH_MAX
);
128 /* Try to resolve this part */
129 try_path
= realpath((char *) cut_path
, try_path_buf
);
130 if (try_path
== NULL
) {
133 * There was an error, we just want to be assured it
134 * is linked to an unexistent directory, if it's another
135 * reason, we spawn an error
139 /* Ignore the error */
142 PERROR("realpath (partial_realpath)");
147 /* Save the place we are before trying the next step */
150 try_path_prev
= try_path
;
154 /* Free the allocated memory */
159 /* Allocate memory for the resolved path if necessary */
160 if (resolved_path
== NULL
) {
161 resolved_path
= zmalloc(size
);
162 if (resolved_path
== NULL
) {
163 PERROR("zmalloc resolved path");
169 * If we were able to solve at least partially the path, we can concatenate
170 * what worked and what didn't work
172 if (try_path_prev
!= NULL
) {
173 /* If we risk to concatenate two '/', we remove one of them */
174 if (try_path_prev
[strlen(try_path_prev
) - 1] == '/' && prev
[0] == '/') {
175 try_path_prev
[strlen(try_path_prev
) - 1] = '\0';
179 * Duplicate the memory used by prev in case resolved_path and
180 * path are pointers for the same memory space
182 cut_path
= strdup(prev
);
183 if (cut_path
== NULL
) {
188 /* Concatenate the strings */
189 snprintf(resolved_path
, size
, "%s%s", try_path_prev
, cut_path
);
191 /* Free the allocated memory */
195 try_path_prev
= NULL
;
197 * Else, we just copy the path in our resolved_path to
201 strncpy(resolved_path
, path
, size
);
204 /* Then we return the 'partially' resolved path */
205 return resolved_path
;
211 if (try_path_prev
!= try_path
) {
218 int expand_double_slashes_dot_and_dotdot(char *path
)
220 size_t expanded_path_len
, path_len
;
221 const char *curr_char
, *path_last_char
, *next_slash
, *prev_slash
;
223 path_len
= strlen(path
);
224 path_last_char
= &path
[path_len
];
230 expanded_path_len
= 0;
232 /* We iterate over the provided path to expand the "//", "../" and "./" */
233 for (curr_char
= path
; curr_char
<= path_last_char
; curr_char
= next_slash
+ 1) {
234 /* Find the next forward slash. */
235 size_t curr_token_len
;
237 if (curr_char
== path_last_char
) {
242 next_slash
= memchr(curr_char
, '/', path_last_char
- curr_char
);
243 if (next_slash
== NULL
) {
244 /* Reached the end of the provided path. */
245 next_slash
= path_last_char
;
248 /* Compute how long is the previous token. */
249 curr_token_len
= next_slash
- curr_char
;
250 switch(curr_token_len
) {
253 * The pointer has not move meaning that curr_char is
254 * pointing to a slash. It that case there is no token
255 * to copy, so continue the iteration to find the next
261 * The pointer moved 1 character. Check if that
262 * character is a dot ('.'), if it is: omit it, else
263 * copy the token to the normalized path.
265 if (curr_char
[0] == '.') {
271 * The pointer moved 2 characters. Check if these
272 * characters are double dots ('..'). If that is the
273 * case, we need to remove the last token of the
276 if (curr_char
[0] == '.' && curr_char
[1] == '.') {
278 * Find the previous path component by
279 * using the memrchr function to find the
280 * previous forward slash and substract that
281 * len to the resulting path.
283 prev_slash
= lttng_memrchr(path
, '/', expanded_path_len
);
285 * If prev_slash is NULL, we reached the
286 * beginning of the path. We can't go back any
289 if (prev_slash
!= NULL
) {
290 expanded_path_len
= prev_slash
- path
;
300 * Copy the current token which is neither a '.' nor a '..'.
302 path
[expanded_path_len
++] = '/';
303 memcpy(&path
[expanded_path_len
], curr_char
, curr_token_len
);
304 expanded_path_len
+= curr_token_len
;
307 if (expanded_path_len
== 0) {
308 path
[expanded_path_len
++] = '/';
311 path
[expanded_path_len
] = '\0';
318 * Make a full resolution of the given path even if it doesn't exist.
319 * This function uses the utils_partial_realpath function to resolve
320 * symlinks and relatives paths at the start of the string, and
321 * implements functionnalities to resolve the './' and '../' strings
322 * in the middle of a path. This function is only necessary because
323 * realpath(3) does not accept to resolve unexistent paths.
324 * The returned string was allocated in the function, it is thus of
325 * the responsibility of the caller to free this memory.
328 char *_utils_expand_path(const char *path
, bool keep_symlink
)
331 char *absolute_path
= NULL
;
333 bool is_dot
, is_dotdot
;
340 /* Allocate memory for the absolute_path */
341 absolute_path
= zmalloc(LTTNG_PATH_MAX
);
342 if (absolute_path
== NULL
) {
343 PERROR("zmalloc expand path");
347 if (path
[0] == '/') {
348 ret
= lttng_strncpy(absolute_path
, path
, LTTNG_PATH_MAX
);
350 ERR("Path exceeds maximal size of %i bytes", LTTNG_PATH_MAX
);
355 * This is a relative path. We need to get the present working
356 * directory and start the path walk from there.
358 char current_working_dir
[LTTNG_PATH_MAX
];
361 cwd_ret
= getcwd(current_working_dir
, sizeof(current_working_dir
));
366 * Get the number of character in the CWD and allocate an array
367 * to can hold it and the path provided by the caller.
369 ret
= snprintf(absolute_path
, LTTNG_PATH_MAX
, "%s/%s",
370 current_working_dir
, path
);
371 if (ret
>= LTTNG_PATH_MAX
) {
372 ERR("Concatenating current working directory %s and path %s exceeds maximal size of %i bytes",
373 current_working_dir
, path
, LTTNG_PATH_MAX
);
379 /* Resolve partially our path */
380 absolute_path
= utils_partial_realpath(absolute_path
,
381 absolute_path
, LTTNG_PATH_MAX
);
382 if (!absolute_path
) {
387 ret
= expand_double_slashes_dot_and_dotdot(absolute_path
);
392 /* Identify the last token */
393 last_token
= strrchr(absolute_path
, '/');
395 /* Verify that this token is not a relative path */
396 is_dotdot
= (strcmp(last_token
, "/..") == 0);
397 is_dot
= (strcmp(last_token
, "/.") == 0);
399 /* If it is, take action */
400 if (is_dot
|| is_dotdot
) {
401 /* For both, remove this token */
404 /* If it was a reference to parent directory, go back one more time */
406 last_token
= strrchr(absolute_path
, '/');
408 /* If there was only one level left, we keep the first '/' */
409 if (last_token
== absolute_path
) {
417 return absolute_path
;
424 char *utils_expand_path(const char *path
)
426 return _utils_expand_path(path
, true);
430 char *utils_expand_path_keep_symlink(const char *path
)
432 return _utils_expand_path(path
, false);
435 * Create a pipe in dst.
438 int utils_create_pipe(int *dst
)
448 PERROR("create pipe");
455 * Create pipe and set CLOEXEC flag to both fd.
457 * Make sure the pipe opened by this function are closed at some point. Use
458 * utils_close_pipe().
461 int utils_create_pipe_cloexec(int *dst
)
469 ret
= utils_create_pipe(dst
);
474 for (i
= 0; i
< 2; i
++) {
475 ret
= fcntl(dst
[i
], F_SETFD
, FD_CLOEXEC
);
477 PERROR("fcntl pipe cloexec");
487 * Create pipe and set fd flags to FD_CLOEXEC and O_NONBLOCK.
489 * Make sure the pipe opened by this function are closed at some point. Use
490 * utils_close_pipe(). Using pipe() and fcntl rather than pipe2() to
491 * support OSes other than Linux 2.6.23+.
494 int utils_create_pipe_cloexec_nonblock(int *dst
)
502 ret
= utils_create_pipe(dst
);
507 for (i
= 0; i
< 2; i
++) {
508 ret
= fcntl(dst
[i
], F_SETFD
, FD_CLOEXEC
);
510 PERROR("fcntl pipe cloexec");
514 * Note: we override any flag that could have been
515 * previously set on the fd.
517 ret
= fcntl(dst
[i
], F_SETFL
, O_NONBLOCK
);
519 PERROR("fcntl pipe nonblock");
529 * Close both read and write side of the pipe.
532 void utils_close_pipe(int *src
)
540 for (i
= 0; i
< 2; i
++) {
548 PERROR("close pipe");
554 * Create a new string using two strings range.
557 char *utils_strdupdelim(const char *begin
, const char *end
)
561 str
= zmalloc(end
- begin
+ 1);
563 PERROR("zmalloc strdupdelim");
567 memcpy(str
, begin
, end
- begin
);
568 str
[end
- begin
] = '\0';
575 * Set CLOEXEC flag to the give file descriptor.
578 int utils_set_fd_cloexec(int fd
)
587 ret
= fcntl(fd
, F_SETFD
, FD_CLOEXEC
);
589 PERROR("fcntl cloexec");
598 * Create pid file to the given path and filename.
601 int utils_create_pid_file(pid_t pid
, const char *filepath
)
608 fp
= fopen(filepath
, "w");
610 PERROR("open pid file %s", filepath
);
615 ret
= fprintf(fp
, "%d\n", (int) pid
);
617 PERROR("fprintf pid file");
624 DBG("Pid %d written in file %s", (int) pid
, filepath
);
631 * Create lock file to the given path and filename.
632 * Returns the associated file descriptor, -1 on error.
635 int utils_create_lock_file(const char *filepath
)
643 memset(&lock
, 0, sizeof(lock
));
644 fd
= open(filepath
, O_CREAT
| O_WRONLY
, S_IRUSR
| S_IWUSR
|
647 PERROR("open lock file %s", filepath
);
653 * Attempt to lock the file. If this fails, there is
654 * already a process using the same lock file running
655 * and we should exit.
657 lock
.l_whence
= SEEK_SET
;
658 lock
.l_type
= F_WRLCK
;
660 ret
= fcntl(fd
, F_SETLK
, &lock
);
662 PERROR("fcntl lock file");
663 ERR("Could not get lock file %s, another instance is running.",
666 PERROR("close lock file");
677 * Create directory using the given path and mode.
679 * On success, return 0 else a negative error code.
682 int utils_mkdir(const char *path
, mode_t mode
, int uid
, int gid
)
685 struct lttng_directory_handle handle
;
686 const struct lttng_credentials creds
= {
691 ret
= lttng_directory_handle_init(&handle
, NULL
);
695 ret
= lttng_directory_handle_create_subdirectory_as_user(
697 (uid
>= 0 || gid
>= 0) ? &creds
: NULL
);
698 lttng_directory_handle_fini(&handle
);
704 * Recursively create directory using the given path and mode, under the
705 * provided uid and gid.
707 * On success, return 0 else a negative error code.
710 int utils_mkdir_recursive(const char *path
, mode_t mode
, int uid
, int gid
)
713 struct lttng_directory_handle handle
;
714 const struct lttng_credentials creds
= {
719 ret
= lttng_directory_handle_init(&handle
, NULL
);
723 ret
= lttng_directory_handle_create_subdirectory_recursive_as_user(
725 (uid
>= 0 || gid
>= 0) ? &creds
: NULL
);
726 lttng_directory_handle_fini(&handle
);
732 * out_stream_path is the output parameter.
734 * Return 0 on success or else a negative value.
737 int utils_stream_file_path(const char *path_name
, const char *file_name
,
738 uint64_t size
, uint64_t count
, const char *suffix
,
739 char *out_stream_path
, size_t stream_path_len
)
742 char count_str
[MAX_INT_DEC_LEN(count
) + 1] = {};
743 const char *path_separator
;
745 if (path_name
&& path_name
[strlen(path_name
) - 1] == '/') {
748 path_separator
= "/";
751 path_name
= path_name
? : "";
752 suffix
= suffix
? : "";
754 ret
= snprintf(count_str
, sizeof(count_str
), "_%" PRIu64
,
756 assert(ret
> 0 && ret
< sizeof(count_str
));
759 ret
= snprintf(out_stream_path
, stream_path_len
, "%s%s%s%s%s",
760 path_name
, path_separator
, file_name
, count_str
,
762 if (ret
< 0 || ret
>= stream_path_len
) {
763 ERR("Truncation occurred while formatting stream path");
772 * Parse a string that represents a size in human readable format. It
773 * supports decimal integers suffixed by 'k', 'K', 'M' or 'G'.
775 * The suffix multiply the integer by:
780 * @param str The string to parse.
781 * @param size Pointer to a uint64_t that will be filled with the
784 * @return 0 on success, -1 on failure.
787 int utils_parse_size_suffix(const char * const str
, uint64_t * const size
)
796 DBG("utils_parse_size_suffix: received a NULL string.");
801 /* strtoull will accept a negative number, but we don't want to. */
802 if (strchr(str
, '-') != NULL
) {
803 DBG("utils_parse_size_suffix: invalid size string, should not contain '-'.");
808 /* str_end will point to the \0 */
809 str_end
= str
+ strlen(str
);
811 base_size
= strtoull(str
, &num_end
, 0);
813 PERROR("utils_parse_size_suffix strtoull");
818 if (num_end
== str
) {
819 /* strtoull parsed nothing, not good. */
820 DBG("utils_parse_size_suffix: strtoull had nothing good to parse.");
825 /* Check if a prefix is present. */
843 DBG("utils_parse_size_suffix: invalid suffix.");
848 /* Check for garbage after the valid input. */
849 if (num_end
!= str_end
) {
850 DBG("utils_parse_size_suffix: Garbage after size string.");
855 *size
= base_size
<< shift
;
857 /* Check for overflow */
858 if ((*size
>> shift
) != base_size
) {
859 DBG("utils_parse_size_suffix: oops, overflow detected.");
870 * Parse a string that represents a time in human readable format. It
871 * supports decimal integers suffixed by:
872 * "us" for microsecond,
873 * "ms" for millisecond,
878 * The suffix multiply the integer by:
885 * Note that unit-less numbers are assumed to be microseconds.
887 * @param str The string to parse, assumed to be NULL-terminated.
888 * @param time_us Pointer to a uint64_t that will be filled with the
889 * resulting time in microseconds.
891 * @return 0 on success, -1 on failure.
894 int utils_parse_time_suffix(char const * const str
, uint64_t * const time_us
)
898 uint64_t multiplier
= 1;
903 DBG("utils_parse_time_suffix: received a NULL string.");
908 /* strtoull will accept a negative number, but we don't want to. */
909 if (strchr(str
, '-') != NULL
) {
910 DBG("utils_parse_time_suffix: invalid time string, should not contain '-'.");
915 /* str_end will point to the \0 */
916 str_end
= str
+ strlen(str
);
918 base_time
= strtoull(str
, &num_end
, 10);
920 PERROR("utils_parse_time_suffix strtoull on string \"%s\"", str
);
925 if (num_end
== str
) {
926 /* strtoull parsed nothing, not good. */
927 DBG("utils_parse_time_suffix: strtoull had nothing good to parse.");
932 /* Check if a prefix is present. */
938 * Skip the "us" if the string matches the "us" suffix,
939 * otherwise let the check for the end of the string handle
940 * the error reporting.
942 if (*(num_end
+ 1) == 's') {
947 if (*(num_end
+ 1) == 's') {
948 /* Millisecond (ms) */
949 multiplier
= USEC_PER_MSEC
;
954 multiplier
= USEC_PER_MINUTE
;
960 multiplier
= USEC_PER_SEC
;
965 multiplier
= USEC_PER_HOURS
;
971 DBG("utils_parse_time_suffix: invalid suffix.");
976 /* Check for garbage after the valid input. */
977 if (num_end
!= str_end
) {
978 DBG("utils_parse_time_suffix: Garbage after time string.");
983 *time_us
= base_time
* multiplier
;
985 /* Check for overflow */
986 if ((*time_us
/ multiplier
) != base_time
) {
987 DBG("utils_parse_time_suffix: oops, overflow detected.");
998 * fls: returns the position of the most significant bit.
999 * Returns 0 if no bit is set, else returns the position of the most
1000 * significant bit (from 1 to 32 on 32-bit, from 1 to 64 on 64-bit).
1002 #if defined(__i386) || defined(__x86_64)
1003 static inline unsigned int fls_u32(uint32_t x
)
1007 asm("bsrl %1,%0\n\t"
1011 : "=r" (r
) : "rm" (x
));
1017 #if defined(__x86_64) && defined(__LP64__)
1019 unsigned int fls_u64(uint64_t x
)
1023 asm("bsrq %1,%0\n\t"
1027 : "=r" (r
) : "rm" (x
));
1034 static __attribute__((unused
))
1035 unsigned int fls_u64(uint64_t x
)
1037 unsigned int r
= 64;
1042 if (!(x
& 0xFFFFFFFF00000000ULL
)) {
1046 if (!(x
& 0xFFFF000000000000ULL
)) {
1050 if (!(x
& 0xFF00000000000000ULL
)) {
1054 if (!(x
& 0xF000000000000000ULL
)) {
1058 if (!(x
& 0xC000000000000000ULL
)) {
1062 if (!(x
& 0x8000000000000000ULL
)) {
1071 static __attribute__((unused
)) unsigned int fls_u32(uint32_t x
)
1073 unsigned int r
= 32;
1078 if (!(x
& 0xFFFF0000U
)) {
1082 if (!(x
& 0xFF000000U
)) {
1086 if (!(x
& 0xF0000000U
)) {
1090 if (!(x
& 0xC0000000U
)) {
1094 if (!(x
& 0x80000000U
)) {
1103 * Return the minimum order for which x <= (1UL << order).
1104 * Return -1 if x is 0.
1107 int utils_get_count_order_u32(uint32_t x
)
1113 return fls_u32(x
- 1);
1117 * Return the minimum order for which x <= (1UL << order).
1118 * Return -1 if x is 0.
1121 int utils_get_count_order_u64(uint64_t x
)
1127 return fls_u64(x
- 1);
1131 * Obtain the value of LTTNG_HOME environment variable, if exists.
1132 * Otherwise returns the value of HOME.
1135 const char *utils_get_home_dir(void)
1140 val
= lttng_secure_getenv(DEFAULT_LTTNG_HOME_ENV_VAR
);
1144 val
= lttng_secure_getenv(DEFAULT_LTTNG_FALLBACK_HOME_ENV_VAR
);
1149 /* Fallback on the password file entry. */
1150 pwd
= getpwuid(getuid());
1156 DBG3("Home directory is '%s'", val
);
1163 * Get user's home directory. Dynamically allocated, must be freed
1167 char *utils_get_user_home_dir(uid_t uid
)
1170 struct passwd
*result
;
1171 char *home_dir
= NULL
;
1176 buflen
= sysconf(_SC_GETPW_R_SIZE_MAX
);
1181 buf
= zmalloc(buflen
);
1186 ret
= getpwuid_r(uid
, &pwd
, buf
, buflen
, &result
);
1187 if (ret
|| !result
) {
1188 if (ret
== ERANGE
) {
1196 home_dir
= strdup(pwd
.pw_dir
);
1203 * With the given format, fill dst with the time of len maximum siz.
1205 * Return amount of bytes set in the buffer or else 0 on error.
1208 size_t utils_get_current_time_str(const char *format
, char *dst
, size_t len
)
1212 struct tm
*timeinfo
;
1217 /* Get date and time for session path */
1219 timeinfo
= localtime(&rawtime
);
1220 ret
= strftime(dst
, len
, format
, timeinfo
);
1222 ERR("Unable to strftime with format %s at dst %p of len %zu", format
,
1230 * Return 0 on success and set *gid to the group_ID matching the passed name.
1231 * Else -1 if it cannot be found or an error occurred.
1234 int utils_get_group_id(const char *name
, bool warn
, gid_t
*gid
)
1236 static volatile int warn_once
;
1241 struct group
*result
;
1242 struct lttng_dynamic_buffer buffer
;
1244 /* Get the system limit, if it exists. */
1245 sys_len
= sysconf(_SC_GETGR_R_SIZE_MAX
);
1246 if (sys_len
== -1) {
1249 len
= (size_t) sys_len
;
1252 lttng_dynamic_buffer_init(&buffer
);
1253 ret
= lttng_dynamic_buffer_set_size(&buffer
, len
);
1255 ERR("Failed to allocate group info buffer");
1260 while ((ret
= getgrnam_r(name
, &grp
, buffer
.data
, buffer
.size
, &result
)) == ERANGE
) {
1261 const size_t new_len
= 2 * buffer
.size
;
1263 /* Buffer is not big enough, increase its size. */
1264 if (new_len
< buffer
.size
) {
1265 ERR("Group info buffer size overflow");
1270 ret
= lttng_dynamic_buffer_set_size(&buffer
, new_len
);
1272 ERR("Failed to grow group info buffer to %zu bytes",
1279 PERROR("Failed to get group file entry for group name \"%s\"",
1285 /* Group not found. */
1291 *gid
= result
->gr_gid
;
1295 if (ret
&& warn
&& !warn_once
) {
1296 WARN("No tracing group detected");
1299 lttng_dynamic_buffer_reset(&buffer
);
1304 * Return a newly allocated option string. This string is to be used as the
1305 * optstring argument of getopt_long(), see GETOPT(3). opt_count is the number
1306 * of elements in the long_options array. Returns NULL if the string's
1310 char *utils_generate_optstring(const struct option
*long_options
,
1314 size_t string_len
= opt_count
, str_pos
= 0;
1318 * Compute the necessary string length. One letter per option, two when an
1319 * argument is necessary, and a trailing NULL.
1321 for (i
= 0; i
< opt_count
; i
++) {
1322 string_len
+= long_options
[i
].has_arg
? 1 : 0;
1325 optstring
= zmalloc(string_len
);
1330 for (i
= 0; i
< opt_count
; i
++) {
1331 if (!long_options
[i
].name
) {
1332 /* Got to the trailing NULL element */
1336 if (long_options
[i
].val
!= '\0') {
1337 optstring
[str_pos
++] = (char) long_options
[i
].val
;
1338 if (long_options
[i
].has_arg
) {
1339 optstring
[str_pos
++] = ':';
1349 * Try to remove a hierarchy of empty directories, recursively. Don't unlink
1350 * any file. Try to rmdir any empty directory within the hierarchy.
1353 int utils_recursive_rmdir(const char *path
)
1356 struct lttng_directory_handle handle
;
1358 ret
= lttng_directory_handle_init(&handle
, NULL
);
1362 ret
= lttng_directory_handle_remove_subdirectory(&handle
, path
);
1363 lttng_directory_handle_fini(&handle
);
1369 int utils_truncate_stream_file(int fd
, off_t length
)
1374 ret
= ftruncate(fd
, length
);
1376 PERROR("ftruncate");
1379 lseek_ret
= lseek(fd
, length
, SEEK_SET
);
1380 if (lseek_ret
< 0) {
1389 static const char *get_man_bin_path(void)
1391 char *env_man_path
= lttng_secure_getenv(DEFAULT_MAN_BIN_PATH_ENV
);
1394 return env_man_path
;
1397 return DEFAULT_MAN_BIN_PATH
;
1401 int utils_show_help(int section
, const char *page_name
,
1402 const char *help_msg
)
1404 char section_string
[8];
1405 const char *man_bin_path
= get_man_bin_path();
1409 printf("%s", help_msg
);
1413 /* Section integer -> section string */
1414 ret
= sprintf(section_string
, "%d", section
);
1415 assert(ret
> 0 && ret
< 8);
1418 * Execute man pager.
1420 * We provide -M to man here because LTTng-tools can
1421 * be installed outside /usr, in which case its man pages are
1422 * not located in the default /usr/share/man directory.
1424 ret
= execlp(man_bin_path
, "man", "-M", MANPATH
,
1425 section_string
, page_name
, NULL
);
1432 int read_proc_meminfo_field(const char *field
, size_t *value
)
1436 char name
[PROC_MEMINFO_FIELD_MAX_NAME_LEN
] = {};
1438 proc_meminfo
= fopen(PROC_MEMINFO_PATH
, "r");
1439 if (!proc_meminfo
) {
1440 PERROR("Failed to fopen() " PROC_MEMINFO_PATH
);
1446 * Read the contents of /proc/meminfo line by line to find the right
1449 while (!feof(proc_meminfo
)) {
1450 unsigned long value_kb
;
1452 ret
= fscanf(proc_meminfo
,
1453 "%" MAX_NAME_LEN_SCANF_IS_A_BROKEN_API
"s %lu kB\n",
1457 * fscanf() returning EOF can indicate EOF or an error.
1459 if (ferror(proc_meminfo
)) {
1460 PERROR("Failed to parse " PROC_MEMINFO_PATH
);
1465 if (ret
== 2 && strcmp(name
, field
) == 0) {
1467 * This number is displayed in kilo-bytes. Return the
1470 *value
= ((size_t) value_kb
) * 1024;
1475 /* Reached the end of the file without finding the right field. */
1479 fclose(proc_meminfo
);
1485 * Returns an estimate of the number of bytes of memory available based on the
1486 * the information in `/proc/meminfo`. The number returned by this function is
1490 int utils_get_memory_available(size_t *value
)
1492 return read_proc_meminfo_field(PROC_MEMINFO_MEMAVAILABLE_LINE
, value
);
1496 * Returns the total size of the memory on the system in bytes based on the
1497 * the information in `/proc/meminfo`.
1500 int utils_get_memory_total(size_t *value
)
1502 return read_proc_meminfo_field(PROC_MEMINFO_MEMTOTAL_LINE
, value
);
1506 int utils_change_working_directory(const char *path
)
1512 DBG("Changing working directory to \"%s\"", path
);
1515 PERROR("Failed to change working directory to \"%s\"", path
);
1519 /* Check for write access */
1520 if (access(path
, W_OK
)) {
1521 if (errno
== EACCES
) {
1523 * Do not treat this as an error since the permission
1524 * might change in the lifetime of the process
1526 DBG("Working directory \"%s\" is not writable", path
);
1528 PERROR("Failed to check if working directory \"%s\" is writable",