[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.52.2.1 and 1.56

version 1.52.2.1, 2000/11/20 18:10:38 version 1.56, 2000/01/06 15:46:08
Line 65 
Line 65 
  */   */
   
 #include "opt_ipsec.h"  #include "opt_ipsec.h"
 #include "opt_ipkdb.h"  
   #include "ipkdb.h"
   
 #include <sys/param.h>  #include <sys/param.h>
 #include <sys/malloc.h>  #include <sys/malloc.h>
Line 79 
Line 80 
 #include <sys/proc.h>  #include <sys/proc.h>
 #include <sys/domain.h>  #include <sys/domain.h>
   
 #include <uvm/uvm_extern.h>  #include <vm/vm.h>
 #include <sys/sysctl.h>  #include <sys/sysctl.h>
   
 #include <net/if.h>  #include <net/if.h>
Line 115 
Line 116 
 #ifdef IPSEC  #ifdef IPSEC
 #include <netinet6/ipsec.h>  #include <netinet6/ipsec.h>
 #include <netkey/key.h>  #include <netkey/key.h>
   #include <netkey/key_debug.h>
 #endif /*IPSEC*/  #endif /*IPSEC*/
   
 #ifdef IPKDB  
 #include <ipkdb/ipkdb.h>  
 #endif  
   
 /*  /*
  * UDP protocol implementation.   * UDP protocol implementation.
  * Per RFC 768, August, 1980.   * Per RFC 768, August, 1980.
Line 131  int udpcksum = 1;
Line 129  int udpcksum = 1;
 int     udpcksum = 0;           /* XXX */  int     udpcksum = 0;           /* XXX */
 #endif  #endif
   
 #ifdef INET  
 static void udp4_sendup __P((struct mbuf *, int, struct sockaddr *,  static void udp4_sendup __P((struct mbuf *, int, struct sockaddr *,
         struct socket *));          struct socket *));
 static int udp4_realinput __P((struct sockaddr_in *, struct sockaddr_in *,  static int udp4_realinput __P((struct sockaddr_in *, struct sockaddr_in *,
         struct mbuf *, int));          struct mbuf *, int));
 #endif  
 #ifdef INET6  #ifdef INET6
 static void udp6_sendup __P((struct mbuf *, int, struct sockaddr *,  static void udp6_sendup __P((struct mbuf *, int, struct sockaddr *,
         struct socket *));          struct socket *));
Line 145  static int in6_mcmatch __P((struct in6pc
Line 141  static int in6_mcmatch __P((struct in6pc
 static int udp6_realinput __P((int, struct sockaddr_in6 *,  static int udp6_realinput __P((int, struct sockaddr_in6 *,
         struct sockaddr_in6 *, struct mbuf *, int));          struct sockaddr_in6 *, struct mbuf *, int));
 #endif  #endif
 #ifdef INET  
 static  void udp_notify __P((struct inpcb *, int));  static  void udp_notify __P((struct inpcb *, int));
 #endif  
   
 #ifndef UDBHASHSIZE  #ifndef UDBHASHSIZE
 #define UDBHASHSIZE     128  #define UDBHASHSIZE     128
Line 158  void
Line 152  void
 udp_init()  udp_init()
 {  {
   
 #ifdef INET  
         in_pcbinit(&udbtable, udbhashsize, udbhashsize);          in_pcbinit(&udbtable, udbhashsize, udbhashsize);
 #endif  
 }  }
   
 #ifndef UDP6  #ifndef UDP6
 #ifdef INET  
 void  void
 #if __STDC__  #if __STDC__
 udp_input(struct mbuf *m, ...)  udp_input(struct mbuf *m, ...)
Line 228  udp_input(m, va_alist)
Line 219  udp_input(m, va_alist)
         }          }
 #endif  #endif
   
         /* destination port of 0 is illegal, based on RFC768. */  
         if (uh->uh_dport == 0)  
                 goto bad;  
   
         /*          /*
          * Make mbuf data length reflect UDP length.           * Make mbuf data length reflect UDP length.
          * If not enough data to reflect UDP length, drop.           * If not enough data to reflect UDP length, drop.
          */           */
         len = ntohs((u_int16_t)uh->uh_ulen);          len = ntohs((u_int16_t)uh->uh_ulen);
         if (ip->ip_len != iphlen + len) {          if (ip->ip_len != iphlen + len) {
                 if (ip->ip_len < iphlen + len || len < sizeof(struct udphdr)) {                  if (ip->ip_len < iphlen + len) {
                         udpstat.udps_badlen++;                          udpstat.udps_badlen++;
                         goto bad;                          goto bad;
                 }                  }
Line 249  udp_input(m, va_alist)
Line 236  udp_input(m, va_alist)
          * Checksum extended UDP header and data.           * Checksum extended UDP header and data.
          */           */
         if (uh->uh_sum) {          if (uh->uh_sum) {
   #ifndef PULLDOWN_TEST
                   struct ip save_ip;
   
                   /*
                    * Save a copy of the IP header in case we want restore it
                    * for sending an ICMP error message in response.
                    */
                   save_ip = *ip;
   
                   bzero(((struct ipovly *)ip)->ih_x1,
                       sizeof ((struct ipovly *)ip)->ih_x1);
                   ((struct ipovly *)ip)->ih_len = uh->uh_ulen;
                   if (in_cksum(m, len + sizeof (struct ip)) != 0) {
                           udpstat.udps_badsum++;
                           m_freem(m);
                           return;
                   }
   
                   *ip = save_ip;
   #else
                 if (in4_cksum(m, IPPROTO_UDP, iphlen, len) != 0) {                  if (in4_cksum(m, IPPROTO_UDP, iphlen, len) != 0) {
                         udpstat.udps_badsum++;                          udpstat.udps_badsum++;
                         m_freem(m);                          m_freem(m);
                         return;                          return;
                 }                  }
   #endif
         }          }
   
         /* construct source and dst sockaddrs. */          /* construct source and dst sockaddrs. */
Line 293  udp_input(m, va_alist)
Line 301  udp_input(m, va_alist)
 #endif  #endif
   
         if (n == 0) {          if (n == 0) {
                   udpstat.udps_noport++;
                 if (m->m_flags & (M_BCAST | M_MCAST)) {                  if (m->m_flags & (M_BCAST | M_MCAST)) {
                         udpstat.udps_noportbcast++;                          udpstat.udps_noportbcast++;
                         goto bad;                          goto bad;
                 }                  }
                 udpstat.udps_noport++;  #if NIPKDB > 0
 #ifdef IPKDB  
                 if (checkipkdb(&ip->ip_src, uh->uh_sport, uh->uh_dport,                  if (checkipkdb(&ip->ip_src, uh->uh_sport, uh->uh_dport,
                                 m, iphlen + sizeof(struct udphdr),                                  m, iphlen + sizeof(struct udphdr),
                                 m->m_pkthdr.len - iphlen - sizeof(struct udphdr))) {                                  m->m_pkthdr.len - iphlen - sizeof(struct udphdr))) {
Line 317  bad:
Line 325  bad:
         if (m)          if (m)
                 m_freem(m);                  m_freem(m);
 }  }
 #endif  
   
 #ifdef INET6  #ifdef INET6
 int  int
Line 361  udp6_input(mp, offp, proto)
Line 368  udp6_input(mp, offp, proto)
         }          }
 #endif  #endif
         ulen = ntohs((u_short)uh->uh_ulen);          ulen = ntohs((u_short)uh->uh_ulen);
         /*  
          * RFC2675 section 4: jumbograms will have 0 in the UDP header field,  
          * iff payload length > 0xffff.  
          */  
         if (ulen == 0 && plen > 0xffff)          if (ulen == 0 && plen > 0xffff)
                 ulen = plen;                  ulen = plen;
   
Line 373  udp6_input(mp, offp, proto)
Line 376  udp6_input(mp, offp, proto)
                 goto bad;                  goto bad;
         }          }
   
         /* destination port of 0 is illegal, based on RFC768. */  
         if (uh->uh_dport == 0)  
                 goto bad;  
   
         /* Be proactive about malicious use of IPv4 mapped address */          /* Be proactive about malicious use of IPv4 mapped address */
         if (IN6_IS_ADDR_V4MAPPED(&ip6->ip6_src) ||          if (IN6_IS_ADDR_V4MAPPED(&ip6->ip6_src) ||
             IN6_IS_ADDR_V4MAPPED(&ip6->ip6_dst)) {              IN6_IS_ADDR_V4MAPPED(&ip6->ip6_dst)) {
Line 401  udp6_input(mp, offp, proto)
Line 400  udp6_input(mp, offp, proto)
         bzero(&src, sizeof(src));          bzero(&src, sizeof(src));
         src.sin6_family = AF_INET6;          src.sin6_family = AF_INET6;
         src.sin6_len = sizeof(struct sockaddr_in6);          src.sin6_len = sizeof(struct sockaddr_in6);
         /* KAME hack: recover scopeid */          bcopy(&ip6->ip6_src, &src.sin6_addr, sizeof(src.sin6_addr));
         (void)in6_recoverscope(&src, &ip6->ip6_src, m->m_pkthdr.rcvif);          if (IN6_IS_SCOPE_LINKLOCAL(&src.sin6_addr))
                   src.sin6_addr.s6_addr16[1] = 0;
           if (m->m_pkthdr.rcvif) {
                   if (IN6_IS_SCOPE_LINKLOCAL(&src.sin6_addr))
                           src.sin6_scope_id = m->m_pkthdr.rcvif->if_index;
                   else
                           src.sin6_scope_id = 0;
           }
         src.sin6_port = uh->uh_sport;          src.sin6_port = uh->uh_sport;
         bzero(&dst, sizeof(dst));          bzero(&dst, sizeof(dst));
         dst.sin6_family = AF_INET6;          dst.sin6_family = AF_INET6;
         dst.sin6_len = sizeof(struct sockaddr_in6);          dst.sin6_len = sizeof(struct sockaddr_in6);
         /* KAME hack: recover scopeid */          bcopy(&ip6->ip6_dst, &dst.sin6_addr, sizeof(dst.sin6_addr));
         (void)in6_recoverscope(&dst, &ip6->ip6_dst, m->m_pkthdr.rcvif);          if (IN6_IS_SCOPE_LINKLOCAL(&dst.sin6_addr))
                   dst.sin6_addr.s6_addr16[1] = 0;
           if (m->m_pkthdr.rcvif) {
                   if (IN6_IS_SCOPE_LINKLOCAL(&dst.sin6_addr))
                           dst.sin6_scope_id = m->m_pkthdr.rcvif->if_index;
                   else
                           dst.sin6_scope_id = 0;
           }
         dst.sin6_port = uh->uh_dport;          dst.sin6_port = uh->uh_dport;
   
         if (udp6_realinput(AF_INET6, &src, &dst, m, off) == 0) {          if (udp6_realinput(AF_INET6, &src, &dst, m, off) == 0) {
                   udp6stat.udp6s_noport++;
                 if (m->m_flags & M_MCAST) {                  if (m->m_flags & M_MCAST) {
                         udp6stat.udp6s_noportmcast++;                          udp6stat.udp6s_noportmcast++;
                         goto bad;                          goto bad;
                 }                  }
                 udp6stat.udp6s_noport++;  
                 icmp6_error(m, ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_NOPORT, 0);                  icmp6_error(m, ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_NOPORT, 0);
                 m = NULL;                  m = NULL;
         }          }
Line 428  bad:
Line 441  bad:
 }  }
 #endif  #endif
   
 #ifdef INET  
 static void  static void
 udp4_sendup(m, off, src, so)  udp4_sendup(m, off, src, so)
         struct mbuf *m;          struct mbuf *m;
Line 483  udp4_sendup(m, off, src, so)
Line 495  udp4_sendup(m, off, src, so)
                         sorwakeup(so);                          sorwakeup(so);
         }          }
 }  }
 #endif  
   
 #ifdef INET6  #ifdef INET6
 static void  static void
