Merging security-M3 to master
[platform/upstream/iotivity.git] / resource / csdk / security / src / resourcemanager.c
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 #include "resourcemanager.h"
22 #include "securevirtualresourcetypes.h"
23 #include "aclresource.h"
24 #include "pstatresource.h"
25 #include "doxmresource.h"
26 #include "credresource.h"
27 #include "oic_malloc.h"
28 #include "logger.h"
29 #include "utlist.h"
30 #include <string.h>
31
32 #define TAG PCF("SRM-RM")
33
34 /**
35  * This method is used by all secure resource modules to send responses to REST queries.
36  *
37  * @param ehRequest pointer to entity handler request data structure.
38  * @param ehRet result code from entity handler.
39  * @param rspPayload response payload in JSON.
40  *
41  * @retval  OC_STACK_OK for Success, otherwise some error value
42  */
43 OCStackResult SendSRMResponse(const OCEntityHandlerRequest *ehRequest,
44         OCEntityHandlerResult ehRet, const char *rspPayload)
45 {
46     OCEntityHandlerResponse response = {};
47     if (ehRequest)
48     {
49         response.requestHandle = ehRequest->requestHandle;
50         response.resourceHandle = ehRequest->resource;
51         response.ehResult = ehRet;
52         response.payload = (char *)rspPayload;
53         response.payloadSize = (rspPayload ? strlen(rspPayload) : 0);
54         response.persistentBufferFlag = 0;
55
56         return OCDoResponse(&response);
57     }
58     return OC_STACK_ERROR;
59 }
60
61 /**
62  * Initialize all secure resources ( /oic/sec/cred, /oic/sec/acl, /oic/sec/pstat etc).
63  *
64  * @retval  OC_STACK_OK for Success, otherwise some error value
65  */
66 OCStackResult InitSecureResources( )
67 {
68     OCStackResult ret;
69
70     /*
71      * doxm resource should be initialized first as it contains the DeviceID
72      * which MAY be used during initialization of other resources.
73      */
74
75     ret = InitDoxmResource();
76
77     if(OC_STACK_OK == ret)
78     {
79         ret = InitPstatResource();
80     }
81     if(OC_STACK_OK == ret)
82     {
83         ret = InitACLResource();
84     }
85     if(OC_STACK_OK == ret)
86     {
87         ret = InitCredResource();
88     }
89     if(OC_STACK_OK != ret)
90     {
91         //TODO: Update the default behavior if one of the SVR fails
92         DestroySecureResources();
93     }
94     return ret;
95 }
96
97 /**
98  * Perform cleanup for secure resources ( /oic/sec/cred, /oic/sec/acl, /oic/sec/pstat etc).
99  *
100  * @retval  OC_STACK_OK for Success, otherwise some error value
101  */
102 OCStackResult DestroySecureResources( )
103 {
104     DeInitACLResource();
105     DeInitCredResource();
106     DeInitDoxmResource();
107     DeInitPstatResource();
108
109     return OC_STACK_OK;
110 }