[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.101 and 1.107.4.1

version 1.101, 2007/11/27 22:45:29 version 1.107.4.1, 2008/09/18 04:37:01
Line 86  __KERNEL_RCSID(0, "$NetBSD$");
Line 86  __KERNEL_RCSID(0, "$NetBSD$");
 #include <netinet/in_systm.h>  #include <netinet/in_systm.h>
 #include <netinet/ip.h>  #include <netinet/ip.h>
 #include <netinet/ip_var.h>  #include <netinet/ip_var.h>
   #include <netinet/ip_private.h>
 #include <netinet/ip_mroute.h>  #include <netinet/ip_mroute.h>
 #include <netinet/ip_icmp.h>  #include <netinet/ip_icmp.h>
 #include <netinet/in_pcb.h>  #include <netinet/in_pcb.h>
Line 96  __KERNEL_RCSID(0, "$NetBSD$");
Line 97  __KERNEL_RCSID(0, "$NetBSD$");
   
 #ifdef IPSEC  #ifdef IPSEC
 #include <netinet6/ipsec.h>  #include <netinet6/ipsec.h>
 #endif /*IPSEC*/  #include <netinet6/ipsec_private.h>
   #endif /* IPSEC */
   
 #ifdef FAST_IPSEC  #ifdef FAST_IPSEC
 #include <netipsec/ipsec.h>  #include <netipsec/ipsec.h>
 #include <netipsec/ipsec_var.h>                 /* XXX ipsecstat namespace */  #include <netipsec/ipsec_var.h>
 #endif  /* FAST_IPSEC*/  #include <netipsec/ipsec_private.h>
   #endif  /* FAST_IPSEC */
   
 struct inpcbtable rawcbtable;  struct inpcbtable rawcbtable;
   
Line 199  rip_input(struct mbuf *m, ...)
Line 202  rip_input(struct mbuf *m, ...)
 #if defined(IPSEC) || defined(FAST_IPSEC)  #if defined(IPSEC) || defined(FAST_IPSEC)
                 /* check AH/ESP integrity. */                  /* check AH/ESP integrity. */
                 else if (ipsec4_in_reject_so(m, last->inp_socket)) {                  else if (ipsec4_in_reject_so(m, last->inp_socket)) {
                         ipsecstat.in_polvio++;                          IPSEC_STATINC(IPSEC_STAT_IN_POLVIO);
                         /* do not inject data to pcb */                          /* do not inject data to pcb */
                 }                  }
 #endif /*IPSEC*/  #endif /*IPSEC*/
Line 214  rip_input(struct mbuf *m, ...)
Line 217  rip_input(struct mbuf *m, ...)
         /* check AH/ESP integrity. */          /* check AH/ESP integrity. */
         if (last != NULL && ipsec4_in_reject_so(m, last->inp_socket)) {          if (last != NULL && ipsec4_in_reject_so(m, last->inp_socket)) {
                 m_freem(m);                  m_freem(m);
                 ipsecstat.in_polvio++;                  IPSEC_STATINC(IPSEC_STAT_IN_POLVIO);
                 ipstat.ips_delivered--;                  IP_STATDEC(IP_STAT_DELIVERED);
                 /* do not inject data to pcb */                  /* do not inject data to pcb */
         } else          } else
 #endif /*IPSEC*/  #endif /*IPSEC*/
         if (last != NULL)          if (last != NULL)
                 rip_sbappendaddr(last, ip, sintosa(&ripsrc), hlen, opts, m);                  rip_sbappendaddr(last, ip, sintosa(&ripsrc), hlen, opts, m);
         else if (inetsw[ip_protox[ip->ip_p]].pr_input == rip_input) {          else if (inetsw[ip_protox[ip->ip_p]].pr_input == rip_input) {
                   uint64_t *ips;
   
                 icmp_error(m, ICMP_UNREACH, ICMP_UNREACH_PROTOCOL,                  icmp_error(m, ICMP_UNREACH, ICMP_UNREACH_PROTOCOL,
                     0, 0);                      0, 0);
                 ipstat.ips_noproto++;                  ips = IP_STAT_GETREF();
                 ipstat.ips_delivered--;                  ips[IP_STAT_NOPROTO]++;
                   ips[IP_STAT_DELIVERED]--;
                   IP_STAT_PUTREF();
         } else          } else
                 m_freem(m);                  m_freem(m);
         return;          return;
Line 358  rip_output(struct mbuf *m, ...)
Line 365  rip_output(struct mbuf *m, ...)
                 }                  }
                 HTONS(ip->ip_len);                  HTONS(ip->ip_len);
                 HTONS(ip->ip_off);                  HTONS(ip->ip_off);
                 if (ip->ip_id == 0)                  if (ip->ip_id != 0 || m->m_pkthdr.len < IP_MINFRAGSIZE)
                         ip->ip_id = ip_newid();                          flags |= IP_NOIPNEWID;
                 opts = NULL;                  opts = NULL;
                 /* XXX prevent ip_output from overwriting header fields */                  /* XXX prevent ip_output from overwriting header fields */
                 flags |= IP_RAWOUTPUT;                  flags |= IP_RAWOUTPUT;
                 ipstat.ips_rawout++;                  IP_STATINC(IP_STAT_RAWOUT);
         }          }
         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->inp_errormtu));               inp->inp_socket, &inp->inp_errormtu));
