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

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

Diff for /src/sys/netinet6/ip6_input.c between version 1.8.2.3 and 1.25

version 1.8.2.3, 2001/01/05 17:36:56 version 1.25, 2000/07/06 12:36:19
Line 1 
Line 1 
 /*      $NetBSD$        */  /*      $NetBSD$        */
 /*      $KAME: ip6_input.c,v 1.121 2000/08/31 06:07:29 itojun Exp $     */  /*      $KAME: ip6_input.c,v 1.95 2000/07/02 07:49:37 jinmei Exp $      */
   
 /*  /*
  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.   * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
Line 140  ip6_fw_chk_t *ip6_fw_chk_ptr;
Line 140  ip6_fw_chk_t *ip6_fw_chk_ptr;
 ip6_fw_ctl_t *ip6_fw_ctl_ptr;  ip6_fw_ctl_t *ip6_fw_ctl_ptr;
 #endif  #endif
   
 #ifdef PFIL_HOOKS  
 struct pfil_head inet6_pfil_hook;  
 #endif  
   
 struct ip6stat ip6stat;  struct ip6stat ip6stat;
   
 static void ip6_init2 __P((void *));  static void ip6_init2 __P((void *));
Line 185  ip6_init()
Line 181  ip6_init()
         ip6_flow_seq = random() ^ tv.tv_usec;          ip6_flow_seq = random() ^ tv.tv_usec;
   
         ip6_init2((void *)0);          ip6_init2((void *)0);
   
 #ifdef PFIL_HOOKS  
         /* Register our Packet Filter hook. */  
         inet6_pfil_hook.ph_type = PFIL_TYPE_AF;  
         inet6_pfil_hook.ph_af   = AF_INET6;  
         i = pfil_head_register(&inet6_pfil_hook);  
         if (i != 0)  
                 printf("ip6_init: WARNING: unable to register pfil hook, "  
                     "error %d\n", i);  
 #endif /* PFIL_HOOKS */  
 }  }
   
 static void  static void
Line 246  ip6_input(m)
Line 232  ip6_input(m)
         u_int32_t rtalert = ~0;          u_int32_t rtalert = ~0;
         int nxt, ours = 0;          int nxt, ours = 0;
         struct ifnet *deliverifp = NULL;          struct ifnet *deliverifp = NULL;
   #ifdef  PFIL_HOOKS
           struct packet_filter_hook *pfh;
           struct mbuf *m0;
           int rv;
   #endif  /* PFIL_HOOKS */
   
 #ifdef IPSEC  #ifdef IPSEC
         /*          /*
Line 312  ip6_input(m)
Line 303  ip6_input(m)
          * Note that filters must _never_ set this flag, as another filter           * Note that filters must _never_ set this flag, as another filter
          * in the list may have previously cleared it.           * in the list may have previously cleared it.
          */           */
         if (pfil_run_hooks(&inet6_pfil_hook, &m, m->m_pkthdr.rcvif,          m0 = m;
                            PFIL_IN) != 0)          pfh = pfil_hook_get(PFIL_IN, &inetsw[ip_protox[IPPROTO_IPV6]].pr_pfh);
                 return;          for (; pfh; pfh = pfh->pfil_link.tqe_next)
         if (m == NULL)                  if (pfh->pfil_func) {
                 return;                          rv = pfh->pfil_func(ip6, sizeof(*ip6),
         ip6 = mtod(m, struct ip6_hdr *);                                              m->m_pkthdr.rcvif, 0, &m0);
                           if (rv)
                                   return;
                           m = m0;
                           if (m == NULL)
                                   return;
                           ip6 = mtod(m, struct ip6_hdr *);
                   }
 #endif /* PFIL_HOOKS */  #endif /* PFIL_HOOKS */
   
   
Line 340  ip6_input(m)
Line 338  ip6_input(m)
         }          }
 #endif  #endif
   
 #ifdef ALTQ  
         /* XXX Temporary until ALTQ is changed to use a pfil hook */  
         if (altq_input != NULL && (*altq_input)(m, AF_INET6) == 0) {  
                 /* packet is dropped by traffic conditioner */  
                 return;  
         }  
 #endif  
   
         /*          /*
          * Scope check           * Scope check
          */           */
