1 //******************************************************************
3 // Copyright 2015 Intel Mobile Communications GmbH All Rights Reserved.
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
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
11 // http://www.apache.org/licenses/LICENSE-2.0
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.
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
24 #include "cainterface.h"
25 #include "resourcemanager.h"
26 #include "credresource.h"
27 #include "policyengine.h"
28 #include "srmutility.h"
30 #include "oic_string.h"
31 #include "oic_malloc.h"
32 #include "securevirtualresourcetypes.h"
33 #include "secureresourcemanager.h"
34 #include "srmresourcestrings.h"
35 #include "ocresourcehandler.h"
37 #if defined( __WITH_TLS__) || defined(__WITH_DTLS__)
38 #include "pkix_interface.h"
39 #endif //__WITH_TLS__ or __WITH_DTLS__
42 //Request Callback handler
43 static CARequestCallback gRequestHandler = NULL;
44 //Response Callback handler
45 static CAResponseCallback gResponseHandler = NULL;
46 //Error Callback handler
47 static CAErrorCallback gErrorHandler = NULL;
48 //Persistent Storage callback handler for open/read/write/close/unlink
49 static OCPersistentStorage *gPersistentStorageHandler = NULL;
50 //Provisioning response callback
51 static SPResponseCallback gSPResponseHandler = NULL;
54 * A single global Policy Engine context will suffice as long
55 * as SRM is single-threaded.
57 PEContext_t g_policyEngineContext;
60 * Function to register provisoning API's response callback.
61 * @param respHandler response handler callback.
63 void SRMRegisterProvisioningResponseHandler(SPResponseCallback respHandler)
65 gSPResponseHandler = respHandler;
68 void SetResourceRequestType(PEContext_t *context, const char *resourceUri)
70 context->resourceType = GetSvrTypeFromUri(resourceUri);
73 static void SRMSendUnAuthorizedAccessresponse(PEContext_t *context)
75 CAResponseInfo_t responseInfo = {.result = CA_EMPTY};
77 if (NULL == context ||
78 NULL == context->amsMgrContext->requestInfo)
80 OIC_LOG_V(ERROR, TAG, "%s : NULL Parameter(s)",__func__);
84 memcpy(&responseInfo.info, &(context->amsMgrContext->requestInfo->info),
85 sizeof(responseInfo.info));
86 responseInfo.info.payload = NULL;
87 responseInfo.result = CA_UNAUTHORIZED_REQ;
88 responseInfo.info.dataType = CA_RESPONSE_DATA;
90 if (CA_STATUS_OK == CASendResponse(context->amsMgrContext->endpoint, &responseInfo))
92 OIC_LOG(DEBUG, TAG, "Succeed in sending response to a unauthorized request!");
96 OIC_LOG(ERROR, TAG, "Failed in sending response to a unauthorized request!");
100 void SRMSendResponse(SRMAccessResponse_t responseVal)
102 OIC_LOG(DEBUG, TAG, "Sending response to remote device");
104 if (IsAccessGranted(responseVal) && gRequestHandler)
106 OIC_LOG_V(INFO, TAG, "%s : Access granted. Passing Request to RI layer", __func__);
107 if (!g_policyEngineContext.amsMgrContext->endpoint ||
108 !g_policyEngineContext.amsMgrContext->requestInfo)
110 OIC_LOG_V(ERROR, TAG, "%s : Invalid arguments", __func__);
111 SRMSendUnAuthorizedAccessresponse(&g_policyEngineContext);
114 gRequestHandler(g_policyEngineContext.amsMgrContext->endpoint,
115 g_policyEngineContext.amsMgrContext->requestInfo);
119 OIC_LOG_V(INFO, TAG, "%s : ACCESS_DENIED.", __func__);
120 SRMSendUnAuthorizedAccessresponse(&g_policyEngineContext);
124 //Resetting PE state to AWAITING_REQUEST
125 SetPolicyEngineState(&g_policyEngineContext, AWAITING_REQUEST);
129 * Handle the request from the SRM.
131 * @param endPoint object from which the response is received.
132 * @param requestInfo contains information for the request.
134 void SRMRequestHandler(const CAEndpoint_t *endPoint, const CARequestInfo_t *requestInfo)
136 OIC_LOG(DEBUG, TAG, "Received request from remote device");
138 bool isRequestOverSecureChannel = false;
139 if (!endPoint || !requestInfo)
141 OIC_LOG(ERROR, TAG, "Invalid arguments");
145 // Copy the subjectID
146 OicUuid_t subjectId = {.id = {0}};
147 memcpy(subjectId.id, requestInfo->info.identity.id, sizeof(subjectId.id));
148 if (endPoint->flags & CA_SECURE)
150 OIC_LOG(INFO, TAG, "request over secure channel");
151 isRequestOverSecureChannel = true;
154 //Check the URI has the query and skip it before checking the permission
155 char *uri = strstr(requestInfo->info.resourceUri, "?");
159 //Skip query and pass the resource uri
160 position = uri - requestInfo->info.resourceUri;
164 position = strlen(requestInfo->info.resourceUri);
166 if (MAX_URI_LENGTH < position || 0 > position)
168 OIC_LOG(ERROR, TAG, "Incorrect URI length");
171 SRMAccessResponse_t response = ACCESS_DENIED;
172 char newUri[MAX_URI_LENGTH + 1];
173 OICStrcpyPartial(newUri, MAX_URI_LENGTH + 1, requestInfo->info.resourceUri, position);
175 SetResourceRequestType(&g_policyEngineContext, newUri);
177 // Form a 'Error', 'slow response' or 'access deny' response and send to peer
178 CAResponseInfo_t responseInfo = {.result = CA_EMPTY};
179 memcpy(&responseInfo.info, &(requestInfo->info), sizeof(responseInfo.info));
180 responseInfo.info.payload = NULL;
181 responseInfo.info.dataType = CA_RESPONSE_DATA;
183 OCResource *resPtr = FindResourceByUri(newUri);
186 // check whether request is for secure resource or not and it should not be a SVR resource
187 if (((resPtr->resourceProperties) & OC_SECURE)
188 && (g_policyEngineContext.resourceType == NOT_A_SVR_RESOURCE))
190 // if resource is secure and request is over insecure channel
191 if (!isRequestOverSecureChannel)
193 // Reject all the requests over coap for secure resource.
194 responseInfo.result = CA_FORBIDDEN_REQ;
195 if (CA_STATUS_OK != CASendResponse(endPoint, &responseInfo))
197 OIC_LOG(ERROR, TAG, "Failed in sending response to a unauthorized request!");
203 #ifdef _ENABLE_MULTIPLE_OWNER_
205 * In case of ACL and CRED, The payload required to verify the payload.
206 * Payload information will be used for subowner's permission verification.
208 g_policyEngineContext.payload = (uint8_t*)requestInfo->info.payload;
209 g_policyEngineContext.payloadSize = requestInfo->info.payloadSize;
210 #endif //_ENABLE_MULTIPLE_OWNER_
212 //New request are only processed if the policy engine state is AWAITING_REQUEST.
213 if (AWAITING_REQUEST == g_policyEngineContext.state)
215 OIC_LOG_V(DEBUG, TAG, "Processing request with uri, %s for method, %d",
216 requestInfo->info.resourceUri, requestInfo->method);
217 response = CheckPermission(&g_policyEngineContext, &subjectId, newUri,
218 GetPermissionFromCAMethod_t(requestInfo->method));
222 OIC_LOG_V(INFO, TAG, "PE state %d. Ignoring request with uri, %s for method, %d",
223 g_policyEngineContext.state, requestInfo->info.resourceUri, requestInfo->method);
226 if (IsAccessGranted(response) && gRequestHandler)
228 gRequestHandler(endPoint, requestInfo);
232 VERIFY_NON_NULL(TAG, gRequestHandler, ERROR);
234 if (ACCESS_WAITING_FOR_AMS == response)
236 OIC_LOG(INFO, TAG, "Sending slow response");
238 UpdateAmsMgrContext(&g_policyEngineContext, endPoint, requestInfo);
239 responseInfo.result = CA_EMPTY;
240 responseInfo.info.type = CA_MSG_ACKNOWLEDGE;
245 * TODO Enhance this logic more to decide between
246 * CA_UNAUTHORIZED_REQ or CA_FORBIDDEN_REQ depending
247 * upon SRMAccessResponseReasonCode_t
249 OIC_LOG(INFO, TAG, "Sending for regular response");
250 responseInfo.result = CA_UNAUTHORIZED_REQ;
253 if (CA_STATUS_OK != CASendResponse(endPoint, &responseInfo))
255 OIC_LOG(ERROR, TAG, "Failed in sending response to a unauthorized request!");
259 responseInfo.result = CA_INTERNAL_SERVER_ERROR;
260 if (CA_STATUS_OK != CASendResponse(endPoint, &responseInfo))
262 OIC_LOG(ERROR, TAG, "Failed in sending response to a unauthorized request!");
267 * Handle the response from the SRM.
269 * @param endPoint points to the remote endpoint.
270 * @param responseInfo contains response information from the endpoint.
272 void SRMResponseHandler(const CAEndpoint_t *endPoint, const CAResponseInfo_t *responseInfo)
274 OIC_LOG(DEBUG, TAG, "Received response from remote device");
276 // isProvResponse flag is to check whether response is catered by provisioning APIs or not.
277 // When token sent by CA response matches with token generated by provisioning request,
278 // gSPResponseHandler returns true and response is not sent to RI layer. In case
279 // gSPResponseHandler is null and isProvResponse is false response then the response is for
281 bool isProvResponse = false;
283 if (gSPResponseHandler)
285 isProvResponse = gSPResponseHandler(endPoint, responseInfo);
287 if (!isProvResponse && gResponseHandler)
289 gResponseHandler(endPoint, responseInfo);
294 * Handle the error from the SRM.
296 * @param endPoint is the remote endpoint.
297 * @param errorInfo contains error information from the endpoint.
299 void SRMErrorHandler(const CAEndpoint_t *endPoint, const CAErrorInfo_t *errorInfo)
301 OIC_LOG_V(INFO, TAG, "Received error from remote device with result, %d for request uri, %s",
302 errorInfo->result, errorInfo->info.resourceUri);
305 gErrorHandler(endPoint, errorInfo);
309 OCStackResult SRMRegisterHandler(CARequestCallback reqHandler,
310 CAResponseCallback respHandler,
311 CAErrorCallback errHandler)
313 OIC_LOG(DEBUG, TAG, "SRMRegisterHandler !!");
314 if( !reqHandler || !respHandler || !errHandler)
316 OIC_LOG(ERROR, TAG, "Callback handlers are invalid");
317 return OC_STACK_INVALID_PARAM;
319 gRequestHandler = reqHandler;
320 gResponseHandler = respHandler;
321 gErrorHandler = errHandler;
324 #if defined(__WITH_DTLS__) || defined(__WITH_TLS__)
325 CARegisterHandler(SRMRequestHandler, SRMResponseHandler, SRMErrorHandler);
327 CARegisterHandler(reqHandler, respHandler, errHandler);
328 #endif /* __WITH_DTLS__ */
332 OCStackResult SRMRegisterPersistentStorageHandler(OCPersistentStorage* persistentStorageHandler)
334 OIC_LOG(DEBUG, TAG, "SRMRegisterPersistentStorageHandler !!");
335 if(!persistentStorageHandler)
337 OIC_LOG(ERROR, TAG, "The persistent storage handler is invalid");
338 return OC_STACK_INVALID_PARAM;
340 gPersistentStorageHandler = persistentStorageHandler;
344 OCPersistentStorage* SRMGetPersistentStorageHandler()
346 return gPersistentStorageHandler;
349 OCStackResult SRMInitSecureResources()
351 // TODO: temporarily returning OC_STACK_OK every time until default
352 // behavior (for when SVR DB is missing) is settled.
353 InitSecureResources();
354 OCStackResult ret = OC_STACK_OK;
355 #if defined(__WITH_DTLS__) || defined(__WITH_TLS__)
356 if (CA_STATUS_OK != CAregisterPskCredentialsHandler(GetDtlsPskCredentials))
358 OIC_LOG(ERROR, TAG, "Failed to revert TLS credential handler.");
359 ret = OC_STACK_ERROR;
361 CAregisterPkixInfoHandler(GetPkixInfo);
362 CAregisterGetCredentialTypesHandler(InitCipherSuiteList);
363 #endif // __WITH_DTLS__ or __WITH_TLS__
367 void SRMDeInitSecureResources()
369 DestroySecureResources();
372 OCStackResult SRMInitPolicyEngine()
374 return InitPolicyEngine(&g_policyEngineContext);
377 void SRMDeInitPolicyEngine()
379 DeInitPolicyEngine(&g_policyEngineContext);
382 bool SRMIsSecurityResourceURI(const char* uri)
389 const char *rsrcs[] = {
398 OIC_RSRC_DPAIRING_URI,
400 OC_RSRVD_PROV_CRL_URL
403 // Remove query from Uri for resource string comparison
404 size_t uriLen = strlen(uri);
405 char *query = strchr (uri, '?');
408 uriLen = query - uri;
411 for (size_t i = 0; i < sizeof(rsrcs)/sizeof(rsrcs[0]); i++)
413 size_t svrLen = strlen(rsrcs[i]);
415 if ((uriLen == svrLen) &&
416 (strncmp(uri, rsrcs[i], svrLen) == 0))
426 * Get the Secure Virtual Resource (SVR) type from the URI.
427 * @param uri [IN] Pointer to URI in question.
428 * @return The OicSecSvrType_t of the URI passed (note: if not a Secure Virtual
429 Resource, e.g. /a/light, will return "NOT_A_SVR_TYPE" enum value)
431 static const char URI_QUERY_CHAR = '?';
432 OicSecSvrType_t GetSvrTypeFromUri(const char* uri)
436 return NOT_A_SVR_RESOURCE;
439 // Remove query from Uri for resource string comparison
440 size_t uriLen = strlen(uri);
441 char *query = strchr (uri, URI_QUERY_CHAR);
444 uriLen = query - uri;
449 svrLen = strlen(OIC_RSRC_ACL_URI);
452 if(0 == strncmp(uri, OIC_RSRC_ACL_URI, svrLen))
454 return OIC_R_ACL_TYPE;
458 svrLen = strlen(OIC_RSRC_AMACL_URI);
461 if(0 == strncmp(uri, OIC_RSRC_AMACL_URI, svrLen))
463 return OIC_R_AMACL_TYPE;
467 svrLen = strlen(OIC_RSRC_CRED_URI);
470 if(0 == strncmp(uri, OIC_RSRC_CRED_URI, svrLen))
472 return OIC_R_CRED_TYPE;
476 svrLen = strlen(OIC_RSRC_CRL_URI);
479 if(0 == strncmp(uri, OIC_RSRC_CRL_URI, svrLen))
481 return OIC_R_CRL_TYPE;
485 svrLen = strlen(OIC_RSRC_DOXM_URI);
488 if(0 == strncmp(uri, OIC_RSRC_DOXM_URI, svrLen))
490 return OIC_R_DOXM_TYPE;
494 svrLen = strlen(OIC_RSRC_DPAIRING_URI);
497 if(0 == strncmp(uri, OIC_RSRC_DPAIRING_URI, svrLen))
499 return OIC_R_DPAIRING_TYPE;
503 svrLen = strlen(OIC_RSRC_PCONF_URI);
506 if(0 == strncmp(uri, OIC_RSRC_PCONF_URI, svrLen))
508 return OIC_R_PCONF_TYPE;
512 svrLen = strlen(OIC_RSRC_PSTAT_URI);
515 if(0 == strncmp(uri, OIC_RSRC_PSTAT_URI, svrLen))
517 return OIC_R_PSTAT_TYPE;
521 svrLen = strlen(OIC_RSRC_SVC_URI);
524 if(0 == strncmp(uri, OIC_RSRC_SVC_URI, svrLen))
526 return OIC_R_SVC_TYPE;
530 svrLen = strlen(OIC_RSRC_SACL_URI);
533 if(0 == strncmp(uri, OIC_RSRC_SACL_URI, svrLen))
535 return OIC_R_SACL_TYPE;
539 return NOT_A_SVR_RESOURCE;