]> git.saurik.com Git - apple/security.git/blob - OSX/sec/SOSCircle/IDSKeychainSyncingProxy/IDSProxy.h
Security-57336.1.9.tar.gz
[apple/security.git] / OSX / sec / SOSCircle / IDSKeychainSyncingProxy / IDSProxy.h
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 // 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 #define IDSPROXYSCOPE "IDSProxy"
36 #define IDSServiceNameKeychainSync "com.apple.private.alloy.keychainsync"
37
38 typedef enum {
39 kIDSStartPingTestMessage = 1,
40 kIDSEndPingTestMessage= 2,
41 kIDSSendOneMessage = 3,
42 kIDSSyncMessagesRaw = 4,
43 kIDSSyncMessagesCompact =5
44 } idsOperation;
45
46 typedef enum {
47 kSecIDSErrorNoDeviceID = -1, //default case
48 kSecIDSErrorNotRegistered = -2,
49 kSecIDSErrorFailedToSend=-3,
50 kSecIDSErrorCouldNotFindMatchingAuthToken = -4,
51 kSecIDSErrorDeviceIsLocked = -5
52 } idsError;
53
54
55 @interface IDSKeychainSyncingProxy : NSObject <IDSServiceDelegate>
56 {
57 CloudItemsChangedBlock itemsChangedCallback;
58 IDSService *_service;
59 NSString *_deviceID;
60 NSMutableDictionary *_unhandledMessageBuffer;
61 }
62
63 @property (retain, nonatomic) NSMutableDictionary *unhandledMessageBuffer;
64 @property (retain, nonatomic) NSMutableDictionary *shadowPendingMessages;
65
66 @property (atomic) bool isIDSInitDone;
67 @property (atomic) bool isSecDRunningAsRoot;
68 @property (atomic) dispatch_queue_t calloutQueue;
69 @property (atomic) bool isLocked;
70 @property (atomic) bool unlockedSinceBoot;
71 @property (atomic) dispatch_source_t syncTimer;
72 @property (atomic) bool syncTimerScheduled;
73 @property (atomic) dispatch_time_t deadline;
74 @property (atomic) dispatch_time_t lastSyncTime;
75 @property (atomic) bool inCallout;
76 @property (atomic) bool oldInCallout;
77 @property (atomic) bool setIDSDeviceID;
78 @property (atomic) bool shadowDoSetIDSDeviceID;
79
80 @property (atomic) bool handleAllPendingMessages;
81 @property (atomic) bool shadowHandleAllPendingMessages;
82
83 + (IDSKeychainSyncingProxy *) idsProxy;
84
85 - (id)init;
86 - (void)setItemsChangedBlock:(CloudItemsChangedBlock)itemsChangedBlock;
87 - (void)streamEvent:(xpc_object_t)notification;
88
89 - (BOOL) sendIDSMessage:(NSData*)data name:(NSString*)deviceName peer:(NSString*) peerID error:(NSError**) error;
90 - (BOOL) doSetIDSDeviceID: (NSError**)error;
91 - (void) doIDSInitialization;
92 - (void) calloutWith: (void(^)(NSMutableDictionary *pending, bool handlePendingMesssages, bool doSetDeviceID, dispatch_queue_t queue, void(^done)(NSMutableDictionary *handledMessages, bool handledPendingMessage, bool handledSettingDeviceID))) callout;
93 - (void) sendKeysCallout: (NSMutableDictionary *(^)(NSMutableDictionary* pending, NSError** error)) handleMessages;
94
95 @end