]> git.saurik.com Git - apple/libsecurity_codesigning.git/blob - lib/reqreader.cpp
066517f78c00af28c6e1d46748fdad89db39a42e
[apple/libsecurity_codesigning.git] / lib / reqreader.cpp
1 /*
2 * Copyright (c) 2007 Apple Inc. All Rights Reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
11 * file.
12 *
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
20 *
21 * @APPLE_LICENSE_HEADER_END@
22 */
23
24 //
25 // reqreader - Requirement language (exprOp) reader/scanner
26 //
27 #include "reqreader.h"
28 #include <Security/SecTrustSettingsPriv.h>
29 #include <security_utilities/memutils.h>
30 #include <security_cdsa_utilities/cssmdata.h> // for hex encoding
31 #include "csutilities.h"
32
33 namespace Security {
34 namespace CodeSigning {
35
36
37 //
38 // Requirement::Reader
39 //
40 Requirement::Reader::Reader(const Requirement *req)
41 : mReq(req), mPC(sizeof(Requirement))
42 {
43 }
44
45
46 //
47 // Access helpers to retrieve various data types from the data stream
48 //
49 void Requirement::Reader::getData(const void *&data, size_t &length)
50 {
51 length = get<uint32_t>();
52 checkSize(length);
53 data = (mReq->at<void>(mPC));
54 mPC += LowLevelMemoryUtilities::alignUp(length, baseAlignment);
55 }
56
57 string Requirement::Reader::getString()
58 {
59 const char *s; size_t length;
60 getData(s, length);
61 return string(s, length);
62 }
63
64 const unsigned char *Requirement::Reader::getHash()
65 {
66 const unsigned char *s; size_t length;
67 getData(s, length);
68 if (length != SHA1::digestLength)
69 MacOSError::throwMe(errSecCSReqInvalid);
70 return s;
71 }
72
73 const unsigned char *Requirement::Reader::getSHA1()
74 {
75 const unsigned char *digest; size_t length;
76 getData(digest, length);
77 if (length != CC_SHA1_DIGEST_LENGTH)
78 MacOSError::throwMe(errSecCSReqInvalid);
79 return digest;
80 }
81
82 void Requirement::Reader::skip(size_t length)
83 {
84 checkSize(length);
85 mPC += length;
86 }
87
88
89 } // CodeSigning
90 } // Security