X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng%2Fconf.c;h=4079d6ed9421273680d102d4bc9cf9353534dfb6;hp=f96be3a8175a248e8c1e6187e8e5fc5e96c8b270;hb=ce0b1d61919f37517a6212f7af2afe0fa1b1dcb0;hpb=1dac0189ed7311146ff2cfc6605bac81213ee90b diff --git a/src/bin/lttng/conf.c b/src/bin/lttng/conf.c index f96be3a81..4079d6ed9 100644 --- a/src/bin/lttng/conf.c +++ b/src/bin/lttng/conf.c @@ -1,21 +1,10 @@ /* - * Copyright (c) 2011 David Goulet + * Copyright (C) 2011 David Goulet * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License, version 2 only, - * as published by the Free Software Foundation. + * SPDX-License-Identifier: GPL-2.0-only * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License along - * with this program; if not, write to the Free Software Foundation, Inc., - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#define _GNU_SOURCE #define _LGPL_SOURCE #include #include @@ -24,8 +13,8 @@ #include #include #include -#include +#include #include #include @@ -35,7 +24,7 @@ * Returns the path with '/CONFIG_FILENAME' added to it; * path will be NULL if an error occurs. */ -char *config_get_file_path(char *path) +char *config_get_file_path(const char *path) { int ret; char *file_path; @@ -53,7 +42,7 @@ char *config_get_file_path(char *path) * Returns an open FILE pointer to the config file; * on error, NULL is returned. */ -static FILE *open_config(char *path, const char *mode) +static FILE *open_config(const char *path, const char *mode) { FILE *fp = NULL; char *file_path; @@ -78,7 +67,7 @@ error: * On success, returns 0; * on error, returns -1. */ -static int create_config_file(char *path) +static int create_config_file(const char *path) { int ret; FILE *fp; @@ -101,7 +90,7 @@ error: * On success, returns 0; * on error, returns -1. */ -static int write_config(char *file_path, size_t size, char *data) +static int write_config(const char *file_path, size_t size, char *data) { FILE *fp; size_t len; @@ -128,7 +117,7 @@ end: /* * Destroys directory config and file config. */ -void config_destroy(char *path) +void config_destroy(const char *path) { int ret; char *config_path; @@ -156,7 +145,7 @@ end: */ void config_destroy_default(void) { - char *path = utils_get_home_dir(); + const char *path = utils_get_home_dir(); if (path == NULL) { return; } @@ -179,11 +168,12 @@ int config_exists(const char *path) } static -int _config_read_session_name(char *path, char **name) +int _config_read_session_name(const char *path, char **name) { int ret = 0; FILE *fp; char var[NAME_MAX], *session_name; + #if (NAME_MAX == 255) #define NAME_MAX_SCANF_IS_A_BROKEN_API "254" #endif @@ -238,7 +228,7 @@ found: * The caller is responsible for freeing the returned string. * On error, NULL is returned. */ -char *config_read_session_name(char *path) +char *config_read_session_name(const char *path) { int ret; char *name = NULL; @@ -260,7 +250,7 @@ char *config_read_session_name(char *path) * The caller is responsible for freeing the returned string. * On error, NULL is returned. */ -char *config_read_session_name_quiet(char *path) +char *config_read_session_name_quiet(const char *path) { char *name = NULL; @@ -273,10 +263,10 @@ char *config_read_session_name_quiet(char *path) * On success, returns 0; * on error, returns -1. */ -int config_add_session_name(char *path, char *name) +int config_add_session_name(const char *path, const char *name) { int ret; - char *attr = "session="; + const char *attr = "session="; /* Max name len accepted plus attribute's len and the NULL byte. */ char session_name[NAME_MAX + strlen(attr) + 1]; @@ -299,10 +289,10 @@ error: * On success, returns 0; * on error, returns -1. */ -int config_init(char *session_name) +int config_init(const char *session_name) { int ret; - char *path; + const char *path; path = utils_get_home_dir(); if (path == NULL) {