- libnetsock - internal implementation of a socket on the lwip server side. it encapsulates the asynchronous protocol - lwip server - uses libnetsock to work with the asynchronous protocol
		
			
				
	
	
		
			370 lines
		
	
	
		
			7.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			370 lines
		
	
	
		
			7.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#include <stdlib.h>
 | 
						|
 | 
						|
#include <sys/ioc_net.h>
 | 
						|
#include <net/gen/in.h>
 | 
						|
#include <net/gen/ip_io.h>
 | 
						|
 | 
						|
#include <lwip/raw.h>
 | 
						|
#include <lwip/ip_addr.h>
 | 
						|
 | 
						|
#include <minix/netsock.h>
 | 
						|
#include "proto.h"
 | 
						|
 | 
						|
#define RAW_IP_BUF_SIZE	(32 << 10)
 | 
						|
 | 
						|
#define sock_alloc_buf(s)	debug_malloc(s)
 | 
						|
#define sock_free_buf(x)	debug_free(x)
 | 
						|
 | 
						|
struct raw_ip_recv_data {
 | 
						|
	ip_addr_t	ip;
 | 
						|
	struct pbuf *	pbuf;
 | 
						|
};
 | 
						|
 | 
						|
#define raw_ip_recv_alloc()	debug_malloc(sizeof(struct raw_ip_recv_data))
 | 
						|
 | 
						|
