udp.c

Trochę ciekawostek – na weekend (czego to ludzie nie wymyślą ...


/*
* INET An implementation of the TCP/IP protocol suite for the LINUX
* operating system. INET is implemented using the BSD Socket
* interface as the means of communication with the user level.
*
* The User Datagram Protocol (UDP).
*
* Version: @(#)udp.c 1.0.13 06/02/93
*
* Authors: Ross Biro,
* Fred N. van Kempen,
* Arnt Gulbrandsen,
* Alan Cox,
*
* Fixes:
* Alan Cox : verify_area() calls
* Alan Cox : stopped close while in use off icmp
* messages. Not a fix but a botch that
* for udp at least is 'valid'.
* Alan Cox : Fixed icmp handling properly
* Alan Cox : Correct error for oversized datagrams
* Alan Cox : Tidied select() semantics.
* Alan Cox : udp_err() fixed properly, also now
* select and read wake correctly on errors
* Alan Cox : udp_send verify_area moved to avoid mem leak
* Alan Cox : UDP can count its memory
* Alan Cox : send to an unknown connection causes
* an ECONNREFUSED off the icmp, but
* does NOT close.
* Alan Cox : Switched to new sk_buff handlers. No more backlog!
* Alan Cox : Using generic datagram code. Even smaller and the PEEK
* bug no longer crashes it.
* Fred Van Kempen : Net2e support for sk->broadcast.
* Alan Cox : Uses skb_free_datagram
* Alan Cox : Added get/set sockopt support.
* Alan Cox : Broadcasting without option set returns EACCES.
* Alan Cox : No wakeup calls. Instead we now use the callbacks.
* Alan Cox : Use ip_tos and ip_ttl
* Alan Cox : SNMP Mibs
* Alan Cox : MSG_DONTROUTE, and 0.0.0.0 support.
* Matt Dillon : UDP length checks.
* Alan Cox : Smarter af_inet used properly.
* Alan Cox : Use new kernel side addressing.
* Alan Cox : Incorrect return on truncated datagram receive.
* Arnt Gulbrandsen : New udp_send and stuff
* Alan Cox : Cache last socket
* Alan Cox : Route cache
* Jon Peatfield : Minor efficiency fix to sendto().
* Mike Shaver : RFC1122 checks.
* Alan Cox : Nonblocking error fix.
* Willy Konynenberg : Transparent proxying support.
*
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version
* 2 of the License, or (at your option) any later version.
*/

/* RFC1122 Status:
4.1.3.1 (Ports):
SHOULD send ICMP_PORT_UNREACHABLE in response to datagrams to
an un-listened port. (OK)
4.1.3.2 (IP Options)
MUST pass IP options from IP -> application (OK)
MUST allow application to specify IP options (OK)
4.1.3.3 (ICMP Messages)
MUST pass ICMP error messages to application (OK)
4.1.3.4 (UDP Checksums)
MUST provide facility for checksumming (OK)
MAY allow application to control checksumming (OK)
MUST default to checksumming on (OK)
MUST discard silently datagrams with bad csums (OK)
4.1.3.5 (UDP Multihoming)
MUST allow application to specify source address (OK)
SHOULD be able to communicate the chosen src addr up to application
when application doesn't choose (NOT YET - doesn't seem to be in the BSD API)
[Does opening a SOCK_PACKET and snooping your output count 8)]
4.1.3.6 (Invalid Addresses)
MUST discard invalid source addresses (NOT YET -- will be implemented
in IP, so UDP will eventually be OK. Right now it's a violation.)
MUST only send datagrams with one of our addresses (NOT YET - ought to be OK )
950728 -- MS
*/

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include

/*
* Snmp MIB for the UDP layer
*/

struct udp_mib udp_statistics;

/*
* Cached last hit socket
*/

volatile unsigned long uh_cache_saddr,uh_cache_daddr;
volatile unsigned short uh_cache_dport, uh_cache_sport;
volatile struct sock *uh_cache_sk;

void udp_cache_zap(void)
{
unsigned long flags;
save_flags(flags);
cli();
uh_cache_saddr=0;
uh_cache_daddr=0;
uh_cache_dport=0;
uh_cache_sport=0;
uh_cache_sk=NULL;
restore_flags(flags);
}

#define min(a,b) ((a) 0
* it's just the icmp type source, daddr, uh->dest, saddr, 0, 0);

if (sk == NULL)
return; /* No socket for error */

if (type == ICMP_SOURCE_QUENCH)
{ /* Slow down! */
if (sk->cong_window > 1)
sk->cong_window = sk->cong_window/2;
return;
}

if (type == ICMP_PARAMETERPROB)
{
sk->err = EPROTO;
sk->error_report(sk);
return;
}

/*
* Various people wanted BSD UDP semantics. Well they've come
* back out because they slow down response to stuff like dead
* or unreachable name servers and they screw term users something
* chronic. Oh and it violates RFC1122. So basically fix your
* client code people.
*/

/* RFC1122: OK. Passes ICMP errors back to application, as per */
/* 4.1.3.3. */
/* After the comment above, that should be no surprise. */

if (code < 13 && icmp_err_convert[code].fatal)
{
/*
* 4.x BSD compatibility item. Break RFC1122 to
* get BSD socket semantics.
*/
if(sk->bsdism && sk->state!=TCP_ESTABLISHED)
return;
sk->err = icmp_err_convert[code].errno;
sk->error_report(sk);
}
}


