Imported Upstream version 1.0.0
[platform/upstream/iotivity.git] / resource / csdk / security / provisioning / include / ocprovisioningmanager.h
1 /* *****************************************************************\r
2  *\r
3  * Copyright 2015 Samsung Electronics All Rights Reserved.\r
4  *\r
5  *\r
6  *\r
7  * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * you may not use this file except in compliance with the License.\r
9  * You may obtain a copy of the License at\r
10  *\r
11  *     http://www.apache.org/licenses/LICENSE-2.0\r
12  *\r
13  * Unless required by applicable law or agreed to in writing, software\r
14  * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * See the License for the specific language governing permissions and\r
17  * limitations under the License.\r
18  *\r
19  * *****************************************************************/\r
20 \r
21 #ifndef OCPROVISIONINGMANAGER_H_\r
22 #define OCPROVISIONINGMANAGER_H_\r
23 \r
24 #include "octypes.h"\r
25 #include "pmtypes.h"\r
26 #include "ownershiptransfermanager.h"\r
27 \r
28 #ifdef __cplusplus\r
29 extern "C" {\r
30 #endif // __cplusplus\r
31 \r
32 /**\r
33  * The function is responsible for initializaton of the provisioning manager. It will load\r
34  * provisioning database which have owned device's list and their linked status.\r
35  * TODO: In addition, if there is a device(s) which has not up-to-date credentials, this function will\r
36  * automatically try to update the deivce(s).\r
37  *\r
38  * @param[in] dbPath file path of the sqlite3 db\r
39  *\r
40  * @return OC_STACK_OK in case of success and other value otherwise.\r
41  */\r
42 OCStackResult OCInitPM(const char* dbPath);\r
43 \r
44 /**\r
45  * The function is responsible for discovery of device is current subnet. It will list\r
46  * all the device in subnet which are not yet owned. Please call OCInit with OC_CLIENT_SERVER as\r
47  * OCMode.\r
48  *\r
49  * @param[in] timeout Timeout in seconds, value till which function will listen to responses from\r
50  *                    client before returning the list of devices.\r
51  * @param[out] ppList List of candidate devices to be provisioned\r
52  * @return OTM_SUCCESS in case of success and other value otherwise.\r
53  */\r
54 OCStackResult OCDiscoverUnownedDevices(unsigned short waittime, OCProvisionDev_t **ppList);\r
55 \r
56 /**\r
57  * Do ownership transfer for un-owned device.\r
58  *\r
59  * @param[in] ctx Application context would be returned in result callback\r
60  * @param[in] targetDevices List of devices to perform ownership transfer.\r
61  * @param[in] resultCallback Result callback function to be invoked when ownership transfer finished.\r
62  * @return OC_STACK_OK in case of success and other value otherwise.\r
63  */\r
64 OCStackResult OCDoOwnershipTransfer(void* ctx,\r
65                                     OCProvisionDev_t *targetDevices,\r
66                                     OCProvisionResultCB resultCallback);\r
67 \r
68 /**\r
69  * API to register for particular OxM.\r
70  *\r
71  * @param[in] Ownership transfer method.\r
72  * @param[in] Implementation of callback functions for owership transfer.\r
73  * @return OC_STACK_OK in case of success and other value otherwise.\r
74  */\r
75 OCStackResult OCSetOwnerTransferCallbackData(OicSecOxm_t oxm, OTMCallbackData_t* callbackData);\r
76 \r
77 /**\r
78  * The function is responsible for discovery of owned device is current subnet. It will list\r
79  * all the device in subnet which are owned by calling provisioning client.\r
80  *\r
81  * @param[in] timeout Timeout in seconds, value till which function will listen to responses from\r
82  *                    client before returning the list of devices.\r
83  * @param[out] ppList List of device owned by provisioning tool.\r
84  * @return OTM_SUCCESS in case of success and other value otherwise.\r
85  */\r
86 OCStackResult OCDiscoverOwnedDevices(unsigned short timeout, OCProvisionDev_t **ppList);\r
87 \r
88 /**\r
89  * API to provision credentials between two devices and ACLs for the devices who act as a server.\r
90  *\r
91  * @param[in] ctx Application context would be returned in result callback.\r
92  * @param[in] type Type of credentials to be provisioned to the device.\r
93  * @param[in] pDev1 Pointer to OCProvisionDev_t instance,respresenting device to be provisioned.\r
94  * @param[in] acl ACL for device 1. If this is not required set NULL.\r
95  * @param[in] pDev2 Pointer to OCProvisionDev_t instance,respresenting device to be provisioned.\r
96  * @param[in] acl ACL for device 2. If this is not required set NULL.\r
97  * @param[in] resultCallback callback provided by API user, callback will be called when\r
98  *            provisioning request recieves a response from first resource server.\r
99  * @return OC_STACK_OK in case of success and other value otherwise.\r
100  */\r
101 OCStackResult OCProvisionPairwiseDevices(void* ctx, OicSecCredType_t type, size_t keySize,\r
102                                          const OCProvisionDev_t *pDev1, OicSecAcl_t *pDev1Acl,\r
103                                          const OCProvisionDev_t *pDev2, OicSecAcl_t *pDev2Acl,\r
104                                          OCProvisionResultCB resultCallback);\r
105 \r
106 /**\r
107  * API to send ACL information to device.\r
108  *\r
109  * @param[in] ctx Application context would be returned in result callback.\r
110  * @param[in] selectedDeviceInfo Selected target device.\r
111  * @param[in] acl ACL to provision.\r
112  * @param[in] resultCallback callback provided by API user, callback will be called when provisioning\r
113               request recieves a response from resource server.\r
114  * @return OC_STACK_OK in case of success and other value otherwise.\r
115  */\r
116 OCStackResult OCProvisionACL(void *ctx, const OCProvisionDev_t *selectedDeviceInfo, OicSecAcl_t *acl,\r
117                              OCProvisionResultCB resultCallback);\r
118 \r
119 /**\r
120  * API to provision credential to devices.\r
121  *\r
122  * @param[in] ctx Application context would be returned in result callback.\r
123  * @param[in] type Type of credentials to be provisioned to the device.\r
124  * @param[in] pDev1 Pointer to OCProvisionDev_t instance,respresenting resource to be provsioned.\r
125    @param[in] pDev2 Pointer to OCProvisionDev_t instance,respresenting resource to be provsioned.\r
126  * @param[in] resultCallback callback provided by API user, callback will be called when\r
127  *            provisioning request recieves a response from first resource server.\r
128  * @return OC_STACK_OK in case of success and other value otherwise.\r
129  */\r
130 OCStackResult OCProvisionCredentials(void *ctx, OicSecCredType_t type, size_t keySize,\r
131                                       const OCProvisionDev_t *pDev1,\r
132                                       const OCProvisionDev_t *pDev2,\r
133                                       OCProvisionResultCB resultCallback);\r
134 \r
135 /**\r
136  * Function to unlink devices.\r
137  * This function will remove the credential & relasionship between the two devices.\r
138  *\r
139  * @param[in] ctx Application context would be returned in result callback\r
140  * @param[in] pTargetDev1 fitst device information to be unlinked.\r
141  * @param[in] pTargetDev2 second device information to be unlinked.\r
142  * @param[in] resultCallback callback provided by API user, callback will be called when\r
143  *            device unlink is finished.\r
144  * @return OC_STACK_OK in case of success and other value otherwise.\r
145  */\r
146 OCStackResult OCUnlinkDevices(void* ctx,\r
147                               const OCProvisionDev_t* pTargetDev1,\r
148                               const OCProvisionDev_t* pTargetDev2,\r
149                               OCProvisionResultCB resultCallback);\r
150 \r
151 /**\r
152  * Function for device revocation\r
153  * This function will remove credential of target device from all devices in subnet.\r
154  *\r
155  * @param[in] ctx Application context would be returned in result callback\r
156  * @param[in] waitTimeForOwnedDeviceDiscovery Maximum wait time for owned device discovery.(seconds)\r
157  * @param[in] pTargetDev Device information to be revoked.\r
158  * @param[in] resultCallback callback provided by API user, callback will be called when\r
159  *            credential revocation is finished.\r
160  * @return OC_STACK_OK in case of success and other value otherwise.\r
161  *         if OC_STACK_OK is returned, the caller of this API should wait for callback.\r
162  *         OC_STACK_CONTINUE means operation is success but no need to wait for callback.\r
163  */\r
164 OCStackResult OCRemoveDevice(void* ctx,\r
165                              unsigned short waitTimeForOwnedDeviceDiscovery,\r
166                              const OCProvisionDev_t* pTargetDev,\r
167                              OCProvisionResultCB resultCallback);\r
168 /**
169  * API to get status of all the devices in current subnet. The status include endpoint information\r
170  * and doxm information which can be extracted duing owned and unowned discovery. Along with this\r
171  * information. The API will provide information about devices' status\r
172  * Device can have following states\r
173  *  - ON/OFF: Device is switched on or off.\r
174  *\r
175  * NOTE: Caller need to call OCDeleteDiscoveredDevices to delete memory allocated by this API for out\r
176  * variables pOwnedDevList and pUnownedDevList.\r
177  *\r
178  * @param[in] waitime Wait time for the API. The wait time will be divided by 2, and half of wait time\r
179  * will be used for unowned discovery and remaining half for owned discovery.\r
180  * @param[out] pOwnedDevList  list of owned devices.\r
181  * @param[out] pUnownedDevList  list of unowned devices.\r
182  * @return OC_STACK_OK in case of success and other value otherwise.\r
183  */\r
184 OCStackResult OCGetDevInfoFromNetwork(unsigned short waittime,\r
185                                        OCProvisionDev_t** pOwnedDevList,\r
186                                        OCProvisionDev_t** pUnownedDevList);\r
187 /**\r
188  * This method is used to get linked devices' IDs.\r
189  *\r
190  * @param[in] uuidOfDevice a target device's uuid.\r
191  * @param[out] uuidList information about the list of linked devices' uuids.\r
192  * @param[out] numOfDevices total number of linked devices.\r
193  * @return OC_STACK_OK in case of success and other value otherwise.\r
194  */\r
195 OCStackResult OCGetLinkedStatus(const OicUuid_t* uuidOfDevice,\r
196                                   OCUuidList_t** uuidList,\r
197                                   size_t* numOfDevices);\r
198 \r
199 /**\r
200  * API to delete memory allocated to linked list created by OCDiscover_XXX_Devices API.\r
201  *\r
202  * @param[in] pList Pointer to OCProvisionDev_t which should be deleted.\r
203  */\r
204 void OCDeleteDiscoveredDevices(OCProvisionDev_t *pList);\r
205 \r
206 /**\r
207  * API to delete memory allocated to OicUuid_t list.\r
208  *\r
209  * @param[in] pList Pointer to OicUuid_t list which should be deleted.\r
210  */\r
211 void OCDeleteUuidList(OCUuidList_t* pList);\r
212 \r
213 /**\r
214  * This function deletes ACL data.\r
215  *\r
216  * @param pAcl Pointer to OicSecAcl_t structure.\r
217  */\r
218 void OCDeleteACLList(OicSecAcl_t* pAcl);
219
220 #ifdef __WITH_X509__
221 /**
222  * this function sends CRL information to resource.
223  *
224  * @param[in] ctx Application context would be returned in result callback.
225  * @param[in] selectedDeviceInfo Selected target device.
226  * @param[in] crl CRL to provision.
227  * @param[in] resultCallback callback provided by API user, callback will be called when provisioning
228               request recieves a response from resource server.
229  * @return  OC_STACK_OK in case of success and other value otherwise.
230  */
231 OCStackResult OCProvisionCRL(void* ctx, const OCProvisionDev_t *selectedDeviceInfo, OicSecCrl_t *crl,
232                              OCProvisionResultCB resultCallback);
233 #endif // __WITH_X509__
234 \r
235 \r
236 #ifdef __cplusplus\r
237 }\r
238 #endif // __cplusplus\r
239 \r
240 #endif /* OCPROVISIONINGMANAGER_H_ */\r