playready/binary_format/
xmr_license.rs

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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
#![allow(dead_code)]

use super::{until_exact_number_of_bytes, StructTag};
use binrw::{helpers::until_eof, BinRead};
use playready_macros::StructTag;

#[derive(BinRead, Debug, Clone, Copy, PartialEq)]
#[br(big, repr = u16)]
pub enum CipherType {
    Invalid = 0x0000,
    Rsa1024 = 0x0001,
    ChainedLicense = 0x0002,
    Ecc256 = 0x0003,
    Ecc256WithKZ = 0x0004,
    TeeTransient = 0x0005,
    Ecc256ViaSymmetric = 0x0006,
    Unknown = 0xffff,
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big, import(length: u32))]
#[struct_tag(0x0001)]
pub struct OuterContainer {
    // 8 = sizeof(flags) + sizeof(type_) + sizeof(length)
    #[br(parse_with = until_exact_number_of_bytes(u64::from(length - 8)))]
    pub containers: Vec<XmrObject>,
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big, import(length: u32))]
#[struct_tag(0x0002)]
pub struct GlobalPolicyContainer {
    // 8 = sizeof(flags) + sizeof(type_) + sizeof(length)
    #[br(parse_with = until_exact_number_of_bytes(u64::from(length - 8)))]
    pub containers: Vec<XmrObject>,
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big, import(length: u32))]
#[struct_tag(0x0004)]
pub struct PlaybackPolicyContainer {
    // 8 = sizeof(flags) + sizeof(type_) + sizeof(length)
    #[br(parse_with = until_exact_number_of_bytes(u64::from(length - 8)))]
    pub containers: Vec<XmrObject>,
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big, import(length: u32))]
#[struct_tag(0x0009)]
pub struct KeyMaterialContainer {
    // 8 = sizeof(flags) + sizeof(type_) + sizeof(length)
    #[br(parse_with = until_exact_number_of_bytes(u64::from(length - 8)))]
    pub containers: Vec<XmrObject>,
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big)]
#[struct_tag(0x0039)]
pub struct PlayEnablerType {
    pub player_enabler_type: [u8; 16],
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big)]
#[struct_tag(0x0029)]
pub struct DomainRestrictionObject {
    pub account_id: [u8; 16],
    pub revision: u32,
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big)]
#[struct_tag(0x0013)]
pub struct IssueDateObject {
    pub issue_date: u32,
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big)]
#[struct_tag(0x0032)]
pub struct RevInfoVersionObject {
    pub sequence: u32,
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big)]
#[struct_tag(0x0034)]
pub struct SecurityLevelObject {
    pub minimum_security_level: u16,
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big)]
#[struct_tag(0x0033)]
pub struct EmbeddedLicenseSettingsObject {
    pub indicator: u16,
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big)]
#[struct_tag(0x002a)]
pub struct ECCKeyObject {
    pub curve_type: u16,
    pub key_length: u16,
    #[br(count = key_length)]
    pub key: Vec<u8>,
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big)]
#[struct_tag(0x000b)]
pub struct SignatureObject {
    pub signature_type: u16,
    pub signature_data_length: u16,
    #[br(count = signature_data_length)]
    pub signature_data: Vec<u8>,
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big)]
#[struct_tag(0x000a)]
pub struct ContentKeyObject {
    pub key_id: [u8; 16],
    pub key_type: u16,
    pub cipher_type: CipherType,
    pub key_length: u16,
    #[br(count = key_length)]
    pub encrypted_key: Vec<u8>,
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big)]
#[struct_tag(0x000d)]
pub struct RightsSettingsObject {
    pub rights: u16,
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big)]
#[struct_tag(0x0005)]
pub struct OutputProtectionLevelRestrictionObject {
    pub minimum_compressed_digital_video_opl: u16,
    pub minimum_uncompressed_digital_video_opl: u16,
    pub minimum_analog_video_opl: u16,
    pub minimum_digital_compressed_audio_opl: u16,
    pub minimum_digital_uncompressed_audio_opl: u16,
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big)]
#[struct_tag(0x0012)]
pub struct ExpirationRestrictionObject {
    pub begin_date: u32,
    pub end_date: u32,
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big)]
#[struct_tag(0x0050)]
pub struct RemovalDateObject {
    pub removal_date: u32,
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big)]
#[struct_tag(0x003b)]
pub struct UplinkKIDObject {
    pub plink_kid: [u8; 16],
    pub chained_checksum_type: u16,
    pub chained_checksum_length: u16,
    #[br(count = chained_checksum_length)]
    pub chained_checksum: Vec<u8>,
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big, import(length: u32))]
#[struct_tag(0x0008)]
pub struct AnalogVideoOutputConfigurationRestriction {
    pub video_output_protection_id: [u8; 16],
    #[br(count = length - 24)]
    pub binary_configuration_data: Vec<u8>,
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big, import(length: u32))]
#[struct_tag(0x0059)]
pub struct DigitalVideoOutputRestrictionObject {
    pub video_output_protection_id: [u8; 16],
    #[br(count = length - 24)]
    pub binary_configuration_data: Vec<u8>,
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big, import(length: u32))]
#[struct_tag(0x0031)]
pub struct DigitalAudioOutputRestrictionObject {
    pub audio_output_protection_id: [u8; 16],
    #[br(count = length - 24)]
    pub binary_configuration_data: Vec<u8>,
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big, import(length: u32))]
#[struct_tag(0x002c)]
pub struct PolicyMetadataObject {
    pub metadata_type: [u8; 16],
    #[br(count = length - 24)]
    pub policy_data: Vec<u8>,
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big)]
#[struct_tag(0x005a)]
pub struct SecureStopRestrictionObject {
    pub metering_id: [u8; 16],
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big)]
#[struct_tag(0x0016)]
pub struct MeteringRestrictionObject {
    pub metering_id: [u8; 16],
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big)]
#[struct_tag(0x0030)]
pub struct ExpirationAfterFirstPlayRestrictionObject {
    pub seconds: u32,
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big)]
#[struct_tag(0x001a)]
pub struct GracePeriodObject {
    pub grace_period: u32,
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big)]
#[struct_tag(0x0022)]
pub struct SourceIdObject {
    pub source_id: u32,
}

