]>
Commit | Line | Data |
---|---|---|
1 | /* | |
2 | * Copyright (c) 2012-2014 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 | /*! | |
26 | @header SOSCircle.h | |
27 | The functions provided in SOSCircle.h provide an interface to a | |
28 | secure object syncing circle for a single class | |
29 | */ | |
30 | ||
31 | #ifndef _SOSCIRCLE_H_ | |
32 | #define _SOSCIRCLE_H_ | |
33 | ||
34 | #include <Security/Security.h> | |
35 | #include <Security/SecureObjectSync/SOSFullPeerInfo.h> | |
36 | #include <Security/SecureObjectSync/SOSPeerInfo.h> | |
37 | #include <Security/SecureObjectSync/SOSPeer.h> | |
38 | #include <Security/SecureObjectSync/SOSConcordanceTrust.h> | |
39 | #include <Security/SecureObjectSync/SOSGenCount.h> | |
40 | ||
41 | ||
42 | __BEGIN_DECLS | |
43 | ||
44 | typedef struct __OpaqueSOSCircle *SOSCircleRef; | |
45 | ||
46 | CFTypeID SOSCircleGetTypeID(); | |
47 | ||
48 | SOSCircleRef SOSCircleCreate(CFAllocatorRef allocator, CFStringRef circleName, CFErrorRef *error); | |
49 | SOSCircleRef SOSCircleCreateFromDER(CFAllocatorRef allocator, CFErrorRef* error, | |
50 | const uint8_t** der_p, const uint8_t *der_end); | |
51 | SOSCircleRef SOSCircleCreateFromData(CFAllocatorRef allocator, CFDataRef circleData, CFErrorRef *error); | |
52 | SOSCircleRef SOSCircleCopyCircle(CFAllocatorRef allocator, SOSCircleRef otherCircle, CFErrorRef *error); | |
53 | ||
54 | bool SOSCircleSetSignature(SOSCircleRef circle, SecKeyRef pubkey, CFDataRef signature, CFErrorRef *error); | |
55 | CFDataRef SOSCircleGetSignature(SOSCircleRef circle, SecKeyRef pubkey, CFErrorRef *error); | |
56 | bool SOSCircleSign(SOSCircleRef circle, SecKeyRef privkey, CFErrorRef *error); | |
57 | bool SOSCircleVerifySignatureExists(SOSCircleRef circle, SecKeyRef pubKey, CFErrorRef *error); | |
58 | bool SOSCircleVerify(SOSCircleRef circle, SecKeyRef pubkey, CFErrorRef *error); | |
59 | ||
60 | bool SOSCircleVerifyPeerSigned(SOSCircleRef circle, SOSPeerInfoRef peer, CFErrorRef *error); | |
61 | ||
62 | bool SOSCircleGenerationSign(SOSCircleRef circle, SecKeyRef user_approver, SOSFullPeerInfoRef peerinfo, CFErrorRef *error); | |
63 | bool SOSCircleSignOldStyleResetToOfferingCircle(SOSCircleRef circle, SOSFullPeerInfoRef peerinfo, SecKeyRef user_approver, CFErrorRef *error); | |
64 | ||
65 | ||
66 | size_t SOSCircleGetDEREncodedSize(SOSCircleRef cir, CFErrorRef *error); | |
67 | uint8_t* SOSCircleEncodeToDER(SOSCircleRef cir, CFErrorRef* error, const uint8_t* der, uint8_t* der_end); | |
68 | CFDataRef SOSCircleCopyEncodedData(SOSCircleRef circle, CFAllocatorRef allocator, CFErrorRef *error); | |
69 | ||
70 | size_t SOSCircleGetDEREncodedSize(SOSCircleRef cir, CFErrorRef *error); | |
71 | uint8_t* SOSCircleEncodeToDER(SOSCircleRef cir, CFErrorRef* error, const uint8_t* der, uint8_t* der_end); | |
72 | CFDataRef SOSCircleCopyEncodedData(SOSCircleRef circle, CFAllocatorRef allocator, CFErrorRef *error); | |
73 | ||
74 | int SOSCircleCountApplicants(SOSCircleRef circle); | |
75 | bool SOSCircleHasApplicant(SOSCircleRef circle, SOSPeerInfoRef peerInfo, CFErrorRef *error); | |
76 | CFMutableSetRef SOSCircleCopyApplicants(SOSCircleRef c, CFAllocatorRef allocator); | |
77 | void SOSCircleForEachApplicant(SOSCircleRef circle, void (^action)(SOSPeerInfoRef peer)); | |
78 | ||
79 | int SOSCircleCountRejectedApplicants(SOSCircleRef circle); | |
80 | bool SOSCircleHasRejectedApplicant(SOSCircleRef circle, SOSPeerInfoRef peerInfo, CFErrorRef *error); | |
81 | SOSPeerInfoRef SOSCircleCopyRejectedApplicant(SOSCircleRef circle, SOSPeerInfoRef peerInfo, CFErrorRef *error); | |
82 | CFMutableArrayRef SOSCircleCopyRejectedApplicants(SOSCircleRef c, CFAllocatorRef allocator); | |
83 | void SOSCircleSetGeneration(SOSCircleRef circle, SOSGenCountRef gencount); | |
84 | ||
85 | CFStringRef SOSCircleGetName(SOSCircleRef circle); | |
86 | const char *SOSCircleGetNameC(SOSCircleRef circle); | |
87 | ||
88 | void SOSCircleGenerationSetValue(SOSCircleRef circle, int64_t value); | |
89 | SOSGenCountRef SOSCircleGetGeneration(SOSCircleRef circle); | |
90 | int64_t SOSCircleGetGenerationSint(SOSCircleRef circle); | |
91 | void SOSCircleGenerationIncrement(SOSCircleRef circle); | |
92 | ||
93 | CFMutableSetRef SOSCircleCopyPeers(SOSCircleRef circle, CFAllocatorRef allocator); | |
94 | bool SOSCircleAppendConcurringPeers(SOSCircleRef circle, CFMutableArrayRef appendHere, CFErrorRef *error); | |
95 | CFMutableArrayRef SOSCircleCopyConcurringPeers(SOSCircleRef circle, CFErrorRef* error); | |
96 | SOSPeerInfoRef SOSCircleCopyPeerWithID(SOSCircleRef circle, CFStringRef peerid, CFErrorRef *error); | |
97 | ||
98 | int SOSCircleCountPeers(SOSCircleRef circle); | |
99 | int SOSCircleCountActivePeers(SOSCircleRef circle); | |
100 | int SOSCircleCountActiveValidPeers(SOSCircleRef circle, SecKeyRef pubkey); | |
101 | int SOSCircleCountValidSyncingPeers(SOSCircleRef circle, SecKeyRef pubkey); | |
102 | ||
103 | int SOSCircleCountRetiredPeers(SOSCircleRef circle); | |
104 | ||
105 | void SOSCircleForEachPeer(SOSCircleRef circle, void (^action)(SOSPeerInfoRef peer)); | |
106 | void SOSCircleForEachRetiredPeer(SOSCircleRef circle, void (^action)(SOSPeerInfoRef peer)); | |
107 | void SOSCircleForEachActivePeer(SOSCircleRef circle, void (^action)(SOSPeerInfoRef peer)); | |
108 | void SOSCircleForEachActiveValidPeer(SOSCircleRef circle, SecKeyRef user_public_key, void (^action)(SOSPeerInfoRef peer)); | |
109 | void SOSCircleForEachValidPeer(SOSCircleRef circle, SecKeyRef user_public_key, void (^action)(SOSPeerInfoRef peer)); | |
110 | void SOSCircleForEachValidSyncingPeer(SOSCircleRef circle, SecKeyRef user_public_key, void (^action)(SOSPeerInfoRef peer)); | |
111 | ||
112 | bool SOSCircleHasPeerWithID(SOSCircleRef circle, CFStringRef peerid, CFErrorRef *error); | |
113 | ||
114 | bool SOSCircleHasPeer(SOSCircleRef circle, SOSPeerInfoRef peerInfo, CFErrorRef *error); | |
115 | bool SOSCircleHasActivePeerWithID(SOSCircleRef circle, CFStringRef peerid, CFErrorRef *error); | |
116 | bool SOSCircleHasActivePeer(SOSCircleRef circle, SOSPeerInfoRef peerInfo, CFErrorRef *error); | |
117 | bool SOSCircleHasActiveValidPeerWithID(SOSCircleRef circle, CFStringRef peerid, SecKeyRef user_public_key, CFErrorRef *error); | |
118 | bool SOSCircleHasActiveValidPeer(SOSCircleRef circle, SOSPeerInfoRef peerInfo, SecKeyRef user_public_key, CFErrorRef *error); | |
119 | ||
120 | bool SOSCircleResetToOffering(SOSCircleRef circle, SecKeyRef user_privkey, SOSFullPeerInfoRef requestor, CFErrorRef *error); | |
121 | bool SOSCircleResetToEmpty(SOSCircleRef circle, CFErrorRef *error); | |
122 | bool SOSCircleResetToEmptyWithSameGeneration(SOSCircleRef circle, CFErrorRef *error); | |
123 | bool SOSCircleRequestAdmission(SOSCircleRef circle, SecKeyRef user_privkey, SOSFullPeerInfoRef requestor, CFErrorRef *error); | |
124 | bool SOSCircleRequestReadmission(SOSCircleRef circle, SecKeyRef user_pubkey, SOSPeerInfoRef requestor, CFErrorRef *error); | |
125 | ||
126 | bool SOSCircleAcceptRequest(SOSCircleRef circle, SecKeyRef user_privkey, SOSFullPeerInfoRef device_approver, SOSPeerInfoRef peerInfo, CFErrorRef *error); | |
127 | bool SOSCircleRejectRequest(SOSCircleRef circle, SOSFullPeerInfoRef device_approver, SOSPeerInfoRef peerInfo, CFErrorRef *error); | |
128 | bool SOSCircleWithdrawRequest(SOSCircleRef circle, SOSPeerInfoRef peerInfo, CFErrorRef *error); | |
129 | bool SOSCircleRemoveRejectedPeer(SOSCircleRef circle, SOSPeerInfoRef peerInfo, CFErrorRef *error); | |
130 | bool SOSCirclePeerSigUpdate(SOSCircleRef circle, SecKeyRef userPrivKey, SOSFullPeerInfoRef fpi, | |
131 | CFErrorRef *error); | |
132 | ||
133 | // | |
134 | // Update a peer's meta information. | |
135 | // No resigning of the circle is done, only updates to their own self signed description. | |
136 | // | |
137 | bool SOSCircleUpdatePeerInfo(SOSCircleRef circle, SOSPeerInfoRef replacement_peer_info); | |
138 | ||
139 | bool SOSCircleRemovePeer(SOSCircleRef circle, SecKeyRef user_privkey, SOSFullPeerInfoRef device_approver, SOSPeerInfoRef peerInfo, CFErrorRef *error); | |
140 | bool SOSCircleRemovePeers(SOSCircleRef circle, SecKeyRef user_privkey, SOSFullPeerInfoRef device_approver, CFSetRef peerInfo, CFErrorRef *error); | |
141 | ||
142 | bool SOSCircleRemoveRetired(SOSCircleRef circle, CFErrorRef *error); | |
143 | ||
144 | bool SOSCircleAcceptRequests(SOSCircleRef circle, SecKeyRef user_privkey, SOSFullPeerInfoRef device_approver, CFErrorRef *error); | |
145 | ||
146 | // Stuff above this line is really SOSCircleInfo below the line is the active SOSCircle functionality | |
147 | ||
148 | SOSFullPeerInfoRef SOSCircleCopyiCloudFullPeerInfoRef(SOSCircleRef circle, CFErrorRef *error); | |
149 | ||
150 | bool SOSCircleConcordanceSign(SOSCircleRef circle, SOSFullPeerInfoRef peerinfo, CFErrorRef *error); | |
151 | ||
152 | bool SOSCircleSharedTrustedPeers(SOSCircleRef current, SOSCircleRef proposed, SOSPeerInfoRef me); | |
153 | ||
154 | bool SOSCircleIsOlderGeneration(SOSCircleRef current, SOSCircleRef proposed); | |
155 | ||
156 | SOSConcordanceStatus SOSCircleConcordanceTrust(SOSCircleRef known_circle, SOSCircleRef proposed_circle, | |
157 | SecKeyRef known_pubkey, SecKeyRef user_pubkey, | |
158 | SOSPeerInfoRef exclude, CFErrorRef *error); | |
159 | ||
160 | CFDataRef SOSCircleCopyNextGenSignatureWithPeerAdded(SOSCircleRef circle, SOSPeerInfoRef peer, SecKeyRef privKey, CFErrorRef *error); | |
161 | bool SOSCirclePreGenerationSign(SOSCircleRef circle, SecKeyRef userPubKey, CFErrorRef *error); | |
162 | ||
163 | // | |
164 | // Testing routines: | |
165 | // | |
166 | ||
167 | CFDataRef SOSCircleCreateIncompatibleCircleDER(CFErrorRef* error); | |
168 | void debugDumpCircle(CFStringRef message, SOSCircleRef circle); | |
169 | void SOSCircleLogState(char *category, SOSCircleRef circle, SecKeyRef pubKey, CFStringRef myPID); | |
170 | ||
171 | bool SOSCircleAcceptPeerFromHSA2(SOSCircleRef circle, SecKeyRef userKey, SOSGenCountRef gencount, SecKeyRef pPubKey, CFDataRef signature, SOSFullPeerInfoRef fpi, CFErrorRef *error); | |
172 | ||
173 | __END_DECLS | |
174 | ||
175 | #endif /* !_SOSCIRCLE_H_ */ |