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. |
Andrew Jeffery | 5ab4e3e | 2017-04-12 14:23:24 +0930 | [diff] [blame] | 3 | |
| 4 | #define _GNU_SOURCE /* fallocate */ |
| 5 | #include <assert.h> |
| 6 | #include <fcntl.h> |
| 7 | #include <stdint.h> |
| 8 | #include <stdio.h> |
| 9 | #include <stdlib.h> |
| 10 | #include <string.h> |
Evan Lojewski | f1e547c | 2019-03-14 14:34:33 +1030 | [diff] [blame] | 11 | #include <sys/ioctl.h> |
Andrew Jeffery | 5ab4e3e | 2017-04-12 14:23:24 +0930 | [diff] [blame] | 12 | #include <sys/mman.h> |
| 13 | #include <sys/types.h> |
| 14 | #include <sys/stat.h> |
| 15 | #include <unistd.h> |
| 16 | |
Evan Lojewski | f1e547c | 2019-03-14 14:34:33 +1030 | [diff] [blame] | 17 | #include "config.h" |
Andrew Jeffery | 26558db | 2018-08-10 00:22:38 +0930 | [diff] [blame] | 18 | #include "mboxd.h" |
Evan Lojewski | f1e547c | 2019-03-14 14:34:33 +1030 | [diff] [blame] | 19 | #include "backend.h" |
Andrew Jeffery | cd18611 | 2018-08-08 10:47:55 +0930 | [diff] [blame] | 20 | #include "lpc.h" |
Andrew Jeffery | 457a6e5 | 2018-08-08 11:21:08 +0930 | [diff] [blame] | 21 | #include "transport_mbox.h" |
Andrew Jeffery | f593b1b | 2018-08-08 11:01:04 +0930 | [diff] [blame] | 22 | #include "windows.h" |
Andrew Jeffery | 5ab4e3e | 2017-04-12 14:23:24 +0930 | [diff] [blame] | 23 | |
| 24 | #include "test/mbox.h" |
| 25 | |
| 26 | #define STEP 16 |
| 27 | |
Andrew Jeffery | ee7af88 | 2018-03-01 11:57:50 +1030 | [diff] [blame] | 28 | void dump_buf(const void *buf, size_t len) |
Andrew Jeffery | 5ab4e3e | 2017-04-12 14:23:24 +0930 | [diff] [blame] | 29 | { |
Andrew Jeffery | ee7af88 | 2018-03-01 11:57:50 +1030 | [diff] [blame] | 30 | const uint8_t *buf8 = buf; |
Andrew Jeffery | 5ab4e3e | 2017-04-12 14:23:24 +0930 | [diff] [blame] | 31 | int i; |
| 32 | |
| 33 | for (i = 0; i < len; i += STEP) { |
| 34 | int delta; |
| 35 | int max; |
| 36 | int j; |
| 37 | |
| 38 | delta = len - i; |
| 39 | max = delta > STEP ? STEP : delta; |
| 40 | |
| 41 | printf("0x%08x:\t", i); |
| 42 | for (j = 0; j < max; j++) |
Andrew Jeffery | ee7af88 | 2018-03-01 11:57:50 +1030 | [diff] [blame] | 43 | printf("0x%02x, ", buf8[i + j]); |
Andrew Jeffery | 5ab4e3e | 2017-04-12 14:23:24 +0930 | [diff] [blame] | 44 | |
| 45 | printf("\n"); |
| 46 | } |
| 47 | printf("\n"); |
| 48 | } |
| 49 | |
| 50 | /* |
| 51 | * Because we are using a file and not a pipe for the mbox file descriptor we |
| 52 | * need to handle a difference in behaviour. For a given command and response |
| 53 | * sequence the first 16 bytes of the file are occupied by the mbox command. |
| 54 | * The response occupies the following 14 bytes for a total of 30 bytes. |
| 55 | * |
| 56 | * We also have to ensure we lseek() to reset the file descriptor offset back |
| 57 | * to the start of the file before dispatching the mbox command. |
| 58 | */ |
| 59 | |
| 60 | /* Macros for handling the pipe/file discrepancy */ |
| 61 | #define RESPONSE_OFFSET 16 |
| 62 | #define RESPONSE_SIZE 14 |
| 63 | |
| 64 | int mbox_cmp(struct mbox_context *context, const uint8_t *expected, size_t len) |
| 65 | { |
| 66 | struct stat details; |
| 67 | uint8_t *map; |
| 68 | int rc; |
| 69 | int fd; |
| 70 | |
| 71 | fd = context->fds[MBOX_FD].fd; |
| 72 | fstat(fd, &details); |
| 73 | |
| 74 | map = mmap(NULL, details.st_size, PROT_READ, MAP_PRIVATE, fd, 0); |
Andrew Jeffery | 23a4821 | 2018-08-10 14:41:48 +0930 | [diff] [blame] | 75 | printf("%s:%d: details.st_size: %ld, RESPONSE_OFFSET + len: %ld\n", |
| 76 | __func__, __LINE__, details.st_size, RESPONSE_OFFSET + len); |
Andrew Jeffery | 5ab4e3e | 2017-04-12 14:23:24 +0930 | [diff] [blame] | 77 | assert(map != MAP_FAILED); |
| 78 | assert(details.st_size >= (RESPONSE_OFFSET + len)); |
| 79 | |
| 80 | rc = memcmp(expected, &map[RESPONSE_OFFSET], len); |
| 81 | |
| 82 | if (rc != 0) { |
| 83 | printf("\nMBOX state (%ld):\n", details.st_size); |
| 84 | dump_buf(map, details.st_size); |
| 85 | printf("Expected response (%lu):\n", len); |
| 86 | dump_buf(expected, len); |
| 87 | } |
| 88 | |
| 89 | munmap(map, details.st_size); |
| 90 | |
| 91 | return rc; |
| 92 | } |
| 93 | |
Andrew Jeffery | ca1dfc9 | 2018-03-22 16:49:40 +1030 | [diff] [blame] | 94 | void mbox_rspcpy(struct mbox_context *context, struct mbox_msg *msg) |
| 95 | { |
| 96 | struct stat details; |
| 97 | uint8_t *map; |
| 98 | int fd; |
| 99 | |
| 100 | fd = context->fds[MBOX_FD].fd; |
| 101 | fstat(fd, &details); |
| 102 | |
| 103 | map = mmap(NULL, details.st_size, PROT_READ, MAP_PRIVATE, fd, 0); |
| 104 | assert(map != MAP_FAILED); |
| 105 | assert(details.st_size >= (RESPONSE_OFFSET + RESPONSE_SIZE)); |
| 106 | |
| 107 | memcpy(msg, &map[RESPONSE_OFFSET], RESPONSE_SIZE); |
| 108 | |
| 109 | munmap(map, details.st_size); |
| 110 | } |
| 111 | |
Andrew Jeffery | 5ab4e3e | 2017-04-12 14:23:24 +0930 | [diff] [blame] | 112 | int mbox_command_write(struct mbox_context *context, const uint8_t *command, |
| 113 | size_t len) |
| 114 | { |
| 115 | size_t remaining; |
| 116 | int rc; |
| 117 | int fd; |
| 118 | |
| 119 | fd = context->fds[MBOX_FD].fd; |
| 120 | rc = lseek(fd, 0, SEEK_SET); |
| 121 | if (rc != 0) |
| 122 | return -1; |
| 123 | |
| 124 | remaining = len; |
| 125 | while (remaining > 0) { |
| 126 | rc = write(fd, command, remaining); |
| 127 | if (rc < 0) |
| 128 | goto out; |
| 129 | remaining -= rc; |
| 130 | } |
| 131 | |
| 132 | rc = lseek(fd, 0, SEEK_SET); |
| 133 | if (rc != 0) |
| 134 | return -1; |
| 135 | |
| 136 | out: |
| 137 | return rc; |
| 138 | } |
| 139 | |
| 140 | int mbox_command_dispatch(struct mbox_context *context, const uint8_t *command, |
| 141 | size_t len) |
| 142 | { |
| 143 | uint8_t status; |
| 144 | int rc; |
| 145 | |
| 146 | rc = mbox_command_write(context, command, len); |
| 147 | if (rc < 0) |
| 148 | return rc; |
| 149 | |
Andrew Jeffery | d86141b | 2018-08-09 14:58:53 +0930 | [diff] [blame] | 150 | rc = transport_mbox_dispatch(context); |
Andrew Jeffery | 5ab4e3e | 2017-04-12 14:23:24 +0930 | [diff] [blame] | 151 | if (rc < 0) |
| 152 | return -rc; |
| 153 | |
| 154 | /* |
| 155 | * The aspeed-lpc-ctrl driver implements mailbox register access |
| 156 | * through the usual read()/write() chardev interface. |
| 157 | * |
| 158 | * The typical access sequence is: |
| 159 | * |
| 160 | * 1. Read all the registers out |
| 161 | * 2. Perform the action specified |
| 162 | * 3. Write a response to the registers. |
| 163 | * |
| 164 | * For the tests the "device" file descriptor is backed by a temporary |
| 165 | * file. The above sequence leads to a file-size of 30 bytes: 16 bytes |
| 166 | * for the issued command, followed by a 14-byte response. |
| 167 | * |
| 168 | * However, the typical access pattern isn't the only access pattern. |
| 169 | * Individual byte registers can be accessed by lseek()'ing on the |
| 170 | * device's file descriptor and issuing read() or write() as desired. |
| 171 | * The daemon uses this property to manage the BMC status byte, and the |
| 172 | * implementation cleans up after status byte operations by lseek()'ing |
| 173 | * back to offset zero. |
| 174 | * |
| 175 | * Thus for the BMC_EVENT_ACK command the file only reaches a size of |
| 176 | * 16 bytes; the daemon's response overwrites the first 14 bytes of the |
| 177 | * command injected by the tests. |
| 178 | * |
| 179 | * The consequence of this is that the response status byte can either |
| 180 | * appear at offset 13, or offset 29, depending on the command. |
| 181 | * |
| 182 | * However, regardless of what command is issued the response data is |
| 183 | * written to the device and the file descriptor is left in the |
| 184 | * post-write() state. This means the status byte can always be |
| 185 | * accessed relative to the current position by an lseek() of type |
| 186 | * SEEK_CUR for offset -1. |
| 187 | * |
| 188 | */ |
| 189 | rc = lseek(context->fds[MBOX_FD].fd, -1, SEEK_CUR); |
| 190 | if (rc < 0) |
| 191 | return rc; |
| 192 | |
| 193 | rc = read(context->fds[MBOX_FD].fd, &status, sizeof(status)); |
| 194 | if (rc < 0) |
| 195 | return rc; |
| 196 | |
| 197 | return status; |
| 198 | } |
| 199 | |
| 200 | struct mbox_test_context { |
| 201 | struct tmpf mbox; |
| 202 | struct tmpf flash; |
| 203 | struct tmpf lpc; |
| 204 | struct mbox_context context; |
| 205 | } test; |
| 206 | |
| 207 | void cleanup(void) |
| 208 | { |
| 209 | tmpf_destroy(&test.mbox); |
| 210 | tmpf_destroy(&test.flash); |
| 211 | tmpf_destroy(&test.lpc); |
| 212 | } |
| 213 | |
Andrew Jeffery | b2466ee | 2018-08-09 15:03:27 +0930 | [diff] [blame] | 214 | int __transport_mbox_init(struct mbox_context *context, const char *path); |
Andrew Jeffery | cb9b210 | 2018-08-08 16:31:07 +0930 | [diff] [blame] | 215 | int __lpc_dev_init(struct mbox_context *context, const char *path); |
Andrew Jeffery | 5ab4e3e | 2017-04-12 14:23:24 +0930 | [diff] [blame] | 216 | |
Evan Lojewski | f1e547c | 2019-03-14 14:34:33 +1030 | [diff] [blame] | 217 | struct mbox_context *mbox_create_frontend_context(int n_windows, size_t len) |
Andrew Jeffery | 5ab4e3e | 2017-04-12 14:23:24 +0930 | [diff] [blame] | 218 | { |
Evan Lojewski | f1e547c | 2019-03-14 14:34:33 +1030 | [diff] [blame] | 219 | struct mtd_info_user mtd_info; |
Andrew Jeffery | 5ab4e3e | 2017-04-12 14:23:24 +0930 | [diff] [blame] | 220 | int rc; |
| 221 | |
| 222 | mbox_vlog = &mbox_log_console; |
| 223 | verbosity = 2; |
| 224 | |
| 225 | atexit(cleanup); |
| 226 | |
Andrew Jeffery | c314404 | 2018-02-26 13:24:52 +1030 | [diff] [blame] | 227 | rc = tmpf_init(&test.mbox, "mbox-store.XXXXXX"); |
Andrew Jeffery | 5ab4e3e | 2017-04-12 14:23:24 +0930 | [diff] [blame] | 228 | assert(rc == 0); |
| 229 | |
Andrew Jeffery | c314404 | 2018-02-26 13:24:52 +1030 | [diff] [blame] | 230 | rc = tmpf_init(&test.lpc, "lpc-store.XXXXXX"); |
Andrew Jeffery | 5ab4e3e | 2017-04-12 14:23:24 +0930 | [diff] [blame] | 231 | assert(rc == 0); |
| 232 | |
| 233 | test.context.windows.num = n_windows; |
| 234 | test.context.windows.default_size = len; |
| 235 | |
Andrew Jeffery | 1e531af | 2018-08-07 13:32:57 +0930 | [diff] [blame] | 236 | rc = protocol_init(&test.context); |
| 237 | assert(rc == 0); |
| 238 | |
Andrew Jeffery | 5ab4e3e | 2017-04-12 14:23:24 +0930 | [diff] [blame] | 239 | /* |
Andrew Jeffery | b2466ee | 2018-08-09 15:03:27 +0930 | [diff] [blame] | 240 | * We need to call __transport_mbox_init() to initialise the handler table. |
Andrew Jeffery | efb09de | 2018-03-26 14:36:43 +1030 | [diff] [blame] | 241 | * However, afterwards we need to discard the fd of the clearly useless |
| 242 | * /dev/null and replace it with our own fd for mbox device emulation |
| 243 | * by the test framework. |
Andrew Jeffery | 5ab4e3e | 2017-04-12 14:23:24 +0930 | [diff] [blame] | 244 | */ |
Andrew Jeffery | b2466ee | 2018-08-09 15:03:27 +0930 | [diff] [blame] | 245 | __transport_mbox_init(&test.context, "/dev/null"); |
Andrew Jeffery | efb09de | 2018-03-26 14:36:43 +1030 | [diff] [blame] | 246 | rc = close(test.context.fds[MBOX_FD].fd); |
| 247 | assert(rc == 0); |
Andrew Jeffery | 5ab4e3e | 2017-04-12 14:23:24 +0930 | [diff] [blame] | 248 | test.context.fds[MBOX_FD].fd = test.mbox.fd; |
| 249 | |
Evan Lojewski | f1e547c | 2019-03-14 14:34:33 +1030 | [diff] [blame] | 250 | /* Instantiate the mtd backend */ |
| 251 | rc = tmpf_init(&test.flash, "flash-store.XXXXXX"); |
Andrew Jeffery | 5ab4e3e | 2017-04-12 14:23:24 +0930 | [diff] [blame] | 252 | assert(rc == 0); |
| 253 | |
Evan Lojewski | f1e547c | 2019-03-14 14:34:33 +1030 | [diff] [blame] | 254 | rc = ioctl(test.flash.fd, MEMGETINFO, &mtd_info); |
Andrew Jeffery | 5ab4e3e | 2017-04-12 14:23:24 +0930 | [diff] [blame] | 255 | assert(rc == 0); |
| 256 | |
Evan Lojewski | f1e547c | 2019-03-14 14:34:33 +1030 | [diff] [blame] | 257 | rc = fallocate(test.flash.fd, 0, 0, mtd_info.size); |
| 258 | assert(rc == 0); |
| 259 | |
| 260 | test.context.backend.flash_size = mtd_info.size; |
| 261 | |
Andrew Jeffery | cb9b210 | 2018-08-08 16:31:07 +0930 | [diff] [blame] | 262 | rc = __lpc_dev_init(&test.context, test.lpc.path); |
Andrew Jeffery | 5ab4e3e | 2017-04-12 14:23:24 +0930 | [diff] [blame] | 263 | assert(rc == 0); |
| 264 | |
Andrew Jeffery | d23affd | 2018-03-23 12:13:39 +1030 | [diff] [blame] | 265 | rc = fallocate(test.lpc.fd, 0, 0, test.context.mem_size); |
Andrew Jeffery | 5ab4e3e | 2017-04-12 14:23:24 +0930 | [diff] [blame] | 266 | assert(rc == 0); |
| 267 | |
Andrew Jeffery | c1a67fa | 2018-08-08 17:07:38 +0930 | [diff] [blame] | 268 | rc = windows_init(&test.context); |
Andrew Jeffery | 5ab4e3e | 2017-04-12 14:23:24 +0930 | [diff] [blame] | 269 | assert(rc == 0); |
| 270 | |
| 271 | return rc ? NULL : &test.context; |
| 272 | } |
| 273 | |
Evan Lojewski | f1e547c | 2019-03-14 14:34:33 +1030 | [diff] [blame] | 274 | struct mbox_context *mbox_create_test_context(int n_windows, size_t len) |
| 275 | { |
| 276 | struct mbox_context *ctx; |
| 277 | int rc; |
| 278 | |
| 279 | ctx = mbox_create_frontend_context(n_windows, len); |
| 280 | assert(ctx); |
| 281 | |
| 282 | rc = backend_probe_mtd(&ctx->backend, test.flash.path); |
| 283 | assert(rc == 0); |
| 284 | |
| 285 | return ctx; |
| 286 | } |
| 287 | |
Andrew Jeffery | 5ab4e3e | 2017-04-12 14:23:24 +0930 | [diff] [blame] | 288 | /* From ccan's container_of module, CC0 license */ |
| 289 | #define container_of(member_ptr, containing_type, member) \ |
| 290 | ((containing_type *) \ |
| 291 | ((char *)(member_ptr) \ |
| 292 | - container_off(containing_type, member)) \ |
| 293 | + check_types_match(*(member_ptr), ((containing_type *)0)->member)) |
| 294 | |
| 295 | /* From ccan's container_of module, CC0 license */ |
| 296 | #define container_off(containing_type, member) \ |
| 297 | offsetof(containing_type, member) |
| 298 | |
| 299 | /* From ccan's check_type module, CC0 license */ |
| 300 | #define check_type(expr, type) \ |
| 301 | ((typeof(expr) *)0 != (type *)0) |
| 302 | |
| 303 | /* From ccan's check_type module, CC0 license */ |
| 304 | #define check_types_match(expr1, expr2) \ |
| 305 | ((typeof(expr1) *)0 != (typeof(expr2) *)0) |
| 306 | |
| 307 | int mbox_set_mtd_data(struct mbox_context *context, const void *data, |
| 308 | size_t len) |
| 309 | { |
| 310 | struct mbox_test_context *arg; |
| 311 | void *map; |
| 312 | |
Andrew Jeffery | 7c1588a | 2019-03-14 14:57:40 +1030 | [diff] [blame] | 313 | assert(test.flash.fd > 2); |
| 314 | |
Andrew Jeffery | 5ab4e3e | 2017-04-12 14:23:24 +0930 | [diff] [blame] | 315 | /* Sanity check */ |
| 316 | arg = container_of(context, struct mbox_test_context, context); |
Andrew Jeffery | bf2417e | 2019-03-14 14:56:34 +1030 | [diff] [blame] | 317 | assert(&test == arg); |
Evan Lojewski | f1e547c | 2019-03-14 14:34:33 +1030 | [diff] [blame] | 318 | assert(len <= test.context.backend.flash_size); |
Andrew Jeffery | 5ab4e3e | 2017-04-12 14:23:24 +0930 | [diff] [blame] | 319 | |
Evan Lojewski | f1e547c | 2019-03-14 14:34:33 +1030 | [diff] [blame] | 320 | map = mmap(NULL, test.context.backend.flash_size, |
| 321 | PROT_WRITE, MAP_SHARED, test.flash.fd, 0); |
Andrew Jeffery | 5ab4e3e | 2017-04-12 14:23:24 +0930 | [diff] [blame] | 322 | assert(map != MAP_FAILED); |
| 323 | memcpy(map, data, len); |
Evan Lojewski | f1e547c | 2019-03-14 14:34:33 +1030 | [diff] [blame] | 324 | munmap(map, test.context.backend.flash_size); |
Andrew Jeffery | 5ab4e3e | 2017-04-12 14:23:24 +0930 | [diff] [blame] | 325 | |
| 326 | return 0; |
| 327 | } |
| 328 | |
| 329 | char *get_dev_mtd(void) |
| 330 | { |
| 331 | return strdup(test.flash.path); |
| 332 | } |