93661b2f965313af37a8e0f4baf2d9748912e3ee
[platform/upstream/iotivity.git] / resource / csdk / security / include / internal / aclresource.h
1 //******************************************************************
2 //
3 // Copyright 2015 Intel Mobile Communications GmbH All Rights Reserved.
4 //
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 //
7 // Licensed under the Apache License, Version 2.0 (the "License");
8 // you may not use this file except in compliance with the License.
9 // You may obtain a copy of the License at
10 //
11 //      http://www.apache.org/licenses/LICENSE-2.0
12 //
13 // Unless required by applicable law or agreed to in writing, software
14 // distributed under the License is distributed on an "AS IS" BASIS,
15 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 // See the License for the specific language governing permissions and
17 // limitations under the License.
18 //
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20
21 #ifndef IOTVT_SRM_ACLR_H
22 #define IOTVT_SRM_ACLR_H
23
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
27
28 /**
29  * Initialize ACL resource by loading data from persistent storage.
30  *
31  * @return ::OC_STACK_OK for Success, otherwise some error value.
32  */
33 OCStackResult InitACLResource();
34
35 /**
36  * Perform cleanup for ACL resources.
37  *
38  */
39 OCStackResult DeInitACLResource();
40
41 /**
42  * This method is used by PolicyEngine to retrieve ACL for a Subject.
43  *
44  * @param subjectId ID of the subject for which ACL is required.
45  * @param savePtr is used internally by @ref GetACLResourceData to maintain index between
46  *                successive calls for same subjectId.
47  *
48  * @note On the first call to @ref GetACLResourceData, savePtr should point to NULL.
49  *
50  * @return reference to @ref OicSecAce_t if ACE is found, else NULL.
51  */
52 const OicSecAce_t* GetACLResourceData(const OicUuid_t* subjectId, OicSecAce_t **savePtr);
53
54 /**
55  * This function converts ACL data into CBOR format.
56  *
57  * @param acl instance of @ref OicSecAcl_t structure.
58  * @param outPayload is the pointer to allocated memory for cbor payload.
59  * @param size of the cbor payload.
60  *
61  * @return ::OC_STACK_OK for Success, otherwise some error value.
62  */
63 OCStackResult AclToCBORPayload(const OicSecAcl_t * acl, uint8_t **outPayload, size_t *size);
64
65 /**
66  * This method removes ACE for the subject and resource from the ACL
67  *
68  * @param subject of the ACE
69  * @param resource of the ACE
70  *
71  * @return
72  *     ::OC_STACK_RESOURCE_DELETED on success
73  *     ::OC_STACK_NO_RESOURCE on failure to find the appropriate ACE
74  *     ::OC_STACK_INVALID_PARAM on invalid parameter
75  */
76 OCStackResult RemoveACE(const OicUuid_t * subject, const char * resource);
77
78 /**
79  * This function deletes ACL data.
80  *
81  * @param acl instance of @ref OicSecAcl_t structure to be deleted.
82  */
83 void DeleteACLList(OicSecAcl_t* acl);
84
85 /**
86  * This function frees OicSecRsrc_t object's fields and object itself.
87  *
88  * @param rsrc instance of @ref OicSecRsrc_t structure to be deleted.
89  */
90 void FreeRsrc(OicSecRsrc_t *rsrc);
91
92 /**
93  * Internal function to duplicate the ACE instance.
94  *
95  * @param ace instance of @ref OicSecAce_t structure to be duplicated.
96  * @return reference to @ref OicSecAce_t if ACE was successfully duplicated.
97  */
98 OicSecAce_t* DuplicateACE(const OicSecAce_t* ace);
99
100 /**
101  * This function installs a new ACL.
102  *
103  * @param payload cbor value representing a new ACL.
104  * @param size of the cbor payload.
105  *
106  * @return ::OC_STACK_OK for Success, otherwise some error value
107  */
108 OCStackResult InstallNewACL(const uint8_t* payload, const size_t size);
109
110 /**
111  * This function installs a new ACL.
112  *
113  * @param acl  new acl to install.
114  *
115  * @return ::OC_STACK_OK for Success, otherwise some error value
116  */
117 OCStackResult InstallNewACL2(const OicSecAcl_t* acl);
118 /**
119  * This function updates default ACE which is required for ownership transfer.
120  * This function should be invoked after OTM is complete to prevent anonymous user access.
121  *
122  * @retval OC_STACK_OK for Success, otherwise some error value
123  */
124 OCStackResult UpdateDefaultSecProvACE();
125
126 /**
127  * Internal function to update resource owner
128  *
129  * @param newROwner new owner
130  *
131  * @retval ::OC_STACK_OK for Success, otherwise some error value
132  */
133 OCStackResult SetAclRownerId(const OicUuid_t* newROwner);
134
135
136 /**
137  * Gets the OicUuid_t value for the rownerid of the acl resource.
138  *
139  * @param rowneruuid a pointer to be assigned to the rowneruuid property
140  * @return ::OC_STACK_OK if rowneruuid is assigned correctly, else ::OC_STACK_ERROR.
141  */
142 OCStackResult GetAclRownerId(OicUuid_t *rowneruuid);
143
144 /**
145  * This function converts CBOR data into ACL.
146  *
147  * @param cborPayload is the pointer to cbor payload to parse.
148  * @param size of the cbor payload.
149  *
150  * @return ::acl instance of @ref OicSecAcl_t structure or NULL if error occurs
151  */
152 OicSecAcl_t* CBORPayloadToAcl2(const uint8_t *cborPayload, const size_t size);
153
154 /**
155  * This function prints ACL to stdin
156  * For debug purposes only
157  *
158  * @param acl  acl to print
159  */
160 void printACL(const OicSecAcl_t* acl);
161
162 #ifdef __cplusplus
163 }
164 #endif
165
166 #endif //IOTVT_SRM_ACLR_H
167
168