2002-10-19 12:59:30 +00:00
|
|
|
/*
|
2004-02-07 00:30:03 +00:00
|
|
|
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
|
2002-10-19 12:59:30 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without modification,
|
|
|
|
* are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
* 3. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
|
|
|
|
* SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
|
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
|
|
|
|
* OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
|
|
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
|
|
|
|
* OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* This file is part of the lwIP TCP/IP stack.
|
|
|
|
*
|
|
|
|
* Author: Adam Dunkels <adam@sics.se>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* This is the part of the API that is linked with
|
|
|
|
the application */
|
|
|
|
|
2007-03-04 14:49:46 +00:00
|
|
|
#include <string.h>
|
2003-02-21 16:43:46 +00:00
|
|
|
#include "lwip/opt.h"
|
2002-10-19 12:59:30 +00:00
|
|
|
#include "lwip/api.h"
|
|
|
|
#include "lwip/api_msg.h"
|
2007-05-11 08:58:23 +00:00
|
|
|
#include "lwip/tcpip.h"
|
2002-10-19 12:59:30 +00:00
|
|
|
#include "lwip/memp.h"
|
|
|
|
|
2007-05-18 11:27:46 +00:00
|
|
|
#if !NO_SYS
|
2007-06-16 13:57:30 +00:00
|
|
|
/**
|
|
|
|
**********************************
|
|
|
|
* Netbuf functions
|
|
|
|
**********************************
|
|
|
|
*/
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-16 13:57:30 +00:00
|
|
|
/**
|
|
|
|
* Create (allocate) and initialize a new netbuf.
|
|
|
|
* The netbuf doesn't yet contain a packet buffer!
|
|
|
|
*
|
|
|
|
* @return a pointer to a new netbuf
|
|
|
|
* NULL on lack of memory
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
struct
|
|
|
|
netbuf *netbuf_new(void)
|
|
|
|
{
|
|
|
|
struct netbuf *buf;
|
|
|
|
|
2003-06-27 20:46:11 +00:00
|
|
|
buf = memp_malloc(MEMP_NETBUF);
|
2003-05-01 13:24:01 +00:00
|
|
|
if (buf != NULL) {
|
2002-10-19 12:59:30 +00:00
|
|
|
buf->p = NULL;
|
|
|
|
buf->ptr = NULL;
|
2007-05-04 15:18:29 +00:00
|
|
|
buf->addr = NULL;
|
2002-10-19 12:59:30 +00:00
|
|
|
return buf;
|
|
|
|
} else {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-16 13:57:30 +00:00
|
|
|
/**
|
|
|
|
* Deallocate a netbuf allocated by netbuf_new().
|
|
|
|
*
|
|
|
|
* @param buf pointer to a netbuf allocated by netbuf_new()
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
void
|
|
|
|
netbuf_delete(struct netbuf *buf)
|
|
|
|
{
|
2003-05-01 13:24:01 +00:00
|
|
|
if (buf != NULL) {
|
|
|
|
if (buf->p != NULL) {
|
2002-10-19 12:59:30 +00:00
|
|
|
pbuf_free(buf->p);
|
|
|
|
buf->p = buf->ptr = NULL;
|
|
|
|
}
|
2003-06-27 20:46:11 +00:00
|
|
|
memp_free(MEMP_NETBUF, buf);
|
2002-10-19 12:59:30 +00:00
|
|
|
}
|
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-16 13:57:30 +00:00
|
|
|
/**
|
|
|
|
* Allocate memory for a packet buffer for a given netbuf.
|
|
|
|
*
|
|
|
|
* @param buf the netbuf for which to allocate a packet buffer
|
|
|
|
* @param size the size of the packet buffer to allocate
|
|
|
|
* @return pointer to the allocated memory
|
|
|
|
* NULL if no memory could be allocated
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
void *
|
|
|
|
netbuf_alloc(struct netbuf *buf, u16_t size)
|
|
|
|
{
|
2007-06-16 13:57:30 +00:00
|
|
|
LWIP_ERROR("netbuf_alloc: invalid buf", (buf == NULL), return NULL;);
|
|
|
|
|
2002-10-19 12:59:30 +00:00
|
|
|
/* Deallocate any previously allocated memory. */
|
2003-05-01 13:24:01 +00:00
|
|
|
if (buf->p != NULL) {
|
2002-10-19 12:59:30 +00:00
|
|
|
pbuf_free(buf->p);
|
|
|
|
}
|
|
|
|
buf->p = pbuf_alloc(PBUF_TRANSPORT, size, PBUF_RAM);
|
2003-05-01 13:24:01 +00:00
|
|
|
if (buf->p == NULL) {
|
2002-10-19 12:59:30 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
buf->ptr = buf->p;
|
|
|
|
return buf->p->payload;
|
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-16 13:57:30 +00:00
|
|
|
/**
|
|
|
|
* Free the packet buffer included in a netbuf
|
|
|
|
*
|
|
|
|
* @param buf pointer to the netbuf which contains the packet buffer to free
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
void
|
|
|
|
netbuf_free(struct netbuf *buf)
|
|
|
|
{
|
2007-06-16 13:57:30 +00:00
|
|
|
LWIP_ERROR("netbuf_free: invalid buf", (buf == NULL), return;);
|
2003-05-01 13:24:01 +00:00
|
|
|
if (buf->p != NULL) {
|
2002-10-19 12:59:30 +00:00
|
|
|
pbuf_free(buf->p);
|
|
|
|
}
|
|
|
|
buf->p = buf->ptr = NULL;
|
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-16 13:57:30 +00:00
|
|
|
/**
|
|
|
|
* Let a netbuf reference existing (non-volatile) data.
|
|
|
|
*
|
|
|
|
* @param buf netbuf which should reference the data
|
|
|
|
* @param dataptr pointer to the data to reference
|
|
|
|
* @param size size of the data
|
|
|
|
* @return ERR_OK if data is referenced
|
|
|
|
* ERR_MEM if data couldn't be referenced due to lack of memory
|
|
|
|
*/
|
2007-03-28 17:26:06 +00:00
|
|
|
err_t
|
2007-03-11 17:57:13 +00:00
|
|
|
netbuf_ref(struct netbuf *buf, const void *dataptr, u16_t size)
|
2002-10-19 12:59:30 +00:00
|
|
|
{
|
2007-06-16 13:57:30 +00:00
|
|
|
LWIP_ERROR("netbuf_ref: invalid buf", (buf == NULL), return ERR_ARG;);
|
2003-05-01 13:24:01 +00:00
|
|
|
if (buf->p != NULL) {
|
2002-10-19 12:59:30 +00:00
|
|
|
pbuf_free(buf->p);
|
|
|
|
}
|
2003-03-19 22:14:49 +00:00
|
|
|
buf->p = pbuf_alloc(PBUF_TRANSPORT, 0, PBUF_REF);
|
2007-03-28 17:26:06 +00:00
|
|
|
if (buf->p == NULL) {
|
|
|
|
buf->ptr = NULL;
|
|
|
|
return ERR_MEM;
|
|
|
|
}
|
2007-03-11 17:57:13 +00:00
|
|
|
buf->p->payload = (void*)dataptr;
|
2002-10-19 12:59:30 +00:00
|
|
|
buf->p->len = buf->p->tot_len = size;
|
|
|
|
buf->ptr = buf->p;
|
2007-03-28 17:26:06 +00:00
|
|
|
return ERR_OK;
|
2002-10-19 12:59:30 +00:00
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-16 13:57:30 +00:00
|
|
|
/**
|
|
|
|
* Chain one netbuf to another (@see pbuf_chain)
|
|
|
|
*
|
|
|
|
* @param head the first netbuf
|
|
|
|
* @param tail netbuf to chain after head
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
void
|
|
|
|
netbuf_chain(struct netbuf *head, struct netbuf *tail)
|
|
|
|
{
|
2007-06-16 13:57:30 +00:00
|
|
|
LWIP_ERROR("netbuf_ref: invalid head", (head == NULL), return;);
|
|
|
|
LWIP_ERROR("netbuf_chain: invalid tail", (tail == NULL), return;);
|
2002-10-19 12:59:30 +00:00
|
|
|
pbuf_chain(head->p, tail->p);
|
|
|
|
head->ptr = head->p;
|
2003-06-27 20:46:11 +00:00
|
|
|
memp_free(MEMP_NETBUF, tail);
|
2002-10-19 12:59:30 +00:00
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-16 13:57:30 +00:00
|
|
|
/**
|
|
|
|
* Get the data pointer and length of the data inside a netbuf.
|
|
|
|
*
|
|
|
|
* @param buf netbuf to get the data from
|
|
|
|
* @param dataptr pointer to a void pointer where to store the data pointer
|
|
|
|
* @param len pointer to an u16_t where the length of the data is stored
|
|
|
|
* @return ERR_OK if the information was retreived,
|
|
|
|
* ERR_BUF on error.
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
err_t
|
|
|
|
netbuf_data(struct netbuf *buf, void **dataptr, u16_t *len)
|
|
|
|
{
|
2007-06-16 13:57:30 +00:00
|
|
|
LWIP_ERROR("netbuf_data: invalid buf", (buf == NULL), return ERR_ARG;);
|
|
|
|
LWIP_ERROR("netbuf_data: invalid dataptr", (dataptr == NULL), return ERR_ARG;);
|
|
|
|
LWIP_ERROR("netbuf_data: invalid len", (len == NULL), return ERR_ARG;);
|
|
|
|
|
2003-05-01 13:24:01 +00:00
|
|
|
if (buf->ptr == NULL) {
|
2002-10-19 12:59:30 +00:00
|
|
|
return ERR_BUF;
|
|
|
|
}
|
|
|
|
*dataptr = buf->ptr->payload;
|
|
|
|
*len = buf->ptr->len;
|
|
|
|
return ERR_OK;
|
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-16 13:57:30 +00:00
|
|
|
/**
|
|
|
|
* Move the current data pointer of a packet buffer contained in a netbuf
|
|
|
|
* to the next part.
|
|
|
|
* The packet buffer itself is not modified.
|
|
|
|
*
|
|
|
|
* @param buf the netbuf to modify
|
|
|
|
* @return -1 if there is no next part
|
|
|
|
* 1 if moved to the next part but now there is no next part
|
|
|
|
* 0 if moved to the next part and there are still more parts
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
s8_t
|
|
|
|
netbuf_next(struct netbuf *buf)
|
|
|
|
{
|
2007-06-16 13:57:30 +00:00
|
|
|
LWIP_ERROR("netbuf_free: invalid buf", (buf == NULL), return -1;);
|
2003-05-01 13:24:01 +00:00
|
|
|
if (buf->ptr->next == NULL) {
|
2002-10-19 12:59:30 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
buf->ptr = buf->ptr->next;
|
2003-05-01 13:24:01 +00:00
|
|
|
if (buf->ptr->next == NULL) {
|
2002-10-19 12:59:30 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-16 13:57:30 +00:00
|
|
|
/**
|
|
|
|
* Move the current data pointer of a packet buffer contained in a netbuf
|
|
|
|
* to the beginning of the packet.
|
|
|
|
* The packet buffer itself is not modified.
|
|
|
|
*
|
|
|
|
* @param buf the netbuf to modify
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
void
|
|
|
|
netbuf_first(struct netbuf *buf)
|
|
|
|
{
|
2007-06-16 13:57:30 +00:00
|
|
|
LWIP_ERROR("netbuf_free: invalid buf", (buf == NULL), return;);
|
2002-10-19 12:59:30 +00:00
|
|
|
buf->ptr = buf->p;
|
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-16 13:57:30 +00:00
|
|
|
/**
|
|
|
|
* Copy (part of) the contents of a packet buffer contained in a netbuf
|
|
|
|
* to an application supplied buffer.
|
|
|
|
*
|
|
|
|
* @param buf the netbuf from which to copy data
|
|
|
|
* @param dataptr the application supplied buffer
|
|
|
|
* @param len length of data to copy (dataptr must be big enough)
|
|
|
|
* @param offset offset into the packet buffer from where to begin copying len bytes
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
void
|
|
|
|
netbuf_copy_partial(struct netbuf *buf, void *dataptr, u16_t len, u16_t offset)
|
|
|
|
{
|
|
|
|
struct pbuf *p;
|
2007-02-26 19:49:49 +00:00
|
|
|
u16_t left;
|
|
|
|
u16_t buf_copy_len;
|
2002-10-19 12:59:30 +00:00
|
|
|
|
2007-06-16 13:57:30 +00:00
|
|
|
LWIP_ERROR("netbuf_copy_partial: invalid buf", (buf == NULL), return;);
|
|
|
|
LWIP_ERROR("netbuf_copy_partial: invalid dataptr", (dataptr == NULL), return;);
|
|
|
|
|
2002-10-19 12:59:30 +00:00
|
|
|
left = 0;
|
|
|
|
|
2003-11-14 13:17:23 +00:00
|
|
|
if(buf == NULL || dataptr == NULL) {
|
2002-10-19 12:59:30 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-02-26 19:49:49 +00:00
|
|
|
/* Note some systems use byte copy if dataptr or one of the pbuf payload pointers are unaligned. */
|
|
|
|
for(p = buf->p; len != 0 && p != NULL; p = p->next) {
|
2007-06-16 13:57:30 +00:00
|
|
|
if ((offset != 0) && (offset >= p->len)) {
|
2007-02-26 19:49:49 +00:00
|
|
|
/* don't copy from this buffer -> on to the next */
|
2002-10-19 12:59:30 +00:00
|
|
|
offset -= p->len;
|
2007-02-26 19:49:49 +00:00
|
|
|
} else {
|
|
|
|
/* copy from this buffer. maybe only partially. */
|
|
|
|
buf_copy_len = p->len - offset;
|
|
|
|
if (buf_copy_len > len)
|
|
|
|
buf_copy_len = len;
|
|
|
|
/* copy the necessary parts of the buffer */
|
2007-05-10 05:20:05 +00:00
|
|
|
MEMCPY(&((char*)dataptr)[left], &((char*)p->payload)[offset], buf_copy_len);
|
2007-02-26 19:49:49 +00:00
|
|
|
left += buf_copy_len;
|
|
|
|
len -= buf_copy_len;
|
2002-10-19 12:59:30 +00:00
|
|
|
offset = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-16 13:57:30 +00:00
|
|
|
/**
|
|
|
|
**********************************
|
|
|
|
* Netconn functions
|
|
|
|
**********************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new netconn (of a specific type) that has a callback function.
|
|
|
|
* The corresponding pcb is also created.
|
|
|
|
*
|
|
|
|
* @param t the type of 'connection' to create (@see enum netconn_type)
|
|
|
|
* @param proto the IP protocol for RAW IP pcbs
|
|
|
|
* @param callback a function to call on status changes (RX available, TX'ed)
|
|
|
|
* @return a newly allocated struct netconn or
|
|
|
|
* NULL on memory error
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
struct
|
2007-05-22 07:31:06 +00:00
|
|
|
netconn *netconn_new_with_proto_and_callback(enum netconn_type t, u8_t proto,
|
2003-11-14 13:17:23 +00:00
|
|
|
void (*callback)(struct netconn *, enum netconn_evt, u16_t len))
|
2002-10-19 12:59:30 +00:00
|
|
|
{
|
|
|
|
struct netconn *conn;
|
2007-03-04 14:49:46 +00:00
|
|
|
struct api_msg msg;
|
2002-10-19 12:59:30 +00:00
|
|
|
|
2003-06-27 20:46:11 +00:00
|
|
|
conn = memp_malloc(MEMP_NETCONN);
|
2003-05-01 13:24:01 +00:00
|
|
|
if (conn == NULL) {
|
2002-10-19 12:59:30 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
|
|
|
conn->err = ERR_OK;
|
2002-10-19 12:59:30 +00:00
|
|
|
conn->type = t;
|
|
|
|
conn->pcb.tcp = NULL;
|
|
|
|
|
2003-05-01 13:24:01 +00:00
|
|
|
if ((conn->mbox = sys_mbox_new()) == SYS_MBOX_NULL) {
|
2003-06-27 20:46:11 +00:00
|
|
|
memp_free(MEMP_NETCONN, conn);
|
2002-10-19 12:59:30 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
conn->recvmbox = SYS_MBOX_NULL;
|
|
|
|
conn->acceptmbox = SYS_MBOX_NULL;
|
2006-05-26 07:39:39 +00:00
|
|
|
conn->sem = sys_sem_new(0);
|
|
|
|
if (conn->sem == SYS_SEM_NULL) {
|
2007-03-22 09:27:04 +00:00
|
|
|
sys_mbox_free(conn->mbox);
|
2006-05-26 07:39:39 +00:00
|
|
|
memp_free(MEMP_NETCONN, conn);
|
|
|
|
return NULL;
|
|
|
|
}
|
2007-03-06 16:41:02 +00:00
|
|
|
conn->state = NETCONN_NONE;
|
|
|
|
conn->socket = 0;
|
2007-03-21 16:38:58 +00:00
|
|
|
conn->callback = callback;
|
|
|
|
conn->recv_avail = 0;
|
2007-03-08 20:58:46 +00:00
|
|
|
#if LWIP_SO_RCVTIMEO
|
2007-03-06 16:41:02 +00:00
|
|
|
conn->recv_timeout = 0;
|
2007-03-08 20:58:46 +00:00
|
|
|
#endif /* LWIP_SO_RCVTIMEO */
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-05-11 08:58:23 +00:00
|
|
|
msg.function = do_newconn;
|
2007-05-22 09:54:00 +00:00
|
|
|
msg.msg.msg.n.proto = proto;
|
2007-03-04 14:49:46 +00:00
|
|
|
msg.msg.conn = conn;
|
2007-06-08 19:27:59 +00:00
|
|
|
TCPIP_APIMSG(&msg);
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-16 15:03:09 +00:00
|
|
|
if (conn->err != ERR_OK) {
|
2007-03-22 09:27:04 +00:00
|
|
|
sys_sem_free(conn->sem);
|
|
|
|
sys_mbox_free(conn->mbox);
|
2003-11-14 13:17:23 +00:00
|
|
|
memp_free(MEMP_NETCONN, conn);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2002-10-19 12:59:30 +00:00
|
|
|
return conn;
|
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-16 13:57:30 +00:00
|
|
|
/**
|
|
|
|
* Close a netconn 'connection' and free its resources.
|
|
|
|
* UDP and RAW connection are completely closed, TCP pcbs might still be in a waitstate
|
|
|
|
* after this returns.
|
|
|
|
*
|
|
|
|
* @param conn the netconn to delete
|
|
|
|
* @return ERR_OK if the connection was deleted
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
err_t
|
|
|
|
netconn_delete(struct netconn *conn)
|
|
|
|
{
|
2007-03-04 14:49:46 +00:00
|
|
|
struct api_msg msg;
|
2002-10-19 12:59:30 +00:00
|
|
|
void *mem;
|
2007-05-23 18:43:30 +00:00
|
|
|
|
|
|
|
/* No ASSERT here because possible to get a (conn == NULL) if we got an accept error */
|
2003-05-01 13:24:01 +00:00
|
|
|
if (conn == NULL) {
|
2002-10-19 12:59:30 +00:00
|
|
|
return ERR_OK;
|
|
|
|
}
|
2007-05-23 18:43:30 +00:00
|
|
|
|
2007-05-11 08:58:23 +00:00
|
|
|
msg.function = do_delconn;
|
2007-03-04 14:49:46 +00:00
|
|
|
msg.msg.conn = conn;
|
2007-06-08 19:27:59 +00:00
|
|
|
TCPIP_APIMSG(&msg);
|
2002-10-19 12:59:30 +00:00
|
|
|
|
|
|
|
/* Drain the recvmbox. */
|
2003-05-01 13:24:01 +00:00
|
|
|
if (conn->recvmbox != SYS_MBOX_NULL) {
|
2007-04-11 15:41:03 +00:00
|
|
|
while (sys_mbox_tryfetch(conn->recvmbox, &mem) != SYS_MBOX_EMPTY) {
|
2003-05-01 13:24:01 +00:00
|
|
|
if (conn->type == NETCONN_TCP) {
|
2004-09-20 16:58:01 +00:00
|
|
|
if(mem != NULL)
|
|
|
|
pbuf_free((struct pbuf *)mem);
|
2002-10-19 12:59:30 +00:00
|
|
|
} else {
|
2004-09-20 16:58:01 +00:00
|
|
|
netbuf_delete((struct netbuf *)mem);
|
2002-10-19 12:59:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
sys_mbox_free(conn->recvmbox);
|
|
|
|
conn->recvmbox = SYS_MBOX_NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Drain the acceptmbox. */
|
2003-05-01 13:24:01 +00:00
|
|
|
if (conn->acceptmbox != SYS_MBOX_NULL) {
|
2007-04-11 15:41:03 +00:00
|
|
|
while (sys_mbox_tryfetch(conn->acceptmbox, &mem) != SYS_MBOX_EMPTY) {
|
2002-10-19 12:59:30 +00:00
|
|
|
netconn_delete((struct netconn *)mem);
|
|
|
|
}
|
|
|
|
sys_mbox_free(conn->acceptmbox);
|
|
|
|
conn->acceptmbox = SYS_MBOX_NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
sys_mbox_free(conn->mbox);
|
|
|
|
conn->mbox = SYS_MBOX_NULL;
|
2007-03-21 16:38:58 +00:00
|
|
|
|
2003-05-01 13:24:01 +00:00
|
|
|
if (conn->sem != SYS_SEM_NULL) {
|
2002-10-19 12:59:30 +00:00
|
|
|
sys_sem_free(conn->sem);
|
2007-03-21 16:38:58 +00:00
|
|
|
/* conn->sem = SYS_SEM_NULL; */
|
2002-10-19 12:59:30 +00:00
|
|
|
}
|
2007-03-21 16:38:58 +00:00
|
|
|
|
2002-10-19 12:59:30 +00:00
|
|
|
memp_free(MEMP_NETCONN, conn);
|
|
|
|
return ERR_OK;
|
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-16 13:57:30 +00:00
|
|
|
/**
|
|
|
|
* Get the type of a netconn (as enum netconn_type).
|
|
|
|
*
|
|
|
|
* @param conn the netconn of which to get the type
|
|
|
|
* @return the netconn_type of conn
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
enum netconn_type
|
|
|
|
netconn_type(struct netconn *conn)
|
|
|
|
{
|
2007-06-16 13:57:30 +00:00
|
|
|
LWIP_ERROR("netconn_type: invalid conn", (conn == NULL), return NETCONN_INVALID;);
|
2002-10-19 12:59:30 +00:00
|
|
|
return conn->type;
|
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-16 13:57:30 +00:00
|
|
|
/**
|
|
|
|
* Get the current perr a netconn is connected to.
|
|
|
|
* This might only be temporary for UDP netconns,
|
|
|
|
* doesn't work for RAW netconns and returns garbage
|
|
|
|
* if called for a TCP listen netconn.
|
|
|
|
*
|
|
|
|
* @param conn the netconn to query
|
|
|
|
* @param addr a pointer to which to save the remote IP address
|
|
|
|
* @param port a pointer to which to save the remote port
|
|
|
|
* @return ERR_CONN for invalid connections
|
|
|
|
* ERR_OK if the information was retrieved
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
err_t
|
2007-03-28 17:26:06 +00:00
|
|
|
netconn_peer(struct netconn *conn, struct ip_addr *addr, u16_t *port)
|
2002-10-19 12:59:30 +00:00
|
|
|
{
|
2007-06-16 13:57:30 +00:00
|
|
|
LWIP_ERROR("netconn_peer: invalid conn", (conn == NULL), return ERR_ARG;);
|
2007-05-23 17:46:53 +00:00
|
|
|
switch (NETCONNTYPE_GROUP(conn->type)) {
|
2003-11-14 13:17:23 +00:00
|
|
|
case NETCONN_RAW:
|
|
|
|
/* return an error as connecting is only a helper for upper layers */
|
|
|
|
return ERR_CONN;
|
2002-10-19 12:59:30 +00:00
|
|
|
case NETCONN_UDP:
|
2003-03-31 09:34:56 +00:00
|
|
|
if (conn->pcb.udp == NULL ||
|
2003-06-09 21:14:47 +00:00
|
|
|
((conn->pcb.udp->flags & UDP_FLAGS_CONNECTED) == 0))
|
2003-03-31 09:34:56 +00:00
|
|
|
return ERR_CONN;
|
2003-01-24 09:24:44 +00:00
|
|
|
*addr = (conn->pcb.udp->remote_ip);
|
2002-10-19 12:59:30 +00:00
|
|
|
*port = conn->pcb.udp->remote_port;
|
|
|
|
break;
|
|
|
|
case NETCONN_TCP:
|
2003-05-01 13:24:01 +00:00
|
|
|
if (conn->pcb.tcp == NULL)
|
2003-03-31 09:34:56 +00:00
|
|
|
return ERR_CONN;
|
2003-01-24 09:24:44 +00:00
|
|
|
*addr = (conn->pcb.tcp->remote_ip);
|
2002-10-19 12:59:30 +00:00
|
|
|
*port = conn->pcb.tcp->remote_port;
|
|
|
|
break;
|
|
|
|
}
|
2007-06-13 18:08:49 +00:00
|
|
|
return ERR_OK;
|
2002-10-19 12:59:30 +00:00
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-16 13:57:30 +00:00
|
|
|
/**
|
|
|
|
* Get the local IP address and port of a netconn.
|
|
|
|
* For RAW netconns, this returns the protocol instead of a port!
|
|
|
|
*
|
|
|
|
* @param conn the netconn to query
|
|
|
|
* @param addr a pointer to which to save the local IP address
|
|
|
|
* @param port a pointer to which to save the local port (or protocol for RAW)
|
|
|
|
* @return ERR_OK if the information was retrieved
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
err_t
|
2007-03-28 17:26:06 +00:00
|
|
|
netconn_addr(struct netconn *conn, struct ip_addr **addr, u16_t *port)
|
2002-10-19 12:59:30 +00:00
|
|
|
{
|
2007-06-16 13:57:30 +00:00
|
|
|
LWIP_ERROR("netconn_addr: invalid conn", (conn == NULL), return ERR_ARG;);
|
|
|
|
LWIP_ERROR("netconn_addr: invalid addr", (addr == NULL), return ERR_ARG;);
|
|
|
|
LWIP_ERROR("netconn_addr: invalid port", (port == NULL), return ERR_ARG;);
|
2007-05-23 17:46:53 +00:00
|
|
|
switch (NETCONNTYPE_GROUP(conn->type)) {
|
2003-11-14 13:17:23 +00:00
|
|
|
case NETCONN_RAW:
|
|
|
|
*addr = &(conn->pcb.raw->local_ip);
|
|
|
|
*port = conn->pcb.raw->protocol;
|
|
|
|
break;
|
2002-10-19 12:59:30 +00:00
|
|
|
case NETCONN_UDP:
|
|
|
|
*addr = &(conn->pcb.udp->local_ip);
|
|
|
|
*port = conn->pcb.udp->local_port;
|
|
|
|
break;
|
|
|
|
case NETCONN_TCP:
|
|
|
|
*addr = &(conn->pcb.tcp->local_ip);
|
|
|
|
*port = conn->pcb.tcp->local_port;
|
|
|
|
break;
|
|
|
|
}
|
2007-06-13 18:08:49 +00:00
|
|
|
return ERR_OK;
|
2002-10-19 12:59:30 +00:00
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-16 13:57:30 +00:00
|
|
|
/**
|
|
|
|
* Bind a netconn to a specific local IP address and port.
|
|
|
|
* Binding one netconn twice might not always be checked correctly!
|
|
|
|
*
|
|
|
|
* @param conn the netconn to bind
|
|
|
|
* @param addr the local IP address to bind the netconn to (use IP_ADDR_ANY
|
|
|
|
* to bind to all addresses)
|
|
|
|
* @param port the local port to bind the netconn to (not used for RAW)
|
|
|
|
* @return ERR_OK if bound, any other err_t on failure
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
err_t
|
2007-03-28 17:26:06 +00:00
|
|
|
netconn_bind(struct netconn *conn, struct ip_addr *addr, u16_t port)
|
2002-10-19 12:59:30 +00:00
|
|
|
{
|
2007-03-04 14:49:46 +00:00
|
|
|
struct api_msg msg;
|
2002-10-19 12:59:30 +00:00
|
|
|
|
2007-06-13 18:00:54 +00:00
|
|
|
LWIP_ERROR("netconn_bind: invalid conn", (conn == NULL), return ERR_ARG;);
|
2002-10-19 12:59:30 +00:00
|
|
|
|
2007-05-23 19:18:09 +00:00
|
|
|
if (conn->type != NETCONN_TCP && conn->recvmbox == SYS_MBOX_NULL) {
|
2003-05-01 13:24:01 +00:00
|
|
|
if ((conn->recvmbox = sys_mbox_new()) == SYS_MBOX_NULL) {
|
2002-10-19 12:59:30 +00:00
|
|
|
return ERR_MEM;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-11 08:58:23 +00:00
|
|
|
msg.function = do_bind;
|
2007-03-04 14:49:46 +00:00
|
|
|
msg.msg.conn = conn;
|
|
|
|
msg.msg.msg.bc.ipaddr = addr;
|
|
|
|
msg.msg.msg.bc.port = port;
|
2007-06-08 19:27:59 +00:00
|
|
|
TCPIP_APIMSG(&msg);
|
2002-10-19 12:59:30 +00:00
|
|
|
return conn->err;
|
|
|
|
}
|
2003-01-22 16:18:05 +00:00
|
|
|
|
2007-06-16 13:57:30 +00:00
|
|
|
/**
|
|
|
|
* Connect a netconn to a specific remote IP address and port.
|
|
|
|
*
|
|
|
|
* @param conn the netconn to connect
|
|
|
|
* @param addr the remote IP address to connect to
|
|
|
|
* @param port the remote port to connect to (no used for RAW)
|
|
|
|
* @return ERR_OK if connected, return value of tcp_/udp_/raw_connect otherwise
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
err_t
|
2007-03-28 17:26:06 +00:00
|
|
|
netconn_connect(struct netconn *conn, struct ip_addr *addr, u16_t port)
|
2002-10-19 12:59:30 +00:00
|
|
|
{
|
2007-03-04 14:49:46 +00:00
|
|
|
struct api_msg msg;
|
2002-10-19 12:59:30 +00:00
|
|
|
|
2007-06-13 18:00:54 +00:00
|
|
|
LWIP_ERROR("netconn_connect: invalid conn", (conn == NULL), return ERR_ARG;);
|
2002-10-19 12:59:30 +00:00
|
|
|
|
2003-05-01 13:24:01 +00:00
|
|
|
if (conn->recvmbox == SYS_MBOX_NULL) {
|
|
|
|
if ((conn->recvmbox = sys_mbox_new()) == SYS_MBOX_NULL) {
|
2002-10-19 12:59:30 +00:00
|
|
|
return ERR_MEM;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-11 08:58:23 +00:00
|
|
|
msg.function = do_connect;
|
2007-05-23 17:46:53 +00:00
|
|
|
msg.msg.conn = conn;
|
2007-03-04 14:49:46 +00:00
|
|
|
msg.msg.msg.bc.ipaddr = addr;
|
|
|
|
msg.msg.msg.bc.port = port;
|
2007-06-08 19:27:59 +00:00
|
|
|
/* This is the only function which need to not block tcpip_thread */
|
2007-05-11 08:58:23 +00:00
|
|
|
tcpip_apimsg(&msg);
|
2002-10-19 12:59:30 +00:00
|
|
|
return conn->err;
|
|
|
|
}
|
2003-01-22 16:18:05 +00:00
|
|
|
|
2007-06-16 13:57:30 +00:00
|
|
|
/**
|
|
|
|
* Disconnect a netconn from its current peer (only valid for UDP netconns).
|
|
|
|
*
|
|
|
|
* @param conn the netconn to disconnect
|
|
|
|
* @return TODO: return value is not set here...
|
|
|
|
*/
|
2003-01-22 16:18:05 +00:00
|
|
|
err_t
|
|
|
|
netconn_disconnect(struct netconn *conn)
|
|
|
|
{
|
2007-03-04 14:49:46 +00:00
|
|
|
struct api_msg msg;
|
2003-01-22 16:18:05 +00:00
|
|
|
|
2007-06-13 18:00:54 +00:00
|
|
|
LWIP_ERROR("netconn_disconnect: invalid conn", (conn == NULL), return ERR_ARG;);
|
2003-01-22 16:18:05 +00:00
|
|
|
|
2007-05-11 08:58:23 +00:00
|
|
|
msg.function = do_disconnect;
|
2007-05-23 17:46:53 +00:00
|
|
|
msg.msg.conn = conn;
|
2007-06-08 19:27:59 +00:00
|
|
|
TCPIP_APIMSG(&msg);
|
2003-01-22 16:18:05 +00:00
|
|
|
return conn->err;
|
|
|
|
|
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-16 13:57:30 +00:00
|
|
|
/**
|
|
|
|
* Set a TCP netconn into listen mode
|
|
|
|
*
|
|
|
|
* @param conn the tcp netconn to set to listen mode
|
|
|
|
* @return ERR_OK if the netconn was set to listen (UDP and RAW netconns
|
|
|
|
* don't return any error (yet?))
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
err_t
|
|
|
|
netconn_listen(struct netconn *conn)
|
|
|
|
{
|
2007-03-04 14:49:46 +00:00
|
|
|
struct api_msg msg;
|
2002-10-19 12:59:30 +00:00
|
|
|
|
2007-06-13 18:00:54 +00:00
|
|
|
LWIP_ERROR("netconn_listen: invalid conn", (conn == NULL), return ERR_ARG;);
|
2002-10-19 12:59:30 +00:00
|
|
|
|
2007-05-11 08:58:23 +00:00
|
|
|
msg.function = do_listen;
|
2007-03-04 14:49:46 +00:00
|
|
|
msg.msg.conn = conn;
|
2007-06-08 19:27:59 +00:00
|
|
|
TCPIP_APIMSG(&msg);
|
2002-10-19 12:59:30 +00:00
|
|
|
return conn->err;
|
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-16 13:57:30 +00:00
|
|
|
/**
|
|
|
|
* Accept a new connection on a TCP listening netconn.
|
|
|
|
*
|
|
|
|
* @param conn the TCP listen netconn
|
|
|
|
* @return the newly accepted netconn or NULL on timeout
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
struct netconn *
|
|
|
|
netconn_accept(struct netconn *conn)
|
|
|
|
{
|
|
|
|
struct netconn *newconn;
|
2007-05-23 17:46:53 +00:00
|
|
|
|
2007-06-13 18:00:54 +00:00
|
|
|
LWIP_ERROR("netconn_accept: invalid conn", (conn == NULL), return NULL;);
|
|
|
|
LWIP_ERROR("netconn_accept: invalid acceptmbox", (conn->acceptmbox == SYS_MBOX_NULL), return NULL;);
|
2007-05-23 17:46:53 +00:00
|
|
|
|
2007-05-23 19:18:09 +00:00
|
|
|
#if LWIP_SO_RCVTIMEO
|
|
|
|
if (sys_arch_mbox_fetch(conn->acceptmbox, (void *)&newconn, conn->recv_timeout)==SYS_ARCH_TIMEOUT) {
|
|
|
|
newconn = NULL;
|
|
|
|
}
|
|
|
|
#else
|
2007-05-22 20:51:34 +00:00
|
|
|
sys_arch_mbox_fetch(conn->acceptmbox, (void *)&newconn, 0);
|
2007-05-23 19:18:09 +00:00
|
|
|
#endif /* LWIP_SO_RCVTIMEO*/
|
|
|
|
|
2003-02-06 22:18:56 +00:00
|
|
|
/* Register event with callback */
|
|
|
|
if (conn->callback)
|
2007-05-23 19:18:09 +00:00
|
|
|
(*conn->callback)(conn, NETCONN_EVT_RCVMINUS, 0);
|
2003-02-06 22:18:56 +00:00
|
|
|
|
2002-10-19 12:59:30 +00:00
|
|
|
return newconn;
|
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-16 13:57:30 +00:00
|
|
|
/**
|
|
|
|
* Receive data (in form of a netbuf containing a packet buffer) from a netconn
|
|
|
|
*
|
|
|
|
* @param conn the netconn from which to receive data
|
|
|
|
* @return a new netbuf containing received data or NULL on memory error or timeout
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
struct netbuf *
|
|
|
|
netconn_recv(struct netconn *conn)
|
|
|
|
{
|
2007-03-04 14:49:46 +00:00
|
|
|
struct api_msg msg;
|
|
|
|
struct netbuf *buf = NULL;
|
2002-10-19 12:59:30 +00:00
|
|
|
struct pbuf *p;
|
2003-02-11 21:00:14 +00:00
|
|
|
u16_t len;
|
2007-03-06 16:41:02 +00:00
|
|
|
|
2007-06-13 18:00:54 +00:00
|
|
|
LWIP_ERROR("netconn_recv: invalid conn", (conn == NULL), return NULL;);
|
2007-05-04 15:18:29 +00:00
|
|
|
|
2003-05-01 13:24:01 +00:00
|
|
|
if (conn->recvmbox == SYS_MBOX_NULL) {
|
2007-05-04 15:18:29 +00:00
|
|
|
if ((conn->recvmbox = sys_mbox_new()) == SYS_MBOX_NULL) {
|
|
|
|
conn->err = ERR_CONN;
|
|
|
|
return NULL;
|
|
|
|
}
|
2002-10-19 12:59:30 +00:00
|
|
|
}
|
|
|
|
|
2003-05-01 13:24:01 +00:00
|
|
|
if (conn->err != ERR_OK) {
|
2002-10-19 12:59:30 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2003-05-01 13:24:01 +00:00
|
|
|
if (conn->type == NETCONN_TCP) {
|
2007-05-19 13:54:56 +00:00
|
|
|
#if LWIP_TCP
|
2003-05-01 13:24:01 +00:00
|
|
|
if (conn->pcb.tcp->state == LISTEN) {
|
2002-10-19 12:59:30 +00:00
|
|
|
conn->err = ERR_CONN;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2003-06-27 20:46:11 +00:00
|
|
|
buf = memp_malloc(MEMP_NETBUF);
|
2002-10-19 12:59:30 +00:00
|
|
|
|
2003-05-01 13:24:01 +00:00
|
|
|
if (buf == NULL) {
|
2002-10-19 12:59:30 +00:00
|
|
|
conn->err = ERR_MEM;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-05-23 19:18:09 +00:00
|
|
|
#if LWIP_SO_RCVTIMEO
|
|
|
|
if (sys_arch_mbox_fetch(conn->recvmbox, (void *)&p, conn->recv_timeout)==SYS_ARCH_TIMEOUT) {
|
|
|
|
p = NULL;
|
|
|
|
}
|
|
|
|
#else
|
2007-05-22 20:51:34 +00:00
|
|
|
sys_arch_mbox_fetch(conn->recvmbox, (void *)&p, 0);
|
2007-05-23 19:18:09 +00:00
|
|
|
#endif /* LWIP_SO_RCVTIMEO*/
|
2003-02-11 16:33:02 +00:00
|
|
|
|
2007-05-22 21:29:04 +00:00
|
|
|
if (p != NULL) {
|
|
|
|
len = p->tot_len;
|
|
|
|
conn->recv_avail -= len;
|
|
|
|
} else {
|
|
|
|
len = 0;
|
2003-02-11 16:33:02 +00:00
|
|
|
}
|
2003-02-11 21:00:14 +00:00
|
|
|
|
|
|
|
/* Register event with callback */
|
2007-05-22 21:29:04 +00:00
|
|
|
if (conn->callback)
|
|
|
|
(*conn->callback)(conn, NETCONN_EVT_RCVMINUS, len);
|
2003-02-06 22:18:56 +00:00
|
|
|
|
2007-05-23 17:53:35 +00:00
|
|
|
/* If we are closed, we indicate that we no longer wish to use the socket */
|
2003-05-01 13:24:01 +00:00
|
|
|
if (p == NULL) {
|
2003-06-27 20:46:11 +00:00
|
|
|
memp_free(MEMP_NETBUF, buf);
|
2007-05-23 17:53:35 +00:00
|
|
|
conn->err = ERR_CLSD;
|
2002-10-19 12:59:30 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
buf->p = p;
|
|
|
|
buf->ptr = p;
|
2007-05-04 15:18:29 +00:00
|
|
|
buf->port = 0;
|
|
|
|
buf->addr = NULL;
|
2002-10-19 12:59:30 +00:00
|
|
|
|
|
|
|
/* Let the stack know that we have taken the data. */
|
2007-05-11 08:58:23 +00:00
|
|
|
msg.function = do_recv;
|
2007-03-04 14:49:46 +00:00
|
|
|
msg.msg.conn = conn;
|
2003-05-01 13:24:01 +00:00
|
|
|
if (buf != NULL) {
|
2007-05-22 09:54:00 +00:00
|
|
|
msg.msg.msg.r.len = buf->p->tot_len;
|
2002-10-19 12:59:30 +00:00
|
|
|
} else {
|
2007-05-22 09:54:00 +00:00
|
|
|
msg.msg.msg.r.len = 1;
|
2002-10-19 12:59:30 +00:00
|
|
|
}
|
2007-06-08 19:27:59 +00:00
|
|
|
TCPIP_APIMSG(&msg);
|
2007-05-19 13:54:56 +00:00
|
|
|
#endif /* LWIP_TCP */
|
2002-10-19 12:59:30 +00:00
|
|
|
} else {
|
2007-05-19 13:54:56 +00:00
|
|
|
#if (LWIP_UDP || LWIP_RAW)
|
2007-03-08 20:58:46 +00:00
|
|
|
#if LWIP_SO_RCVTIMEO
|
2007-05-22 21:29:04 +00:00
|
|
|
if (sys_arch_mbox_fetch(conn->recvmbox, (void *)&buf, conn->recv_timeout)==SYS_ARCH_TIMEOUT) {
|
|
|
|
buf = NULL;
|
|
|
|
}
|
2007-03-08 20:58:46 +00:00
|
|
|
#else
|
2007-05-22 20:51:34 +00:00
|
|
|
sys_arch_mbox_fetch(conn->recvmbox, (void *)&buf, 0);
|
2007-03-08 20:58:46 +00:00
|
|
|
#endif /* LWIP_SO_RCVTIMEO*/
|
2007-05-22 21:29:04 +00:00
|
|
|
if (buf!=NULL) {
|
|
|
|
conn->recv_avail -= buf->p->tot_len;
|
|
|
|
/* Register event with callback */
|
|
|
|
if (conn->callback)
|
|
|
|
(*conn->callback)(conn, NETCONN_EVT_RCVMINUS, buf->p->tot_len);
|
|
|
|
}
|
2007-05-19 13:54:56 +00:00
|
|
|
#endif /* (LWIP_UDP || LWIP_RAW) */
|
2002-10-19 12:59:30 +00:00
|
|
|
}
|
2007-06-13 18:00:54 +00:00
|
|
|
|
2003-06-10 10:45:29 +00:00
|
|
|
LWIP_DEBUGF(API_LIB_DEBUG, ("netconn_recv: received %p (err %d)\n", (void *)buf, conn->err));
|
2002-10-19 12:59:30 +00:00
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-16 13:57:30 +00:00
|
|
|
/**
|
|
|
|
* Send data (in form of a netbuf) to a specific remote IP address and port.
|
|
|
|
* Only to be used for UDP and RAW netconns (not TCP).
|
|
|
|
*
|
|
|
|
* @param conn the netconn over which to send data
|
|
|
|
* @param buf a netbuf containing the data to send
|
|
|
|
* @param addr the remote IP address to which to send the data
|
|
|
|
* @param addr the remote port to which to send the data
|
|
|
|
* @return ERR_OK if data was sent, any other err_t on error
|
|
|
|
*/
|
2007-05-04 15:18:29 +00:00
|
|
|
err_t
|
|
|
|
netconn_sendto(struct netconn *conn, struct netbuf *buf, struct ip_addr *addr, u16_t port)
|
2007-06-16 13:57:30 +00:00
|
|
|
{
|
|
|
|
if (buf != NULL) {
|
2007-05-04 15:18:29 +00:00
|
|
|
buf->addr = addr;
|
|
|
|
buf->port = port;
|
2007-06-16 13:57:30 +00:00
|
|
|
return netconn_send(conn, buf);
|
2007-05-04 15:18:29 +00:00
|
|
|
}
|
|
|
|
return ERR_VAL;
|
|
|
|
}
|
|
|
|
|
2007-06-16 13:57:30 +00:00
|
|
|
/**
|
|
|
|
* Send data over a UDP or RAW netconn (that is already connected).
|
|
|
|
*
|
|
|
|
* @param conn the UDP or RAW netconn over which to send data
|
|
|
|
* @param buf a netbuf containing the data to send
|
|
|
|
* @return ERR_OK if data was sent, any other err_t on error
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
err_t
|
|
|
|
netconn_send(struct netconn *conn, struct netbuf *buf)
|
|
|
|
{
|
2007-03-04 14:49:46 +00:00
|
|
|
struct api_msg msg;
|
2002-10-19 12:59:30 +00:00
|
|
|
|
2007-06-13 18:00:54 +00:00
|
|
|
LWIP_ERROR("netconn_send: invalid conn", (conn == NULL), return ERR_ARG;);
|
2002-10-19 12:59:30 +00:00
|
|
|
|
2003-05-01 13:24:01 +00:00
|
|
|
if (conn->err != ERR_OK) {
|
2002-10-19 12:59:30 +00:00
|
|
|
return conn->err;
|
|
|
|
}
|
|
|
|
|
2003-06-10 10:45:29 +00:00
|
|
|
LWIP_DEBUGF(API_LIB_DEBUG, ("netconn_send: sending %d bytes\n", buf->p->tot_len));
|
2007-05-11 08:58:23 +00:00
|
|
|
msg.function = do_send;
|
2007-03-04 14:49:46 +00:00
|
|
|
msg.msg.conn = conn;
|
2007-05-04 15:18:29 +00:00
|
|
|
msg.msg.msg.b = buf;
|
2007-06-08 19:27:59 +00:00
|
|
|
TCPIP_APIMSG(&msg);
|
2002-10-19 12:59:30 +00:00
|
|
|
return conn->err;
|
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-16 13:57:30 +00:00
|
|
|
/**
|
|
|
|
* Send data over a TCP netconn.
|
|
|
|
*
|
|
|
|
* @param conn the TCP netconn over which to send data
|
|
|
|
* @param dataptr pointer to the application buffer that contains the data to send
|
|
|
|
* @param size size of the application data to send
|
|
|
|
* @param copy flag: 1 = copy the data, 0 = data is non-volatile, can be sent by reference
|
|
|
|
* @return ERR_OK if data was sent, any other err_t on error
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
err_t
|
2007-03-11 17:57:13 +00:00
|
|
|
netconn_write(struct netconn *conn, const void *dataptr, u16_t size, u8_t copy)
|
2002-10-19 12:59:30 +00:00
|
|
|
{
|
2007-03-04 14:49:46 +00:00
|
|
|
struct api_msg msg;
|
2007-06-21 18:40:21 +00:00
|
|
|
|
2007-06-13 18:00:54 +00:00
|
|
|
LWIP_ERROR("netconn_write: invalid conn", (conn == NULL), return ERR_ARG;);
|
2007-06-21 18:40:21 +00:00
|
|
|
LWIP_ERROR("netconn_write: invalid conn->type", (conn->type != NETCONN_TCP), return ERR_VAL;);
|
2002-10-19 12:59:30 +00:00
|
|
|
|
2003-05-01 13:24:01 +00:00
|
|
|
if (conn->err != ERR_OK) {
|
2002-10-19 12:59:30 +00:00
|
|
|
return conn->err;
|
|
|
|
}
|
|
|
|
|
2007-05-11 08:58:23 +00:00
|
|
|
msg.function = do_write;
|
2007-03-04 14:49:46 +00:00
|
|
|
msg.msg.conn = conn;
|
2007-06-21 18:40:21 +00:00
|
|
|
msg.msg.msg.w.dataptr = dataptr;
|
|
|
|
msg.msg.msg.w.copy = copy;
|
|
|
|
msg.msg.msg.w.len = size;
|
|
|
|
/* For locking the core: this _can_ be delayed on low memory/low send buffer,
|
|
|
|
but if it is, this is done inside api_msg.c:do_write(), so we can use the
|
|
|
|
non-blocking version here. */
|
|
|
|
TCPIP_APIMSG(&msg);
|
2007-06-13 18:00:54 +00:00
|
|
|
|
2002-10-19 12:59:30 +00:00
|
|
|
return conn->err;
|
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-16 13:57:30 +00:00
|
|
|
/**
|
|
|
|
* Close a TCP netconn (doesn't delete it).
|
|
|
|
*
|
|
|
|
* @param conn the TCP netconn to close
|
|
|
|
* @return ERR_OK if the netconn was closed, any other err_t on error
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
err_t
|
|
|
|
netconn_close(struct netconn *conn)
|
|
|
|
{
|
2007-03-04 14:49:46 +00:00
|
|
|
struct api_msg msg;
|
2002-10-19 12:59:30 +00:00
|
|
|
|
2007-06-13 18:00:54 +00:00
|
|
|
LWIP_ERROR("netconn_close: invalid conn", (conn == NULL), return ERR_ARG;);
|
|
|
|
|
2002-10-19 12:59:30 +00:00
|
|
|
|
|
|
|
conn->state = NETCONN_CLOSE;
|
|
|
|
again:
|
2007-05-11 08:58:23 +00:00
|
|
|
msg.function = do_close;
|
2007-03-04 14:49:46 +00:00
|
|
|
msg.msg.conn = conn;
|
2007-06-08 19:27:59 +00:00
|
|
|
TCPIP_APIMSG(&msg);
|
2007-03-28 17:26:06 +00:00
|
|
|
if (conn->err == ERR_MEM && conn->sem != SYS_SEM_NULL) {
|
2002-10-19 12:59:30 +00:00
|
|
|
sys_sem_wait(conn->sem);
|
|
|
|
goto again;
|
|
|
|
}
|
|
|
|
conn->state = NETCONN_NONE;
|
|
|
|
return conn->err;
|
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-03-11 19:16:38 +00:00
|
|
|
#if LWIP_IGMP
|
2007-06-16 13:57:30 +00:00
|
|
|
/**
|
|
|
|
* Join multicast groups for UDP netconns.
|
|
|
|
*
|
|
|
|
* @param conn the UDP netconn for which to change multicast addresses
|
|
|
|
* @param multiaddr IP address of the multicast group to join or leave
|
|
|
|
* @param interface the IP address of the network interface on which to send
|
|
|
|
* the igmp message
|
|
|
|
* @param join_or_leave flag whether to send a join- or leave-message
|
|
|
|
* @return ERR_OK if the action was taken, any err_t on error
|
|
|
|
*/
|
2007-03-11 19:16:38 +00:00
|
|
|
err_t
|
2007-06-16 13:57:30 +00:00
|
|
|
netconn_join_leave_group(struct netconn *conn,
|
|
|
|
struct ip_addr *multiaddr,
|
|
|
|
struct ip_addr *interface,
|
|
|
|
enum netconn_igmp join_or_leave)
|
2007-03-11 19:16:38 +00:00
|
|
|
{
|
|
|
|
struct api_msg msg;
|
|
|
|
|
2007-06-13 18:00:54 +00:00
|
|
|
LWIP_ERROR("netconn_join_leave_group: invalid conn", (conn == NULL), return ERR_ARG;);
|
2007-03-11 19:16:38 +00:00
|
|
|
|
|
|
|
if (conn->err != ERR_OK) {
|
|
|
|
return conn->err;
|
|
|
|
}
|
|
|
|
|
2007-05-11 08:58:23 +00:00
|
|
|
msg.function = do_join_leave_group;
|
2007-03-21 16:38:58 +00:00
|
|
|
msg.msg.conn = conn;
|
2007-05-22 09:54:00 +00:00
|
|
|
msg.msg.msg.jl.multiaddr = multiaddr;
|
|
|
|
msg.msg.msg.jl.interface = interface;
|
|
|
|
msg.msg.msg.jl.join_or_leave = join_or_leave;
|
2007-06-08 19:27:59 +00:00
|
|
|
TCPIP_APIMSG(&msg);
|
2007-03-11 19:16:38 +00:00
|
|
|
return conn->err;
|
|
|
|
}
|
|
|
|
#endif /* LWIP_IGMP */
|
|
|
|
|
2007-05-18 11:27:46 +00:00
|
|
|
#endif /* !NO_SYS */
|