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
96 lines
3.0 KiB
C
96 lines
3.0 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_ODK_STRUCTS_PRIV_H_
|
|
#define WIDEVINE_ODK_SRC_ODK_STRUCTS_PRIV_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "OEMCryptoCENCCommon.h"
|
|
#include "odk_structs.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef enum {
|
|
ODK_License_Request_Type = 1,
|
|
ODK_License_Response_Type = 2,
|
|
ODK_Renewal_Request_Type = 3,
|
|
ODK_Renewal_Response_Type = 4,
|
|
ODK_Provisioning_Request_Type = 5,
|
|
ODK_Provisioning_Response_Type = 6,
|
|
} ODK_MessageType;
|
|
|
|
typedef struct {
|
|
uint32_t message_type;
|
|
uint32_t message_length;
|
|
ODK_NonceValues nonce_values;
|
|
} ODK_CoreMessage;
|
|
|
|
typedef struct {
|
|
ODK_CoreMessage core_message;
|
|
} ODK_PreparedLicenseRequest;
|
|
|
|
typedef struct {
|
|
ODK_CoreMessage core_message;
|
|
uint64_t playback_time;
|
|
} ODK_PreparedRenewalRequest;
|
|
|
|
typedef struct {
|
|
ODK_CoreMessage core_message;
|
|
uint32_t device_id_length;
|
|
uint8_t device_id[ODK_DEVICE_ID_LEN_MAX];
|
|
} ODK_PreparedProvisioningRequest;
|
|
|
|
typedef struct {
|
|
ODK_PreparedLicenseRequest request;
|
|
ODK_ParsedLicense* parsed_license;
|
|
uint8_t request_hash[ODK_SHA256_HASH_SIZE];
|
|
} ODK_LicenseResponse;
|
|
|
|
typedef struct {
|
|
ODK_PreparedRenewalRequest request;
|
|
uint64_t renewal_duration_seconds;
|
|
} ODK_RenewalResponse;
|
|
|
|
typedef struct {
|
|
ODK_PreparedProvisioningRequest request;
|
|
ODK_ParsedProvisioning* parsed_provisioning;
|
|
} ODK_ProvisioningResponse;
|
|
|
|
#define ODK_LICENSE_REQUEST_SIZE 20
|
|
#define ODK_RENEWAL_REQUEST_SIZE 28
|
|
#define ODK_PROVISIONING_REQUEST_SIZE 88
|
|
|
|
/* These are the possible timer status values. */
|
|
#define ODK_CLOCK_TIMER_STATUS_UNDEFINED 0 /* Should not happen. */
|
|
/* When the structure has been initialized, but no license is loaded. */
|
|
#define ODK_CLOCK_TIMER_STATUS_LICENSE_NOT_LOADED 1
|
|
/* After the license is loaded, before a successful decrypt. */
|
|
#define ODK_CLOCK_TIMER_STATUS_LICENSE_LOADED 2
|
|
/* After the license is loaded, if a renewal has also been loaded. */
|
|
#define ODK_CLOCK_TIMER_STATUS_RENEWAL_LOADED 3
|
|
/* The first decrypt has occurred and the timer is active. */
|
|
#define ODK_CLOCK_TIMER_STATUS_ACTIVE 4
|
|
/* The first decrypt has occurred and the timer is unlimited. */
|
|
#define ODK_CLOCK_TIMER_STATUS_UNLIMITED 5
|
|
/* The timer has transitioned from active to expired. */
|
|
#define ODK_CLOCK_TIMER_STATUS_EXPIRED 6
|
|
/* The license has been marked as inactive. */
|
|
#define ODK_CLOCK_TIMER_STATUS_LICENSE_INACTIVE 7
|
|
|
|
/* A helper function for computing timer limits when a renewal is loaded. */
|
|
OEMCryptoResult ODK_ComputeRenewalDuration(const ODK_TimerLimits* timer_limits,
|
|
ODK_ClockValues* clock_values,
|
|
uint64_t system_time_seconds,
|
|
uint64_t new_renewal_duration,
|
|
uint64_t* timer_value);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* WIDEVINE_ODK_SRC_ODK_STRUCTS_PRIV_H_ */
|