]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/netinet/ip_flow.c
xnu-1504.15.3.tar.gz
[apple/xnu.git] / bsd / netinet / ip_flow.c
index 70233a1d5e0dea103e64977a167bc18f9c1f5e96..be5aa9495262432d695b952469270278bcdcfcfe 100644 (file)
@@ -1,16 +1,19 @@
 /*
- * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 2000-2008 Apple Inc. All rights reserved.
  *
- * @APPLE_LICENSE_HEADER_START@
- * 
- * Copyright (c) 1999-2003 Apple Computer, Inc.  All Rights Reserved.
+ * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
  * 
  * This file contains Original Code and/or Modifications of Original Code
  * as defined in and that are subject to the Apple Public Source License
  * Version 2.0 (the 'License'). You may not use this file except in
- * compliance with the License. Please obtain a copy of the License at
- * http://www.opensource.apple.com/apsl/ and read it before using this
- * file.
+ * compliance with the License. The rights granted to you under the License
+ * may not be used to create, or enable the creation or redistribution of,
+ * unlawful or unlicensed copies of an Apple operating system, or to
+ * circumvent, violate, or enable the circumvention or violation of, any
+ * terms of an Apple operating system software license agreement.
+ * 
+ * Please obtain a copy of the License at
+ * http://www.opensource.apple.com/apsl/ and read it before using this file.
  * 
  * The Original Code and all software distributed under the License are
  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
@@ -20,7 +23,7 @@
  * Please see the License for the specific language governing rights and
  * limitations under the License.
  * 
- * @APPLE_LICENSE_HEADER_END@
+ * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
  */
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -69,6 +72,7 @@
 #include <sys/kernel.h>
 
 #include <sys/sysctl.h>
+#include <libkern/OSAtomic.h>
 
 #include <net/if.h>
 #include <net/route.h>
@@ -81,6 +85,8 @@
 #include <netinet/ip_flow.h>
 #include <net/dlil.h>
 
+#if IPFLOW
+
 #define        IPFLOW_TIMER            (5 * PR_SLOWHZ)
 #define IPFLOW_HASHBITS                6       /* should not be a multiple of 8 */
 #define        IPFLOW_HASHSIZE         (1 << IPFLOW_HASHBITS)
@@ -197,7 +203,7 @@ ipflow_fastforward(
                dst = &ipf->ipf_ro.ro_dst;
 #ifdef __APPLE__
        /* Not sure the rt_dlt is valid here !! XXX */
-       if ((error = dlil_output((u_long)rt->rt_dlt, m, (caddr_t) rt, dst, 0)) != 0) {
+       if ((error = dlil_output(rt->rt_ifp, PF_INET, m, (caddr_t) rt, dst, 0)) != 0) {
 
 #else
        if ((error = (*rt->rt_ifp->if_output)(rt->rt_ifp, m, dst, rt)) != 0) {
@@ -215,24 +221,21 @@ ipflow_addstats(
        struct ipflow *ipf)
 {
        ipf->ipf_ro.ro_rt->rt_use += ipf->ipf_uses;
-       ipstat.ips_cantforward += ipf->ipf_errors + ipf->ipf_dropped;
-       ipstat.ips_forward += ipf->ipf_uses;
-       ipstat.ips_fastforward += ipf->ipf_uses;
+       OSAddAtomic(ipf->ipf_errors + ipf->ipf_dropped, &ipstat.ips_cantforward);
+       OSAddAtomic(ipf->ipf_uses, &ipstat.ips_forward);
+       OSAddAtomic(ipf->ipf_uses, &ipstat.ips_fastforward);
 }
 
 static void
 ipflow_free(
        struct ipflow *ipf)
 {
-       int s;
        /*
         * Remove the flow from the hash table (at elevated IPL).
         * Once it's off the list, we can deal with it at normal
         * network IPL.
         */
-       s = splimp();
        LIST_REMOVE(ipf, ipf_next);
-       splx(s);
        ipflow_addstats(ipf);
        rtfree(ipf->ipf_ro.ro_rt);
        ipflow_inuse--;
@@ -245,7 +248,6 @@ ipflow_reap(
 {
        struct ipflow *ipf, *maybe_ipf = NULL;
        int idx;
-       int s;
 
        for (idx = 0; idx < IPFLOW_HASHSIZE; idx++) {
                ipf = LIST_FIRST(&ipflows[idx]);
@@ -276,14 +278,12 @@ ipflow_reap(
        /*
         * Remove the entry from the flow table.
         */
-       s = splimp();
        LIST_REMOVE(ipf, ipf_next);
-       splx(s);
        ipflow_addstats(ipf);
        rtfree(ipf->ipf_ro.ro_rt);
        return ipf;
 }
-
+/* note: called under the ip_mutex lock */
 void
 ipflow_slowtimo(
        void)
@@ -300,6 +300,8 @@ ipflow_slowtimo(
                        } else {
                                ipf->ipf_last_uses = ipf->ipf_uses;
                                ipf->ipf_ro.ro_rt->rt_use += ipf->ipf_uses;
+                               OSAddAtomic(ipf->ipf_uses, &ipstat.ips_forward);
+                               OSAddAtomic(ipf->ipf_uses, &ipstat.ips_fastforward);
                                ipstat.ips_forward += ipf->ipf_uses;
                                ipstat.ips_fastforward += ipf->ipf_uses;
                                ipf->ipf_uses = 0;
@@ -317,7 +319,6 @@ ipflow_create(
        const struct ip *const ip = mtod(m, struct ip *);
        struct ipflow *ipf;
        unsigned hash;
-       int s;
 
        /*
         * Don't create cache entries for ICMP messages.
@@ -342,9 +343,7 @@ ipflow_create(
                }
                bzero((caddr_t) ipf, sizeof(*ipf));
        } else {
-               s = splimp();
                LIST_REMOVE(ipf, ipf_next);
-               splx(s);
                ipflow_addstats(ipf);
                rtfree(ipf->ipf_ro.ro_rt);
                ipf->ipf_uses = ipf->ipf_last_uses = 0;
@@ -355,7 +354,7 @@ ipflow_create(
         * Fill in the updated information.
         */
        ipf->ipf_ro = *ro;
-       rtref(ro->ro_rt);
+       RT_ADDREF(ro->ro_rt);
        ipf->ipf_dst = ip->ip_dst;
        ipf->ipf_src = ip->ip_src;
        ipf->ipf_tos = ip->ip_tos;
@@ -364,7 +363,18 @@ ipflow_create(
         * Insert into the approriate bucket of the flow table.
         */
        hash = ipflow_hash(ip->ip_dst, ip->ip_src, ip->ip_tos);
-       s = splimp();
        LIST_INSERT_HEAD(&ipflows[hash], ipf, ipf_next);
-       splx(s);
 }
+#else /* !IPFLOW */
+int
+ipflow_fastforward(struct mbuf *m)
+{
+#pragma unused(m)
+       /*
+        * Since this symbol is exported (albeit unsupported), just return
+        * false to keep things (e.g. PPP) happy, in case ipflow is not
+        * compiled in.
+        */
+       return (0);
+}
+#endif /* !IPFLOW */