blob: 866333fdab869a4e6128a110bc8d437425451397 [file] [log] [blame]
Andrew Jefferye9493ad2018-03-28 14:04:34 +10301// SPDX-License-Identifier: Apache-2.0
2// Copyright (C) 2018 IBM Corp.
3
William A. Kennington IIId5f1d402018-10-11 13:55:04 -07004#include "config.h"
5
Andrew Jefferye9493ad2018-03-28 14:04:34 +10306#include <assert.h>
Andrew Jefferye9493ad2018-03-28 14:04:34 +10307#include <fcntl.h>
8#include <stdint.h>
9#include <sys/ioctl.h>
10#include <sys/mman.h>
11#include <sys/syslog.h>
12#include <unistd.h>
13
William A. Kennington IIId5f1d402018-10-11 13:55:04 -070014#include <experimental/filesystem>
15
Andrew Jefferye9493ad2018-03-28 14:04:34 +103016#include "common.h"
Andrew Jeffery26558db2018-08-10 00:22:38 +093017#include "mboxd.h"
Andrew Jeffery71eaa732018-08-08 16:44:24 +093018
19extern "C" {
Andrew Jefferyeebc6bd2018-08-08 10:38:19 +093020#include "flash.h"
Andrew Jeffery71eaa732018-08-08 16:44:24 +093021}
Andrew Jefferye9493ad2018-03-28 14:04:34 +103022
Andrew Jeffery30bcf842018-03-26 12:13:20 +103023#include "vpnor/test/tmpd.hpp"
Andrew Jefferye9493ad2018-03-28 14:04:34 +103024
25static constexpr auto BLOCK_SIZE = 0x1000;
26static constexpr auto PART_SIZE = BLOCK_SIZE;
27static constexpr auto PATCH_SIZE = BLOCK_SIZE / 2;
28static constexpr auto UPDATE_SIZE = BLOCK_SIZE;
29
30const std::string toc[] = {
31 "partition01=TEST1,00001000,00002000,80,ECC,READWRITE",
32};
33
34int main(void)
35{
36 namespace fs = std::experimental::filesystem;
37 namespace test = openpower::virtual_pnor::test;
38
39 struct mbox_context _ctx, *ctx = &_ctx;
William A. Kennington IIId5f1d402018-10-11 13:55:04 -070040 void* map;
Andrew Jefferye9493ad2018-03-28 14:04:34 +103041 int rc;
42 int fd;
43
44 /* Setup */
45 memset(ctx, 0, sizeof(mbox_context));
46
47 mbox_vlog = &mbox_log_console;
48 verbosity = (verbose)2;
49
50 test::VpnorRoot root(ctx, toc, BLOCK_SIZE);
51 std::vector<uint8_t> roContent(PART_SIZE, 0xff);
52 root.write("TEST1", roContent.data(), roContent.size());
Andrew Jeffery0293f2f2018-08-08 16:59:45 +093053 /* flash_write doesn't copy the file for us */
Andrew Jefferye9493ad2018-03-28 14:04:34 +103054 std::vector<uint8_t> patchContent(PATCH_SIZE, 0xaa);
55 root.patch("TEST1", patchContent.data(), patchContent.size());
56
Andrew Jeffery742a1f62018-03-02 09:26:03 +103057 init_vpnor_from_paths(ctx);
Andrew Jefferye9493ad2018-03-28 14:04:34 +103058
59 /* Test */
60 std::vector<uint8_t> update(UPDATE_SIZE, 0x55);
Andrew Jeffery0293f2f2018-08-08 16:59:45 +093061 rc = flash_write(ctx, 0x1000, update.data(), update.size());
Andrew Jefferye9493ad2018-03-28 14:04:34 +103062 assert(rc == 0);
63
64 /* Check that PATCH is modified with the new data */
65 fs::path patch = root.patch() / "TEST1";
66 assert(UPDATE_SIZE == fs::file_size(patch));
67 fd = open(patch.c_str(), O_RDONLY);
68 map = mmap(NULL, UPDATE_SIZE, PROT_READ, MAP_SHARED, fd, 0);
69 assert(map != MAP_FAILED);
70 rc = memcmp(update.data(), map, update.size());
71 assert(rc == 0);
72 munmap(map, update.size());
73 close(fd);
74
75 destroy_vpnor(ctx);
76 free(ctx->flash_bmap);
77
78 return rc;
79}