static void raw_ip_recv_free(void * data)
 | 
						|
{
 | 
						|
	if (((struct raw_ip_recv_data *)data)->pbuf)
 | 
						|
		pbuf_free(((struct raw_ip_recv_data *)data)->pbuf);
 | 
						|
	debug_free(data);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
static int raw_ip_op_open(struct socket * sock, __unused message * m)
 | 
						|
{
 | 
						|
	debug_print("socket num %ld", get_sock_num(sock));
 | 
						|
 | 
						|
	if (!(sock->buf = sock_alloc_buf(RAW_IP_BUF_SIZE))) {
 | 
						|
		return ENOMEM;
 | 
						|
	}
 | 
						|
	sock->buf_size = RAW_IP_BUF_SIZE;
 | 
						|
 | 
						|
	return OK;
 | 
						|
}
 | 
						|
 | 
						|
static void raw_ip_close(struct socket * sock)
 | 
						|
{
 | 
						|
	/* deque and free all enqueued data before closing */
 | 
						|
	sock_dequeue_data_all(sock, raw_ip_recv_free);
 | 
						|
 | 
						|
	if (sock->pcb)
 | 
						|
		raw_remove(sock->pcb);
 | 
						|
	if (sock->buf)
 | 
						|
		sock_free_buf(sock->buf);
 | 
						|
 | 
						|
	/* mark it as unused */
 | 
						|
	sock->ops = NULL;
 | 
						|
}
 | 
						|
 | 
						|
static void raw_ip_op_close(struct socket * sock, __unused message * m)
 | 
						|
{
 | 
						|
	debug_print("socket num %ld", get_sock_num(sock));
 | 
						|
 | 
						|
	raw_ip_close(sock);
 | 
						|
 | 
						|
	sock_reply_close(sock, OK);
 | 
						|
}
 | 
						|
 | 
						|
static int raw_ip_do_receive(message * m,
 | 
						|
			struct pbuf *pbuf)
 | 
						|
{
 | 
						|
	struct pbuf * p;
 | 
						|
	unsigned rem_len = m->COUNT;
 | 
						|
	unsigned written = 0, hdr_sz = 0;
 | 
						|
	int err;
 | 
						|
 | 
						|
	debug_print("user buffer size : %d\n", rem_len);
 | 
						|
 | 
						|
	for (p = pbuf; p && rem_len; p = p->next) {
 | 
						|
		size_t cp_len;
 | 
						|
 | 
						|
		cp_len = (rem_len < p->len) ? rem_len : p->len;
 | 
						|
		err = copy_to_user(m->m_source,	p->payload, cp_len,
 | 
						|
				(cp_grant_id_t) m->IO_GRANT,
 | 
						|
				hdr_sz + written);
 | 
						|
 | 
						|
		if (err != OK)
 | 
						|
			return err;
 | 
						|
 | 
						|
		written += cp_len;
 | 
						|
		rem_len -= cp_len;
 | 
						|
	}
 | 
						|
 | 
						|
	debug_print("copied %d bytes\n", written + hdr_sz);
 | 
						|
	return written + hdr_sz;
 | 
						|
}
 | 
						|
 | 
						|
static u8_t raw_ip_op_receive(void *arg,
 | 
						|
			__unused struct raw_pcb *pcb,
 | 
						|
			struct pbuf *pbuf,
 | 
						|
			ip_addr_t *addr)
 | 
						|
{
 | 
						|
	struct socket * sock = (struct socket *) arg;
 | 
						|
	struct raw_ip_recv_data * data;
 | 
						|
	int ret;
 | 
						|
 | 
						|
	debug_print("socket num : %ld addr : %x\n",
 | 
						|
			get_sock_num(sock), (unsigned int) addr->addr);
 | 
						|
 | 
						|
	if (sock->flags & SOCK_FLG_OP_PENDING) {
 | 
						|
		/* we are resuming a suspended operation */
 | 
						|
		ret = raw_ip_do_receive(&sock->mess, pbuf);
 | 
						|
 | 
						|
		if (ret > 0) {
 | 
						|
			sock_reply(sock, ret);
 | 
						|
			sock->flags &= ~SOCK_FLG_OP_PENDING;
 | 
						|
			if (sock->usr_flags & NWIO_EXCL) {
 | 
						|
				pbuf_free(pbuf);
 | 
						|
				return 1;
 | 
						|
			} else
 | 
						|
				return 0;
 | 
						|
		} else {
 | 
						|
			sock_reply(sock, ret);
 | 
						|
			sock->flags &= ~SOCK_FLG_OP_PENDING;
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	/* Do not enqueue more data than allowed */
 | 
						|
	if (sock->recv_data_size > RAW_IP_BUF_SIZE)
 | 
						|
		return 0;
 | 
						|
 | 
						|
	/*
 | 
						|
	 * nobody is waiting for the data or an error occured above, we enqueue
 | 
						|
	 * the packet
 | 
						|
	 */
 | 
						|
	if (!(data = raw_ip_recv_alloc())) {
 | 
						|
		return 0;
 | 
						|
	}
 | 
						|
 | 
						|
	data->ip = *addr;
 | 
						|
	if (sock->usr_flags & NWIO_EXCL) {
 | 
						|
		data->pbuf = pbuf;
 | 
						|
		ret = 1;
 | 
						|
	} else {
 | 
						|
		/* we store a copy of this packet */
 | 
						|
		data->pbuf = pbuf_alloc(PBUF_RAW, pbuf->tot_len, PBUF_RAM);
 | 
						|
		if (data->pbuf == NULL) {
 | 
						|
			debug_print("LWIP : cannot allocated new pbuf\n");
 | 
						|
			raw_ip_recv_free(data);
 | 
						|
			return 0;
 | 
						|
		}
 | 
						|
 | 
						|
		if (pbuf_copy(data->pbuf, pbuf) != ERR_OK) {
 | 
						|
			debug_print("LWIP : cannot copy pbuf\n");
 | 
						|
			raw_ip_recv_free(data);
 | 
						|
			return 0;
 | 
						|
		}
 | 
						|
 | 
						|
		ret = 0;
 | 
						|
	}
 | 
						|
 | 
						|
	/*
 | 
						|
	 * If we didn't managed to enqueue the packet we report it as not
 | 
						|
	 * consumed
 | 
						|
	 */
 | 
						|
	if (sock_enqueue_data(sock, data, data->pbuf->tot_len) != OK) {
 | 
						|
		raw_ip_recv_free(data);
 | 
						|
		ret = 0;
 | 
						|
	}
 | 
						|
 | 
						|
	return ret;
 | 
						|
}
 | 
						|
 | 
						|
static void raw_ip_op_read(struct socket * sock, message * m, int blk)
 | 
						|
{
 | 
						|
	debug_print("socket num %ld", get_sock_num(sock));
 | 
						|
 | 
						|
	if (sock->pcb == NULL) {
 | 
						|
		sock_reply(sock, EIO);
 | 
						|
		return;
 | 
						|
	}
 | 
						|
 | 
						|
	if (sock->recv_head) {
 | 
						|
		/* data available receive immeditely */
 | 
						|
 | 
						|
		struct raw_ip_recv_data * data;
 | 
						|
		int ret;
 | 
						|
 | 
						|
		data = (struct raw_ip_recv_data *) sock->recv_head->data;
 | 
						|
 | 
						|
		ret = raw_ip_do_receive(m,	data->pbuf);
 | 
						|
 | 
						|
		if (ret > 0) {
 | 
						|
			sock_dequeue_data(sock);
 | 
						|
			sock->recv_data_size -= data->pbuf->tot_len;
 | 
						|
			raw_ip_recv_free(data);
 | 
						|
		}
 | 
						|
		sock_reply(sock, ret);
 | 
						|
	} else if (!blk)
 | 
						|
		sock_reply(sock, EAGAIN);
 | 
						|
	else {
 | 
						|
		/* store the message so we know how to reply */
 | 
						|
		sock->mess = *m;
 | 
						|
		/* operation is being processes */
 | 
						|
		sock->flags |= SOCK_FLG_OP_PENDING;
 | 
						|
 | 
						|
		debug_print("no data to read, suspending");
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
static void raw_ip_op_write(struct socket * sock, message * m, __unused int blk)
 | 
						|
{
 | 
						|
	int ret;
 | 
						|
	struct pbuf * pbuf;
 | 
						|
	struct ip_hdr * ip_hdr;
 | 
						|
 | 
						|
	debug_print("socket num %ld data size %d",
 | 
						|
			get_sock_num(sock), m->COUNT);
 | 
						|
 | 
						|
	if (sock->pcb == NULL) {
 | 
						|
		ret = EIO;
 | 
						|
		goto write_err;
 | 
						|
	}
 | 
						|
 | 
						|
	if ((size_t) m->COUNT > sock->buf_size) {
 | 
						|
		ret = ENOMEM;
 | 
						|
		goto write_err;
 | 
						|
	}
 | 
						|
 | 
						|
	pbuf = pbuf_alloc(PBUF_LINK, m->COUNT, PBUF_RAM);
 | 
						|
	if (!pbuf) {
 | 
						|
		ret = ENOMEM;
 | 
						|
		goto write_err;
 | 
						|
	}
 | 
						|
 | 
						|
	if ((ret = copy_from_user(m->m_source, pbuf->payload, m->COUNT,
 | 
						|
				(cp_grant_id_t) m->IO_GRANT, 0)) != OK) {
 | 
						|
		pbuf_free(pbuf);
 | 
						|
		goto write_err;
 | 
						|
	}
 | 
						|
 | 
						|
	ip_hdr = (struct ip_hdr *) pbuf->payload;
 | 
						|
	if (pbuf_header(pbuf, -IP_HLEN)) {
 | 
						|
		pbuf_free(pbuf);
 | 
						|
		ret = EIO;
 | 
						|
		goto write_err;
 | 
						|
	}
 | 
						|
 | 
						|
	if ((ret = raw_sendto((struct raw_pcb *)sock->pcb, pbuf,
 | 
						|
				(ip_addr_t *) &ip_hdr->dest)) != OK) {
 | 
						|
		debug_print("raw_sendto failed %d", ret);
 | 
						|
		ret = EIO;
 | 
						|
	} else
 | 
						|
		ret = m->COUNT;
 | 
						|
	
 | 
						|
 | 
						|
	pbuf_free(pbuf);
 | 
						|
	
 | 
						|
write_err:
 | 
						|
	sock_reply(sock, ret);
 | 
						|
}
 | 
						|
 | 
						|
static void raw_ip_set_opt(struct socket * sock, message * m)
 | 
						|
{
 | 
						|
	int err;
 | 
						|
	nwio_ipopt_t ipopt;
 | 
						|
	struct raw_pcb * pcb;
 | 
						|
 | 
						|
	err = copy_from_user(m->m_source, &ipopt, sizeof(ipopt),
 | 
						|
				(cp_grant_id_t) m->IO_GRANT, 0);
 | 
						|
 | 
						|
	if (err != OK)
 | 
						|
		sock_reply(sock, err);
 | 
						|
 | 
						|
	debug_print("ipopt.nwio_flags = 0x%lx", ipopt.nwio_flags);
 | 
						|
	debug_print("ipopt.nwio_proto = 0x%x", ipopt.nwio_proto);
 | 
						|
	debug_print("ipopt.nwio_rem = 0x%x",
 | 
						|
				(unsigned int) ipopt.nwio_rem);
 | 
						|
 | 
						|
	if (sock->pcb == NULL) {
 | 
						|
		if (!(pcb = raw_new(ipopt.nwio_proto))) {
 | 
						|
			raw_ip_close(sock);
 | 
						|
			sock_reply(sock, ENOMEM);
 | 
						|
			return;
 | 
						|
		}
 | 
						|
 | 
						|
		sock->pcb = pcb;
 | 
						|
	} else
 | 
						|
		pcb = (struct raw_pcb *) sock->pcb;
 | 
						|
 | 
						|
	if (pcb->protocol != ipopt.nwio_proto) {
 | 
						|
		debug_print("conflicting ip socket protocols\n");
 | 
						|
		sock_reply(sock, EBADIOCTL);
 | 
						|
	}
 | 
						|
 | 
						|
	sock->usr_flags = ipopt.nwio_flags;
 | 
						|
 | 
						|
#if 0
 | 
						|
	if (raw_bind(pcb, (ip_addr_t *)&ipopt.nwio_rem) == ERR_USE) {
 | 
						|
		raw_ip_close(sock);
 | 
						|
		sock_reply(sock, EADDRINUSE);
 | 
						|
		return;
 | 
						|
	}
 | 
						|
#endif
 | 
						|
 | 
						|
	/* register a receive hook */
 | 
						|
	raw_recv((struct raw_pcb *) sock->pcb, raw_ip_op_receive, sock);
 | 
						|
 | 
						|
	sock_reply(sock, OK);
 | 
						|
}
 | 
						|
 | 
						|
static void raw_ip_get_opt(struct socket * sock, message * m)
 | 
						|
{
 | 
						|
	int err;
 | 
						|
	nwio_ipopt_t ipopt;
 | 
						|
	struct raw_pcb * pcb = (struct raw_pcb *) sock->pcb;
 | 
						|
 | 
						|
	assert(pcb);
 | 
						|
 | 
						|
	ipopt.nwio_rem = pcb->remote_ip.addr;
 | 
						|
	ipopt.nwio_flags = sock->usr_flags;
 | 
						|
 | 
						|
	if ((unsigned) m->COUNT < sizeof(ipopt)) {
 | 
						|
		sock_reply(sock, EINVAL);
 | 
						|
		return;
 | 
						|
	}
 | 
						|
 | 
						|
	err = copy_to_user(m->m_source, &ipopt, sizeof(ipopt),
 | 
						|
				(cp_grant_id_t) m->IO_GRANT, 0);
 | 
						|
 | 
						|
	if (err != OK)
 | 
						|
		sock_reply(sock, err);
 | 
						|
 | 
						|
	sock_reply(sock, OK);
 | 
						|
}
 | 
						|
 | 
						|
static void raw_ip_op_ioctl(struct socket * sock, message * m, __unused int blk)
 | 
						|
{
 | 
						|
	debug_print("socket num %ld req %c %d %d",
 | 
						|
			get_sock_num(sock),
 | 
						|
			(m->REQUEST >> 8) & 0xff,
 | 
						|
			m->REQUEST & 0xff,
 | 
						|
			(m->REQUEST >> 16) & _IOCPARM_MASK);
 | 
						|
	
 | 
						|
	switch (m->REQUEST) {
 | 
						|
	case NWIOSIPOPT:
 | 
						|
		raw_ip_set_opt(sock, m);
 | 
						|
		break;
 | 
						|
	case NWIOGIPOPT:
 | 
						|
		raw_ip_get_opt(sock, m);
 | 
						|
		break;
 | 
						|
	default:
 | 
						|
		/*
 | 
						|
		 * /dev/ip can be also accessed as a default device to be
 | 
						|
		 * configured
 | 
						|
		 */
 | 
						|
		nic_default_ioctl(m);
 | 
						|
		return;
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
struct sock_ops sock_raw_ip_ops = {
 | 
						|
	.open		= raw_ip_op_open,
 | 
						|
	.close		= raw_ip_op_close,
 | 
						|
	.read		= raw_ip_op_read,
 | 
						|
	.write		= raw_ip_op_write,
 | 
						|
	.ioctl		= raw_ip_op_ioctl,
 | 
						|
	.select		= generic_op_select,
 | 
						|
	.select_reply	= generic_op_select_reply
 | 
						|
};
 |