d5ba721e16f03f19b05da1d8805c34574bafa614
[platform/upstream/iotivity.git] / resource / csdk / security / src / policyengine.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 #include <string.h>
21
22 #include "utlist.h"
23 #include "oic_malloc.h"
24 #include "policyengine.h"
25 #include "amsmgr.h"
26 #include "resourcemanager.h"
27 #include "securevirtualresourcetypes.h"
28 #include "srmresourcestrings.h"
29 #include "logger.h"
30 #include "aclresource.h"
31 #include "srmutility.h"
32 #include "doxmresource.h"
33 #include "iotvticalendar.h"
34 #include "pstatresource.h"
35 #include "dpairingresource.h"
36 #include "pconfresource.h"
37 #include "amaclresource.h"
38 #include "credresource.h"
39
40 #define TAG "OIC_SRM_PE"
41
42 uint16_t GetPermissionFromCAMethod_t(const CAMethod_t method)
43 {
44     uint16_t perm = 0;
45     switch (method)
46     {
47         case CA_GET:
48             perm = (uint16_t)PERMISSION_READ;
49             break;
50         case CA_POST: // Treat all POST as Write (Update) because
51                       // we don't know if resource exists yet.
52                       // This will be addressed in IoTivity impl of OCF 1.0
53             perm = (uint16_t)PERMISSION_WRITE;
54             break;
55         case CA_PUT: // Per convention, OIC/OCF uses PUT only for Create,
56                      // never for Update.
57             perm = (uint16_t)PERMISSION_CREATE;
58             break;
59         case CA_DELETE:
60             perm = (uint16_t)PERMISSION_DELETE;
61             break;
62         default: // if not recognized, must assume requesting full control
63             perm = (uint16_t)PERMISSION_FULL_CONTROL;
64             break;
65     }
66     return perm;
67 }
68
69 /**
70  * Compares two OicUuid_t structs.
71  *
72  * @return true if the two OicUuid_t structs are equal, else false.
73  */
74 static bool UuidCmp(OicUuid_t *firstId, OicUuid_t *secondId)
75 {
76     // TODO use VERIFY macros to check for null when they are merged.
77     if(NULL == firstId || NULL == secondId)
78     {
79         return false;
80     }
81     // Check empty uuid string
82     if('\0' == firstId->id[0] || '\0' == secondId->id[0])
83     {
84         return false;
85     }
86     for(int i = 0; i < UUID_LENGTH; i++)
87     {
88         if(firstId->id[i] != secondId->id[i])
89         {
90             return false;
91         }
92     }
93     return true;
94 }
95
96 void SetPolicyEngineState(PEContext_t *context, const PEState_t state)
97 {
98     if (NULL == context)
99     {
100         return;
101     }
102
103     // Clear stateful context variables.
104     memset(&context->subject, 0, sizeof(context->subject));
105     memset(&context->resource, 0, sizeof(context->resource));
106     context->permission = 0x0;
107     context->amsProcessing = false;
108     context->retVal = ACCESS_DENIED_POLICY_ENGINE_ERROR;
109
110     if (context->amsMgrContext)
111     {
112         if (context->amsMgrContext->requestInfo)
113         {
114             FreeCARequestInfo(context->amsMgrContext->requestInfo);
115         }
116         OICFree(context->amsMgrContext->endpoint);
117         memset(context->amsMgrContext, 0, sizeof(AmsMgrContext_t));
118     }
119
120     // Set state.
121     context->state = state;
122 }
123
124 /**
125  * Compare the request's subject to DevOwner.
126  *
127  * @return true if context->subjectId == GetDoxmDevOwner(), else false.
128  */
129 static bool IsRequestFromDevOwner(PEContext_t *context)
130 {
131     bool retVal = false;
132
133     if(NULL == context)
134     {
135         return retVal;
136     }
137
138     /*
139     if(OC_STACK_OK == GetDoxmDevOwnerId(&ownerid))
140     {
141         retVal = UuidCmp(&context->subject, &ownerid);
142     }
143     */
144
145     // TODO: Added as workaround for CTT
146     OicSecDoxm_t* doxm = (OicSecDoxm_t*) GetDoxmResourceData();
147     if (doxm)
148     {
149         retVal = UuidCmp(&doxm->owner, &context->subject);
150     }
151     return retVal;
152 }
153
154
155 #ifdef _ENABLE_MULTIPLE_OWNER_
156 /**
157  * Compare the request's subject to SubOwner.
158  *
159  * @return true if context->subjectId exist subowner list, else false.
160  */
161 static bool IsRequestFromSubOwner(PEContext_t *context)
162 {
163     bool retVal = false;
164
165     if(NULL == context)
166     {
167         return retVal;
168     }
169
170     if(IsSubOwner(&context->subject))
171     {
172         retVal = true;
173     }
174
175     if(true == retVal)
176     {
177         OIC_LOG(INFO, TAG, "PE.IsRequestFromSubOwner(): returning true");
178     }
179     else
180     {
181         OIC_LOG(INFO, TAG, "PE.IsRequestFromSubOwner(): returning false");
182     }
183
184     return retVal;
185 }
186
187
188 /**
189  * Verify the SubOwner's request.
190  *
191  * @return true if request is valid, else false.
192  */
193 static bool IsValidRequestFromSubOwner(PEContext_t *context)
194 {
195     bool isValidRequest = false;
196
197     if(NULL == context)
198     {
199         return isValidRequest;
200     }
201
202     switch(context->resourceType)
203     {
204         case OIC_R_DOXM_TYPE:
205             //SubOwner has READ permission only for DOXM
206             if(PERMISSION_READ == context->permission)
207             {
208                 isValidRequest = true;
209             }
210             break;
211         case OIC_R_PSTAT_TYPE:
212             //SubOwner has full permsion for PSTAT
213             isValidRequest = true;
214             break;
215         case OIC_R_CRED_TYPE:
216             //SubOwner can only access the credential which is registered as the eowner.
217             isValidRequest = IsValidCredentialAccessForSubOwner(&context->subject, context->payload, context->payloadSize);
218             break;
219         case OIC_R_ACL_TYPE:
220             //SubOwner can only access the ACL which is registered as the eowner.
221             isValidRequest = IsValidAclAccessForSubOwner(&context->subject, context->payload, context->payloadSize);
222             break;
223         default:
224             //SubOwner has full permission for all resource except the security resource
225             isValidRequest = true;
226             break;
227     }
228
229     if(isValidRequest)
230     {
231         OIC_LOG(INFO, TAG, "PE.IsValidRequestFromSubOwner(): returning true");
232     }
233     else
234     {
235         OIC_LOG(INFO, TAG, "PE.IsValidRequestFromSubOwner(): returning false");
236     }
237
238     return isValidRequest;
239 }
240 #endif //_ENABLE_MULTIPLE_OWNER_
241
242
243 // TODO - remove these function placeholders as they are implemented
244 // in the resource entity handler code.
245 // Note that because many SVRs do not have a rowner, in those cases we
246 // just return "OC_STACK_ERROR" which results in a "false" return by
247 // IsRequestFromResourceOwner().
248 // As these SVRs are revised to have a rowner, these functions should be
249 // replaced (see pstatresource.c for example of GetPstatRownerId).
250
251 OCStackResult GetCrlRownerId(OicUuid_t *rowner)
252 {
253     OC_UNUSED(rowner);
254     rowner = NULL;
255     return OC_STACK_ERROR;
256 }
257
258 OCStackResult GetSaclRownerId(OicUuid_t *rowner)
259 {
260     OC_UNUSED(rowner);
261     rowner = NULL;
262     return OC_STACK_ERROR;
263 }
264
265 OCStackResult GetSvcRownerId(OicUuid_t *rowner)
266 {
267     OC_UNUSED(rowner);
268     rowner = NULL;
269     return OC_STACK_ERROR;
270 }
271
272 static GetSvrRownerId_t GetSvrRownerId[OIC_SEC_SVR_TYPE_COUNT] = {
273     GetAclRownerId,
274     GetAmaclRownerId,
275     GetCredRownerId,
276     GetCrlRownerId,
277     GetDoxmRownerId,
278     GetDpairingRownerId,
279     GetPconfRownerId,
280     GetPstatRownerId,
281     GetSaclRownerId,
282     GetSvcRownerId
283 };
284
285 /**
286  * Compare the request's subject to resource.ROwner.
287  *
288  * @return true if context->subjectId equals SVR rowner id, else return false
289  */
290 bool IsRequestFromResourceOwner(PEContext_t *context)
291 {
292     bool retVal = false;
293     OicUuid_t resourceOwner;
294
295     if(NULL == context)
296     {
297         return false;
298     }
299
300     if((OIC_R_ACL_TYPE <= context->resourceType) && \
301         (OIC_SEC_SVR_TYPE_COUNT > context->resourceType))
302     {
303         if(OC_STACK_OK == GetSvrRownerId[(int)context->resourceType](&resourceOwner))
304         {
305             retVal = UuidCmp(&context->subject, &resourceOwner);
306         }
307     }
308
309     if(true == retVal)
310     {
311         OIC_LOG(INFO, TAG, "PE.IsRequestFromResourceOwner(): returning true");
312     }
313     else
314     {
315         OIC_LOG(INFO, TAG, "PE.IsRequestFromResourceOwner(): returning false");
316     }
317
318     return retVal;
319 }
320
321 INLINE_API bool IsRequestSubjectEmpty(PEContext_t *context)
322 {
323     OicUuid_t emptySubject = {.id={0}};
324
325     if(NULL == context)
326     {
327         return false;
328     }
329
330     return (memcmp(&context->subject, &emptySubject, sizeof(OicUuid_t)) == 0) ?
331             true : false;
332 }
333
334 /**
335  * Bitwise check to see if 'permission' contains 'request'.
336  *
337  * @param permission is the allowed CRUDN permission.
338  * @param request is the CRUDN permission being requested.
339  *
340  * @return true if 'permission' bits include all 'request' bits.
341  */
342 INLINE_API bool IsPermissionAllowingRequest(const uint16_t permission,
343     const uint16_t request)
344 {
345     if (request == (request & permission))
346     {
347         return true;
348     }
349     else
350     {
351         return false;
352     }
353 }
354
355 /**
356  * Compare the passed subject to the wildcard (aka anonymous) subjectId.
357  *
358  * @return true if 'subject' is the wildcard, false if it is not.
359  */
360 INLINE_API bool IsWildCardSubject(OicUuid_t *subject)
361 {
362     if(NULL == subject)
363     {
364         return false;
365     }
366
367     // Because always comparing to string literal, use strcmp()
368     if(0 == memcmp(subject, &WILDCARD_SUBJECT_ID, sizeof(OicUuid_t)))
369     {
370         return true;
371     }
372     else
373     {
374         return false;
375     }
376 }
377
378 /**
379  * Copy the subject, resource and permission into the context fields.
380  */
381 static void CopyParamsToContext(PEContext_t     *context,
382                                 const OicUuid_t *subjectId,
383                                 const char      *resource,
384                                 const uint16_t  requestedPermission)
385 {
386     size_t length = 0;
387
388     if (NULL == context || NULL == subjectId || NULL == resource)
389     {
390         return;
391     }
392
393     memcpy(&context->subject, subjectId, sizeof(OicUuid_t));
394
395     // Copy the resource string into context.
396     length = sizeof(context->resource) - 1;
397     strncpy(context->resource, resource, length);
398     context->resource[length] = '\0';
399
400
401     // Assign the permission field.
402     context->permission = requestedPermission;
403 }
404
405 /**
406  * Check whether 'resource' is getting accessed within the valid time period.
407  *
408  * @param acl is the ACL to check.
409  *
410  * @return true if access is within valid time period or if the period or recurrence is not present.
411  * false if period and recurrence present and the access is not within valid time period.
412  */
413 static bool IsAccessWithinValidTime(const OicSecAce_t *ace)
414 {
415 #ifndef WITH_ARDUINO //Period & Recurrence not supported on Arduino due
416     //lack of absolute time
417     if (NULL== ace || NULL == ace->validities)
418     {
419         return true;
420     }
421
422     //periods & recurrences rules are paired.
423     if (NULL == ace->validities->recurrences)
424     {
425         return false;
426     }
427
428     OicSecValidity_t* validity =  NULL;
429     LL_FOREACH(ace->validities, validity)
430     {
431         for(size_t i = 0; i < validity->recurrenceLen; i++)
432         {
433             if (IOTVTICAL_VALID_ACCESS ==  IsRequestWithinValidTime(validity->period,
434                 validity->recurrences[i]))
435             {
436                 OIC_LOG(INFO, TAG, "Access request is in allowed time period");
437                 return true;
438             }
439         }
440     }
441     OIC_LOG(ERROR, TAG, "Access request is in invalid time period");
442     return false;
443
444 #else
445     return true;
446 #endif
447 }
448
449 /**
450  * Check whether 'resource' is in the passed ACE.
451  *
452  * @param resource is the resource being searched.
453  * @param ace is the ACE to check.
454  *
455  * @return true if 'resource' found, otherwise false.
456  */
457  static bool IsResourceInAce(const char *resource, const OicSecAce_t *ace)
458 {
459     if (NULL== ace || NULL == resource)
460     {
461         return false;
462     }
463
464     OicSecRsrc_t* rsrc = NULL;
465     LL_FOREACH(ace->resources, rsrc)
466     {
467          if (0 == strcmp(resource, rsrc->href) || // TODO null terms?
468              0 == strcmp(WILDCARD_RESOURCE_URI, rsrc->href))
469          {
470              return true;
471          }
472     }
473     return false;
474 }
475
476
477 /**
478  * Find ACLs containing context->subject.
479  * Search each ACL for requested resource.
480  * If resource found, check for context->permission and period validity.
481  * If the ACL is not found locally and AMACL for the resource is found
482  * then sends the request to AMS service for the ACL.
483  * Set context->retVal to result from first ACL found which contains
484  * correct subject AND resource.
485  */
486 static void ProcessAccessRequest(PEContext_t *context)
487 {
488     OIC_LOG(DEBUG, TAG, "Entering ProcessAccessRequest()");
489     if (NULL != context)
490     {
491         const OicSecAce_t *currentAce = NULL;
492         OicSecAce_t *savePtr = NULL;
493
494         // Start out assuming subject not found.
495         context->retVal = ACCESS_DENIED_SUBJECT_NOT_FOUND;
496
497         // Loop through all ACLs with a matching Subject searching for the right
498         // ACL for this request.
499         do
500         {
501             OIC_LOG_V(DEBUG, TAG, "%s: getting ACE..." ,__func__);
502             currentAce = GetACLResourceData(&context->subject, &savePtr);
503
504             if (NULL != currentAce)
505             {
506                 // Found the subject, so how about resource?
507                 OIC_LOG_V(DEBUG, TAG, "%s:found ACE matching subject" ,__func__);
508
509                 // Subject was found, so err changes to Rsrc not found for now.
510                 context->retVal = ACCESS_DENIED_RESOURCE_NOT_FOUND;
511                 OIC_LOG_V(DEBUG, TAG, "%s:Searching for resource..." ,__func__);
512                 if (IsResourceInAce(context->resource, currentAce))
513                 {
514                     OIC_LOG_V(INFO, TAG, "%s:found matching resource in ACE" ,__func__);
515
516                     // Found the resource, so it's down to valid period & permission.
517                     context->retVal = ACCESS_DENIED_INVALID_PERIOD;
518                     if (IsAccessWithinValidTime(currentAce))
519                     {
520                         context->retVal = ACCESS_DENIED_INSUFFICIENT_PERMISSION;
521                         if (IsPermissionAllowingRequest(currentAce->permission, context->permission))
522                         {
523                             context->retVal = ACCESS_GRANTED;
524                         }
525                     }
526                 }
527             }
528             else
529             {
530                 OIC_LOG_V(INFO, TAG, "%s:no ACL found matching subject for resource %s",__func__, context->resource);
531             }
532         } while ((NULL != currentAce) && (ACCESS_GRANTED != context->retVal));
533
534         if (IsAccessGranted(context->retVal))
535         {
536             OIC_LOG_V(INFO, TAG, "%s:Leaving ProcessAccessRequest(ACCESS_GRANTED)", __func__);
537         }
538         else
539         {
540             OIC_LOG_V(INFO, TAG, "%s:Leaving ProcessAccessRequest(ACCESS_DENIED)", __func__);
541         }
542     }
543     else
544     {
545         OIC_LOG_V(ERROR, TAG, "%s:Leaving ProcessAccessRequest(context is NULL)", __func__);
546     }
547 }
548
549 SRMAccessResponse_t CheckPermission(PEContext_t     *context,
550                                     const OicUuid_t *subjectId,
551                                     const char      *resource,
552                                     const uint16_t  requestedPermission)
553 {
554     SRMAccessResponse_t retVal = ACCESS_DENIED_POLICY_ENGINE_ERROR;
555
556     VERIFY_NON_NULL(TAG, context, ERROR);
557     VERIFY_NON_NULL(TAG, subjectId, ERROR);
558     VERIFY_NON_NULL(TAG, resource, ERROR);
559
560     // Each state machine context can only be processing one request at a time.
561     // Therefore if the context is not in AWAITING_REQUEST or AWAITING_AMS_RESPONSE
562     // state, return error. Otherwise, change to BUSY state and begin processing request.
563     if (AWAITING_REQUEST == context->state || AWAITING_AMS_RESPONSE == context->state)
564     {
565         if (AWAITING_REQUEST == context->state)
566         {
567             SetPolicyEngineState(context, BUSY);
568             CopyParamsToContext(context, subjectId, resource, requestedPermission);
569         }
570
571         // Before doing any ACL processing, check if request a) coming
572         // from DevOwner AND b) the device is in Ready for OTM or Reset state
573         // (which in IoTivity is equivalent to isOp == false && owned == false)
574         // AND c) the request is for a SVR resource.
575         // If all 3 conditions are met, grant request.
576         bool isDeviceOwned = true; // default to value that will not grant access
577         if (OC_STACK_OK != GetDoxmIsOwned(&isDeviceOwned)) // if runtime error, don't grant
578         {
579             context->retVal = ACCESS_DENIED_POLICY_ENGINE_ERROR;
580         }
581         // If we were able to get the value of doxm->isOwned, proceed with
582         // test for implicit access...
583         else if (IsRequestFromDevOwner(context) // if from DevOwner
584         && (GetPstatIsop() == false) // AND if pstat->isOp == false
585         && (isDeviceOwned == false) // AND if doxm->isOwned == false
586         && (context->resourceType != NOT_A_SVR_RESOURCE)) // AND if SVR type
587         {
588             context->retVal = ACCESS_GRANTED;
589         }
590 #ifdef _ENABLE_MULTIPLE_OWNER_
591         //Then check if request from SubOwner
592         else if(IsRequestFromSubOwner(context))
593         {
594             if(IsValidRequestFromSubOwner(context))
595             {
596                 context->retVal = ACCESS_GRANTED;
597             }
598         }
599 #endif //_ENABLE_MULTIPLE_OWNER_
600         // If not granted via DevOwner status and not a subowner,
601         // then check if request is for a SVR and coming from rowner
602         else if (IsRequestFromResourceOwner(context))
603         {
604             context->retVal = ACCESS_GRANTED;
605         }
606         // Else request is a "normal" request that must be tested against ACL
607         else
608         {
609             OicUuid_t saveSubject = {.id={0}};
610             bool isSubEmpty = IsRequestSubjectEmpty(context);
611
612             ProcessAccessRequest(context);
613
614             // If access not already granted, and requested subject != wildcard,
615             // try looking for a wildcard ACE that grants access.
616             if ((ACCESS_GRANTED != context->retVal) && \
617               (false == IsWildCardSubject(&context->subject)))
618             {
619                 //Saving subject for Amacl check
620                 memcpy(&saveSubject, &context->subject,sizeof(OicUuid_t));
621
622                 //Setting context subject to WILDCARD_SUBJECT_ID
623                 //TODO: change ProcessAccessRequest method signature to
624                 //ProcessAccessRequest(context, subject) so that context
625                 //subject is not tempered.
626                 memset(&context->subject, 0, sizeof(context->subject));
627                 memcpy(&context->subject, &WILDCARD_SUBJECT_ID,sizeof(OicUuid_t));
628                 ProcessAccessRequest(context); // TODO anonymous subj can result
629                                                // in confusing err code return.
630             }
631
632             //No local ACE found for the request so checking Amacl resource
633             if (ACCESS_GRANTED != context->retVal)
634             {
635                 //If subject is not empty then restore the original subject
636                 //else keep the subject to WILDCARD_SUBJECT_ID
637                 if(!isSubEmpty)
638                 {
639                     memcpy(&context->subject, &saveSubject, sizeof(OicUuid_t));
640                 }
641
642                 //FoundAmaclForRequest method checks for Amacl and fills up
643                 //context->amsMgrContext->amsDeviceId with the AMS deviceId
644                 //if Amacl was found for the requested resource.
645                 if(FoundAmaclForRequest(context))
646                 {
647                     ProcessAMSRequest(context);
648                 }
649             }
650         }
651     }
652     else
653     {
654         context->retVal = ACCESS_DENIED_POLICY_ENGINE_ERROR;
655     }
656
657     // Capture retVal before resetting state for next request.
658     retVal = context->retVal;
659
660    if (!context->amsProcessing)
661     {
662         OIC_LOG(INFO, TAG, "Resetting PE context and PE State to AWAITING_REQUEST");
663         SetPolicyEngineState(context, AWAITING_REQUEST);
664     }
665
666 exit:
667     return retVal;
668 }
669
670 OCStackResult InitPolicyEngine(PEContext_t *context)
671 {
672     if(NULL == context)
673     {
674         return OC_STACK_ERROR;
675     }
676
677     context->amsMgrContext = (AmsMgrContext_t *)OICCalloc(1, sizeof(AmsMgrContext_t));
678     if(NULL == context->amsMgrContext)
679     {
680         return OC_STACK_ERROR;
681     }
682
683     SetPolicyEngineState(context, AWAITING_REQUEST);
684     return OC_STACK_OK;
685 }
686
687 void DeInitPolicyEngine(PEContext_t *context)
688 {
689     if(NULL != context)
690     {
691         SetPolicyEngineState(context, STOPPED);
692         OICFree(context->amsMgrContext);
693     }
694     return;
695 }