[BACK]Return to raw_ip.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/raw_ip.c between version 1.146.2.1 and 1.161.2.1

version 1.146.2.1, 2015/04/06 15:18:23 version 1.161.2.1, 2017/04/21 16:54:06
Line 67 
Line 67 
 #include <sys/cdefs.h>  #include <sys/cdefs.h>
 __KERNEL_RCSID(0, "$NetBSD$");  __KERNEL_RCSID(0, "$NetBSD$");
   
   #ifdef _KERNEL_OPT
 #include "opt_inet.h"  #include "opt_inet.h"
 #include "opt_compat_netbsd.h"  #include "opt_compat_netbsd.h"
 #include "opt_ipsec.h"  #include "opt_ipsec.h"
 #include "opt_mrouting.h"  #include "opt_mrouting.h"
   #include "opt_net_mpsafe.h"
   #endif
   
 #include <sys/param.h>  #include <sys/param.h>
 #include <sys/sysctl.h>  #include <sys/sysctl.h>
Line 84  __KERNEL_RCSID(0, "$NetBSD$");
Line 87  __KERNEL_RCSID(0, "$NetBSD$");
 #include <sys/kauth.h>  #include <sys/kauth.h>
   
 #include <net/if.h>  #include <net/if.h>
 #include <net/route.h>  
   
 #include <netinet/in.h>  #include <netinet/in.h>
 #include <netinet/in_systm.h>  #include <netinet/in_systm.h>
Line 111  struct inpcbtable rawcbtable;
Line 113  struct inpcbtable rawcbtable;
   
 int      rip_pcbnotify(struct inpcbtable *, struct in_addr,  int      rip_pcbnotify(struct inpcbtable *, struct in_addr,
     struct in_addr, int, int, void (*)(struct inpcb *, int));      struct in_addr, int, int, void (*)(struct inpcb *, int));
 int      rip_connect_pcb(struct inpcb *, struct mbuf *);  static int       rip_connect_pcb(struct inpcb *, struct sockaddr_in *);
 static void      rip_disconnect1(struct inpcb *);  static void      rip_disconnect1(struct inpcb *);
   
 static void sysctl_net_inet_raw_setup(struct sysctllog **);  static void sysctl_net_inet_raw_setup(struct sysctllog **);
Line 211  rip_input(struct mbuf *m, ...)
Line 213  rip_input(struct mbuf *m, ...)
 #if defined(IPSEC)  #if defined(IPSEC)
                 /* check AH/ESP integrity. */                  /* check AH/ESP integrity. */
                 else if (ipsec_used &&                  else if (ipsec_used &&
                     ipsec4_in_reject_so(m, last->inp_socket)) {                      ipsec4_in_reject(m, last)) {
                         IPSEC_STATINC(IPSEC_STAT_IN_POLVIO);                          IPSEC_STATINC(IPSEC_STAT_IN_POLVIO);
                         /* do not inject data to pcb */                          /* do not inject data to pcb */
                 }                  }