static unsigned short udp_check(struct udphdr *uh, int len, unsigned long saddr, unsigned long daddr, unsigned long base)
{
return(csum_tcpudp_magic(saddr, daddr, len, IPPROTO_UDP, base));
}

struct udpfakehdr
{
struct udphdr uh;
__u32 daddr;
__u32 other;
const char *from;
__u32 wcheck;
};

/*
* Copy and checksum a UDP packet from user space into a buffer. We still have to do the planning to
* get ip_build_xmit to spot direct transfer to network card and provide an additional callback mode
* for direct user->board I/O transfers. That one will be fun.
*/

static void udp_getfrag(const void *p, __u32 saddr, char * to, unsigned int offset, unsigned int fraglen)
{
struct udpfakehdr *ufh = (struct udpfakehdr *)p;
const char *src;
char *dst;
unsigned int len;

if (offset)
{
len = fraglen;
src = ufh->from+(offset-sizeof(struct udphdr));
dst = to;
}
else
{
len = fraglen-sizeof(struct udphdr);
src = ufh->from;
dst = to+sizeof(struct udphdr);
}
ufh->wcheck = csum_partial_copy_fromuser(src, dst, len, ufh->wcheck);
if (offset == 0)
{
ufh->wcheck = csum_partial((char *)ufh, sizeof(struct udphdr),
ufh->wcheck);
ufh->uh.check = csum_tcpudp_magic(saddr, ufh->daddr,
ntohs(ufh->uh.len),
IPPROTO_UDP, ufh->wcheck);
if (ufh->uh.check == 0)
ufh->uh.check = -1;
memcpy(to, ufh, sizeof(struct udphdr));
}
}

/*
* Unchecksummed UDP is sufficiently critical to stuff like ATM video conferencing
* that we use two routines for this for speed. Probably we ought to have a CONFIG_FAST_NET
* set for >10Mb/second boards to activate this sort of coding. Timing needed to verify if
* this is a valid decision.
*/

static void udp_getfrag_nosum(const void *p, __u32 saddr, char * to, unsigned int offset, unsigned int fraglen)
{
struct udpfakehdr *ufh = (struct udpfakehdr *)p;
const char *src;
char *dst;
unsigned int len;

if (offset)
{
len = fraglen;
src = ufh->from+(offset-sizeof(struct udphdr));
dst = to;
}
else
{
len = fraglen-sizeof(struct udphdr);
src = ufh->from;
dst = to+sizeof(struct udphdr);
}
memcpy_fromfs(dst,src,len);
if (offset == 0)
memcpy(to, ufh, sizeof(struct udphdr));
}


/*
* Send UDP frames.
*/

static int udp_send(struct sock *sk, struct sockaddr_in *sin,
const unsigned char *from, int len, int rt,
__u32 saddr, int noblock)
{
int ulen = len + sizeof(struct udphdr);
int a;
struct udpfakehdr ufh;

if(ulen>65535-sizeof(struct iphdr))
return -EMSGSIZE;

ufh.uh.source = sk->dummy_th.source;
ufh.uh.dest = sin->sin_port;
ufh.uh.len = htons(ulen);
ufh.uh.check = 0;
ufh.daddr = sin->sin_addr.s_addr;
ufh.other = (htons(ulen) no_check)
a = ip_build_xmit(sk, udp_getfrag_nosum, &ufh, ulen,
sin->sin_addr.s_addr, saddr, sk->opt, rt, IPPROTO_UDP, noblock);
else
a = ip_build_xmit(sk, udp_getfrag, &ufh, ulen,
sin->sin_addr.s_addr, saddr, sk->opt, rt, IPPROTO_UDP, noblock);
if(asin_family && usin->sin_family != AF_INET)
return(-EINVAL);
if (usin->sin_port == 0)
return(-EINVAL);
}
else
{
#ifdef CONFIG_IP_TRANSPARENT_PROXY
/* We need to provide a sockaddr_in when using MSG_PROXY. */
if (flags&MSG_PROXY)
return(-EINVAL);
#endif
if (sk->state != TCP_ESTABLISHED)
return(-EINVAL);
sin.sin_family = AF_INET;
sin.sin_port = sk->dummy_th.dest;
sin.sin_addr.s_addr = sk->daddr;
usin = &sin;
}

