Merge branch 'master' into easysetup
[platform/upstream/iotivity.git] / resource / csdk / connectivity / src / ip_adapter / arduino / caipserver_wifi.cpp
1 /******************************************************************
2 *
3 * Copyright 2014 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
21 #include "caipinterface.h"
22
23 #include <Arduino.h>
24 #include <WiFi.h>
25 #include <WiFiUdp.h>
26 #include <SPI.h>
27 #include <utility/server_drv.h>
28 #include <utility/wifi_drv.h>
29 #include <IPAddress.h>
30
31 #include "logger.h"
32 #include "cacommon.h"
33 #include "cainterface.h"
34 #include "caadapterinterface.h"
35 #include "caipadapter.h"
36 #include "caadapterutils.h"
37 #include "oic_malloc.h"
38 #include "oic_string.h"
39
40 #define TAG "IPS"
41
42 // Length of the IP address decimal notation string
43 #define IPNAMESIZE (16)
44
45 /** Multicast IP address.*/
46 #define IPv4_MULTICAST      "224.0.1.187"
47
48 /** Multicast Port.*/
49 #define IPv4_MULTICAST_PORT 5683
50
51 // Start offsets based on end of received data buffer
52 #define IP_RECBUF_IPADDR_OFFSET  (6)
53 #define IP_RECBUF_PORT_OFFSET    (2)
54
55 #define IP_RECBUF_IPADDR_SIZE    (IP_RECBUF_IPADDR_OFFSET - IP_RECBUF_PORT_OFFSET)
56 #define IP_RECBUF_PORT_SIZE      (IP_RECBUF_PORT_OFFSET - 0)
57 #define IP_RECBUF_FOOTER_SIZE    (IP_RECBUF_IPADDR_SIZE + IP_RECBUF_PORT_SIZE)
58
59 static void CAArduinoCheckData();
60 static void CAPacketReceivedCallback(const char *ipAddress, const uint16_t port,
61                                      const void *data, const uint32_t dataLength);
62
63 static CAIPPacketReceivedCallback gPacketReceivedCallback = NULL;
64 static int32_t gUnicastSocket = 0;
65 static bool gServerRunning = false;
66 static WiFiUDP Udp;
67 /**
68  * @var g_unicastPort
69  * @brief Unicast Port
70  */
71 static uint16_t g_unicastPort = 0;
72
73 CAResult_t CAIPInitializeServer(const ca_thread_pool_t threadPool)
74 {
75     /**
76      * This API is to keep design in sync with other platforms.
77      * The required implementation is done in Start() api's.
78      */
79     return CA_STATUS_OK;
80 }
81
82 void CAIPTerminateServer(void)
83 {
84     /**
85      * This API is to keep design in sync with other platforms.
86      * The required implementation is done in Stop() api's.
87      */
88 }
89
90 uint16_t CAGetServerPortNum(const char *ipAddress, bool isSecured)
91 {
92     return g_unicastPort;
93 }
94
95 CAResult_t CAIPStartUnicastServer(const char *localAddress, uint16_t *port,
96                                   bool secured)
97 {
98     OIC_LOG(DEBUG, TAG, "IN");
99     VERIFY_NON_NULL(port, TAG, "port");
100
101     if (gServerRunning)
102     {
103         // already running
104         OIC_LOG(DEBUG, TAG, "Error");
105         return CA_STATUS_FAILED;
106     }
107
108     if (WiFi.status() != WL_CONNECTED)
109     {
110         OIC_LOG(ERROR, TAG, "ERROR:No WIFI");
111         return CA_STATUS_FAILED;
112     }
113
114     OIC_LOG_V(DEBUG, TAG, "port: %u", *port);
115
116     Udp.begin((uint16_t ) *port);
117     gServerRunning = true;
118     g_unicastPort = *port;
119     caglobals.ip.u4.port =  *port;
120     OIC_LOG(DEBUG, TAG, "OUT");
121     return CA_STATUS_OK;
122 }
123
124 CAResult_t CAIPStartMulticastServer(const char *localAddress, const char *multicastAddress,
125                                       uint16_t multicastPort)
126 {
127     // wifi shield does not support multicast
128     OIC_LOG(DEBUG, TAG, "IN");
129     OIC_LOG(DEBUG, TAG, "OUT");
130     return CA_NOT_SUPPORTED;
131 }
132
133 CAResult_t CAIPStartServer()
134 {
135     uint16_t unicastPort = 55555;
136
137     CAResult_t ret = CAIPStartUnicastServer("0.0.0.0", &unicastPort, false);
138     if (CA_STATUS_OK != ret)
139     {
140         OIC_LOG_V(ERROR, TAG, "Start unicast server failed[%d]", ret);
141         return ret;
142     }
143     ret = CAIPStartMulticastServer("0.0.0.0", IPv4_MULTICAST, IPv4_MULTICAST_PORT);
144     if (CA_STATUS_OK != ret)
145     {
146         OIC_LOG_V(ERROR, TAG, "Start multicast failed[%d]", ret);
147     }
148     return ret;
149 }
150
151 CAResult_t CAIPStopUnicastServer()
152 {
153     OIC_LOG(DEBUG, TAG, "IN");
154     Udp.stop();
155
156     gServerRunning = false;
157     caglobals.ip.u4.port =  0;
158     OIC_LOG(DEBUG, TAG, "OUT");
159     return CA_STATUS_OK;
160 }
161
162 CAResult_t CAIPStopMulticastServer()
163 {
164     return CAIPStopUnicastServer();
165 }
166
167 CAResult_t CAIPStartListenServer()
168 {
169     CAResult_t ret = CAIPStartMulticastServer("0.0.0.0", IPv4_MULTICAST, IPv4_MULTICAST_PORT);
170     if (CA_STATUS_OK != ret)
171     {
172         OIC_LOG_V(ERROR, TAG, "Start multicast failed[%d]", ret);
173     }
174     return ret;
175 }
176
177 CAResult_t CAIPStopListenServer()
178 {
179     return CAIPStopMulticastServer();
180 }
181
182 void CAIPStopServer()
183 {
184     OIC_LOG(DEBUG, TAG, "IN");
185     CAResult_t result = CAIPStopUnicastServer();
186     if (CA_STATUS_OK != result)
187     {
188         OIC_LOG_V(ERROR, TAG, "stop ucast srv fail:%d", result);
189         return;
190     }
191     CAIPSetUnicastSocket(-1);
192     CAIPSetUnicastPort(0);
193
194     result = CAIPStopMulticastServer();
195     if (CA_STATUS_OK != result)
196     {
197         OIC_LOG_V(ERROR, TAG, "stop mcast srv fail:%d", result);
198     }
199     OIC_LOG(DEBUG, TAG, "OUT");
200 }
201
202 void CAPacketReceivedCallback(const char *ipAddress, const uint16_t port,
203                               const void *data, const uint32_t dataLength)
204 {
205     OIC_LOG(DEBUG, TAG, "IN");
206     if (gPacketReceivedCallback)
207     {
208         CASecureEndpoint_t sep =
209         {.endpoint = {.adapter = CA_ADAPTER_IP, .flags = CA_IPV4, .port = port}};
210
211         OICStrcpy(sep.endpoint.addr, sizeof(sep.endpoint.addr), ipAddress);
212         gPacketReceivedCallback(&sep, data, dataLength);
213         OIC_LOG(DEBUG, TAG, "Notified network packet");
214     }
215     OIC_LOG(DEBUG, TAG, "OUT");
216 }
217
218 void CAArduinoCheckData()
219 {
220     OIC_LOG(DEBUG, TAG, "IN");
221     char addr[IPNAMESIZE] = {0};
222     uint16_t senderPort = 0;
223     int16_t packetSize = Udp.parsePacket();
224     OIC_LOG_V(DEBUG, TAG, "Rcv packet of size:%d ", packetSize);
225     if (packetSize)
226     {
227         packetSize = packetSize > COAP_MAX_PDU_SIZE ? COAP_MAX_PDU_SIZE:packetSize;
228         char *data = (char *)OICMalloc(packetSize + 1);
229         if (NULL == data)
230         {
231             return;
232         }
233         IPAddress remoteIp = Udp.remoteIP();
234         senderPort = Udp.remotePort();
235         sprintf(addr, "%d.%d.%d.%d", remoteIp[0], remoteIp[1], remoteIp[2], remoteIp[3]);
236         OIC_LOG_V(DEBUG, TAG, "remoteip: %s, port: %d", addr, senderPort);
237         // read the packet into packetBufffer
238         int32_t dataLen = Udp.read(data, COAP_MAX_PDU_SIZE);
239         if (dataLen > 0)
240         {
241             data[dataLen] = 0;
242         }
243         CAPacketReceivedCallback(addr, senderPort, data, dataLen);
244         OICFree(data);
245     }
246     OIC_LOG(DEBUG, TAG, "OUT");
247 }
248
249 void CAIPSetPacketReceiveCallback(CAIPPacketReceivedCallback callback)
250 {
251     OIC_LOG(DEBUG, TAG, "IN");
252     gPacketReceivedCallback = callback;
253     OIC_LOG(DEBUG, TAG, "OUT");
254 }
255
256 void CAIPSetExceptionCallback(CAIPExceptionCallback callback)
257 {
258     // TODO
259 }
260
261 void CAIPSetErrorHandleCallback(CAIPErrorHandleCallback ipErrorCallback)
262 {
263     OIC_LOG(DEBUG, TAG, "IN");
264     OIC_LOG(DEBUG, TAG, "OUT");
265 }
266
267 void CAIPPullData()
268 {
269     CAArduinoCheckData();
270 }
271
272 CAResult_t CAGetIPInterfaceInformation(CAEndpoint_t **info, uint32_t *size)
273 {
274     OIC_LOG(DEBUG, TAG, "IN");
275
276     VERIFY_NON_NULL(info, TAG, "info is NULL");
277     VERIFY_NON_NULL(size, TAG, "size is NULL");
278
279     u_arraylist_t *iflist = CAIPGetInterfaceInformation(0);
280     if (!iflist)
281     {
282         OIC_LOG(ERROR, TAG, "get interface info failed");
283         return CA_STATUS_FAILED;
284     }
285
286     uint32_t len = u_arraylist_length(iflist);
287
288     CAEndpoint_t *eps = (CAEndpoint_t *)OICCalloc(len, sizeof (CAEndpoint_t));
289     if (!eps)
290     {
291         OIC_LOG(ERROR, TAG, "Malloc Failed");
292         u_arraylist_destroy(iflist);
293         return CA_MEMORY_ALLOC_FAILED;
294     }
295
296     for (uint32_t i = 0, j = 0; i < len; i++)
297     {
298         CAInterface_t *ifitem = (CAInterface_t *)u_arraylist_get(iflist, i);
299         if(!ifitem)
300         {
301             continue;
302         }
303         unsigned char *addr=  (unsigned char *) &(ifitem->ipv4addr);
304         snprintf(eps[j].addr, MAX_ADDR_STR_SIZE_CA, "%d.%d.%d.%d", addr[0], addr[1], addr[2], addr[3]);
305
306         eps[j].flags = CA_IPV4;
307         eps[j].adapter = CA_ADAPTER_IP;
308         eps[j].interface = 0;
309         eps[j].port = caglobals.ip.u4.port;
310         j++;
311     }
312
313     *info = eps;
314     *size = len;
315
316     u_arraylist_destroy(iflist);
317
318     OIC_LOG(DEBUG, TAG, "OUT");
319     return CA_STATUS_OK;
320 }