[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.28 and 1.41

version 1.28, 1996/03/16 23:54:03 version 1.41, 1997/06/24 19:31:34
Line 34 
Line 34 
  *   *
  *      @(#)udp_usrreq.c        8.4 (Berkeley) 1/21/94   *      @(#)udp_usrreq.c        8.4 (Berkeley) 1/21/94
  */   */
   #include "ipkdb.h"
   
 #include <sys/param.h>  #include <sys/param.h>
 #include <sys/malloc.h>  #include <sys/malloc.h>
Line 74  int udpcksum = 1;
Line 75  int udpcksum = 1;
 int     udpcksum = 0;           /* XXX */  int     udpcksum = 0;           /* XXX */
 #endif  #endif
   
 struct  sockaddr_in udp_in = { sizeof(udp_in), AF_INET };  
   
 static  void udp_detach __P((struct inpcb *));  
 static  void udp_notify __P((struct inpcb *, int));  static  void udp_notify __P((struct inpcb *, int));
 static  struct mbuf *udp_saveopt __P((caddr_t, int, int));  
   
 #ifndef UDBHASHSIZE  #ifndef UDBHASHSIZE
 #define UDBHASHSIZE     128  #define UDBHASHSIZE     128
Line 89  void
Line 86  void
 udp_init()  udp_init()
 {  {
   
         in_pcbinit(&udbtable, udbhashsize);          in_pcbinit(&udbtable, udbhashsize, udbhashsize);
 }  }
   
 void  void
Line 109  udp_input(m, va_alist)
Line 106  udp_input(m, va_alist)
         struct ip save_ip;          struct ip save_ip;
         int iphlen;          int iphlen;
         va_list ap;          va_list ap;
           struct sockaddr_in udpsrc;
   
         va_start(ap, m);          va_start(ap, m);
         iphlen = va_arg(ap, int);          iphlen = va_arg(ap, int);
Line 162  udp_input(m, va_alist)
Line 160  udp_input(m, va_alist)
         /*          /*
          * Checksum extended UDP header and data.           * Checksum extended UDP header and data.
          */           */
         if (udpcksum && uh->uh_sum) {          if (uh->uh_sum) {
                 bzero(((struct ipovly *)ip)->ih_x1,                  bzero(((struct ipovly *)ip)->ih_x1,
                     sizeof ((struct ipovly *)ip)->ih_x1);                      sizeof ((struct ipovly *)ip)->ih_x1);
                 ((struct ipovly *)ip)->ih_len = uh->uh_ulen;                  ((struct ipovly *)ip)->ih_len = uh->uh_ulen;
Line 175  udp_input(m, va_alist)
Line 173  udp_input(m, va_alist)
   
         if (IN_MULTICAST(ip->ip_dst.s_addr) ||          if (IN_MULTICAST(ip->ip_dst.s_addr) ||
             in_broadcast(ip->ip_dst, m->m_pkthdr.rcvif)) {              in_broadcast(ip->ip_dst, m->m_pkthdr.rcvif)) {
                 struct socket *last;                  struct inpcb *last;
                 /*                  /*
                  * Deliver a multicast or broadcast datagram to *all* sockets                   * Deliver a multicast or broadcast datagram to *all* sockets
                  * for which the local and remote addresses and ports match                   * for which the local and remote addresses and ports match
Line 195  udp_input(m, va_alist)
Line 193  udp_input(m, va_alist)
                 /*                  /*
                  * Construct sockaddr format source address.                   * Construct sockaddr format source address.
                  */                   */
                 udp_in.sin_port = uh->uh_sport;                  udpsrc.sin_family = AF_INET;
                 udp_in.sin_addr = ip->ip_src;                  udpsrc.sin_len = sizeof(struct sockaddr_in);
                   udpsrc.sin_addr = ip->ip_src;
                   udpsrc.sin_port = uh->uh_sport;
                   bzero((caddr_t)udpsrc.sin_zero, sizeof(udpsrc.sin_zero));
   
                 m->m_len -= sizeof (struct udpiphdr);                  m->m_len -= sizeof (struct udpiphdr);
                 m->m_data += sizeof (struct udpiphdr);                  m->m_data += sizeof (struct udpiphdr);
                 /*                  /*
Line 209  udp_input(m, va_alist)
Line 211  udp_input(m, va_alist)
                     inp = inp->inp_queue.cqe_next) {                      inp = inp->inp_queue.cqe_next) {
                         if (inp->inp_lport != uh->uh_dport)                          if (inp->inp_lport != uh->uh_dport)
                                 continue;                                  continue;
                         if (inp->inp_laddr.s_addr != INADDR_ANY) {                          if (!in_nullhost(inp->inp_laddr)) {
                                 if (inp->inp_laddr.s_addr !=                                  if (!in_hosteq(inp->inp_laddr, ip->ip_dst))
                                     ip->ip_dst.s_addr)  
                                         continue;                                          continue;
                         }                          }
                         if (inp->inp_faddr.s_addr != INADDR_ANY) {                          if (!in_nullhost(inp->inp_faddr)) {
                                 if (inp->inp_faddr.s_addr !=                                  if (!in_hosteq(inp->inp_faddr, ip->ip_src) ||
                                     ip->ip_src.s_addr ||  
                                     inp->inp_fport != uh->uh_sport)                                      inp->inp_fport != uh->uh_sport)
                                         continue;                                          continue;
                         }                          }
Line 225  udp_input(m, va_alist)
Line 225  udp_input(m, va_alist)
                                 struct mbuf *n;                                  struct mbuf *n;
   
                                 if ((n = m_copy(m, 0, M_COPYALL)) != NULL) {                                  if ((n = m_copy(m, 0, M_COPYALL)) != NULL) {
                                         if (sbappendaddr(&last->so_rcv,                                          if (last->inp_flags & INP_CONTROLOPTS
                                                 sintosa(&udp_in), n,                                              || last->inp_socket->so_options &
                                                 (struct mbuf *)0) == 0) {                                                 SO_TIMESTAMP) {
                                                   ip_savecontrol(last, &opts,
                                                       ip, n);
                                           }
                                           if (sbappendaddr(
                                               &last->inp_socket->so_rcv,
                                               sintosa(&udpsrc), n, opts) == 0) {
                                                 m_freem(n);                                                  m_freem(n);
                                                 udpstat.udps_fullsock++;                                                  if (opts)
                                                           m_freem(opts);
                                         } else                                          } else
                                                 sorwakeup(last);                                                  sorwakeup(last->inp_socket);
                                           opts = 0;
                                 }                                  }
                         }                          }
                         last = inp->inp_socket;                          last = inp;
                         /*                          /*
                          * Don't look for additional matches if this one does                           * Don't look for additional matches if this one does
                          * not have either the SO_REUSEPORT or SO_REUSEADDR                           * not have either the SO_REUSEPORT or SO_REUSEADDR
Line 243  udp_input(m, va_alist)
Line 251  udp_input(m, va_alist)
                          * port.  It * assumes that an application will never                           * port.  It * assumes that an application will never
                          * clear these options after setting them.                           * clear these options after setting them.
                          */                           */
                         if ((last->so_options&(SO_REUSEPORT|SO_REUSEADDR)) == 0)                          if ((last->inp_socket->so_options &
                               (SO_REUSEPORT|SO_REUSEADDR)) == 0)
                                 break;                                  break;
                 }                  }
   
Line 256  udp_input(m, va_alist)
Line 265  udp_input(m, va_alist)
                         udpstat.udps_noportbcast++;                          udpstat.udps_noportbcast++;
                         goto bad;                          goto bad;
                 }                  }
                 if (sbappendaddr(&last->so_rcv, sintosa(&udp_in), m,                  if (last->inp_flags & INP_CONTROLOPTS ||
                     (struct mbuf *)0) == 0) {                      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) {
                         udpstat.udps_fullsock++;                          udpstat.udps_fullsock++;
                         goto bad;                          goto bad;
                 }                  }
                 sorwakeup(last);                  sorwakeup(last->inp_socket);
                 return;                  return;
         }          }
         /*          /*
          * Locate pcb for datagram.           * Locate pcb for datagram.
          */           */
         inp = in_pcbhashlookup(&udbtable, ip->ip_src, uh->uh_sport,          inp = in_pcblookup_connect(&udbtable, ip->ip_src, uh->uh_sport,
             ip->ip_dst, uh->uh_dport);              ip->ip_dst, uh->uh_dport);
         if (inp == 0) {          if (inp == 0) {
                 ++udpstat.udps_pcbhashmiss;                  ++udpstat.udps_pcbhashmiss;
                 inp = in_pcblookup(&udbtable, ip->ip_src, uh->uh_sport,                  inp = in_pcblookup_bind(&udbtable, ip->ip_dst, uh->uh_dport);
                     ip->ip_dst, uh->uh_dport, INPLOOKUP_WILDCARD);  
                 if (inp == 0) {                  if (inp == 0) {
                         udpstat.udps_noport++;                          udpstat.udps_noport++;
                         if (m->m_flags & (M_BCAST | M_MCAST)) {                          if (m->m_flags & (M_BCAST | M_MCAST)) {
Line 280  udp_input(m, va_alist)
Line 291  udp_input(m, va_alist)
                                 goto bad;                                  goto bad;
                         }                          }
                         *ip = save_ip;                          *ip = save_ip;
                         ip->ip_len += iphlen;  #if NIPKDB > 0
                           if (checkipkdb(&ip->ip_src,
                                          uh->uh_sport,
                                          uh->uh_dport,
                                          m,
                                          iphlen + sizeof(struct udphdr),
                                          len - sizeof(struct udphdr)))
                           /* It was a debugger connect packet, just drop it now */
                                   goto bad;
   #endif
                         icmp_error(m, ICMP_UNREACH, ICMP_UNREACH_PORT, 0, 0);                          icmp_error(m, ICMP_UNREACH, ICMP_UNREACH_PORT, 0, 0);
                         return;                          return;
                 }                  }
Line 290  udp_input(m, va_alist)
Line 310  udp_input(m, va_alist)
          * Construct sockaddr format source address.           * Construct sockaddr format source address.
          * Stuff source address and datagram in user buffer.           * Stuff source address and datagram in user buffer.
          */           */
         udp_in.sin_port = uh->uh_sport;          udpsrc.sin_family = AF_INET;
         udp_in.sin_addr = ip->ip_src;          udpsrc.sin_len = sizeof(struct sockaddr_in);
         if (inp->inp_flags & INP_CONTROLOPTS) {          udpsrc.sin_addr = ip->ip_src;
                 struct mbuf **mp = &opts;          udpsrc.sin_port = uh->uh_sport;
           bzero((caddr_t)udpsrc.sin_zero, sizeof(udpsrc.sin_zero));
                 if (inp->inp_flags & INP_RECVDSTADDR) {  
                         *mp = udp_saveopt((caddr_t) &ip->ip_dst,          if (inp->inp_flags & INP_CONTROLOPTS ||
                             sizeof(struct in_addr), IP_RECVDSTADDR);              inp->inp_socket->so_options & SO_TIMESTAMP)
                         if (*mp)                  ip_savecontrol(inp, &opts, ip, m);
                                 mp = &(*mp)->m_next;  
                 }  
 #ifdef notyet  
                 /* options were tossed above */  
                 if (inp->inp_flags & INP_RECVOPTS) {  
                         *mp = udp_saveopt((caddr_t) opts_deleted_above,  
                             sizeof(struct in_addr), IP_RECVOPTS);  
                         if (*mp)  
                                 mp = &(*mp)->m_next;  
                 }  
                 /* ip_srcroute doesn't do what we want here, need to fix */  
                 if (inp->inp_flags & INP_RECVRETOPTS) {  
                         *mp = udp_saveopt((caddr_t) ip_srcroute(),  
                             sizeof(struct in_addr), IP_RECVRETOPTS);  
                         if (*mp)  
                                 mp = &(*mp)->m_next;  
                 }  
 #endif  
         }  
         iphlen += sizeof(struct udphdr);          iphlen += sizeof(struct udphdr);
         m->m_len -= iphlen;          m->m_len -= iphlen;
         m->m_pkthdr.len -= iphlen;          m->m_pkthdr.len -= iphlen;
         m->m_data += iphlen;          m->m_data += iphlen;
         if (sbappendaddr(&inp->inp_socket->so_rcv, sintosa(&udp_in), m,          if (sbappendaddr(&inp->inp_socket->so_rcv, sintosa(&udpsrc), m,
             opts) == 0) {              opts) == 0) {
                 udpstat.udps_fullsock++;                  udpstat.udps_fullsock++;
                 goto bad;                  goto bad;
Line 336  bad:
Line 337  bad:
 }  }
   
 /*  /*
  * Create a "control" mbuf containing the specified data  
  * with the specified type for presentation with a datagram.  
  */  
 struct mbuf *  
 udp_saveopt(p, size, type)  
         caddr_t p;  
         register int size;  
         int type;  
 {  
         register struct cmsghdr *cp;  
         struct mbuf *m;  
   
         if ((m = m_get(M_DONTWAIT, MT_CONTROL)) == NULL)  
                 return ((struct mbuf *) NULL);  
         cp = (struct cmsghdr *) mtod(m, struct cmsghdr *);  
         bcopy(p, CMSG_DATA(cp), size);  
         size += sizeof(*cp);  
         m->m_len = size;  
         cp->cmsg_len = size;  
         cp->cmsg_level = IPPROTO_IP;  
         cp->cmsg_type = type;  
         return (m);  
 }  
   
 /*  
  * Notify a udp user of an asynchronous error;   * 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.
  */   */
Line 369  udp_notify(inp, errno)
Line 345  udp_notify(inp, errno)
         register struct inpcb *inp;          register struct inpcb *inp;
         int errno;          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);
Line 397  udp_ctlinput(cmd, sa, v)
Line 374  udp_ctlinput(cmd, sa, v)
                 return NULL;                  return NULL;
         if (ip) {          if (ip) {
                 uh = (struct udphdr *)((caddr_t)ip + (ip->ip_hl << 2));                  uh = (struct udphdr *)((caddr_t)ip + (ip->ip_hl << 2));
                 in_pcbnotify(&udbtable, sa, uh->uh_dport, ip->ip_src,                  in_pcbnotify(&udbtable, satosin(sa)->sin_addr, uh->uh_dport,
                     uh->uh_sport, errno, notify);                      ip->ip_src, uh->uh_sport, errno, notify);
         } else          } else
                 in_pcbnotifyall(&udbtable, sa, errno, notify);                  in_pcbnotifyall(&udbtable, satosin(sa)->sin_addr, errno,
                       notify);
         return NULL;          return NULL;
 }  }
   
