blob: 86a67f39d8aba642deb7717aedaa5de22b64e4dd [file] [log] [blame]
Andrew Jeffery4fe996c2018-02-27 12:16:48 +10301// SPDX-License-Identifier: Apache-2.0
2// Copyright (C) 2018 IBM Corp.
Cyril Burc85e34d2016-11-15 11:50:41 +11003
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +11004#define _GNU_SOURCE
Cyril Burc85e34d2016-11-15 11:50:41 +11005#include <assert.h>
6#include <errno.h>
7#include <fcntl.h>
8#include <getopt.h>
9#include <limits.h>
10#include <poll.h>
11#include <stdbool.h>
12#include <stdint.h>
13#include <stdio.h>
14#include <stdlib.h>
15#include <string.h>
16#include <syslog.h>
Michael Neuling899ebac2017-01-14 11:20:26 -060017#include <signal.h>
Cyril Burc85e34d2016-11-15 11:50:41 +110018#include <sys/ioctl.h>
19#include <sys/mman.h>
20#include <sys/stat.h>
21#include <sys/timerfd.h>
22#include <sys/types.h>
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +110023#include <sys/signalfd.h>
Cyril Burc85e34d2016-11-15 11:50:41 +110024#include <time.h>
25#include <unistd.h>
Andrew Jeffery78210b92017-01-13 13:06:09 +103026#include <inttypes.h>
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +110027#include <systemd/sd-bus.h>
Cyril Burc85e34d2016-11-15 11:50:41 +110028
Suraj Jitindar Singh8d65bb42017-05-01 16:05:17 +100029#include "config.h"
Andrew Jeffery26558db2018-08-10 00:22:38 +093030#include "mboxd.h"
Cyril Burc85e34d2016-11-15 11:50:41 +110031#include "common.h"
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +110032#include "dbus.h"
Andrew Jeffery55f4d6f2018-08-06 12:26:44 +093033#include "control_dbus.h"
Andrew Jefferyeebc6bd2018-08-08 10:38:19 +093034#include "flash.h"
Andrew Jefferycd186112018-08-08 10:47:55 +093035#include "lpc.h"
Andrew Jeffery457a6e52018-08-08 11:21:08 +093036#include "transport_mbox.h"
Andrew Jeffery23140be2018-09-05 14:15:07 +093037#include "transport_dbus.h"
Andrew Jefferyf593b1b2018-08-08 11:01:04 +093038#include "windows.h"
Andrew Jeffery53c21aa2018-03-26 11:56:16 +103039#include "vpnor/mboxd_pnor_partition_table.h"
Cyril Burc85e34d2016-11-15 11:50:41 +110040
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +110041#define USAGE \
42"\nUsage: %s [-V | --version] [-h | --help] [-v[v] | --verbose] [-s | --syslog]\n" \
Suraj Jitindar Singhc29172e2017-04-12 14:26:47 +100043"\t\t[-n | --window-num <num>]\n" \
44"\t\t[-w | --window-size <size>M]\n" \
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +110045"\t\t-f | --flash <size>[K|M]\n\n" \
46"\t-v | --verbose\t\tBe [more] verbose\n" \
47"\t-s | --syslog\t\tLog output to syslog (pointless without -v)\n" \
48"\t-n | --window-num\tThe number of windows\n" \
Suraj Jitindar Singhc29172e2017-04-12 14:26:47 +100049"\t\t\t\t(default: fill the reserved memory region)\n" \
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +110050"\t-w | --window-size\tThe window size (power of 2) in MB\n" \
Suraj Jitindar Singhc29172e2017-04-12 14:26:47 +100051"\t\t\t\t(default: 1MB)\n" \
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +110052"\t-f | --flash\t\tSize of flash in [K|M] bytes\n\n"
Cyril Burc85e34d2016-11-15 11:50:41 +110053
Andrew Jefferyef9e62d2018-08-08 15:48:27 +093054static int dbus_init(struct mbox_context *context)
55{
56 int rc;
57
58 rc = sd_bus_default_system(&context->bus);
59 if (rc < 0) {
60 MSG_ERR("Failed to connect to the system bus: %s\n",
61 strerror(-rc));
62 return rc;
63 }
64
65 rc = control_legacy_init(context);
66 if (rc < 0) {
67 MSG_ERR("Failed to initialise legacy DBus interface: %s\n",
68 strerror(-rc));
69 return rc;
70 }
71
72 rc = control_dbus_init(context);
73 if (rc < 0) {
74 MSG_ERR("Failed to initialise DBus control interface: %s\n",
75 strerror(-rc));
76 return rc;
77 }
78
Andrew Jeffery23140be2018-09-05 14:15:07 +093079 rc = transport_dbus_init(context);
80 if (rc < 0) {
81 MSG_ERR("Failed to initialise DBus protocol interface: %s\n",
82 strerror(-rc));
83 return rc;
84 }
85
Andrew Jefferyef9e62d2018-08-08 15:48:27 +093086 rc = sd_bus_request_name(context->bus, MBOX_DBUS_NAME,
87 SD_BUS_NAME_ALLOW_REPLACEMENT |
88 SD_BUS_NAME_REPLACE_EXISTING);
89 if (rc < 0) {
Andrew Jeffery23140be2018-09-05 14:15:07 +093090 MSG_ERR("Failed to request DBus name: %s\n", strerror(-rc));
Andrew Jefferyef9e62d2018-08-08 15:48:27 +093091 return rc;
92 }
93
94 rc = sd_bus_get_fd(context->bus);
95 if (rc < 0) {
96 MSG_ERR("Failed to get bus fd: %s\n", strerror(-rc));
97 return rc;
98 }
99
100 context->fds[DBUS_FD].fd = rc;
101
102 return 0;
103}
104
105static void dbus_free(struct mbox_context *context)
106{
Andrew Jeffery23140be2018-09-05 14:15:07 +0930107 transport_dbus_free(context);
Andrew Jefferyef9e62d2018-08-08 15:48:27 +0930108 control_dbus_free(context);
109 control_legacy_free(context);
110 sd_bus_unref(context->bus);
111}
Andrew Jeffery55f4d6f2018-08-06 12:26:44 +0930112
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100113static int poll_loop(struct mbox_context *context)
Cyril Burc85e34d2016-11-15 11:50:41 +1100114{
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100115 int rc = 0, i;
Cyril Bur46233672017-01-16 13:33:26 +1100116
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100117 /* Set POLLIN on polling file descriptors */
118 for (i = 0; i < POLL_FDS; i++) {
119 context->fds[i].events = POLLIN;
Cyril Bur46233672017-01-16 13:33:26 +1100120 }
121
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100122 while (1) {
123 rc = poll(context->fds, POLL_FDS, -1);
124
125 if (rc < 0) { /* Error */
126 MSG_ERR("Error from poll(): %s\n", strerror(errno));
127 break; /* This should mean we clean up nicely */
128 }
129
130 /* Event on Polled File Descriptor - Handle It */
131 if (context->fds[SIG_FD].revents & POLLIN) { /* Signal */
132 struct signalfd_siginfo info = { 0 };
133
134 rc = read(context->fds[SIG_FD].fd, (void *) &info,
135 sizeof(info));
136 if (rc != sizeof(info)) {
137 MSG_ERR("Error reading signal event: %s\n",
138 strerror(errno));
139 }
140
Suraj Jitindar Singh28519592017-04-27 14:48:58 +1000141 MSG_DBG("Received signal: %d\n", info.ssi_signo);
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100142 switch (info.ssi_signo) {
143 case SIGINT:
144 case SIGTERM:
Suraj Jitindar Singh28519592017-04-27 14:48:58 +1000145 MSG_INFO("Caught Signal - Exiting...\n");
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100146 context->terminate = true;
147 break;
148 case SIGHUP:
149 /* Host didn't request reset -> Notify it */
Andrew Jeffery2ebfd202018-08-20 11:46:28 +0930150 if (windows_reset_all(context)) {
151 rc = protocol_events_set(context,
152 BMC_EVENT_WINDOW_RESET);
153 if (rc < 0) {
154 MSG_ERR("Failed to notify host of reset, expect host-side corruption\n");
155 break;
156 }
157 }
Andrew Jeffery17971e42018-08-08 16:36:10 +0930158 rc = lpc_reset(context);
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100159 if (rc < 0) {
160 MSG_ERR("WARNING: Failed to point the "
161 "LPC bus back to flash on "
162 "SIGHUP\nIf the host requires "
163 "this expect problems...\n");
164 }
165 break;
166 default:
167 MSG_ERR("Unhandled Signal: %d\n",
168 info.ssi_signo);
169 break;
170 }
171 }
172 if (context->fds[DBUS_FD].revents & POLLIN) { /* DBUS */
Suraj Jitindar Singh28519592017-04-27 14:48:58 +1000173 while ((rc = sd_bus_process(context->bus, NULL)) > 0) {
174 MSG_DBG("DBUS Event\n");
175 }
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100176 if (rc < 0) {
177 MSG_ERR("Error handling DBUS event: %s\n",
178 strerror(-rc));
179 }
180 }
181 if (context->terminate) {
182 break; /* This should mean we clean up nicely */
183 }
184 if (context->fds[MBOX_FD].revents & POLLIN) { /* MBOX */
Suraj Jitindar Singh28519592017-04-27 14:48:58 +1000185 MSG_DBG("MBOX Event\n");
Andrew Jefferyd86141b2018-08-09 14:58:53 +0930186 rc = transport_mbox_dispatch(context);
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100187 if (rc < 0) {
188 MSG_ERR("Error handling MBOX event\n");
189 }
190 }
191 }
192
Deepak Kodihalli017e45c2017-07-12 01:06:30 -0500193 /* Best to reset windows and the lpc mapping for safety */
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100194 /* Host didn't request reset -> Notify it */
Andrew Jeffery2ebfd202018-08-20 11:46:28 +0930195 if (windows_reset_all(context)) {
196 rc = protocol_events_set(context, BMC_EVENT_WINDOW_RESET);
197 if (rc < 0) {
198 MSG_ERR("Failed to notify host of reset, expect host-side corruption\n");
199 return rc;
200 }
201 }
Andrew Jeffery17971e42018-08-08 16:36:10 +0930202 rc = lpc_reset(context);
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100203 /* Not much we can do if this fails */
204 if (rc < 0) {
205 MSG_ERR("WARNING: Failed to point the LPC bus back to flash\n"
206 "If the host requires this expect problems...\n");
207 }
208
209 return rc;
Cyril Burc85e34d2016-11-15 11:50:41 +1100210}
211
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100212static int init_signals(struct mbox_context *context, sigset_t *set)
Cyril Burc85e34d2016-11-15 11:50:41 +1100213{
214 int rc;
Cyril Burc85e34d2016-11-15 11:50:41 +1100215
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100216 /* Block SIGHUPs, SIGTERMs and SIGINTs */
217 sigemptyset(set);
218 sigaddset(set, SIGHUP);
219 sigaddset(set, SIGINT);
220 sigaddset(set, SIGTERM);
221 rc = sigprocmask(SIG_BLOCK, set, NULL);
222 if (rc < 0) {
223 MSG_ERR("Failed to set SIG_BLOCK mask %s\n", strerror(errno));
224 return rc;
Cyril Burc85e34d2016-11-15 11:50:41 +1100225 }
226
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100227 /* Get Signal File Descriptor */
228 rc = signalfd(-1, set, SFD_NONBLOCK);
229 if (rc < 0) {
230 MSG_ERR("Failed to get signalfd %s\n", strerror(errno));
231 return rc;
Cyril Burc85e34d2016-11-15 11:50:41 +1100232 }
233
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100234 context->fds[SIG_FD].fd = rc;
Cyril Burc85e34d2016-11-15 11:50:41 +1100235 return 0;
236}
237
Cyril Burc85e34d2016-11-15 11:50:41 +1100238static void usage(const char *name)
239{
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100240 printf(USAGE, name);
Cyril Burc85e34d2016-11-15 11:50:41 +1100241}
242
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100243static bool parse_cmdline(int argc, char **argv,
244 struct mbox_context *context)
Cyril Burc85e34d2016-11-15 11:50:41 +1100245{
Cyril Bure8f2de12017-01-17 16:56:02 +1100246 char *endptr;
Suraj Jitindar Singhc29172e2017-04-12 14:26:47 +1000247 int opt;
Cyril Burc85e34d2016-11-15 11:50:41 +1100248
249 static const struct option long_options[] = {
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100250 { "flash", required_argument, 0, 'f' },
251 { "window-size", optional_argument, 0, 'w' },
252 { "window-num", optional_argument, 0, 'n' },
253 { "verbose", no_argument, 0, 'v' },
254 { "syslog", no_argument, 0, 's' },
255 { "version", no_argument, 0, 'V' },
256 { "help", no_argument, 0, 'h' },
257 { 0, 0, 0, 0 }
Cyril Burc85e34d2016-11-15 11:50:41 +1100258 };
259
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100260 verbosity = MBOX_LOG_NONE;
Cyril Burc85e34d2016-11-15 11:50:41 +1100261 mbox_vlog = &mbox_log_console;
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100262
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100263 context->current = NULL; /* No current window */
264
265 while ((opt = getopt_long(argc, argv, "f:w::n::vsVh", long_options, NULL))
266 != -1) {
Cyril Burc85e34d2016-11-15 11:50:41 +1100267 switch (opt) {
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100268 case 0:
269 break;
270 case 'f':
271 context->flash_size = strtol(optarg, &endptr, 10);
272 if (optarg == endptr) {
273 fprintf(stderr, "Unparseable flash size\n");
274 return false;
275 }
276 switch (*endptr) {
277 case '\0':
Cyril Burc85e34d2016-11-15 11:50:41 +1100278 break;
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100279 case 'M':
280 context->flash_size <<= 10;
281 case 'K':
282 context->flash_size <<= 10;
Cyril Burc85e34d2016-11-15 11:50:41 +1100283 break;
284 default:
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100285 fprintf(stderr, "Unknown units '%c'\n",
286 *endptr);
287 return false;
288 }
289 break;
290 case 'n':
291 context->windows.num = strtol(argv[optind], &endptr,
292 10);
293 if (optarg == endptr || *endptr != '\0') {
294 fprintf(stderr, "Unparseable window num\n");
295 return false;
296 }
297 break;
298 case 'w':
299 context->windows.default_size = strtol(argv[optind],
300 &endptr, 10);
301 context->windows.default_size <<= 20; /* Given in MB */
302 if (optarg == endptr || (*endptr != '\0' &&
303 *endptr != 'M')) {
304 fprintf(stderr, "Unparseable window size\n");
305 return false;
306 }
Suraj Jitindar Singh0aff80c2017-04-12 14:37:24 +1000307 if (!is_power_of_2(context->windows.default_size)) {
308 fprintf(stderr, "Window size not power of 2\n");
309 return false;
310 }
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100311 break;
312 case 'v':
313 verbosity++;
314 break;
315 case 's':
316 /* Avoid a double openlog() */
317 if (mbox_vlog != &vsyslog) {
318 openlog(PREFIX, LOG_ODELAY, LOG_DAEMON);
319 mbox_vlog = &vsyslog;
320 }
321 break;
322 case 'V':
Suraj Jitindar Singh8d65bb42017-05-01 16:05:17 +1000323 printf("%s V%s\n", THIS_NAME, PACKAGE_VERSION);
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100324 exit(0);
325 case 'h':
326 return false; /* This will print the usage message */
327 default:
328 return false;
Cyril Burc85e34d2016-11-15 11:50:41 +1100329 }
330 }
331
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100332 if (!context->flash_size) {
Cyril Bure8f2de12017-01-17 16:56:02 +1100333 fprintf(stderr, "Must specify a non-zero flash size\n");
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100334 return false;
Cyril Bure8f2de12017-01-17 16:56:02 +1100335 }
336
Suraj Jitindar Singh28519592017-04-27 14:48:58 +1000337 MSG_INFO("Flash size: 0x%.8x\n", context->flash_size);
Cyril Burc85e34d2016-11-15 11:50:41 +1100338
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100339 if (verbosity) {
Suraj Jitindar Singh28519592017-04-27 14:48:58 +1000340 MSG_INFO("%s logging\n", verbosity == MBOX_LOG_DEBUG ? "Debug" :
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100341 "Verbose");
Cyril Burc85e34d2016-11-15 11:50:41 +1100342 }
343
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100344 return true;
Cyril Burc85e34d2016-11-15 11:50:41 +1100345}
346
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100347int main(int argc, char **argv)
348{
349 struct mbox_context *context;
350 char *name = argv[0];
351 sigset_t set;
352 int rc, i;
353
354 context = calloc(1, sizeof(*context));
355 if (!context) {
356 fprintf(stderr, "Memory allocation failed\n");
357 exit(1);
358 }
359
360 if (!parse_cmdline(argc, argv, context)) {
361 usage(name);
362 free(context);
363 exit(0);
364 }
365
366 for (i = 0; i < TOTAL_FDS; i++) {
367 context->fds[i].fd = -1;
368 }
369
Suraj Jitindar Singh28519592017-04-27 14:48:58 +1000370 MSG_INFO("Starting Daemon\n");
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100371
372 rc = init_signals(context, &set);
373 if (rc) {
374 goto finish;
375 }
376
Andrew Jeffery1e531af2018-08-07 13:32:57 +0930377 rc = protocol_init(context);
378 if (rc) {
379 goto finish;
380 }
381
Andrew Jefferyb2466ee2018-08-09 15:03:27 +0930382 rc = transport_mbox_init(context);
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100383 if (rc) {
384 goto finish;
385 }
386
Andrew Jefferycb9b2102018-08-08 16:31:07 +0930387 rc = lpc_dev_init(context);
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100388 if (rc) {
389 goto finish;
390 }
391
392 /* We've found the reserved memory region -> we can assign to windows */
Andrew Jefferyc1a67fa2018-08-08 17:07:38 +0930393 rc = windows_init(context);
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100394 if (rc) {
395 goto finish;
396 }
397
Andrew Jefferyd6b09bc2018-08-08 16:47:54 +0930398 rc = flash_dev_init(context);
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100399 if (rc) {
400 goto finish;
401 }
402
Andrew Jefferyef9e62d2018-08-08 15:48:27 +0930403 rc = dbus_init(context);
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100404 if (rc) {
405 goto finish;
406 }
407
Deepak Kodihalli017e45c2017-07-12 01:06:30 -0500408#ifdef VIRTUAL_PNOR_ENABLED
Deepak Kodihalli64ec3e42017-07-17 06:15:16 -0500409 init_vpnor(context);
Deepak Kodihalli017e45c2017-07-12 01:06:30 -0500410#endif
411
412 /* Set the LPC bus mapping */
Andrew Jeffery17971e42018-08-08 16:36:10 +0930413 rc = lpc_reset(context);
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100414 if (rc) {
Andrew Jeffery8fe809e2018-05-17 09:54:32 +0930415 MSG_ERR("LPC configuration failed, RESET required: %d\n", rc);
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100416 }
417
Andrew Jeffery2ebfd202018-08-20 11:46:28 +0930418 rc = protocol_events_set(context, BMC_EVENT_DAEMON_READY);
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100419 if (rc) {
420 goto finish;
421 }
422
Suraj Jitindar Singh28519592017-04-27 14:48:58 +1000423 MSG_INFO("Entering Polling Loop\n");
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100424 rc = poll_loop(context);
425
Suraj Jitindar Singh28519592017-04-27 14:48:58 +1000426 MSG_INFO("Exiting Poll Loop: %d\n", rc);
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100427
428finish:
Suraj Jitindar Singh28519592017-04-27 14:48:58 +1000429 MSG_INFO("Daemon Exiting...\n");
Andrew Jeffery2ebfd202018-08-20 11:46:28 +0930430 protocol_events_clear(context, BMC_EVENT_DAEMON_READY);
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100431
Andrew Jeffery1e531af2018-08-07 13:32:57 +0930432#ifdef VIRTUAL_PNOR_ENABLED
433 destroy_vpnor(context);
434#endif
Andrew Jefferyef9e62d2018-08-08 15:48:27 +0930435 dbus_free(context);
Andrew Jefferydec6ca62018-08-08 16:49:43 +0930436 flash_dev_free(context);
Andrew Jeffery2e2df282018-08-08 16:32:22 +0930437 lpc_dev_free(context);
Andrew Jeffery55260ce2018-08-09 15:05:59 +0930438 transport_mbox_free(context);
Andrew Jefferyf5f51422018-08-08 17:08:33 +0930439 windows_free(context);
Andrew Jeffery1e531af2018-08-07 13:32:57 +0930440 protocol_free(context);
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +1100441 free(context);
442
443 return rc;
444}