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" |
Andrew Jeffery | 26558db | 2018-08-10 00:22:38 +0930 | [diff] [blame] | 30 | #include "mboxd.h" |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 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" |
Evan Lojewski | f1e547c | 2019-03-14 14:34:33 +1030 | [diff] [blame] | 34 | #include "backend.h" |
Andrew Jeffery | cd18611 | 2018-08-08 10:47:55 +0930 | [diff] [blame] | 35 | #include "lpc.h" |
Andrew Jeffery | 23140be | 2018-09-05 14:15:07 +0930 | [diff] [blame] | 36 | #include "transport_dbus.h" |
Andrew Jeffery | f593b1b | 2018-08-08 11:01:04 +0930 | [diff] [blame] | 37 | #include "windows.h" |
Andrew Jeffery | f4bc335 | 2019-03-18 12:09:48 +1030 | [diff] [blame] | 38 | #include "vpnor/backend.h" |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 39 | |
Evan Lojewski | a042978 | 2019-03-13 15:25:44 +1030 | [diff] [blame] | 40 | const char* USAGE = |
| 41 | "\nUsage: %s [-V | --version] [-h | --help] [-v[v] | --verbose] [-s | --syslog]\n" |
| 42 | "\t\t[-n | --window-num <num>]\n" |
| 43 | "\t\t[-w | --window-size <size>M]\n" |
| 44 | "\t\t-f | --flash <size>[K|M]\n" |
| 45 | #ifdef VIRTUAL_PNOR_ENABLED |
Andrew Jeffery | 5320f6e | 2019-03-15 12:40:41 +1030 | [diff] [blame] | 46 | "\t\t-b | --backend <vpnor|mtd[:PATH]|file:PATH>\n" |
Evan Lojewski | a042978 | 2019-03-13 15:25:44 +1030 | [diff] [blame] | 47 | #else |
Andrew Jeffery | 5320f6e | 2019-03-15 12:40:41 +1030 | [diff] [blame] | 48 | "\t\t-b | --backend <mtd[:PATH]|file:PATH>\n" |
Evan Lojewski | a042978 | 2019-03-13 15:25:44 +1030 | [diff] [blame] | 49 | #endif |
| 50 | "\t-v | --verbose\t\tBe [more] verbose\n" |
| 51 | "\t-s | --syslog\t\tLog output to syslog (pointless without -v)\n" |
| 52 | "\t-n | --window-num\tThe number of windows\n" |
| 53 | "\t\t\t\t(default: fill the reserved memory region)\n" |
| 54 | "\t-w | --window-size\tThe window size (power of 2) in MB\n" |
| 55 | "\t\t\t\t(default: 1MB)\n" |
Stewart Smith | ef0c836 | 2018-11-19 13:49:46 +1100 | [diff] [blame] | 56 | "\t-f | --flash\t\tSize of flash in [K|M] bytes\n\n" |
| 57 | "\t-t | --trace\t\tFile to write trace data to (in blktrace format)\n\n"; |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 58 | |
Andrew Jeffery | fe0c9e8 | 2018-11-01 14:02:17 +1030 | [diff] [blame] | 59 | static int dbus_init(struct mbox_context *context, |
| 60 | const struct transport_ops **ops) |
Andrew Jeffery | ef9e62d | 2018-08-08 15:48:27 +0930 | [diff] [blame] | 61 | { |
| 62 | int rc; |
| 63 | |
| 64 | rc = sd_bus_default_system(&context->bus); |
| 65 | if (rc < 0) { |
| 66 | MSG_ERR("Failed to connect to the system bus: %s\n", |
| 67 | strerror(-rc)); |
| 68 | return rc; |
| 69 | } |
| 70 | |
| 71 | rc = control_legacy_init(context); |
| 72 | if (rc < 0) { |
| 73 | MSG_ERR("Failed to initialise legacy DBus interface: %s\n", |
| 74 | strerror(-rc)); |
| 75 | return rc; |
| 76 | } |
| 77 | |
| 78 | rc = control_dbus_init(context); |
| 79 | if (rc < 0) { |
| 80 | MSG_ERR("Failed to initialise DBus control interface: %s\n", |
| 81 | strerror(-rc)); |
| 82 | return rc; |
| 83 | } |
| 84 | |
Andrew Jeffery | fe0c9e8 | 2018-11-01 14:02:17 +1030 | [diff] [blame] | 85 | rc = transport_dbus_init(context, ops); |
Andrew Jeffery | 23140be | 2018-09-05 14:15:07 +0930 | [diff] [blame] | 86 | if (rc < 0) { |
| 87 | MSG_ERR("Failed to initialise DBus protocol interface: %s\n", |
| 88 | strerror(-rc)); |
| 89 | return rc; |
| 90 | } |
| 91 | |
Andrew Jeffery | ef9e62d | 2018-08-08 15:48:27 +0930 | [diff] [blame] | 92 | rc = sd_bus_request_name(context->bus, MBOX_DBUS_NAME, |
| 93 | SD_BUS_NAME_ALLOW_REPLACEMENT | |
| 94 | SD_BUS_NAME_REPLACE_EXISTING); |
| 95 | if (rc < 0) { |
Andrew Jeffery | 23140be | 2018-09-05 14:15:07 +0930 | [diff] [blame] | 96 | MSG_ERR("Failed to request DBus name: %s\n", strerror(-rc)); |
Andrew Jeffery | ef9e62d | 2018-08-08 15:48:27 +0930 | [diff] [blame] | 97 | return rc; |
| 98 | } |
| 99 | |
| 100 | rc = sd_bus_get_fd(context->bus); |
| 101 | if (rc < 0) { |
| 102 | MSG_ERR("Failed to get bus fd: %s\n", strerror(-rc)); |
| 103 | return rc; |
| 104 | } |
| 105 | |
| 106 | context->fds[DBUS_FD].fd = rc; |
| 107 | |
| 108 | return 0; |
| 109 | } |
| 110 | |
| 111 | static void dbus_free(struct mbox_context *context) |
| 112 | { |
Andrew Jeffery | 23140be | 2018-09-05 14:15:07 +0930 | [diff] [blame] | 113 | transport_dbus_free(context); |
Andrew Jeffery | ef9e62d | 2018-08-08 15:48:27 +0930 | [diff] [blame] | 114 | control_dbus_free(context); |
| 115 | control_legacy_free(context); |
| 116 | sd_bus_unref(context->bus); |
| 117 | } |
Andrew Jeffery | 55f4d6f | 2018-08-06 12:26:44 +0930 | [diff] [blame] | 118 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 119 | static int poll_loop(struct mbox_context *context) |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 120 | { |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 121 | int rc = 0, i; |
Cyril Bur | 4623367 | 2017-01-16 13:33:26 +1100 | [diff] [blame] | 122 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 123 | /* Set POLLIN on polling file descriptors */ |
| 124 | for (i = 0; i < POLL_FDS; i++) { |
| 125 | context->fds[i].events = POLLIN; |
Cyril Bur | 4623367 | 2017-01-16 13:33:26 +1100 | [diff] [blame] | 126 | } |
| 127 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 128 | while (1) { |
| 129 | rc = poll(context->fds, POLL_FDS, -1); |
| 130 | |
| 131 | if (rc < 0) { /* Error */ |
| 132 | MSG_ERR("Error from poll(): %s\n", strerror(errno)); |
| 133 | break; /* This should mean we clean up nicely */ |
| 134 | } |
| 135 | |
| 136 | /* Event on Polled File Descriptor - Handle It */ |
| 137 | if (context->fds[SIG_FD].revents & POLLIN) { /* Signal */ |
| 138 | struct signalfd_siginfo info = { 0 }; |
| 139 | |
| 140 | rc = read(context->fds[SIG_FD].fd, (void *) &info, |
| 141 | sizeof(info)); |
| 142 | if (rc != sizeof(info)) { |
| 143 | MSG_ERR("Error reading signal event: %s\n", |
| 144 | strerror(errno)); |
| 145 | } |
| 146 | |
Suraj Jitindar Singh | 2851959 | 2017-04-27 14:48:58 +1000 | [diff] [blame] | 147 | MSG_DBG("Received signal: %d\n", info.ssi_signo); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 148 | switch (info.ssi_signo) { |
| 149 | case SIGINT: |
| 150 | case SIGTERM: |
Suraj Jitindar Singh | 2851959 | 2017-04-27 14:48:58 +1000 | [diff] [blame] | 151 | MSG_INFO("Caught Signal - Exiting...\n"); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 152 | context->terminate = true; |
| 153 | break; |
| 154 | case SIGHUP: |
Andrew Jeffery | f69760d | 2019-03-14 16:54:13 +1030 | [diff] [blame] | 155 | rc = protocol_reset(context); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 156 | if (rc < 0) { |
Andrew Jeffery | f69760d | 2019-03-14 16:54:13 +1030 | [diff] [blame] | 157 | MSG_ERR("Failed to reset on SIGHUP\n"); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 158 | } |
| 159 | break; |
| 160 | default: |
| 161 | MSG_ERR("Unhandled Signal: %d\n", |
| 162 | info.ssi_signo); |
| 163 | break; |
| 164 | } |
| 165 | } |
| 166 | if (context->fds[DBUS_FD].revents & POLLIN) { /* DBUS */ |
Suraj Jitindar Singh | 2851959 | 2017-04-27 14:48:58 +1000 | [diff] [blame] | 167 | while ((rc = sd_bus_process(context->bus, NULL)) > 0) { |
| 168 | MSG_DBG("DBUS Event\n"); |
| 169 | } |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 170 | if (rc < 0) { |
| 171 | MSG_ERR("Error handling DBUS event: %s\n", |
| 172 | strerror(-rc)); |
| 173 | } |
| 174 | } |
| 175 | if (context->terminate) { |
| 176 | break; /* This should mean we clean up nicely */ |
| 177 | } |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 178 | } |
| 179 | |
Andrew Jeffery | f69760d | 2019-03-14 16:54:13 +1030 | [diff] [blame] | 180 | rc = protocol_reset(context); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 181 | if (rc < 0) { |
Andrew Jeffery | f69760d | 2019-03-14 16:54:13 +1030 | [diff] [blame] | 182 | MSG_ERR("Failed to reset during poll loop cleanup\n"); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 183 | } |
| 184 | |
| 185 | return rc; |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 186 | } |
| 187 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 188 | static int init_signals(struct mbox_context *context, sigset_t *set) |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 189 | { |
| 190 | int rc; |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 191 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 192 | /* Block SIGHUPs, SIGTERMs and SIGINTs */ |
| 193 | sigemptyset(set); |
| 194 | sigaddset(set, SIGHUP); |
| 195 | sigaddset(set, SIGINT); |
| 196 | sigaddset(set, SIGTERM); |
| 197 | rc = sigprocmask(SIG_BLOCK, set, NULL); |
| 198 | if (rc < 0) { |
| 199 | MSG_ERR("Failed to set SIG_BLOCK mask %s\n", strerror(errno)); |
| 200 | return rc; |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 201 | } |
| 202 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 203 | /* Get Signal File Descriptor */ |
| 204 | rc = signalfd(-1, set, SFD_NONBLOCK); |
| 205 | if (rc < 0) { |
| 206 | MSG_ERR("Failed to get signalfd %s\n", strerror(errno)); |
| 207 | return rc; |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 208 | } |
| 209 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 210 | context->fds[SIG_FD].fd = rc; |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 211 | return 0; |
| 212 | } |
| 213 | |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 214 | static void usage(const char *name) |
| 215 | { |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 216 | printf(USAGE, name); |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 217 | } |
| 218 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 219 | static bool parse_cmdline(int argc, char **argv, |
| 220 | struct mbox_context *context) |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 221 | { |
Cyril Bur | e8f2de1 | 2017-01-17 16:56:02 +1100 | [diff] [blame] | 222 | char *endptr; |
Suraj Jitindar Singh | c29172e | 2017-04-12 14:26:47 +1000 | [diff] [blame] | 223 | int opt; |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 224 | |
| 225 | static const struct option long_options[] = { |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 226 | { "flash", required_argument, 0, 'f' }, |
Evan Lojewski | a042978 | 2019-03-13 15:25:44 +1030 | [diff] [blame] | 227 | { "backend", required_argument, 0, 'b' }, |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 228 | { "window-size", optional_argument, 0, 'w' }, |
| 229 | { "window-num", optional_argument, 0, 'n' }, |
| 230 | { "verbose", no_argument, 0, 'v' }, |
| 231 | { "syslog", no_argument, 0, 's' }, |
Stewart Smith | ef0c836 | 2018-11-19 13:49:46 +1100 | [diff] [blame] | 232 | { "trace", optional_argument, 0, 't' }, |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 233 | { "version", no_argument, 0, 'V' }, |
| 234 | { "help", no_argument, 0, 'h' }, |
| 235 | { 0, 0, 0, 0 } |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 236 | }; |
| 237 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 238 | verbosity = MBOX_LOG_NONE; |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 239 | mbox_vlog = &mbox_log_console; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 240 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 241 | context->current = NULL; /* No current window */ |
| 242 | |
Stewart Smith | ef0c836 | 2018-11-19 13:49:46 +1100 | [diff] [blame] | 243 | while ((opt = getopt_long(argc, argv, "f:b:w::n::vst::Vh", long_options, NULL)) |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 244 | != -1) { |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 245 | switch (opt) { |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 246 | case 0: |
| 247 | break; |
| 248 | case 'f': |
Evan Lojewski | f1e547c | 2019-03-14 14:34:33 +1030 | [diff] [blame] | 249 | context->backend.flash_size = strtol(optarg, &endptr, 10); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 250 | if (optarg == endptr) { |
| 251 | fprintf(stderr, "Unparseable flash size\n"); |
| 252 | return false; |
| 253 | } |
| 254 | switch (*endptr) { |
| 255 | case '\0': |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 256 | break; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 257 | case 'M': |
Evan Lojewski | f1e547c | 2019-03-14 14:34:33 +1030 | [diff] [blame] | 258 | context->backend.flash_size <<= 10; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 259 | case 'K': |
Evan Lojewski | f1e547c | 2019-03-14 14:34:33 +1030 | [diff] [blame] | 260 | context->backend.flash_size <<= 10; |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 261 | break; |
| 262 | default: |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 263 | fprintf(stderr, "Unknown units '%c'\n", |
| 264 | *endptr); |
| 265 | return false; |
| 266 | } |
| 267 | break; |
Evan Lojewski | a042978 | 2019-03-13 15:25:44 +1030 | [diff] [blame] | 268 | case 'b': |
Andrew Jeffery | 5320f6e | 2019-03-15 12:40:41 +1030 | [diff] [blame] | 269 | context->source = optarg; |
Evan Lojewski | a042978 | 2019-03-13 15:25:44 +1030 | [diff] [blame] | 270 | break; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 271 | case 'n': |
| 272 | context->windows.num = strtol(argv[optind], &endptr, |
| 273 | 10); |
| 274 | if (optarg == endptr || *endptr != '\0') { |
| 275 | fprintf(stderr, "Unparseable window num\n"); |
| 276 | return false; |
| 277 | } |
| 278 | break; |
| 279 | case 'w': |
| 280 | context->windows.default_size = strtol(argv[optind], |
| 281 | &endptr, 10); |
| 282 | context->windows.default_size <<= 20; /* Given in MB */ |
| 283 | if (optarg == endptr || (*endptr != '\0' && |
| 284 | *endptr != 'M')) { |
| 285 | fprintf(stderr, "Unparseable window size\n"); |
| 286 | return false; |
| 287 | } |
Suraj Jitindar Singh | 0aff80c | 2017-04-12 14:37:24 +1000 | [diff] [blame] | 288 | if (!is_power_of_2(context->windows.default_size)) { |
| 289 | fprintf(stderr, "Window size not power of 2\n"); |
| 290 | return false; |
| 291 | } |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 292 | break; |
| 293 | case 'v': |
| 294 | verbosity++; |
| 295 | break; |
| 296 | case 's': |
| 297 | /* Avoid a double openlog() */ |
| 298 | if (mbox_vlog != &vsyslog) { |
| 299 | openlog(PREFIX, LOG_ODELAY, LOG_DAEMON); |
| 300 | mbox_vlog = &vsyslog; |
| 301 | } |
| 302 | break; |
| 303 | case 'V': |
Suraj Jitindar Singh | 8d65bb4 | 2017-05-01 16:05:17 +1000 | [diff] [blame] | 304 | printf("%s V%s\n", THIS_NAME, PACKAGE_VERSION); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 305 | exit(0); |
Stewart Smith | ef0c836 | 2018-11-19 13:49:46 +1100 | [diff] [blame] | 306 | case 't': |
| 307 | context->blktracefd = open(argv[optind], |
| 308 | O_CREAT|O_TRUNC|O_WRONLY, |
| 309 | 0666); |
| 310 | printf("Recording blktrace output to %s\n", |
| 311 | argv[optind]); |
| 312 | if (context->blktracefd == -1) { |
| 313 | perror("Couldn't open blktrace file for writing"); |
| 314 | exit(2); |
| 315 | } |
| 316 | break; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 317 | case 'h': |
| 318 | return false; /* This will print the usage message */ |
| 319 | default: |
| 320 | return false; |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 321 | } |
| 322 | } |
| 323 | |
Evan Lojewski | f1e547c | 2019-03-14 14:34:33 +1030 | [diff] [blame] | 324 | if (!context->backend.flash_size) { |
Cyril Bur | e8f2de1 | 2017-01-17 16:56:02 +1100 | [diff] [blame] | 325 | fprintf(stderr, "Must specify a non-zero flash size\n"); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 326 | return false; |
Cyril Bur | e8f2de1 | 2017-01-17 16:56:02 +1100 | [diff] [blame] | 327 | } |
| 328 | |
Evan Lojewski | f1e547c | 2019-03-14 14:34:33 +1030 | [diff] [blame] | 329 | MSG_INFO("Flash size: 0x%.8x\n", context->backend.flash_size); |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 330 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 331 | if (verbosity) { |
Suraj Jitindar Singh | 2851959 | 2017-04-27 14:48:58 +1000 | [diff] [blame] | 332 | MSG_INFO("%s logging\n", verbosity == MBOX_LOG_DEBUG ? "Debug" : |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 333 | "Verbose"); |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 334 | } |
| 335 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 336 | return true; |
Cyril Bur | c85e34d | 2016-11-15 11:50:41 +1100 | [diff] [blame] | 337 | } |
| 338 | |
Evan Lojewski | f1e547c | 2019-03-14 14:34:33 +1030 | [diff] [blame] | 339 | static int mboxd_backend_init(struct mbox_context *context) |
| 340 | { |
Andrew Jeffery | 5320f6e | 2019-03-15 12:40:41 +1030 | [diff] [blame] | 341 | const char *delim; |
| 342 | const char *path; |
Evan Lojewski | f1e547c | 2019-03-14 14:34:33 +1030 | [diff] [blame] | 343 | int rc; |
| 344 | |
Andrew Jeffery | 5320f6e | 2019-03-15 12:40:41 +1030 | [diff] [blame] | 345 | if (!context->source) { |
| 346 | struct vpnor_partition_paths paths; |
| 347 | vpnor_default_paths(&paths); |
Evan Lojewski | f1e547c | 2019-03-14 14:34:33 +1030 | [diff] [blame] | 348 | |
Andrew Jeffery | 5320f6e | 2019-03-15 12:40:41 +1030 | [diff] [blame] | 349 | rc = backend_probe_vpnor(&context->backend, &paths); |
| 350 | if(rc < 0) |
| 351 | rc = backend_probe_mtd(&context->backend, NULL); |
| 352 | |
| 353 | return rc; |
Evan Lojewski | f1e547c | 2019-03-14 14:34:33 +1030 | [diff] [blame] | 354 | } |
| 355 | |
Andrew Jeffery | 5320f6e | 2019-03-15 12:40:41 +1030 | [diff] [blame] | 356 | delim = strchr(context->source, ':'); |
| 357 | path = delim ? delim + 1 : NULL; |
| 358 | |
| 359 | if (!strncmp(context->source, "vpnor", strlen("vpnor"))) { |
| 360 | struct vpnor_partition_paths paths; |
| 361 | |
| 362 | if (path) { |
| 363 | rc = -EINVAL; |
| 364 | } else { |
| 365 | vpnor_default_paths(&paths); |
| 366 | rc = backend_probe_vpnor(&context->backend, &paths); |
| 367 | } |
| 368 | } else if (!strncmp(context->source, "mtd", strlen("mtd"))) { |
| 369 | rc = backend_probe_mtd(&context->backend, path); |
| 370 | } else if (!strncmp(context->source, "file", strlen("file"))) { |
| 371 | rc = backend_probe_file(&context->backend, path); |
| 372 | } else { |
| 373 | rc = -EINVAL; |
| 374 | } |
| 375 | |
| 376 | if (rc < 0) |
| 377 | MSG_ERR("Invalid backend argument: %s\n", context->source); |
| 378 | |
Evan Lojewski | f1e547c | 2019-03-14 14:34:33 +1030 | [diff] [blame] | 379 | return rc; |
| 380 | } |
| 381 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 382 | int main(int argc, char **argv) |
| 383 | { |
Joel Stanley | dfbeae2 | 2020-03-12 16:11:10 +1030 | [diff] [blame] | 384 | const struct transport_ops *dbus_ops; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 385 | struct mbox_context *context; |
| 386 | char *name = argv[0]; |
| 387 | sigset_t set; |
| 388 | int rc, i; |
| 389 | |
| 390 | context = calloc(1, sizeof(*context)); |
| 391 | if (!context) { |
| 392 | fprintf(stderr, "Memory allocation failed\n"); |
| 393 | exit(1); |
| 394 | } |
| 395 | |
| 396 | if (!parse_cmdline(argc, argv, context)) { |
| 397 | usage(name); |
| 398 | free(context); |
| 399 | exit(0); |
| 400 | } |
| 401 | |
| 402 | for (i = 0; i < TOTAL_FDS; i++) { |
| 403 | context->fds[i].fd = -1; |
| 404 | } |
| 405 | |
Suraj Jitindar Singh | 2851959 | 2017-04-27 14:48:58 +1000 | [diff] [blame] | 406 | MSG_INFO("Starting Daemon\n"); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 407 | |
| 408 | rc = init_signals(context, &set); |
| 409 | if (rc) { |
Andrew Jeffery | 4ef0c13 | 2019-03-19 15:14:13 +1030 | [diff] [blame] | 410 | goto cleanup_context; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 411 | } |
| 412 | |
Evan Lojewski | f1e547c | 2019-03-14 14:34:33 +1030 | [diff] [blame] | 413 | rc = mboxd_backend_init(context); |
| 414 | if (rc) { |
Andrew Jeffery | 4ef0c13 | 2019-03-19 15:14:13 +1030 | [diff] [blame] | 415 | goto cleanup_context; |
Evan Lojewski | f1e547c | 2019-03-14 14:34:33 +1030 | [diff] [blame] | 416 | } |
| 417 | |
Andrew Jeffery | 1e531af | 2018-08-07 13:32:57 +0930 | [diff] [blame] | 418 | rc = protocol_init(context); |
| 419 | if (rc) { |
Andrew Jeffery | 4ef0c13 | 2019-03-19 15:14:13 +1030 | [diff] [blame] | 420 | goto cleanup_backend; |
Andrew Jeffery | 1e531af | 2018-08-07 13:32:57 +0930 | [diff] [blame] | 421 | } |
| 422 | |
Andrew Jeffery | cb9b210 | 2018-08-08 16:31:07 +0930 | [diff] [blame] | 423 | rc = lpc_dev_init(context); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 424 | if (rc) { |
Joel Stanley | dfbeae2 | 2020-03-12 16:11:10 +1030 | [diff] [blame] | 425 | goto cleanup_protocol; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 426 | } |
| 427 | |
| 428 | /* We've found the reserved memory region -> we can assign to windows */ |
Andrew Jeffery | c1a67fa | 2018-08-08 17:07:38 +0930 | [diff] [blame] | 429 | rc = windows_init(context); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 430 | if (rc) { |
Andrew Jeffery | 4ef0c13 | 2019-03-19 15:14:13 +1030 | [diff] [blame] | 431 | goto cleanup_lpc; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 432 | } |
| 433 | |
Andrew Jeffery | fe0c9e8 | 2018-11-01 14:02:17 +1030 | [diff] [blame] | 434 | rc = dbus_init(context, &dbus_ops); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 435 | if (rc) { |
Andrew Jeffery | 4ef0c13 | 2019-03-19 15:14:13 +1030 | [diff] [blame] | 436 | goto cleanup_windows; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 437 | } |
| 438 | |
Deepak Kodihalli | 017e45c | 2017-07-12 01:06:30 -0500 | [diff] [blame] | 439 | /* Set the LPC bus mapping */ |
Andrew Jeffery | f69760d | 2019-03-14 16:54:13 +1030 | [diff] [blame] | 440 | __protocol_reset(context); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 441 | |
Andrew Jeffery | fe0c9e8 | 2018-11-01 14:02:17 +1030 | [diff] [blame] | 442 | /* We're ready to go, alert the host */ |
| 443 | context->bmc_events |= BMC_EVENT_DAEMON_READY; |
Andrew Jeffery | 4c15bb1 | 2018-12-05 14:15:28 +1030 | [diff] [blame] | 444 | context->bmc_events |= BMC_EVENT_PROTOCOL_RESET; |
Andrew Jeffery | fe0c9e8 | 2018-11-01 14:02:17 +1030 | [diff] [blame] | 445 | |
Andrew Jeffery | 4b8203d | 2019-05-06 14:36:16 +0930 | [diff] [blame] | 446 | /* Alert on all supported transports, as required */ |
Andrew Jeffery | fe0c9e8 | 2018-11-01 14:02:17 +1030 | [diff] [blame] | 447 | rc = protocol_events_put(context, dbus_ops); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 448 | if (rc) { |
Andrew Jeffery | 4ef0c13 | 2019-03-19 15:14:13 +1030 | [diff] [blame] | 449 | goto cleanup; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 450 | } |
| 451 | |
Suraj Jitindar Singh | 2851959 | 2017-04-27 14:48:58 +1000 | [diff] [blame] | 452 | MSG_INFO("Entering Polling Loop\n"); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 453 | rc = poll_loop(context); |
| 454 | |
Suraj Jitindar Singh | 2851959 | 2017-04-27 14:48:58 +1000 | [diff] [blame] | 455 | MSG_INFO("Exiting Poll Loop: %d\n", rc); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 456 | |
Suraj Jitindar Singh | 2851959 | 2017-04-27 14:48:58 +1000 | [diff] [blame] | 457 | MSG_INFO("Daemon Exiting...\n"); |
Andrew Jeffery | fe0c9e8 | 2018-11-01 14:02:17 +1030 | [diff] [blame] | 458 | context->bmc_events &= ~BMC_EVENT_DAEMON_READY; |
Andrew Jeffery | fab672b | 2018-11-01 17:12:09 +1030 | [diff] [blame] | 459 | context->bmc_events |= BMC_EVENT_PROTOCOL_RESET; |
Andrew Jeffery | fe0c9e8 | 2018-11-01 14:02:17 +1030 | [diff] [blame] | 460 | |
Andrew Jeffery | 4b8203d | 2019-05-06 14:36:16 +0930 | [diff] [blame] | 461 | /* Alert on all supported transports, as required */ |
Andrew Jeffery | fe0c9e8 | 2018-11-01 14:02:17 +1030 | [diff] [blame] | 462 | protocol_events_put(context, dbus_ops); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 463 | |
Andrew Jeffery | 4ef0c13 | 2019-03-19 15:14:13 +1030 | [diff] [blame] | 464 | cleanup: |
Andrew Jeffery | ef9e62d | 2018-08-08 15:48:27 +0930 | [diff] [blame] | 465 | dbus_free(context); |
Andrew Jeffery | 4ef0c13 | 2019-03-19 15:14:13 +1030 | [diff] [blame] | 466 | cleanup_windows: |
Andrew Jeffery | f5f5142 | 2018-08-08 17:08:33 +0930 | [diff] [blame] | 467 | windows_free(context); |
Andrew Jeffery | 4ef0c13 | 2019-03-19 15:14:13 +1030 | [diff] [blame] | 468 | cleanup_lpc: |
| 469 | lpc_dev_free(context); |
Joel Stanley | dfbeae2 | 2020-03-12 16:11:10 +1030 | [diff] [blame] | 470 | cleanup_protocol: |
Andrew Jeffery | 1e531af | 2018-08-07 13:32:57 +0930 | [diff] [blame] | 471 | protocol_free(context); |
Andrew Jeffery | 4ef0c13 | 2019-03-19 15:14:13 +1030 | [diff] [blame] | 472 | cleanup_backend: |
| 473 | backend_free(&context->backend); |
| 474 | cleanup_context: |
Stewart Smith | ef0c836 | 2018-11-19 13:49:46 +1100 | [diff] [blame] | 475 | if (context->blktracefd) |
| 476 | close(context->blktracefd); |
| 477 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 478 | free(context); |
| 479 | |
| 480 | return rc; |
| 481 | } |