Imported Upstream version 0.9.2
[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 // Start offsets based on end of received data buffer
46 #define IP_RECBUF_IPADDR_OFFSET  (6)
47 #define IP_RECBUF_PORT_OFFSET    (2)
48
49 #define IP_RECBUF_IPADDR_SIZE    (IP_RECBUF_IPADDR_OFFSET - IP_RECBUF_PORT_OFFSET)
50 #define IP_RECBUF_PORT_SIZE      (IP_RECBUF_PORT_OFFSET - 0)
51 #define IP_RECBUF_FOOTER_SIZE    (IP_RECBUF_IPADDR_SIZE + IP_RECBUF_PORT_SIZE)
52
53 static void CAArduinoCheckData();
54 static void CAPacketReceivedCallback(const char *ipAddress, const uint16_t port,
55                                      const void *data, const uint32_t dataLength);
56
57 static CAIPPacketReceivedCallback gPacketReceivedCallback = NULL;
58 static int32_t gUnicastSocket = 0;
59 static bool gServerRunning = false;
60 static WiFiUDP Udp;
61 /**
62  * @var g_unicastPort
63  * @brief Unicast Port
64  */
65 static uint16_t g_unicastPort = 0;
66
67 CAResult_t CAIPInitializeServer(const ca_thread_pool_t threadPool)
68 {
69     /**
70      * This API is to keep design in sync with other platforms.
71      * The required implementation is done in Start() api's.
72      */
73     return CA_STATUS_OK;
74 }
75
76 void CAIPTerminateServer(void)
77 {
78     /**
79      * This API is to keep design in sync with other platforms.
80      * The required implementation is done in Stop() api's.
81      */
82 }
83
84 uint16_t CAGetServerPortNum(const char *ipAddress, bool isSecured)
85 {
86     return g_unicastPort;
87 }
88
89 CAResult_t CAIPStartUnicastServer(const char *localAddress, uint16_t *port,
90                                   bool secured)
91 {
92     OIC_LOG(DEBUG, TAG, "IN");
93     VERIFY_NON_NULL(port, TAG, "port");
94
95     if (gServerRunning)
96     {
97         // already running
98         OIC_LOG(DEBUG, TAG, "Error");
99         return CA_STATUS_FAILED;
100     }
101
102     if (WiFi.status() != WL_CONNECTED)
103     {
104         OIC_LOG(ERROR, TAG, "ERROR:No WIFI");
105         return CA_STATUS_FAILED;
106     }
107
108     OIC_LOG_V(DEBUG, TAG, "port: %d", *port);
109
110     Udp.begin((uint16_t ) *port);
111     gServerRunning = true;
112     g_unicastPort = *port;
113     OIC_LOG(DEBUG, TAG, "OUT");
114     return CA_STATUS_OK;
115 }
116
117 CAResult_t CAIPStartMulticastServer(const char *localAddress, const char *multicastAddress,
118                                       uint16_t multicastPort)
119 {
120     // wifi shield does not support multicast
121     OIC_LOG(DEBUG, TAG, "IN");
122     OIC_LOG(DEBUG, TAG, "OUT");
123     return CA_NOT_SUPPORTED;
124 }
125
126 CAResult_t CAIPStartServer()
127 {
128     uint16_t unicastPort = 55555;
129
130     CAResult_t ret = CAIPStartUnicastServer("0.0.0.0", &unicastPort, false);
131     if (CA_STATUS_OK != ret)
132     {
133         OIC_LOG_V(DEBUG, TAG, "Start unicast serv failed[%d]", ret);
134     }
135     ret = CAIPStartMulticastServer("0.0.0.0", "224.0.1.187", 5683);
136     if (CA_STATUS_OK != ret)
137     {
138         OIC_LOG_V(ERROR, TAG, "Start multicast failed[%d]", ret);
139     }
140     return ret;
141 }
142
143 CAResult_t CAIPStopUnicastServer()
144 {
145     OIC_LOG(DEBUG, TAG, "IN");
146     Udp.stop();
147
148     gServerRunning = false;
149     OIC_LOG(DEBUG, TAG, "OUT");
150     return CA_STATUS_OK;
151 }
152
153 CAResult_t CAIPStopMulticastServer()
154 {
155     return CAIPStopUnicastServer();
156 }
157
158 void CAIPStopServer()
159 {
160     OIC_LOG(DEBUG, TAG, "IN");
161     CAResult_t result = CAIPStopUnicastServer();
162     if (CA_STATUS_OK != result)
163     {
164         OIC_LOG_V(ERROR, TAG, "stop ucast srv fail:%d", result);
165         return;
166     }
167     CAIPSetUnicastSocket(-1);
168     CAIPSetUnicastPort(0);
169
170     result = CAIPStopMulticastServer();
171     if (CA_STATUS_OK != result)
172     {
173         OIC_LOG_V(ERROR, TAG, "stop mcast srv fail:%d", result);
174     }
175     OIC_LOG(DEBUG, TAG, "OUT");
176 }
177
178 void CAPacketReceivedCallback(const char *ipAddress, const uint16_t port,
179                               const void *data, const uint32_t dataLength)
180 {
181     OIC_LOG(DEBUG, TAG, "IN");
182     if (gPacketReceivedCallback)
183     {
184         CAEndpoint_t ep;
185         strncpy(ep.addr, ipAddress, MAX_ADDR_STR_SIZE_CA);
186         ep.port = port;
187         ep.flags = CA_IPV4;
188         ep.adapter = CA_ADAPTER_IP;
189         gPacketReceivedCallback(&ep, data, dataLength);
190         OIC_LOG(DEBUG, TAG, "Notified network packet");
191     }
192     OIC_LOG(DEBUG, TAG, "OUT");
193 }
194
195 void CAArduinoCheckData()
196 {
197     OIC_LOG(DEBUG, TAG, "IN");
198     char addr[IPNAMESIZE] = {0};
199     uint16_t senderPort = 0;
200     int16_t packetSize = Udp.parsePacket();
201     OIC_LOG_V(DEBUG, TAG, "Rcv packet of size:%d ", packetSize);
202     if (packetSize)
203     {
204         packetSize = packetSize > COAP_MAX_PDU_SIZE ? COAP_MAX_PDU_SIZE:packetSize;
205         char *data = (char *)OICMalloc(packetSize + 1);
206         if (NULL == data)
207         {
208             return;
209         }
210         IPAddress remoteIp = Udp.remoteIP();
211         senderPort = Udp.remotePort();
212         sprintf(addr, "%d.%d.%d.%d", remoteIp[0], remoteIp[1], remoteIp[2], remoteIp[3]);
213         OIC_LOG_V(DEBUG, TAG, "remoteip: %s, port: %d", addr, senderPort);
214         // read the packet into packetBufffer
215         int32_t dataLen = Udp.read(data, COAP_MAX_PDU_SIZE);
216         if (dataLen > 0)
217         {
218             data[dataLen] = 0;
219         }
220         CAPacketReceivedCallback(addr, senderPort, data, dataLen);
221         OICFree(data);
222     }
223     OIC_LOG(DEBUG, TAG, "OUT");
224 }
225
226 void CAIPSetPacketReceiveCallback(CAIPPacketReceivedCallback callback)
227 {
228     OIC_LOG(DEBUG, TAG, "IN");
229     gPacketReceivedCallback = callback;
230     OIC_LOG(DEBUG, TAG, "OUT");
231 }
232
233 void CAIPSetExceptionCallback(CAIPExceptionCallback callback)
234 {
235     // TODO
236 }
237
238 void CAIPSetErrorHandleCallback(CAIPErrorHandleCallback ipErrorCallback)
239 {
240     OIC_LOG(DEBUG, TAG, "IN");
241     OIC_LOG(DEBUG, TAG, "OUT");
242 }
243
244 void CAIPPullData()
245 {
246     CAArduinoCheckData();
247 }
248
249 CAResult_t CAGetIPInterfaceInformation(CAEndpoint_t **info, uint32_t *size)
250 {
251     OIC_LOG(DEBUG, TAG, "IN");
252
253     VERIFY_NON_NULL(info, TAG, "info is NULL");
254     VERIFY_NON_NULL(size, TAG, "size is NULL");
255
256     u_arraylist_t *iflist = CAIPGetInterfaceInformation(0);
257     if (!iflist)
258     {
259         OIC_LOG(ERROR, TAG, "get interface info failed");
260         return CA_STATUS_FAILED;
261     }
262
263     uint32_t len = u_arraylist_length(iflist);
264
265     CAEndpoint_t *eps = (CAEndpoint_t *)OICCalloc(len, sizeof (CAEndpoint_t));
266     if (!eps)
267     {
268         OIC_LOG(ERROR, TAG, "Malloc Failed");
269         u_arraylist_destroy(iflist);
270         return CA_MEMORY_ALLOC_FAILED;
271     }
272
273     for (uint32_t i = 0, j = 0; i < len; i++)
274     {
275         CAInterface_t *ifitem = (CAInterface_t *)u_arraylist_get(iflist, i);
276
277         OICStrcpy(eps[j].addr, CA_INTERFACE_NAME_SIZE, ifitem->name);
278         eps[j].flags = CA_IPV4;
279         eps[j].adapter = CA_ADAPTER_IP;
280         eps[j].interface = 0;
281         eps[j].port = 0;
282         j++;
283     }
284
285     *info = eps;
286     *size = len;
287
288     u_arraylist_destroy(iflist);
289
290     OIC_LOG(DEBUG, TAG, "OUT");
291     return CA_STATUS_OK;
292 }
293