/*
* BSD socket semantics. You must set SO_BROADCAST to permit
* broadcasting of data.
*/

/* RFC1122: OK. Allows the application to select the specific */
/* source address for an outgoing packet (MUST) as per 4.1.3.5. */
/* Optional addition: a mechanism for telling the application what */
/* address was used. (4.1.3.5, MAY) -- MS */

/* RFC1122: MUST ensure that all outgoing packets have one */
/* of this host's addresses as a source addr.(4.1.3.6) - bind in */
/* af_inet.c checks these. It does need work to allow BSD style */
/* bind to multicast as is done by xntpd */

if(usin->sin_addr.s_addr==INADDR_ANY)
usin->sin_addr.s_addr=ip_my_addr();

if(!sk->broadcast && ip_chk_addr(usin->sin_addr.s_addr)==IS_BROADCAST)
return -EACCES; /* Must turn broadcast on first */

lock_sock(sk);

/* Send the packet. */
tmp = udp_send(sk, usin, from, len, flags, saddr, noblock);

/* The datagram has been sent off. Release the socket. */
release_sock(sk);
return(tmp);
}

/*
* Temporary
*/

static int udp_sendmsg(struct sock *sk, struct msghdr *msg, int len, int noblock,
int flags)
{
if(msg->msg_iovlen==1)
return udp_sendto(sk,msg->msg_iov[0].iov_base,len, noblock, flags, msg->msg_name, msg->msg_namelen);
else
{
/*
* For awkward cases we linearise the buffer first. In theory this is only frames
* whose iovec's don't split on 4 byte boundaries, and soon encrypted stuff (to keep
* skip happy). We are a bit more general about it.
*/

unsigned char *buf;
int fs;
int err;
if(len>65515)
return -EMSGSIZE;
buf=kmalloc(len, GFP_KERNEL);
if(buf==NULL)
return -ENOBUFS;
memcpy_fromiovec(buf, msg->msg_iov, len);
fs=get_fs();
set_fs(get_ds());
err=udp_sendto(sk,buf,len, noblock, flags, msg->msg_name, msg->msg_namelen);
set_fs(fs);
kfree_s(buf,len);
return err;
}
}

/*
* IOCTL requests applicable to the UDP protocol
*/

int udp_ioctl(struct sock *sk, int cmd, unsigned long arg)
{
int err;
switch(cmd)
{
case TIOCOUTQ:
{
unsigned long amount;

if (sk->state == TCP_LISTEN) return(-EINVAL);
amount = sock_wspace(sk);
err=verify_area(VERIFY_WRITE,(void *)arg,
sizeof(unsigned long));
if(err)
return(err);
put_fs_long(amount,(unsigned long *)arg);
return(0);
}

case TIOCINQ:
{
struct sk_buff *skb;
unsigned long amount;

if (sk->state == TCP_LISTEN) return(-EINVAL);
amount = 0;
skb = skb_peek(&sk->receive_queue);
if (skb != NULL) {
/*
* We will only return the amount
* of this packet since that is all
* that will be read.
*/
amount = skb->len-sizeof(struct udphdr);
}
err=verify_area(VERIFY_WRITE,(void *)arg,
sizeof(unsigned long));
if(err)
return(err);
put_fs_long(amount,(unsigned long *)arg);
return(0);
}

default:
return(-EINVAL);
}
return(0);
}


/*
* This should be easy, if there is something there we\
* return it, otherwise we block.
*/