Line 373  rip_output(struct mbuf *m, ...)
Line 380  rip_output(struct mbuf *m, ...)
  * Raw IP socket option processing.   * Raw IP socket option processing.
  */   */
 int  int
 rip_ctloutput(int op, struct socket *so, int level, int optname,  rip_ctloutput(int op, struct socket *so, struct sockopt *sopt)
     struct mbuf **m)  
 {  {
         struct inpcb *inp = sotoinpcb(so);          struct inpcb *inp = sotoinpcb(so);
         int error = 0;          int error = 0;
           int optval;
   
         if (level == SOL_SOCKET && optname == SO_NOHEADER) {          if (sopt->sopt_level == SOL_SOCKET && sopt->sopt_name == SO_NOHEADER) {
                 if (op == PRCO_GETOPT) {                  if (op == PRCO_GETOPT) {
                         *m = m_intopt(so,                          optval = (inp->inp_flags & INP_NOHEADER) ? 1 : 0;
                             (inp->inp_flags & INP_NOHEADER) ? 1 : 0);                          error = sockopt_set(sopt, &optval, sizeof(optval));
                         return 0;                  } else if (op == PRCO_SETOPT) {
                 } else if (*m == NULL || (*m)->m_len != sizeof(int))                          error = sockopt_getint(sopt, &optval);
                         error = EINVAL;                          if (error)
                 else if (*mtod(*m, int *)) {                                  goto out;
                         inp->inp_flags &= ~INP_HDRINCL;                          if (optval) {
                         inp->inp_flags |= INP_NOHEADER;                                  inp->inp_flags &= ~INP_HDRINCL;
                 } else                                  inp->inp_flags |= INP_NOHEADER;
                         inp->inp_flags &= ~INP_NOHEADER;                          } else
                 goto free_m;                                  inp->inp_flags &= ~INP_NOHEADER;
         } else if (level != IPPROTO_IP)                  }
                 return ip_ctloutput(op, so, level, optname, m);                  goto out;
           } else if (sopt->sopt_level != IPPROTO_IP)
                   return ip_ctloutput(op, so, sopt);
   
         switch (op) {          switch (op) {
   
         case PRCO_SETOPT:          case PRCO_SETOPT:
                 switch (optname) {                  switch (sopt->sopt_name) {
                 case IP_HDRINCL:                  case IP_HDRINCL:
                         if (*m == NULL || (*m)->m_len != sizeof(int))                          error = sockopt_getint(sopt, &optval);
                                 error = EINVAL;                          if (error)
                         else if (*mtod(*m, int *))                                  break;
                           if (optval)
                                 inp->inp_flags |= INP_HDRINCL;                                  inp->inp_flags |= INP_HDRINCL;
                         else                          else
                                 inp->inp_flags &= ~INP_HDRINCL;                                  inp->inp_flags &= ~INP_HDRINCL;
                         goto free_m;                          break;
   
 #ifdef MROUTING  #ifdef MROUTING
                 case MRT_INIT:                  case MRT_INIT:
Line 419  rip_ctloutput(int op, struct socket *so,
Line 429  rip_ctloutput(int op, struct socket *so,
                 case MRT_API_CONFIG:                  case MRT_API_CONFIG:
                 case MRT_ADD_BW_UPCALL:                  case MRT_ADD_BW_UPCALL:
                 case MRT_DEL_BW_UPCALL:                  case MRT_DEL_BW_UPCALL:
                         error = ip_mrouter_set(so, optname, m);                          error = ip_mrouter_set(so, sopt);
                         break;                          break;
 #endif  #endif
   
                 default:                  default:
                         error = ip_ctloutput(op, so, level, optname, m);                          error = ip_ctloutput(op, so, sopt);
                         break;                          break;
                 }                  }
                 break;                  break;
   
         case PRCO_GETOPT:          case PRCO_GETOPT:
                 switch (optname) {                  switch (sopt->sopt_name) {
                 case IP_HDRINCL:                  case IP_HDRINCL:
                         *m = m_intopt(so, inp->inp_flags & INP_HDRINCL ? 1 : 0);                          optval = inp->inp_flags & INP_HDRINCL;
                           error = sockopt_set(sopt, &optval, sizeof(optval));
                         break;                          break;
   
 #ifdef MROUTING  #ifdef MROUTING
Line 440  rip_ctloutput(int op, struct socket *so,
Line 451  rip_ctloutput(int op, struct socket *so,
                 case MRT_ASSERT:                  case MRT_ASSERT:
                 case MRT_API_SUPPORT:                  case MRT_API_SUPPORT:
                 case MRT_API_CONFIG:                  case MRT_API_CONFIG:
                         error = ip_mrouter_get(so, optname, m);                          error = ip_mrouter_get(so, sopt);
                         break;                          break;
 #endif  #endif
   
                 default:                  default:
                         error = ip_ctloutput(op, so, level, optname, m);                          error = ip_ctloutput(op, so, sopt);
                         break;                          break;
                 }                  }
                 break;                  break;
         }          }
         return error;   out:
 free_m:  
         if (op == PRCO_SETOPT && *m != NULL)  
                 (void)m_free(*m);  
         return error;          return error;
 }  }
   
Line 521  rip_usrreq(struct socket *so, int req,
Line 529  rip_usrreq(struct socket *so, int req,
         s = splsoftnet();          s = splsoftnet();
   
         if (req == PRU_PURGEIF) {          if (req == PRU_PURGEIF) {
                   mutex_enter(softnet_lock);
                 in_pcbpurgeif0(&rawcbtable, (struct ifnet *)control);                  in_pcbpurgeif0(&rawcbtable, (struct ifnet *)control);
                 in_purgeif((struct ifnet *)control);                  in_purgeif((struct ifnet *)control);
                 in_pcbpurgeif(&rawcbtable, (struct ifnet *)control);                  in_pcbpurgeif(&rawcbtable, (struct ifnet *)control);
                   mutex_exit(softnet_lock);
                 splx(s);                  splx(s);
                 return (0);                  return (0);
         }          }
Line 541  rip_usrreq(struct socket *so, int req,
Line 551  rip_usrreq(struct socket *so, int req,
         switch (req) {          switch (req) {
   
         case PRU_ATTACH:          case PRU_ATTACH:
                   sosetlock(so);
                 if (inp != 0) {                  if (inp != 0) {
                         error = EISCONN;                          error = EISCONN;
                         break;                          break;

Legend:
Removed from v.1.101  
changed lines
  Added in v.1.107.4.1

CVSweb <webmaster@jp.NetBSD.org>