Line 414  udp_output(m, va_alist)
Line 392  udp_output(m, va_alist)
 #endif  #endif
 {  {
         register struct inpcb *inp;          register struct inpcb *inp;
         struct mbuf *addr, *control;  
         register struct udpiphdr *ui;          register struct udpiphdr *ui;
         register int len = m->m_pkthdr.len;          register int len = m->m_pkthdr.len;
         struct in_addr laddr;          int error = 0;
         int s = 0, error = 0;  
         va_list ap;          va_list ap;
   
         va_start(ap, m);          va_start(ap, m);
         inp = va_arg(ap, struct inpcb *);          inp = va_arg(ap, struct inpcb *);
         addr = va_arg(ap, struct mbuf *);  
         control = va_arg(ap, struct mbuf *);  
         va_end(ap);          va_end(ap);
   
         if (control)  
                 m_freem(control);               /* XXX */  
   
         if (addr) {  
                 laddr = inp->inp_laddr;  
                 if (inp->inp_faddr.s_addr != INADDR_ANY) {  
                         error = EISCONN;  
                         goto release;  
                 }  
                 /*  
                  * Must block input while temporarily connected.  
                  */  
                 s = splsoftnet();  
                 error = in_pcbconnect(inp, addr);  
                 if (error) {  
                         splx(s);  
                         goto release;  
                 }  
         } else {  
                 if (inp->inp_faddr.s_addr == INADDR_ANY) {  
                         error = ENOTCONN;  
                         goto release;  
                 }  
         }  
         /*          /*
          * Calculate data length and get a mbuf           * Calculate data length and get a mbuf
          * for UDP and IP headers.           * for UDP and IP headers.
Line 462  udp_output(m, va_alist)
Line 412  udp_output(m, va_alist)
         }          }
   
         /*          /*
            * 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;
           }
   
           /*
          * Fill in mbuf with extended UDP header           * Fill in mbuf with extended UDP header
          * and addresses and length put into network format.           * and addresses and length put into network format.
          */           */
Line 487  udp_output(m, va_alist)
Line 446  udp_output(m, va_alist)
         ((struct ip *)ui)->ip_ttl = inp->inp_ip.ip_ttl; /* XXX */          ((struct ip *)ui)->ip_ttl = inp->inp_ip.ip_ttl; /* XXX */
         ((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++;
         error = 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));
   
         if (addr) {  
                 in_pcbdisconnect(inp);  
                 inp->inp_laddr = laddr;  
                 splx(s);  
         }  
         return (error);  
   
 release:  release:
         m_freem(m);          m_freem(m);
Line 509  u_long udp_recvspace = 40 * (1024 + size
Line 461  u_long udp_recvspace = 40 * (1024 + size
   
 /*ARGSUSED*/  /*ARGSUSED*/
 int  int
 udp_usrreq(so, req, m, addr, control)  udp_usrreq(so, req, m, nam, control, p)
         struct socket *so;          struct socket *so;
         int req;          int req;
         struct mbuf *m, *addr, *control;          struct mbuf *m, *nam, *control;
           struct proc *p;
 {  {
         struct inpcb *inp = sotoinpcb(so);          register struct inpcb *inp;
         int error = 0;  
         int s;          int s;
           register int error = 0;
   
         if (req == PRU_CONTROL)          if (req == PRU_CONTROL)
                 return (in_control(so, (long)m, (caddr_t)addr,                  return (in_control(so, (long)m, (caddr_t)nam,
                         (struct ifnet *)control));                      (struct ifnet *)control, p));
         if (inp == NULL && req != PRU_ATTACH) {  
           s = splsoftnet();
           inp = sotoinpcb(so);
   #ifdef DIAGNOSTIC
           if (req != PRU_SEND && req != PRU_SENDOOB && control)
                   panic("udp_usrreq: unexpected control mbuf");
   #endif
           if (inp == 0 && req != PRU_ATTACH) {
                 error = EINVAL;                  error = EINVAL;
                 goto release;                  goto release;
         }          }
   
         /*          /*
          * Note: need to block udp_input while changing           * Note: need to block udp_input while changing
          * the udp pcb queue and/or pcb addresses.           * the udp pcb queue and/or pcb addresses.
Line 532  udp_usrreq(so, req, m, addr, control)
Line 493  udp_usrreq(so, req, m, addr, control)
         switch (req) {          switch (req) {
   
         case PRU_ATTACH:          case PRU_ATTACH:
                 if (inp != NULL) {                  if (inp != 0) {
                         error = EINVAL;                          error = EISCONN;
                         break;                          break;
                 }                  }
                 s = splsoftnet();                  if (so->so_snd.sb_hiwat == 0 || so->so_rcv.sb_hiwat == 0) {
                           error = soreserve(so, udp_sendspace, udp_recvspace);
                           if (error)
                                   break;
                   }
                 error = in_pcballoc(so, &udbtable);                  error = in_pcballoc(so, &udbtable);
                 splx(s);  
                 if (error)  
                         break;  
                 error = soreserve(so, udp_sendspace, udp_recvspace);  
                 if (error)                  if (error)
                         break;                          break;
                 ((struct inpcb *) so->so_pcb)->inp_ip.ip_ttl = ip_defttl;                  inp = sotoinpcb(so);
                   inp->inp_ip.ip_ttl = ip_defttl;
                 break;                  break;
   
         case PRU_DETACH:          case PRU_DETACH:
                 udp_detach(inp);                  in_pcbdetach(inp);
                 break;                  break;
   
         case PRU_BIND:          case PRU_BIND:
                 s = splsoftnet();                  error = in_pcbbind(inp, nam, p);
                 error = in_pcbbind(inp, addr);  
                 splx(s);  
                 break;                  break;
   
         case PRU_LISTEN:          case PRU_LISTEN:
Line 562  udp_usrreq(so, req, m, addr, control)
Line 522  udp_usrreq(so, req, m, addr, control)
                 break;                  break;
   
         case PRU_CONNECT:          case PRU_CONNECT:
                 if (inp->inp_faddr.s_addr != INADDR_ANY) {                  error = in_pcbconnect(inp, nam);
                         error = EISCONN;                  if (error)
                         break;                          break;
                 }                  soisconnected(so);
                 s = splsoftnet();  
                 error = in_pcbconnect(inp, addr);  
                 splx(s);  
                 if (error == 0)  
                         soisconnected(so);  
                 break;                  break;
   
         case PRU_CONNECT2:          case PRU_CONNECT2:
                 error = EOPNOTSUPP;                  error = EOPNOTSUPP;
                 break;                  break;
   
         case PRU_ACCEPT:  
                 error = EOPNOTSUPP;  
                 break;  
   
         case PRU_DISCONNECT:          case PRU_DISCONNECT:
                 if (inp->inp_faddr.s_addr == INADDR_ANY) {                  /*soisdisconnected(so);*/
                         error = ENOTCONN;                  so->so_state &= ~SS_ISCONNECTED;        /* XXX */
                         break;  
                 }  
                 s = splsoftnet();  
                 in_pcbdisconnect(inp);                  in_pcbdisconnect(inp);
                 inp->inp_laddr.s_addr = INADDR_ANY;                  inp->inp_laddr = zeroin_addr;           /* XXX */
                 splx(s);                  in_pcbstate(inp, INP_BOUND);            /* XXX */
                 so->so_state &= ~SS_ISCONNECTED;                /* XXX */  
                 break;                  break;
   
         case PRU_SHUTDOWN:          case PRU_SHUTDOWN:
                 socantsendmore(so);                  socantsendmore(so);
                 break;                  break;
   
         case PRU_SEND:          case PRU_RCVD:
                 return (udp_output(m, inp, addr, control));                  error = EOPNOTSUPP;
   
         case PRU_ABORT:  
                 soisdisconnected(so);  
                 udp_detach(inp);  
                 break;                  break;
   
         case PRU_SOCKADDR:          case PRU_SEND:
                 in_setsockaddr(inp, addr);                  if (control && control->m_len) {
                 break;                          m_freem(control);
                           m_freem(m);
                           error = EINVAL;
                           break;
                   }
           {
                   struct in_addr laddr;                   /* XXX */
   
         case PRU_PEERADDR:                  if (nam) {
                 in_setpeeraddr(inp, addr);                          laddr = inp->inp_laddr;         /* XXX */
                           if ((so->so_state & SS_ISCONNECTED) != 0) {
                                   error = EISCONN;
                                   goto die;
                           }
                           error = in_pcbconnect(inp, nam);
                           if (error) {
                           die:
                                   m_freem(m);
                                   break;
                           }
                   } else {
                           if ((so->so_state & SS_ISCONNECTED) == 0) {
                                   error = ENOTCONN;
                                   goto die;
                           }
                   }
                   error = udp_output(m, inp);
                   if (nam) {
                           in_pcbdisconnect(inp);
                           inp->inp_laddr = laddr;         /* XXX */
                           in_pcbstate(inp, INP_BOUND);    /* XXX */
                   }
           }
                 break;                  break;
   
         case PRU_SENSE:          case PRU_SENSE:
                 /*                  /*
                  * stat: don't bother with a blocksize.                   * stat: don't bother with a blocksize.
                  */                   */
                   splx(s);
                 return (0);                  return (0);
   
           case PRU_RCVOOB:
                   error =  EOPNOTSUPP;
                   break;
   
         case PRU_SENDOOB:          case PRU_SENDOOB:
         case PRU_FASTTIMO:                  m_freem(control);
         case PRU_SLOWTIMO:                  m_freem(m);
         case PRU_PROTORCV:  
         case PRU_PROTOSEND:  
                 error =  EOPNOTSUPP;                  error =  EOPNOTSUPP;
                 break;                  break;
   
         case PRU_RCVD:          case PRU_SOCKADDR:
         case PRU_RCVOOB:                  in_setsockaddr(inp, nam);
                 return (EOPNOTSUPP);    /* do not free mbuf's */                  break;
   
           case PRU_PEERADDR:
                   in_setpeeraddr(inp, nam);
                   break;
   
         default:          default:
                 panic("udp_usrreq");                  panic("udp_usrreq");
         }          }
   
 release:  release:
         if (control) {  
                 printf("udp control data unexpectedly retained\n");  
                 m_freem(control);  
         }  
         if (m)  
                 m_freem(m);  
         return (error);  
 }  
   
 static void  
 udp_detach(inp)  
         struct inpcb *inp;  
 {  
         int s = splsoftnet();  
   
         in_pcbdetach(inp);  
         splx(s);          splx(s);
           return (error);
 }  }
   
 /*  /*

Legend:
Removed from v.1.28  
changed lines
  Added in v.1.41

CVSweb <webmaster@jp.NetBSD.org>