]> git.saurik.com Git - apple/security.git/blob - IDSKeychainSyncingProxy/IDSProxy.h
Security-57740.1.18.tar.gz
[apple/security.git] / IDSKeychainSyncingProxy / IDSProxy.h
1 /*
2 * Copyright (c) 2012-2016 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 // IDSProxy.h
26 // ids-xpc
27
28 #import <Foundation/Foundation.h>
29 #import <dispatch/queue.h>
30 #import <xpc/xpc.h>
31 #import <IDS/IDS.h>
32 #import "SOSCloudKeychainClient.h"
33 #import <utilities/debugging.h>
34
35 typedef enum {
36 kIDSStartPingTestMessage = 1,
37 kIDSEndPingTestMessage= 2,
38 kIDSSendOneMessage = 3,
39 kIDSSyncMessagesRaw = 4,
40 kIDSSyncMessagesCompact = 5,
41 kIDSPeerAvailability = 6,
42 kIDSPeerAvailabilityDone = 7,
43 kIDSKeychainSyncIDSFragmentation = 8
44 } idsOperation;
45
46 typedef enum {
47 kSecIDSErrorNoDeviceID = -1, //default case
48 kSecIDSErrorNotRegistered = -2,
49 kSecIDSErrorFailedToSend=-3,
50 kSecIDSErrorCouldNotFindMatchingAuthToken = -4,
51 kSecIDSErrorDeviceIsLocked = -5,
52 kSecIDSErrorNoPeersAvailable = -6
53
54 } idsError;
55
56
57 @interface IDSKeychainSyncingProxy : NSObject <IDSServiceDelegate>
58 {
59 IDSService *_service;
60 NSString *_deviceID;
61 }
62
63 @property (retain, nonatomic) NSMutableDictionary *unhandledMessageBuffer;
64 @property (retain, nonatomic) NSMutableDictionary *shadowPendingMessages;
65 @property (retain, nonatomic) NSMutableDictionary *allFragmentedMessages;
66 @property (retain, nonatomic) NSMutableDictionary *pingTimers;
67
68 @property (atomic) dispatch_source_t penaltyTimer;
69 @property (atomic) bool penaltyTimerScheduled;
70 @property (retain, atomic) NSMutableDictionary *monitor;
71 @property (retain, atomic) NSDictionary *queuedMessages;
72
73 @property (atomic) bool isIDSInitDone;
74 @property (atomic) bool isSecDRunningAsRoot;
75 @property (atomic) bool doesSecDHavePeer;
76 @property (atomic) dispatch_queue_t calloutQueue;
77 @property (atomic) bool isLocked;
78 @property (atomic) bool unlockedSinceBoot;
79 @property (atomic) dispatch_source_t retryTimer;
80 @property (atomic) bool retryTimerScheduled;
81 @property (atomic) bool inCallout;
82 @property (atomic) bool setIDSDeviceID;
83 @property (atomic) bool shadowDoSetIDSDeviceID;
84
85 @property (atomic) bool handleAllPendingMessages;
86 @property (atomic) bool shadowHandleAllPendingMessages;
87
88 + (IDSKeychainSyncingProxy *) idsProxy;
89
90 - (id)init;
91
92 - (void) importIDSState: (NSMutableDictionary*) state;
93
94 - (void) doSetIDSDeviceID;
95 - (void) doIDSInitialization;
96 - (void) calloutWith: (void(^)(NSMutableDictionary *pending, bool handlePendingMesssages, bool doSetDeviceID, dispatch_queue_t queue, void(^done)(NSMutableDictionary *handledMessages, bool handledPendingMessage, bool handledSettingDeviceID))) callout;
97 - (void) sendKeysCallout: (NSMutableDictionary *(^)(NSMutableDictionary* pending, NSError** error)) handleMessages;
98 - (void)persistState;
99
100 - (void)scheduleRetryRequestTimer;
101 @end
102
103 NSString* createErrorString(NSString* format, ...);