// Copyright 2017 The BoringSSL Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // https://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #include #include #include #include #include #include #include "internal.h" bool ReadAll(std::vector *out, FILE *file) { out->clear(); constexpr size_t kMaxSize = 1024 * 1024; size_t len = 0; out->resize(128); for (;;) { len += fread(out->data() + len, 1, out->size() - len, file); if (feof(file)) { out->resize(len); return true; } if (ferror(file)) { return false; } if (len == out->size()) { if (out->size() == kMaxSize) { fprintf(stderr, "Input too large.\n"); return false; } size_t cap = std::min(out->size() * 2, kMaxSize); out->resize(cap); } } } bool WriteToFile(const std::string &path, bssl::Span in) { ScopedFILE file(fopen(path.c_str(), "wb")); if (!file) { fprintf(stderr, "Failed to open '%s': %s\n", path.c_str(), strerror(errno)); return false; } if (fwrite(in.data(), in.size(), 1, file.get()) != 1) { fprintf(stderr, "Failed to write to '%s': %s\n", path.c_str(), strerror(errno)); return false; } return true; }