Line 530  udp6_sendup(m, off, src, so)
Line 541  udp6_sendup(m, off, src, so)
 }  }
 #endif  #endif
   
 #ifdef INET  
 static int  static int
 udp4_realinput(src, dst, m, off)  udp4_realinput(src, dst, m, off)
         struct sockaddr_in *src;          struct sockaddr_in *src;
Line 575  udp4_realinput(src, dst, m, off)
Line 585  udp4_realinput(src, dst, m, off)
   
                 /*                  /*
                  * KAME note: usually we drop udpiphdr from mbuf here.                   * KAME note: usually we drop udpiphdr from mbuf here.
                  * we need udpiphdr for IPsec processing so we do that later.                   * we need udpiphdr for iPsec processing so we do that later.
                  */                   */
                 /*                  /*
                  * Locate pcb(s) for datagram.                   * Locate pcb(s) for datagram.
Line 620  udp4_realinput(src, dst, m, off)
Line 630  udp4_realinput(src, dst, m, off)
                          * (No need to send an ICMP Port Unreachable                           * (No need to send an ICMP Port Unreachable
                          * for a broadcast or multicast datgram.)                           * for a broadcast or multicast datgram.)
                          */                           */
                           udpstat.udps_noport++;
                         udpstat.udps_noportbcast++;                          udpstat.udps_noportbcast++;
                         goto bad;                          goto bad;
                 }                  }
