blob: f7c53a7d5cb05c3f3e0a892f15922db687fc80aa [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * PF_INET6 protocol dispatch tables.
7 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Authors: Pedro Roque <roque@di.fc.ul.pt>
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
14 */
15
16/*
17 * Changes:
18 *
19 * Vince Laviano (vince@cs.stanford.edu) 16 May 2001
20 * - Removed unused variable 'inet6_protocol_base'
21 * - Modified inet6_del_protocol() to correctly maintain copy bit.
22 */
Alexey Dobriyanfa1a9c62009-09-09 03:43:50 -070023#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/netdevice.h>
Alexey Dobriyanfa1a9c62009-09-09 03:43:50 -070025#include <linux/spinlock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <net/protocol.h>
27
Eric Dumazete0ad61e2010-10-25 21:02:28 +000028const struct inet6_protocol __rcu *inet6_protos[MAX_INET_PROTOS] __read_mostly;
Vlad Yasevich8ca896c2012-11-15 08:49:13 +000029const struct net_offload __rcu *inet6_offloads[MAX_INET_PROTOS] __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Alexey Dobriyan41135cc2009-09-14 12:22:28 +000031int inet6_add_protocol(const struct inet6_protocol *prot, unsigned char protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -070032{
David S. Millerf9242b62012-06-19 18:56:21 -070033 return !cmpxchg((const struct inet6_protocol **)&inet6_protos[protocol],
Eric Dumazete0ad61e2010-10-25 21:02:28 +000034 NULL, prot) ? 0 : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +090036EXPORT_SYMBOL(inet6_add_protocol);
37
Vlad Yasevich8ca896c2012-11-15 08:49:13 +000038int inet6_add_offload(const struct net_offload *prot, unsigned char protocol)
39{
40 return !cmpxchg((const struct net_offload **)&inet6_offloads[protocol],
41 NULL, prot) ? 0 : -1;
42}
43EXPORT_SYMBOL(inet6_add_offload);
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045/*
46 * Remove a protocol from the hash tables.
47 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090048
Alexey Dobriyan41135cc2009-09-14 12:22:28 +000049int inet6_del_protocol(const struct inet6_protocol *prot, unsigned char protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050{
David S. Millerf9242b62012-06-19 18:56:21 -070051 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
David S. Millerf9242b62012-06-19 18:56:21 -070053 ret = (cmpxchg((const struct inet6_protocol **)&inet6_protos[protocol],
Eric Dumazete0ad61e2010-10-25 21:02:28 +000054 prot, NULL) == prot) ? 0 : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56 synchronize_net();
57
58 return ret;
59}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +090060EXPORT_SYMBOL(inet6_del_protocol);
Vlad Yasevich8ca896c2012-11-15 08:49:13 +000061
62int inet6_del_offload(const struct net_offload *prot, unsigned char protocol)
63{
64 int ret;
65
66 ret = (cmpxchg((const struct net_offload **)&inet6_offloads[protocol],
67 prot, NULL) == prot) ? 0 : -1;
68
69 synchronize_net();
70
71 return ret;
72}
73EXPORT_SYMBOL(inet6_del_offload);