Andrew Jeffery | 4fe996c | 2018-02-27 12:16:48 +1030 | [diff] [blame] | 1 | // SPDX-License-Identifier: Apache-2.0 |
| 2 | // Copyright (C) 2018 IBM Corp. |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 3 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 4 | #define _GNU_SOURCE |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 5 | #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 Neuling | 899ebac | 2017-01-14 11:20:26 -0600 | [diff] [blame] | 17 | #include <signal.h> |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 18 | #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 Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 23 | #include <sys/signalfd.h> |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 24 | #include <time.h> |
| 25 | #include <unistd.h> |
Andrew Jeffery | 78210b9 | 2017-01-13 13:06:09 +1030 | [diff] [blame] | 26 | #include <inttypes.h> |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 27 | #include <systemd/sd-bus.h> |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 28 | |
Suraj Jitindar Singh | 8d65bb4 | 2017-05-01 16:05:17 +1000 | [diff] [blame] | 29 | #include "config.h" |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 30 | #include "mbox.h" |
| 31 | #include "common.h" |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 32 | #include "dbus.h" |
Andrew Jeffery | 55f4d6f | 2018-08-06 12:26:44 +0930 | [diff] [blame] | 33 | #include "control_dbus.h" |
Andrew Jeffery | eebc6bd | 2018-08-08 10:38:19 +0930 | [diff] [blame] | 34 | #include "flash.h" |
Andrew Jeffery | cd18611 | 2018-08-08 10:47:55 +0930 | [diff] [blame] | 35 | #include "lpc.h" |
Andrew Jeffery | 457a6e5 | 2018-08-08 11:21:08 +0930 | [diff] [blame] | 36 | #include "transport_mbox.h" |
Andrew Jeffery | f593b1b | 2018-08-08 11:01:04 +0930 | [diff] [blame] | 37 | #include "windows.h" |
Andrew Jeffery | 53c21aa | 2018-03-26 11:56:16 +1030 | [diff] [blame] | 38 | #include "vpnor/mboxd_pnor_partition_table.h" |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 39 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 40 | #define USAGE \ |
| 41 | "\nUsage: %s [-V | --version] [-h | --help] [-v[v] | --verbose] [-s | --syslog]\n" \ |
Suraj Jitindar Singh | c29172e | 2017-04-12 14:26:47 +1000 | [diff] [blame] | 42 | "\t\t[-n | --window-num <num>]\n" \ |
| 43 | "\t\t[-w | --window-size <size>M]\n" \ |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 44 | "\t\t-f | --flash <size>[K|M]\n\n" \ |
| 45 | "\t-v | --verbose\t\tBe [more] verbose\n" \ |
| 46 | "\t-s | --syslog\t\tLog output to syslog (pointless without -v)\n" \ |
| 47 | "\t-n | --window-num\tThe number of windows\n" \ |
Suraj Jitindar Singh | c29172e | 2017-04-12 14:26:47 +1000 | [diff] [blame] | 48 | "\t\t\t\t(default: fill the reserved memory region)\n" \ |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 49 | "\t-w | --window-size\tThe window size (power of 2) in MB\n" \ |
Suraj Jitindar Singh | c29172e | 2017-04-12 14:26:47 +1000 | [diff] [blame] | 50 | "\t\t\t\t(default: 1MB)\n" \ |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 51 | "\t-f | --flash\t\tSize of flash in [K|M] bytes\n\n" |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 52 | |
Andrew Jeffery | ef9e62d | 2018-08-08 15:48:27 +0930 | [diff] [blame] | 53 | static int dbus_init(struct mbox_context *context) |
| 54 | { |
| 55 | int rc; |
| 56 | |
| 57 | rc = sd_bus_default_system(&context->bus); |
| 58 | if (rc < 0) { |
| 59 | MSG_ERR("Failed to connect to the system bus: %s\n", |
| 60 | strerror(-rc)); |
| 61 | return rc; |
| 62 | } |
| 63 | |
| 64 | rc = control_legacy_init(context); |
| 65 | if (rc < 0) { |
| 66 | MSG_ERR("Failed to initialise legacy DBus interface: %s\n", |
| 67 | strerror(-rc)); |
| 68 | return rc; |
| 69 | } |
| 70 | |
| 71 | rc = control_dbus_init(context); |
| 72 | if (rc < 0) { |
| 73 | MSG_ERR("Failed to initialise DBus control interface: %s\n", |
| 74 | strerror(-rc)); |
| 75 | return rc; |
| 76 | } |
| 77 | |
| 78 | rc = sd_bus_request_name(context->bus, MBOX_DBUS_NAME, |
| 79 | SD_BUS_NAME_ALLOW_REPLACEMENT | |
| 80 | SD_BUS_NAME_REPLACE_EXISTING); |
| 81 | if (rc < 0) { |
| 82 | MSG_ERR("Failed to request name on the bus: %s\n", |
| 83 | strerror(-rc)); |
| 84 | return rc; |
| 85 | } |
| 86 | |
| 87 | rc = sd_bus_get_fd(context->bus); |
| 88 | if (rc < 0) { |
| 89 | MSG_ERR("Failed to get bus fd: %s\n", strerror(-rc)); |
| 90 | return rc; |
| 91 | } |
| 92 | |
| 93 | context->fds[DBUS_FD].fd = rc; |
| 94 | |
| 95 | return 0; |
| 96 | } |
| 97 | |
| 98 | static void dbus_free(struct mbox_context *context) |
| 99 | { |
| 100 | control_dbus_free(context); |
| 101 | control_legacy_free(context); |
| 102 | sd_bus_unref(context->bus); |
| 103 | } |
Andrew Jeffery | 55f4d6f | 2018-08-06 12:26:44 +0930 | [diff] [blame] | 104 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 105 | static int poll_loop(struct mbox_context *context) |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 106 | { |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 107 | int rc = 0, i; |
Cyril Bur | 4623367 | 2017-01-16 13:33:26 +1100 | [diff] [blame] | 108 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 109 | /* Set POLLIN on polling file descriptors */ |
| 110 | for (i = 0; i < POLL_FDS; i++) { |
| 111 | context->fds[i].events = POLLIN; |
Cyril Bur | 4623367 | 2017-01-16 13:33:26 +1100 | [diff] [blame] | 112 | } |
| 113 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 114 | while (1) { |
| 115 | rc = poll(context->fds, POLL_FDS, -1); |
| 116 | |
| 117 | if (rc < 0) { /* Error */ |
| 118 | MSG_ERR("Error from poll(): %s\n", strerror(errno)); |
| 119 | break; /* This should mean we clean up nicely */ |
| 120 | } |
| 121 | |
| 122 | /* Event on Polled File Descriptor - Handle It */ |
| 123 | if (context->fds[SIG_FD].revents & POLLIN) { /* Signal */ |
| 124 | struct signalfd_siginfo info = { 0 }; |
| 125 | |
| 126 | rc = read(context->fds[SIG_FD].fd, (void *) &info, |
| 127 | sizeof(info)); |
| 128 | if (rc != sizeof(info)) { |
| 129 | MSG_ERR("Error reading signal event: %s\n", |
| 130 | strerror(errno)); |
| 131 | } |
| 132 | |
Suraj Jitindar Singh | 2851959 | 2017-04-27 14:48:58 +1000 | [diff] [blame] | 133 | MSG_DBG("Received signal: %d\n", info.ssi_signo); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 134 | switch (info.ssi_signo) { |
| 135 | case SIGINT: |
| 136 | case SIGTERM: |
Suraj Jitindar Singh | 2851959 | 2017-04-27 14:48:58 +1000 | [diff] [blame] | 137 | MSG_INFO("Caught Signal - Exiting...\n"); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 138 | context->terminate = true; |
| 139 | break; |
| 140 | case SIGHUP: |
| 141 | /* Host didn't request reset -> Notify it */ |
Andrew Jeffery | d6a7426 | 2018-08-08 17:25:01 +0930 | [diff] [blame] | 142 | windows_reset_all(context, SET_BMC_EVENT); |
Andrew Jeffery | 17971e4 | 2018-08-08 16:36:10 +0930 | [diff] [blame] | 143 | rc = lpc_reset(context); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 144 | if (rc < 0) { |
| 145 | MSG_ERR("WARNING: Failed to point the " |
| 146 | "LPC bus back to flash on " |
| 147 | "SIGHUP\nIf the host requires " |
| 148 | "this expect problems...\n"); |
| 149 | } |
| 150 | break; |
| 151 | default: |
| 152 | MSG_ERR("Unhandled Signal: %d\n", |
| 153 | info.ssi_signo); |
| 154 | break; |
| 155 | } |
| 156 | } |
| 157 | if (context->fds[DBUS_FD].revents & POLLIN) { /* DBUS */ |
Suraj Jitindar Singh | 2851959 | 2017-04-27 14:48:58 +1000 | [diff] [blame] | 158 | while ((rc = sd_bus_process(context->bus, NULL)) > 0) { |
| 159 | MSG_DBG("DBUS Event\n"); |
| 160 | } |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 161 | if (rc < 0) { |
| 162 | MSG_ERR("Error handling DBUS event: %s\n", |
| 163 | strerror(-rc)); |
| 164 | } |
| 165 | } |
| 166 | if (context->terminate) { |
| 167 | break; /* This should mean we clean up nicely */ |
| 168 | } |
| 169 | if (context->fds[MBOX_FD].revents & POLLIN) { /* MBOX */ |
Suraj Jitindar Singh | 2851959 | 2017-04-27 14:48:58 +1000 | [diff] [blame] | 170 | MSG_DBG("MBOX Event\n"); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 171 | rc = dispatch_mbox(context); |
| 172 | if (rc < 0) { |
| 173 | MSG_ERR("Error handling MBOX event\n"); |
| 174 | } |
| 175 | } |
| 176 | } |
| 177 | |
Deepak Kodihalli | 017e45c | 2017-07-12 01:06:30 -0500 | [diff] [blame] | 178 | /* Best to reset windows and the lpc mapping for safety */ |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 179 | /* Host didn't request reset -> Notify it */ |
Andrew Jeffery | d6a7426 | 2018-08-08 17:25:01 +0930 | [diff] [blame] | 180 | windows_reset_all(context, SET_BMC_EVENT); |
Andrew Jeffery | 17971e4 | 2018-08-08 16:36:10 +0930 | [diff] [blame] | 181 | rc = lpc_reset(context); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 182 | /* Not much we can do if this fails */ |
| 183 | if (rc < 0) { |
| 184 | MSG_ERR("WARNING: Failed to point the LPC bus back to flash\n" |
| 185 | "If the host requires this expect problems...\n"); |
| 186 | } |
| 187 | |
| 188 | return rc; |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 189 | } |
| 190 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 191 | static int init_signals(struct mbox_context *context, sigset_t *set) |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 192 | { |
| 193 | int rc; |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 194 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 195 | /* Block SIGHUPs, SIGTERMs and SIGINTs */ |
| 196 | sigemptyset(set); |
| 197 | sigaddset(set, SIGHUP); |
| 198 | sigaddset(set, SIGINT); |
| 199 | sigaddset(set, SIGTERM); |
| 200 | rc = sigprocmask(SIG_BLOCK, set, NULL); |
| 201 | if (rc < 0) { |
| 202 | MSG_ERR("Failed to set SIG_BLOCK mask %s\n", strerror(errno)); |
| 203 | return rc; |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 204 | } |
| 205 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 206 | /* Get Signal File Descriptor */ |
| 207 | rc = signalfd(-1, set, SFD_NONBLOCK); |
| 208 | if (rc < 0) { |
| 209 | MSG_ERR("Failed to get signalfd %s\n", strerror(errno)); |
| 210 | return rc; |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 211 | } |
| 212 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 213 | context->fds[SIG_FD].fd = rc; |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 214 | return 0; |
| 215 | } |
| 216 | |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 217 | static void usage(const char *name) |
| 218 | { |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 219 | printf(USAGE, name); |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 220 | } |
| 221 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 222 | static bool parse_cmdline(int argc, char **argv, |
| 223 | struct mbox_context *context) |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 224 | { |
Cyril Bur | e8f2de1 | 2017-01-17 16:56:02 +1100 | [diff] [blame] | 225 | char *endptr; |
Suraj Jitindar Singh | c29172e | 2017-04-12 14:26:47 +1000 | [diff] [blame] | 226 | int opt; |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 227 | |
| 228 | static const struct option long_options[] = { |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 229 | { "flash", required_argument, 0, 'f' }, |
| 230 | { "window-size", optional_argument, 0, 'w' }, |
| 231 | { "window-num", optional_argument, 0, 'n' }, |
| 232 | { "verbose", no_argument, 0, 'v' }, |
| 233 | { "syslog", no_argument, 0, 's' }, |
| 234 | { "version", no_argument, 0, 'V' }, |
| 235 | { "help", no_argument, 0, 'h' }, |
| 236 | { 0, 0, 0, 0 } |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 237 | }; |
| 238 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 239 | verbosity = MBOX_LOG_NONE; |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 240 | mbox_vlog = &mbox_log_console; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 241 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 242 | context->current = NULL; /* No current window */ |
| 243 | |
| 244 | while ((opt = getopt_long(argc, argv, "f:w::n::vsVh", long_options, NULL)) |
| 245 | != -1) { |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 246 | switch (opt) { |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 247 | case 0: |
| 248 | break; |
| 249 | case 'f': |
| 250 | context->flash_size = strtol(optarg, &endptr, 10); |
| 251 | if (optarg == endptr) { |
| 252 | fprintf(stderr, "Unparseable flash size\n"); |
| 253 | return false; |
| 254 | } |
| 255 | switch (*endptr) { |
| 256 | case '\0': |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 257 | break; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 258 | case 'M': |
| 259 | context->flash_size <<= 10; |
| 260 | case 'K': |
| 261 | context->flash_size <<= 10; |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 262 | break; |
| 263 | default: |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 264 | fprintf(stderr, "Unknown units '%c'\n", |
| 265 | *endptr); |
| 266 | return false; |
| 267 | } |
| 268 | break; |
| 269 | case 'n': |
| 270 | context->windows.num = strtol(argv[optind], &endptr, |
| 271 | 10); |
| 272 | if (optarg == endptr || *endptr != '\0') { |
| 273 | fprintf(stderr, "Unparseable window num\n"); |
| 274 | return false; |
| 275 | } |
| 276 | break; |
| 277 | case 'w': |
| 278 | context->windows.default_size = strtol(argv[optind], |
| 279 | &endptr, 10); |
| 280 | context->windows.default_size <<= 20; /* Given in MB */ |
| 281 | if (optarg == endptr || (*endptr != '\0' && |
| 282 | *endptr != 'M')) { |
| 283 | fprintf(stderr, "Unparseable window size\n"); |
| 284 | return false; |
| 285 | } |
Suraj Jitindar Singh | 0aff80c | 2017-04-12 14:37:24 +1000 | [diff] [blame] | 286 | if (!is_power_of_2(context->windows.default_size)) { |
| 287 | fprintf(stderr, "Window size not power of 2\n"); |
| 288 | return false; |
| 289 | } |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 290 | break; |
| 291 | case 'v': |
| 292 | verbosity++; |
| 293 | break; |
| 294 | case 's': |
| 295 | /* Avoid a double openlog() */ |
| 296 | if (mbox_vlog != &vsyslog) { |
| 297 | openlog(PREFIX, LOG_ODELAY, LOG_DAEMON); |
| 298 | mbox_vlog = &vsyslog; |
| 299 | } |
| 300 | break; |
| 301 | case 'V': |
Suraj Jitindar Singh | 8d65bb4 | 2017-05-01 16:05:17 +1000 | [diff] [blame] | 302 | printf("%s V%s\n", THIS_NAME, PACKAGE_VERSION); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 303 | exit(0); |
| 304 | case 'h': |
| 305 | return false; /* This will print the usage message */ |
| 306 | default: |
| 307 | return false; |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 308 | } |
| 309 | } |
| 310 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 311 | if (!context->flash_size) { |
Cyril Bur | e8f2de1 | 2017-01-17 16:56:02 +1100 | [diff] [blame] | 312 | fprintf(stderr, "Must specify a non-zero flash size\n"); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 313 | return false; |
Cyril Bur | e8f2de1 | 2017-01-17 16:56:02 +1100 | [diff] [blame] | 314 | } |
| 315 | |
Suraj Jitindar Singh | 2851959 | 2017-04-27 14:48:58 +1000 | [diff] [blame] | 316 | MSG_INFO("Flash size: 0x%.8x\n", context->flash_size); |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 317 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 318 | if (verbosity) { |
Suraj Jitindar Singh | 2851959 | 2017-04-27 14:48:58 +1000 | [diff] [blame] | 319 | MSG_INFO("%s logging\n", verbosity == MBOX_LOG_DEBUG ? "Debug" : |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 320 | "Verbose"); |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 321 | } |
| 322 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 323 | return true; |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 324 | } |
| 325 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 326 | int main(int argc, char **argv) |
| 327 | { |
| 328 | struct mbox_context *context; |
| 329 | char *name = argv[0]; |
| 330 | sigset_t set; |
| 331 | int rc, i; |
| 332 | |
| 333 | context = calloc(1, sizeof(*context)); |
| 334 | if (!context) { |
| 335 | fprintf(stderr, "Memory allocation failed\n"); |
| 336 | exit(1); |
| 337 | } |
| 338 | |
| 339 | if (!parse_cmdline(argc, argv, context)) { |
| 340 | usage(name); |
| 341 | free(context); |
| 342 | exit(0); |
| 343 | } |
| 344 | |
| 345 | for (i = 0; i < TOTAL_FDS; i++) { |
| 346 | context->fds[i].fd = -1; |
| 347 | } |
| 348 | |
Suraj Jitindar Singh | 2851959 | 2017-04-27 14:48:58 +1000 | [diff] [blame] | 349 | MSG_INFO("Starting Daemon\n"); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 350 | |
| 351 | rc = init_signals(context, &set); |
| 352 | if (rc) { |
| 353 | goto finish; |
| 354 | } |
| 355 | |
Andrew Jeffery | 1e531af | 2018-08-07 13:32:57 +0930 | [diff] [blame] | 356 | rc = protocol_init(context); |
| 357 | if (rc) { |
| 358 | goto finish; |
| 359 | } |
| 360 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 361 | rc = init_mbox_dev(context); |
| 362 | if (rc) { |
| 363 | goto finish; |
| 364 | } |
| 365 | |
Andrew Jeffery | cb9b210 | 2018-08-08 16:31:07 +0930 | [diff] [blame] | 366 | rc = lpc_dev_init(context); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 367 | if (rc) { |
| 368 | goto finish; |
| 369 | } |
| 370 | |
| 371 | /* We've found the reserved memory region -> we can assign to windows */ |
Andrew Jeffery | c1a67fa | 2018-08-08 17:07:38 +0930 | [diff] [blame] | 372 | rc = windows_init(context); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 373 | if (rc) { |
| 374 | goto finish; |
| 375 | } |
| 376 | |
Andrew Jeffery | d6b09bc | 2018-08-08 16:47:54 +0930 | [diff] [blame] | 377 | rc = flash_dev_init(context); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 378 | if (rc) { |
| 379 | goto finish; |
| 380 | } |
| 381 | |
Andrew Jeffery | ef9e62d | 2018-08-08 15:48:27 +0930 | [diff] [blame] | 382 | rc = dbus_init(context); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 383 | if (rc) { |
| 384 | goto finish; |
| 385 | } |
| 386 | |
Deepak Kodihalli | 017e45c | 2017-07-12 01:06:30 -0500 | [diff] [blame] | 387 | #ifdef VIRTUAL_PNOR_ENABLED |
Deepak Kodihalli | 64ec3e4 | 2017-07-17 06:15:16 -0500 | [diff] [blame] | 388 | init_vpnor(context); |
Deepak Kodihalli | 017e45c | 2017-07-12 01:06:30 -0500 | [diff] [blame] | 389 | #endif |
| 390 | |
| 391 | /* Set the LPC bus mapping */ |
Andrew Jeffery | 17971e4 | 2018-08-08 16:36:10 +0930 | [diff] [blame] | 392 | rc = lpc_reset(context); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 393 | if (rc) { |
Andrew Jeffery | 8fe809e | 2018-05-17 09:54:32 +0930 | [diff] [blame] | 394 | MSG_ERR("LPC configuration failed, RESET required: %d\n", rc); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 395 | } |
| 396 | |
| 397 | rc = set_bmc_events(context, BMC_EVENT_DAEMON_READY, SET_BMC_EVENT); |
| 398 | if (rc) { |
| 399 | goto finish; |
| 400 | } |
| 401 | |
Suraj Jitindar Singh | 2851959 | 2017-04-27 14:48:58 +1000 | [diff] [blame] | 402 | MSG_INFO("Entering Polling Loop\n"); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 403 | rc = poll_loop(context); |
| 404 | |
Suraj Jitindar Singh | 2851959 | 2017-04-27 14:48:58 +1000 | [diff] [blame] | 405 | MSG_INFO("Exiting Poll Loop: %d\n", rc); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 406 | |
| 407 | finish: |
Suraj Jitindar Singh | 2851959 | 2017-04-27 14:48:58 +1000 | [diff] [blame] | 408 | MSG_INFO("Daemon Exiting...\n"); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 409 | clr_bmc_events(context, BMC_EVENT_DAEMON_READY, SET_BMC_EVENT); |
| 410 | |
Andrew Jeffery | 1e531af | 2018-08-07 13:32:57 +0930 | [diff] [blame] | 411 | #ifdef VIRTUAL_PNOR_ENABLED |
| 412 | destroy_vpnor(context); |
| 413 | #endif |
Andrew Jeffery | ef9e62d | 2018-08-08 15:48:27 +0930 | [diff] [blame] | 414 | dbus_free(context); |
Andrew Jeffery | dec6ca6 | 2018-08-08 16:49:43 +0930 | [diff] [blame] | 415 | flash_dev_free(context); |
Andrew Jeffery | 2e2df28 | 2018-08-08 16:32:22 +0930 | [diff] [blame] | 416 | lpc_dev_free(context); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 417 | free_mbox_dev(context); |
Andrew Jeffery | f5f5142 | 2018-08-08 17:08:33 +0930 | [diff] [blame] | 418 | windows_free(context); |
Andrew Jeffery | 1e531af | 2018-08-07 13:32:57 +0930 | [diff] [blame] | 419 | protocol_free(context); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 420 | free(context); |
| 421 | |
| 422 | return rc; |
| 423 | } |