2 * Device round robin policy for multipath.
5 * Version: $Id: multipath_drr.c,v 1.1.2.1 2004/09/16 07:42:34 elueck Exp $
7 * Authors: Einar Lueck <elueck@de.ibm.com><lkml@einar-lueck.de>
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
15 #include <asm/system.h>
16 #include <asm/uaccess.h>
17 #include <linux/types.h>
18 #include <linux/errno.h>
19 #include <linux/timer.h>
21 #include <linux/kernel.h>
22 #include <linux/fcntl.h>
23 #include <linux/stat.h>
24 #include <linux/socket.h>
26 #include <linux/inet.h>
27 #include <linux/netdevice.h>
28 #include <linux/inetdevice.h>
29 #include <linux/igmp.h>
30 #include <linux/proc_fs.h>
31 #include <linux/seq_file.h>
32 #include <linux/module.h>
33 #include <linux/mroute.h>
34 #include <linux/init.h>
36 #include <net/protocol.h>
37 #include <linux/skbuff.h>
42 #include <linux/notifier.h>
43 #include <linux/if_arp.h>
44 #include <linux/netfilter_ipv4.h>
46 #include <net/checksum.h>
47 #include <net/ip_mp_alg.h>
49 struct multipath_device
{
50 int ifi
; /* interface index of device */
55 #define MULTIPATH_MAX_DEVICECANDIDATES 10
57 static struct multipath_device state
[MULTIPATH_MAX_DEVICECANDIDATES
];
58 static DEFINE_SPINLOCK(state_lock
);
60 static int inline __multipath_findslot(void)
64 for (i
= 0; i
< MULTIPATH_MAX_DEVICECANDIDATES
; i
++) {
65 if (state
[i
].allocated
== 0)
71 static int inline __multipath_finddev(int ifindex
)
75 for (i
= 0; i
< MULTIPATH_MAX_DEVICECANDIDATES
; i
++) {
76 if (state
[i
].allocated
!= 0 &&
77 state
[i
].ifi
== ifindex
)
83 static int drr_dev_event(struct notifier_block
*this,
84 unsigned long event
, void *ptr
)
86 struct net_device
*dev
= ptr
;
90 case NETDEV_UNREGISTER
:
92 spin_lock_bh(&state_lock
);
94 devidx
= __multipath_finddev(dev
->ifindex
);
96 state
[devidx
].allocated
= 0;
97 state
[devidx
].ifi
= 0;
98 atomic_set(&state
[devidx
].usecount
, 0);
101 spin_unlock_bh(&state_lock
);
108 static struct notifier_block drr_dev_notifier
= {
109 .notifier_call
= drr_dev_event
,
113 static void drr_safe_inc(atomic_t
*usecount
)
117 atomic_inc(usecount
);
119 n
= atomic_read(usecount
);
123 spin_lock_bh(&state_lock
);
125 for (i
= 0; i
< MULTIPATH_MAX_DEVICECANDIDATES
; i
++)
126 atomic_set(&state
[i
].usecount
, 0);
128 spin_unlock_bh(&state_lock
);
132 static void drr_select_route(const struct flowi
*flp
,
133 struct rtable
*first
, struct rtable
**rp
)
135 struct rtable
*nh
, *result
, *cur_min
;
136 int min_usecount
= -1;
138 int cur_min_devidx
= -1;
140 /* 1. make sure all alt. nexthops have the same GC related data */
141 /* 2. determine the new candidate to be returned */
144 for (nh
= rcu_dereference(first
); nh
;
145 nh
= rcu_dereference(nh
->u
.dst
.rt_next
)) {
146 if ((nh
->u
.dst
.flags
& DST_BALANCED
) != 0 &&
147 multipath_comparekeys(&nh
->fl
, flp
)) {
148 int nh_ifidx
= nh
->u
.dst
.dev
->ifindex
;
150 nh
->u
.dst
.lastuse
= jiffies
;
155 /* search for the output interface */
157 /* this is not SMP safe, only add/remove are
158 * SMP safe as wrong usecount updates have no big
161 devidx
= __multipath_finddev(nh_ifidx
);
163 /* add the interface to the array
166 spin_lock_bh(&state_lock
);
168 /* due to SMP: search again */
169 devidx
= __multipath_finddev(nh_ifidx
);
171 /* add entry for device */
172 devidx
= __multipath_findslot();
174 /* unlikely but possible */
178 state
[devidx
].allocated
= 1;
179 state
[devidx
].ifi
= nh_ifidx
;
180 atomic_set(&state
[devidx
].usecount
, 0);
184 spin_unlock_bh(&state_lock
);
187 if (min_usecount
== 0) {
188 /* if the device has not been used it is
191 drr_safe_inc(&state
[devidx
].usecount
);
195 atomic_read(&state
[devidx
].usecount
);
197 if (min_usecount
== -1 ||
198 count
< min_usecount
) {
200 cur_min_devidx
= devidx
;
201 min_usecount
= count
;
209 drr_safe_inc(&state
[cur_min_devidx
].usecount
);
219 static struct ip_mp_alg_ops drr_ops
= {
220 .mp_alg_select_route
= drr_select_route
,
223 static int __init
drr_init(void)
225 int err
= register_netdevice_notifier(&drr_dev_notifier
);
230 err
= multipath_alg_register(&drr_ops
, IP_MP_ALG_DRR
);
237 unregister_netdevice_notifier(&drr_dev_notifier
);
241 static void __exit
drr_exit(void)
243 unregister_netdevice_notifier(&drr_dev_notifier
);
244 multipath_alg_unregister(&drr_ops
, IP_MP_ALG_DRR
);
247 module_init(drr_init
);
248 module_exit(drr_exit
);
249 MODULE_LICENSE("GPL");