blob: ed7f052a10943b0cd3ad9a4ee4a4b4f931908315 [file] [log] [blame]
Jeremy Kerr9326d772016-03-17 17:15:02 +08001/**
2 * Copyright © 2016 IBM Corporation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Jeremy Kerrd66195c2016-03-16 17:24:51 +080016
Kun Yi6424cc32018-06-14 14:09:28 -070017#include <ctype.h>
Jeremy Kerrd66195c2016-03-16 17:24:51 +080018#include <err.h>
Andrew Jefferyd30d7572023-04-18 14:51:51 +093019#include <errno.h>
Jeremy Kerrd66195c2016-03-16 17:24:51 +080020#include <fcntl.h>
Kun Yi6424cc32018-06-14 14:09:28 -070021#include <limits.h>
Jeremy Kerrd66195c2016-03-16 17:24:51 +080022#include <stdint.h>
23#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
26#include <strings.h>
Benjamin Fairfcbdea92018-06-04 14:19:25 -070027#include <termios.h> /* for speed_t */
Jeremy Kerrd66195c2016-03-16 17:24:51 +080028#include <unistd.h>
29
30#include <sys/mman.h>
31#include <sys/stat.h>
Alexander Hansen1e04f442024-06-12 16:35:58 +020032
33#include <iniparser/iniparser.h>
34
35#include "config.h"
36#include "config-internal.h"
Alexander Hansene3f1aa12024-07-10 11:57:17 +020037#include "util.h"
Jeremy Kerrd66195c2016-03-16 17:24:51 +080038
Jeremy Kerre440a402016-03-17 16:34:14 +080039static const char *config_default_filename = SYSCONFDIR "/obmc-console.conf";
Jeremy Kerrd66195c2016-03-16 17:24:51 +080040
Jeremy Kerrd66195c2016-03-16 17:24:51 +080041const char *config_get_value(struct config *config, const char *name)
42{
Alexander Hansen1e04f442024-06-12 16:35:58 +020043 char buf[CONFIG_MAX_KEY_LENGTH];
Andrew Jefferyd659cfc2024-07-10 09:42:50 +093044 int rc;
Jeremy Kerrd66195c2016-03-16 17:24:51 +080045
Andrew Jefferyd659cfc2024-07-10 09:42:50 +093046 if (!config->dict) {
47 return NULL;
48 }
49
50 rc = snprintf(buf, CONFIG_MAX_KEY_LENGTH, ":%s", name);
Alexander Hansen1e04f442024-06-12 16:35:58 +020051 if (rc < 0) {
Andrew Jefferyba2af962023-05-02 15:02:56 +093052 return NULL;
53 }
54
Alexander Hansen1e04f442024-06-12 16:35:58 +020055 if ((size_t)rc >= sizeof(buf)) {
56 return NULL;
Andrew Jeffery2834c5b2023-04-19 12:47:09 +093057 }
Jeremy Kerrd66195c2016-03-16 17:24:51 +080058
Alexander Hansen1e04f442024-06-12 16:35:58 +020059 const char *value = iniparser_getstring(config->dict, buf, NULL);
Alexander Hansen1e04f442024-06-12 16:35:58 +020060 if (value && strlen(value) == 0) {
61 return NULL;
Jeremy Kerrd66195c2016-03-16 17:24:51 +080062 }
Jeremy Kerrd66195c2016-03-16 17:24:51 +080063
Alexander Hansen1e04f442024-06-12 16:35:58 +020064 return value;
Jeremy Kerr6c8d7812016-03-17 15:05:45 +080065}
66
67struct config *config_init(const char *filename)
68{
69 struct config *config;
Andrew Jefferyd659cfc2024-07-10 09:42:50 +093070 dictionary *dict;
Jeremy Kerr6c8d7812016-03-17 15:05:45 +080071
Andrew Jeffery2834c5b2023-04-19 12:47:09 +093072 if (!filename) {
Jeremy Kerr6c8d7812016-03-17 15:05:45 +080073 filename = config_default_filename;
Andrew Jeffery2834c5b2023-04-19 12:47:09 +093074 }
Jeremy Kerr6c8d7812016-03-17 15:05:45 +080075
Andrew Jefferyd659cfc2024-07-10 09:42:50 +093076 if (access(filename, R_OK) == 0) {
77 dict = iniparser_load(filename);
78 if (!dict) {
79 /* Assume this is a parse failure */
80 return NULL;
81 }
82 } else {
83 /* If a config file was explicitly specified, then lack of access is always an error */
84 if (filename != config_default_filename) {
85 warn("Failed to open configuration file at '%s'",
86 filename);
87 return NULL;
88 }
Jeremy Kerrd66195c2016-03-16 17:24:51 +080089
Andrew Jefferyd659cfc2024-07-10 09:42:50 +093090 /* For the default config path, any result other than not-present is an error */
91 if (errno != ENOENT && errno != ENOTDIR) {
92 warn("Failed to open configuration file at '%s'",
93 filename);
94 return NULL;
95 }
Alexander Hansen1e04f442024-06-12 16:35:58 +020096
Andrew Jefferyd659cfc2024-07-10 09:42:50 +093097 /* Config not present at default path, pretend its empty */
98 dict = NULL;
Alexander Hansen1e04f442024-06-12 16:35:58 +020099 }
100
101 config = malloc(sizeof(*config));
Andrew Jefferyd659cfc2024-07-10 09:42:50 +0930102 if (!config) {
103 iniparser_freedict(dict);
104 return NULL;
Alexander Hansen1e04f442024-06-12 16:35:58 +0200105 }
106
Andrew Jefferyd659cfc2024-07-10 09:42:50 +0930107 config->dict = dict;
108
Jeremy Kerrd66195c2016-03-16 17:24:51 +0800109 return config;
Jeremy Kerrd66195c2016-03-16 17:24:51 +0800110}
111
112void config_fini(struct config *config)
113{
Andrew Jefferyba2af962023-05-02 15:02:56 +0930114 if (!config) {
115 return;
116 }
117
Alexander Hansen1e04f442024-06-12 16:35:58 +0200118 if (config->dict) {
119 iniparser_freedict(config->dict);
Jeremy Kerrd66195c2016-03-16 17:24:51 +0800120 }
121
122 free(config);
123}
Jeremy Kerr6c8d7812016-03-17 15:05:45 +0800124
Benjamin Fairfcbdea92018-06-04 14:19:25 -0700125struct terminal_speed_name {
Andrew Jefferya72711a2023-04-18 18:19:41 +0930126 speed_t speed;
127 uint32_t baud;
128 const char *name;
Benjamin Fairfcbdea92018-06-04 14:19:25 -0700129};
130
Andrew Jefferya72711a2023-04-18 18:19:41 +0930131#define TERM_SPEED(x) \
132 { \
133 B##x, x, #x \
134 }
Cheng C Yangf9c8f6c2019-03-04 18:39:52 +0800135
Andrew Jefferya72711a2023-04-18 18:19:41 +0930136// clang-format off
Cheng C Yangf9c8f6c2019-03-04 18:39:52 +0800137static const struct terminal_speed_name terminal_speeds[] = {
138 TERM_SPEED(50),
139 TERM_SPEED(75),
140 TERM_SPEED(110),
141 TERM_SPEED(134),
142 TERM_SPEED(150),
143 TERM_SPEED(200),
144 TERM_SPEED(300),
145 TERM_SPEED(600),
146 TERM_SPEED(1200),
147 TERM_SPEED(1800),
148 TERM_SPEED(2400),
149 TERM_SPEED(4800),
150 TERM_SPEED(9600),
151 TERM_SPEED(19200),
152 TERM_SPEED(38400),
153 TERM_SPEED(57600),
154 TERM_SPEED(115200),
155 TERM_SPEED(230400),
156 TERM_SPEED(460800),
157 TERM_SPEED(500000),
158 TERM_SPEED(576000),
159 TERM_SPEED(921600),
160 TERM_SPEED(1000000),
161 TERM_SPEED(1152000),
162 TERM_SPEED(1500000),
163 TERM_SPEED(2000000),
164 TERM_SPEED(2500000),
165 TERM_SPEED(3000000),
166 TERM_SPEED(3500000),
167 TERM_SPEED(4000000),
168};
Andrew Jefferya72711a2023-04-18 18:19:41 +0930169// clang-format on
Cheng C Yangf9c8f6c2019-03-04 18:39:52 +0800170
171int config_parse_baud(speed_t *speed, const char *baud_string)
172{
Benjamin Fairfcbdea92018-06-04 14:19:25 -0700173 size_t i;
174
Cheng C Yangf9c8f6c2019-03-04 18:39:52 +0800175 for (i = 0; i < ARRAY_SIZE(terminal_speeds); i++) {
Benjamin Fairfcbdea92018-06-04 14:19:25 -0700176 if (strcmp(baud_string, terminal_speeds[i].name) == 0) {
177 *speed = terminal_speeds[i].speed;
178 return 0;
179 }
180 }
181 return -1;
182}
183
Cheng C Yangf9c8f6c2019-03-04 18:39:52 +0800184uint32_t parse_baud_to_int(speed_t speed)
185{
186 size_t i;
187
188 for (i = 0; i < ARRAY_SIZE(terminal_speeds); i++) {
189 if (terminal_speeds[i].speed == speed) {
190 return terminal_speeds[i].baud;
191 }
192 }
193 return 0;
194}
195
196speed_t parse_int_to_baud(uint32_t baud)
197{
198 size_t i;
199
200 for (i = 0; i < ARRAY_SIZE(terminal_speeds); i++) {
201 if (terminal_speeds[i].baud == baud) {
202 return terminal_speeds[i].speed;
203 }
204 }
205 return 0;
206}
207
Medicine Yehd6e8b642024-03-18 01:49:17 -0700208int config_parse_bytesize(const char *size_str, size_t *size)
Kun Yi6424cc32018-06-14 14:09:28 -0700209{
210 struct size_suffix_shift {
211 /* Left shiftwidth corresponding to the suffix. */
Andrew Jefferya72711a2023-04-18 18:19:41 +0930212 size_t shiftwidth;
213 int unit;
Kun Yi6424cc32018-06-14 14:09:28 -0700214 };
215
216 const struct size_suffix_shift suffixes[] = {
217 { 10, 'k' },
218 { 20, 'M' },
219 { 30, 'G' },
220 };
Andrew Jefferya72711a2023-04-18 18:19:41 +0930221 const size_t num_suffixes =
222 sizeof(suffixes) / sizeof(struct size_suffix_shift);
Kun Yi6424cc32018-06-14 14:09:28 -0700223 size_t logsize;
224 char *suffix;
225 size_t i;
226
Andrew Jeffery2834c5b2023-04-19 12:47:09 +0930227 if (!size_str) {
Kun Yi6424cc32018-06-14 14:09:28 -0700228 return -1;
Andrew Jeffery2834c5b2023-04-19 12:47:09 +0930229 }
Kun Yi6424cc32018-06-14 14:09:28 -0700230
231 logsize = strtoul(size_str, &suffix, 0);
Andrew Jeffery2834c5b2023-04-19 12:47:09 +0930232 if (logsize == 0 || logsize >= UINT32_MAX || suffix == size_str) {
Kun Yi6424cc32018-06-14 14:09:28 -0700233 return -1;
Andrew Jeffery2834c5b2023-04-19 12:47:09 +0930234 }
Kun Yi6424cc32018-06-14 14:09:28 -0700235
236 /* Ignore spaces between number and suffix */
Andrew Jeffery2834c5b2023-04-19 12:47:09 +0930237 while (*suffix && isspace(*suffix)) {
Kun Yi6424cc32018-06-14 14:09:28 -0700238 suffix++;
Andrew Jeffery2834c5b2023-04-19 12:47:09 +0930239 }
Kun Yi6424cc32018-06-14 14:09:28 -0700240
241 for (i = 0; i < num_suffixes; i++) {
242 if (*suffix == suffixes[i].unit) {
243 /*
244 * If logsize overflows, probably something was wrong.
245 * Return instead of clamping to an arbitrary value.
246 */
Andrew Jeffery2834c5b2023-04-19 12:47:09 +0930247 if (logsize > (UINT32_MAX >> suffixes[i].shiftwidth)) {
Kun Yi6424cc32018-06-14 14:09:28 -0700248 return -1;
Andrew Jeffery2834c5b2023-04-19 12:47:09 +0930249 }
Kun Yi6424cc32018-06-14 14:09:28 -0700250
251 logsize <<= suffixes[i].shiftwidth;
252 suffix++;
253 break;
254 }
255 }
256
257 /* Allow suffix like 'kB' */
Andrew Jeffery2834c5b2023-04-19 12:47:09 +0930258 while (*suffix && (tolower(*suffix) == 'b' || isspace(*suffix))) {
Kun Yi6424cc32018-06-14 14:09:28 -0700259 suffix++;
Andrew Jeffery2834c5b2023-04-19 12:47:09 +0930260 }
Kun Yi6424cc32018-06-14 14:09:28 -0700261
262 if (*suffix) {
263 warn("Invalid suffix!");
264 return -1;
265 }
266
267 *size = logsize;
268 return 0;
269}
270
Ninad Palsule5ba20b52023-05-12 14:03:15 -0500271/* Default console id if not specified on command line or in config */
272#define DEFAULT_CONSOLE_ID "default"
273
274/* Get the console id */
275const char *config_resolve_console_id(struct config *config, const char *id_arg)
276{
277 const char *configured;
278
279 if (id_arg) {
280 return id_arg;
281 }
282
283 if ((configured = config_get_value(config, "console-id"))) {
284 return configured;
285 }
286
Ninad Palsule5ba20b52023-05-12 14:03:15 -0500287 return DEFAULT_CONSOLE_ID;
288}