[ARM] 3349/1: ixp4xx exp bus defines
[linux-2.6/libata-dev.git] / net / core / dev_mcast.c
blob05d60850840e07a0d0beba51baf2b53fb622a883
1 /*
2 * Linux NET3: Multicast List maintenance.
4 * Authors:
5 * Tim Kordas <tjk@nostromo.eeap.cwru.edu>
6 * Richard Underwood <richard@wuzz.demon.co.uk>
8 * Stir fried together from the IP multicast and CAP patches above
9 * Alan Cox <Alan.Cox@linux.org>
11 * Fixes:
12 * Alan Cox : Update the device on a real delete
13 * rather than any time but...
14 * Alan Cox : IFF_ALLMULTI support.
15 * Alan Cox : New format set_multicast_list() calls.
16 * Gleb Natapov : Remove dev_mc_lock.
18 * This program is free software; you can redistribute it and/or
19 * modify it under the terms of the GNU General Public License
20 * as published by the Free Software Foundation; either version
21 * 2 of the License, or (at your option) any later version.
24 #include <linux/config.h>
25 #include <linux/module.h>
26 #include <asm/uaccess.h>
27 #include <asm/system.h>
28 #include <linux/bitops.h>
29 #include <linux/types.h>
30 #include <linux/kernel.h>
31 #include <linux/sched.h>
32 #include <linux/string.h>
33 #include <linux/mm.h>
34 #include <linux/socket.h>
35 #include <linux/sockios.h>
36 #include <linux/in.h>
37 #include <linux/errno.h>
38 #include <linux/interrupt.h>
39 #include <linux/if_ether.h>
40 #include <linux/inet.h>
41 #include <linux/netdevice.h>
42 #include <linux/etherdevice.h>
43 #include <linux/proc_fs.h>
44 #include <linux/seq_file.h>
45 #include <linux/init.h>
46 #include <net/ip.h>
47 #include <net/route.h>
48 #include <linux/skbuff.h>
49 #include <net/sock.h>
50 #include <net/arp.h>
54 * Device multicast list maintenance.
56 * This is used both by IP and by the user level maintenance functions.
57 * Unlike BSD we maintain a usage count on a given multicast address so
58 * that a casual user application can add/delete multicasts used by
59 * protocols without doing damage to the protocols when it deletes the
60 * entries. It also helps IP as it tracks overlapping maps.
62 * Device mc lists are changed by bh at least if IPv6 is enabled,
63 * so that it must be bh protected.
65 * We block accesses to device mc filters with dev->xmit_lock.
69 * Update the multicast list into the physical NIC controller.
72 static void __dev_mc_upload(struct net_device *dev)
74 /* Don't do anything till we up the interface
75 * [dev_open will call this function so the list will
76 * stay sane]
79 if (!(dev->flags&IFF_UP))
80 return;
83 * Devices with no set multicast or which have been
84 * detached don't get set.
87 if (dev->set_multicast_list == NULL ||
88 !netif_device_present(dev))
89 return;
91 dev->set_multicast_list(dev);
94 void dev_mc_upload(struct net_device *dev)
96 spin_lock_bh(&dev->xmit_lock);
97 __dev_mc_upload(dev);
98 spin_unlock_bh(&dev->xmit_lock);
102 * Delete a device level multicast
105 int dev_mc_delete(struct net_device *dev, void *addr, int alen, int glbl)
107 int err = 0;
108 struct dev_mc_list *dmi, **dmip;
110 spin_lock_bh(&dev->xmit_lock);
112 for (dmip = &dev->mc_list; (dmi = *dmip) != NULL; dmip = &dmi->next) {
114 * Find the entry we want to delete. The device could
115 * have variable length entries so check these too.
117 if (memcmp(dmi->dmi_addr, addr, dmi->dmi_addrlen) == 0 &&
118 alen == dmi->dmi_addrlen) {
119 if (glbl) {
120 int old_glbl = dmi->dmi_gusers;
121 dmi->dmi_gusers = 0;
122 if (old_glbl == 0)
123 break;
125 if (--dmi->dmi_users)
126 goto done;
129 * Last user. So delete the entry.
131 *dmip = dmi->next;
132 dev->mc_count--;
134 kfree(dmi);
137 * We have altered the list, so the card
138 * loaded filter is now wrong. Fix it
140 __dev_mc_upload(dev);
142 spin_unlock_bh(&dev->xmit_lock);
143 return 0;
146 err = -ENOENT;
147 done:
148 spin_unlock_bh(&dev->xmit_lock);
149 return err;
153 * Add a device level multicast
156 int dev_mc_add(struct net_device *dev, void *addr, int alen, int glbl)
158 int err = 0;
159 struct dev_mc_list *dmi, *dmi1;
161 dmi1 = kmalloc(sizeof(*dmi), GFP_ATOMIC);
163 spin_lock_bh(&dev->xmit_lock);
164 for (dmi = dev->mc_list; dmi != NULL; dmi = dmi->next) {
165 if (memcmp(dmi->dmi_addr, addr, dmi->dmi_addrlen) == 0 &&
166 dmi->dmi_addrlen == alen) {
167 if (glbl) {
168 int old_glbl = dmi->dmi_gusers;
169 dmi->dmi_gusers = 1;
170 if (old_glbl)
171 goto done;
173 dmi->dmi_users++;
174 goto done;
178 if ((dmi = dmi1) == NULL) {
179 spin_unlock_bh(&dev->xmit_lock);
180 return -ENOMEM;
182 memcpy(dmi->dmi_addr, addr, alen);
183 dmi->dmi_addrlen = alen;
184 dmi->next = dev->mc_list;
185 dmi->dmi_users = 1;
186 dmi->dmi_gusers = glbl ? 1 : 0;
187 dev->mc_list = dmi;
188 dev->mc_count++;
190 __dev_mc_upload(dev);
192 spin_unlock_bh(&dev->xmit_lock);
193 return 0;
195 done:
196 spin_unlock_bh(&dev->xmit_lock);
197 kfree(dmi1);
198 return err;
202 * Discard multicast list when a device is downed
205 void dev_mc_discard(struct net_device *dev)
207 spin_lock_bh(&dev->xmit_lock);
209 while (dev->mc_list != NULL) {
210 struct dev_mc_list *tmp = dev->mc_list;
211 dev->mc_list = tmp->next;
212 if (tmp->dmi_users > tmp->dmi_gusers)
213 printk("dev_mc_discard: multicast leakage! dmi_users=%d\n", tmp->dmi_users);
214 kfree(tmp);
216 dev->mc_count = 0;
218 spin_unlock_bh(&dev->xmit_lock);
221 #ifdef CONFIG_PROC_FS
222 static void *dev_mc_seq_start(struct seq_file *seq, loff_t *pos)
224 struct net_device *dev;
225 loff_t off = 0;
227 read_lock(&dev_base_lock);
228 for (dev = dev_base; dev; dev = dev->next) {
229 if (off++ == *pos)
230 return dev;
232 return NULL;
235 static void *dev_mc_seq_next(struct seq_file *seq, void *v, loff_t *pos)
237 struct net_device *dev = v;
238 ++*pos;
239 return dev->next;
242 static void dev_mc_seq_stop(struct seq_file *seq, void *v)
244 read_unlock(&dev_base_lock);
248 static int dev_mc_seq_show(struct seq_file *seq, void *v)
250 struct dev_mc_list *m;
251 struct net_device *dev = v;
253 spin_lock_bh(&dev->xmit_lock);
254 for (m = dev->mc_list; m; m = m->next) {
255 int i;
257 seq_printf(seq, "%-4d %-15s %-5d %-5d ", dev->ifindex,
258 dev->name, m->dmi_users, m->dmi_gusers);
260 for (i = 0; i < m->dmi_addrlen; i++)
261 seq_printf(seq, "%02x", m->dmi_addr[i]);
263 seq_putc(seq, '\n');
265 spin_unlock_bh(&dev->xmit_lock);
266 return 0;
269 static struct seq_operations dev_mc_seq_ops = {
270 .start = dev_mc_seq_start,
271 .next = dev_mc_seq_next,
272 .stop = dev_mc_seq_stop,
273 .show = dev_mc_seq_show,
276 static int dev_mc_seq_open(struct inode *inode, struct file *file)
278 return seq_open(file, &dev_mc_seq_ops);
281 static struct file_operations dev_mc_seq_fops = {
282 .owner = THIS_MODULE,
283 .open = dev_mc_seq_open,
284 .read = seq_read,
285 .llseek = seq_lseek,
286 .release = seq_release,
289 #endif
291 void __init dev_mcast_init(void)
293 proc_net_fops_create("dev_mcast", 0, &dev_mc_seq_fops);
296 EXPORT_SYMBOL(dev_mc_add);
297 EXPORT_SYMBOL(dev_mc_delete);
298 EXPORT_SYMBOL(dev_mc_upload);