NetBSD/sys/netinet/udp_usrreq.c

662 lines
15 KiB
C
Raw Normal View History

1996-09-15 22:11:06 +04:00
/* $NetBSD: udp_usrreq.c,v 1.35 1996/09/15 18:11:11 mycroft Exp $ */
1993-03-21 12:45:37 +03:00
/*
* Copyright (c) 1982, 1986, 1988, 1990, 1993
* The Regents of the University of California. All rights reserved.
1993-03-21 12:45:37 +03:00
*
* 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. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``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 REGENTS OR CONTRIBUTORS 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.
*
* @(#)udp_usrreq.c 8.4 (Berkeley) 1/21/94
1993-03-21 12:45:37 +03:00
*/
1993-12-18 03:40:47 +03:00
#include <sys/param.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
#include <sys/protosw.h>
#include <sys/socket.h>
#include <sys/socketvar.h>
#include <sys/errno.h>
1993-12-18 03:40:47 +03:00
#include <sys/stat.h>
1996-02-14 02:40:59 +03:00
#include <sys/systm.h>
#include <sys/proc.h>
#include <vm/vm.h>
#include <sys/sysctl.h>
1993-03-21 12:45:37 +03:00
1993-12-18 03:40:47 +03:00
#include <net/if.h>
#include <net/route.h>
1993-03-21 12:45:37 +03:00
1993-12-18 03:40:47 +03:00
#include <netinet/in.h>
#include <netinet/in_systm.h>
#include <netinet/in_var.h>
1993-12-18 03:40:47 +03:00
#include <netinet/ip.h>
#include <netinet/in_pcb.h>
#include <netinet/ip_var.h>
#include <netinet/ip_icmp.h>
#include <netinet/udp.h>
#include <netinet/udp_var.h>
1993-03-21 12:45:37 +03:00
1996-02-14 02:40:59 +03:00
#include <machine/stdarg.h>
1994-01-09 02:19:48 +03:00
/*
* UDP protocol implementation.
* Per RFC 768, August, 1980.
*/
#ifndef COMPAT_42
int udpcksum = 1;
#else
int udpcksum = 0; /* XXX */
#endif
static void udp_notify __P((struct inpcb *, int));
static struct mbuf *udp_saveopt __P((caddr_t, int, int));
1994-01-09 02:17:18 +03:00
#ifndef UDBHASHSIZE
#define UDBHASHSIZE 128
#endif
int udbhashsize = UDBHASHSIZE;
1994-01-09 02:17:18 +03:00
void
1993-03-21 12:45:37 +03:00
udp_init()
{
1996-09-15 22:11:06 +04:00
in_pcbinit(&udbtable, udbhashsize, udbhashsize);
1993-03-21 12:45:37 +03:00
}
1994-01-09 02:17:18 +03:00
void
1996-02-14 02:40:59 +03:00
#if __STDC__
udp_input(struct mbuf *m, ...)
#else
udp_input(m, va_alist)
struct mbuf *m;
va_dcl
#endif
1993-03-21 12:45:37 +03:00
{
register struct ip *ip;
register struct udphdr *uh;
register struct inpcb *inp;
struct mbuf *opts = 0;
int len;
struct ip save_ip;
1996-02-14 02:40:59 +03:00
int iphlen;
va_list ap;
struct sockaddr_in udpsrc;
1996-02-14 02:40:59 +03:00
va_start(ap, m);
iphlen = va_arg(ap, int);
va_end(ap);
1993-03-21 12:45:37 +03:00
udpstat.udps_ipackets++;
/*
* Strip IP options, if any; should skip this,
* make available to user, and use on returned packets,
* but we don't yet have a way to check the checksum
* with options still present.
*/
if (iphlen > sizeof (struct ip)) {
ip_stripoptions(m, (struct mbuf *)0);
iphlen = sizeof(struct ip);
}
/*
* Get IP and UDP header together in first mbuf.
*/
ip = mtod(m, struct ip *);
if (m->m_len < iphlen + sizeof(struct udphdr)) {
if ((m = m_pullup(m, iphlen + sizeof(struct udphdr))) == 0) {
udpstat.udps_hdrops++;
return;
}
ip = mtod(m, struct ip *);
}
uh = (struct udphdr *)((caddr_t)ip + iphlen);
/*
* Make mbuf data length reflect UDP length.
* If not enough data to reflect UDP length, drop.
*/
len = ntohs((u_int16_t)uh->uh_ulen);
1993-03-21 12:45:37 +03:00
if (ip->ip_len != len) {
if (len > ip->ip_len) {
udpstat.udps_badlen++;
goto bad;
}
m_adj(m, len - ip->ip_len);
/* ip->ip_len = len; */
}
/*
* Save a copy of the IP header in case we want restore it
* for sending an ICMP error message in response.
*/
save_ip = *ip;
/*
* Checksum extended UDP header and data.
*/
if (uh->uh_sum) {
bzero(((struct ipovly *)ip)->ih_x1,
sizeof ((struct ipovly *)ip)->ih_x1);
1993-03-21 12:45:37 +03:00
((struct ipovly *)ip)->ih_len = uh->uh_ulen;
1996-02-14 02:40:59 +03:00
if ((uh->uh_sum = in_cksum(m, len + sizeof (struct ip))) != 0) {
1993-03-21 12:45:37 +03:00
udpstat.udps_badsum++;
m_freem(m);
return;
}
}
if (IN_MULTICAST(ip->ip_dst.s_addr) ||
in_broadcast(ip->ip_dst, m->m_pkthdr.rcvif)) {
struct socket *last;
/*
* Deliver a multicast or broadcast datagram to *all* sockets
* for which the local and remote addresses and ports match
* those of the incoming datagram. This allows more than
* one process to receive multi/broadcasts on the same port.
* (This really ought to be done for unicast datagrams as
* well, but that would cause problems with existing
* applications that open both address-specific sockets and
* a wildcard socket listening to the same port -- they would
* end up receiving duplicates of every unicast datagram.
* Those applications open the multiple sockets to overcome an
* inadequacy of the UDP socket interface, but for backwards
* compatibility we avoid the problem here rather than
* fixing the interface. Maybe 4.5BSD will remedy this?)
*/
/*
* Construct sockaddr format source address.
*/
udpsrc.sin_family = AF_INET;
udpsrc.sin_len = sizeof(struct sockaddr_in);
udpsrc.sin_port = uh->uh_sport;
udpsrc.sin_addr = ip->ip_src;
m->m_len -= sizeof (struct udpiphdr);
m->m_data += sizeof (struct udpiphdr);
/*
* Locate pcb(s) for datagram.
* (Algorithm copied from raw_intr().)
*/
last = NULL;
for (inp = udbtable.inpt_queue.cqh_first;
inp != (struct inpcb *)&udbtable.inpt_queue;
inp = inp->inp_queue.cqe_next) {
if (inp->inp_lport != uh->uh_dport)
continue;
if (!in_nullhost(inp->inp_laddr)) {
if (!in_hosteq(inp->inp_laddr, ip->ip_dst))
continue;
}
if (!in_nullhost(inp->inp_faddr)) {
if (!in_hosteq(inp->inp_faddr, ip->ip_src) ||
inp->inp_fport != uh->uh_sport)
continue;
}
if (last != NULL) {
struct mbuf *n;
if ((n = m_copy(m, 0, M_COPYALL)) != NULL) {
if (sbappendaddr(&last->so_rcv,
sintosa(&udpsrc), n,
1995-06-04 09:06:49 +04:00
(struct mbuf *)0) == 0) {
m_freem(n);
udpstat.udps_fullsock++;
} else
sorwakeup(last);
}
}
last = inp->inp_socket;
/*
* Don't look for additional matches if this one does
* not have either the SO_REUSEPORT or SO_REUSEADDR
* socket options set. This heuristic avoids searching
* through all pcbs in the common case of a non-shared
* port. It * assumes that an application will never
* clear these options after setting them.
*/
1996-03-17 02:53:58 +03:00
if ((last->so_options&(SO_REUSEPORT|SO_REUSEADDR)) == 0)
break;
}
if (last == NULL) {
/*
* No matching pcb found; discard datagram.
* (No need to send an ICMP Port Unreachable
* for a broadcast or multicast datgram.)
*/
udpstat.udps_noportbcast++;
goto bad;
}
if (sbappendaddr(&last->so_rcv, sintosa(&udpsrc), m,
1995-06-04 09:06:49 +04:00
(struct mbuf *)0) == 0) {
udpstat.udps_fullsock++;
goto bad;
}
sorwakeup(last);
return;
}
1993-03-21 12:45:37 +03:00
/*
* Locate pcb for datagram.
*/
1996-09-15 22:11:06 +04:00
inp = in_pcblookup_connect(&udbtable, ip->ip_src, uh->uh_sport,
ip->ip_dst, uh->uh_dport);
if (inp == 0) {
++udpstat.udps_pcbhashmiss;
1996-09-15 22:11:06 +04:00
inp = in_pcblookup_bind(&udbtable, ip->ip_dst, uh->uh_dport);
if (inp == 0) {
udpstat.udps_noport++;
if (m->m_flags & (M_BCAST | M_MCAST)) {
udpstat.udps_noportbcast++;
goto bad;
}
*ip = save_ip;
ip->ip_len += iphlen;
icmp_error(m, ICMP_UNREACH, ICMP_UNREACH_PORT, 0, 0);
return;
}
1993-03-21 12:45:37 +03:00
}
/*
* Construct sockaddr format source address.
* Stuff source address and datagram in user buffer.
*/
udpsrc.sin_family = AF_INET;
udpsrc.sin_len = sizeof(struct sockaddr_in);
udpsrc.sin_port = uh->uh_sport;
udpsrc.sin_addr = ip->ip_src;
1993-03-21 12:45:37 +03:00
if (inp->inp_flags & INP_CONTROLOPTS) {
struct mbuf **mp = &opts;
if (inp->inp_flags & INP_RECVDSTADDR) {
*mp = udp_saveopt((caddr_t) &ip->ip_dst,
sizeof(struct in_addr), IP_RECVDSTADDR);
if (*mp)
mp = &(*mp)->m_next;
}
#ifdef notyet
/* options were tossed above */
if (inp->inp_flags & INP_RECVOPTS) {
*mp = udp_saveopt((caddr_t) opts_deleted_above,
sizeof(struct in_addr), IP_RECVOPTS);
if (*mp)
mp = &(*mp)->m_next;
}
/* ip_srcroute doesn't do what we want here, need to fix */
if (inp->inp_flags & INP_RECVRETOPTS) {
*mp = udp_saveopt((caddr_t) ip_srcroute(),
sizeof(struct in_addr), IP_RECVRETOPTS);
if (*mp)
mp = &(*mp)->m_next;
}
#endif
}
iphlen += sizeof(struct udphdr);
m->m_len -= iphlen;
m->m_pkthdr.len -= iphlen;
m->m_data += iphlen;
if (sbappendaddr(&inp->inp_socket->so_rcv, sintosa(&udpsrc), m,
1995-06-04 09:06:49 +04:00
opts) == 0) {
1993-03-21 12:45:37 +03:00
udpstat.udps_fullsock++;
goto bad;
}
sorwakeup(inp->inp_socket);
return;
bad:
m_freem(m);
if (opts)
m_freem(opts);
}
/*
* Create a "control" mbuf containing the specified data
* with the specified type for presentation with a datagram.
*/
struct mbuf *
1993-03-21 12:45:37 +03:00
udp_saveopt(p, size, type)
caddr_t p;
register int size;
int type;
{
register struct cmsghdr *cp;
struct mbuf *m;
if ((m = m_get(M_DONTWAIT, MT_CONTROL)) == NULL)
return ((struct mbuf *) NULL);
cp = (struct cmsghdr *) mtod(m, struct cmsghdr *);
bcopy(p, CMSG_DATA(cp), size);
1993-03-21 12:45:37 +03:00
size += sizeof(*cp);
m->m_len = size;
cp->cmsg_len = size;
cp->cmsg_level = IPPROTO_IP;
cp->cmsg_type = type;
return (m);
}
/*
* Notify a udp user of an asynchronous error;
* just wake up so that he can collect error status.
*/
1994-01-09 02:17:18 +03:00
static void
1993-03-21 12:45:37 +03:00
udp_notify(inp, errno)
register struct inpcb *inp;
1994-01-09 02:17:18 +03:00
int errno;
1993-03-21 12:45:37 +03:00
{
1993-03-21 12:45:37 +03:00
inp->inp_socket->so_error = errno;
sorwakeup(inp->inp_socket);
sowwakeup(inp->inp_socket);
}
1996-02-14 02:40:59 +03:00
void *
udp_ctlinput(cmd, sa, v)
1993-03-21 12:45:37 +03:00
int cmd;
struct sockaddr *sa;
1996-02-14 02:40:59 +03:00
void *v;
1993-03-21 12:45:37 +03:00
{
1996-02-14 02:40:59 +03:00
register struct ip *ip = v;
1993-03-21 12:45:37 +03:00
register struct udphdr *uh;
1995-06-12 10:48:54 +04:00
extern int inetctlerrmap[];
void (*notify) __P((struct inpcb *, int)) = udp_notify;
1995-06-12 10:48:54 +04:00
int errno;
1993-03-21 12:45:37 +03:00
if ((unsigned)cmd >= PRC_NCMDS)
1996-02-14 02:40:59 +03:00
return NULL;
errno = inetctlerrmap[cmd];
if (PRC_IS_REDIRECT(cmd))
1995-06-12 10:24:21 +04:00
notify = in_rtchange, ip = 0;
else if (cmd == PRC_HOSTDEAD)
1995-06-12 10:24:21 +04:00
ip = 0;
1995-06-26 12:46:16 +04:00
else if (errno == 0)
1996-02-14 02:40:59 +03:00
return NULL;
1995-06-12 10:24:21 +04:00
if (ip) {
1993-03-21 12:45:37 +03:00
uh = (struct udphdr *)((caddr_t)ip + (ip->ip_hl << 2));
in_pcbnotify(&udbtable, satosin(sa)->sin_addr, uh->uh_dport,
ip->ip_src, uh->uh_sport, errno, notify);
1995-06-12 10:24:21 +04:00
} else
in_pcbnotifyall(&udbtable, satosin(sa)->sin_addr, errno,
notify);
1996-02-14 02:40:59 +03:00
return NULL;
1993-03-21 12:45:37 +03:00
}
1994-01-09 02:17:18 +03:00
int
1996-02-14 02:40:59 +03:00
#if __STDC__
udp_output(struct mbuf *m, ...)
#else
udp_output(m, va_alist)
struct mbuf *m;
va_dcl
#endif
{
1993-03-21 12:45:37 +03:00
register struct inpcb *inp;
register struct udpiphdr *ui;
register int len = m->m_pkthdr.len;
int error = 0;
1996-02-14 02:40:59 +03:00
va_list ap;
va_start(ap, m);
inp = va_arg(ap, struct inpcb *);
1996-02-14 02:40:59 +03:00
va_end(ap);
1993-03-21 12:45:37 +03:00
/*
* Calculate data length and get a mbuf
* for UDP and IP headers.
*/
M_PREPEND(m, sizeof(struct udpiphdr), M_DONTWAIT);
if (m == 0) {
error = ENOBUFS;
goto release;
}
1993-03-21 12:45:37 +03:00
/*
* Fill in mbuf with extended UDP header
* and addresses and length put into network format.
*/
ui = mtod(m, struct udpiphdr *);
bzero(ui->ui_x1, sizeof ui->ui_x1);
1993-03-21 12:45:37 +03:00
ui->ui_pr = IPPROTO_UDP;
ui->ui_len = htons((u_int16_t)len + sizeof (struct udphdr));
1993-03-21 12:45:37 +03:00
ui->ui_src = inp->inp_laddr;
ui->ui_dst = inp->inp_faddr;
ui->ui_sport = inp->inp_lport;
ui->ui_dport = inp->inp_fport;
ui->ui_ulen = ui->ui_len;
/*
* Stuff checksum and output datagram.
*/
ui->ui_sum = 0;
if (udpcksum) {
if ((ui->ui_sum = in_cksum(m, sizeof (struct udpiphdr) + len)) == 0)
ui->ui_sum = 0xffff;
}
((struct ip *)ui)->ip_len = sizeof (struct udpiphdr) + len;
((struct ip *)ui)->ip_ttl = inp->inp_ip.ip_ttl; /* XXX */
((struct ip *)ui)->ip_tos = inp->inp_ip.ip_tos; /* XXX */
udpstat.udps_opackets++;
return (ip_output(m, inp->inp_options, &inp->inp_route,
1994-02-10 21:46:04 +03:00
inp->inp_socket->so_options & (SO_DONTROUTE | SO_BROADCAST),
inp->inp_moptions));
1993-03-21 12:45:37 +03:00
release:
m_freem(m);
return (error);
}
u_long udp_sendspace = 9216; /* really max datagram size */
u_long udp_recvspace = 40 * (1024 + sizeof(struct sockaddr_in));
/* 40 1K datagrams */
/*ARGSUSED*/
1994-01-09 02:17:18 +03:00
int
udp_usrreq(so, req, m, nam, control, p)
1993-03-21 12:45:37 +03:00
struct socket *so;
int req;
struct mbuf *m, *nam, *control;
struct proc *p;
1993-03-21 12:45:37 +03:00
{
register struct inpcb *inp;
1993-03-21 12:45:37 +03:00
int s;
register int error = 0;
1993-03-21 12:45:37 +03:00
if (req == PRU_CONTROL)
return (in_control(so, (long)m, (caddr_t)nam,
(struct ifnet *)control, p));
s = splsoftnet();
inp = sotoinpcb(so);
#ifdef DIAGNOSTIC
if (req != PRU_SEND && req != PRU_SENDOOB && control)
panic("udp_usrreq: unexpected control mbuf");
#endif
if (inp == 0 && req != PRU_ATTACH) {
1993-03-21 12:45:37 +03:00
error = EINVAL;
goto release;
}
1993-03-21 12:45:37 +03:00
/*
* Note: need to block udp_input while changing
* the udp pcb queue and/or pcb addresses.
*/
switch (req) {
case PRU_ATTACH:
if (inp != 0) {
error = EISCONN;
1993-03-21 12:45:37 +03:00
break;
}
if (so->so_snd.sb_hiwat == 0 || so->so_rcv.sb_hiwat == 0) {
error = soreserve(so, udp_sendspace, udp_recvspace);
if (error)
break;
}
error = in_pcballoc(so, &udbtable);
1993-03-21 12:45:37 +03:00
if (error)
break;
inp = sotoinpcb(so);
inp->inp_ip.ip_ttl = ip_defttl;
1993-03-21 12:45:37 +03:00
break;
case PRU_DETACH:
in_pcbdetach(inp);
1993-03-21 12:45:37 +03:00
break;
case PRU_BIND:
error = in_pcbbind(inp, nam, p);
1993-03-21 12:45:37 +03:00
break;
case PRU_LISTEN:
error = EOPNOTSUPP;
break;
case PRU_CONNECT:
error = in_pcbconnect(inp, nam);
if (error)
1993-03-21 12:45:37 +03:00
break;
soisconnected(so);
1993-03-21 12:45:37 +03:00
break;
case PRU_CONNECT2:
error = EOPNOTSUPP;
break;
case PRU_DISCONNECT:
/*soisdisconnected(so);*/
so->so_state &= ~SS_ISCONNECTED; /* XXX */
1993-03-21 12:45:37 +03:00
in_pcbdisconnect(inp);
inp->inp_laddr = zeroin_addr; /* XXX */
1996-09-15 22:11:06 +04:00
in_pcbstate(inp, INP_BOUND); /* XXX */
1993-03-21 12:45:37 +03:00
break;
case PRU_SHUTDOWN:
socantsendmore(so);
break;
case PRU_RCVD:
error = EOPNOTSUPP;
1993-03-21 12:45:37 +03:00
break;
case PRU_SEND:
if (control && control->m_len) {
m_freem(control);
m_freem(m);
error = EINVAL;
break;
}
{
1996-09-15 22:11:06 +04:00
struct in_addr laddr; /* XXX */
1993-03-21 12:45:37 +03:00
if (nam) {
1996-09-15 22:11:06 +04:00
laddr = inp->inp_laddr; /* XXX */
if ((so->so_state & SS_ISCONNECTED) != 0) {
error = EISCONN;
goto die;
}
error = in_pcbconnect(inp, nam);
if (error) {
die:
m_freem(m);
break;
}
} else {
if ((so->so_state & SS_ISCONNECTED) == 0) {
error = ENOTCONN;
goto die;
}
}
error = udp_output(m, inp);
if (nam) {
in_pcbdisconnect(inp);
1996-09-15 22:11:06 +04:00
inp->inp_laddr = laddr; /* XXX */
in_pcbstate(inp, INP_BOUND); /* XXX */
}
}
1993-03-21 12:45:37 +03:00
break;
case PRU_SENSE:
/*
* stat: don't bother with a blocksize.
*/
splx(s);
1993-03-21 12:45:37 +03:00
return (0);
case PRU_RCVOOB:
error = EOPNOTSUPP;
break;
1993-03-21 12:45:37 +03:00
case PRU_SENDOOB:
m_freem(control);
m_freem(m);
1993-03-21 12:45:37 +03:00
error = EOPNOTSUPP;
break;
case PRU_SOCKADDR:
in_setsockaddr(inp, nam);
break;
case PRU_PEERADDR:
in_setpeeraddr(inp, nam);
break;
1993-03-21 12:45:37 +03:00
default:
panic("udp_usrreq");
}
release:
splx(s);
return (error);
1993-03-21 12:45:37 +03:00
}
/*
* Sysctl for udp variables.
*/
1996-02-14 02:40:59 +03:00
int
udp_sysctl(name, namelen, oldp, oldlenp, newp, newlen)
int *name;
u_int namelen;
void *oldp;
size_t *oldlenp;
void *newp;
size_t newlen;
{
/* All sysctl names at this level are terminal. */
if (namelen != 1)
return (ENOTDIR);
switch (name[0]) {
case UDPCTL_CHECKSUM:
return (sysctl_int(oldp, oldlenp, newp, newlen, &udpcksum));
default:
return (ENOPROTOOPT);
}
/* NOTREACHED */
}