/
githubmirror
/
libeconf
Обзор
Документация
Войти
/
githubmirror
/
libeconf
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
lib/getfilecontents.c
669 строк
18 KB
Stefan Schubert
Split man pages (#244)
08 дек 2025, 18:12
Не верифицирован
08 дек 2025, 18:12
8b8507b
Код
Авторство
О чём код?
/* Copyright (C) 2019 SUSE LLC Author: Pascal Arlt <parlt@suse.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "libeconf.h" #include "defines.h" #include "getfilecontents.h" #include "helpers.h" #include <errno.h> #include <limits.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <ctype.h> #include <sys/stat.h> #include <dirent.h> #include <libgen.h> /*info for reporting scan errors (line Nr, filename) */ static uint64_t last_scanned_line_nr = 0; static char *last_scanned_filename = NULL; // Checking file permissions, uid, group,... bool file_owner_set = false; uid_t file_owner = 0; bool file_group_set = false; gid_t file_group = 0; bool file_permissions_set = false; mode_t file_perms_file; mode_t file_perms_dir; bool allow_follow_symlinks = true; static econf_err join_same_entries(econf_file *ef) { for(size_t i = 0; i < ef->length; i++) { for(size_t j = i+1; j < ef->length; j++) { if (strcmp(ef->file_entry[i].group, ef->file_entry[j].group) == 0 && strcmp(ef->file_entry[i].key, ef->file_entry[j].key) == 0) { char *post, *pre; if (ef->file_entry[j].value == NULL || strlen(ef->file_entry[j].value) == 0) { /* reset entry */ free(ef->file_entry[i].value); ef->file_entry[i].value = strdup(""); } else { /* appending value */ post = ef->file_entry[j].value; pre = ef->file_entry[i].value; int ret = 0; if (post != NULL && strlen(post) > 0) { /* removing leading spaces */ while(isspace(*post)) post++; ret = asprintf(&(ef->file_entry[i].value), "%s\n%s", pre, post); if(ret<0) return ECONF_NOMEM; free(pre); } } /* appending before key comment */ if (ef->file_entry[j].comment_before_key != NULL && strlen(ef->file_entry[j].comment_before_key) > 0) { post = ef->file_entry[j].comment_before_key; pre = ef->file_entry[i].comment_before_key; int ret = asprintf(&(ef->file_entry[i].comment_before_key), "%s\n%s", pre, post); if(ret<0) return ECONF_NOMEM; free(pre); } if (ef->file_entry[j].value == NULL || strlen(ef->file_entry[j].value) == 0) { /* reset after value comment */ free(ef->file_entry[i].comment_after_value); ef->file_entry[i].comment_after_value = NULL; } else { /* appending after value comment */ if (ef->file_entry[j].comment_after_value != NULL && strlen(ef->file_entry[j].comment_after_value) > 0) { post = ef->file_entry[j].comment_after_value; pre = ef->file_entry[i].comment_after_value; /* removing leading spaces */ while(isspace(*post)) post++; if (pre == NULL) { ef->file_entry[i].comment_after_value = strdup(post); } else { int ret = asprintf(&(ef->file_entry[i].comment_after_value), "%s\n%s", pre, post); if(ret<0) return ECONF_NOMEM; free(pre); } } } } } } return ECONF_SUCCESS; } static econf_err store (econf_file *ef, const char *group, const char *key, const char *value, const uint64_t line_number, const char *comment_before_key, const char *comment_after_value, const bool quotes, const bool append_entry) { if (append_entry) { /* Appending next line to the last entry. */ if (ef->length<=0) { return ECONF_MISSING_DELIMITER; } if (ef->python_style == true) { /* ignore space at the beginning of the line because it is the indentation of python style */ while (*value && isspace((unsigned)*value)) value++; } char *content = ef->file_entry[ef->length-1].value; int ret = asprintf(&(ef->file_entry[ef->length-1].value), "%s\n%s", content, value); if(ret<0) return ECONF_NOMEM; free(content); /* Points to the end of the array. This is needed for the next entry. */ ef->file_entry[ef->length-1].line_number = line_number; if (ef->file_entry[ef->length-1].comment_after_value && !comment_after_value) { /* multiline entry. This line has no comment. So we have to add an empty entry. */ comment_after_value = ""; } if (comment_after_value) { ret = -1; if (ef->file_entry[ef->length-1].comment_after_value) { content = ef->file_entry[ef->length-1].comment_after_value; ret = asprintf(&(ef->file_entry[ef->length-1].comment_after_value), "%s\n%s", content, comment_after_value); free(content); } else { ret = asprintf(&(ef->file_entry[ef->length-1].comment_after_value), "\n%s", comment_after_value); } if(ret<0) return ECONF_NOMEM; } return ECONF_SUCCESS; } /* not appending -> new entry */ if (ef->alloc_length == ef->length) { struct file_entry *tmp; tmp = realloc(ef->file_entry, (ef->length + 1) * sizeof(struct file_entry)); if (!tmp) return ECONF_NOMEM; ef->file_entry = tmp; ef->length++; ef->alloc_length = ef->length; } ef->file_entry[ef->length-1].line_number = line_number; ef->file_entry[ef->length-1].quotes = quotes; if (group) ef->file_entry[ef->length-1].group = setGroupList(ef, group); else ef->file_entry[ef->length-1].group = setGroupList(ef, KEY_FILE_NULL_VALUE); if (key) { /* remove space at the end of the key */ const char *p = key + strlen(key); if (p > key) p--; while (p > key && (isspace((unsigned)*p))) p--; ef->file_entry[ef->length-1].key = strndup(key, (size_t)(p+1-key)); } else ef->file_entry[ef->length-1].key = strdup(KEY_FILE_NULL_VALUE); if (value) ef->file_entry[ef->length-1].value = strdup(value); else ef->file_entry[ef->length-1].value = NULL; if (comment_before_key) ef->file_entry[ef->length-1].comment_before_key = strdup(comment_before_key); else ef->file_entry[ef->length-1].comment_before_key = NULL; if (comment_after_value) ef->file_entry[ef->length-1].comment_after_value = strdup(comment_after_value); else ef->file_entry[ef->length-1].comment_after_value = NULL; return ECONF_SUCCESS; } static void check_delim(const char *str, bool *has_wsp, bool *has_nonwsp) { const char *p; *has_wsp = *has_nonwsp = false; if (str == NULL) return; for (p = str; *p && !(*has_wsp && *has_nonwsp); p++) { if (isspace((unsigned)*p)) *has_wsp = true; else *has_nonwsp = true; } } static void free_buffer(char **buffer) { free(*buffer); } econf_err read_file_with_callback(econf_file **key_file, const char *file_name, const char *delim, const char *comment, bool (*callback)(const char *filename, const void *data), const void *callback_data) { econf_err t_err; struct stat sb; if (key_file == NULL || file_name == NULL || delim == NULL || comment == NULL) return ECONF_ARGUMENT_IS_NULL_VALUE; // Checking file permissions, uid, group,... if (lstat(file_name, &sb) == -1) return ECONF_NOFILE; if (!allow_follow_symlinks && (sb.st_mode&S_IFMT) == S_IFLNK) return ECONF_ERROR_FILE_IS_SYM_LINK; if (file_owner_set && sb.st_uid != file_owner) return ECONF_WRONG_OWNER; if (file_group_set && sb.st_gid != file_group) return ECONF_WRONG_GROUP; if (file_permissions_set) { struct stat sb_dir; if (!(sb.st_mode&file_perms_file)) return ECONF_WRONG_FILE_PERMISSION; char *cdirc = strdup(file_name); int dir_stat = lstat(dirname(cdirc), &sb_dir); free(cdirc); if ( dir_stat == -1) return ECONF_NOFILE; if (!(sb_dir.st_mode&file_perms_dir)) return ECONF_WRONG_DIR_PERMISSION; } // calling user defined checks if (callback != NULL && !(*callback)(file_name, callback_data)) return ECONF_PARSING_CALLBACK_FAILED; // Get absolute path if not provided char *absolute_path = get_absolute_path(file_name, &t_err); if (absolute_path == NULL) return t_err; if (*comment) (*key_file)->comment = comment[0]; else { (*key_file)->comment = '#'; comment = "#"; } t_err = read_file(*key_file, absolute_path, delim, comment); free (absolute_path); if(t_err) { econf_free(*key_file); *key_file = NULL; return t_err; } return ECONF_SUCCESS; } /* Read the file line by line and parse for comments, keys and values */ econf_err read_file(econf_file *ef, const char *file, const char *delim, const char *comment) { char *current_group = NULL; char *current_comment_before_key = NULL; char *current_comment_after_value = NULL; econf_err retval = ECONF_SUCCESS; uint64_t line = 0; bool has_wsp, has_nonwsp; FILE *kf = fopen(file, "rbe"); if (kf == NULL) return ECONF_NOFILE; check_delim(delim, &has_wsp, &has_nonwsp); ef->path = strdup (file); if (ef->path == NULL) { fclose (kf); return ECONF_NOMEM; } ef->delimiter = *delim; size_t max_size = BUFSIZ; char *buf = malloc(max_size * sizeof(char)); while (getline(&buf, &max_size, kf) != -1) { char *p, *name, *data = NULL; bool quote_seen = false, delim_seen = false; char *org_buf __attribute__ ((__cleanup__(free_buffer))) = strdup(buf); line++; last_scanned_line_nr = line; /* Remove trailing newline character */ size_t n = strlen(buf); if (n && *(buf + n - 1) == '\n') *(buf + n - 1) = '\0'; if (!*buf) continue; /* empty line */ /* ignore space at beginning of the line */ name = buf; while (*name && isspace((unsigned)*name)) name++; /* go through all comment characters and check if one of them could be found */ for (size_t i = 0; i < strlen(comment); i++) { p = strchr(name, comment[i]); if (p) { if (p==name) { /* Comment is defined in the line before the key/value line */ if (current_comment_before_key) { /* appending */ char *content = current_comment_before_key; int ret = asprintf(¤t_comment_before_key, "%s\n%s", content, p+1); if (ret<0) { free(buf); return ECONF_NOMEM; } free(content); } else { current_comment_before_key = strdup(p+1); } *p = '\0'; } else if (ef->python_style == false) { /* not for python config files */ /* Comment is defined after the key/value in the same line */ char *first_quote = strchr(name, '"'); char *last_quote = strrchr(name, '"'); bool delim_found = false; data = name; while (*data && !(isspace((unsigned)*data) || strchr(delim, *data) != NULL)) data++; if (*data && strchr(delim, *data) != NULL) delim_found = false; while (p) { /* going through all comments hits and find the first one */ /* who i not inside of two quotes */ if ( first_quote==NULL || /* no quote */ (first_quote!=last_quote && last_quote<p) || /* comment is in string included */ (first_quote==last_quote && last_quote<p && !delim_found)) /* multiline with one quote */ { if (current_comment_after_value) { /* appending */ char *content = current_comment_after_value; int ret = asprintf(¤t_comment_after_value, "%s\n%s", content, p+1); if(ret<0) { free(buf); return ECONF_NOMEM; } free(content); } else { current_comment_after_value = strdup(p+1); } *p = '\0'; } else { p++; } /* find next comment flag */ for (size_t k = 0; k < strlen(comment); k++) { p = strchr(p, comment[k]); if (p) break; } } } } } if (!*buf) continue; /* result is empty line */ /* check for groups */ if (name[0] == '[') { name++; /* remove "[" */ p = name + strlen(name) -1; while (isspace (*p)) p--; if (*p != ']') { if (strchr(name,']') == NULL) retval = ECONF_MISSING_BRACKET; else retval = ECONF_TEXT_AFTER_SECTION; goto out; } *p = '\0'; /* remove "]" */ if(strlen(name) <= 0) { retval = ECONF_EMPTY_SECTION_NAME; goto out; } current_group = setGroupList(ef, name); continue; } if (delim == NULL || strlen(delim) == 0 || strcmp(delim, "\n") == 0) { /* No delimiter is defined. Key without a value will be stored. */ retval = store(ef, current_group, name, data, line, current_comment_before_key, current_comment_after_value, false, /* no quote */ false /* new entry */); free(current_comment_before_key); current_comment_before_key = NULL; free(current_comment_after_value); current_comment_after_value = NULL; continue; } /* Valid delimiters are defined */ /* go to the end of the name */ data = name; while (*data && !(isspace((unsigned)*data) || strchr(delim, *data) != NULL)) data++; if (data > name && *data) { if (has_wsp && has_nonwsp) { /* * delim contains both whitespace and non-whitespace characters. * In this case delim_seen has the special meaning "non-whitespace * delim seen". See comment below. */ delim_seen = !isspace((unsigned)*data) && strchr(delim, *data) != NULL; } else { delim_seen = strchr(delim, *data) != NULL; } *data++ = '\0'; } if (!has_wsp || !has_nonwsp) { /* Multiline entries make no sense if the delimiters are * whitespaces AND none whitespaces. */ /* Checking and adding multiline entries which are * not defined by a beginning quote in the line before. */ bool found_delim = false; if (ef->python_style == false || !isspace(*org_buf)) { /* It is not a typical python style with indentation */ /* So, delimiter has to be regarded */ found_delim = delim_seen; if (!found_delim) { /* searching the rest of the string for delimiters */ char *c = data; while (*c && !(strchr(delim, *c) != NULL)) c++; if (*c) found_delim = true; } } if (!found_delim && /* Entry has already been found */ ef->length > 0 && /* The Entry must be the next line. Otherwise it is a new one */ ef->file_entry[ef->length-1].line_number+1 == line) { if (ef->python_style == false) { /* not for python config files */ /* removing comments */ for (size_t i = 0; i < strlen(comment); i++) { char *pt = strchr(org_buf, comment[i]); if (pt) *pt = '\0'; } } /* removing \n at the end of the line */ if (strlen(org_buf) > 0 && org_buf[strlen(org_buf)-1] == '\n' ) org_buf[strlen(org_buf)-1] = 0; retval = store(ef, current_group, name, org_buf, line, current_comment_before_key, current_comment_after_value, false, /* Quotes does not matter in the following lines */ true /* appending entry */); free(current_comment_before_key); current_comment_before_key = NULL; free(current_comment_after_value); current_comment_after_value = NULL; if (retval) goto out; continue; } } /* Go on. It is not a multiline entry */ if (!*name || data == name) continue; if (*data == '\0') /* No separator -> return NULL pointer, there is no value, not even an empty key */ data = NULL; else { /* go to the beginning of the value */ while (*data && isspace((unsigned)*data)) data++; if (!has_wsp && !delim_seen) { /* * If delim consists only of non-whitespace characters, * require at least one delimiter, and skip more whitespace * after it. */ if (!*data || strchr(delim, *data) == NULL) { retval = ECONF_MISSING_DELIMITER; goto out; } data++; while (*data && isspace((unsigned)*data)) data++; } else if (has_wsp && has_nonwsp && !delim_seen && *data && strchr(delim, *data) != NULL) { /* * If delim contains both whitespace and non-whitespace characters, * use any combination of one non-whitespace delimiter and * many whitespace delimiters as separator, but not multiple * non-whitespace delimiters. Example with delim = " =": * key value -> "value" * key=value -> "value" * key = value -> "value" * key= value -> "value" * key == value -> "= value" * key==value -> "=value" */ data++; while (*data && isspace((unsigned)*data)) data++; } if (*data == '"') { quote_seen = true; data++; } /* remove space at the end of the value */ p = data + strlen(data); if (p > data) p--; while (p > data && (isspace((unsigned)*p))) p--; /* Strip double quotes only if both leading and trailing quotes exist. */ if (p >= data && quote_seen) { if (*p == '"') p--; else data--; } if (*p != '\0' && *(p + 1) != '\0') *(p + 1) = '\0'; } retval = store(ef, current_group, name, data, line, current_comment_before_key, current_comment_after_value, quote_seen, false /* new entry */); free(current_comment_before_key); current_comment_before_key = NULL; free(current_comment_after_value); current_comment_after_value = NULL; if (retval) goto out; } out: free(buf); fclose (kf); if (current_comment_before_key) free(current_comment_before_key); if (current_comment_after_value) free(current_comment_after_value); if(ef->join_same_entries == true) { join_same_entries(ef); } if (retval != ECONF_SUCCESS && retval != ECONF_NOFILE) { free(last_scanned_filename); last_scanned_filename = strdup(file); if (last_scanned_filename == NULL) { return ECONF_NOMEM; } } return retval; } void last_scanned_file(char **filename, uint64_t *line_nr) { *line_nr = last_scanned_line_nr; *filename = last_scanned_filename; last_scanned_filename = NULL; /* Freeing is the responsilble of econf_errLocation now */ }