blob: a18a9803338e6303a8a6df48eef2ed345e60ad41 [file] [log] [blame]
Kun Yi64dc05c2018-12-19 13:19:03 -08001#include "binarystore.hpp"
2
Kun Yi97be3af2019-03-05 22:43:41 -08003#include "sys_file.hpp"
4
5#include <sys/types.h>
Kun Yid2d8cb62019-01-10 15:06:12 -08006#include <unistd.h>
7
Kun Yi6baa7132019-01-08 21:21:02 -08008#include <algorithm>
9#include <blobs-ipmid/blobs.hpp>
Kun Yi70059172019-02-22 16:31:42 -080010#include <boost/endian/arithmetic.hpp>
Kun Yid2d8cb62019-01-10 15:06:12 -080011#include <cstdint>
12#include <memory>
Kun Yi8bcf79d2019-01-16 15:17:57 -080013#include <phosphor-logging/elog.hpp>
Kun Yid2d8cb62019-01-10 15:06:12 -080014#include <string>
15#include <vector>
16
17#include "binaryblob.pb.h"
18
19using std::size_t;
20using std::uint16_t;
21using std::uint32_t;
22using std::uint64_t;
23using std::uint8_t;
Kun Yi6baa7132019-01-08 21:21:02 -080024
Kun Yi64dc05c2018-12-19 13:19:03 -080025namespace binstore
26{
27
Kun Yi8bcf79d2019-01-16 15:17:57 -080028using namespace phosphor::logging;
29
Kun Yi64dc05c2018-12-19 13:19:03 -080030std::unique_ptr<BinaryStoreInterface>
31 BinaryStore::createFromConfig(const std::string& baseBlobId,
Kun Yi2765b642019-01-16 11:11:24 -080032 std::unique_ptr<SysFile> file,
33 uint32_t maxSize)
Kun Yi64dc05c2018-12-19 13:19:03 -080034{
Kun Yi2765b642019-01-16 11:11:24 -080035 if (baseBlobId.empty() || !file)
36 {
Kun Yi8bcf79d2019-01-16 15:17:57 -080037 log<level::ERR>("Unable to create binarystore from invalid config",
38 entry("BASE_ID=%s", baseBlobId.c_str()));
Kun Yi2765b642019-01-16 11:11:24 -080039 return nullptr;
40 }
41
42 auto store =
43 std::make_unique<BinaryStore>(baseBlobId, std::move(file), maxSize);
44
Kun Yi8ca234e2019-03-04 10:14:45 -080045 if (!store->loadSerializedData())
46 {
47 return nullptr;
48 }
49
Kun Yi2765b642019-01-16 11:11:24 -080050 return std::move(store);
Kun Yi64dc05c2018-12-19 13:19:03 -080051}
52
Kun Yi97be3af2019-03-05 22:43:41 -080053bool BinaryStore::loadSerializedData()
54{
55 /* Load blob from sysfile if we know it might not match what we have.
56 * Note it will overwrite existing unsaved data per design. */
57 if (commitState_ == CommitState::Clean)
58 {
59 return true;
60 }
61
62 log<level::NOTICE>("Try loading blob from persistent data",
63 entry("BASE_ID=%s", baseBlobId_.c_str()));
64 try
65 {
66 /* Parse length-prefixed format to protobuf */
67 boost::endian::little_uint64_t size = 0;
68 file_->readToBuf(0, sizeof(size), reinterpret_cast<char*>(&size));
69
70 if (!blob_.ParseFromString(file_->readAsStr(sizeof(uint64_t), size)))
71 {
72 /* Fail to parse the data, which might mean no preexsiting blobs
73 * and is a valid case to handle. Simply init an empty binstore. */
74 log<level::WARNING>(
75 "Fail to parse. There might be no persisted blobs",
76 entry("BASE_ID=%s", baseBlobId_.c_str()));
77 }
78 }
79 catch (const std::exception& e)
80 {
81 /* Read causes unexpected system-level failure */
82 log<level::ERR>("Reading from sysfile failed",
83 entry("ERROR=%s", e.what()));
84 return false;
85 }
86
Kun Yi8ca234e2019-03-04 10:14:45 -080087 if (blob_.blob_base_id() != baseBlobId_)
88 {
89 /* Uh oh, stale data loaded. Clean it and commit. */
90 // TODO: it might be safer to add an option in config to error out
91 // instead of to overwrite.
92 log<level::ERR>("Stale blob data, resetting internals...",
93 entry("LOADED=%s", blob_.blob_base_id().c_str()),
94 entry("EXPECTED=%s", baseBlobId_.c_str()));
95 blob_.Clear();
96 blob_.set_blob_base_id(baseBlobId_);
97 return this->commit();
98 }
99
Kun Yi97be3af2019-03-05 22:43:41 -0800100 return true;
101}
102
Kun Yi64dc05c2018-12-19 13:19:03 -0800103std::string BinaryStore::getBaseBlobId() const
104{
105 return baseBlobId_;
106}
107
108std::vector<std::string> BinaryStore::getBlobIds() const
109{
110 std::vector<std::string> result;
111 result.push_back(baseBlobId_);
112
Kun Yi0a940b92019-01-07 16:33:11 -0800113 for (const auto& blob : blob_.blobs())
Kun Yi64dc05c2018-12-19 13:19:03 -0800114 {
Kun Yi0a940b92019-01-07 16:33:11 -0800115 result.push_back(blob.blob_id());
Kun Yi64dc05c2018-12-19 13:19:03 -0800116 }
117
118 return result;
119}
120
121bool BinaryStore::openOrCreateBlob(const std::string& blobId, uint16_t flags)
122{
Kun Yi6baa7132019-01-08 21:21:02 -0800123 if (!(flags & blobs::OpenFlags::read))
124 {
Kun Yi8bcf79d2019-01-16 15:17:57 -0800125 log<level::ERR>("OpenFlags::read not specified when opening",
126 entry("BLOB_ID=%s", blobId.c_str()));
Kun Yi6baa7132019-01-08 21:21:02 -0800127 return false;
128 }
129
130 if (currentBlob_ && (currentBlob_->blob_id() != blobId))
131 {
Kun Yi8bcf79d2019-01-16 15:17:57 -0800132 log<level::ERR>("Already handling a different blob",
133 entry("EXPECTED=%s", currentBlob_->blob_id().c_str()),
134 entry("RECEIVED=%s", blobId.c_str()));
Kun Yi6baa7132019-01-08 21:21:02 -0800135 return false;
136 }
137
138 writable_ = flags & blobs::OpenFlags::write;
139
Kun Yi97be3af2019-03-05 22:43:41 -0800140 /* If there are uncommitted data, discard them. */
141 if (!this->loadSerializedData())
Kun Yid297c9f2019-01-09 13:52:30 -0800142 {
Kun Yi97be3af2019-03-05 22:43:41 -0800143 return false;
Kun Yid297c9f2019-01-09 13:52:30 -0800144 }
145
Kun Yi6baa7132019-01-08 21:21:02 -0800146 /* Iterate and find if there is an existing blob with this id.
147 * blobsPtr points to a BinaryBlob container with STL-like semantics*/
148 auto blobsPtr = blob_.mutable_blobs();
149 auto blobIt =
150 std::find_if(blobsPtr->begin(), blobsPtr->end(),
151 [&](const auto& b) { return b.blob_id() == blobId; });
152
153 if (blobIt != blobsPtr->end())
154 {
155 currentBlob_ = &(*blobIt);
156 return true;
157 }
158
159 /* Otherwise, create the blob and append it */
160 currentBlob_ = blob_.add_blobs();
161 currentBlob_->set_blob_id(blobId);
162
Kun Yi8bcf79d2019-01-16 15:17:57 -0800163 log<level::NOTICE>("Created new blob", entry("BLOB_ID=%s", blobId.c_str()));
Kun Yi6baa7132019-01-08 21:21:02 -0800164 return true;
Kun Yi64dc05c2018-12-19 13:19:03 -0800165}
166
167bool BinaryStore::deleteBlob(const std::string& blobId)
168{
169 return false;
170}
171
172std::vector<uint8_t> BinaryStore::read(uint32_t offset, uint32_t requestedSize)
173{
Kun Yi6967b772019-02-22 13:48:12 -0800174 std::vector<uint8_t> result;
175
176 if (!currentBlob_)
177 {
Kun Yi8bcf79d2019-01-16 15:17:57 -0800178 log<level::ERR>("No open blob to read");
Kun Yi6967b772019-02-22 13:48:12 -0800179 return result;
180 }
181
182 auto dataPtr = currentBlob_->mutable_data();
183
184 /* If it is out of bound, return empty vector */
185 if (offset >= dataPtr->size())
186 {
Kun Yi8bcf79d2019-01-16 15:17:57 -0800187 log<level::ERR>("Read offset is beyond data size",
188 entry("MAX_SIZE=0x%x", dataPtr->size()),
189 entry("RECEIVED_OFFSET=0x%x", offset));
Kun Yi6967b772019-02-22 13:48:12 -0800190 return result;
191 }
192
193 uint32_t requestedEndPos = offset + requestedSize;
194
195 result = std::vector<uint8_t>(
196 dataPtr->begin() + offset,
197 std::min(dataPtr->begin() + requestedEndPos, dataPtr->end()));
Kun Yi64dc05c2018-12-19 13:19:03 -0800198 return result;
199}
200
201bool BinaryStore::write(uint32_t offset, const std::vector<uint8_t>& data)
202{
Kun Yi6967b772019-02-22 13:48:12 -0800203 if (!currentBlob_)
204 {
Kun Yi8bcf79d2019-01-16 15:17:57 -0800205 log<level::ERR>("No open blob to write");
Kun Yi6967b772019-02-22 13:48:12 -0800206 return false;
207 }
208
209 if (!writable_)
210 {
Kun Yi8bcf79d2019-01-16 15:17:57 -0800211 log<level::ERR>("Open blob is not writable");
Kun Yi6967b772019-02-22 13:48:12 -0800212 return false;
213 }
214
215 auto dataPtr = currentBlob_->mutable_data();
216
217 if (offset > dataPtr->size())
218 {
Kun Yi8bcf79d2019-01-16 15:17:57 -0800219 log<level::ERR>("Write would leave a gap with undefined data. Return.");
Kun Yi6967b772019-02-22 13:48:12 -0800220 return false;
221 }
222
223 /* Copy (overwrite) the data */
224 if (offset + data.size() > dataPtr->size())
225 {
226 dataPtr->resize(offset + data.size()); // not enough space, extend
227 }
228 std::copy(data.begin(), data.end(), dataPtr->begin() + offset);
229 return true;
Kun Yi64dc05c2018-12-19 13:19:03 -0800230}
231
232bool BinaryStore::commit()
233{
Kun Yi70059172019-02-22 16:31:42 -0800234 /* Store as little endian to be platform agnostic. Consistent with read. */
Kun Yid297c9f2019-01-09 13:52:30 -0800235 auto blobData = blob_.SerializeAsString();
Kun Yi70059172019-02-22 16:31:42 -0800236 boost::endian::little_uint64_t sizeLE = blobData.size();
237 std::string commitData(sizeLE.data(), sizeof(sizeLE));
Kun Yid297c9f2019-01-09 13:52:30 -0800238 commitData += blobData;
239
240 try
241 {
242 file_->writeStr(commitData, 0);
243 }
244 catch (const std::exception& e)
245 {
Kun Yid297c9f2019-01-09 13:52:30 -0800246 commitState_ = CommitState::CommitError;
Kun Yi8bcf79d2019-01-16 15:17:57 -0800247 log<level::ERR>("Writing to sysfile failed",
248 entry("ERROR=%s", e.what()));
Kun Yid297c9f2019-01-09 13:52:30 -0800249 return false;
250 };
251
252 commitState_ = CommitState::Clean;
253 return true;
Kun Yi64dc05c2018-12-19 13:19:03 -0800254}
255
256bool BinaryStore::close()
257{
Kun Yi6baa7132019-01-08 21:21:02 -0800258 currentBlob_ = nullptr;
259 writable_ = false;
Kun Yid297c9f2019-01-09 13:52:30 -0800260 commitState_ = CommitState::Dirty;
Kun Yi6baa7132019-01-08 21:21:02 -0800261 return true;
Kun Yi64dc05c2018-12-19 13:19:03 -0800262}
263
264bool BinaryStore::stat()
265{
266 return false;
267}
268
269} // namespace binstore