blob: 90156f78fa198774eb8fdd0e5a3afeeea8c1cff1 [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
Andrew Jefferye2744c02020-01-28 15:08:13 +1030106/* Perform reads and writes for an entire buffer's worth of data
107 *
108 * Post-condition: All bytes read or written, or an error has occurred
109 *
110 * Yields 0 if the entire buffer was processed, otherwise -1
111 */
112#define fd_process_all(fn, fd, src, len) \
113 ({ \
114 size_t __len = len; \
115 ssize_t __accessed = 0; \
116 do \
117 { \
118 __len -= __accessed; \
119 __accessed = TEMP_FAILURE_RETRY(fn(fd, src, __len)); \
120 } while (__len > 0 && __accessed > 0); \
121 __len ? -1 : 0; \
122 })
123
124ssize_t Request::read(void* dst, size_t len)
Andrew Jeffery1a3f8432018-03-02 10:18:02 +1030125{
Andrew Jefferye2744c02020-01-28 15:08:13 +1030126 len = clamp(len);
127
128 fs::path path = getPartitionFilePath(O_RDONLY);
129
130 MSG_INFO("Fulfilling read request against %s at offset 0x%zx into %p "
131 "for %zu\n",
132 path.c_str(), offset, dst, len);
133
Andrew Jeffery1a3f8432018-03-02 10:18:02 +1030134 size_t fileSize = fs::file_size(path);
Andrew Jeffery1a3f8432018-03-02 10:18:02 +1030135
Andrew Jeffery5b970442020-01-31 16:49:22 +1030136 size_t access_len = 0;
137 if (offset < fileSize)
Andrew Jefferyad343102018-02-28 00:35:50 +1030138 {
Andrew Jeffery5b970442020-01-31 16:49:22 +1030139 int fd = ::open(path.c_str(), O_RDONLY);
140 if (fd == -1)
141 {
142 MSG_ERR("Failed to open backing file at '%s': %d\n", path.c_str(),
143 errno);
144 throw std::system_error(errno, std::system_category());
145 }
Andrew Jefferyad343102018-02-28 00:35:50 +1030146
Andrew Jeffery5b970442020-01-31 16:49:22 +1030147 int rc = lseek(fd, offset, SEEK_SET);
148 if (rc < 0)
149 {
150 MSG_ERR("Failed to seek to %zu in %s (%zu bytes): %d\n", offset,
151 path.c_str(), fileSize, errno);
152 throw std::system_error(errno, std::system_category());
153 }
Andrew Jefferyad343102018-02-28 00:35:50 +1030154
Andrew Jeffery5b970442020-01-31 16:49:22 +1030155 access_len = std::min(len, fileSize - offset);
156 rc = fd_process_all(::read, fd, dst, access_len);
157 if (rc < 0)
158 {
159 MSG_ERR(
160 "Requested %zu bytes but failed to read %zu from %s (%zu) at "
Andrew Jefferye2744c02020-01-28 15:08:13 +1030161 "%zu: %d\n",
162 len, access_len, path.c_str(), fileSize, offset, errno);
Andrew Jeffery5b970442020-01-31 16:49:22 +1030163 throw std::system_error(errno, std::system_category());
164 }
165
166 close(fd);
Andrew Jefferyad343102018-02-28 00:35:50 +1030167 }
Andrew Jefferye2744c02020-01-28 15:08:13 +1030168
169 /* Set any remaining buffer space to the erased state */
170 memset((char*)dst + access_len, 0xff, len - access_len);
171
Andrew Jefferye2744c02020-01-28 15:08:13 +1030172 return len;
173}
174
175ssize_t Request::write(void* dst, size_t len)
176{
177 if (len != clamp(len))
Andrew Jefferyad343102018-02-28 00:35:50 +1030178 {
Andrew Jefferye2744c02020-01-28 15:08:13 +1030179 std::stringstream err;
180 err << "Request size 0x" << std::hex << len << " from offset 0x"
181 << std::hex << offset << " exceeds the partition size 0x"
182 << std::hex << (partition.data.size << backend->block_size_shift);
183 throw OutOfBoundsOffset(err.str());
Andrew Jefferyad343102018-02-28 00:35:50 +1030184 }
Andrew Jefferye2744c02020-01-28 15:08:13 +1030185
186 /* Ensure file is at least the size of the maximum access */
187 fs::path path = getPartitionFilePath(O_RDWR);
188
189 MSG_INFO("Fulfilling write request against %s at offset 0x%zx from %p "
190 "for %zu\n",
191 path.c_str(), offset, dst, len);
192
193 int fd = ::open(path.c_str(), O_RDWR);
194 if (fd == -1)
195 {
196 MSG_ERR("Failed to open backing file at '%s': %d\n", path.c_str(),
197 errno);
198 throw std::system_error(errno, std::system_category());
199 }
200
201 int rc = lseek(fd, offset, SEEK_SET);
202 if (rc < 0)
203 {
204 MSG_ERR("Failed to seek to %zu in %s: %d\n", offset, path.c_str(),
205 errno);
206 throw std::system_error(errno, std::system_category());
207 }
208
209 rc = fd_process_all(::write, fd, dst, len);
210 if (rc < 0)
211 {
212 MSG_ERR("Failed to write %zu bytes to %s at %zu: %d\n", len,
213 path.c_str(), offset, errno);
214 throw std::system_error(errno, std::system_category());
215 }
216 backend_set_bytemap(backend, base + offset, len, FLASH_DIRTY);
217
Andrew Jefferyad343102018-02-28 00:35:50 +1030218 close(fd);
219
220 return len;
Ratan Guptac0ef9872017-06-06 14:31:37 +0530221}
222
Andrew Jefferyf34db312018-03-09 15:27:03 +1030223} // namespace virtual_pnor
224} // namespace openpower