complete android ca sample build with scons
[platform/upstream/iotivity.git] / resource / csdk / connectivity / samples / android / casample / sampleService / src / main / jni / ResourceModel.c
1 #include <jni.h>
2 #include <android/log.h>
3 #include <stdio.h>
4 #include <dlfcn.h>
5 #include <stdlib.h>
6 #include <string.h>
7
8 #include "cainterface.h"
9 #include "cacommon.h"
10
11 #include "org_iotivity_ca_service_RMInterface.h"
12
13 #define  LOG_TAG   "JNI_INTERFACE_SAMPLE"
14 #define  LOGI(...) __android_log_print(ANDROID_LOG_INFO, LOG_TAG, __VA_ARGS__)
15 #define  LOGE(...) __android_log_print(ANDROID_LOG_ERROR, LOG_TAG, __VA_ARGS__)
16
17 /**
18  * @def RS_IDENTITY
19  * @brief
20  */
21 #define IDENTITY     ("1111111111111111")
22 /* @def RS_CLIENT_PSK
23  * @brief
24  */
25 #define RS_CLIENT_PSK   ("AAAAAAAAAAAAAAAA")
26
27 #define PORT_LENGTH 5
28 #define SECURE_DEFAULT_PORT 5684
29 #define RESOURCE_URI_LENGTH 14
30 #define OPTION_INFO_LENGTH 1024
31 #define NETWORK_INFO_LENGTH 1024
32
33 typedef struct
34 {
35     char ipAddress[CA_IPADDR_SIZE];
36     uint16_t port;
37 } addressSet_t;
38
39 void request_handler(const CAEndpoint_t* object, const CARequestInfo_t* requestInfo);
40 void response_handler(const CAEndpoint_t* object, const CAResponseInfo_t* responseInfo);
41 void error_handler(const CAEndpoint_t *object, const CAErrorInfo_t* errorInfo);
42 void get_resource_uri(const char *URI, char *resourceURI, uint32_t length);
43 uint32_t get_secure_information(CAPayload_t payLoad);
44 CAResult_t get_network_type(uint32_t selectedNetwork);
45 void callback(char *subject, char *receivedData);
46 CAResult_t get_remote_address(CATransportAdapter_t transportType, const char *address);
47 void parsing_coap_uri(const char* uri, addressSet_t* address, CATransportFlags_t *flags);
48
49 uint16_t g_localSecurePort = SECURE_DEFAULT_PORT;
50 CATransportAdapter_t g_selectedNwType = CA_ADAPTER_IP;
51 static CAToken_t g_lastRequestToken = NULL;
52 static uint8_t g_lastRequestTokenLength = 0;
53
54 static const char COAP_PREFIX[] =  "coap://";
55 static const char COAPS_PREFIX[] = "coaps://";
56 static const uint16_t COAP_PREFIX_LEN = sizeof(COAP_PREFIX) - 1;
57 static const uint16_t COAPS_PREFIX_LEN = sizeof(COAPS_PREFIX) - 1;
58
59 static const char SECURE_INFO_DATA[]
60                                    = "{\"oc\":[{\"href\":\"%s\",\"prop\":{\"rt\":[\"core.led\"],"
61                                      "\"if\":[\"oic.if.baseline\"],\"obs\":1,\"sec\":1,\"port\":"
62                                      "%d}}]}";
63 static const char NORMAL_INFO_DATA[]
64                                    = "{\"oc\":[{\"href\":\"%s\",\"prop\":{\"rt\":[\"core.led\"],"
65                                      "\"if\":[\"oic.if.baseline\"],\"obs\":1}}]}";
66
67 static jobject g_responseListenerObject = NULL;
68 static JavaVM *g_jvm;
69
70 static CAEndpoint_t *g_clientEndpoint = NULL;
71 static char *g_resourceUri = NULL;
72 static CAToken_t g_clientToken = NULL;
73 static uint8_t g_clientTokenLength = 0;
74
75 static uint16_t g_clientMsgId = 0;
76 static char *g_remoteAddress = NULL;
77
78 // init
79 JNIEXPORT void JNICALL
80 Java_org_iotivity_ca_service_RMInterface_setNativeResponseListener(JNIEnv *env, jobject obj,
81                                                                    jobject listener)
82 {
83     LOGI("setNativeResponseListener");
84     g_responseListenerObject = (*env)->NewGlobalRef(env, obj);
85 }
86
87 #ifdef __WITH_DTLS__
88 static CADtlsPskCredsBlob_t *pskCredsBlob = NULL;
89
90 void clearDtlsCredentialInfo()
91 {
92     LOGI("clearDtlsCredentialInfo IN");
93     if (pskCredsBlob)
94     {
95         // Initialize sensitive data to zeroes before freeing.
96         if (NULL != pskCredsBlob->creds)
97         {
98             memset(pskCredsBlob->creds, 0, sizeof(OCDtlsPskCreds)*(pskCredsBlob->num));
99             free(pskCredsBlob->creds);
100         }
101
102         memset(pskCredsBlob, 0, sizeof(CADtlsPskCredsBlob_t));
103         free(pskCredsBlob);
104         pskCredsBlob = NULL;
105     }
106     LOGI("clearDtlsCredentialInfo OUT");
107 }
108
109 // Internal API. Invoked by OC stack to retrieve credentials from this module
110 void CAGetDtlsPskCredentials(CADtlsPskCredsBlob_t **credInfo)
111 {
112     LOGI("CAGetDtlsPskCredentials IN");
113     *credInfo = (CADtlsPskCredsBlob_t *) malloc(sizeof(CADtlsPskCredsBlob_t));
114     if (NULL == *credInfo)
115     {
116         LOGE("Failed to allocate credential blob.");
117         return;
118     }
119
120     int16_t credLen = sizeof(OCDtlsPskCreds) * (pskCredsBlob->num);
121     (*credInfo)->creds = (OCDtlsPskCreds *) malloc(credLen);
122     if (NULL == (*credInfo)->creds)
123     {
124         LOGE("Failed to allocate crentials.");
125         free(*credInfo);
126         *credInfo = NULL;
127         return;
128     }
129
130     memcpy((*credInfo)->identity, pskCredsBlob->identity, DTLS_PSK_ID_LEN);
131     (*credInfo)->num = pskCredsBlob->num;
132     memcpy((*credInfo)->creds, pskCredsBlob->creds, credLen);
133
134     LOGI("CAGetDtlsPskCredentials OUT");
135 }
136
137 CAResult_t SetCredentials()
138 {
139     LOGI("SetCredentials IN");
140     pskCredsBlob = (CADtlsPskCredsBlob_t *)malloc(sizeof(CADtlsPskCredsBlob_t));
141     if (NULL == pskCredsBlob)
142     {
143         LOGE("Memory allocation failed!");
144         return CA_MEMORY_ALLOC_FAILED;
145     }
146     memcpy(pskCredsBlob->identity, IDENTITY, DTLS_PSK_ID_LEN);
147
148     pskCredsBlob->num = 1;
149
150     pskCredsBlob->creds = (OCDtlsPskCreds *)malloc(sizeof(OCDtlsPskCreds) *(pskCredsBlob->num));
151     if (NULL == pskCredsBlob->creds)
152     {
153         LOGE("Memory allocation failed!");
154         return CA_MEMORY_ALLOC_FAILED;
155     }
156     memcpy(pskCredsBlob->creds[0].id, IDENTITY, DTLS_PSK_ID_LEN);
157     memcpy(pskCredsBlob->creds[0].psk, RS_CLIENT_PSK, DTLS_PSK_PSK_LEN);
158
159     LOGI("SetCredentials OUT");
160     return CA_STATUS_OK;
161 }
162 #endif
163
164 JNIEXPORT jint JNI_OnLoad(JavaVM *jvm, void *reserved)
165 {
166     LOGI("JNI_OnLoad");
167
168     JNIEnv* env;
169     if (JNI_OK != (*jvm)->GetEnv(jvm, (void**) &env, JNI_VERSION_1_6))
170     {
171         return -1;
172     }
173     g_jvm = jvm; /* cache the JavaVM pointer */
174
175     CANativeJNISetJavaVM(g_jvm);
176
177     return JNI_VERSION_1_6;
178 }
179
180 void JNI_OnUnload(JavaVM *jvm, void *reserved)
181 {
182     LOGI("JNI_OnUnload");
183
184     JNIEnv* env;
185     if (JNI_OK != (*jvm)->GetEnv(jvm, (void**) &env, JNI_VERSION_1_6))
186     {
187         return;
188     }
189     g_jvm = 0;
190     return;
191 }
192
193 JNIEXPORT void JNICALL
194 Java_org_iotivity_ca_service_RMInterface_RMInitialize(JNIEnv *env, jobject obj, jobject context)
195 {
196     LOGI("RMInitialize");
197
198     //Currently set context for Android Platform
199     CANativeJNISetContext(env, context);
200
201     CAResult_t res = CAInitialize();
202
203     if (CA_STATUS_OK != res)
204     {
205         LOGE("Could not Initialize");
206     }
207
208 #ifdef __WITH_DTLS__
209     if (CA_STATUS_OK != SetCredentials())
210     {
211         LOGE("SetCredentials failed");
212         return;
213     }
214
215     res = CARegisterDTLSCredentialsHandler(CAGetDtlsPskCredentials);
216     if(CA_STATUS_OK != res)
217     {
218         LOGE("Set credential handler fail");
219         return;
220     }
221 #endif
222 }
223
224 JNIEXPORT void JNICALL
225 Java_org_iotivity_ca_service_RMInterface_RMTerminate(JNIEnv *env, jobject obj)
226 {
227     LOGI("RMTerminate");
228     CADestroyToken(g_lastRequestToken);
229     CATerminate();
230 }
231
232 JNIEXPORT void JNICALL
233 Java_org_iotivity_ca_service_RMInterface_RMStartListeningServer(JNIEnv *env, jobject obj)
234 {
235     LOGI("RMStartListeningServer");
236
237     if (CA_STATUS_OK != CAStartListeningServer())
238     {
239         LOGE("Could not start Listening server");
240     }
241 }
242
243 JNIEXPORT void JNICALL
244 Java_org_iotivity_ca_service_RMInterface_RMStartDiscoveryServer(JNIEnv *env, jobject obj)
245 {
246     LOGI("RMStartDiscoveryServer");
247
248     if (CA_STATUS_OK != CAStartDiscoveryServer())
249     {
250         LOGE("Could not start discovery server");
251     }
252 }
253
254 JNIEXPORT void JNICALL
255 Java_org_iotivity_ca_service_RMInterface_RMRegisterHandler(JNIEnv *env, jobject obj)
256 {
257     LOGI("RMRegisterHandler");
258
259     CARegisterHandler(request_handler, response_handler, error_handler);
260 }
261
262 JNIEXPORT void JNICALL
263 Java_org_iotivity_ca_service_RMInterface_RMSendRequest(JNIEnv *env, jobject obj, jstring uri,
264                                                        jstring payload, jint selectedNetwork,
265                                                        jint isSecured, jint msgType)
266 {
267     LOGI("selectedNetwork - %d", selectedNetwork);
268     CAResult_t res = get_network_type(selectedNetwork);
269     if (CA_STATUS_OK != res)
270     {
271         return;
272     }
273
274     const char* strUri = (*env)->GetStringUTFChars(env, uri, NULL);
275     LOGI("RMSendRequest - %s", strUri);
276
277     CATransportFlags_t flags;
278     addressSet_t address = {};
279     parsing_coap_uri(strUri, &address, &flags);
280
281     //create remote endpoint
282     CAEndpoint_t* endpoint = NULL;
283     res = CACreateEndpoint(flags, g_selectedNwType, (const char*)address.ipAddress,
284                            address.port, &endpoint);
285     if (CA_STATUS_OK != res)
286     {
287         LOGE("Could not create remote end point");
288         (*env)->ReleaseStringUTFChars(env, uri, strUri);
289         return;
290     }
291
292     CAMessageType_t messageType = msgType;
293
294     // create token
295     CAToken_t token = NULL;
296     uint8_t tokenLength = CA_MAX_TOKEN_LEN;
297
298     res = CAGenerateToken(&token, tokenLength);
299     if ((CA_STATUS_OK != res) || (!token))
300     {
301         LOGE("token generate error!!");
302         // destroy remote endpoint
303         CADestroyEndpoint(endpoint);
304         (*env)->ReleaseStringUTFChars(env, uri, strUri);
305         return;
306     }
307
308     char resourceURI[RESOURCE_URI_LENGTH + 1] = { 0 };
309
310     get_resource_uri((const CAURI_t) strUri, resourceURI, RESOURCE_URI_LENGTH);
311     (*env)->ReleaseStringUTFChars(env, uri, strUri);
312
313     CAInfo_t requestData = { 0 };
314     requestData.token = token;
315     requestData.tokenLength = tokenLength;
316
317     if (1 == isSecured)
318     {
319         uint32_t length = sizeof(SECURE_INFO_DATA) + strlen(resourceURI);
320         requestData.payload = (CAPayload_t) malloc(length);
321         if (NULL == requestData.payload)
322         {
323             LOGE("Memory allocation failed!");
324             // destroy token
325             CADestroyToken(token);
326             // destroy remote endpoint
327             CADestroyEndpoint(endpoint);
328             return;
329         }
330         snprintf(requestData.payload, length, SECURE_INFO_DATA, resourceURI, g_localSecurePort);
331         requestData.payloadSize = length;
332     }
333     else
334     {
335         uint32_t length = sizeof(NORMAL_INFO_DATA) + strlen(resourceURI);
336         requestData.payload = (CAPayload_t) malloc(length);
337         if (NULL == requestData.payload)
338         {
339             LOGE("Memory allocation failed!");
340             // destroy token
341             CADestroyToken(token);
342             // destroy remote endpoint
343             CADestroyEndpoint(endpoint);
344             return;
345         }
346         snprintf(requestData.payload, length, NORMAL_INFO_DATA, resourceURI);
347         requestData.payloadSize = length;
348     }
349
350     requestData.type = messageType;
351     requestData.resourceUri = (CAURI_t) malloc(sizeof(resourceURI));
352     if (NULL == requestData.resourceUri)
353     {
354         LOGE("Memory allocation failed!");
355         // destroy token
356         CADestroyToken(token);
357         // destroy remote endpoint
358         CADestroyEndpoint(endpoint);
359         free(requestData.payload);
360         return;
361     }
362     memcpy(requestData.resourceUri, resourceURI, sizeof(resourceURI));
363
364     CARequestInfo_t requestInfo = { 0 };
365     requestInfo.method = CA_GET;
366     requestInfo.isMulticast = false;
367     requestInfo.info = requestData;
368
369     // send request
370     if (CA_STATUS_OK != CASendRequest(endpoint, &requestInfo))
371     {
372         LOGE("Could not send request");
373     }
374
375     // destroy token
376     CADestroyToken(token);
377
378     // destroy remote endpoint
379     CADestroyEndpoint(endpoint);
380
381     free(requestData.payload);
382     free(requestData.resourceUri);
383 }
384
385 JNIEXPORT void JNICALL
386 Java_org_iotivity_ca_service_RMInterface_RMSendReqestToAll(JNIEnv *env, jobject obj, jstring uri,
387                                                            jint selectedNetwork)
388 {
389     LOGI("selectedNetwork - %d", selectedNetwork);
390     CAResult_t res = get_network_type(selectedNetwork);
391     if (CA_STATUS_OK != res)
392     {
393         return;
394     }
395
396     // create remote endpoint
397     CAEndpoint_t *endpoint = NULL;
398     res = CACreateEndpoint(CA_DEFAULT_FLAGS, g_selectedNwType, NULL, 0, &endpoint);
399
400     if (CA_STATUS_OK != res)
401     {
402         LOGE("create remote endpoint error, error code: %d", res);
403         return;
404     }
405
406     // create token
407     CAToken_t token = NULL;
408     uint8_t tokenLength = CA_MAX_TOKEN_LEN;
409
410     res = CAGenerateToken(&token, tokenLength);
411     if ((CA_STATUS_OK != res) || (!token))
412     {
413         LOGE("token generate error!!");
414         // destroy remote endpoint
415         CADestroyEndpoint(endpoint);
416         return;
417     }
418
419     LOGI("generated token %s", token);
420
421     CAInfo_t requestData = { 0 };
422     requestData.token = token;
423     requestData.tokenLength = tokenLength;
424     requestData.payload = (CAPayload_t) "TempJsonPayload";
425     requestData.payloadSize = strlen((const char *) requestData.payload);
426     requestData.type = CA_MSG_NONCONFIRM;
427
428     const char* strUri = (*env)->GetStringUTFChars(env, uri, NULL);
429     LOGI("resourceUri - %s", strUri);
430     requestData.resourceUri = (CAURI_t)strUri;
431
432     uint8_t optionNum = 2;
433     CAHeaderOption_t *headerOpt = (CAHeaderOption_t*) calloc(1,
434                                                              sizeof(CAHeaderOption_t) * optionNum);
435     if (NULL == headerOpt)
436     {
437         LOGE("Memory allocation failed");
438         // destroy remote endpoint
439         CADestroyEndpoint(endpoint);
440         return;
441     }
442
443     char* FirstOptionData = "Hello";
444     headerOpt[0].optionID = 3000;
445     memcpy(headerOpt[0].optionData, FirstOptionData, strlen(FirstOptionData));
446     headerOpt[0].optionLength = (uint16_t) strlen(FirstOptionData);
447
448     char* SecondOptionData2 = "World";
449     headerOpt[1].optionID = 3001;
450     memcpy(headerOpt[1].optionData, SecondOptionData2, strlen(SecondOptionData2));
451     headerOpt[1].optionLength = (uint16_t) strlen(SecondOptionData2);
452
453     requestData.numOptions = optionNum;
454     requestData.options = headerOpt;
455
456     CARequestInfo_t requestInfo = { 0 };
457     requestInfo.method = CA_GET;
458     requestInfo.isMulticast = true;
459     requestInfo.info = requestData;
460
461     // send request to all
462     res = CASendRequest(endpoint, &requestInfo);
463     if (CA_STATUS_OK != res)
464     {
465         LOGE("Could not send request to all");
466         //destroy token
467         CADestroyToken(token);
468     }
469     else
470     {
471         CADestroyToken(g_lastRequestToken);
472         g_lastRequestToken = token;
473         g_lastRequestTokenLength = tokenLength;
474     }
475
476     //ReleaseStringUTFChars for strUri
477     (*env)->ReleaseStringUTFChars(env, uri, strUri);
478
479     free(headerOpt);
480
481     // destroy remote endpoint
482     CADestroyEndpoint(endpoint);
483 }
484
485 JNIEXPORT void JNICALL
486 Java_org_iotivity_ca_service_RMInterface_RMSendResponse(JNIEnv *env, jobject obj,
487                                                         jint selectedNetwork,
488                                                         jint isSecured, jint msgType,
489                                                         jint responseValue)
490 {
491     LOGI("RMSendResponse");
492
493     LOGI("selectedNetwork - %d", selectedNetwork);
494
495     CAResult_t res = get_network_type(selectedNetwork);
496     if (CA_STATUS_OK != res)
497     {
498         LOGE("Not supported network type");
499         return;
500     }
501
502     if (NULL == g_clientEndpoint)
503     {
504         LOGE("No Request received");
505         return;
506     }
507
508     CAMessageType_t messageType = msgType;
509
510     CAInfo_t responseData = { 0 };
511     responseData.type = messageType;
512     responseData.messageId = g_clientMsgId;
513     responseData.resourceUri = (CAURI_t)g_resourceUri;
514
515     CAResponseInfo_t responseInfo = { 0 };
516
517     if (msgType != CA_MSG_RESET)
518     {
519         responseData.token = g_clientToken;
520         responseData.tokenLength = g_clientTokenLength;
521         responseInfo.result = responseValue;
522
523         if (1 == isSecured)
524         {
525             uint32_t length = strlen(SECURE_INFO_DATA) + strlen(g_resourceUri) + 1;
526             responseData.payload = (CAPayload_t) malloc(length);
527             sprintf(responseData.payload, SECURE_INFO_DATA, g_resourceUri,
528                     g_localSecurePort);
529             responseData.payloadSize = length;
530         }
531         else
532         {
533             uint32_t length = strlen(NORMAL_INFO_DATA) + strlen(g_resourceUri) + 1;
534             responseData.payload = (CAPayload_t) malloc(length);
535             sprintf(responseData.payload, NORMAL_INFO_DATA, g_resourceUri);
536             responseData.payloadSize = length;
537         }
538     }
539     //msgType is RESET
540     else
541     {
542         responseInfo.result = CA_EMPTY;
543     }
544
545     responseInfo.info = responseData;
546
547     // send response
548     res = CASendResponse(g_clientEndpoint, &responseInfo);
549     if (CA_STATUS_OK != res)
550     {
551         LOGE("Could not send response");
552     }
553
554     // destroy token
555     CADestroyToken(g_clientToken);
556     g_clientToken = NULL;
557     g_clientTokenLength = 0;
558
559     // destroy remote endpoint
560     CADestroyEndpoint(g_clientEndpoint);
561     g_clientEndpoint = NULL;
562 }
563
564 JNIEXPORT void JNICALL
565 Java_org_iotivity_ca_service_RMInterface_RMSendNotification(JNIEnv *env, jobject obj, jstring uri,
566                                                             jstring payload, jint selectedNetwork,
567                                                             jint isSecured, jint msgType,
568                                                             jint responseValue)
569 {
570     LOGI("selectedNetwork - %d", selectedNetwork);
571
572     CAResult_t res = get_network_type(selectedNetwork);
573     if (CA_STATUS_OK != res)
574     {
575         LOGE("Not supported network type");
576         return;
577     }
578
579     const char* strUri = (*env)->GetStringUTFChars(env, uri, NULL);
580     LOGI("RMSendNotification - %s", strUri);
581
582     CATransportFlags_t flags;
583     addressSet_t address = {};
584     parsing_coap_uri(strUri, &address, &flags);
585
586     //create remote endpoint
587     CAEndpoint_t* endpoint = NULL;
588     if (CA_STATUS_OK != CACreateEndpoint(flags, g_selectedNwType,
589                                          (const char*)address.ipAddress,
590                                          address.port, &endpoint))
591     {
592         //ReleaseStringUTFChars for strUri
593         (*env)->ReleaseStringUTFChars(env, uri, strUri);
594         LOGE("Could not create remote end point");
595         return;
596     }
597
598     char resourceURI[RESOURCE_URI_LENGTH + 1] = { 0 };
599     get_resource_uri(strUri, resourceURI, RESOURCE_URI_LENGTH);
600
601     //ReleaseStringUTFChars for strUri
602     (*env)->ReleaseStringUTFChars(env, uri, strUri);
603
604     CAMessageType_t messageType = msgType;
605
606     // create token
607     CAToken_t token = NULL;
608     uint8_t tokenLength = CA_MAX_TOKEN_LEN;
609
610     res = CAGenerateToken(&token, tokenLength);
611     if ((CA_STATUS_OK != res) || (!token))
612     {
613         LOGE("token generate error!");
614         CADestroyEndpoint(endpoint);
615         return;
616     }
617
618     CAInfo_t responseData = { 0 };
619     responseData.token = token;
620     responseData.tokenLength = tokenLength;
621     responseData.resourceUri = (CAURI_t) malloc(sizeof(resourceURI));
622     if (NULL == responseData.resourceUri)
623     {
624         LOGE("Memory allocation failed!");
625         // destroy token
626         CADestroyToken(token);
627         // destroy remote endpoint
628         CADestroyEndpoint(endpoint);
629         return;
630     }
631     memcpy(responseData.resourceUri, resourceURI, sizeof(resourceURI));
632
633     if (1 == isSecured)
634     {
635         uint32_t length = sizeof(SECURE_INFO_DATA) + strlen(resourceURI);
636         responseData.payload = (CAPayload_t) malloc(length);
637         if (NULL == responseData.payload)
638         {
639             LOGE("Memory allocation failed!");
640             // destroy token
641             CADestroyToken(token);
642             // destroy remote endpoint
643             CADestroyEndpoint(endpoint);
644
645             free(responseData.resourceUri);
646             return;
647         }
648         snprintf(responseData.payload, length, SECURE_INFO_DATA, resourceURI, g_localSecurePort);
649     }
650     else
651     {
652         uint32_t length = sizeof(NORMAL_INFO_DATA) + strlen(resourceURI);
653         responseData.payload = (CAPayload_t) malloc(length);
654         if (NULL == responseData.payload)
655         {
656             LOGE("Memory allocation failed!");
657             // destroy token
658             CADestroyToken(token);
659             // destroy remote endpoint
660             CADestroyEndpoint(endpoint);
661
662             free(responseData.resourceUri);
663             return;
664         }
665         snprintf(responseData.payload, length, NORMAL_INFO_DATA, resourceURI);
666     }
667
668     responseData.type = messageType;
669
670     CAResponseInfo_t responseInfo = { 0 };
671     responseInfo.result = responseValue;
672     responseInfo.info = responseData;
673
674     // send notification
675     if (CA_STATUS_OK != CASendNotification(endpoint, &responseInfo))
676     {
677         LOGE("Could not send notification");
678     }
679
680     LOGI("Send Notification");
681
682     // destroy token
683     CADestroyToken(token);
684
685     // destroy remote endpoint
686     CADestroyEndpoint(endpoint);
687
688     free(responseData.payload);
689     free(responseData.resourceUri);
690 }
691
692 JNIEXPORT void JNICALL
693 Java_org_iotivity_ca_service_RMInterface_RMSelectNetwork(JNIEnv *env, jobject obj,
694                                                          jint networkType)
695 {
696     LOGI("RMSelectNetwork Type : %d", networkType);
697
698     if (CA_STATUS_OK != CASelectNetwork(networkType))
699     {
700         LOGE("Could not select network");
701     }
702 }
703
704 JNIEXPORT void JNICALL
705 Java_org_iotivity_ca_service_RMInterface_RMUnSelectNetwork(JNIEnv *env, jobject obj,
706                                                            jint networkType)
707 {
708     LOGI("RMUnSelectNetwork Type : %d", networkType);
709
710     if (CA_STATUS_OK != CAUnSelectNetwork(networkType))
711     {
712         LOGE("Could not unselect network");
713     }
714 }
715
716 JNIEXPORT void JNICALL
717 Java_org_iotivity_ca_service_RMInterface_RMGetNetworkInfomation(JNIEnv *env, jobject obj)
718 {
719     LOGI("RMGetNetworkInfomation");
720
721     CAEndpoint_t *tempInfo = NULL;
722     uint32_t tempSize = 0;
723
724     CAResult_t res = CAGetNetworkInformation(&tempInfo, &tempSize);
725     if (CA_STATUS_OK != res)
726     {
727         LOGE("Could not start get network information");
728         free(tempInfo);
729         return;
730     }
731
732     LOGI("################## Network Information #######################");
733     callback("######## Network Information", "#######");
734     LOGI("Network info total size is %d", tempSize);
735
736     uint32_t index;
737     for (index = 0; index < tempSize; index++)
738     {
739         res = get_remote_address(tempInfo[index].adapter, tempInfo[index].addr);
740         if (CA_STATUS_OK != res)
741         {
742             free(tempInfo);
743             return;
744         }
745         if (NULL != g_responseListenerObject)
746         {
747             char networkInfo[NETWORK_INFO_LENGTH];
748             LOGI("Type: %d", tempInfo[index].adapter);
749             sprintf(networkInfo, "%d",tempInfo[index].adapter);
750             callback("Type :", networkInfo);
751             if (CA_ADAPTER_IP == tempInfo[index].adapter)
752             {
753                 LOGI("Port: %d", tempInfo[index].port);
754                 sprintf(networkInfo, "%d",tempInfo[index].port);
755                 callback("Port: ", networkInfo);
756             }
757             LOGI("Secured: %d", (tempInfo[index].flags & CA_SECURE));
758             LOGI("Address: %s", g_remoteAddress);
759             callback("Address: ", g_remoteAddress);
760             free(g_remoteAddress);
761         }
762         if (tempInfo[index].flags & CA_SECURE)
763         {
764             g_localSecurePort = tempInfo[index].port;
765         }
766     }
767
768     // free
769     free(tempInfo);
770
771     LOGI("##############################################################");
772 }
773
774 JNIEXPORT void JNICALL
775 Java_org_iotivity_ca_service_RMInterface_RMHandleRequestResponse(JNIEnv *env, jobject obj)
776 {
777     LOGI("RMHandleRequestResponse");
778
779     if (CA_STATUS_OK != CAHandleRequestResponse())
780     {
781         LOGE("Could not handle request and response");
782     }
783 }
784
785 void request_handler(const CAEndpoint_t* object, const CARequestInfo_t* requestInfo)
786 {
787
788     if (!object)
789     {
790         LOGE("Remote endpoint is NULL!");
791         return;
792     }
793
794     if (!requestInfo)
795     {
796         LOGE("Request info is NULL!");
797         return;
798     }
799
800     if ((NULL != g_lastRequestToken) && (NULL != requestInfo->info.token) &&
801             (strncmp(g_lastRequestToken, requestInfo->info.token,
802                      requestInfo->info.tokenLength) == 0))
803     {
804         LOGI("token is same. received request of it's own. skip.. ");
805         return;
806     }
807
808     CAResult_t res = get_remote_address(object->adapter, object->addr);
809     if (CA_STATUS_OK != res)
810     {
811         return;
812     }
813
814     LOGI("##########received request from remote device #############");
815     LOGI("Remote Address: %s", g_remoteAddress);
816     LOGI("Uri: %s", requestInfo->info.resourceUri);
817     LOGI("Data: %s", requestInfo->info.payload);
818     LOGI("Token: %s", requestInfo->info.token);
819     LOGI("Code: %d", requestInfo->method);
820     LOGI("MessageType: %d", requestInfo->info.type);
821
822     if (NULL != g_responseListenerObject)
823     {
824         callback("received request from remote device", "#######");
825         char *cloneUri = NULL;
826         uint32_t len = 0;
827
828         if (NULL != requestInfo->info.resourceUri)
829         {
830             len = strlen(requestInfo->info.resourceUri);
831             cloneUri = (char *)malloc(sizeof(char) * (len + 1));
832
833             if (NULL == cloneUri)
834             {
835                 LOGE("cloneUri Out of memory");
836                 free(g_remoteAddress);
837                 return;
838             }
839
840             memcpy(cloneUri, requestInfo->info.resourceUri, len + 1);
841             callback("Uri: ", cloneUri);
842         }
843
844         len = strlen(g_remoteAddress);
845         char *cloneRemoteAddress = (char *) malloc(sizeof(char) * (len + 1));
846
847         if (NULL == cloneRemoteAddress)
848         {
849             LOGE("cloneRemoteAddress Out of memory");
850             free(g_remoteAddress);
851             free(cloneUri);
852             return;
853         }
854
855         memcpy(cloneRemoteAddress, g_remoteAddress, len + 1);
856
857         callback("Remote Address: ", cloneRemoteAddress);
858         free(cloneRemoteAddress);
859         free(g_remoteAddress);
860
861         //clone g_clientEndpoint
862         g_clientEndpoint = (CAEndpoint_t *) malloc(sizeof(CAEndpoint_t));
863         if (NULL == g_clientEndpoint)
864         {
865             LOGE("g_clientEndpoint Out of memory");
866             free(cloneUri);
867             return;
868         }
869         memcpy(g_clientEndpoint, object, sizeof(CAEndpoint_t));
870
871         if (NULL != cloneUri)
872         {
873             len = strlen(cloneUri);
874             g_resourceUri = (char *) malloc(sizeof(char) * (len + 1));
875             if (NULL == g_resourceUri)
876             {
877                 LOGE("g_clientEndpoint->resourceUri Out of memory");
878                 free(g_clientEndpoint);
879                 free(cloneUri);
880                 return;
881             }
882             memcpy(g_resourceUri, cloneUri, len + 1);
883             free(cloneUri);
884         }
885         //clone g_clientToken
886         len = requestInfo->info.tokenLength;
887
888         g_clientToken = (char *) malloc(sizeof(char) * len);
889         if (NULL == g_clientToken)
890         {
891             LOGE("g_clientToken Out of memory");
892             free(g_clientEndpoint);
893             return;
894         }
895
896         if (NULL != requestInfo->info.token)
897         {
898             memcpy(g_clientToken, requestInfo->info.token, len);
899             g_clientTokenLength = len;
900
901         }
902
903         //clone g_clientMsgId
904         g_clientMsgId = requestInfo->info.messageId;
905
906         if (NULL != requestInfo->info.payload)
907         {
908             len = strlen(requestInfo->info.payload);
909             char *clonePayload = (char *) malloc(sizeof(char) * (len + 1));
910
911             if (NULL == clonePayload)
912             {
913                 LOGE("clonePayload Out of memory");
914                 free(g_clientEndpoint);
915                 return;
916             }
917
918             memcpy(clonePayload, requestInfo->info.payload, len + 1);
919
920             callback("Data: ", clonePayload);
921             free(clonePayload);
922         }
923     }
924
925     if (requestInfo->info.options)
926     {
927         uint32_t len = requestInfo->info.numOptions;
928         uint32_t i;
929
930         LOGI("Option count: %d", requestInfo->info.numOptions);
931
932         for (i = 0; i < len; i++)
933         {
934             LOGI("Option %d", i + 1);
935             LOGI("ID : %d", requestInfo->info.options[i].optionID);
936             LOGI("Data[%d]: %s", requestInfo->info.options[i].optionLength,
937                  requestInfo->info.options[i].optionData);
938
939             if (NULL != g_responseListenerObject)
940             {
941                 char optionInfo[OPTION_INFO_LENGTH] = { 0, };
942                 sprintf(optionInfo, "Num[%d] - ID : %d, Option Length : %d", i + 1,
943                         requestInfo->info.options[i].optionID,
944                         requestInfo->info.options[i].optionLength);
945
946                 callback("Option info: ", optionInfo);
947
948                 size_t optionDataLen = strlen(requestInfo->info.options[i].optionData);
949                 char *cloneOptionData = (char *) malloc(sizeof(char) * (optionDataLen + 1));
950                 if (NULL == cloneOptionData)
951                 {
952                     LOGE("cloneOptionData Out of memory");
953                     free(g_clientEndpoint);
954                     return;
955                 }
956
957                 memcpy(cloneOptionData, requestInfo->info.options[i].optionData,
958                        optionDataLen + 1);
959
960                 callback("Option Data: ", cloneOptionData);
961                 free(cloneOptionData);
962             }
963         }
964     }
965     LOGI("############################################################");
966
967     //Check if this has secure communication information
968     if (requestInfo->info.payload && CA_ADAPTER_IP == object->adapter)
969     {
970         uint32_t securePort = get_secure_information(requestInfo->info.payload);
971         if (0 < securePort) //Set the remote endpoint secure details and send response
972         {
973             LOGI("This is secure resource...");
974
975             CAEndpoint_t *endpoint = NULL;
976             if (CA_STATUS_OK != CACreateEndpoint(CA_SECURE,
977                         object->adapter, object->addr, securePort, &endpoint))
978             {
979                 LOGE("Failed to create duplicate of remote endpoint!");
980                 return;
981             }
982             object = endpoint;
983         }
984     }
985 }
986
987 void response_handler(const CAEndpoint_t* object, const CAResponseInfo_t* responseInfo)
988 {
989
990     CAResult_t res = get_remote_address(object->adapter, object->addr);
991     if (CA_STATUS_OK != res)
992     {
993         return;
994     }
995
996     LOGI("##########Received response from remote device #############");
997     LOGI("Uri: %s", responseInfo->info.resourceUri);
998     LOGI("Remote Address: %s", g_remoteAddress);
999     LOGI("response result: %d", responseInfo->result);
1000     LOGI("Data: %s", responseInfo->info.payload);
1001     LOGI("Token: %s", responseInfo->info.token);
1002     LOGI("MessageType: %d", responseInfo->info.type);
1003
1004     if (NULL != g_responseListenerObject)
1005     {
1006         uint32_t len = 0;
1007
1008         if (NULL != responseInfo->info.resourceUri)
1009         {
1010             len = strlen(responseInfo->info.resourceUri);
1011             char *cloneUri = (char *) malloc(sizeof(char) * (len + 1));
1012
1013             if (NULL == cloneUri)
1014             {
1015                 LOGE("cloneUri Out of memory");
1016                 free(g_remoteAddress);
1017                 return;
1018             }
1019
1020             memcpy(cloneUri, responseInfo->info.resourceUri, len + 1);
1021
1022             callback("Uri: ", cloneUri);
1023             free(cloneUri);
1024         }
1025
1026         len = strlen(g_remoteAddress);
1027         char *cloneRemoteAddress = (char *) malloc(sizeof(char) * (len + 1));
1028
1029         if (NULL == cloneRemoteAddress)
1030         {
1031             LOGE("cloneRemoteAddress Out of memory");
1032             free(g_remoteAddress);
1033             return;
1034         }
1035
1036         memcpy(cloneRemoteAddress, g_remoteAddress, len + 1);
1037
1038         callback("Remote Address: ", cloneRemoteAddress);
1039         free(cloneRemoteAddress);
1040         free(g_remoteAddress);
1041
1042         if (NULL != responseInfo->info.payload)
1043         {
1044             len = strlen(responseInfo->info.payload);
1045             char *clonePayload = (char *) malloc(sizeof(char) * (len + 1));
1046
1047             if (NULL == clonePayload)
1048             {
1049                 LOGE("clonePayload Out of memory");
1050                 return;
1051             }
1052
1053             memcpy(clonePayload, responseInfo->info.payload, len + 1);
1054
1055             callback("Data: ", clonePayload);
1056             free(clonePayload);
1057         }
1058     }
1059
1060     if (responseInfo->info.options)
1061     {
1062         uint32_t len = responseInfo->info.numOptions;
1063         uint32_t i;
1064         for (i = 0; i < len; i++)
1065         {
1066             LOGI("Option %d", i + 1);
1067             LOGI("ID : %d", responseInfo->info.options[i].optionID);
1068             LOGI("Data[%d]: %s", responseInfo->info.options[i].optionLength,
1069                  responseInfo->info.options[i].optionData);
1070
1071             if (NULL != g_responseListenerObject)
1072             {
1073                 char optionInfo[OPTION_INFO_LENGTH] = { 0, };
1074                 sprintf(optionInfo, "Num[%d] - ID : %d, Option Length : %d", i + 1,
1075                         responseInfo->info.options[i].optionID,
1076                         responseInfo->info.options[i].optionLength);
1077
1078                 callback("Option info: ", optionInfo);
1079
1080                 size_t optionDataLen = strlen(responseInfo->info.options[i].optionData);
1081                 char *cloneOptionData = (char *) malloc(sizeof(char) * (optionDataLen + 1));
1082                 if (NULL == cloneOptionData)
1083                 {
1084                     LOGE("cloneOptionData Out of memory");
1085                     return;
1086                 }
1087                 memcpy(cloneOptionData, responseInfo->info.options[i].optionData,
1088                        optionDataLen + 1);
1089                 callback("Option Data: ", cloneOptionData);
1090                 free(cloneOptionData);
1091             }
1092         }
1093     }
1094     LOGI("############################################################");
1095
1096     //Check if this has secure communication information
1097     if (responseInfo->info.payload && CA_ADAPTER_IP == object->adapter)
1098     {
1099         uint32_t securePort = get_secure_information(responseInfo->info.payload);
1100         if (0 < securePort) //Set the remote endpoint secure details and send response
1101         {
1102             LOGI("This is secure resource...");
1103         }
1104     }
1105 }
1106
1107 void error_handler(const CAEndpoint_t *rep, const CAErrorInfo_t* errorInfo)
1108 {
1109     printf("+++++++++++++++++++++++++++++++++++ErrorInfo+++++++++++++++++++++++++++++++++++");
1110
1111     if(errorInfo)
1112     {
1113         const CAInfo_t *info = &errorInfo->info;
1114         LOGI("Error Handler, ErrorInfo :");
1115         LOGI("Error Handler result    : %d", errorInfo->result);
1116         LOGI("Error Handler token     : %s", info->token);
1117         LOGI("Error Handler messageId : %d", (uint16_t) info->messageId);
1118         LOGI("Error Handler resourceUri : %s", info->resourceUri);
1119         LOGI("Error Handler type      : %d", info->type);
1120         LOGI("Error Handler payload   : %s", info->payload);
1121
1122         if(CA_ADAPTER_NOT_ENABLED == errorInfo->result)
1123         {
1124             LOGE("CA_ADAPTER_NOT_ENABLED, enable the adapter");
1125         }
1126         else if(CA_SEND_FAILED == errorInfo->result)
1127         {
1128             LOGE("CA_SEND_FAILED, unable to send the message, check parameters");
1129         }
1130         else if(CA_MEMORY_ALLOC_FAILED == errorInfo->result)
1131         {
1132             LOGE("CA_MEMORY_ALLOC_FAILED, insufficient memory");
1133         }
1134         else if(CA_SOCKET_OPERATION_FAILED == errorInfo->result)
1135         {
1136             LOGE("CA_SOCKET_OPERATION_FAILED, socket operation failed");
1137         }
1138         else if(CA_STATUS_FAILED == errorInfo->result)
1139         {
1140             LOGE("CA_STATUS_FAILED, message could not be delivered, internal error");
1141         }
1142     }
1143     LOGI("++++++++++++++++++++++++++++++++End of ErrorInfo++++++++++++++++++++++++++++++++");
1144
1145     return;
1146 }
1147
1148 void get_resource_uri(const char *URI, char *resourceURI, uint32_t length)
1149 {
1150     const char *startPos = URI;
1151     const char *temp = strstr(URI, "://");
1152     if (NULL != temp)
1153     {
1154         startPos = strchr(temp + 3, '/');
1155         if (!startPos)
1156         {
1157             LOGE("Resource URI is missing");
1158             return;
1159         }
1160     }
1161
1162     const char *endPos = strchr(startPos, '?');
1163     if (!endPos)
1164     {
1165         endPos = URI + strlen(URI);
1166     }
1167     --endPos;
1168
1169     if (endPos - startPos <= length)
1170     {
1171         memcpy(resourceURI, startPos + 1, endPos - startPos);
1172     }
1173
1174     LOGI("URI: %s, ResourceURI: %s", URI, resourceURI);
1175 }
1176
1177 uint32_t get_secure_information(CAPayload_t payLoad)
1178 {
1179     LOGI("entering get_secure_information");
1180
1181     if (!payLoad)
1182     {
1183         LOGE("Payload is NULL");
1184         return -1;
1185     }
1186
1187     const char *subString = NULL;
1188     if (NULL == (subString = strstr(payLoad, "\"sec\":1")))
1189     {
1190         LOGE("This is not secure resource");
1191         return -1;
1192     }
1193
1194     if (NULL == (subString = strstr(payLoad, "\"port\":")))
1195     {
1196         LOGE("This secure resource does not have port information");
1197         return -1;
1198     }
1199
1200     const char *startPos = strstr(subString, ":");
1201     if (!startPos)
1202     {
1203         LOGE("Parsing failed !");
1204         return -1;
1205     }
1206
1207     const char *endPos = strstr(startPos, "}");
1208     if (!endPos)
1209     {
1210         LOGE("Parsing failed !");
1211         return -1;
1212     }
1213
1214     char portStr[6] = { 0 };
1215     memcpy(portStr, startPos + 1, (endPos - 1) - startPos);
1216
1217     LOGI("secured port is: %s", portStr);
1218     return atoi(portStr);
1219 }
1220
1221 CAResult_t get_network_type(uint32_t selectedNetwork)
1222 {
1223
1224     uint32_t number = selectedNetwork;
1225
1226     if (!(number & 0xf))
1227     {
1228         return CA_NOT_SUPPORTED;
1229     }
1230     if (number & CA_ADAPTER_IP)
1231     {
1232         g_selectedNwType = CA_ADAPTER_IP;
1233         return CA_STATUS_OK;
1234     }
1235     if (number & CA_ADAPTER_RFCOMM_BTEDR)
1236     {
1237         g_selectedNwType = CA_ADAPTER_RFCOMM_BTEDR;
1238         return CA_STATUS_OK;
1239     }
1240     if (number & CA_ADAPTER_GATT_BTLE)
1241     {
1242         g_selectedNwType = CA_ADAPTER_GATT_BTLE;
1243         return CA_STATUS_OK;
1244     }
1245
1246     return CA_NOT_SUPPORTED;
1247 }
1248
1249 void callback(char *subject, char *receivedData)
1250 {
1251     JNIEnv* env = NULL;
1252     uint32_t status = (*g_jvm)->GetEnv(g_jvm, (void **) &env, JNI_VERSION_1_6);
1253     uint32_t res = (*g_jvm)->AttachCurrentThread(g_jvm, &env, NULL);
1254
1255     jclass cls = (*env)->GetObjectClass(env, g_responseListenerObject);
1256     jmethodID mid = (*env)->GetMethodID(env, cls, "OnResponseReceived",
1257                                         "(Ljava/lang/String;Ljava/lang/String;)V");
1258
1259     jstring jsubject = (*env)->NewStringUTF(env, (char*) subject);
1260     jstring jreceivedData = (*env)->NewStringUTF(env, (char*) receivedData);
1261     (*env)->CallVoidMethod(env, g_responseListenerObject, mid, jsubject, jreceivedData);
1262
1263 }
1264
1265 CAResult_t get_remote_address(CATransportAdapter_t transportType, const char *address)
1266 {
1267     uint32_t len = strlen(address);
1268
1269     g_remoteAddress = (char *)malloc(sizeof (char) * (len + 1));
1270     if (NULL == g_remoteAddress)
1271     {
1272         LOGE("g_remoteAddress Out of memory");
1273         return CA_MEMORY_ALLOC_FAILED;
1274     }
1275
1276     memcpy(g_remoteAddress, address, len + 1);
1277
1278     return CA_STATUS_OK;
1279 }
1280
1281
1282 void parsing_coap_uri(const char* uri, addressSet_t* address, CATransportFlags_t *flags)
1283 {
1284     if (NULL == uri || NULL == address)
1285     {
1286         LOGE("parameter is null");
1287         return;
1288     }
1289
1290     // parse uri
1291     // #1. check prefix
1292     uint8_t startIndex = 0;
1293     if (strncmp(COAPS_PREFIX, uri, COAPS_PREFIX_LEN) == 0)
1294     {
1295         LOGI("uri has '%s' prefix", COAPS_PREFIX);
1296         startIndex = COAPS_PREFIX_LEN;
1297         *flags = CA_SECURE;
1298     }
1299     else if (strncmp(COAP_PREFIX, uri, COAP_PREFIX_LEN) == 0)
1300     {
1301         LOGI("uri has '%s' prefix", COAP_PREFIX);
1302         startIndex = COAP_PREFIX_LEN;
1303         *flags = CA_DEFAULT_FLAGS;
1304     }
1305
1306     // #2. copy uri for parse
1307     int32_t len = strlen(uri) - startIndex;
1308
1309     if (len <= 0)
1310     {
1311         LOGE("uri length is 0!");
1312         return;
1313     }
1314
1315     char *cloneUri = (char *) calloc(len + 1, sizeof(char));
1316     if (NULL == cloneUri)
1317     {
1318         LOGE("Out of memory");
1319         return;
1320     }
1321
1322     memcpy(cloneUri, &uri[startIndex], sizeof(char) * len);
1323     cloneUri[len] = '\0';
1324
1325     char *pAddress = cloneUri;
1326     char *pResourceUri = NULL;
1327
1328     int32_t i = 0;
1329     for (i = 0; i < len; i++)
1330     {
1331         if (cloneUri[i] == '/')
1332         {
1333             // separate
1334             cloneUri[i] = 0;
1335             pResourceUri = &cloneUri[i + 1];
1336             break;
1337         }
1338     }
1339     LOGI("pAddress : %s", pAddress);
1340
1341     int res = get_address_set(pAddress, address);
1342     if (res == -1)
1343     {
1344         LOGE("address parse error");
1345
1346         free(cloneUri);
1347         return;
1348     }
1349     return;
1350 }
1351
1352 int get_address_set(const char *pAddress, addressSet_t* outAddress)
1353 {
1354     if (NULL == pAddress || NULL == outAddress)
1355     {
1356         LOGE("parameter is null");
1357         return -1;
1358     }
1359
1360     int32_t len = strlen(pAddress);
1361     int32_t isIp = 0;
1362     int32_t ipLen = 0;
1363
1364     int32_t i = 0;
1365     for (i = 0; i < len; i++)
1366     {
1367         if (pAddress[i] == '.')
1368         {
1369             isIp = 1;
1370         }
1371
1372         // found port number start index
1373         if (isIp && pAddress[i] == ':')
1374         {
1375             ipLen = i;
1376             break;
1377         }
1378     }
1379
1380     if (isIp)
1381     {
1382         if(ipLen && ipLen < sizeof(outAddress->ipAddress))
1383         {
1384             strncpy(outAddress->ipAddress, pAddress, ipLen);
1385             outAddress->ipAddress[ipLen] = '\0';
1386         }
1387         else if (!ipLen && len < sizeof(outAddress->ipAddress))
1388         {
1389             strncpy(outAddress->ipAddress, pAddress, len);
1390             outAddress->ipAddress[len] = '\0';
1391         }
1392         else
1393         {
1394             LOGE("IP Address too long: %d", ipLen==0 ? len : ipLen);
1395             return -1;
1396         }
1397
1398         if (ipLen > 0)
1399         {
1400             outAddress->port = atoi(pAddress + ipLen + 1);
1401         }
1402     }
1403     else
1404     {
1405         strncpy(outAddress->ipAddress, pAddress, len);
1406         outAddress->ipAddress[len] = '\0';
1407     }
1408
1409     return isIp;
1410 }