Line 636  udp4_realinput(src, dst, m, off)
Line 647  udp4_realinput(src, dst, m, off)
 #if 0  #if 0
                                 struct mbuf *n;                                  struct mbuf *n;
   
                                   udpstat.udps_noport++;
                                 if (m->m_flags & (M_BCAST | M_MCAST)) {                                  if (m->m_flags & (M_BCAST | M_MCAST)) {
                                         udpstat.udps_noportbcast++;                                          udpstat.udps_noportbcast++;
                                         goto bad;                                          goto bad;
                                 }                                  }
                                 udpstat.udps_noport++;  #if NIPKDB > 0
 #ifdef IPKDB  
                                 if (checkipkdb(src4, *sport, *dport, m, off,                                  if (checkipkdb(src4, *sport, *dport, m, off,
                                                m->m_pkthdr.len - off)) {                                                 m->m_pkthdr.len - off)) {
                                         /*                                          /*
Line 667  udp4_realinput(src, dst, m, off)
Line 678  udp4_realinput(src, dst, m, off)
 bad:  bad:
         return rcvcnt;          return rcvcnt;
 }  }
 #endif  
   
 #ifdef INET6  #ifdef INET6
 static int  static int
 in6_mcmatch(in6p, ia6, ifp)  in6_mcmatch(in6p, ia6, ifp)
         struct in6pcb *in6p;          struct in6pcb *in6p;
         struct in6_addr *ia6;          register struct in6_addr *ia6;
         struct ifnet *ifp;          struct ifnet *ifp;
 {  {
         struct ip6_moptions *im6o = in6p->in6p_moptions;          struct ip6_moptions *im6o = in6p->in6p_moptions;
Line 742  udp6_realinput(af, src, dst, m, off)
Line 752  udp6_realinput(af, src, dst, m, off)
   
                 /*                  /*
                  * KAME note: usually we drop udpiphdr from mbuf here.                   * KAME note: usually we drop udpiphdr from mbuf here.
                  * we need udpiphdr for IPsec processing so we do that later.                   * we need udpiphdr for iPsec processing so we do that later.
                  */                   */
                 /*                  /*
                  * Locate pcb(s) for datagram.                   * Locate pcb(s) for datagram.
Line 803  udp6_realinput(af, src, dst, m, off)
Line 813  udp6_realinput(af, src, dst, m, off)
                          */                           */
                         switch (af) {                          switch (af) {
                         case AF_INET:                          case AF_INET:
                                   udpstat.udps_noport++;
                                 udpstat.udps_noportbcast++;                                  udpstat.udps_noportbcast++;
                                 break;                                  break;
                         case AF_INET6:                          case AF_INET6:
                                   udp6stat.udp6s_noport++;
                                 udp6stat.udp6s_noportmcast++;                                  udp6stat.udp6s_noportmcast++;
                                 break;                                  break;
                         }                          }
Line 827  udp6_realinput(af, src, dst, m, off)
Line 839  udp6_realinput(af, src, dst, m, off)
                                 n = m_copy(m, 0, M_COPYALL);                                  n = m_copy(m, 0, M_COPYALL);
                                 switch (af) {                                  switch (af) {
                                 case AF_INET:                                  case AF_INET:
                                           udpstat.udps_noport++;
                                         if (m->m_flags & (M_BCAST | M_MCAST)) {                                          if (m->m_flags & (M_BCAST | M_MCAST)) {
                                                 udpstat.udps_noportbcast++;                                                  udpstat.udps_noportbcast++;
                                                 goto bad;                                                  goto bad;
                                         }                                          }
                                         udpstat.udps_noport++;  
                                         if (n != NULL)                                          if (n != NULL)
                                                 icmp_error(n, ICMP_UNREACH,                                                  icmp_error(n, ICMP_UNREACH,
                                                     ICMP_UNREACH_PORT, 0, 0);                                                      ICMP_UNREACH_PORT, 0, 0);
                                         break;                                          break;
                                 case AF_INET6:                                  case AF_INET6:
                                           udp6stat.udp6s_noport++;
                                         if (m->m_flags & M_MCAST) {                                          if (m->m_flags & M_MCAST) {
                                                 udp6stat.udp6s_noportmcast++;                                                  udp6stat.udp6s_noportmcast++;
                                                 goto bad;                                                  goto bad;
                                         }                                          }
                                         udp6stat.udp6s_noport++;  
                                         if (n != NULL)                                          if (n != NULL)
                                                 icmp6_error(n, ICMP6_DST_UNREACH,                                                  icmp6_error(n, ICMP6_DST_UNREACH,
                                                     ICMP6_DST_UNREACH_NOPORT, 0);                                                      ICMP6_DST_UNREACH_NOPORT, 0);
Line 874  udp_input(m, va_alist)
Line 886  udp_input(m, va_alist)
 #endif  #endif
 {  {
         int proto;          int proto;
         struct ip *ip;          register struct ip *ip;
         struct udphdr *uh;          register struct udphdr *uh;
         struct inpcb *inp;          register struct inpcb *inp;
         struct mbuf *opts = 0;          struct mbuf *opts = 0;
         int len;          int len;
         struct ip save_ip;          struct ip save_ip;
Line 916  udp_input(m, va_alist)
Line 928  udp_input(m, va_alist)
         }          }
         uh = (struct udphdr *)((caddr_t)ip + iphlen);          uh = (struct udphdr *)((caddr_t)ip + iphlen);
   
         /* destination port of 0 is illegal, based on RFC768. */  
         if (uh->uh_dport == 0)  
                 goto bad;  
   
         /*          /*
          * Make mbuf data length reflect UDP length.           * Make mbuf data length reflect UDP length.
          * If not enough data to reflect UDP length, drop.           * If not enough data to reflect UDP length, drop.
          */           */
         len = ntohs((u_int16_t)uh->uh_ulen);          len = ntohs((u_int16_t)uh->uh_ulen);
         if (ip->ip_len != iphlen + len) {          if (ip->ip_len != iphlen + len) {
                 if (ip->ip_len < iphlen + len || len < sizeof(struct udphdr)) {                  if (ip->ip_len < iphlen + len) {
                         udpstat.udps_badlen++;                          udpstat.udps_badlen++;
                         goto bad;                          goto bad;
                 }                  }
Line 983  udp_input(m, va_alist)
Line 991  udp_input(m, va_alist)
                 iphlen += sizeof(struct udphdr);                  iphlen += sizeof(struct udphdr);
                 /*                  /*
                  * KAME note: usually we drop udpiphdr from mbuf here.                   * KAME note: usually we drop udpiphdr from mbuf here.
                  * we need udpiphdr for IPsec processing so we do that later.                   * we need udpiphdr for iPsec processing so we do that later.
                  */                   */
                 /*                  /*
                  * Locate pcb(s) for datagram.                   * Locate pcb(s) for datagram.
Line 1055  udp_input(m, va_alist)
Line 1063  udp_input(m, va_alist)
                          * (No need to send an ICMP Port Unreachable                           * (No need to send an ICMP Port Unreachable
                          * for a broadcast or multicast datgram.)                           * for a broadcast or multicast datgram.)
                          */                           */
                           udpstat.udps_noport++;
                         udpstat.udps_noportbcast++;                          udpstat.udps_noportbcast++;
                         goto bad;                          goto bad;
                 }                  }
Line 1088  udp_input(m, va_alist)
Line 1097  udp_input(m, va_alist)
                 ++udpstat.udps_pcbhashmiss;                  ++udpstat.udps_pcbhashmiss;
                 inp = in_pcblookup_bind(&udbtable, ip->ip_dst, uh->uh_dport);                  inp = in_pcblookup_bind(&udbtable, ip->ip_dst, uh->uh_dport);
                 if (inp == 0) {                  if (inp == 0) {
                           udpstat.udps_noport++;
                         if (m->m_flags & (M_BCAST | M_MCAST)) {                          if (m->m_flags & (M_BCAST | M_MCAST)) {
                                 udpstat.udps_noportbcast++;                                  udpstat.udps_noportbcast++;
                                 goto bad;                                  goto bad;
                         }                          }
                         udpstat.udps_noport++;  
                         *ip = save_ip;                          *ip = save_ip;
 #ifdef IPKDB  #if NIPKDB > 0
                         if (checkipkdb(&ip->ip_src,                          if (checkipkdb(&ip->ip_src,
                                        uh->uh_sport,                                         uh->uh_sport,
                                        uh->uh_dport,                                         uh->uh_dport,
Line 1139  bad:
Line 1148  bad:
 }  }
 #endif /*UDP6*/  #endif /*UDP6*/
   
 #ifdef INET  
 /*  /*
  * Notify a udp user of an asynchronous error;   * Notify a udp user of an asynchronous error;
  * 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(inp, errno)
         struct inpcb *inp;          register struct inpcb *inp;
         int errno;          int errno;
 {  {
   
Line 1161  udp_ctlinput(cmd, sa, v)
Line 1169  udp_ctlinput(cmd, sa, v)
         struct sockaddr *sa;          struct sockaddr *sa;
         void *v;          void *v;
 {  {
         struct ip *ip = v;          register struct ip *ip = v;
         struct udphdr *uh;          register struct udphdr *uh;
           extern int inetctlerrmap[];
         void (*notify) __P((struct inpcb *, int)) = udp_notify;          void (*notify) __P((struct inpcb *, int)) = udp_notify;
         int errno;          int errno;
   
Line 1199  udp_output(m, va_alist)
Line 1208  udp_output(m, va_alist)
         va_dcl          va_dcl
 #endif  #endif
 {  {
         struct inpcb *inp;          register struct inpcb *inp;
         struct udpiphdr *ui;          register struct udpiphdr *ui;
         int len = m->m_pkthdr.len;          register int len = m->m_pkthdr.len;
         int error = 0;          int error = 0;
         va_list ap;          va_list ap;
   
Line 1256  udp_output(m, va_alist)
Line 1265  udp_output(m, va_alist)
         udpstat.udps_opackets++;          udpstat.udps_opackets++;
   
 #ifdef IPSEC  #ifdef IPSEC
         ipsec_setsocket(m, inp->inp_socket);          m->m_pkthdr.rcvif = (struct ifnet *)inp->inp_socket;
 #endif /*IPSEC*/  #endif /*IPSEC*/
   
         return (ip_output(m, inp->inp_options, &inp->inp_route,          return (ip_output(m, inp->inp_options, &inp->inp_route,
Line 1280  udp_usrreq(so, req, m, nam, control, p)
Line 1289  udp_usrreq(so, req, m, nam, control, p)
         struct mbuf *m, *nam, *control;          struct mbuf *m, *nam, *control;
         struct proc *p;          struct proc *p;
 {  {
         struct inpcb *inp;          register struct inpcb *inp;
         int s;          int s;
         int error = 0;          register int error = 0;
   
         if (req == PRU_CONTROL)          if (req == PRU_CONTROL)
                 return (in_control(so, (long)m, (caddr_t)nam,                  return (in_control(so, (long)m, (caddr_t)nam,
                     (struct ifnet *)control, p));                      (struct ifnet *)control, p));
   
         if (req == PRU_PURGEIF) {  
                 in_purgeif((struct ifnet *)control);  
                 in_pcbpurgeif(&udbtable, (struct ifnet *)control);  
                 return (0);  
         }  
   
         s = splsoftnet();          s = splsoftnet();
         inp = sotoinpcb(so);          inp = sotoinpcb(so);
 #ifdef DIAGNOSTIC  #ifdef DIAGNOSTIC
Line 1327  udp_usrreq(so, req, m, nam, control, p)
Line 1330  udp_usrreq(so, req, m, nam, control, p)
                 inp = sotoinpcb(so);                  inp = sotoinpcb(so);
                 inp->inp_ip.ip_ttl = ip_defttl;                  inp->inp_ip.ip_ttl = ip_defttl;
 #ifdef IPSEC  #ifdef IPSEC
                 error = ipsec_init_policy(so, &inp->inp_sp);                  error = ipsec_init_policy(&inp->inp_sp);
                 if (error != 0) {                  if (error != 0) {
                         in_pcbdetach(inp);                          in_pcbdetach(inp);
                         break;                          break;
Line 1475  udp_sysctl(name, namelen, oldp, oldlenp,
Line 1478  udp_sysctl(name, namelen, oldp, oldlenp,
         }          }
         /* NOTREACHED */          /* NOTREACHED */
 }  }
 #endif  

Legend:
Removed from v.1.52.2.1  
changed lines
  Added in v.1.56

CVSweb <webmaster@jp.NetBSD.org>