1998-01-05 13:31:44 +03:00
|
|
|
/* $NetBSD: udp_usrreq.c,v 1.44 1998/01/05 10:32:16 thorpej Exp $ */
|
1994-06-29 10:29:24 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1998-01-05 13:31:44 +03:00
|
|
|
* Copyright (c) 1982, 1986, 1988, 1990, 1993, 1995
|
1994-05-13 10:02:48 +04:00
|
|
|
* 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.
|
|
|
|
*
|
1998-01-05 13:31:44 +03:00
|
|
|
* @(#)udp_usrreq.c 8.6 (Berkeley) 5/23/95
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1996-10-16 23:32:08 +04:00
|
|
|
#include "ipkdb.h"
|
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>
|
1994-05-13 10:02:48 +04:00
|
|
|
#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>
|
1995-04-13 10:35:38 +04:00
|
|
|
#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
|
|
|
|
|
1994-05-13 10:02:48 +04:00
|
|
|
static void udp_notify __P((struct inpcb *, int));
|
1994-01-09 02:17:18 +03:00
|
|
|
|
1996-01-31 06:49:23 +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()
|
|
|
|
{
|
1995-06-12 04:46:47 +04:00
|
|
|
|
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;
|
1996-09-09 18:51:07 +04:00
|
|
|
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.
|
|
|
|
*/
|
1995-04-13 10:35:38 +04:00
|
|
|
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.
|
|
|
|
*/
|
1996-05-20 20:56:20 +04:00
|
|
|
if (uh->uh_sum) {
|
1995-11-21 04:07:34 +03:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
1994-05-13 10:02:48 +04:00
|
|
|
|
1995-06-02 01:35:34 +04:00
|
|
|
if (IN_MULTICAST(ip->ip_dst.s_addr) ||
|
1994-05-13 10:02:48 +04:00
|
|
|
in_broadcast(ip->ip_dst, m->m_pkthdr.rcvif)) {
|
1997-01-11 08:21:07 +03:00
|
|
|
struct inpcb *last;
|
1993-12-06 07:50:19 +03:00
|
|
|
/*
|
|
|
|
* 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
|
1994-05-13 10:02:48 +04:00
|
|
|
* fixing the interface. Maybe 4.5BSD will remedy this?)
|
1993-12-06 07:50:19 +03:00
|
|
|
*/
|
1994-05-13 10:02:48 +04:00
|
|
|
|
1993-12-06 07:50:19 +03:00
|
|
|
/*
|
|
|
|
* Construct sockaddr format source address.
|
|
|
|
*/
|
1996-09-09 18:51:07 +04:00
|
|
|
udpsrc.sin_family = AF_INET;
|
|
|
|
udpsrc.sin_len = sizeof(struct sockaddr_in);
|
|
|
|
udpsrc.sin_addr = ip->ip_src;
|
1996-09-16 21:45:17 +04:00
|
|
|
udpsrc.sin_port = uh->uh_sport;
|
|
|
|
bzero((caddr_t)udpsrc.sin_zero, sizeof(udpsrc.sin_zero));
|
1996-09-09 18:51:07 +04:00
|
|
|
|
1997-09-12 14:58:31 +04:00
|
|
|
iphlen += sizeof(struct udphdr);
|
|
|
|
m->m_len -= iphlen;
|
|
|
|
m->m_pkthdr.len -= iphlen;
|
|
|
|
m->m_data += iphlen;
|
1993-12-06 07:50:19 +03:00
|
|
|
/*
|
|
|
|
* Locate pcb(s) for datagram.
|
|
|
|
* (Algorithm copied from raw_intr().)
|
|
|
|
*/
|
|
|
|
last = NULL;
|
1995-06-19 00:01:08 +04:00
|
|
|
for (inp = udbtable.inpt_queue.cqh_first;
|
|
|
|
inp != (struct inpcb *)&udbtable.inpt_queue;
|
|
|
|
inp = inp->inp_queue.cqe_next) {
|
1993-12-06 07:50:19 +03:00
|
|
|
if (inp->inp_lport != uh->uh_dport)
|
|
|
|
continue;
|
1996-09-09 18:51:07 +04:00
|
|
|
if (!in_nullhost(inp->inp_laddr)) {
|
|
|
|
if (!in_hosteq(inp->inp_laddr, ip->ip_dst))
|
1993-12-06 07:50:19 +03:00
|
|
|
continue;
|
|
|
|
}
|
1996-09-09 18:51:07 +04:00
|
|
|
if (!in_nullhost(inp->inp_faddr)) {
|
|
|
|
if (!in_hosteq(inp->inp_faddr, ip->ip_src) ||
|
1993-12-06 07:50:19 +03:00
|
|
|
inp->inp_fport != uh->uh_sport)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (last != NULL) {
|
|
|
|
struct mbuf *n;
|
|
|
|
|
|
|
|
if ((n = m_copy(m, 0, M_COPYALL)) != NULL) {
|
1997-01-11 08:21:07 +03:00
|
|
|
if (last->inp_flags & INP_CONTROLOPTS
|
|
|
|
|| last->inp_socket->so_options &
|
|
|
|
SO_TIMESTAMP) {
|
|
|
|
ip_savecontrol(last, &opts,
|
|
|
|
ip, n);
|
|
|
|
}
|
|
|
|
if (sbappendaddr(
|
|
|
|
&last->inp_socket->so_rcv,
|
|
|
|
sintosa(&udpsrc), n, opts) == 0) {
|
1993-12-06 07:50:19 +03:00
|
|
|
m_freem(n);
|
1997-01-11 08:21:07 +03:00
|
|
|
if (opts)
|
|
|
|
m_freem(opts);
|
1994-05-13 10:02:48 +04:00
|
|
|
} else
|
1997-01-11 08:21:07 +03:00
|
|
|
sorwakeup(last->inp_socket);
|
|
|
|
opts = 0;
|
1993-12-06 07:50:19 +03:00
|
|
|
}
|
|
|
|
}
|
1997-01-11 08:21:07 +03:00
|
|
|
last = inp;
|
1993-12-06 07:50:19 +03:00
|
|
|
/*
|
1994-05-13 10:02:48 +04:00
|
|
|
* 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.
|
1993-12-06 07:50:19 +03:00
|
|
|
*/
|
1997-01-11 08:21:07 +03:00
|
|
|
if ((last->inp_socket->so_options &
|
|
|
|
(SO_REUSEPORT|SO_REUSEADDR)) == 0)
|
1993-12-06 07:50:19 +03:00
|
|
|
break;
|
|
|
|
}
|
1994-01-09 00:21:28 +03:00
|
|
|
|
1993-12-06 07:50:19 +03:00
|
|
|
if (last == NULL) {
|
|
|
|
/*
|
|
|
|
* No matching pcb found; discard datagram.
|
|
|
|
* (No need to send an ICMP Port Unreachable
|
|
|
|
* for a broadcast or multicast datgram.)
|
|
|
|
*/
|
1994-05-13 10:02:48 +04:00
|
|
|
udpstat.udps_noportbcast++;
|
1993-12-06 07:50:19 +03:00
|
|
|
goto bad;
|
|
|
|
}
|
1997-01-11 08:21:07 +03:00
|
|
|
if (last->inp_flags & INP_CONTROLOPTS ||
|
|
|
|
last->inp_socket->so_options & SO_TIMESTAMP)
|
|
|
|
ip_savecontrol(last, &opts, ip, m);
|
|
|
|
if (sbappendaddr(&last->inp_socket->so_rcv,
|
|
|
|
sintosa(&udpsrc), m, opts) == 0) {
|
1994-05-13 10:02:48 +04:00
|
|
|
udpstat.udps_fullsock++;
|
1993-12-06 07:50:19 +03:00
|
|
|
goto bad;
|
1994-05-13 10:02:48 +04:00
|
|
|
}
|
1997-01-11 08:21:07 +03:00
|
|
|
sorwakeup(last->inp_socket);
|
1993-12-06 07:50:19 +03:00
|
|
|
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,
|
1996-01-31 06:49:23 +03:00
|
|
|
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);
|
1995-06-12 04:46:47 +04:00
|
|
|
if (inp == 0) {
|
|
|
|
udpstat.udps_noport++;
|
|
|
|
if (m->m_flags & (M_BCAST | M_MCAST)) {
|
|
|
|
udpstat.udps_noportbcast++;
|
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
*ip = save_ip;
|
1996-10-16 23:32:08 +04:00
|
|
|
#if NIPKDB > 0
|
|
|
|
if (checkipkdb(&ip->ip_src,
|
|
|
|
uh->uh_sport,
|
|
|
|
uh->uh_dport,
|
|
|
|
m,
|
|
|
|
iphlen + sizeof(struct udphdr),
|
|
|
|
len - sizeof(struct udphdr)))
|
1996-09-30 20:16:45 +04:00
|
|
|
/* It was a debugger connect packet, just drop it now */
|
|
|
|
goto bad;
|
|
|
|
#endif
|
1995-06-12 04:46:47 +04:00
|
|
|
icmp_error(m, ICMP_UNREACH, ICMP_UNREACH_PORT, 0, 0);
|
|
|
|
return;
|
1994-05-13 10:02:48 +04:00
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Construct sockaddr format source address.
|
|
|
|
* Stuff source address and datagram in user buffer.
|
|
|
|
*/
|
1996-09-09 18:51:07 +04:00
|
|
|
udpsrc.sin_family = AF_INET;
|
|
|
|
udpsrc.sin_len = sizeof(struct sockaddr_in);
|
|
|
|
udpsrc.sin_addr = ip->ip_src;
|
1996-09-16 21:45:17 +04:00
|
|
|
udpsrc.sin_port = uh->uh_sport;
|
|
|
|
bzero((caddr_t)udpsrc.sin_zero, sizeof(udpsrc.sin_zero));
|
1996-09-09 18:51:07 +04:00
|
|
|
|
1997-01-11 08:21:07 +03:00
|
|
|
if (inp->inp_flags & INP_CONTROLOPTS ||
|
|
|
|
inp->inp_socket->so_options & SO_TIMESTAMP)
|
|
|
|
ip_savecontrol(inp, &opts, ip, m);
|
1993-03-21 12:45:37 +03:00
|
|
|
iphlen += sizeof(struct udphdr);
|
|
|
|
m->m_len -= iphlen;
|
|
|
|
m->m_pkthdr.len -= iphlen;
|
|
|
|
m->m_data += iphlen;
|
1996-09-09 18:51:07 +04:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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
|
|
|
{
|
1996-09-09 18:51:07 +04: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[];
|
1995-06-12 04:46:47 +04:00
|
|
|
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
|
|
|
|
1995-06-12 10:46:34 +04:00
|
|
|
if ((unsigned)cmd >= PRC_NCMDS)
|
1996-02-14 02:40:59 +03:00
|
|
|
return NULL;
|
1995-06-12 10:46:34 +04:00
|
|
|
errno = inetctlerrmap[cmd];
|
1995-06-12 04:46:47 +04:00
|
|
|
if (PRC_IS_REDIRECT(cmd))
|
1995-06-12 10:24:21 +04:00
|
|
|
notify = in_rtchange, ip = 0;
|
1995-06-12 04:46:47 +04:00
|
|
|
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));
|
1996-09-09 18:51:07 +04:00
|
|
|
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
|
1996-09-09 18:51:07 +04:00
|
|
|
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;
|
1996-05-23 20:22:32 +04:00
|
|
|
int error = 0;
|
1996-02-14 02:40:59 +03:00
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, m);
|
1996-05-23 20:22:32 +04:00
|
|
|
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.
|
|
|
|
*/
|
1994-05-13 10:02:48 +04:00
|
|
|
M_PREPEND(m, sizeof(struct udpiphdr), M_DONTWAIT);
|
|
|
|
if (m == 0) {
|
|
|
|
error = ENOBUFS;
|
|
|
|
goto release;
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1996-10-25 10:35:16 +04:00
|
|
|
/*
|
|
|
|
* Compute the packet length of the IP header, and
|
|
|
|
* punt if the length looks bogus.
|
|
|
|
*/
|
|
|
|
if ((len + sizeof(struct udpiphdr)) > IP_MAXPACKET) {
|
|
|
|
error = EMSGSIZE;
|
|
|
|
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 *);
|
1995-11-21 04:07:34 +03:00
|
|
|
bzero(ui->ui_x1, sizeof ui->ui_x1);
|
1993-03-21 12:45:37 +03:00
|
|
|
ui->ui_pr = IPPROTO_UDP;
|
1995-04-13 10:35:38 +04:00
|
|
|
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++;
|
1996-05-23 20:22:32 +04:00
|
|
|
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),
|
1996-05-23 20:22:32 +04:00
|
|
|
inp->inp_moptions));
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
release:
|
|
|
|
m_freem(m);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
1997-07-29 02:19:53 +04:00
|
|
|
int udp_sendspace = 9216; /* really max datagram size */
|
|
|
|
int udp_recvspace = 40 * (1024 + sizeof(struct sockaddr_in));
|
1993-03-21 12:45:37 +03:00
|
|
|
/* 40 1K datagrams */
|
|
|
|
|
|
|
|
/*ARGSUSED*/
|
1994-01-09 02:17:18 +03:00
|
|
|
int
|
1996-05-23 20:22:32 +04:00
|
|
|
udp_usrreq(so, req, m, nam, control, p)
|
1993-03-21 12:45:37 +03:00
|
|
|
struct socket *so;
|
|
|
|
int req;
|
1996-05-23 20:22:32 +04:00
|
|
|
struct mbuf *m, *nam, *control;
|
1996-05-22 17:54:55 +04:00
|
|
|
struct proc *p;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1996-05-23 20:22:32 +04:00
|
|
|
register struct inpcb *inp;
|
1993-03-21 12:45:37 +03:00
|
|
|
int s;
|
1996-05-23 20:22:32 +04:00
|
|
|
register int error = 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
if (req == PRU_CONTROL)
|
1996-05-23 20:22:32 +04:00
|
|
|
return (in_control(so, (long)m, (caddr_t)nam,
|
1996-05-22 17:54:55 +04:00
|
|
|
(struct ifnet *)control, p));
|
1996-05-23 20:22:32 +04:00
|
|
|
|
|
|
|
s = splsoftnet();
|
|
|
|
inp = sotoinpcb(so);
|
1996-05-23 21:03:27 +04:00
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (req != PRU_SEND && req != PRU_SENDOOB && control)
|
|
|
|
panic("udp_usrreq: unexpected control mbuf");
|
|
|
|
#endif
|
1996-05-23 20:22:32 +04:00
|
|
|
if (inp == 0 && req != PRU_ATTACH) {
|
1993-03-21 12:45:37 +03:00
|
|
|
error = EINVAL;
|
|
|
|
goto release;
|
|
|
|
}
|
1996-05-23 20:22:32 +04:00
|
|
|
|
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:
|
1996-05-23 20:22:32 +04:00
|
|
|
if (inp != 0) {
|
|
|
|
error = EISCONN;
|
1993-03-21 12:45:37 +03:00
|
|
|
break;
|
|
|
|
}
|
1996-05-23 20:22:32 +04:00
|
|
|
if (so->so_snd.sb_hiwat == 0 || so->so_rcv.sb_hiwat == 0) {
|
|
|
|
error = soreserve(so, udp_sendspace, udp_recvspace);
|
|
|
|
if (error)
|
|
|
|
break;
|
|
|
|
}
|
1995-06-12 04:46:47 +04:00
|
|
|
error = in_pcballoc(so, &udbtable);
|
1993-03-21 12:45:37 +03:00
|
|
|
if (error)
|
|
|
|
break;
|
1996-05-23 20:22:32 +04:00
|
|
|
inp = sotoinpcb(so);
|
|
|
|
inp->inp_ip.ip_ttl = ip_defttl;
|
1993-03-21 12:45:37 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PRU_DETACH:
|
1996-05-23 20:22:32 +04:00
|
|
|
in_pcbdetach(inp);
|
1993-03-21 12:45:37 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PRU_BIND:
|
1996-05-23 20:22:32 +04:00
|
|
|
error = in_pcbbind(inp, nam, p);
|
1993-03-21 12:45:37 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PRU_LISTEN:
|
|
|
|
error = EOPNOTSUPP;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PRU_CONNECT:
|
1996-05-23 20:22:32 +04:00
|
|
|
error = in_pcbconnect(inp, nam);
|
|
|
|
if (error)
|
1993-03-21 12:45:37 +03:00
|
|
|
break;
|
1996-05-23 20:22:32 +04:00
|
|
|
soisconnected(so);
|
1993-03-21 12:45:37 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PRU_CONNECT2:
|
|
|
|
error = EOPNOTSUPP;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PRU_DISCONNECT:
|
1996-05-23 20:22:32 +04:00
|
|
|
/*soisdisconnected(so);*/
|
|
|
|
so->so_state &= ~SS_ISCONNECTED; /* XXX */
|
1993-03-21 12:45:37 +03:00
|
|
|
in_pcbdisconnect(inp);
|
1996-09-09 18:51:07 +04:00
|
|
|
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;
|
|
|
|
|
1996-05-23 20:22:32 +04:00
|
|
|
case PRU_RCVD:
|
|
|
|
error = EOPNOTSUPP;
|
1993-03-21 12:45:37 +03:00
|
|
|
break;
|
|
|
|
|
1996-05-23 20:22:32 +04:00
|
|
|
case PRU_SEND:
|
1996-05-23 21:03:27 +04:00
|
|
|
if (control && control->m_len) {
|
|
|
|
m_freem(control);
|
|
|
|
m_freem(m);
|
|
|
|
error = EINVAL;
|
|
|
|
break;
|
|
|
|
}
|
1996-05-23 20:22:32 +04:00
|
|
|
{
|
1996-09-15 22:11:06 +04:00
|
|
|
struct in_addr laddr; /* XXX */
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1996-05-23 20:22:32 +04:00
|
|
|
if (nam) {
|
1996-09-15 22:11:06 +04:00
|
|
|
laddr = inp->inp_laddr; /* XXX */
|
1996-05-23 20:22:32 +04:00
|
|
|
if ((so->so_state & SS_ISCONNECTED) != 0) {
|
|
|
|
error = EISCONN;
|
1996-05-23 21:03:27 +04:00
|
|
|
goto die;
|
1996-05-23 20:22:32 +04:00
|
|
|
}
|
|
|
|
error = in_pcbconnect(inp, nam);
|
1996-05-23 21:03:27 +04:00
|
|
|
if (error) {
|
|
|
|
die:
|
|
|
|
m_freem(m);
|
1996-05-23 20:22:32 +04:00
|
|
|
break;
|
1996-05-23 21:03:27 +04:00
|
|
|
}
|
1996-05-23 20:22:32 +04:00
|
|
|
} else {
|
|
|
|
if ((so->so_state & SS_ISCONNECTED) == 0) {
|
|
|
|
error = ENOTCONN;
|
1996-05-23 21:03:27 +04:00
|
|
|
goto die;
|
1996-05-23 20:22:32 +04:00
|
|
|
}
|
|
|
|
}
|
1996-05-23 21:05:45 +04:00
|
|
|
error = udp_output(m, inp);
|
1996-05-23 20:22:32 +04:00
|
|
|
if (nam) {
|
|
|
|
in_pcbdisconnect(inp);
|
1996-09-15 22:11:06 +04:00
|
|
|
inp->inp_laddr = laddr; /* XXX */
|
|
|
|
in_pcbstate(inp, INP_BOUND); /* XXX */
|
1996-05-23 20:22:32 +04:00
|
|
|
}
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PRU_SENSE:
|
|
|
|
/*
|
|
|
|
* stat: don't bother with a blocksize.
|
|
|
|
*/
|
1996-05-23 20:22:32 +04:00
|
|
|
splx(s);
|
1993-03-21 12:45:37 +03:00
|
|
|
return (0);
|
|
|
|
|
1996-05-23 20:22:32 +04:00
|
|
|
case PRU_RCVOOB:
|
|
|
|
error = EOPNOTSUPP;
|
|
|
|
break;
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
case PRU_SENDOOB:
|
1996-05-23 21:03:27 +04:00
|
|
|
m_freem(control);
|
1996-05-23 20:22:32 +04:00
|
|
|
m_freem(m);
|
1993-03-21 12:45:37 +03:00
|
|
|
error = EOPNOTSUPP;
|
|
|
|
break;
|
|
|
|
|
1996-05-23 20:22:32 +04:00
|
|
|
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);
|
1996-05-23 20:22:32 +04:00
|
|
|
return (error);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-05-13 10:02:48 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Sysctl for udp variables.
|
|
|
|
*/
|
1996-02-14 02:40:59 +03:00
|
|
|
int
|
1994-05-13 10:02:48 +04:00
|
|
|
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));
|
1997-07-29 02:19:53 +04:00
|
|
|
case UDPCTL_SENDSPACE:
|
|
|
|
return (sysctl_int(oldp, oldlenp, newp, newlen,
|
|
|
|
&udp_sendspace));
|
|
|
|
case UDPCTL_RECVSPACE:
|
|
|
|
return (sysctl_int(oldp, oldlenp, newp, newlen,
|
|
|
|
&udp_recvspace));
|
1994-05-13 10:02:48 +04:00
|
|
|
default:
|
|
|
|
return (ENOPROTOOPT);
|
|
|
|
}
|
|
|
|
/* NOTREACHED */
|
|
|
|
}
|