blob: 66c51d105308a7ec9b91a6e2cced99330d9692eb [file] [log] [blame]
Andrew Jeffery4fe996c2018-02-27 12:16:48 +10301// SPDX-License-Identifier: Apache-2.0
2// Copyright (C) 2018 IBM Corp.
Andrew Jeffery71eaa732018-08-08 16:44:24 +09303extern "C" {
Evan Lojewskif1e547c2019-03-14 14:34:33 +10304#include "mboxd.h"
Andrew Jeffery71eaa732018-08-08 16:44:24 +09305}
6
William A. Kennington IIId5f1d402018-10-11 13:55:04 -07007#include "config.h"
8
Andrew Jefferyfb01e142019-03-18 13:17:08 +10309#include "vpnor/partition.hpp"
Andrew Jefferyde08ca22019-03-18 13:23:46 +103010#include "vpnor/table.hpp"
Ratan Guptac0ef9872017-06-06 14:31:37 +053011#include "xyz/openbmc_project/Common/error.hpp"
Ratan Guptac0ef9872017-06-06 14:31:37 +053012
Andrew Jefferyad343102018-02-28 00:35:50 +103013#include <assert.h>
Andrew Jeffery1a3f8432018-03-02 10:18:02 +103014#include <fcntl.h>
Ratan Guptac0ef9872017-06-06 14:31:37 +053015#include <stdint.h>
16#include <stdlib.h>
Ratan Guptac0ef9872017-06-06 14:31:37 +053017#include <sys/ioctl.h>
18#include <sys/mman.h>
William A. Kennington IIId5f1d402018-10-11 13:55:04 -070019#include <sys/types.h>
20#include <syslog.h>
Andrew Jeffery1a3f8432018-03-02 10:18:02 +103021#include <unistd.h>
Ratan Guptac0ef9872017-06-06 14:31:37 +053022
Ratan Guptac0ef9872017-06-06 14:31:37 +053023#include <exception>
Ratan Guptac0ef9872017-06-06 14:31:37 +053024#include <iostream>
William A. Kennington IIId5f1d402018-10-11 13:55:04 -070025#include <phosphor-logging/elog-errors.hpp>
26#include <phosphor-logging/log.hpp>
27#include <stdexcept>
28#include <string>
29
30#include "common.h"
Andrew Jefferyf4bc3352019-03-18 12:09:48 +103031#include "vpnor/backend.h"
Ratan Guptac0ef9872017-06-06 14:31:37 +053032
33namespace openpower
34{
35namespace virtual_pnor
36{
37
Andrew Jefferyad343102018-02-28 00:35:50 +103038namespace fs = std::experimental::filesystem;
Ratan Guptac0ef9872017-06-06 14:31:37 +053039
Andrew Jefferyad343102018-02-28 00:35:50 +103040fs::path Request::getPartitionFilePath(int flags)
Ratan Guptac0ef9872017-06-06 14:31:37 +053041{
Evan Lojewskif1e547c2019-03-14 14:34:33 +103042 struct vpnor_data* priv = (struct vpnor_data*)backend->priv;
43
Adriana Kobylakc71dfd72017-07-22 11:10:43 -050044 // Check if partition exists in patch location
Evan Lojewskif1e547c2019-03-14 14:34:33 +103045 auto dst = fs::path(priv->paths.patch_loc) / partition.data.name;
Andrew Jefferyad343102018-02-28 00:35:50 +103046 if (fs::is_regular_file(dst))
Adriana Kobylakc71dfd72017-07-22 11:10:43 -050047 {
Andrew Jefferyad343102018-02-28 00:35:50 +103048 return dst;
Adriana Kobylakc71dfd72017-07-22 11:10:43 -050049 }
50
Andrew Jefferyad343102018-02-28 00:35:50 +103051 switch (partition.data.user.data[1] &
Ratan Guptac0ef9872017-06-06 14:31:37 +053052 (PARTITION_PRESERVED | PARTITION_READONLY))
53 {
54 case PARTITION_PRESERVED:
Evan Lojewskif1e547c2019-03-14 14:34:33 +103055 dst = priv->paths.prsv_loc;
Ratan Guptac0ef9872017-06-06 14:31:37 +053056 break;
57
58 case PARTITION_READONLY:
Evan Lojewskif1e547c2019-03-14 14:34:33 +103059 dst = priv->paths.ro_loc;
Ratan Guptac0ef9872017-06-06 14:31:37 +053060 break;
61
62 default:
Evan Lojewskif1e547c2019-03-14 14:34:33 +103063 dst = priv->paths.rw_loc;
Ratan Guptac0ef9872017-06-06 14:31:37 +053064 }
Andrew Jefferyad343102018-02-28 00:35:50 +103065 dst /= partition.data.name;
Ratan Guptac0ef9872017-06-06 14:31:37 +053066
Andrew Jefferyad343102018-02-28 00:35:50 +103067 if (fs::exists(dst))
Ratan Guptac0ef9872017-06-06 14:31:37 +053068 {
Andrew Jefferyad343102018-02-28 00:35:50 +103069 return dst;
Ratan Guptac0ef9872017-06-06 14:31:37 +053070 }
Andrew Jefferyad343102018-02-28 00:35:50 +103071
72 if (flags == O_RDONLY)
Ratan Guptac0ef9872017-06-06 14:31:37 +053073 {
Evan Lojewskif1e547c2019-03-14 14:34:33 +103074 dst = fs::path(priv->paths.ro_loc) / partition.data.name;
Andrew Jefferyad343102018-02-28 00:35:50 +103075 assert(fs::exists(dst));
76 return dst;
Ratan Guptac0ef9872017-06-06 14:31:37 +053077 }
78
Andrew Jefferyad343102018-02-28 00:35:50 +103079 assert(flags == O_RDWR);
Evan Lojewskif1e547c2019-03-14 14:34:33 +103080 auto src = fs::path(priv->paths.ro_loc) / partition.data.name;
Andrew Jefferyad343102018-02-28 00:35:50 +103081 assert(fs::exists(src));
Ratan Guptac0ef9872017-06-06 14:31:37 +053082
Andrew Jefferye8a79ff2018-02-27 10:56:32 +103083 MSG_DBG("RWRequest: Didn't find '%s' under '%s', copying from '%s'\n",
Andrew Jefferyad343102018-02-28 00:35:50 +103084 partition.data.name, dst.c_str(), src.c_str());
Andrew Jefferye8a79ff2018-02-27 10:56:32 +103085
Evan Lojewskif1e547c2019-03-14 14:34:33 +103086 dst = priv->paths.rw_loc;
Andrew Jefferyad343102018-02-28 00:35:50 +103087 if (partition.data.user.data[1] & PARTITION_PRESERVED)
Ratan Guptac0ef9872017-06-06 14:31:37 +053088 {
Evan Lojewskif1e547c2019-03-14 14:34:33 +103089 dst = priv->paths.prsv_loc;
Ratan Guptac0ef9872017-06-06 14:31:37 +053090 }
91
Andrew Jefferyad343102018-02-28 00:35:50 +103092 dst /= partition.data.name;
93 fs::copy_file(src, dst);
Adriana Kobylak0acc6692019-10-09 13:05:34 -050094 fs::permissions(dst, fs::perms::add_perms | fs::perms::owner_write);
Ratan Guptac0ef9872017-06-06 14:31:37 +053095
Andrew Jefferyad343102018-02-28 00:35:50 +103096 return dst;
97}
98
Andrew Jeffery1a3f8432018-03-02 10:18:02 +103099size_t Request::clamp(size_t len)
100{
101 size_t maxAccess = offset + len;
Evan Lojewskif1e547c2019-03-14 14:34:33 +1030102 size_t partSize = partition.data.size << backend->block_size_shift;
Andrew Jeffery1a3f8432018-03-02 10:18:02 +1030103 return std::min(maxAccess, partSize) - offset;
104}
105
William A. Kennington IIId5f1d402018-10-11 13:55:04 -0700106void Request::resize(const fs::path& path, size_t len)
Andrew Jeffery1a3f8432018-03-02 10:18:02 +1030107{
108 size_t maxAccess = offset + len;
109 size_t fileSize = fs::file_size(path);
110 if (maxAccess < fileSize)
111 {
112 return;
113 }
114 MSG_DBG("Resizing %s to %zu bytes\n", path.c_str(), maxAccess);
115 int rc = truncate(path.c_str(), maxAccess);
116 if (rc == -1)
117 {
118 MSG_ERR("Failed to resize %s: %d\n", path.c_str(), errno);
119 throw std::system_error(errno, std::system_category());
120 }
121}
122
William A. Kennington IIId5f1d402018-10-11 13:55:04 -0700123size_t Request::fulfil(const fs::path& path, int flags, void* buf, size_t len)
Andrew Jefferyad343102018-02-28 00:35:50 +1030124{
125 if (!(flags == O_RDONLY || flags == O_RDWR))
Ratan Guptac0ef9872017-06-06 14:31:37 +0530126 {
Andrew Jefferyad343102018-02-28 00:35:50 +1030127 std::stringstream err;
128 err << "Require O_RDONLY (0x" << std::hex << O_RDONLY << " or O_RDWR "
129 << std::hex << O_RDWR << " for flags, got: 0x" << std::hex << flags;
130 throw std::invalid_argument(err.str());
Ratan Guptac0ef9872017-06-06 14:31:37 +0530131 }
132
Andrew Jefferyad343102018-02-28 00:35:50 +1030133 int fd = ::open(path.c_str(), flags);
134 if (fd == -1)
135 {
Andrew Jeffery974507e2018-04-30 15:33:55 +0930136 MSG_ERR("Failed to open backing file at '%s': %d\n", path.c_str(),
137 errno);
Andrew Jefferyad343102018-02-28 00:35:50 +1030138 throw std::system_error(errno, std::system_category());
139 }
140
Andrew Jefferycc650612018-08-30 12:17:59 +0930141 if (flags == O_RDONLY)
142 {
143 MSG_INFO("Fulfilling read request against %s at offset 0x%zx into %p "
144 "for %zu\n",
145 path.c_str(), offset, buf, len);
146 }
147 else
148 {
149 MSG_INFO("Fulfilling write request against %s at offset 0x%zx from %p "
150 "for %zu\n",
151 path.c_str(), offset, buf, len);
152 }
153
Andrew Jeffery1a3f8432018-03-02 10:18:02 +1030154 size_t fileSize = fs::file_size(path);
Andrew Jefferyad343102018-02-28 00:35:50 +1030155 int mprot = PROT_READ | ((flags == O_RDWR) ? PROT_WRITE : 0);
Andrew Jeffery1a3f8432018-03-02 10:18:02 +1030156 auto map = mmap(NULL, fileSize, mprot, MAP_SHARED, fd, 0);
Andrew Jefferyad343102018-02-28 00:35:50 +1030157 if (map == MAP_FAILED)
158 {
159 close(fd);
Andrew Jeffery1a3f8432018-03-02 10:18:02 +1030160 MSG_ERR("Failed to map backing file '%s' for %zd bytes: %d\n",
161 path.c_str(), fileSize, errno);
Andrew Jefferyad343102018-02-28 00:35:50 +1030162 throw std::system_error(errno, std::system_category());
163 }
164
165 // copy to the reserved memory area
166 if (flags == O_RDONLY)
167 {
Andrew Jeffery1a3f8432018-03-02 10:18:02 +1030168 memset(buf, 0xff, len);
William A. Kennington IIId5f1d402018-10-11 13:55:04 -0700169 memcpy(buf, (char*)map + offset, std::min(len, fileSize));
Andrew Jefferyad343102018-02-28 00:35:50 +1030170 }
171 else
172 {
William A. Kennington IIId5f1d402018-10-11 13:55:04 -0700173 memcpy((char*)map + offset, buf, len);
Evan Lojewskif1e547c2019-03-14 14:34:33 +1030174 backend_set_bytemap(backend, base + offset, len, FLASH_DIRTY);
Andrew Jefferyad343102018-02-28 00:35:50 +1030175 }
Andrew Jeffery1a3f8432018-03-02 10:18:02 +1030176 munmap(map, fileSize);
Andrew Jefferyad343102018-02-28 00:35:50 +1030177 close(fd);
178
179 return len;
Ratan Guptac0ef9872017-06-06 14:31:37 +0530180}
181
Andrew Jefferyf34db312018-03-09 15:27:03 +1030182} // namespace virtual_pnor
183} // namespace openpower