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 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
|
/* C:B**************************************************************************
This software is Copyright 2014-2017 Bright Plaza Inc. <drivetrust@drivetrust.com>
This file is part of sedutil.
sedutil is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
sedutil is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with sedutil. If not, see <http://www.gnu.org/licenses/>.
* C:E********************************************************************** */
#pragma once
/*
* Define the structures and enums needed to map the
* Opal SSC Pseudo code to procedures.
*
* no effort has been made to be complete, these are the values
* that are required for the basic functionality provided in this
* program.
*/
/** User IDs used in the TCG storage SSCs */
static const uint8_t OPALUID[][8]{
// users
{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff}, /**< session management */
{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 }, /**< special "thisSP" syntax */
{ 0x00, 0x00, 0x02, 0x05, 0x00, 0x00, 0x00, 0x01 }, /**< Administrative SP */
{ 0x00, 0x00, 0x02, 0x05, 0x00, 0x00, 0x00, 0x02 }, /**< Locking SP */
{ 0x00, 0x00, 0x02, 0x05, 0x00, 0x01, 0x00, 0x01 }, /**< ENTERPRISE Locking SP */
{ 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x01 }, /**<anybody */
{ 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x06 }, /**< SID */
{ 0x00, 0x00, 0x00, 0x09, 0x00, 0x01, 0x00, 0x01 }, /**< ADMIN1 */
{ 0x00, 0x00, 0x00, 0x09, 0x00, 0x03, 0x00, 0x01 }, /**< USER1 */
{ 0x00, 0x00, 0x00, 0x09, 0x00, 0x03, 0x00, 0x02 }, /**< USER2 */
{ 0x00, 0x00, 0x00, 0x09, 0x00, 0x01, 0xff, 0x01 }, /**< PSID user */
{ 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x80, 0x01 }, /**< BandMaster 0 */
{ 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x84, 0x01 }, /**< EraseMaster */
// tables
{ 0x00, 0x00, 0x08, 0x02, 0x00, 0x00, 0x00, 0x01 }, /**< Locking_GlobalRange */
{ 0x00, 0x00, 0x00, 0x08, 0x00, 0x03, 0xE0, 0x01 }, /**< ACE_Locking_Range_Set_RdLocked UID */
{ 0x00, 0x00, 0x00, 0x08, 0x00, 0x03, 0xE8, 0x01 }, /**< ACE_Locking_Range_Set_WrLocked UID */
{ 0x00, 0x00, 0x00, 0x08, 0x00, 0x03, 0xE0, 0x00 }, /**< ACE_Locking_Range_GLOBAL_Set_RdLocked UID */
{ 0x00, 0x00, 0x00, 0x08, 0x00, 0x03, 0xE8, 0x00 }, /**< ACE_Locking_Range_GLOBAL_Set_WrLocked UID */
{ 0x00, 0x00, 0x00, 0x08, 0x00, 0x03, 0xF8, 0x01 }, /**< ACE_MBRControl_Set_DoneToDOR */
{ 0x00, 0x00, 0x08, 0x03, 0x00, 0x00, 0x00, 0x01 }, /**< MBR Control */
{ 0x00, 0x00, 0x08, 0x04, 0x00, 0x00, 0x00, 0x00 }, /**< Shadow MBR */
{ 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00}, /**< AUTHORITY_TABLE */
{ 0x00, 0x00, 0x00, 0x0B, 0x00, 0x00, 0x00, 0x00}, /**< C_PIN_TABLE */
{ 0x00, 0x00, 0x08, 0x01, 0x00, 0x00, 0x00, 0x01 }, /**< OPAL Locking Info */
{ 0x00, 0x00, 0x08, 0x01, 0x00, 0x00, 0x00, 0x00 }, /**< Enterprise Locking Info */
//C_PIN_TABLE object ID's
{ 0x00, 0x00, 0x00, 0x0B, 0x00, 0x00, 0x84, 0x02}, /**< C_PIN_MSID */
{ 0x00, 0x00, 0x00, 0x0B, 0x00, 0x00, 0x00, 0x01}, /**< C_PIN_SID */
{ 0x00, 0x00, 0x00, 0x0B, 0x00, 0x01, 0x00, 0x01}, /**< C_PIN_ADMIN1 */
//half UID's (only first 4 bytes used)
{ 0x00, 0x00, 0x0C, 0x05, 0xff, 0xff, 0xff, 0xff }, /** Half-UID – Authority_object_ref */
{ 0x00, 0x00, 0x04, 0x0E, 0xff, 0xff, 0xff, 0xff }, /** Half-UID – Boolean ACE */
// special value for omitted optional parameter
{ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff}, /**< HEXFF for omitted */
};
/** Enum to index OPALUID array */
typedef enum _OPAL_UID {
// users
OPAL_SMUID_UID,
OPAL_THISSP_UID,
OPAL_ADMINSP_UID,
OPAL_LOCKINGSP_UID,
ENTERPRISE_LOCKINGSP_UID,
OPAL_ANYBODY_UID,
OPAL_SID_UID,
OPAL_ADMIN1_UID,
OPAL_USER1_UID,
OPAL_USER2_UID,
OPAL_PSID_UID,
ENTERPRISE_BANDMASTER0_UID,
ENTERPRISE_ERASEMASTER_UID,
// tables
OPAL_LOCKINGRANGE_GLOBAL,
OPAL_LOCKINGRANGE_ACE_RDLOCKED,
OPAL_LOCKINGRANGE_ACE_WRLOCKED,
OPAL_LOCKINGRANGE_GLOBAL_ACE_RDLOCKED,
OPAL_LOCKINGRANGE_GLOBAL_ACE_WRLOCKED,
OPAL_MBRControl_Set_DoneToDOR,
OPAL_MBRCONTROL,
OPAL_MBR,
OPAL_AUTHORITY_TABLE,
OPAL_C_PIN_TABLE,
OPAL_LOCKING_INFO_TABLE,
ENTERPRISE_LOCKING_INFO_TABLE,
//C_PIN_TABLE object ID's
OPAL_C_PIN_MSID,
OPAL_C_PIN_SID,
OPAL_C_PIN_ADMIN1,
//half UID's (only first 4 bytes used)
OPAL_HALF_UID_AUTHORITY_OBJ_REF,
OPAL_HALF_UID_BOOLEAN_ACE,
// omitted optional parameter
OPAL_UID_HEXFF,
} OPAL_UID;
/** TCG Storage SSC Methods.
*/
static const uint8_t OPALMETHOD[][8]{
{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01}, /**< Properties */
{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x02}, /**<STARTSESSION */
{ 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x02, 0x02}, /**< Revert */
{ 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x02, 0x03}, /**< Activate */
{ 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x06 }, /**< Enterprise Get */
{ 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07 }, /**< Enterprise Set */
{ 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x08}, /**< NEXT */
{ 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x0c }, /**< Enterprise Authenticate */
{ 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x0d}, /**< GetACL */
{ 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x10}, /**< GenKey */
{ 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x11}, /**< revertSP */
{ 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x16}, /**<Get */
{ 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x17}, /**< Set */
{ 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x1c}, /**< Authenticate */
{ 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x06, 0x01}, /**< Random */
{ 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x08, 0x03 }, /**< Erase */
};
/** Enum for indexing the OPALMETHOD array */
typedef enum _OPAL_METHOD {
PROPERTIES,
STARTSESSION,
REVERT,
ACTIVATE,
EGET,
ESET,
NEXT,
EAUTHENTICATE,
GETACL,
GENKEY,
REVERTSP,
GET,
SET,
AUTHENTICATE,
RANDOM,
ERASE,
} OPAL_METHOD;
/** Opal SSC TOKENS
* Single byte non atom tokens used in Opal SSC psuedo code
*/
typedef enum _OPAL_TOKEN {
//Boolean
OPAL_TRUE = 0x01,
OPAL_FALSE = 0x00,
OPAL_BOOLEAN_EXPR = 0x03,
// cellblocks
TABLE = 0x00,
STARTROW = 0x01,
ENDROW = 0x02,
STARTCOLUMN = 0x03,
ENDCOLUMN = 0x04,
VALUES = 0x01,
// authority table
PIN = 0x03,
// locking tokens
RANGESTART = 0x03,
RANGELENGTH = 0x04,
READLOCKENABLED = 0x05,
WRITELOCKENABLED = 0x06,
READLOCKED = 0x07,
WRITELOCKED = 0x08,
ACTIVEKEY = 0x0A,
//locking info table
MAXRANGES = 0x04,
// mbr control
MBRENABLE = 0x01,
MBRDONE = 0x02,
// properties
HOSTPROPERTIES =0x00,
// response tokenis() returned values
DTA_TOKENID_BYTESTRING = 0xe0,
DTA_TOKENID_SINT = 0xe1,
DTA_TOKENID_UINT = 0xe2,
DTA_TOKENID_TOKEN = 0xe3, // actual token is returned
// atoms
STARTLIST = 0xf0,
ENDLIST = 0xf1,
STARTNAME = 0xf2,
ENDNAME = 0xf3,
CALL = 0xf8,
ENDOFDATA = 0xf9,
ENDOFSESSION = 0xfa,
STARTTRANSACTON = 0xfb,
ENDTRANSACTON = 0xfC,
EMPTYATOM = 0xff,
WHERE = 0x00,
} OPAL_TOKEN;
/** Useful tiny atoms.
* Useful for table columns etc
*/
typedef enum _OPAL_TINY_ATOM {
UINT_00 = 0x00,
UINT_01 = 0x01,
UINT_02 = 0x02,
UINT_03 = 0x03,
UINT_04 = 0x04,
UINT_05 = 0x05,
UINT_06 = 0x06,
UINT_07 = 0x07,
UINT_08 = 0x08,
UINT_09 = 0x09,
UINT_10 = 0x0a,
UINT_11 = 0x0b,
UINT_12 = 0x0c,
UINT_13 = 0x0d,
UINT_14 = 0x0e,
UINT_15 = 0x0f,
} OPAL_TINY_ATOM;
/** Useful short atoms.
*/
typedef enum _OPAL_SHORT_ATOM {
UINT_3 = 0x83,
BYTESTRING4 = 0xa4,
BYTESTRING8 = 0xa8,
} OPAL_SHORT_ATOM;
/** Locking state for a locking range */
typedef enum _OPAL_LOCKINGSTATE {
READWRITE = 0x01,
READONLY = 0x02,
LOCKED = 0x03,
ARCHIVELOCKED = 0x04,
ARCHIVEUNLOCKED = 0x05,
} OPAL_LOCKINGSTATE;
/*
* Structures to build and decode the Opal SSC messages
* fields that are NOT really numeric are defined as uint8_t[] to
* help reduce the endianess issues
*/
/** method status codes.
*/
typedef enum _OPALSTATUSCODE {
SUCCESS = 0x00,
NOT_AUTHORIZED = 0x01,
// OBSOLETE = 0x02,
SP_BUSY = 0x03,
SP_FAILED = 0x04,
SP_DISABLED = 0x05,
SP_FROZEN = 0x06,
NO_SESSIONS_AVAILABLE = 0x07,
UNIQUENESS_CONFLICT = 0x08,
INSUFFICIENT_SPACE = 0x09,
INSUFFICIENT_ROWS = 0x0A,
INVALID_FUNCTION = 0x0B, // defined in early specs, still used in some firmware
INVALID_PARAMETER = 0x0C,
INVALID_REFERENCE = 0x0D,
// OBSOLETE = 0x0E,
TPER_MALFUNCTION = 0x0F,
TRANSACTION_FAILURE = 0x10,
RESPONSE_OVERFLOW = 0x11,
AUTHORITY_LOCKED_OUT = 0x12,
FAIL = 0x3f,
} OPALSTATUSCODE;
|