Merge from Widevine repo of two CLs. Merge from Widevine repo of http://go/wvgerrit/94743 A license release should not have a core message. This CL adjusts the existing unit tests to verify this. There is also a new unit test called SecureStop that explicitly tests sending a secure stop in a new session without first loading the license. Merge from Widevine repo of http://go/wvgerrit/94865 This CL has the following changes copied from google3: http://cr/298871728 Remove odk_static_assert for Message size temporarily http://cr/298755935 Fix a compiling error during macro expansion http://cr/298481745 Add missing header for android http://cr/298448142 Fix odk_test gyp file http://cr/298419641 Remove header from Android.bp http://cr/298402053 Separate sizeOf(args) bytes in fuzz tests http://cr/297730316 No core messages for license release http://cr/297714346 Add copybara_test and piper_sot_to_gerrit http://cr/297636713 Adding some comments around boolean conversion code http://cr/297420679 Autofuzzer when ran with address sanitizer ... http://cr/296513584 Minor fix with fuzzing odk clock values http://cr/296322024 Fixing errors in code with how request ... http://cr/296313159 Fuzzing ODK clock values by setting aside ... http://cr/295763207 Add more odk tests and move helper functions to test helper http://cr/294524098 Adding a Build Rule for ODK_KDO_Fuzzer and updating http://cr/294492213 Address a few review comments of ODK http://cr/293674368 odk_fuzz: add TODOs & comments http://cr/293492806 Fix spelling Bug: 150243585 Bug: 150020278 Bug: 150095506 Bug: 147297226 Bug: 148290294 Bug: 148907684 Bug: 150608451 Test: unit tests Change-Id: I25fd406f29f4eba40f5cb27e9a1317dce4ffc2f5
97 lines
3.1 KiB
C
97 lines
3.1 KiB
C
/* Copyright 2019 Google LLC. All rights reserved. This file and proprietary */
|
|
/* source code may only be used and distributed under the Widevine Master */
|
|
/* License Agreement. */
|
|
|
|
#ifndef WIDEVINE_ODK_SRC_SERIALIZATION_BASE_H_
|
|
#define WIDEVINE_ODK_SRC_SERIALIZATION_BASE_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#include "OEMCryptoCENCCommon.h"
|
|
|
|
#define SIZE_OF_MESSAGE_STRUCT 64
|
|
|
|
/*
|
|
* Description:
|
|
* Point |msg| to stack-array |blk|.
|
|
* |blk| is guaranteed large enough to hold a |Message| struct.
|
|
* |blk| cannot be used in the same scope as a variable name.
|
|
* |msg| points to valid memory in the same scope |AllocateMessage| is used.
|
|
* Parameters:
|
|
* msg: pointer to pointer to |Message| struct
|
|
* blk: variable name for stack-array
|
|
*/
|
|
#define AllocateMessage(msg, blk) \
|
|
uint8_t blk[SIZE_OF_MESSAGE_STRUCT]; \
|
|
*(msg) = (Message*)(blk)
|
|
|
|
typedef struct _Message Message;
|
|
|
|
typedef enum {
|
|
MESSAGE_STATUS_OK,
|
|
MESSAGE_STATUS_UNKNOWN_ERROR,
|
|
MESSAGE_STATUS_OVERFLOW_ERROR,
|
|
MESSAGE_STATUS_UNDERFLOW_ERROR,
|
|
MESSAGE_STATUS_PARSE_ERROR,
|
|
MESSAGE_STATUS_NULL_POINTER_ERROR,
|
|
MESSAGE_STATUS_API_VALUE_ERROR
|
|
} MessageStatus;
|
|
|
|
bool ValidMessage(Message* message);
|
|
|
|
void Pack_enum(Message* message, int value);
|
|
void Pack_bool(Message* message, const bool* value);
|
|
void Pack_uint16_t(Message* message, const uint16_t* value);
|
|
void Pack_uint32_t(Message* message, const uint32_t* value);
|
|
void Pack_uint64_t(Message* message, const uint64_t* value);
|
|
void PackArray(Message* message, const uint8_t* base, size_t size);
|
|
void Pack_OEMCrypto_Substring(Message* msg, const OEMCrypto_Substring* obj);
|
|
|
|
int Unpack_enum(Message* message);
|
|
void Unpack_bool(Message* message, bool* value);
|
|
void Unpack_uint16_t(Message* message, uint16_t* value);
|
|
void Unpack_uint32_t(Message* message, uint32_t* value);
|
|
void Unpack_uint64_t(Message* message, uint64_t* value);
|
|
void UnpackArray(Message* message, uint8_t* address,
|
|
size_t size); /* copy out */
|
|
void Unpack_OEMCrypto_Substring(Message* msg, OEMCrypto_Substring* obj);
|
|
|
|
/*
|
|
* Create a message from a buffer. The message structure consumes the first
|
|
* sizeof(Message) bytes of the buffer. The caller is responsible for ensuring
|
|
* that the buffer remains allocated for the lifetime of the message.
|
|
*/
|
|
Message* CreateMessage(uint8_t* buffer, size_t buffer_size);
|
|
|
|
/*
|
|
* Initialize a message structure to reference a separate buffer. The caller
|
|
* is responsible for ensuring that the buffer remains allocated for the
|
|
* lifetime of the message.
|
|
*/
|
|
void InitMessage(Message* message, uint8_t* buffer, size_t capacity);
|
|
|
|
/*
|
|
* Reset an existing the message to an empty state
|
|
*/
|
|
void ResetMessage(Message* message);
|
|
uint8_t* GetBase(Message* message);
|
|
size_t GetCapacity(Message* message);
|
|
size_t GetSize(Message* message);
|
|
void SetSize(Message* message, size_t size);
|
|
MessageStatus GetStatus(Message* message);
|
|
void SetStatus(Message* message, MessageStatus status);
|
|
size_t GetOffset(Message* message);
|
|
|
|
size_t SizeOfMessageStruct();
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif /* WIDEVINE_ODK_SRC_SERIALIZATION_BASE_H_ */
|