aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sway/config.c40
1 files changed, 26 insertions, 14 deletions
diff --git a/sway/config.c b/sway/config.c
index 636f5f57..2c051146 100644
--- a/sway/config.c
+++ b/sway/config.c
@@ -560,16 +560,21 @@ static char *expand_line(const char *block, const char *line, bool add_brace) {
bool read_config(FILE *file, struct sway_config *config) {
bool reading_main_config = false;
- char *this_config = NULL, *config_pos;
- long config_size = 0;
+ char *this_config = NULL;
+ size_t config_size = 0;
if (config->current_config == NULL) {
reading_main_config = true;
- fseek(file, 0, SEEK_END);
- config_size = ftell(file);
+ int ret_seek = fseek(file, 0, SEEK_END);
+ long ret_tell = ftell(file);
+ if (ret_seek == -1 || ret_tell == -1) {
+ wlr_log(WLR_ERROR, "Unable to get size of config file");
+ return false;
+ }
+ config_size = ret_tell;
rewind(file);
- config_pos = this_config = malloc(config_size + 1);
+ config->current_config = this_config = calloc(1, config_size + 1);
if (this_config == NULL) {
wlr_log(WLR_ERROR, "Unable to allocate buffer for config contents");
return false;
@@ -580,6 +585,7 @@ bool read_config(FILE *file, struct sway_config *config) {
int line_number = 0;
char *line;
list_t *stack = create_list();
+ size_t read = 0;
while (!feof(file)) {
char *block = stack->length ? stack->items[0] : NULL;
line = read_line(file);
@@ -590,10 +596,21 @@ bool read_config(FILE *file, struct sway_config *config) {
wlr_log(WLR_DEBUG, "Read line %d: %s", line_number, line);
if (reading_main_config) {
- size_t l = strlen(line);
- memcpy(config_pos, line, l); // don't copy terminating character
- config_pos += l;
- *config_pos++ = '\n';
+ size_t length = strlen(line);
+
+ if (read + length > config_size) {
+ wlr_log(WLR_ERROR, "Config file changed during reading");
+ list_foreach(stack, free);
+ list_free(stack);
+ free(line);
+ return false;
+ }
+
+ strcpy(this_config + read, line);
+ if (line_number != 1) {
+ this_config[read - 1] = '\n';
+ }
+ read += length + 1;
}
line = strip_whitespace(line);
@@ -616,7 +633,6 @@ bool read_config(FILE *file, struct sway_config *config) {
list_foreach(stack, free);
list_free(stack);
free(line);
- free(this_config);
return false;
}
wlr_log(WLR_DEBUG, "Expanded line: %s", expanded);
@@ -677,10 +693,6 @@ bool read_config(FILE *file, struct sway_config *config) {
list_foreach(stack, free);
list_free(stack);
- if (reading_main_config) {
- this_config[config_size - 1] = '\0';
- config->current_config = this_config;
- }
return success;
}