blob: 49d6d43a530de5a6440f52cc0af1f6a206424f5c [file] [log] [blame]
Hung-Te Lin262668f2010-05-28 10:32:02 -07001// Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5
6#ifndef VBOOT_REFERENCE_GBB_UTILITY_H_
7#define VBOOT_REFERENCE_GBB_UTILITY_H_
8
9#include <string>
Hung-Te Lina59a0292011-01-10 13:37:17 +080010#include <vector>
Hung-Te Lin262668f2010-05-28 10:32:02 -070011#include "gbb_header.h"
12
13namespace vboot_reference {
14
15class GoogleBinaryBlockUtil {
16 public:
Hung-Te Lin21ef1a32010-06-02 18:13:47 -070017 // enumerate of available data fields
18 enum PROPINDEX {
Hung-Te Linfec47592011-08-26 15:13:45 +080019 PROP_FLAGS = -1,// flags (virtual property)
Hung-Te Lin21ef1a32010-06-02 18:13:47 -070020 PROP_HWID, // hardware id
21 PROP_ROOTKEY, // root key
22 PROP_BMPFV, // bitmap FV
Hung-Te Lin08dc5f32010-06-03 14:35:47 -070023 PROP_RCVKEY, // recovery key
Hung-Te Lin21ef1a32010-06-02 18:13:47 -070024 PROP_RANGE, // indicator of valid property range
25 };
26
Hung-Te Lin262668f2010-05-28 10:32:02 -070027 GoogleBinaryBlockUtil();
28 ~GoogleBinaryBlockUtil();
29
30 // load GBB from a BIOS image file.
31 // return true if a valid GBB was retrieved.
32 bool load_from_file(const char *filename);
33
34 // save loaded (and modified) GBB with BIOS image to new file
35 // return true on success.
36 bool save_to_file(const char *filename);
37
Hung-Te Lina59a0292011-01-10 13:37:17 +080038 // create a new GBB blob by providing a list of reserved data size for each
39 // properties, following the order described in GoogleBinaryBlockHeader.
40 // return true on success.
41 bool create_new(const std::vector<uint32_t> &create_param);
42
Hung-Te Linfec47592011-08-26 15:13:45 +080043 // retrieve the value of GBB header flags.
44 // return the flags value.
45 uint32_t get_flags() const;
46
47 // overwrite GBB header flags.
48 // return true on success.
49 bool set_flags(const uint32_t flags);
50
Hung-Te Lin21ef1a32010-06-02 18:13:47 -070051 // retrieve the value of a property from GBB data.
52 // return the property value.
53 std::string get_property(PROPINDEX i) const;
54
55 // overwrite a property in GBB data.
56 // return true on success.
57 bool set_property(PROPINDEX i, const std::string &value);
58
59 // get a readable name by a property index.
60 // return the name for valid properties, otherwise unexpected empty string.
61 std::string get_property_name(PROPINDEX i) const;
62
63 // quick getters and setters of known properties in GBB
64 bool set_hwid(const char *hwid); // NOTE: hwid is NUL-terminated.
Hung-Te Lin262668f2010-05-28 10:32:02 -070065 bool set_rootkey(const std::string &value);
66 bool set_bmpfv(const std::string &value);
Hung-Te Lin08dc5f32010-06-03 14:35:47 -070067 bool set_recovery_key(const std::string &value);
Hung-Te Lin21ef1a32010-06-02 18:13:47 -070068 std::string get_hwid() const { return get_property(PROP_HWID); }
Hung-Te Lin262668f2010-05-28 10:32:02 -070069 std::string get_rootkey() const { return get_property(PROP_ROOTKEY); }
Hung-Te Lin21ef1a32010-06-02 18:13:47 -070070 std::string get_bmpfv() const { return get_property(PROP_BMPFV); }
Hung-Te Lin08dc5f32010-06-03 14:35:47 -070071 std::string get_recovery_key() const { return get_property(PROP_RCVKEY); }
Hung-Te Lin262668f2010-05-28 10:32:02 -070072
73 private:
Hung-Te Lin262668f2010-05-28 10:32:02 -070074 // clear all cached data and initialize to original state
75 void initialize();
76
77 // search and count for GBB signatures in loaded image.
78 // return the number of signatures found.
79 int search_header_signatures(const std::string &image, long *poffset) const;
80
81 // load and check header structure from image by given offset.
82 // return true if a valid GBB header is loaded into *phdr.
83 bool load_gbb_header(const std::string &image, long offset,
84 GoogleBinaryBlockHeader *phdr) const;
85
Hung-Te Lin21ef1a32010-06-02 18:13:47 -070086 // find the size, offset, and name information for given property.
87 // return true if the offset and size are assign to *poffset and *psize;
88 // if pname is not NULL, *pname will hold a pointer to a readable name.
89 // return false if the property index is invalid.
90 bool find_property(PROPINDEX i, uint32_t *poffset, uint32_t *psize,
91 const char **pname) const;
Hung-Te Lin262668f2010-05-28 10:32:02 -070092
93 GoogleBinaryBlockHeader header_; // copy of GBB header from image
94 std::string file_content_; // complete image file content
95 long header_offset_; // offset to GBB header in file_content_
96 bool is_valid_gbb; // if we are holding a valid GBB
97
98 bool verbose; // provide verbose messages
99};
100
101} // namespace vboot_reference
102
103#endif // VBOOT_REFERENCE_GBB_UTILITY_H_