[BACK]Return to udp_usrreq.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / netinet

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/netinet/udp_usrreq.c between version 1.103 and 1.120

version 1.103, 2003/06/29 22:32:01 version 1.120, 2004/05/01 02:20:43
Line 41 
Line 41 
  * 2. Redistributions in binary form must reproduce the above copyright   * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the   *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.   *    documentation and/or other materials provided with the distribution.
  * 3. All advertising materials mentioning features or use of this software   * 3. Neither the name of the University nor the names of its contributors
  *    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   *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.   *    without specific prior written permission.
  *   *
Line 119  __KERNEL_RCSID(0, "$NetBSD$");
Line 115  __KERNEL_RCSID(0, "$NetBSD$");
   
 #include <machine/stdarg.h>  #include <machine/stdarg.h>
   
   #ifdef FAST_IPSEC
   #include <netipsec/ipsec.h>
   #ifdef INET6
   #include <netipsec/ipsec6.h>
   #endif
   #endif  /* FAST_IPSEC*/
   
 #ifdef IPSEC  #ifdef IPSEC
 #include <netinet6/ipsec.h>  #include <netinet6/ipsec.h>
 #include <netkey/key.h>  #include <netkey/key.h>
Line 142  struct inpcbtable udbtable;
Line 145  struct inpcbtable udbtable;
 struct  udpstat udpstat;  struct  udpstat udpstat;
   
 #ifdef INET  #ifdef INET
 static void udp4_sendup __P((struct mbuf *, int, struct sockaddr *,  static void udp4_sendup (struct mbuf *, int, struct sockaddr *,
         struct socket *));          struct socket *);
 static int udp4_realinput __P((struct sockaddr_in *, struct sockaddr_in *,  static int udp4_realinput (struct sockaddr_in *, struct sockaddr_in *,
         struct mbuf *, int));          struct mbuf *, int);
 #endif  #endif
 #ifdef INET6  #ifdef INET6
 static void udp6_sendup __P((struct mbuf *, int, struct sockaddr *,  static void udp6_sendup (struct mbuf *, int, struct sockaddr *,
         struct socket *));          struct socket *);
 static int udp6_realinput __P((int, struct sockaddr_in6 *,  static int udp6_realinput (int, struct sockaddr_in6 *,
         struct sockaddr_in6 *, struct mbuf *, int));          struct sockaddr_in6 *, struct mbuf *, int);
 #endif  #endif
 #ifdef INET  #ifdef INET
 static  void udp_notify __P((struct inpcb *, int));  static  void udp_notify (struct inpcb *, int);
 #endif  #endif
   
 #ifndef UDBHASHSIZE  #ifndef UDBHASHSIZE
Line 182  struct evcnt udp_swcsum = EVCNT_INITIALI
Line 185  struct evcnt udp_swcsum = EVCNT_INITIALI
   
 #define UDP_CSUM_COUNTER_INCR(ev)       (ev)->ev_count++  #define UDP_CSUM_COUNTER_INCR(ev)       (ev)->ev_count++
   
   EVCNT_ATTACH_STATIC(udp_hwcsum_bad);
   EVCNT_ATTACH_STATIC(udp_hwcsum_ok);
   EVCNT_ATTACH_STATIC(udp_hwcsum_data);
   EVCNT_ATTACH_STATIC(udp_swcsum);
   
 #else  #else
   
 #define UDP_CSUM_COUNTER_INCR(ev)       /* nothing */  #define UDP_CSUM_COUNTER_INCR(ev)       /* nothing */