Line 226  rip_input(struct mbuf *m, ...)
Line 228  rip_input(struct mbuf *m, ...)
 #if defined(IPSEC)  #if defined(IPSEC)
         /* check AH/ESP integrity. */          /* check AH/ESP integrity. */
         if (ipsec_used && last != NULL          if (ipsec_used && last != NULL
             && ipsec4_in_reject_so(m, last->inp_socket)) {              && ipsec4_in_reject(m, last)) {
                 m_freem(m);                  m_freem(m);
                 IPSEC_STATINC(IPSEC_STAT_IN_POLVIO);                  IPSEC_STATINC(IPSEC_STAT_IN_POLVIO);
                 IP_STATDEC(IP_STAT_DELIVERED);                  IP_STATDEC(IP_STAT_DELIVERED);
Line 309  rip_ctlinput(int cmd, const struct socka
Line 311  rip_ctlinput(int cmd, const struct socka
  * Tack on options user may have setup with control call.   * Tack on options user may have setup with control call.
  */   */
 int  int
 rip_output(struct mbuf *m, ...)  rip_output(struct mbuf *m, struct inpcb *inp)
 {  {
         struct inpcb *inp;  
         struct ip *ip;          struct ip *ip;
         struct mbuf *opts;          struct mbuf *opts;
         int flags;          int flags;
         va_list ap;  
   
         va_start(ap, m);  
         inp = va_arg(ap, struct inpcb *);  
         va_end(ap);  
   
         flags =          flags =
             (inp->inp_socket->so_options & SO_DONTROUTE) | IP_ALLOWBROADCAST              (inp->inp_socket->so_options & SO_DONTROUTE) | IP_ALLOWBROADCAST
Line 387  rip_output(struct mbuf *m, ...)
Line 383  rip_output(struct mbuf *m, ...)
          * will be stored in inp_errormtu.           * will be stored in inp_errormtu.
          */           */
         return ip_output(m, opts, &inp->inp_route, flags, inp->inp_moptions,          return ip_output(m, opts, &inp->inp_route, flags, inp->inp_moptions,
              inp->inp_socket);               inp);
 }  }
   
 /*  /*
Line 480  rip_ctloutput(int op, struct socket *so,
Line 476  rip_ctloutput(int op, struct socket *so,
 }  }
   
 int  int
 rip_connect_pcb(struct inpcb *inp, struct mbuf *nam)  rip_connect_pcb(struct inpcb *inp, struct sockaddr_in *addr)
 {  {
         struct sockaddr_in *addr = mtod(nam, struct sockaddr_in *);  
   
         if (nam->m_len != sizeof(*addr))          if (IFNET_READER_EMPTY())
                 return (EINVAL);  
         if (IFNET_EMPTY())  
                 return (EADDRNOTAVAIL);                  return (EADDRNOTAVAIL);
         if (addr->sin_family != AF_INET)          if (addr->sin_family != AF_INET)
                 return (EAFNOSUPPORT);                  return (EAFNOSUPPORT);
Line 547  rip_detach(struct socket *so)
Line 540  rip_detach(struct socket *so)
 }  }
   
 static int  static int
 rip_accept(struct socket *so, struct mbuf *nam)  rip_accept(struct socket *so, struct sockaddr *nam)
 {  {
         KASSERT(solocked(so));          KASSERT(solocked(so));
   
Line 562  rip_bind(struct socket *so, struct socka
Line 555  rip_bind(struct socket *so, struct socka
         struct inpcb *inp = sotoinpcb(so);          struct inpcb *inp = sotoinpcb(so);
         struct sockaddr_in *addr = (struct sockaddr_in *)nam;          struct sockaddr_in *addr = (struct sockaddr_in *)nam;
         int error = 0;          int error = 0;
         int s;          int s, ss;
           struct ifaddr *ifa;
   
         KASSERT(solocked(so));          KASSERT(solocked(so));
         KASSERT(inp != NULL);          KASSERT(inp != NULL);
Line 572  rip_bind(struct socket *so, struct socka
Line 566  rip_bind(struct socket *so, struct socka
                 return EINVAL;                  return EINVAL;
   
         s = splsoftnet();          s = splsoftnet();
         if (IFNET_EMPTY()) {          if (IFNET_READER_EMPTY()) {
                 error = EADDRNOTAVAIL;                  error = EADDRNOTAVAIL;
                 goto release;                  goto release;
         }          }
Line 580  rip_bind(struct socket *so, struct socka
Line 574  rip_bind(struct socket *so, struct socka
                 error = EAFNOSUPPORT;                  error = EAFNOSUPPORT;
                 goto release;                  goto release;
         }          }
         if (!in_nullhost(addr->sin_addr) &&          ss = pserialize_read_enter();
             ifa_ifwithaddr(sintosa(addr)) == 0) {          if ((ifa = ifa_ifwithaddr(sintosa(addr))) == NULL &&
               !in_nullhost(addr->sin_addr))
           {
                   pserialize_read_exit(ss);
                 error = EADDRNOTAVAIL;                  error = EADDRNOTAVAIL;
                 goto release;                  goto release;
         }          }
           if (ifa && (ifatoia(ifa))->ia4_flags & IN6_IFF_DUPLICATED) {
                   pserialize_read_exit(ss);
                   error = EADDRNOTAVAIL;
                   goto release;
           }
           pserialize_read_exit(ss);
   
         inp->inp_laddr = addr->sin_addr;          inp->inp_laddr = addr->sin_addr;
   
 release:  release:
Line 601  rip_listen(struct socket *so, struct lwp
Line 605  rip_listen(struct socket *so, struct lwp
 }  }
   
 static int  static int
 rip_connect(struct socket *so, struct mbuf *nam, struct lwp *l)  rip_connect(struct socket *so, struct sockaddr *nam, struct lwp *l)
 {  {
         struct inpcb *inp = sotoinpcb(so);          struct inpcb *inp = sotoinpcb(so);
         int error = 0;          int error = 0;
Line 612  rip_connect(struct socket *so, struct mb
Line 616  rip_connect(struct socket *so, struct mb
         KASSERT(nam != NULL);          KASSERT(nam != NULL);
   
         s = splsoftnet();          s = splsoftnet();
         error = rip_connect_pcb(inp, nam);          error = rip_connect_pcb(inp, (struct sockaddr_in *)nam);
         if (! error)          if (! error)
                 soisconnected(so);                  soisconnected(so);
         splx(s);          splx(s);
Line 688  rip_stat(struct socket *so, struct stat 
Line 692  rip_stat(struct socket *so, struct stat 
 }  }
   
 static int  static int
 rip_peeraddr(struct socket *so, struct mbuf *nam)  rip_peeraddr(struct socket *so, struct sockaddr *nam)
 {  {
         int s;          int s;
   
Line 697  rip_peeraddr(struct socket *so, struct m
Line 701  rip_peeraddr(struct socket *so, struct m
         KASSERT(nam != NULL);          KASSERT(nam != NULL);
   
         s = splsoftnet();          s = splsoftnet();
         in_setpeeraddr(sotoinpcb(so), nam);          in_setpeeraddr(sotoinpcb(so), (struct sockaddr_in *)nam);
         splx(s);          splx(s);
   
         return 0;          return 0;
 }  }
   
 static int  static int
 rip_sockaddr(struct socket *so, struct mbuf *nam)  rip_sockaddr(struct socket *so, struct sockaddr *nam)
 {  {
         int s;          int s;
   
Line 713  rip_sockaddr(struct socket *so, struct m
Line 717  rip_sockaddr(struct socket *so, struct m
         KASSERT(nam != NULL);          KASSERT(nam != NULL);
   
         s = splsoftnet();          s = splsoftnet();
         in_setsockaddr(sotoinpcb(so), nam);          in_setsockaddr(sotoinpcb(so), (struct sockaddr_in *)nam);
         splx(s);          splx(s);
   
         return 0;          return 0;
Line 736  rip_recvoob(struct socket *so, struct mb
Line 740  rip_recvoob(struct socket *so, struct mb
 }  }
   
 static int  static int
 rip_send(struct socket *so, struct mbuf *m, struct mbuf *nam,  rip_send(struct socket *so, struct mbuf *m, struct sockaddr *nam,
     struct mbuf *control, struct lwp *l)      struct mbuf *control, struct lwp *l)
 {  {
         struct inpcb *inp = sotoinpcb(so);          struct inpcb *inp = sotoinpcb(so);
Line 763  rip_send(struct socket *so, struct mbuf 
Line 767  rip_send(struct socket *so, struct mbuf 
                         error = EISCONN;                          error = EISCONN;
                         goto die;                          goto die;
                 }                  }
                 error = rip_connect_pcb(inp, nam);                  error = rip_connect_pcb(inp, (struct sockaddr_in *)nam);
                 if (error) {                  if (error) {
                 die:                  die:
                         m_freem(m);                          m_freem(m);
Line 803  rip_purgeif(struct socket *so, struct if
Line 807  rip_purgeif(struct socket *so, struct if
         s = splsoftnet();          s = splsoftnet();
         mutex_enter(softnet_lock);          mutex_enter(softnet_lock);
         in_pcbpurgeif0(&rawcbtable, ifp);          in_pcbpurgeif0(&rawcbtable, ifp);
   #ifdef NET_MPSAFE
           mutex_exit(softnet_lock);
   #endif
         in_purgeif(ifp);          in_purgeif(ifp);
   #ifdef NET_MPSAFE
           mutex_enter(softnet_lock);
   #endif
         in_pcbpurgeif(&rawcbtable, ifp);          in_pcbpurgeif(&rawcbtable, ifp);
         mutex_exit(softnet_lock);          mutex_exit(softnet_lock);
         splx(s);          splx(s);
Line 811  rip_purgeif(struct socket *so, struct if
Line 821  rip_purgeif(struct socket *so, struct if
         return 0;          return 0;
 }  }
   
 int  
 rip_usrreq(struct socket *so, int req, struct mbuf *m, struct mbuf *nam,  
     struct mbuf *control, struct lwp *l)  
 {  
         KASSERT(req != PRU_ATTACH);  
         KASSERT(req != PRU_DETACH);  
         KASSERT(req != PRU_ACCEPT);  
         KASSERT(req != PRU_BIND);  
         KASSERT(req != PRU_LISTEN);  
         KASSERT(req != PRU_CONNECT);  
         KASSERT(req != PRU_CONNECT2);  
         KASSERT(req != PRU_DISCONNECT);  
         KASSERT(req != PRU_SHUTDOWN);  
         KASSERT(req != PRU_ABORT);  
         KASSERT(req != PRU_CONTROL);  
         KASSERT(req != PRU_SENSE);  
         KASSERT(req != PRU_PEERADDR);  
         KASSERT(req != PRU_SOCKADDR);  
         KASSERT(req != PRU_RCVD);  
         KASSERT(req != PRU_RCVOOB);  
         KASSERT(req != PRU_SEND);  
         KASSERT(req != PRU_SENDOOB);  
         KASSERT(req != PRU_PURGEIF);  
   
         KASSERT(solocked(so));  
   
         if (sotoinpcb(so) == NULL)  
                 return EINVAL;  
   
         panic("rip_usrreq");  
   
         return 0;  
 }  
   
 PR_WRAP_USRREQS(rip)  PR_WRAP_USRREQS(rip)
 #define rip_attach      rip_attach_wrapper  #define rip_attach      rip_attach_wrapper
 #define rip_detach      rip_detach_wrapper  #define rip_detach      rip_detach_wrapper
Line 865  PR_WRAP_USRREQS(rip)
Line 841  PR_WRAP_USRREQS(rip)
 #define rip_send        rip_send_wrapper  #define rip_send        rip_send_wrapper
 #define rip_sendoob     rip_sendoob_wrapper  #define rip_sendoob     rip_sendoob_wrapper
 #define rip_purgeif     rip_purgeif_wrapper  #define rip_purgeif     rip_purgeif_wrapper
 #define rip_usrreq      rip_usrreq_wrapper  
   
 const struct pr_usrreqs rip_usrreqs = {  const struct pr_usrreqs rip_usrreqs = {
         .pr_attach      = rip_attach,          .pr_attach      = rip_attach,
Line 887  const struct pr_usrreqs rip_usrreqs = {
Line 862  const struct pr_usrreqs rip_usrreqs = {
         .pr_send        = rip_send,          .pr_send        = rip_send,
         .pr_sendoob     = rip_sendoob,          .pr_sendoob     = rip_sendoob,
         .pr_purgeif     = rip_purgeif,          .pr_purgeif     = rip_purgeif,
         .pr_generic     = rip_usrreq,  
 };  };
   
 static void  static void

Legend:
Removed from v.1.146.2.1  
changed lines
  Added in v.1.161.2.1

CVSweb <webmaster@jp.NetBSD.org>