1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
|
/*
* Copyright (C) Jan 2013 Mellanox Technologies Ltd. All rights reserved.
* Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
*
* This software is available to you under a choice of one of two
* licenses. You may choose to be licensed under the terms of the GNU
* General Public License (GPL) Version 2, available from the file
* COPYING in the main directory of this source tree, or the
* OpenIB.org BSD license below:
*
* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the following
* conditions are met:
*
* - Redistributions of source code must retain the above
* copyright notice, this list of conditions and the following
* disclaimer.
*
* - Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
/*
* mlxarchive_mfa2_extension.h
*
* Created on: March 23, 2017
* Author: Ahmad Soboh
*/
#ifndef MLXARCHIVE_MFA2_EXTENSION_H_
#define MLXARCHIVE_MFA2_EXTENSION_H_
#include <string>
#include <vector>
#include <iostream>
#include <compatibility.h>
#include <tools_layouts/tools_open_layouts.h>
#include "mlxarchive_mfa2_element.h"
#include "mfa2_buff.h"
using namespace std;
namespace mfa2
{
class Version
{
public:
Version()
{
major = -1;
minor = -1;
subminor = -1;
}
Version(std::string version) { sscanf(version.c_str(), "%d.%d.%d", &major, &minor, &subminor); }
private:
int major;
int minor;
int subminor;
public:
bool operator>(const Version& other)
{
if (major > other.major)
return true;
if (minor > other.minor)
return true;
if (subminor > other.subminor)
return true;
return false;
}
friend std::ostream& operator<<(std::ostream& stream, const Version& ver)
{
stream << ver.major;
stream << '.';
stream << ver.minor;
stream << '.';
stream << ver.subminor;
return stream;
}
};
class Extension : protected Element
{
protected:
enum ExtensionType
{
VersionExtensionType,
SecurityInfoExtensionType,
ComponentPointerExtensionType,
SHA256ExtensionType,
DescriptorsSHA256ExtensionType,
CommentExtensionType,
PSIDExtensionType,
SourceFileNameExtensionType
};
MFA2Type extensionTypeToMFA2Type(ExtensionType type);
protected:
public:
Extension(u_int8_t vesrion, ExtensionType type, u_int32_t length);
virtual void pack(vector<u_int8_t>& buff) const = 0;
virtual bool unpack(Mfa2Buffer& buff) = 0;
virtual ~Extension(){};
};
class VersionExtension : Extension
{
private:
u_int8_t _major;
u_int16_t _subMinor;
u_int8_t _minor;
u_int8_t _seconds;
u_int8_t _minutes;
u_int8_t _hours;
u_int8_t _day;
u_int8_t _month;
u_int16_t _year;
public:
const static u_int8_t ELEMENT_VERSION = 0x0;
const static u_int32_t LENGTH = TOOLS_OPEN_VERSION_SIZE;
void fillTimeAndDate();
VersionExtension(const string& version);
VersionExtension(const u_int16_t* version, const u_int16_t* fw_rel_date);
void pack(vector<u_int8_t>& buff) const;
bool unpack(Mfa2Buffer& buff);
string getVersion(bool pad_sub_minor) const;
string getDateAndTime() const;
void getDateAndTime(char* buffer) const;
u_int8_t getMajor() const { return _major; }
u_int8_t getMinor() const { return _minor; }
u_int16_t getSubMinor() const { return _subMinor; }
};
class ComponentPointerExtension : Extension
{
private:
u_int16_t _componentIndex;
u_int8_t _storageId; // TODO: use enums
u_int32_t _storageAddress;
public:
const static u_int8_t ELEMENT_VERSION = 0x0;
const static u_int32_t LENGTH = TOOLS_OPEN_COMPONENT_PTR_SIZE;
explicit ComponentPointerExtension(u_int16_t componentIndex) :
Extension(ELEMENT_VERSION, ComponentPointerExtensionType, LENGTH),
_componentIndex(componentIndex),
_storageId(0x1),
_storageAddress(0x0){};
void pack(vector<u_int8_t>& buff) const;
bool unpack(Mfa2Buffer& buff);
u_int16_t getComponentIndex() const { return _componentIndex; }
};
class SHA256Extension : Extension
{
public:
enum SHA256Scope
{
SHA256Scope_Descriptors,
SHA256Scope_All
};
const static u_int8_t ELEMENT_VERSION = 0x0;
const static u_int32_t LENGTH = 0x20;
explicit SHA256Extension(enum SHA256Scope scope);
void setDigest(vector<u_int8_t> digest);
void pack(vector<u_int8_t>& buff) const;
bool unpack(Mfa2Buffer& buff);
private:
vector<u_int8_t> _digest;
ExtensionType scopeToExtensionType(enum SHA256Scope);
};
/*class DescriptorsSHA256Extension : Extension, Extension::Digest {
private:
const static u_int8_t ELEMENT_VERSION = 0x0;
const static u_int32_t LENGTH = Extension::Digest::_length;
public:
DescriptorsSHA256Extension() :
Extension(ELEMENT_VERSION, DescriptorsSHA256ExtensionType, LENGTH) {};
void pack(vector<u_int8_t>& buff) const;
};*/
class StringExtension : public Extension
{
private:
string _str;
public:
StringExtension(u_int8_t vesrion, ExtensionType type, string str) :
Extension(vesrion, type, str.length()), _str(str){};
u_int32_t length() const;
void pack(vector<u_int8_t>& buff) const;
bool unpack(Mfa2Buffer& buff);
const string& getString() const { return _str; }
};
inline u_int32_t StringExtension::length() const
{
return _str.length();
}
class CommentExtension : public StringExtension
{
private:
const static u_int8_t ELEMENT_VERSION = 0x0;
public:
explicit CommentExtension(string comment) : StringExtension(ELEMENT_VERSION, CommentExtensionType, comment){};
};
class PSIDExtension : public StringExtension
{
private:
const static u_int8_t ELEMENT_VERSION = 0x0;
public:
explicit PSIDExtension(string psid) : StringExtension(ELEMENT_VERSION, PSIDExtensionType, psid){};
};
} // namespace mfa2
#endif
|