Line 513  ip6_input(m)
Line 503  ip6_input(m)
                 } else {                  } else {
                         /* address is not ready, so discard the packet. */                          /* address is not ready, so discard the packet. */
                         log(LOG_INFO,                          log(LOG_INFO,
                             "ip6_input: packet to an unready address %s->%s\n",                              "ip6_input: packet to an unready address %s->%s",
                             ip6_sprintf(&ip6->ip6_src),                              ip6_sprintf(&ip6->ip6_src),
                             ip6_sprintf(&ip6->ip6_dst));                              ip6_sprintf(&ip6->ip6_dst));
   
Line 698  ip6_input(m)
Line 688  ip6_input(m)
          * Tell launch routine the next header           * Tell launch routine the next header
          */           */
 #ifdef IFA_STATS  #ifdef IFA_STATS
         if (deliverifp != NULL) {          if (IFA_STATS && deliverifp != NULL) {
                 struct in6_ifaddr *ia6;                  struct in6_ifaddr *ia6;
                 ia6 = in6_ifawithifp(deliverifp, &ip6->ip6_dst);                  ia6 = in6_ifawithifp(deliverifp, &ip6->ip6_dst);
                 if (ia6)                  if (ia6)
Line 838  ip6_process_hopopts(m, opthead, hbhlen, 
Line 828  ip6_process_hopopts(m, opthead, hbhlen, 
                         if (*(opt + 1) != IP6OPT_JUMBO_LEN - 2)                          if (*(opt + 1) != IP6OPT_JUMBO_LEN - 2)
                                  /* XXX: should we discard the packet? */                                   /* XXX: should we discard the packet? */
                                 log(LOG_ERR, "length of jumbopayload opt "                                  log(LOG_ERR, "length of jumbopayload opt "
                                     "is inconsistent(%d)\n",                                      "is inconsistent(%d)",
                                     *(opt + 1));                                      *(opt + 1));
                         optlen = IP6OPT_JUMBO_LEN;                          optlen = IP6OPT_JUMBO_LEN;
   
Line 1375  ip6_sysctl(name, namelen, oldp, oldlenp,
Line 1365  ip6_sysctl(name, namelen, oldp, oldlenp,
         void *newp;          void *newp;
         size_t newlen;          size_t newlen;
 {  {
         int old, error;  
   
         /* All sysctl names at this level are terminal. */          /* All sysctl names at this level are terminal. */
         if (namelen != 1)          if (namelen != 1)
                 return ENOTDIR;                  return ENOTDIR;
Line 1428  ip6_sysctl(name, namelen, oldp, oldlenp,
Line 1416  ip6_sysctl(name, namelen, oldp, oldlenp,
                 return sysctl_int(oldp, oldlenp, newp, newlen,                  return sysctl_int(oldp, oldlenp, newp, newlen,
                                 &ip6_bindv6only);                                  &ip6_bindv6only);
 #endif  #endif
         case IPV6CTL_ANONPORTMIN:  
                 old = ip6_anonportmin;  
                 error = sysctl_int(oldp, oldlenp, newp, newlen,  
                     &ip6_anonportmin);  
                 if (ip6_anonportmin >= ip6_anonportmax || ip6_anonportmin < 0 ||  
                     ip6_anonportmin > 65535  
 #ifndef IPNOPRIVPORTS  
                     || ip6_anonportmin < IPV6PORT_RESERVED  
 #endif  
                     ) {  
                         ip6_anonportmin = old;  
                         return (EINVAL);  
                 }  
                 return (error);  
         case IPV6CTL_ANONPORTMAX:  
                 old = ip6_anonportmax;  
                 error = sysctl_int(oldp, oldlenp, newp, newlen,  
                     &ip6_anonportmax);  
                 if (ip6_anonportmin >= ip6_anonportmax || ip6_anonportmax < 0 ||  
                     ip6_anonportmax > 65535  
 #ifndef IPNOPRIVPORTS  
                     || ip6_anonportmax < IPV6PORT_RESERVED  
 #endif  
                     ) {  
                         ip6_anonportmax = old;  
                         return (EINVAL);  
                 }  
                 return (error);  
 #ifndef IPNOPRIVPORTS  
         case IPV6CTL_LOWPORTMIN:  
                 old = ip6_lowportmin;  
                 error = sysctl_int(oldp, oldlenp, newp, newlen,  
                     &ip6_lowportmin);  
                 if (ip6_lowportmin >= ip6_lowportmax ||  
                     ip6_lowportmin > IPV6PORT_RESERVEDMAX ||  
                     ip6_lowportmin < IPV6PORT_RESERVEDMIN) {  
                         ip6_lowportmin = old;  
                         return (EINVAL);  
                 }  
                 return (error);  
         case IPV6CTL_LOWPORTMAX:  
                 old = ip6_lowportmax;  
                 error = sysctl_int(oldp, oldlenp, newp, newlen,  
                     &ip6_lowportmax);  
                 if (ip6_lowportmin >= ip6_lowportmax ||  
                     ip6_lowportmax > IPV6PORT_RESERVEDMAX ||  
                     ip6_lowportmax < IPV6PORT_RESERVEDMIN) {  
                         ip6_lowportmax = old;  
                         return (EINVAL);  
                 }  
                 return (error);  
 #endif  
         default:          default:
                 return EOPNOTSUPP;                  return EOPNOTSUPP;
         }          }

Legend:
Removed from v.1.8.2.3  
changed lines
  Added in v.1.25

CVSweb <webmaster@jp.NetBSD.org>