diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /net/x25/x25_route.c |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'net/x25/x25_route.c')
-rw-r--r-- | net/x25/x25_route.c | 221 |
1 files changed, 221 insertions, 0 deletions
diff --git a/net/x25/x25_route.c b/net/x25/x25_route.c new file mode 100644 index 000000000000..6c5d37517035 --- /dev/null +++ b/net/x25/x25_route.c | |||
@@ -0,0 +1,221 @@ | |||
1 | /* | ||
2 | * X.25 Packet Layer release 002 | ||
3 | * | ||
4 | * This is ALPHA test software. This code may break your machine, | ||
5 | * randomly fail to work with new releases, misbehave and/or generally | ||
6 | * screw up. It might even work. | ||
7 | * | ||
8 | * This code REQUIRES 2.1.15 or higher | ||
9 | * | ||
10 | * This module: | ||
11 | * This module is free software; you can redistribute it and/or | ||
12 | * modify it under the terms of the GNU General Public License | ||
13 | * as published by the Free Software Foundation; either version | ||
14 | * 2 of the License, or (at your option) any later version. | ||
15 | * | ||
16 | * History | ||
17 | * X.25 001 Jonathan Naylor Started coding. | ||
18 | */ | ||
19 | |||
20 | #include <linux/config.h> | ||
21 | #include <linux/if_arp.h> | ||
22 | #include <linux/init.h> | ||
23 | #include <net/x25.h> | ||
24 | |||
25 | struct list_head x25_route_list = LIST_HEAD_INIT(x25_route_list); | ||
26 | DEFINE_RWLOCK(x25_route_list_lock); | ||
27 | |||
28 | /* | ||
29 | * Add a new route. | ||
30 | */ | ||
31 | static int x25_add_route(struct x25_address *address, unsigned int sigdigits, | ||
32 | struct net_device *dev) | ||
33 | { | ||
34 | struct x25_route *rt; | ||
35 | struct list_head *entry; | ||
36 | int rc = -EINVAL; | ||
37 | |||
38 | write_lock_bh(&x25_route_list_lock); | ||
39 | |||
40 | list_for_each(entry, &x25_route_list) { | ||
41 | rt = list_entry(entry, struct x25_route, node); | ||
42 | |||
43 | if (!memcmp(&rt->address, address, sigdigits) && | ||
44 | rt->sigdigits == sigdigits) | ||
45 | goto out; | ||
46 | } | ||
47 | |||
48 | rt = kmalloc(sizeof(*rt), GFP_ATOMIC); | ||
49 | rc = -ENOMEM; | ||
50 | if (!rt) | ||
51 | goto out; | ||
52 | |||
53 | strcpy(rt->address.x25_addr, "000000000000000"); | ||
54 | memcpy(rt->address.x25_addr, address->x25_addr, sigdigits); | ||
55 | |||
56 | rt->sigdigits = sigdigits; | ||
57 | rt->dev = dev; | ||
58 | atomic_set(&rt->refcnt, 1); | ||
59 | |||
60 | list_add(&rt->node, &x25_route_list); | ||
61 | rc = 0; | ||
62 | out: | ||
63 | write_unlock_bh(&x25_route_list_lock); | ||
64 | return rc; | ||
65 | } | ||
66 | |||
67 | /** | ||
68 | * __x25_remove_route - remove route from x25_route_list | ||
69 | * @rt - route to remove | ||
70 | * | ||
71 | * Remove route from x25_route_list. If it was there. | ||
72 | * Caller must hold x25_route_list_lock. | ||
73 | */ | ||
74 | static void __x25_remove_route(struct x25_route *rt) | ||
75 | { | ||
76 | if (rt->node.next) { | ||
77 | list_del(&rt->node); | ||
78 | x25_route_put(rt); | ||
79 | } | ||
80 | } | ||
81 | |||
82 | static int x25_del_route(struct x25_address *address, unsigned int sigdigits, | ||
83 | struct net_device *dev) | ||
84 | { | ||
85 | struct x25_route *rt; | ||
86 | struct list_head *entry; | ||
87 | int rc = -EINVAL; | ||
88 | |||
89 | write_lock_bh(&x25_route_list_lock); | ||
90 | |||
91 | list_for_each(entry, &x25_route_list) { | ||
92 | rt = list_entry(entry, struct x25_route, node); | ||
93 | |||
94 | if (!memcmp(&rt->address, address, sigdigits) && | ||
95 | rt->sigdigits == sigdigits && rt->dev == dev) { | ||
96 | __x25_remove_route(rt); | ||
97 | rc = 0; | ||
98 | break; | ||
99 | } | ||
100 | } | ||
101 | |||
102 | write_unlock_bh(&x25_route_list_lock); | ||
103 | return rc; | ||
104 | } | ||
105 | |||
106 | /* | ||
107 | * A device has been removed, remove its routes. | ||
108 | */ | ||
109 | void x25_route_device_down(struct net_device *dev) | ||
110 | { | ||
111 | struct x25_route *rt; | ||
112 | struct list_head *entry, *tmp; | ||
113 | |||
114 | write_lock_bh(&x25_route_list_lock); | ||
115 | |||
116 | list_for_each_safe(entry, tmp, &x25_route_list) { | ||
117 | rt = list_entry(entry, struct x25_route, node); | ||
118 | |||
119 | if (rt->dev == dev) | ||
120 | __x25_remove_route(rt); | ||
121 | } | ||
122 | write_unlock_bh(&x25_route_list_lock); | ||
123 | } | ||
124 | |||
125 | /* | ||
126 | * Check that the device given is a valid X.25 interface that is "up". | ||
127 | */ | ||
128 | struct net_device *x25_dev_get(char *devname) | ||
129 | { | ||
130 | struct net_device *dev = dev_get_by_name(devname); | ||
131 | |||
132 | if (dev && | ||
133 | (!(dev->flags & IFF_UP) || (dev->type != ARPHRD_X25 | ||
134 | #if defined(CONFIG_LLC) || defined(CONFIG_LLC_MODULE) | ||
135 | && dev->type != ARPHRD_ETHER | ||
136 | #endif | ||
137 | ))) | ||
138 | dev_put(dev); | ||
139 | |||
140 | return dev; | ||
141 | } | ||
142 | |||
143 | /** | ||
144 | * x25_get_route - Find a route given an X.25 address. | ||
145 | * @addr - address to find a route for | ||
146 | * | ||
147 | * Find a route given an X.25 address. | ||
148 | */ | ||
149 | struct x25_route *x25_get_route(struct x25_address *addr) | ||
150 | { | ||
151 | struct x25_route *rt, *use = NULL; | ||
152 | struct list_head *entry; | ||
153 | |||
154 | read_lock_bh(&x25_route_list_lock); | ||
155 | |||
156 | list_for_each(entry, &x25_route_list) { | ||
157 | rt = list_entry(entry, struct x25_route, node); | ||
158 | |||
159 | if (!memcmp(&rt->address, addr, rt->sigdigits)) { | ||
160 | if (!use) | ||
161 | use = rt; | ||
162 | else if (rt->sigdigits > use->sigdigits) | ||
163 | use = rt; | ||
164 | } | ||
165 | } | ||
166 | |||
167 | if (use) | ||
168 | x25_route_hold(use); | ||
169 | |||
170 | read_unlock_bh(&x25_route_list_lock); | ||
171 | return use; | ||
172 | } | ||
173 | |||
174 | /* | ||
175 | * Handle the ioctls that control the routing functions. | ||
176 | */ | ||
177 | int x25_route_ioctl(unsigned int cmd, void __user *arg) | ||
178 | { | ||
179 | struct x25_route_struct rt; | ||
180 | struct net_device *dev; | ||
181 | int rc = -EINVAL; | ||
182 | |||
183 | if (cmd != SIOCADDRT && cmd != SIOCDELRT) | ||
184 | goto out; | ||
185 | |||
186 | rc = -EFAULT; | ||
187 | if (copy_from_user(&rt, arg, sizeof(rt))) | ||
188 | goto out; | ||
189 | |||
190 | rc = -EINVAL; | ||
191 | if (rt.sigdigits < 0 || rt.sigdigits > 15) | ||
192 | goto out; | ||
193 | |||
194 | dev = x25_dev_get(rt.device); | ||
195 | if (!dev) | ||
196 | goto out; | ||
197 | |||
198 | if (cmd == SIOCADDRT) | ||
199 | rc = x25_add_route(&rt.address, rt.sigdigits, dev); | ||
200 | else | ||
201 | rc = x25_del_route(&rt.address, rt.sigdigits, dev); | ||
202 | dev_put(dev); | ||
203 | out: | ||
204 | return rc; | ||
205 | } | ||
206 | |||
207 | /* | ||
208 | * Release all memory associated with X.25 routing structures. | ||
209 | */ | ||
210 | void __exit x25_route_free(void) | ||
211 | { | ||
212 | struct x25_route *rt; | ||
213 | struct list_head *entry, *tmp; | ||
214 | |||
215 | write_lock_bh(&x25_route_list_lock); | ||
216 | list_for_each_safe(entry, tmp, &x25_route_list) { | ||
217 | rt = list_entry(entry, struct x25_route, node); | ||
218 | __x25_remove_route(rt); | ||
219 | } | ||
220 | write_unlock_bh(&x25_route_list_lock); | ||
221 | } | ||