aboutsummaryrefslogtreecommitdiff
path: root/libbb/parse_config.c
diff options
context:
space:
mode:
Diffstat (limited to 'libbb/parse_config.c')
-rw-r--r--libbb/parse_config.c52
1 files changed, 43 insertions, 9 deletions
diff --git a/libbb/parse_config.c b/libbb/parse_config.c
index 4b0236028..769ae5103 100644
--- a/libbb/parse_config.c
+++ b/libbb/parse_config.c
@@ -104,6 +104,44 @@ void FAST_FUNC config_close(parser_t *parser)
104 } 104 }
105} 105}
106 106
107/* This function reads an entire line from a text file, up to a newline
108 * or NUL byte, exclusive. It returns a malloc'ed char*.
109 * *lineno is incremented for each line.
110 * Trailing '\' is recognized as line continuation.
111 * Returns NULL if EOF/error.
112 */
113static char* get_line_with_continuation(FILE *file, int *lineno)
114{
115 int ch;
116 unsigned idx = 0;
117 char *linebuf = NULL;
118
119 while ((ch = getc(file)) != EOF) {
120 /* grow the line buffer as necessary */
121 if (!(idx & 0xff))
122 linebuf = xrealloc(linebuf, idx + 0x101);
123 if (ch == '\n')
124 ch = '\0';
125 linebuf[idx] = (char) ch;
126 if (ch == '\0') {
127 (*lineno)++;
128 if (idx == 0 || linebuf[idx-1] != '\\')
129 break;
130 idx--; /* go back to '/' */
131 continue;
132 }
133 idx++;
134 }
135 if (ch == EOF) {
136 /* handle corner case when the file is not ended with '\n' */
137 (*lineno)++;
138 if (linebuf)
139 linebuf[idx] = '\0';
140 }
141 return linebuf;
142}
143
144
107/* 145/*
1080. If parser is NULL return 0. 1460. If parser is NULL return 0.
1091. Read a line from config file. If nothing to read then return 0. 1471. Read a line from config file. If nothing to read then return 0.
@@ -132,28 +170,24 @@ int FAST_FUNC config_read(parser_t *parser, char **tokens, unsigned flags, const
132{ 170{
133 char *line; 171 char *line;
134 int ntokens, mintokens; 172 int ntokens, mintokens;
135 int t, len; 173 int t;
174
175 if (!parser)
176 return 0;
136 177
137 ntokens = (uint8_t)flags; 178 ntokens = (uint8_t)flags;
138 mintokens = (uint8_t)(flags >> 8); 179 mintokens = (uint8_t)(flags >> 8);
139 180
140 if (parser == NULL)
141 return 0;
142
143again: 181again:
144 memset(tokens, 0, sizeof(tokens[0]) * ntokens); 182 memset(tokens, 0, sizeof(tokens[0]) * ntokens);
145 config_free_data(parser); 183 config_free_data(parser);
146 184
147 /* Read one line (handling continuations with backslash) */ 185 /* Read one line (handling continuations with backslash) */
148 line = bb_get_chunk_with_continuation(parser->fp, &len, &parser->lineno); 186 line = get_line_with_continuation(parser->fp, &parser->lineno);
149 if (line == NULL) 187 if (line == NULL)
150 return 0; 188 return 0;
151 parser->line = line; 189 parser->line = line;
152 190
153 /* Strip trailing line-feed if any */
154 if (len && line[len-1] == '\n')
155 line[len-1] = '\0';
156
157 /* Skip token in the start of line? */ 191 /* Skip token in the start of line? */
158 if (flags & PARSE_TRIM) 192 if (flags & PARSE_TRIM)
159 line += strspn(line, delims + 1); 193 line += strspn(line, delims + 1);