int udp_recvmsg(struct sock *sk, struct msghdr *msg, int len,
int noblock, int flags,int *addr_len)
{
int copied = 0;
int truesize;
struct sk_buff *skb;
int er;
struct sockaddr_in *sin=(struct sockaddr_in *)msg->msg_name;

/*
* Check any passed addresses
*/

if (addr_len)
*addr_len=sizeof(*sin);

/*
* From here the generic datagram does a lot of the work. Come
* the finished NET3, it will do _ALL_ the work!
*/

skb=skb_recv_datagram(sk,flags,noblock,&er);
if(skb==NULL)
return er;

truesize = skb->len - sizeof(struct udphdr);
copied = min(len, truesize);

/*
* FIXME : should use udp header size info value
*/

skb_copy_datagram_iovec(skb,sizeof(struct udphdr),msg->msg_iov,copied);
sk->stamp=skb->stamp;

/* Copy the address. */
if (sin)
{
sin->sin_family = AF_INET;
sin->sin_port = skb->h.uh->source;
sin->sin_addr.s_addr = skb->daddr;
#ifdef CONFIG_IP_TRANSPARENT_PROXY
if (flags&MSG_PROXY)
{
/*
* We map the first 8 bytes of a second sockaddr_in
* into the last 8 (unused) bytes of a sockaddr_in.
* This _is_ ugly, but it's the only way to do it
* easily, without adding system calls.
*/
struct sockaddr_in *sinto =
(struct sockaddr_in *) sin->sin_zero;

sinto->sin_family = AF_INET;
sinto->sin_port = skb->h.uh->dest;
sinto->sin_addr.s_addr = skb->saddr;
}
#endif
}

skb_free_datagram(sk, skb);
return(copied);
}

int udp_connect(struct sock *sk, struct sockaddr_in *usin, int addr_len)
{
struct rtable *rt;
if (addr_len < sizeof(*usin))
return(-EINVAL);

if (usin->sin_family && usin->sin_family != AF_INET)
return(-EAFNOSUPPORT);
if (usin->sin_addr.s_addr==INADDR_ANY)
usin->sin_addr.s_addr=ip_my_addr();

if(!sk->broadcast && ip_chk_addr(usin->sin_addr.s_addr)==IS_BROADCAST)
return -EACCES; /* Must turn broadcast on first */

rt=ip_rt_route((__u32)usin->sin_addr.s_addr, sk->localroute);
if (rt==NULL)
return -ENETUNREACH;
if(!sk->saddr)
sk->saddr = rt->rt_src; /* Update source address */
if(!sk->rcv_saddr)
sk->rcv_saddr = rt->rt_src;
sk->daddr = usin->sin_addr.s_addr;
sk->dummy_th.dest = usin->sin_port;
sk->state = TCP_ESTABLISHED;
udp_cache_zap();
sk->ip_route_cache = rt;
return(0);
}


static void udp_close(struct sock *sk, unsigned long timeout)
{
lock_sock(sk);
sk->state = TCP_CLOSE;
if(uh_cache_sk==sk)
udp_cache_zap();
release_sock(sk);
sk->dead = 1;
destroy_sock(sk);
}

static inline void udp_queue_rcv_skb(struct sock * sk, struct sk_buff *skb)
{
/*
* Charge it to the socket, dropping if the queue is full.
*/

/* I assume this includes the IP options, as per RFC1122 (4.1.3.2). */
/* If not, please let me know. -- MS */

if (__sock_queue_rcv_skb(sk,skb)sk = NULL;
kfree_skb(skb, FREE_WRITE);
return;
}
udp_statistics.UdpInDatagrams++;
}


static inline void udp_deliver(struct sock *sk, struct sk_buff *skb)
{
skb->sk = sk;

if (sk->users) {
__skb_queue_tail(&sk->back_log, skb);
return;
}
udp_queue_rcv_skb(sk, skb);
}

#ifdef CONFIG_IP_TRANSPARENT_PROXY
/*
* Check whether a received UDP packet might be for one of our
* sockets.
*/

int udp_chkaddr(struct sk_buff *skb)
{
struct iphdr *iph = skb->h.iph;
struct udphdr *uh = (struct udphdr *)(skb->h.raw + iph->ihl*4);
struct sock *sk;

sk = get_sock(&udp_prot, uh->dest, iph->saddr, uh->source, iph->daddr, 0, 0);

if (!sk) return 0;
/* 0 means accept all LOCAL addresses here, not all the world... */
if (sk->rcv_saddr == 0) return 0;
return 1;
}
#endif

/*
* All we need to do is get the socket, and then do a checksum.
*/

