Merge branch 'master' into easysetup & CBOR changes
[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: %u", *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         CASecureEndpoint_t sep =
185         {.endpoint = {.adapter = CA_ADAPTER_IP, .flags = CA_IPV4, .port = port}};
186
187         OICStrcpy(sep.endpoint.addr, sizeof(sep.endpoint.addr), ipAddress);
188         gPacketReceivedCallback(&sep, data, dataLength);
189         OIC_LOG(DEBUG, TAG, "Notified network packet");
190     }
191     OIC_LOG(DEBUG, TAG, "OUT");
192 }
193
194 void CAArduinoCheckData()
195 {
196     OIC_LOG(DEBUG, TAG, "IN");
197     char addr[IPNAMESIZE] = {0};
198     uint16_t senderPort = 0;
199     int16_t packetSize = Udp.parsePacket();
200     OIC_LOG_V(DEBUG, TAG, "Rcv packet of size:%d ", packetSize);
201     if (packetSize)
202     {
203         packetSize = packetSize > COAP_MAX_PDU_SIZE ? COAP_MAX_PDU_SIZE:packetSize;
204         char *data = (char *)OICMalloc(packetSize + 1);
205         if (NULL == data)
206         {
207             return;
208         }
209         IPAddress remoteIp = Udp.remoteIP();
210         senderPort = Udp.remotePort();
211         sprintf(addr, "%d.%d.%d.%d", remoteIp[0], remoteIp[1], remoteIp[2], remoteIp[3]);
212         OIC_LOG_V(DEBUG, TAG, "remoteip: %s, port: %d", addr, senderPort);
213         // read the packet into packetBufffer
214         int32_t dataLen = Udp.read(data, COAP_MAX_PDU_SIZE);
215         if (dataLen > 0)
216         {
217             data[dataLen] = 0;
218         }
219         CAPacketReceivedCallback(addr, senderPort, data, dataLen);
220         OICFree(data);
221     }
222     OIC_LOG(DEBUG, TAG, "OUT");
223 }
224
225 void CAIPSetPacketReceiveCallback(CAIPPacketReceivedCallback callback)
226 {
227     OIC_LOG(DEBUG, TAG, "IN");
228     gPacketReceivedCallback = callback;
229     OIC_LOG(DEBUG, TAG, "OUT");
230 }
231
232 void CAIPSetExceptionCallback(CAIPExceptionCallback callback)
233 {
234     // TODO
235 }
236
237 void CAIPSetErrorHandleCallback(CAIPErrorHandleCallback ipErrorCallback)
238 {
239     OIC_LOG(DEBUG, TAG, "IN");
240     OIC_LOG(DEBUG, TAG, "OUT");
241 }
242
243 void CAIPPullData()
244 {
245     CAArduinoCheckData();
246 }
247
248 CAResult_t CAGetIPInterfaceInformation(CAEndpoint_t **info, uint32_t *size)
249 {
250     OIC_LOG(DEBUG, TAG, "IN");
251
252     VERIFY_NON_NULL(info, TAG, "info is NULL");
253     VERIFY_NON_NULL(size, TAG, "size is NULL");
254
255     u_arraylist_t *iflist = CAIPGetInterfaceInformation(0);
256     if (!iflist)
257     {
258         OIC_LOG(ERROR, TAG, "get interface info failed");
259         return CA_STATUS_FAILED;
260     }
261
262     uint32_t len = u_arraylist_length(iflist);
263
264     CAEndpoint_t *eps = (CAEndpoint_t *)OICCalloc(len, sizeof (CAEndpoint_t));
265     if (!eps)
266     {
267         OIC_LOG(ERROR, TAG, "Malloc Failed");
268         u_arraylist_destroy(iflist);
269         return CA_MEMORY_ALLOC_FAILED;
270     }
271
272     for (uint32_t i = 0, j = 0; i < len; i++)
273     {
274         CAInterface_t *ifitem = (CAInterface_t *)u_arraylist_get(iflist, i);
275
276         OICStrcpy(eps[j].addr, CA_INTERFACE_NAME_SIZE, ifitem->name);
277         eps[j].flags = CA_IPV4;
278         eps[j].adapter = CA_ADAPTER_IP;
279         eps[j].interface = 0;
280         eps[j].port = 0;
281         j++;
282     }
283
284     *info = eps;
285     *size = len;
286
287     u_arraylist_destroy(iflist);
288
289     OIC_LOG(DEBUG, TAG, "OUT");
290     return CA_STATUS_OK;
291 }
292