Modified CloudClient (CPP)
[platform/upstream/iotivity.git] / resource / provisioning / examples / cloudClient.cpp
1 //******************************************************************
2 //
3 // Copyright 2016 Samsung Electronics 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 <stdio.h>
21 #include <stdlib.h>
22 #include <string.h>
23
24 #include "ocstack.h"
25 #include "logger.h"
26 #include "camutex.h"
27 #include "cathreadpool.h"
28 #include "ocpayload.h"
29 #include "payload_logging.h"
30 #include "ocprovisioningmanager.h"
31
32 #include "utils.h"
33 #include "cloudAuth.h"
34 #include "cloudWrapper.h"
35 #include "OCApi.h"
36 #include "OCCloudProvisioning.h"
37
38 #ifdef __unix__
39 #include <unistd.h> //for unlink
40 #endif
41
42 #define TAG "cloudClient"
43 using namespace OC;
44
45 #define DEFAULT_HOST            "127.0.0.1"
46 #define DEFAULT_PORT            OC_MULTICAST_PORT
47 #define DEFAULT_DEVICEID        "6A757374-776F-726B-4465-765575696430"
48 #define DEFAULT_USERID          "6A757374-776F-726B-4465-765575696430"
49 #define DEFAULT_AUTH_PROVIDER   "github"
50 #define DEFAULT_DB_FILE         "./cloud.dat"
51 #define DEFAULT_RESPONSE_WAIT_TIME (10 * 1000000) //10s
52
53 #define GITHUB_AUTH_LINK        "https://github.com/login?return_to=%2Flogin%2Foauth%2Fauthorize%3Fclient_id%3Dea9c18f540323b0213d0%26redirect_uri%3Dhttp%253A%252F%252Fwww.example.com%252Foauth_callback%252F"
54
55 static bool fExit = false;
56
57 static OCDevAddr endPoint;
58 static char token[1024];
59 static char authProvider[1024];
60 static char *fname = DEFAULT_DB_FILE;
61 static uint64_t timeout;
62 static uint16_t g_credId = 0;
63
64 ca_cond cond;
65 ca_mutex mutex;
66 std::string ip(DEFAULT_HOST);
67 OCCloudProvisioning g_cloudProv(ip, (uint16_t)DEFAULT_PORT);
68
69 typedef enum {
70     SIGN_UP       = 1,
71     SIGN_IN       = 2,
72     SIGN_OUT      = 3,
73
74     HOST          = 4,
75     PORT          = 5,
76     DB_FILE       = 6,
77     AUTH_PROVIDER = 7,
78     USE_RSA = 8,
79     SAVE_TRUST_CERT = 9,
80     USE_SECURE_CONN = 10,
81
82     CSR_SIGN      = 19,
83
84     CRL_GET       = 20,
85     CRL_POST      = 21,
86
87     ACL_ID_CREATE = 30,
88     ACL_ID_GET_BY_DEVICE = 31,
89     ACL_ID_DELETE = 32,
90
91     ACL_INDIVIDUAL_GET_INFO = 40,
92     ACL_INDIVIDUAL_UPDATE_ACE = 41,
93     ACL_INDIVIDUAL_DELETE = 42,
94
95     ACL_GROUP_CREATE = 50,
96     ACL_GROUP_FIND   = 51,
97     ACL_GROUP_JOIN   = 52,
98     ACL_GROUP_OBSERVE= 53,
99     ACL_GROUP_DELETE = 54,
100
101     ACL_GROUP_SHARE_DEVICE  = 60,
102     ACL_GROUP_DELETE_DEVICE  = 61,
103     ACL_GROUP_GET_INFO  = 62,
104
105     ACL_POLICY_CHECK_REQUEST = 70,
106
107     ACL_GROUP_INVITE_USER = 80,
108     ACL_GROUP_GET_INVITE  = 81,
109     ACL_GROUP_DELETE_INVITE  = 82,
110     ACL_GROUP_CANCEL_INVITE  = 83,
111
112     EXIT          = 99
113 }CloudRequest;
114
115 void printMenu()
116 {
117     printf("************************************************************\n");
118     printf("****************** Cloud Client Requests *******************\n");
119     printf("************************************************************\n");
120     printf("** AUTHORIZATION\n");
121     printf("** %d - Sign Up request\n", SIGN_UP);
122     printf("** %d - Sign In request\n", SIGN_IN);
123     printf("** %d - Sign Out request\n", SIGN_OUT);
124
125     printf("** SETTINGS \n");
126     printf("** %d - Change default host\n", HOST);
127     printf("** %d - Change default port\n", PORT);
128     printf("** %d - Change default database filename\n", DB_FILE);
129     printf("** %d - Change default auth provider\n", AUTH_PROVIDER);
130     printf("** %d - Change TLS cipher suite to RSA\n", USE_RSA);
131     printf("** %d - Save Trust Cert. Chain into Cred of SVR\n", SAVE_TRUST_CERT);
132     printf("** %d - Change Protocol type (CoAP/CoAPs)\n", USE_SECURE_CONN);
133
134     printf("** CERTIFICATE REQUEST\n");
135     printf("** %d - Certificate Request\n", CSR_SIGN);
136
137     printf("** CRL\n");
138     printf("** %d - CRL GET Request\n", CRL_GET);
139     printf("** %d - CRL POST Request\n", CRL_POST);
140
141     printf("** ACL MANAGER\n");
142     printf("** %d - ACL id create Request\n", ACL_ID_CREATE);
143     printf("** %d - ACL id retrieve by device Request\n", ACL_ID_GET_BY_DEVICE);
144     printf("** %d - ACL id delete Request\n", ACL_ID_DELETE);
145
146     printf("** ACL INDIVIDUAL\n");
147     printf("** %d - ACL individual get info Request\n", ACL_INDIVIDUAL_GET_INFO);
148     printf("** %d - ACL individual update ACE Request\n", ACL_INDIVIDUAL_UPDATE_ACE);
149     printf("** %d - ACL individual delete Request\n", ACL_INDIVIDUAL_DELETE);
150
151     printf("** ACL GROUP MANAGER\n");
152     printf("** %d - ACL Create Group Request\n", ACL_GROUP_CREATE);
153     printf("** %d - ACL Find Group Request\n", ACL_GROUP_FIND);
154     printf("** %d - ACL Join to invited Group Request\n", ACL_GROUP_JOIN);
155     printf("** %d - ACL Observe Group Request\n", ACL_GROUP_OBSERVE);
156     printf("** %d - ACL Delete Group Request\n", ACL_GROUP_DELETE);
157
158     printf("** ACL INDIVIDUAL GROUP\n");
159     printf("** %d - ACL Share device into Group Request\n", ACL_GROUP_SHARE_DEVICE);
160     printf("** %d - ACL Delete device from Group Request\n", ACL_GROUP_DELETE_DEVICE);
161     printf("** %d - ACL Get Group Info Request\n", ACL_GROUP_GET_INFO);
162
163     printf("** ACL POLICY ENFORCEMENT\n");
164     printf("** %d - ACL Check Permissions Request\n", ACL_POLICY_CHECK_REQUEST);
165
166     printf("** ACL MEMBER INVITATION\n");
167     printf("** %d - ACL Invite user to group Request\n", ACL_GROUP_INVITE_USER);
168     printf("** %d - ACL Retrieve invitation Request\n", ACL_GROUP_GET_INVITE);
169     printf("** %d - ACL Delete invitation Request\n", ACL_GROUP_DELETE_INVITE);
170     printf("** %d - ACL Cancel invitation Request\n", ACL_GROUP_CANCEL_INVITE);
171
172     printf("** EXIT\n");
173     printf("** %d - Exit cloud client\n\n", EXIT);
174     printf("************************************************************\n");
175
176     printf(">> Enter Menu number:\n");
177 }
178
179 /**
180  * This is default callback to all requests
181  * Used to sync with main menu
182  *
183  * @param[in] ctx          context
184  * @param[in] result       result
185  * @param[in] data         data
186  */
187 void handleCB(void* ctx, OCStackResult result, void* data)
188 {
189     OC_UNUSED(ctx);
190     OC_UNUSED(data);
191
192     printf("Cloud request Result is == %d", result);
193     ca_mutex_lock(mutex);
194     ca_cond_signal(cond);
195     ca_mutex_unlock(mutex);
196 }
197
198 void handleCB1(OCStackResult result, void *data)
199 {
200     OC_UNUSED(data);
201
202     printf("Cloud request Result is == %d", result);
203     ca_mutex_lock(mutex);
204     ca_cond_signal(cond);
205     ca_mutex_unlock(mutex);
206 }
207
208 void handleCB2(OCStackResult result, std::string data)
209 {
210     printf("Cloud request Result is == %d", result);
211     printf("ACL ID for the device is == %s", data.c_str());
212
213     ca_mutex_lock(mutex);
214     ca_cond_signal(cond);
215     ca_mutex_unlock(mutex);
216 }
217
218 static int saveTrustCert(void)
219 {
220     OCStackResult res = OC_STACK_ERROR;
221     OIC_LOG(INFO, TAG, "Save Trust Cert. Chain into Cred of SVR");
222
223     ByteArray trustCertChainArray = {0, 0};
224
225     FILE *fp = fopen("rootca.crt", "rb+");
226
227     if (fp)
228     {
229         size_t fsize;
230         if (fseeko(fp, 0, SEEK_END) == 0 && (fsize = ftello(fp)) > 0)
231         {
232             trustCertChainArray.data = (uint8_t*)OICCalloc(1, fsize+1);
233             trustCertChainArray.len = fsize+1;
234             if (NULL == trustCertChainArray.data)
235             {
236                 OIC_LOG(ERROR,TAG,"OICCalloc");
237                 fclose(fp);
238                 return res;
239             }
240             rewind(fp);
241             if (fsize != fread(trustCertChainArray.data, 1, fsize, fp))
242             {
243                 OIC_LOG(ERROR, TAG, "Certiface not read completely");
244             }
245             fclose(fp);
246         }
247     }
248     OIC_LOG_BUFFER(DEBUG, TAG, trustCertChainArray.data, trustCertChainArray.len);
249
250     res = OCSaveTrustCertChain(trustCertChainArray.data, trustCertChainArray.len, OIC_ENCODING_PEM,&g_credId);
251
252     if(OC_STACK_OK != res)
253     {
254         OIC_LOG(ERROR, TAG, "OCSaveTrustCertChainBin API error");
255         return res;
256     }
257     OIC_LOG_V(INFO, TAG, "CredId of Saved Trust Cert. Chain into Cred of SVR : %d.\n", g_credId);
258
259     return res;
260 }
261
262 static void userRequests(void *data)
263 {
264     (void) data;
265     //defaults
266     memset(token, 0, sizeof(token));
267     memset(authProvider, 0, sizeof(authProvider));
268     strncpy(authProvider, DEFAULT_AUTH_PROVIDER, sizeof(authProvider));
269     memset(&endPoint, 0, sizeof(endPoint));
270     strncpy(endPoint.addr, DEFAULT_HOST, sizeof(endPoint.addr));
271     endPoint.port = DEFAULT_PORT;
272
273     mutex = ca_mutex_new();
274     cond = ca_cond_new();
275
276     while (false == fExit)
277     {
278         OCStackResult res = OC_STACK_ERROR;
279         timeout = DEFAULT_RESPONSE_WAIT_TIME;
280         //startup report
281         printf("-----------------------------------------------------------\n");
282         printf("Connecting to: %s:%d\n", endPoint.addr, endPoint.port);
283         printf("via auth provider: %s\n", authProvider);
284         printf("srv file: %s\n", fname);
285         printf("CoAP prefix: %s\n", DEFAULT_PREFIX);
286         printf("-----------------------------------------------------------\n");
287
288         printMenu();
289
290         int request = 0;
291         scanf("%d", &request);
292
293         switch (request)
294         {
295         case SIGN_UP:
296             if (0 == strncmp(authProvider, DEFAULT_AUTH_PROVIDER, sizeof(authProvider)))
297             {
298                 printf("Paste to browser %s and get auth code\n", GITHUB_AUTH_LINK);
299             }
300             readString(token, sizeof(token), "auth token", "check link above");
301             res = CloudSignUp(&endPoint, authProvider, token, handleCloudSignUpResponse);
302             break;
303         case SIGN_IN:
304             res = CloudSignIn(&endPoint, handleCloudSignInResponse);
305             break;
306         case SIGN_OUT:
307             res = CloudSignOut(&endPoint, handleCloudSignOutResponse);
308             break;
309         case HOST:
310             {
311                 readString(endPoint.addr, sizeof(endPoint.addr), "host ip address", DEFAULT_HOST);
312                 std::string str(endPoint.addr);
313                 g_cloudProv.setIpAddr(str);
314                 break;
315             }
316         case PORT:
317         {
318             char example[8];
319             snprintf(example, sizeof(example), "%d", DEFAULT_PORT);
320             int tmp = 0;
321             readInteger(&tmp, "port number", example);
322             endPoint.port = tmp;
323             g_cloudProv.setPort((uint16_t)tmp);
324         }
325         break;
326         case CRL_GET:
327             res = OCWrapperGetCRL( g_cloudProv, handleCB1);
328             break;
329         case CRL_POST:
330             res = OCWrapperPostCRL( g_cloudProv, handleCB1);
331             break;
332         case ACL_GROUP_CREATE:
333             res = OCWrapperAclCreateGroup(&endPoint, handleCB);
334             break;
335         case ACL_GROUP_FIND:
336             res = OCWrapperAclFindMyGroup(&endPoint, handleCB);
337             break;
338         case ACL_GROUP_DELETE:
339             res = OCWrapperAclDeleteGroup(&endPoint, handleCB);
340             break;
341         case ACL_GROUP_JOIN:
342             res = OCWrapperAclJoinToInvitedGroup(&endPoint, handleCB);
343             break;
344         case ACL_GROUP_OBSERVE:
345             res = OCWrapperAclObserveGroup(&endPoint, handleCB);
346             break;
347         case ACL_GROUP_SHARE_DEVICE:
348             res = OCWrapperAclShareDeviceIntoGroup(&endPoint, handleCB);
349             break;
350         case ACL_GROUP_DELETE_DEVICE:
351             res = OCWrapperAclDeleteDeviceFromGroup(&endPoint, handleCB);
352             break;
353         case ACL_GROUP_GET_INFO:
354             res = OCWrapperAclGroupGetInfo(&endPoint, handleCB);
355             break;
356         case ACL_GROUP_INVITE_USER:
357             res = OCWrapperAclInviteUser(&endPoint, handleCB);
358             break;
359         case ACL_GROUP_GET_INVITE:
360             res = OCWrapperAclGetInvitation(&endPoint, handleCB);
361             break;
362         case ACL_GROUP_DELETE_INVITE:
363             res = OCWrapperAclDeleteInvitation(&endPoint, handleCB);
364             break;
365         case ACL_GROUP_CANCEL_INVITE:
366             res = OCWrapperAclCancelInvitation(&endPoint, handleCB);
367             break;
368         case ACL_POLICY_CHECK_REQUEST:
369             res = OCWrapperAclPolicyCheck(&endPoint, handleCB);
370             break;
371         case ACL_ID_GET_BY_DEVICE:
372             res = OCWrapperAclIdGetByDevice( g_cloudProv, handleCB2);
373             break;
374         case ACL_ID_CREATE:
375             res = OCWrapperAclIdCreate(&endPoint, handleCB);
376             break;
377         case ACL_ID_DELETE:
378             res = OCWrapperAclIdDelete(&endPoint, handleCB);
379             break;
380         case ACL_INDIVIDUAL_GET_INFO:
381             res = OCWrapperAclIndividualGetInfo( g_cloudProv, handleCB1);
382             break;
383         case ACL_INDIVIDUAL_UPDATE_ACE:
384             res = OCWrapperAclIndividualUpdateAce(&endPoint, handleCB);
385             break;
386         case ACL_INDIVIDUAL_DELETE:
387             res = OCWrapperAclIndividualDelete(&endPoint, handleCB);
388             break;
389         case CSR_SIGN:
390             res = OCWrapperCertificateIssueRequest( g_cloudProv, handleCB1);
391             break;
392         case USE_RSA:
393             res = CAManager::setCipherSuite(0x35, OC_ADAPTER_TCP);
394             break;
395         case SAVE_TRUST_CERT:
396             saveTrustCert();
397             break;
398         case USE_SECURE_CONN:
399         {
400             int tmp = 0;
401             readInteger(&tmp, "CoAP protocol type", "0 - non-secure, 1 - secure");
402             setCoapPrefix(0 == tmp ? false : true);
403         }
404             break;
405         case EXIT:
406             ca_mutex_free(mutex);
407             ca_cond_free(cond);
408             fExit = true;
409             break;
410         default:
411             printf(">> Entered Wrong Menu Number. Please Enter Again\n\n");
412             break;
413         }
414
415         //if requests were sent then wait response
416         if (res == OC_STACK_OK)
417         {
418             ca_mutex_lock(mutex);
419             ca_cond_wait_for(cond, mutex, timeout);
420             ca_mutex_unlock(mutex);
421         }
422     }
423
424
425 }
426
427 FILE* server_fopen(const char *path, const char *mode)
428 {
429     OC_UNUSED(path);
430     return fopen(fname, mode);
431 }
432
433 /**
434  * Check file accessibility
435  *
436  * @param[in] name        file path
437  * @return true           if check was successful
438  */
439 static bool checkConfig(const char *name)
440 {
441     FILE* file = fopen(name, "rb");
442
443     if (file)
444     {
445         fclose(file);
446         return true;
447     }
448     return false;
449 }
450
451 static void printUsage(char *name)
452 {
453     printf("Wrong arguments count!\n");
454     printf("Usage : %s <database_filename>\n", name);
455     printf("Examples : 1) %s 2) %s cloud.dat\n", name, name);
456 }
457
458 //==============================================================
459 int main(int argc, char *argv[])
460 {
461     OC_UNUSED(argc);
462     OC_UNUSED(argv);
463
464     if (2 == argc)
465     {
466         fname = argv[1];
467
468         if (!checkConfig(fname))
469         {
470             OIC_LOG_V(ERROR, TAG, "Can't open database file %s, exit!", fname);
471             return -1;
472         }
473     }
474     else if (argc > 2)
475     {
476         printUsage(argv[0]);
477     }
478
479     //Initialize Persistent Storage for SVR database
480     OCPersistentStorage ps = {server_fopen, fread, fwrite, fclose, unlink};
481
482     OCRegisterPersistentStorageHandler(&ps);
483
484     OCMode stackMode = OC_CLIENT_SERVER;
485     if (OCInit(NULL, 0, stackMode) != OC_STACK_OK)
486     {
487         OIC_LOG(ERROR, TAG, "OCStack init error, exit\n");
488         return 1;
489     }
490
491     ca_thread_pool_t g_threadPoolHandle = NULL;
492     CAResult_t res = ca_thread_pool_init(1, &g_threadPoolHandle);
493     if (CA_STATUS_OK != res)
494     {
495         OIC_LOG(ERROR, TAG, "thread pool initialize error.");
496         return res;
497     }
498
499     res = ca_thread_pool_add_task(g_threadPoolHandle, userRequests, NULL);
500     if (CA_STATUS_OK != res)
501     {
502         OIC_LOG(ERROR, TAG, "thread pool add task error.");
503         goto error;
504     }
505
506     while(false == fExit)
507     {
508         if (OCProcess() != OC_STACK_OK)
509         {
510             OIC_LOG(ERROR, TAG,"OCProcess process error, exit\n");
511             return 2;
512         }
513     }
514
515     if (OCStop() != OC_STACK_OK)
516     {
517         OIC_LOG(ERROR, TAG, "OCStop process error\n");
518     }
519
520     error:
521     if (g_threadPoolHandle)
522     {
523         ca_thread_pool_free(g_threadPoolHandle);
524     }
525
526     return 0;
527 }