int udp_rcv(struct sk_buff *skb, struct device *dev, struct options *opt,
__u32 daddr, unsigned short len,
__u32 saddr, int redo, struct inet_protocol *protocol)
{
struct sock *sk;
struct udphdr *uh;
unsigned short ulen;
int addr_type;

/*
* If we're doing a "redo" (the socket was busy last time
* around), we can just queue the packet now..
*/
if (redo) {
udp_queue_rcv_skb(skb->sk, skb);
return 0;
}

/*
* First time through the loop.. Do all the setup stuff
* (including finding out the socket we go to etc)
*/

addr_type = IS_MYADDR;
if(!dev || dev->pa_addr!=daddr)
addr_type=ip_chk_addr(daddr);

/*
* Get the header.
*/

uh = (struct udphdr *) skb->h.uh;

ip_statistics.IpInDelivers++;

/*
* Validate the packet and the UDP length.
*/

ulen = ntohs(uh->len);

if (ulen > len || len < sizeof(*uh) || ulen < sizeof(*uh))
{
NETDEBUG(printk("UDP: short packet: %d/%d\n", ulen, len));
udp_statistics.UdpInErrors++;
kfree_skb(skb, FREE_WRITE);
return(0);
}

/* RFC1122 warning: According to 4.1.3.6, we MUST discard any */
/* datagram which has an invalid source address, either here or */
/* in IP. */
/* Right now, IP isn't doing it, and neither is UDP. It's on the */
/* FIXME list for IP, though, so I wouldn't worry about it. */
/* (That's the Right Place to do it, IMHO.) -- MS */

if (uh->check && (
( (skb->ip_summed == CHECKSUM_HW) && udp_check(uh, len, saddr, daddr, skb->csum ) ) ||
( (skb->ip_summed == CHECKSUM_NONE) && udp_check(uh, len, saddr, daddr,csum_partial((char*)uh, len, 0)))
/* skip if CHECKSUM_UNNECESSARY */
)
)
{
/* wants to know, who sent it, to
go and stomp on the garbage sender... */

/* RFC1122: OK. Discards the bad packet silently (as far as */
/* the network is concerned, anyway) as per 4.1.3.4 (MUST). */

NETDEBUG(printk("UDP: bad checksum. From %08lX:%d to %08lX:%d ulen %d\n",
ntohl(saddr),ntohs(uh->source),
ntohl(daddr),ntohs(uh->dest),
ulen));
udp_statistics.UdpInErrors++;
kfree_skb(skb, FREE_WRITE);
return(0);
}

/*
* These are supposed to be switched.
*/

skb->daddr = saddr;
skb->saddr = daddr;

len=ulen;

skb->dev = dev;
skb_trim(skb,len);

#ifdef CONFIG_IP_MULTICAST
if (addr_type==IS_BROADCAST || addr_type==IS_MULTICAST)
{
/*
* Multicasts and broadcasts go to each listener.
*/
struct sock *sknext=NULL;
sk=get_sock_mcast(udp_prot.sock_array[ntohs(uh->dest)&(SOCK_ARRAY_SIZE-1)], uh->dest,
saddr, uh->source, daddr);
if(sk)
{
do
{
struct sk_buff *skb1;

sknext=get_sock_mcast(sk->next, uh->dest, saddr, uh->source, daddr);
if(sknext)
skb1=skb_clone(skb,GFP_ATOMIC);
else
skb1=skb;
if(skb1)
udp_deliver(sk, skb1);
sk=sknext;
}
while(sknext!=NULL);
}
else
kfree_skb(skb, FREE_READ);
return 0;
}
#endif
if(saddr==uh_cache_saddr && daddr==uh_cache_daddr && uh->dest==uh_cache_dport && uh->source==uh_cache_sport)
sk=(struct sock *)uh_cache_sk;
else
{
sk = get_sock(&udp_prot, uh->dest, saddr, uh->source, daddr, dev->pa_addr, skb->redirport);
uh_cache_saddr=saddr;
uh_cache_daddr=daddr;
uh_cache_dport=uh->dest;
uh_cache_sport=uh->source;
uh_cache_sk=sk;
}

if (sk == NULL)
{
udp_statistics.UdpNoPorts++;
if (addr_type != IS_BROADCAST && addr_type != IS_MULTICAST)
{
icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0, dev);
}
/*
* Hmm. We got an UDP broadcast to a port to which we
* don't wanna listen. Ignore it.
*/
skb->sk = NULL;
kfree_skb(skb, FREE_WRITE);
return(0);
}
udp_deliver(sk, skb);
return 0;
}

struct proto udp_prot = {
udp_close,
ip_build_header,
udp_connect,
NULL,
ip_queue_xmit,
NULL,
NULL,
NULL,
udp_rcv,
datagram_select,
udp_ioctl,
NULL,
NULL,
ip_setsockopt,
ip_getsockopt,
udp_sendmsg,
udp_recvmsg,
NULL, /* No special bind function */
128,
0,
"UDP",
0, 0,
{NULL,}
};
  • zanotowane.pl
  • doc.pisz.pl
  • pdf.pisz.pl
  • strefamiszcza.htw.pl
  • Copyright (c) 2009 Trochę ciekawostek – na weekend (czego to ludzie nie wymyślą ... | Powered by Wordpress. Fresh News Theme by WooThemes - Premium Wordpress Themes.