Line 189  struct evcnt udp_swcsum = EVCNT_INITIALI
Line 197  struct evcnt udp_swcsum = EVCNT_INITIALI
 #endif /* UDP_CSUM_COUNTERS */  #endif /* UDP_CSUM_COUNTERS */
   
 void  void
 udp_init()  udp_init(void)
 {  {
   
 #ifdef INET  
         in_pcbinit(&udbtable, udbhashsize, udbhashsize);          in_pcbinit(&udbtable, udbhashsize, udbhashsize);
 #endif  
   
 #ifdef UDP_CSUM_COUNTERS  
         evcnt_attach_static(&udp_hwcsum_bad);  
         evcnt_attach_static(&udp_hwcsum_ok);  
         evcnt_attach_static(&udp_hwcsum_data);  
         evcnt_attach_static(&udp_swcsum);  
 #endif /* UDP_CSUM_COUNTERS */  
   
         MOWNER_ATTACH(&udp_tx_mowner);          MOWNER_ATTACH(&udp_tx_mowner);
         MOWNER_ATTACH(&udp_rx_mowner);          MOWNER_ATTACH(&udp_rx_mowner);
Line 210  udp_init()
Line 209  udp_init()
   
 #ifdef INET  #ifdef INET
 void  void
 #if __STDC__  
 udp_input(struct mbuf *m, ...)  udp_input(struct mbuf *m, ...)
 #else  
 udp_input(m, va_alist)  
         struct mbuf *m;  
         va_dcl  
 #endif  
 {  {
         va_list ap;          va_list ap;
         struct sockaddr_in src, dst;          struct sockaddr_in src, dst;
Line 269  udp_input(m, va_alist)
Line 262  udp_input(m, va_alist)
          */           */
         if (uh->uh_sum) {          if (uh->uh_sum) {
                 switch (m->m_pkthdr.csum_flags &                  switch (m->m_pkthdr.csum_flags &
                         ((m->m_pkthdr.rcvif->if_csum_flags_rx & M_CSUM_UDPv4) |                      ((m->m_pkthdr.rcvif->if_csum_flags_rx & M_CSUM_UDPv4) |
                          M_CSUM_TCP_UDP_BAD | M_CSUM_DATA)) {                      M_CSUM_TCP_UDP_BAD | M_CSUM_DATA)) {
                 case M_CSUM_UDPv4|M_CSUM_TCP_UDP_BAD:                  case M_CSUM_UDPv4|M_CSUM_TCP_UDP_BAD:
                         UDP_CSUM_COUNTER_INCR(&udp_hwcsum_bad);                          UDP_CSUM_COUNTER_INCR(&udp_hwcsum_bad);
                         goto badcsum;                          goto badcsum;
   
                 case M_CSUM_UDPv4|M_CSUM_DATA:                  case M_CSUM_UDPv4|M_CSUM_DATA: {
                           u_int32_t hw_csum = m->m_pkthdr.csum_data;
                         UDP_CSUM_COUNTER_INCR(&udp_hwcsum_data);                          UDP_CSUM_COUNTER_INCR(&udp_hwcsum_data);
                         if ((m->m_pkthdr.csum_data ^ 0xffff) != 0)                          if (m->m_pkthdr.csum_flags & M_CSUM_NO_PSEUDOHDR)
                                   hw_csum = in_cksum_phdr(ip->ip_src.s_addr,
                                       ip->ip_dst.s_addr,
                                       htons(hw_csum + len + IPPROTO_UDP));
                           if ((hw_csum ^ 0xffff) != 0)
                                 goto badcsum;                                  goto badcsum;
                         break;                          break;
                   }
   
                 case M_CSUM_UDPv4:                  case M_CSUM_UDPv4:
                         /* Checksum was okay. */                          /* Checksum was okay. */
Line 365  badcsum:
Line 364  badcsum:
   
 #ifdef INET6  #ifdef INET6
 int  int
 udp6_input(mp, offp, proto)  udp6_input(struct mbuf **mp, int *offp, int proto)
         struct mbuf **mp;  
         int *offp, proto;  
 {  {
         struct mbuf *m = *mp;          struct mbuf *m = *mp;
         int off = *offp;          int off = *offp;
Line 423  udp6_input(mp, offp, proto)
Line 420  udp6_input(mp, offp, proto)
         /*          /*
          * Checksum extended UDP header and data.           * Checksum extended UDP header and data.
          */           */
         if (uh->uh_sum == 0)          if (uh->uh_sum == 0) {
                 udp6stat.udp6s_nosum++;                  udp6stat.udp6s_nosum++;
         else if (in6_cksum(m, IPPROTO_UDP, off, ulen) != 0) {                  goto bad;
           }
           if (in6_cksum(m, IPPROTO_UDP, off, ulen) != 0) {
                 udp6stat.udp6s_badsum++;                  udp6stat.udp6s_badsum++;
                 goto bad;                  goto bad;
         }          }
Line 466  bad:
Line 465  bad:
   
 #ifdef INET  #ifdef INET
 static void  static void
 udp4_sendup(m, off, src, so)  udp4_sendup(struct mbuf *m, int off /* offset of data portion */,
         struct mbuf *m;          struct sockaddr *src, struct socket *so)
         int off;        /* offset of data portion */  
         struct sockaddr *src;  
         struct socket *so;  
 {  {
         struct mbuf *opts = NULL;          struct mbuf *opts = NULL;
         struct mbuf *n;          struct mbuf *n;
Line 490  udp4_sendup(m, off, src, so)
Line 486  udp4_sendup(m, off, src, so)
                 return;                  return;
         }          }
   
 #ifdef IPSEC  #if defined(IPSEC) || defined(FAST_IPSEC)
         /* check AH/ESP integrity. */          /* check AH/ESP integrity. */
         if (so != NULL && ipsec4_in_reject_so(m, so)) {          if (so != NULL && ipsec4_in_reject_so(m, so)) {
                 ipsecstat.in_polvio++;                  ipsecstat.in_polvio++;
                   if ((n = m_copy(m, 0, M_COPYALL)) != NULL)
                           icmp_error(n, ICMP_UNREACH, ICMP_UNREACH_ADMIN_PROHIBIT,
                               0, 0);
                 return;                  return;
         }          }
 #endif /*IPSEC*/  #endif /*IPSEC*/
Line 520  udp4_sendup(m, off, src, so)
Line 519  udp4_sendup(m, off, src, so)
   
 #ifdef INET6  #ifdef INET6
 static void  static void
 udp6_sendup(m, off, src, so)  udp6_sendup(struct mbuf *m, int off /* offset of data portion */,
         struct mbuf *m;          struct sockaddr *src, struct socket *so)
         int off;        /* offset of data portion */  
         struct sockaddr *src;  
         struct socket *so;  
 {  {
         struct mbuf *opts = NULL;          struct mbuf *opts = NULL;
         struct mbuf *n;          struct mbuf *n;
Line 536  udp6_sendup(m, off, src, so)
Line 532  udp6_sendup(m, off, src, so)
                 return;                  return;
         in6p = sotoin6pcb(so);          in6p = sotoin6pcb(so);
   
 #ifdef IPSEC  #if defined(IPSEC) || defined(FAST_IPSEC)
         /* check AH/ESP integrity. */          /* check AH/ESP integrity. */
         if (so != NULL && ipsec6_in_reject_so(m, so)) {          if (so != NULL && ipsec6_in_reject_so(m, so)) {
                 ipsec6stat.in_polvio++;                  ipsec6stat.in_polvio++;
                   if ((n = m_copy(m, 0, M_COPYALL)) != NULL)
                           icmp6_error(n, ICMP6_DST_UNREACH,
                               ICMP6_DST_UNREACH_ADMIN, 0);
                 return;                  return;
         }          }
 #endif /*IPSEC*/  #endif /*IPSEC*/
Line 565  udp6_sendup(m, off, src, so)
Line 564  udp6_sendup(m, off, src, so)
   
 #ifdef INET  #ifdef INET
 static int  static int
 udp4_realinput(src, dst, m, off)  udp4_realinput(struct sockaddr_in *src, struct sockaddr_in *dst,
         struct sockaddr_in *src;          struct mbuf *m, int off /* offset of udphdr */)
         struct sockaddr_in *dst;  
         struct mbuf *m;  
         int off;        /* offset of udphdr */  
 {  {
         u_int16_t *sport, *dport;          u_int16_t *sport, *dport;
         int rcvcnt;          int rcvcnt;
         struct in_addr *src4, *dst4;          struct in_addr *src4, *dst4;
           struct inpcb_hdr *inph;
         struct inpcb *inp;          struct inpcb *inp;
   
         rcvcnt = 0;          rcvcnt = 0;
Line 612  udp4_realinput(src, dst, m, off)
Line 609  udp4_realinput(src, dst, m, off)
                 /*                  /*
                  * Locate pcb(s) for datagram.                   * Locate pcb(s) for datagram.
                  */                   */
                 CIRCLEQ_FOREACH(inp, &udbtable.inpt_queue, inp_queue) {                  CIRCLEQ_FOREACH(inph, &udbtable.inpt_queue, inph_queue) {
                           inp = (struct inpcb *)inph;
                           if (inp->inp_af != AF_INET)
                                   continue;
   
                         if (inp->inp_lport != *dport)                          if (inp->inp_lport != *dport)
                                 continue;                                  continue;
                         if (!in_nullhost(inp->inp_laddr)) {                          if (!in_nullhost(inp->inp_laddr)) {
Line 664  bad:
Line 665  bad:
   
 #ifdef INET6  #ifdef INET6
 static int  static int
 udp6_realinput(af, src, dst, m, off)  udp6_realinput(int af, struct sockaddr_in6 *src, struct sockaddr_in6 *dst,
         int af;         /* af on packet */          struct mbuf *m, int off)
         struct sockaddr_in6 *src;  
         struct sockaddr_in6 *dst;  
         struct mbuf *m;  
         int off;        /* offset of udphdr */  
 {  {
         u_int16_t sport, dport;          u_int16_t sport, dport;
         int rcvcnt;          int rcvcnt;
         struct in6_addr src6, dst6;          struct in6_addr src6, dst6;
         const struct in_addr *dst4;          const struct in_addr *dst4;
           struct inpcb_hdr *inph;
         struct in6pcb *in6p;          struct in6pcb *in6p;
   
         rcvcnt = 0;          rcvcnt = 0;
Line 716  udp6_realinput(af, src, dst, m, off)
Line 714  udp6_realinput(af, src, dst, m, off)
                 /*                  /*
                  * Locate pcb(s) for datagram.                   * Locate pcb(s) for datagram.
                  */                   */
                 for (in6p = udb6.in6p_next; in6p != &udb6;                  CIRCLEQ_FOREACH(inph, &udbtable.inpt_queue, inph_queue) {
                      in6p = in6p->in6p_next) {                          in6p = (struct in6pcb *)inph;
                           if (in6p->in6p_af != AF_INET6)
                                   continue;
   
                         if (in6p->in6p_lport != dport)                          if (in6p->in6p_lport != dport)
                                 continue;                                  continue;
                         if (!IN6_IS_ADDR_UNSPECIFIED(&in6p->in6p_laddr)) {                          if (!IN6_IS_ADDR_UNSPECIFIED(&in6p->in6p_laddr)) {
Line 758  udp6_realinput(af, src, dst, m, off)
Line 759  udp6_realinput(af, src, dst, m, off)
                 /*                  /*
                  * Locate pcb for datagram.                   * Locate pcb for datagram.
                  */                   */
                 in6p = in6_pcblookup_connect(&udb6, &src6, sport,                  in6p = in6_pcblookup_connect(&udbtable, &src6, sport,
                     &dst6, dport, 0);                      &dst6, dport, 0);
                 if (in6p == 0) {                  if (in6p == 0) {
                         ++udpstat.udps_pcbhashmiss;                          ++udpstat.udps_pcbhashmiss;
                         in6p = in6_pcblookup_bind(&udb6, &dst6, dport, 0);                          in6p = in6_pcblookup_bind(&udbtable, &dst6, dport, 0);
                         if (in6p == 0)                          if (in6p == 0)
                                 return rcvcnt;                                  return rcvcnt;
                 }                  }
Line 782  bad:
Line 783  bad:
  * just wake up so that he can collect error status.   * just wake up so that he can collect error status.
  */   */
 static void  static void
 udp_notify(inp, errno)  udp_notify(struct inpcb *inp, int errno)
         struct inpcb *inp;  
         int errno;  
 {  {
   
         inp->inp_socket->so_error = errno;          inp->inp_socket->so_error = errno;
         sorwakeup(inp->inp_socket);          sorwakeup(inp->inp_socket);
         sowwakeup(inp->inp_socket);          sowwakeup(inp->inp_socket);
 }  }
   
 void *  void *
 udp_ctlinput(cmd, sa, v)  udp_ctlinput(int cmd, struct sockaddr *sa, void *v)
         int cmd;  
         struct sockaddr *sa;  
         void *v;  
 {  {
         struct ip *ip = v;          struct ip *ip = v;
         struct udphdr *uh;          struct udphdr *uh;
         void (*notify) __P((struct inpcb *, int)) = udp_notify;          void (*notify)(struct inpcb *, int) = udp_notify;
         int errno;          int errno;
   
         if (sa->sa_family != AF_INET          if (sa->sa_family != AF_INET
Line 828  udp_ctlinput(cmd, sa, v)
Line 823  udp_ctlinput(cmd, sa, v)
 }  }
   
 int  int
 #if __STDC__  
 udp_output(struct mbuf *m, ...)  udp_output(struct mbuf *m, ...)
 #else  
 udp_output(m, va_alist)  
         struct mbuf *m;  
         va_dcl  
 #endif  
 {  {
         struct inpcb *inp;          struct inpcb *inp;
         struct udpiphdr *ui;          struct udpiphdr *ui;
Line 898  udp_output(m, va_alist)
Line 887  udp_output(m, va_alist)
         ((struct ip *)ui)->ip_tos = inp->inp_ip.ip_tos; /* XXX */          ((struct ip *)ui)->ip_tos = inp->inp_ip.ip_tos; /* XXX */
         udpstat.udps_opackets++;          udpstat.udps_opackets++;
   
 #ifdef IPSEC  
         if (ipsec_setsocket(m, inp->inp_socket) != 0) {  
                 error = ENOBUFS;  
                 goto release;  
         }  
 #endif /*IPSEC*/  
   
         return (ip_output(m, inp->inp_options, &inp->inp_route,          return (ip_output(m, inp->inp_options, &inp->inp_route,
             inp->inp_socket->so_options & (SO_DONTROUTE | SO_BROADCAST),              inp->inp_socket->so_options & (SO_DONTROUTE | SO_BROADCAST),
             inp->inp_moptions));              inp->inp_moptions, inp->inp_socket));
   
 release:  release:
         m_freem(m);          m_freem(m);
Line 920  int udp_recvspace = 40 * (1024 + sizeof(
Line 902  int udp_recvspace = 40 * (1024 + sizeof(
   
 /*ARGSUSED*/  /*ARGSUSED*/
 int  int
 udp_usrreq(so, req, m, nam, control, p)  udp_usrreq(struct socket *so, int req, struct mbuf *m, struct mbuf *nam,
         struct socket *so;          struct mbuf *control, struct proc *p)
         int req;  
         struct mbuf *m, *nam, *control;  
         struct proc *p;  
 {  {
         struct inpcb *inp;          struct inpcb *inp;
         int s;          int s;
Line 1008  udp_usrreq(so, req, m, nam, control, p)
Line 987  udp_usrreq(so, req, m, nam, control, p)
                 so->so_state &= ~SS_ISCONNECTED;        /* XXX */                  so->so_state &= ~SS_ISCONNECTED;        /* XXX */
                 in_pcbdisconnect(inp);                  in_pcbdisconnect(inp);
                 inp->inp_laddr = zeroin_addr;           /* XXX */                  inp->inp_laddr = zeroin_addr;           /* XXX */
                 if (inp->inp_ia != NULL) {  
                         LIST_REMOVE(inp, inp_ialink);  
                         IFAFREE(&inp->inp_ia->ia_ifa);  
                         inp->inp_ia = NULL;  
                 }  
                 in_pcbstate(inp, INP_BOUND);            /* XXX */                  in_pcbstate(inp, INP_BOUND);            /* XXX */
                 break;                  break;
   
Line 1057  udp_usrreq(so, req, m, nam, control, p)
Line 1031  udp_usrreq(so, req, m, nam, control, p)
                         in_pcbstate(inp, INP_BOUND);    /* XXX */                          in_pcbstate(inp, INP_BOUND);    /* XXX */
                 }                  }
           die:            die:
                 if (inp->inp_ia != NULL && in_nullhost(inp->inp_laddr)) {  
                         LIST_REMOVE(inp, inp_ialink);  
                         IFAFREE(&inp->inp_ia->ia_ifa);  
                         inp->inp_ia = NULL;  
                 }  
                 if (m)                  if (m)
                         m_freem(m);                          m_freem(m);
         }          }
Line 1104  release:
Line 1073  release:
 /*  /*
  * Sysctl for udp variables.   * Sysctl for udp variables.
  */   */
 int  SYSCTL_SETUP(sysctl_net_inet_udp_setup, "sysctl net.inet.udp subtree setup")
 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)          sysctl_createv(clog, 0, NULL, NULL,
                 return (ENOTDIR);                         CTLFLAG_PERMANENT,
                          CTLTYPE_NODE, "net", NULL,
         switch (name[0]) {                         NULL, 0, NULL, 0,
         case UDPCTL_CHECKSUM:                         CTL_NET, CTL_EOL);
                 return (sysctl_int(oldp, oldlenp, newp, newlen, &udpcksum));          sysctl_createv(clog, 0, NULL, NULL,
         case UDPCTL_SENDSPACE:                         CTLFLAG_PERMANENT,
                 return (sysctl_int(oldp, oldlenp, newp, newlen,                         CTLTYPE_NODE, "inet", NULL,
                     &udp_sendspace));                         NULL, 0, NULL, 0,
         case UDPCTL_RECVSPACE:                         CTL_NET, PF_INET, CTL_EOL);
                 return (sysctl_int(oldp, oldlenp, newp, newlen,          sysctl_createv(clog, 0, NULL, NULL,
                     &udp_recvspace));                         CTLFLAG_PERMANENT,
         default:                         CTLTYPE_NODE, "udp", NULL,
                 return (ENOPROTOOPT);                         NULL, 0, NULL, 0,
         }                         CTL_NET, PF_INET, IPPROTO_UDP, CTL_EOL);
         /* NOTREACHED */  
           sysctl_createv(clog, 0, NULL, NULL,
                          CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
                          CTLTYPE_INT, "checksum", NULL,
                          NULL, 0, &udpcksum, 0,
                          CTL_NET, PF_INET, IPPROTO_UDP, UDPCTL_CHECKSUM,
                          CTL_EOL);
           sysctl_createv(clog, 0, NULL, NULL,
                          CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
                          CTLTYPE_INT, "sendspace", NULL,
                          NULL, 0, &udp_sendspace, 0,
                          CTL_NET, PF_INET, IPPROTO_UDP, UDPCTL_SENDSPACE,
                          CTL_EOL);
           sysctl_createv(clog, 0, NULL, NULL,
                          CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
                          CTLTYPE_INT, "recvspace", NULL,
                          NULL, 0, &udp_recvspace, 0,
                          CTL_NET, PF_INET, IPPROTO_UDP, UDPCTL_RECVSPACE,
                          CTL_EOL);
 }  }
 #endif  #endif

Legend:
Removed from v.1.103  
changed lines
  Added in v.1.120

CVSweb <webmaster@jp.NetBSD.org>