3 * Sequential API External module
8 * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
11 * Redistribution and use in source and binary forms, with or without modification,
12 * are permitted provided that the following conditions are met:
14 * 1. Redistributions of source code must retain the above copyright notice,
15 * this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright notice,
17 * this list of conditions and the following disclaimer in the documentation
18 * and/or other materials provided with the distribution.
19 * 3. The name of the author may not be used to endorse or promote products
20 * derived from this software without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
23 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
24 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
25 * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
26 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
27 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
30 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
33 * This file is part of the lwIP TCP/IP stack.
35 * Author: Adam Dunkels <adam@sics.se>
39 /* This is the part of the API that is linked with
44 #if LWIP_NETCONN /* don't build if not configured for use in lwipopts.h */
47 #include "lwip/tcpip.h"
48 #include "lwip/memp.h"
58 * Create a new netconn (of a specific type) that has a callback function.
59 * The corresponding pcb is also created.
61 * @param t the type of 'connection' to create (@see enum netconn_type)
62 * @param proto the IP protocol for RAW IP pcbs
63 * @param callback a function to call on status changes (RX available, TX'ed)
64 * @return a newly allocated struct netconn or
65 * NULL on memory error
68 netconn_new_with_proto_and_callback(enum netconn_type t, u8_t proto, netconn_callback callback)
73 conn = netconn_alloc(t, callback);
75 msg.function = do_newconn;
76 msg.msg.msg.n.proto = proto;
80 if (conn->err != ERR_OK) {
81 LWIP_ASSERT("freeing conn without freeing pcb", conn->pcb.tcp == NULL);
82 LWIP_ASSERT("conn has no op_completed", conn->op_completed != SYS_SEM_NULL);
83 LWIP_ASSERT("conn has no recvmbox", conn->recvmbox != SYS_MBOX_NULL);
84 LWIP_ASSERT("conn->acceptmbox shouldn't exist", conn->acceptmbox == SYS_MBOX_NULL);
85 sys_sem_free(conn->op_completed);
86 sys_mbox_free(conn->recvmbox);
87 memp_free(MEMP_NETCONN, conn);
95 * Close a netconn 'connection' and free its resources.
96 * UDP and RAW connection are completely closed, TCP pcbs might still be in a waitstate
99 * @param conn the netconn to delete
100 * @return ERR_OK if the connection was deleted
103 netconn_delete(struct netconn *conn)
107 /* No ASSERT here because possible to get a (conn == NULL) if we got an accept error */
112 msg.function = do_delconn;
116 conn->pcb.tcp = NULL;
123 * Get the type of a netconn (as enum netconn_type).
125 * @param conn the netconn of which to get the type
126 * @return the netconn_type of conn
129 netconn_type(struct netconn *conn)
131 LWIP_ERROR("netconn_type: invalid conn", (conn != NULL), return NETCONN_INVALID;);
136 * Get the local or remote IP address and port of a netconn.
137 * For RAW netconns, this returns the protocol instead of a port!
139 * @param conn the netconn to query
140 * @param addr a pointer to which to save the IP address
141 * @param port a pointer to which to save the port (or protocol for RAW)
142 * @param local 1 to get the local IP address, 0 to get the remote one
143 * @return ERR_CONN for invalid connections
144 * ERR_OK if the information was retrieved
147 netconn_getaddr(struct netconn *conn, struct ip_addr *addr, u16_t *port, u8_t local)
151 LWIP_ERROR("netconn_getaddr: invalid conn", (conn != NULL), return ERR_ARG;);
152 LWIP_ERROR("netconn_getaddr: invalid addr", (addr != NULL), return ERR_ARG;);
153 LWIP_ERROR("netconn_getaddr: invalid port", (port != NULL), return ERR_ARG;);
155 msg.function = do_getaddr;
157 msg.msg.msg.ad.ipaddr = addr;
158 msg.msg.msg.ad.port = port;
159 msg.msg.msg.ad.local = local;
166 * Bind a netconn to a specific local IP address and port.
167 * Binding one netconn twice might not always be checked correctly!
169 * @param conn the netconn to bind
170 * @param addr the local IP address to bind the netconn to (use IP_ADDR_ANY
171 * to bind to all addresses)
172 * @param port the local port to bind the netconn to (not used for RAW)
173 * @return ERR_OK if bound, any other err_t on failure
176 netconn_bind(struct netconn *conn, struct ip_addr *addr, u16_t port)
180 LWIP_ERROR("netconn_bind: invalid conn", (conn != NULL), return ERR_ARG;);
182 msg.function = do_bind;
184 msg.msg.msg.bc.ipaddr = addr;
185 msg.msg.msg.bc.port = port;
191 * Connect a netconn to a specific remote IP address and port.
193 * @param conn the netconn to connect
194 * @param addr the remote IP address to connect to
195 * @param port the remote port to connect to (no used for RAW)
196 * @return ERR_OK if connected, return value of tcp_/udp_/raw_connect otherwise
199 netconn_connect(struct netconn *conn, struct ip_addr *addr, u16_t port)
203 LWIP_ERROR("netconn_connect: invalid conn", (conn != NULL), return ERR_ARG;);
205 msg.function = do_connect;
207 msg.msg.msg.bc.ipaddr = addr;
208 msg.msg.msg.bc.port = port;
209 /* This is the only function which need to not block tcpip_thread */
215 * Disconnect a netconn from its current peer (only valid for UDP netconns).
217 * @param conn the netconn to disconnect
218 * @return TODO: return value is not set here...
221 netconn_disconnect(struct netconn *conn)
225 LWIP_ERROR("netconn_disconnect: invalid conn", (conn != NULL), return ERR_ARG;);
227 msg.function = do_disconnect;
234 * Set a TCP netconn into listen mode
236 * @param conn the tcp netconn to set to listen mode
237 * @param backlog the listen backlog, only used if TCP_LISTEN_BACKLOG==1
238 * @return ERR_OK if the netconn was set to listen (UDP and RAW netconns
239 * don't return any error (yet?))
242 netconn_listen_with_backlog(struct netconn *conn, u8_t backlog)
246 /* This does no harm. If TCP_LISTEN_BACKLOG is off, backlog is unused. */
247 LWIP_UNUSED_ARG(backlog);
249 LWIP_ERROR("netconn_listen: invalid conn", (conn != NULL), return ERR_ARG;);
251 msg.function = do_listen;
253 #if TCP_LISTEN_BACKLOG
254 msg.msg.msg.lb.backlog = backlog;
255 #endif /* TCP_LISTEN_BACKLOG */
261 * Accept a new connection on a TCP listening netconn.
263 * @param conn the TCP listen netconn
264 * @return the newly accepted netconn or NULL on timeout
267 netconn_accept(struct netconn *conn)
269 struct netconn *newconn;
271 LWIP_ERROR("netconn_accept: invalid conn", (conn != NULL), return NULL;);
272 LWIP_ERROR("netconn_accept: invalid acceptmbox", (conn->acceptmbox != SYS_MBOX_NULL), return NULL;);
275 if (sys_arch_mbox_fetch(conn->acceptmbox, (void *)&newconn, conn->recv_timeout) == SYS_ARCH_TIMEOUT) {
279 sys_arch_mbox_fetch(conn->acceptmbox, (void *)&newconn, 0);
280 #endif /* LWIP_SO_RCVTIMEO*/
282 /* Register event with callback */
283 API_EVENT(conn, NETCONN_EVT_RCVMINUS, 0);
285 #if TCP_LISTEN_BACKLOG
286 if (newconn != NULL) {
287 /* Let the stack know that we have accepted the connection. */
289 msg.function = do_recv;
293 #endif /* TCP_LISTEN_BACKLOG */
300 * Receive data (in form of a netbuf containing a packet buffer) from a netconn
302 * @param conn the netconn from which to receive data
303 * @return a new netbuf containing received data or NULL on memory error or timeout
306 netconn_recv(struct netconn *conn)
309 struct netbuf *buf = NULL;
313 LWIP_ERROR("netconn_recv: invalid conn", (conn != NULL), return NULL;);
315 if (conn->recvmbox == SYS_MBOX_NULL) {
316 /* @todo: should calling netconn_recv on a TCP listen conn be fatal (ERR_CONN)?? */
317 /* TCP listen conns don't have a recvmbox! */
318 conn->err = ERR_CONN;
322 if (ERR_IS_FATAL(conn->err)) {
326 if (conn->type == NETCONN_TCP) {
328 if (conn->state == NETCONN_LISTEN) {
329 /* @todo: should calling netconn_recv on a TCP listen conn be fatal?? */
330 conn->err = ERR_CONN;
334 buf = memp_malloc(MEMP_NETBUF);
342 if (sys_arch_mbox_fetch(conn->recvmbox, (void *)&p, conn->recv_timeout)==SYS_ARCH_TIMEOUT) {
343 conn->err = ERR_TIMEOUT;
347 sys_arch_mbox_fetch(conn->recvmbox, (void *)&p, 0);
348 #endif /* LWIP_SO_RCVTIMEO*/
352 SYS_ARCH_DEC(conn->recv_avail, len);
357 /* Register event with callback */
358 API_EVENT(conn, NETCONN_EVT_RCVMINUS, len);
360 /* If we are closed, we indicate that we no longer wish to use the socket */
362 memp_free(MEMP_NETBUF, buf);
363 /* Avoid to lose any previous error code */
364 if (conn->err == ERR_OK) {
365 conn->err = ERR_CLSD;
375 /* Let the stack know that we have taken the data. */
376 msg.function = do_recv;
379 msg.msg.msg.r.len = buf->p->tot_len;
381 msg.msg.msg.r.len = 1;
384 #endif /* LWIP_TCP */
386 #if (LWIP_UDP || LWIP_RAW)
388 if (sys_arch_mbox_fetch(conn->recvmbox, (void *)&buf, conn->recv_timeout)==SYS_ARCH_TIMEOUT) {
392 sys_arch_mbox_fetch(conn->recvmbox, (void *)&buf, 0);
393 #endif /* LWIP_SO_RCVTIMEO*/
395 SYS_ARCH_DEC(conn->recv_avail, buf->p->tot_len);
396 /* Register event with callback */
397 API_EVENT(conn, NETCONN_EVT_RCVMINUS, buf->p->tot_len);
399 #endif /* (LWIP_UDP || LWIP_RAW) */
402 LWIP_DEBUGF(API_LIB_DEBUG, ("netconn_recv: received %p (err %d)\n", (void *)buf, conn->err));
408 * Send data (in form of a netbuf) to a specific remote IP address and port.
409 * Only to be used for UDP and RAW netconns (not TCP).
411 * @param conn the netconn over which to send data
412 * @param buf a netbuf containing the data to send
413 * @param addr the remote IP address to which to send the data
414 * @param port the remote port to which to send the data
415 * @return ERR_OK if data was sent, any other err_t on error
418 netconn_sendto(struct netconn *conn, struct netbuf *buf, struct ip_addr *addr, u16_t port)
423 return netconn_send(conn, buf);
429 * Send data over a UDP or RAW netconn (that is already connected).
431 * @param conn the UDP or RAW netconn over which to send data
432 * @param buf a netbuf containing the data to send
433 * @return ERR_OK if data was sent, any other err_t on error
436 netconn_send(struct netconn *conn, struct netbuf *buf)
440 LWIP_ERROR("netconn_send: invalid conn", (conn != NULL), return ERR_ARG;);
442 LWIP_DEBUGF(API_LIB_DEBUG, ("netconn_send: sending %d bytes\n", buf->p->tot_len));
443 msg.function = do_send;
451 * Send data over a TCP netconn.
453 * @param conn the TCP netconn over which to send data
454 * @param dataptr pointer to the application buffer that contains the data to send
455 * @param size size of the application data to send
456 * @param apiflags combination of following flags :
457 * - NETCONN_COPY (0x01) data will be copied into memory belonging to the stack
458 * - NETCONN_MORE (0x02) for TCP connection, PSH flag will be set on last segment sent
459 * @return ERR_OK if data was sent, any other err_t on error
462 netconn_write(struct netconn *conn, const void *dataptr, int size, u8_t apiflags)
466 LWIP_ERROR("netconn_write: invalid conn", (conn != NULL), return ERR_ARG;);
467 LWIP_ERROR("netconn_write: invalid conn->type", (conn->type == NETCONN_TCP), return ERR_VAL;);
469 msg.function = do_write;
471 msg.msg.msg.w.dataptr = dataptr;
472 msg.msg.msg.w.apiflags = apiflags;
473 msg.msg.msg.w.len = size;
474 /* For locking the core: this _can_ be delayed on low memory/low send buffer,
475 but if it is, this is done inside api_msg.c:do_write(), so we can use the
476 non-blocking version here. */
482 * Close a TCP netconn (doesn't delete it).
484 * @param conn the TCP netconn to close
485 * @return ERR_OK if the netconn was closed, any other err_t on error
488 netconn_close(struct netconn *conn)
492 LWIP_ERROR("netconn_close: invalid conn", (conn != NULL), return ERR_ARG;);
494 msg.function = do_close;
502 * Join multicast groups for UDP netconns.
504 * @param conn the UDP netconn for which to change multicast addresses
505 * @param multiaddr IP address of the multicast group to join or leave
506 * @param interface the IP address of the network interface on which to send
508 * @param join_or_leave flag whether to send a join- or leave-message
509 * @return ERR_OK if the action was taken, any err_t on error
512 netconn_join_leave_group(struct netconn *conn,
513 struct ip_addr *multiaddr,
514 struct ip_addr *interface,
515 enum netconn_igmp join_or_leave)
519 LWIP_ERROR("netconn_join_leave_group: invalid conn", (conn != NULL), return ERR_ARG;);
521 msg.function = do_join_leave_group;
523 msg.msg.msg.jl.multiaddr = multiaddr;
524 msg.msg.msg.jl.interface = interface;
525 msg.msg.msg.jl.join_or_leave = join_or_leave;
529 #endif /* LWIP_IGMP */
533 * Execute a DNS query, only one IP address is returned
535 * @param name a string representation of the DNS host name to query
536 * @param addr a preallocated struct ip_addr where to store the resolved IP address
537 * @return ERR_OK: resolving succeeded
538 * ERR_MEM: memory error, try again later
539 * ERR_ARG: dns client not initialized or invalid hostname
540 * ERR_VAL: dns server response was invalid
543 netconn_gethostbyname(const char *name, struct ip_addr *addr)
545 struct dns_api_msg msg;
549 LWIP_ERROR("netconn_gethostbyname: invalid name", (name != NULL), return ERR_ARG;);
550 LWIP_ERROR("netconn_gethostbyname: invalid addr", (addr != NULL), return ERR_ARG;);
552 sem = sys_sem_new(0);
553 if (sem == SYS_SEM_NULL) {
562 tcpip_callback(do_gethostbyname, &msg);
570 #endif /* LWIP_NETCONN */