#[derive(BinRead, Debug, Clone)]
#[br(big)]
pub struct AuxiliaryKey {
    pub location: u32,
    pub key: [u8; 16],
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big)]
#[struct_tag(0x0051)]
pub struct AuxiliaryKeysObject {
    pub count: u16,
    #[br(count = count)]
    pub auxiliary_keys: Vec<AuxiliaryKey>,
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big)]
#[struct_tag(0x0052)]
pub struct UplinkKeyObject3 {
    pub uplink_key_id: [u8; 16],
    pub chained_length: u16,
    #[br(count = chained_length)]
    pub checksum: Vec<u8>,
    pub count: u16,
    #[br(count = count)]
    pub entries: Vec<u32>,
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big)]
#[struct_tag(0x003a)]
pub struct CopyEnablerObject {
    pub copy_enabler_type: [u8; 16],
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big)]
#[struct_tag(0x003d)]
pub struct CopyCountRestrictionObject {
    pub count: u32,
}

#[derive(BinRead, StructTag, Debug, Clone)]
#[br(big)]
#[struct_tag(0x0037)]
pub struct MoveObject {
    pub minimum_move_protection_level: u32,
}

#[derive(BinRead, Debug, Clone)]
#[br(big, import { type_: u16, length: u32})]
pub enum XmrObjectInner {
    #[br(pre_assert(type_ == OuterContainer::TAG))]
    OuterContainer(#[br(args(length))] OuterContainer),
    #[br(pre_assert(type_ == GlobalPolicyContainer::TAG))]
    GlobalPolicyContainer(#[br(args(length))] GlobalPolicyContainer),
    #[br(pre_assert(type_ == PlaybackPolicyContainer::TAG))]
    PlaybackPolicyContainer(#[br(args(length))] PlaybackPolicyContainer),
    #[br(pre_assert(type_ == KeyMaterialContainer::TAG))]
    KeyMaterialContainer(#[br(args(length))] KeyMaterialContainer),
    #[br(pre_assert(type_ == OutputProtectionLevelRestrictionObject::TAG))]
    OutputProtectionLevelRestrictionObject(OutputProtectionLevelRestrictionObject),
    #[br(pre_assert(type_ == AnalogVideoOutputConfigurationRestriction::TAG))]
    AnalogVideoOutputConfigurationRestriction(
        #[br(args(length))] AnalogVideoOutputConfigurationRestriction,
    ),
    #[br(pre_assert(type_ == ContentKeyObject::TAG))]
    ContentKeyObject(ContentKeyObject),
    #[br(pre_assert(type_ == SignatureObject::TAG))]
    SignatureObject(SignatureObject),
    #[br(pre_assert(type_ == RightsSettingsObject::TAG))]
    RightsSettingsObject(RightsSettingsObject),
    #[br(pre_assert(type_ == ExpirationRestrictionObject::TAG))]
    ExpirationRestrictionObject(ExpirationRestrictionObject),
    #[br(pre_assert(type_ == IssueDateObject::TAG))]
    IssueDateObject(IssueDateObject),
    #[br(pre_assert(type_ == MeteringRestrictionObject::TAG))]
    MeteringRestrictionObject(MeteringRestrictionObject),
    #[br(pre_assert(type_ == GracePeriodObject::TAG))]
    GracePeriodObject(GracePeriodObject),
    #[br(pre_assert(type_ == SourceIdObject::TAG))]
    SourceIdObject(SourceIdObject),
    #[br(pre_assert(type_ == ECCKeyObject::TAG))]
    ECCKeyObject(ECCKeyObject),
    #[br(pre_assert(type_ == PolicyMetadataObject::TAG))]
    PolicyMetadataObject(#[br(args(length))] PolicyMetadataObject),
    #[br(pre_assert(type_ == DomainRestrictionObject::TAG))]
    DomainRestrictionObject(DomainRestrictionObject),
    #[br(pre_assert(type_ == ExpirationAfterFirstPlayRestrictionObject::TAG))]
    ExpirationAfterFirstPlayRestrictionObject(ExpirationAfterFirstPlayRestrictionObject),
    #[br(pre_assert(type_ == DigitalAudioOutputRestrictionObject::TAG))]
    DigitalAudioOutputRestrictionObject(#[br(args(length))] DigitalAudioOutputRestrictionObject),
    #[br(pre_assert(type_ == RevInfoVersionObject::TAG))]
    RevInfoVersionObject(RevInfoVersionObject),
    #[br(pre_assert(type_ == EmbeddedLicenseSettingsObject::TAG))]
    EmbeddedLicenseSettingsObject(EmbeddedLicenseSettingsObject),
    #[br(pre_assert(type_ == SecurityLevelObject::TAG))]
    SecurityLevelObject(SecurityLevelObject),
    #[br(pre_assert(type_ == MoveObject::TAG))]
    MoveObject(MoveObject),
    #[br(pre_assert(type_ == PlayEnablerType::TAG))]
    PlayEnablerType(PlayEnablerType),
    #[br(pre_assert(type_ == CopyEnablerObject::TAG))]
    CopyEnablerObject(CopyEnablerObject),
    #[br(pre_assert(type_ == UplinkKIDObject::TAG))]
    UplinkKIDObject(UplinkKIDObject),
    #[br(pre_assert(type_ == CopyCountRestrictionObject::TAG))]
    CopyCountRestrictionObject(CopyCountRestrictionObject),
    #[br(pre_assert(type_ == RemovalDateObject::TAG))]
    RemovalDateObject(RemovalDateObject),
    #[br(pre_assert(type_ == AuxiliaryKeysObject::TAG))]
    AuxiliaryKeysObject(AuxiliaryKeysObject),
    #[br(pre_assert(type_ == UplinkKeyObject3::TAG))]
    UplinkKeyObject3(UplinkKeyObject3),
    #[br(pre_assert(type_ == SecureStopRestrictionObject::TAG))]
    SecureStopRestrictionObject(SecureStopRestrictionObject),
    #[br(pre_assert(type_ == DigitalVideoOutputRestrictionObject::TAG))]
    DigitalVideoOutputRestrictionObject(#[br(args(length))] DigitalVideoOutputRestrictionObject),
    // 8 = sizeof(flags) + sizeof(type_) + sizeof(length)
    Unknown(#[br(count = length - 8)] Vec<u8>),
}

#[derive(BinRead, Debug, Clone)]
#[br(big)]
pub struct XmrObject {
    pub flags: u16,
    pub type_: u16,
    pub length: u32,
    #[br(args { type_, length })]
    pub data: XmrObjectInner,
}

#[derive(BinRead, Debug, Clone)]
#[br(big, magic = b"XMR\x00")]
pub struct XmrLicense {
    pub offset: u16,
    pub version: u16,
    pub rights_id: [u8; 16],
    #[br(parse_with = until_eof)]
    pub containers: Vec<XmrObject>,
}