Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /** -*- linux-c -*- *********************************************************** |
| 2 | * Linux PPP over Ethernet (PPPoX/PPPoE) Sockets |
| 3 | * |
| 4 | * PPPoX --- Generic PPP encapsulation socket family |
| 5 | * PPPoE --- PPP over Ethernet (RFC 2516) |
| 6 | * |
| 7 | * |
| 8 | * Version: 0.7.0 |
| 9 | * |
Florian Zumbiehl | 90719db | 2007-03-02 13:16:56 -0800 | [diff] [blame] | 10 | * 070228 : Fix to allow multiple sessions with same remote MAC and same |
| 11 | * session id by including the local device ifindex in the |
| 12 | * tuple identifying a session. This also ensures packets can't |
| 13 | * be injected into a session from interfaces other than the one |
| 14 | * specified by userspace. Florian Zumbiehl <florz@florz.de> |
| 15 | * (Oh, BTW, this one is YYMMDD, in case you were wondering ...) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | * 220102 : Fix module use count on failure in pppoe_create, pppox_sk -acme |
| 17 | * 030700 : Fixed connect logic to allow for disconnect. |
| 18 | * 270700 : Fixed potential SMP problems; we must protect against |
| 19 | * simultaneous invocation of ppp_input |
| 20 | * and ppp_unregister_channel. |
| 21 | * 040800 : Respect reference count mechanisms on net-devices. |
| 22 | * 200800 : fix kfree(skb) in pppoe_rcv (acme) |
| 23 | * Module reference count is decremented in the right spot now, |
| 24 | * guards against sock_put not actually freeing the sk |
| 25 | * in pppoe_release. |
| 26 | * 051000 : Initialization cleanup. |
| 27 | * 111100 : Fix recvmsg. |
| 28 | * 050101 : Fix PADT procesing. |
| 29 | * 140501 : Use pppoe_rcv_core to handle all backlog. (Alexey) |
| 30 | * 170701 : Do not lock_sock with rwlock held. (DaveM) |
| 31 | * Ignore discovery frames if user has socket |
| 32 | * locked. (DaveM) |
| 33 | * Ignore return value of dev_queue_xmit in __pppoe_xmit |
| 34 | * or else we may kfree an SKB twice. (DaveM) |
| 35 | * 190701 : When doing copies of skb's in __pppoe_xmit, always delete |
| 36 | * the original skb that was passed in on success, never on |
| 37 | * failure. Delete the copy of the skb on failure to avoid |
| 38 | * a memory leak. |
| 39 | * 081001 : Misc. cleanup (licence string, non-blocking, prevent |
| 40 | * reference of device on close). |
| 41 | * 121301 : New ppp channels interface; cannot unregister a channel |
| 42 | * from interrupts. Thus, we mark the socket as a ZOMBIE |
| 43 | * and do the unregistration later. |
| 44 | * 081002 : seq_file support for proc stuff -acme |
| 45 | * 111602 : Merge all 2.4 fixes into 2.5/2.6 tree. Label 2.5/2.6 |
| 46 | * as version 0.7. Spacing cleanup. |
| 47 | * Author: Michal Ostrowski <mostrows@speakeasy.net> |
| 48 | * Contributors: |
| 49 | * Arnaldo Carvalho de Melo <acme@conectiva.com.br> |
| 50 | * David S. Miller (davem@redhat.com) |
| 51 | * |
| 52 | * License: |
| 53 | * This program is free software; you can redistribute it and/or |
| 54 | * modify it under the terms of the GNU General Public License |
| 55 | * as published by the Free Software Foundation; either version |
| 56 | * 2 of the License, or (at your option) any later version. |
| 57 | * |
| 58 | */ |
| 59 | |
| 60 | #include <linux/string.h> |
| 61 | #include <linux/module.h> |
| 62 | #include <linux/kernel.h> |
| 63 | #include <linux/slab.h> |
| 64 | #include <linux/errno.h> |
| 65 | #include <linux/netdevice.h> |
| 66 | #include <linux/net.h> |
| 67 | #include <linux/inetdevice.h> |
| 68 | #include <linux/etherdevice.h> |
| 69 | #include <linux/skbuff.h> |
| 70 | #include <linux/init.h> |
| 71 | #include <linux/if_ether.h> |
| 72 | #include <linux/if_pppox.h> |
| 73 | #include <linux/ppp_channel.h> |
| 74 | #include <linux/ppp_defs.h> |
| 75 | #include <linux/if_ppp.h> |
| 76 | #include <linux/notifier.h> |
| 77 | #include <linux/file.h> |
| 78 | #include <linux/proc_fs.h> |
| 79 | #include <linux/seq_file.h> |
| 80 | |
Eric W. Biederman | 457c4cb | 2007-09-12 12:01:34 +0200 | [diff] [blame] | 81 | #include <net/net_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | #include <net/sock.h> |
| 83 | |
| 84 | #include <asm/uaccess.h> |
| 85 | |
| 86 | #define PPPOE_HASH_BITS 4 |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 87 | #define PPPOE_HASH_SIZE (1 << PPPOE_HASH_BITS) |
| 88 | #define PPPOE_HASH_MASK (PPPOE_HASH_SIZE - 1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
| 90 | static int pppoe_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg); |
| 91 | static int pppoe_xmit(struct ppp_channel *chan, struct sk_buff *skb); |
| 92 | static int __pppoe_xmit(struct sock *sk, struct sk_buff *skb); |
| 93 | |
David S. Miller | 17ba15f | 2005-12-27 20:57:40 -0800 | [diff] [blame] | 94 | static const struct proto_ops pppoe_ops; |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 95 | static struct ppp_channel_ops pppoe_chan_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | static DEFINE_RWLOCK(pppoe_hash_lock); |
| 97 | |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 98 | /* |
| 99 | * PPPoE could be in the following stages: |
| 100 | * 1) Discovery stage (to obtain remote MAC and Session ID) |
| 101 | * 2) Session stage (MAC and SID are known) |
| 102 | * |
| 103 | * Ethernet frames have a special tag for this but |
| 104 | * we use simplier approach based on session id |
| 105 | */ |
| 106 | static inline bool stage_session(__be16 sid) |
| 107 | { |
| 108 | return sid != 0; |
| 109 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | |
| 111 | static inline int cmp_2_addr(struct pppoe_addr *a, struct pppoe_addr *b) |
| 112 | { |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 113 | return a->sid == b->sid && |
| 114 | (memcmp(a->remote, b->remote, ETH_ALEN) == 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | } |
| 116 | |
Al Viro | b963dc1 | 2007-08-23 02:55:33 -0400 | [diff] [blame] | 117 | static inline int cmp_addr(struct pppoe_addr *a, __be16 sid, char *addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | { |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 119 | return a->sid == sid && |
| 120 | (memcmp(a->remote, addr, ETH_ALEN) == 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | } |
| 122 | |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 123 | #if 8 % PPPOE_HASH_BITS |
Florian Zumbiehl | f1543f8 | 2007-07-31 13:47:57 -0700 | [diff] [blame] | 124 | #error 8 must be a multiple of PPPOE_HASH_BITS |
| 125 | #endif |
| 126 | |
Al Viro | b963dc1 | 2007-08-23 02:55:33 -0400 | [diff] [blame] | 127 | static int hash_item(__be16 sid, unsigned char *addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | { |
Florian Zumbiehl | f1543f8 | 2007-07-31 13:47:57 -0700 | [diff] [blame] | 129 | unsigned char hash = 0; |
| 130 | unsigned int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 132 | for (i = 0; i < ETH_ALEN; i++) |
Florian Zumbiehl | f1543f8 | 2007-07-31 13:47:57 -0700 | [diff] [blame] | 133 | hash ^= addr[i]; |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 134 | for (i = 0; i < sizeof(sid_t) * 8; i += 8) |
| 135 | hash ^= (__force __u32)sid >> i; |
| 136 | for (i = 8; (i >>= 1) >= PPPOE_HASH_BITS;) |
| 137 | hash ^= hash >> i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 139 | return hash & PPPOE_HASH_MASK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | } |
| 141 | |
| 142 | /* zeroed because its in .bss */ |
| 143 | static struct pppox_sock *item_hash_table[PPPOE_HASH_SIZE]; |
| 144 | |
| 145 | /********************************************************************** |
| 146 | * |
| 147 | * Set/get/delete/rehash items (internal versions) |
| 148 | * |
| 149 | **********************************************************************/ |
Al Viro | b963dc1 | 2007-08-23 02:55:33 -0400 | [diff] [blame] | 150 | static struct pppox_sock *__get_item(__be16 sid, unsigned char *addr, int ifindex) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | { |
| 152 | int hash = hash_item(sid, addr); |
| 153 | struct pppox_sock *ret; |
| 154 | |
| 155 | ret = item_hash_table[hash]; |
| 156 | |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 157 | while (ret) { |
| 158 | if (cmp_addr(&ret->pppoe_pa, sid, addr) && |
| 159 | ret->pppoe_ifindex == ifindex) |
| 160 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 162 | ret = ret->next; |
| 163 | } |
| 164 | |
| 165 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | } |
| 167 | |
| 168 | static int __set_item(struct pppox_sock *po) |
| 169 | { |
| 170 | int hash = hash_item(po->pppoe_pa.sid, po->pppoe_pa.remote); |
| 171 | struct pppox_sock *ret; |
| 172 | |
| 173 | ret = item_hash_table[hash]; |
| 174 | while (ret) { |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 175 | if (cmp_2_addr(&ret->pppoe_pa, &po->pppoe_pa) && |
| 176 | ret->pppoe_ifindex == po->pppoe_ifindex) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | return -EALREADY; |
| 178 | |
| 179 | ret = ret->next; |
| 180 | } |
| 181 | |
Florian Zumbiehl | 90719db | 2007-03-02 13:16:56 -0800 | [diff] [blame] | 182 | po->next = item_hash_table[hash]; |
| 183 | item_hash_table[hash] = po; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | |
| 185 | return 0; |
| 186 | } |
| 187 | |
Al Viro | b963dc1 | 2007-08-23 02:55:33 -0400 | [diff] [blame] | 188 | static struct pppox_sock *__delete_item(__be16 sid, char *addr, int ifindex) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | { |
| 190 | int hash = hash_item(sid, addr); |
| 191 | struct pppox_sock *ret, **src; |
| 192 | |
| 193 | ret = item_hash_table[hash]; |
| 194 | src = &item_hash_table[hash]; |
| 195 | |
| 196 | while (ret) { |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 197 | if (cmp_addr(&ret->pppoe_pa, sid, addr) && |
| 198 | ret->pppoe_ifindex == ifindex) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | *src = ret->next; |
| 200 | break; |
| 201 | } |
| 202 | |
| 203 | src = &ret->next; |
| 204 | ret = ret->next; |
| 205 | } |
| 206 | |
| 207 | return ret; |
| 208 | } |
| 209 | |
| 210 | /********************************************************************** |
| 211 | * |
| 212 | * Set/get/delete/rehash items |
| 213 | * |
| 214 | **********************************************************************/ |
Al Viro | b963dc1 | 2007-08-23 02:55:33 -0400 | [diff] [blame] | 215 | static inline struct pppox_sock *get_item(__be16 sid, |
Florian Zumbiehl | 90719db | 2007-03-02 13:16:56 -0800 | [diff] [blame] | 216 | unsigned char *addr, int ifindex) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | { |
| 218 | struct pppox_sock *po; |
| 219 | |
| 220 | read_lock_bh(&pppoe_hash_lock); |
Florian Zumbiehl | 90719db | 2007-03-02 13:16:56 -0800 | [diff] [blame] | 221 | po = __get_item(sid, addr, ifindex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | if (po) |
| 223 | sock_hold(sk_pppox(po)); |
| 224 | read_unlock_bh(&pppoe_hash_lock); |
| 225 | |
| 226 | return po; |
| 227 | } |
| 228 | |
| 229 | static inline struct pppox_sock *get_item_by_addr(struct sockaddr_pppox *sp) |
| 230 | { |
Florian Zumbiehl | bfafb26 | 2007-04-20 16:56:31 -0700 | [diff] [blame] | 231 | struct net_device *dev; |
Florian Zumbiehl | 90719db | 2007-03-02 13:16:56 -0800 | [diff] [blame] | 232 | int ifindex; |
| 233 | |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 234 | dev = dev_get_by_name(&init_net, sp->sa_addr.pppoe.dev); |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 235 | if (!dev) |
Florian Zumbiehl | 90719db | 2007-03-02 13:16:56 -0800 | [diff] [blame] | 236 | return NULL; |
| 237 | ifindex = dev->ifindex; |
| 238 | dev_put(dev); |
| 239 | return get_item(sp->sa_addr.pppoe.sid, sp->sa_addr.pppoe.remote, ifindex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | } |
| 241 | |
Al Viro | b963dc1 | 2007-08-23 02:55:33 -0400 | [diff] [blame] | 242 | static inline struct pppox_sock *delete_item(__be16 sid, char *addr, int ifindex) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | { |
| 244 | struct pppox_sock *ret; |
| 245 | |
| 246 | write_lock_bh(&pppoe_hash_lock); |
Florian Zumbiehl | 90719db | 2007-03-02 13:16:56 -0800 | [diff] [blame] | 247 | ret = __delete_item(sid, addr, ifindex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | write_unlock_bh(&pppoe_hash_lock); |
| 249 | |
| 250 | return ret; |
| 251 | } |
| 252 | |
| 253 | |
| 254 | |
| 255 | /*************************************************************************** |
| 256 | * |
| 257 | * Handler for device events. |
| 258 | * Certain device events require that sockets be unconnected. |
| 259 | * |
| 260 | **************************************************************************/ |
| 261 | |
| 262 | static void pppoe_flush_dev(struct net_device *dev) |
| 263 | { |
| 264 | int hash; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | BUG_ON(dev == NULL); |
| 266 | |
Michal Ostrowski | 42dc9cd | 2007-04-20 16:59:24 -0700 | [diff] [blame] | 267 | write_lock_bh(&pppoe_hash_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | for (hash = 0; hash < PPPOE_HASH_SIZE; hash++) { |
| 269 | struct pppox_sock *po = item_hash_table[hash]; |
| 270 | |
| 271 | while (po != NULL) { |
Michal Ostrowski | 42dc9cd | 2007-04-20 16:59:24 -0700 | [diff] [blame] | 272 | struct sock *sk = sk_pppox(po); |
| 273 | if (po->pppoe_dev != dev) { |
| 274 | po = po->next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | continue; |
| 276 | } |
Michal Ostrowski | 42dc9cd | 2007-04-20 16:59:24 -0700 | [diff] [blame] | 277 | po->pppoe_dev = NULL; |
| 278 | dev_put(dev); |
| 279 | |
| 280 | |
| 281 | /* We always grab the socket lock, followed by the |
| 282 | * pppoe_hash_lock, in that order. Since we should |
| 283 | * hold the sock lock while doing any unbinding, |
| 284 | * we need to release the lock we're holding. |
| 285 | * Hold a reference to the sock so it doesn't disappear |
| 286 | * as we're jumping between locks. |
| 287 | */ |
| 288 | |
| 289 | sock_hold(sk); |
| 290 | |
| 291 | write_unlock_bh(&pppoe_hash_lock); |
| 292 | lock_sock(sk); |
| 293 | |
| 294 | if (sk->sk_state & (PPPOX_CONNECTED | PPPOX_BOUND)) { |
| 295 | pppox_unbind_sock(sk); |
| 296 | sk->sk_state = PPPOX_ZOMBIE; |
| 297 | sk->sk_state_change(sk); |
| 298 | } |
| 299 | |
| 300 | release_sock(sk); |
| 301 | sock_put(sk); |
| 302 | |
| 303 | /* Restart scan at the beginning of this hash chain. |
| 304 | * While the lock was dropped the chain contents may |
| 305 | * have changed. |
| 306 | */ |
| 307 | write_lock_bh(&pppoe_hash_lock); |
| 308 | po = item_hash_table[hash]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | } |
| 310 | } |
Michal Ostrowski | 42dc9cd | 2007-04-20 16:59:24 -0700 | [diff] [blame] | 311 | write_unlock_bh(&pppoe_hash_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | } |
| 313 | |
| 314 | static int pppoe_device_event(struct notifier_block *this, |
| 315 | unsigned long event, void *ptr) |
| 316 | { |
| 317 | struct net_device *dev = (struct net_device *) ptr; |
| 318 | |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 319 | if (dev_net(dev) != &init_net) |
Eric W. Biederman | e9dc865 | 2007-09-12 13:02:17 +0200 | [diff] [blame] | 320 | return NOTIFY_DONE; |
| 321 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | /* Only look at sockets that are using this specific device. */ |
| 323 | switch (event) { |
| 324 | case NETDEV_CHANGEMTU: |
| 325 | /* A change in mtu is a bad thing, requiring |
| 326 | * LCP re-negotiation. |
| 327 | */ |
| 328 | |
| 329 | case NETDEV_GOING_DOWN: |
| 330 | case NETDEV_DOWN: |
| 331 | /* Find every socket on this device and kill it. */ |
| 332 | pppoe_flush_dev(dev); |
| 333 | break; |
| 334 | |
| 335 | default: |
| 336 | break; |
| 337 | }; |
| 338 | |
| 339 | return NOTIFY_DONE; |
| 340 | } |
| 341 | |
| 342 | |
| 343 | static struct notifier_block pppoe_notifier = { |
| 344 | .notifier_call = pppoe_device_event, |
| 345 | }; |
| 346 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | /************************************************************************ |
| 348 | * |
| 349 | * Do the real work of receiving a PPPoE Session frame. |
| 350 | * |
| 351 | ***********************************************************************/ |
| 352 | static int pppoe_rcv_core(struct sock *sk, struct sk_buff *skb) |
| 353 | { |
| 354 | struct pppox_sock *po = pppox_sk(sk); |
Florian Zumbiehl | bfafb26 | 2007-04-20 16:56:31 -0700 | [diff] [blame] | 355 | struct pppox_sock *relay_po; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | |
| 357 | if (sk->sk_state & PPPOX_BOUND) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | ppp_input(&po->chan, skb); |
| 359 | } else if (sk->sk_state & PPPOX_RELAY) { |
| 360 | relay_po = get_item_by_addr(&po->pppoe_relay); |
| 361 | |
| 362 | if (relay_po == NULL) |
| 363 | goto abort_kfree; |
| 364 | |
| 365 | if ((sk_pppox(relay_po)->sk_state & PPPOX_CONNECTED) == 0) |
| 366 | goto abort_put; |
| 367 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | if (!__pppoe_xmit(sk_pppox(relay_po), skb)) |
| 369 | goto abort_put; |
| 370 | } else { |
| 371 | if (sock_queue_rcv_skb(sk, skb)) |
| 372 | goto abort_kfree; |
| 373 | } |
| 374 | |
| 375 | return NET_RX_SUCCESS; |
| 376 | |
| 377 | abort_put: |
| 378 | sock_put(sk_pppox(relay_po)); |
| 379 | |
| 380 | abort_kfree: |
| 381 | kfree_skb(skb); |
| 382 | return NET_RX_DROP; |
| 383 | } |
| 384 | |
| 385 | /************************************************************************ |
| 386 | * |
| 387 | * Receive wrapper called in BH context. |
| 388 | * |
| 389 | ***********************************************************************/ |
| 390 | static int pppoe_rcv(struct sk_buff *skb, |
| 391 | struct net_device *dev, |
David S. Miller | f2ccd8f | 2005-08-09 19:34:12 -0700 | [diff] [blame] | 392 | struct packet_type *pt, |
| 393 | struct net_device *orig_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | |
| 395 | { |
| 396 | struct pppoe_hdr *ph; |
| 397 | struct pppox_sock *po; |
Herbert Xu | 392fdb0 | 2008-06-10 14:07:25 -0700 | [diff] [blame] | 398 | int len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 400 | skb = skb_share_check(skb, GFP_ATOMIC); |
| 401 | if (!skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | goto out; |
| 403 | |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 404 | if (dev_net(dev) != &init_net) |
Eric W. Biederman | e730c15 | 2007-09-17 11:53:39 -0700 | [diff] [blame] | 405 | goto drop; |
| 406 | |
Herbert Xu | 31bac44 | 2007-09-16 16:19:20 -0700 | [diff] [blame] | 407 | if (!pskb_may_pull(skb, sizeof(struct pppoe_hdr))) |
| 408 | goto drop; |
| 409 | |
Arnaldo Carvalho de Melo | 797659f | 2007-03-10 15:56:08 -0300 | [diff] [blame] | 410 | ph = pppoe_hdr(skb); |
Herbert Xu | 392fdb0 | 2008-06-10 14:07:25 -0700 | [diff] [blame] | 411 | len = ntohs(ph->length); |
| 412 | |
| 413 | skb_pull_rcsum(skb, sizeof(*ph)); |
| 414 | if (skb->len < len) |
| 415 | goto drop; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | |
David S. Miller | 263e69c | 2008-10-30 23:11:44 -0700 | [diff] [blame] | 417 | if (pskb_trim_rcsum(skb, len)) |
Herbert Xu | 392fdb0 | 2008-06-10 14:07:25 -0700 | [diff] [blame] | 418 | goto drop; |
| 419 | |
David S. Miller | 263e69c | 2008-10-30 23:11:44 -0700 | [diff] [blame] | 420 | po = get_item(ph->sid, eth_hdr(skb)->h_source, dev->ifindex); |
| 421 | if (!po) |
Herbert Xu | 392fdb0 | 2008-06-10 14:07:25 -0700 | [diff] [blame] | 422 | goto drop; |
| 423 | |
| 424 | return sk_receive_skb(sk_pppox(po), skb, 0); |
| 425 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | drop: |
| 427 | kfree_skb(skb); |
| 428 | out: |
| 429 | return NET_RX_DROP; |
| 430 | } |
| 431 | |
| 432 | /************************************************************************ |
| 433 | * |
| 434 | * Receive a PPPoE Discovery frame. |
| 435 | * This is solely for detection of PADT frames |
| 436 | * |
| 437 | ***********************************************************************/ |
| 438 | static int pppoe_disc_rcv(struct sk_buff *skb, |
| 439 | struct net_device *dev, |
David S. Miller | f2ccd8f | 2005-08-09 19:34:12 -0700 | [diff] [blame] | 440 | struct packet_type *pt, |
| 441 | struct net_device *orig_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | |
| 443 | { |
| 444 | struct pppoe_hdr *ph; |
| 445 | struct pppox_sock *po; |
| 446 | |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 447 | if (dev_net(dev) != &init_net) |
Eric W. Biederman | e730c15 | 2007-09-17 11:53:39 -0700 | [diff] [blame] | 448 | goto abort; |
| 449 | |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 450 | skb = skb_share_check(skb, GFP_ATOMIC); |
| 451 | if (!skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | goto out; |
| 453 | |
Herbert Xu | bc6cffd | 2008-06-10 14:08:25 -0700 | [diff] [blame] | 454 | if (!pskb_may_pull(skb, sizeof(struct pppoe_hdr))) |
| 455 | goto abort; |
| 456 | |
Arnaldo Carvalho de Melo | 797659f | 2007-03-10 15:56:08 -0300 | [diff] [blame] | 457 | ph = pppoe_hdr(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | if (ph->code != PADT_CODE) |
| 459 | goto abort; |
| 460 | |
Al Viro | b963dc1 | 2007-08-23 02:55:33 -0400 | [diff] [blame] | 461 | po = get_item(ph->sid, eth_hdr(skb)->h_source, dev->ifindex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | if (po) { |
| 463 | struct sock *sk = sk_pppox(po); |
| 464 | |
| 465 | bh_lock_sock(sk); |
| 466 | |
| 467 | /* If the user has locked the socket, just ignore |
| 468 | * the packet. With the way two rcv protocols hook into |
| 469 | * one socket family type, we cannot (easily) distinguish |
| 470 | * what kind of SKB it is during backlog rcv. |
| 471 | */ |
| 472 | if (sock_owned_by_user(sk) == 0) { |
| 473 | /* We're no longer connect at the PPPOE layer, |
| 474 | * and must wait for ppp channel to disconnect us. |
| 475 | */ |
| 476 | sk->sk_state = PPPOX_ZOMBIE; |
| 477 | } |
| 478 | |
| 479 | bh_unlock_sock(sk); |
| 480 | sock_put(sk); |
| 481 | } |
| 482 | |
| 483 | abort: |
| 484 | kfree_skb(skb); |
| 485 | out: |
| 486 | return NET_RX_SUCCESS; /* Lies... :-) */ |
| 487 | } |
| 488 | |
| 489 | static struct packet_type pppoes_ptype = { |
| 490 | .type = __constant_htons(ETH_P_PPP_SES), |
| 491 | .func = pppoe_rcv, |
| 492 | }; |
| 493 | |
| 494 | static struct packet_type pppoed_ptype = { |
| 495 | .type = __constant_htons(ETH_P_PPP_DISC), |
| 496 | .func = pppoe_disc_rcv, |
| 497 | }; |
| 498 | |
| 499 | static struct proto pppoe_sk_proto = { |
| 500 | .name = "PPPOE", |
| 501 | .owner = THIS_MODULE, |
| 502 | .obj_size = sizeof(struct pppox_sock), |
| 503 | }; |
| 504 | |
| 505 | /*********************************************************************** |
| 506 | * |
| 507 | * Initialize a new struct sock. |
| 508 | * |
| 509 | **********************************************************************/ |
Eric W. Biederman | 1b8d7ae | 2007-10-08 23:24:22 -0700 | [diff] [blame] | 510 | static int pppoe_create(struct net *net, struct socket *sock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | struct sock *sk; |
| 513 | |
Pavel Emelyanov | 6257ff2 | 2007-11-01 00:39:31 -0700 | [diff] [blame] | 514 | sk = sk_alloc(net, PF_PPPOX, GFP_KERNEL, &pppoe_sk_proto); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | if (!sk) |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 516 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | |
| 518 | sock_init_data(sock, sk); |
| 519 | |
| 520 | sock->state = SS_UNCONNECTED; |
| 521 | sock->ops = &pppoe_ops; |
| 522 | |
| 523 | sk->sk_backlog_rcv = pppoe_rcv_core; |
| 524 | sk->sk_state = PPPOX_NONE; |
| 525 | sk->sk_type = SOCK_STREAM; |
| 526 | sk->sk_family = PF_PPPOX; |
| 527 | sk->sk_protocol = PX_PROTO_OE; |
| 528 | |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 529 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | } |
| 531 | |
| 532 | static int pppoe_release(struct socket *sock) |
| 533 | { |
| 534 | struct sock *sk = sock->sk; |
| 535 | struct pppox_sock *po; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | |
| 537 | if (!sk) |
| 538 | return 0; |
| 539 | |
Michal Ostrowski | 42dc9cd | 2007-04-20 16:59:24 -0700 | [diff] [blame] | 540 | lock_sock(sk); |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 541 | if (sock_flag(sk, SOCK_DEAD)) { |
Michal Ostrowski | 42dc9cd | 2007-04-20 16:59:24 -0700 | [diff] [blame] | 542 | release_sock(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | return -EBADF; |
Michal Ostrowski | 42dc9cd | 2007-04-20 16:59:24 -0700 | [diff] [blame] | 544 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | |
| 546 | pppox_unbind_sock(sk); |
| 547 | |
| 548 | /* Signal the death of the socket. */ |
| 549 | sk->sk_state = PPPOX_DEAD; |
| 550 | |
Michal Ostrowski | 42dc9cd | 2007-04-20 16:59:24 -0700 | [diff] [blame] | 551 | |
| 552 | /* Write lock on hash lock protects the entire "po" struct from |
| 553 | * concurrent updates via pppoe_flush_dev. The "po" struct should |
| 554 | * be considered part of the hash table contents, thus protected |
| 555 | * by the hash table lock */ |
| 556 | write_lock_bh(&pppoe_hash_lock); |
| 557 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | po = pppox_sk(sk); |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 559 | if (stage_session(po->pppoe_pa.sid)) { |
Michal Ostrowski | 42dc9cd | 2007-04-20 16:59:24 -0700 | [diff] [blame] | 560 | __delete_item(po->pppoe_pa.sid, |
| 561 | po->pppoe_pa.remote, po->pppoe_ifindex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | } |
| 563 | |
Michal Ostrowski | 42dc9cd | 2007-04-20 16:59:24 -0700 | [diff] [blame] | 564 | if (po->pppoe_dev) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | dev_put(po->pppoe_dev); |
Michal Ostrowski | 42dc9cd | 2007-04-20 16:59:24 -0700 | [diff] [blame] | 566 | po->pppoe_dev = NULL; |
| 567 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | |
Michal Ostrowski | 42dc9cd | 2007-04-20 16:59:24 -0700 | [diff] [blame] | 569 | write_unlock_bh(&pppoe_hash_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | |
| 571 | sock_orphan(sk); |
| 572 | sock->sk = NULL; |
| 573 | |
| 574 | skb_queue_purge(&sk->sk_receive_queue); |
Michal Ostrowski | 42dc9cd | 2007-04-20 16:59:24 -0700 | [diff] [blame] | 575 | release_sock(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | sock_put(sk); |
| 577 | |
Florian Zumbiehl | bfafb26 | 2007-04-20 16:56:31 -0700 | [diff] [blame] | 578 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | } |
| 580 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | static int pppoe_connect(struct socket *sock, struct sockaddr *uservaddr, |
| 582 | int sockaddr_len, int flags) |
| 583 | { |
| 584 | struct sock *sk = sock->sk; |
Florian Zumbiehl | 90719db | 2007-03-02 13:16:56 -0800 | [diff] [blame] | 585 | struct net_device *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | struct sockaddr_pppox *sp = (struct sockaddr_pppox *) uservaddr; |
| 587 | struct pppox_sock *po = pppox_sk(sk); |
| 588 | int error; |
| 589 | |
| 590 | lock_sock(sk); |
| 591 | |
| 592 | error = -EINVAL; |
| 593 | if (sp->sa_protocol != PX_PROTO_OE) |
| 594 | goto end; |
| 595 | |
| 596 | /* Check for already bound sockets */ |
| 597 | error = -EBUSY; |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 598 | if ((sk->sk_state & PPPOX_CONNECTED) && |
| 599 | stage_session(sp->sa_addr.pppoe.sid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | goto end; |
| 601 | |
| 602 | /* Check for already disconnected sockets, on attempts to disconnect */ |
| 603 | error = -EALREADY; |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 604 | if ((sk->sk_state & PPPOX_DEAD) && |
| 605 | !stage_session(sp->sa_addr.pppoe.sid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | goto end; |
| 607 | |
| 608 | error = 0; |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 609 | |
| 610 | /* Delete the old binding */ |
| 611 | if (stage_session(po->pppoe_pa.sid)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | pppox_unbind_sock(sk); |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 613 | delete_item(po->pppoe_pa.sid, po->pppoe_pa.remote, po->pppoe_ifindex); |
| 614 | if (po->pppoe_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | dev_put(po->pppoe_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | memset(sk_pppox(po) + 1, 0, |
| 617 | sizeof(struct pppox_sock) - sizeof(struct sock)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | sk->sk_state = PPPOX_NONE; |
| 619 | } |
| 620 | |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 621 | /* Re-bind in session stage only */ |
| 622 | if (stage_session(sp->sa_addr.pppoe.sid)) { |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 623 | dev = dev_get_by_name(&init_net, sp->sa_addr.pppoe.dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | |
| 625 | error = -ENODEV; |
| 626 | if (!dev) |
| 627 | goto end; |
| 628 | |
| 629 | po->pppoe_dev = dev; |
Florian Zumbiehl | 6f30e18 | 2007-03-04 16:03:22 -0800 | [diff] [blame] | 630 | po->pppoe_ifindex = dev->ifindex; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | |
Florian Zumbiehl | 74b885c | 2007-04-20 16:57:27 -0700 | [diff] [blame] | 632 | write_lock_bh(&pppoe_hash_lock); |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 633 | if (!(dev->flags & IFF_UP)) { |
Florian Zumbiehl | 74b885c | 2007-04-20 16:57:27 -0700 | [diff] [blame] | 634 | write_unlock_bh(&pppoe_hash_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | goto err_put; |
Florian Zumbiehl | 74b885c | 2007-04-20 16:57:27 -0700 | [diff] [blame] | 636 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | |
| 638 | memcpy(&po->pppoe_pa, |
| 639 | &sp->sa_addr.pppoe, |
| 640 | sizeof(struct pppoe_addr)); |
| 641 | |
Florian Zumbiehl | 74b885c | 2007-04-20 16:57:27 -0700 | [diff] [blame] | 642 | error = __set_item(po); |
| 643 | write_unlock_bh(&pppoe_hash_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | if (error < 0) |
| 645 | goto err_put; |
| 646 | |
| 647 | po->chan.hdrlen = (sizeof(struct pppoe_hdr) + |
| 648 | dev->hard_header_len); |
| 649 | |
Michal Ostrowski | c9aa689 | 2006-09-27 16:11:25 -0700 | [diff] [blame] | 650 | po->chan.mtu = dev->mtu - sizeof(struct pppoe_hdr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | po->chan.private = sk; |
| 652 | po->chan.ops = &pppoe_chan_ops; |
| 653 | |
| 654 | error = ppp_register_channel(&po->chan); |
| 655 | if (error) |
| 656 | goto err_put; |
| 657 | |
| 658 | sk->sk_state = PPPOX_CONNECTED; |
| 659 | } |
| 660 | |
| 661 | po->num = sp->sa_addr.pppoe.sid; |
| 662 | |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 663 | end: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | release_sock(sk); |
| 665 | return error; |
| 666 | err_put: |
| 667 | if (po->pppoe_dev) { |
| 668 | dev_put(po->pppoe_dev); |
| 669 | po->pppoe_dev = NULL; |
| 670 | } |
| 671 | goto end; |
| 672 | } |
| 673 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | static int pppoe_getname(struct socket *sock, struct sockaddr *uaddr, |
| 675 | int *usockaddr_len, int peer) |
| 676 | { |
| 677 | int len = sizeof(struct sockaddr_pppox); |
| 678 | struct sockaddr_pppox sp; |
| 679 | |
| 680 | sp.sa_family = AF_PPPOX; |
| 681 | sp.sa_protocol = PX_PROTO_OE; |
| 682 | memcpy(&sp.sa_addr.pppoe, &pppox_sk(sock->sk)->pppoe_pa, |
| 683 | sizeof(struct pppoe_addr)); |
| 684 | |
| 685 | memcpy(uaddr, &sp, len); |
| 686 | |
| 687 | *usockaddr_len = len; |
| 688 | |
| 689 | return 0; |
| 690 | } |
| 691 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | static int pppoe_ioctl(struct socket *sock, unsigned int cmd, |
| 693 | unsigned long arg) |
| 694 | { |
| 695 | struct sock *sk = sock->sk; |
| 696 | struct pppox_sock *po = pppox_sk(sk); |
Florian Zumbiehl | 86c1dcf | 2007-07-30 17:48:23 -0700 | [diff] [blame] | 697 | int val; |
| 698 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | |
| 700 | switch (cmd) { |
| 701 | case PPPIOCGMRU: |
| 702 | err = -ENXIO; |
| 703 | |
| 704 | if (!(sk->sk_state & PPPOX_CONNECTED)) |
| 705 | break; |
| 706 | |
| 707 | err = -EFAULT; |
| 708 | if (put_user(po->pppoe_dev->mtu - |
| 709 | sizeof(struct pppoe_hdr) - |
| 710 | PPP_HDRLEN, |
| 711 | (int __user *) arg)) |
| 712 | break; |
| 713 | err = 0; |
| 714 | break; |
| 715 | |
| 716 | case PPPIOCSMRU: |
| 717 | err = -ENXIO; |
| 718 | if (!(sk->sk_state & PPPOX_CONNECTED)) |
| 719 | break; |
| 720 | |
| 721 | err = -EFAULT; |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 722 | if (get_user(val, (int __user *)arg)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | break; |
| 724 | |
| 725 | if (val < (po->pppoe_dev->mtu |
| 726 | - sizeof(struct pppoe_hdr) |
| 727 | - PPP_HDRLEN)) |
| 728 | err = 0; |
| 729 | else |
| 730 | err = -EINVAL; |
| 731 | break; |
| 732 | |
| 733 | case PPPIOCSFLAGS: |
| 734 | err = -EFAULT; |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 735 | if (get_user(val, (int __user *)arg)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | break; |
| 737 | err = 0; |
| 738 | break; |
| 739 | |
| 740 | case PPPOEIOCSFWD: |
| 741 | { |
| 742 | struct pppox_sock *relay_po; |
| 743 | |
| 744 | err = -EBUSY; |
| 745 | if (sk->sk_state & (PPPOX_BOUND | PPPOX_ZOMBIE | PPPOX_DEAD)) |
| 746 | break; |
| 747 | |
| 748 | err = -ENOTCONN; |
| 749 | if (!(sk->sk_state & PPPOX_CONNECTED)) |
| 750 | break; |
| 751 | |
| 752 | /* PPPoE address from the user specifies an outbound |
Florian Zumbiehl | 90719db | 2007-03-02 13:16:56 -0800 | [diff] [blame] | 753 | PPPoE address which frames are forwarded to */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | err = -EFAULT; |
| 755 | if (copy_from_user(&po->pppoe_relay, |
| 756 | (void __user *)arg, |
| 757 | sizeof(struct sockaddr_pppox))) |
| 758 | break; |
| 759 | |
| 760 | err = -EINVAL; |
| 761 | if (po->pppoe_relay.sa_family != AF_PPPOX || |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 762 | po->pppoe_relay.sa_protocol != PX_PROTO_OE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | break; |
| 764 | |
| 765 | /* Check that the socket referenced by the address |
| 766 | actually exists. */ |
| 767 | relay_po = get_item_by_addr(&po->pppoe_relay); |
| 768 | |
| 769 | if (!relay_po) |
| 770 | break; |
| 771 | |
| 772 | sock_put(sk_pppox(relay_po)); |
| 773 | sk->sk_state |= PPPOX_RELAY; |
| 774 | err = 0; |
| 775 | break; |
| 776 | } |
| 777 | |
| 778 | case PPPOEIOCDFWD: |
| 779 | err = -EALREADY; |
| 780 | if (!(sk->sk_state & PPPOX_RELAY)) |
| 781 | break; |
| 782 | |
| 783 | sk->sk_state &= ~PPPOX_RELAY; |
| 784 | err = 0; |
| 785 | break; |
| 786 | |
Florian Zumbiehl | 86c1dcf | 2007-07-30 17:48:23 -0700 | [diff] [blame] | 787 | default: |
| 788 | err = -ENOTTY; |
| 789 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | |
| 791 | return err; |
| 792 | } |
| 793 | |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 794 | static int pppoe_sendmsg(struct kiocb *iocb, struct socket *sock, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | struct msghdr *m, size_t total_len) |
| 796 | { |
Florian Zumbiehl | bfafb26 | 2007-04-20 16:56:31 -0700 | [diff] [blame] | 797 | struct sk_buff *skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | struct sock *sk = sock->sk; |
| 799 | struct pppox_sock *po = pppox_sk(sk); |
Florian Zumbiehl | bfafb26 | 2007-04-20 16:56:31 -0700 | [diff] [blame] | 800 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | struct pppoe_hdr hdr; |
| 802 | struct pppoe_hdr *ph; |
| 803 | struct net_device *dev; |
| 804 | char *start; |
| 805 | |
Florian Zumbiehl | 8aeca8f | 2007-07-30 17:49:13 -0700 | [diff] [blame] | 806 | lock_sock(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED)) { |
| 808 | error = -ENOTCONN; |
| 809 | goto end; |
| 810 | } |
| 811 | |
| 812 | hdr.ver = 1; |
| 813 | hdr.type = 1; |
| 814 | hdr.code = 0; |
| 815 | hdr.sid = po->num; |
| 816 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | dev = po->pppoe_dev; |
| 818 | |
| 819 | error = -EMSGSIZE; |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 820 | if (total_len > (dev->mtu + dev->hard_header_len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | goto end; |
| 822 | |
| 823 | |
| 824 | skb = sock_wmalloc(sk, total_len + dev->hard_header_len + 32, |
| 825 | 0, GFP_KERNEL); |
| 826 | if (!skb) { |
| 827 | error = -ENOMEM; |
| 828 | goto end; |
| 829 | } |
| 830 | |
| 831 | /* Reserve space for headers. */ |
| 832 | skb_reserve(skb, dev->hard_header_len); |
Arnaldo Carvalho de Melo | c1d2bbe | 2007-04-10 20:45:18 -0700 | [diff] [blame] | 833 | skb_reset_network_header(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | |
| 835 | skb->dev = dev; |
| 836 | |
| 837 | skb->priority = sk->sk_priority; |
| 838 | skb->protocol = __constant_htons(ETH_P_PPP_SES); |
| 839 | |
| 840 | ph = (struct pppoe_hdr *) skb_put(skb, total_len + sizeof(struct pppoe_hdr)); |
| 841 | start = (char *) &ph->tag[0]; |
| 842 | |
| 843 | error = memcpy_fromiovec(start, m->msg_iov, total_len); |
| 844 | |
| 845 | if (error < 0) { |
| 846 | kfree_skb(skb); |
| 847 | goto end; |
| 848 | } |
| 849 | |
| 850 | error = total_len; |
Stephen Hemminger | 0c4e858 | 2007-10-09 01:36:32 -0700 | [diff] [blame] | 851 | dev_hard_header(skb, dev, ETH_P_PPP_SES, |
| 852 | po->pppoe_pa.remote, NULL, total_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | |
| 854 | memcpy(ph, &hdr, sizeof(struct pppoe_hdr)); |
| 855 | |
| 856 | ph->length = htons(total_len); |
| 857 | |
| 858 | dev_queue_xmit(skb); |
| 859 | |
| 860 | end: |
| 861 | release_sock(sk); |
| 862 | return error; |
| 863 | } |
| 864 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | /************************************************************************ |
| 866 | * |
| 867 | * xmit function for internal use. |
| 868 | * |
| 869 | ***********************************************************************/ |
| 870 | static int __pppoe_xmit(struct sock *sk, struct sk_buff *skb) |
| 871 | { |
| 872 | struct pppox_sock *po = pppox_sk(sk); |
| 873 | struct net_device *dev = po->pppoe_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | struct pppoe_hdr *ph; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | int data_len = skb->len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | |
| 877 | if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED)) |
| 878 | goto abort; |
| 879 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | if (!dev) |
| 881 | goto abort; |
| 882 | |
Herbert Xu | db7bf6d | 2007-09-16 16:19:50 -0700 | [diff] [blame] | 883 | /* Copy the data if there is no space for the header or if it's |
| 884 | * read-only. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | */ |
Herbert Xu | d9cc204 | 2007-09-16 16:21:16 -0700 | [diff] [blame] | 886 | if (skb_cow_head(skb, sizeof(*ph) + dev->hard_header_len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | goto abort; |
| 888 | |
Herbert Xu | 9355ec2 | 2007-09-16 16:20:21 -0700 | [diff] [blame] | 889 | __skb_push(skb, sizeof(*ph)); |
Herbert Xu | db7bf6d | 2007-09-16 16:19:50 -0700 | [diff] [blame] | 890 | skb_reset_network_header(skb); |
| 891 | |
Herbert Xu | 9355ec2 | 2007-09-16 16:20:21 -0700 | [diff] [blame] | 892 | ph = pppoe_hdr(skb); |
| 893 | ph->ver = 1; |
| 894 | ph->type = 1; |
| 895 | ph->code = 0; |
| 896 | ph->sid = po->num; |
| 897 | ph->length = htons(data_len); |
| 898 | |
| 899 | skb->protocol = __constant_htons(ETH_P_PPP_SES); |
Herbert Xu | db7bf6d | 2007-09-16 16:19:50 -0700 | [diff] [blame] | 900 | skb->dev = dev; |
| 901 | |
Stephen Hemminger | 0c4e858 | 2007-10-09 01:36:32 -0700 | [diff] [blame] | 902 | dev_hard_header(skb, dev, ETH_P_PPP_SES, |
| 903 | po->pppoe_pa.remote, NULL, data_len); |
Herbert Xu | db7bf6d | 2007-09-16 16:19:50 -0700 | [diff] [blame] | 904 | |
Herbert Xu | 21d0c83 | 2007-09-19 10:45:02 -0700 | [diff] [blame] | 905 | dev_queue_xmit(skb); |
Herbert Xu | db7bf6d | 2007-09-16 16:19:50 -0700 | [diff] [blame] | 906 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 907 | return 1; |
| 908 | |
| 909 | abort: |
Herbert Xu | db7bf6d | 2007-09-16 16:19:50 -0700 | [diff] [blame] | 910 | kfree_skb(skb); |
| 911 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | } |
| 913 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | /************************************************************************ |
| 915 | * |
| 916 | * xmit function called by generic PPP driver |
| 917 | * sends PPP frame over PPPoE socket |
| 918 | * |
| 919 | ***********************************************************************/ |
| 920 | static int pppoe_xmit(struct ppp_channel *chan, struct sk_buff *skb) |
| 921 | { |
| 922 | struct sock *sk = (struct sock *) chan->private; |
| 923 | return __pppoe_xmit(sk, skb); |
| 924 | } |
| 925 | |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 926 | static struct ppp_channel_ops pppoe_chan_ops = { |
| 927 | .start_xmit = pppoe_xmit, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | }; |
| 929 | |
| 930 | static int pppoe_recvmsg(struct kiocb *iocb, struct socket *sock, |
| 931 | struct msghdr *m, size_t total_len, int flags) |
| 932 | { |
| 933 | struct sock *sk = sock->sk; |
Florian Zumbiehl | bfafb26 | 2007-04-20 16:56:31 -0700 | [diff] [blame] | 934 | struct sk_buff *skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 | int error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | |
| 937 | if (sk->sk_state & PPPOX_BOUND) { |
| 938 | error = -EIO; |
| 939 | goto end; |
| 940 | } |
| 941 | |
| 942 | skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT, |
| 943 | flags & MSG_DONTWAIT, &error); |
| 944 | |
Florian Zumbiehl | bfafb26 | 2007-04-20 16:56:31 -0700 | [diff] [blame] | 945 | if (error < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 946 | goto end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | |
| 948 | m->msg_namelen = 0; |
| 949 | |
| 950 | if (skb) { |
Stephen Hemminger | 2645a3c | 2008-06-20 21:58:02 -0700 | [diff] [blame] | 951 | total_len = min_t(size_t, total_len, skb->len); |
Herbert Xu | 392fdb0 | 2008-06-10 14:07:25 -0700 | [diff] [blame] | 952 | error = skb_copy_datagram_iovec(skb, 0, m->msg_iov, total_len); |
Arnaldo Carvalho de Melo | 797659f | 2007-03-10 15:56:08 -0300 | [diff] [blame] | 953 | if (error == 0) |
Herbert Xu | 392fdb0 | 2008-06-10 14:07:25 -0700 | [diff] [blame] | 954 | error = total_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 955 | } |
| 956 | |
Arnaldo Carvalho de Melo | 797659f | 2007-03-10 15:56:08 -0300 | [diff] [blame] | 957 | kfree_skb(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | end: |
| 959 | return error; |
| 960 | } |
| 961 | |
| 962 | #ifdef CONFIG_PROC_FS |
| 963 | static int pppoe_seq_show(struct seq_file *seq, void *v) |
| 964 | { |
| 965 | struct pppox_sock *po; |
| 966 | char *dev_name; |
| 967 | |
| 968 | if (v == SEQ_START_TOKEN) { |
| 969 | seq_puts(seq, "Id Address Device\n"); |
| 970 | goto out; |
| 971 | } |
| 972 | |
| 973 | po = v; |
| 974 | dev_name = po->pppoe_pa.dev; |
| 975 | |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 976 | seq_printf(seq, "%08X %pM %8s\n", |
| 977 | po->pppoe_pa.sid, po->pppoe_pa.remote, dev_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 978 | out: |
| 979 | return 0; |
| 980 | } |
| 981 | |
| 982 | static __inline__ struct pppox_sock *pppoe_get_idx(loff_t pos) |
| 983 | { |
Florian Zumbiehl | bfafb26 | 2007-04-20 16:56:31 -0700 | [diff] [blame] | 984 | struct pppox_sock *po; |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 985 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 986 | |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 987 | for (i = 0; i < PPPOE_HASH_SIZE; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | po = item_hash_table[i]; |
| 989 | while (po) { |
| 990 | if (!pos--) |
| 991 | goto out; |
| 992 | po = po->next; |
| 993 | } |
| 994 | } |
| 995 | out: |
| 996 | return po; |
| 997 | } |
| 998 | |
| 999 | static void *pppoe_seq_start(struct seq_file *seq, loff_t *pos) |
Stephen Hemminger | 3c582b3 | 2008-01-23 20:54:07 -0800 | [diff] [blame] | 1000 | __acquires(pppoe_hash_lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | { |
| 1002 | loff_t l = *pos; |
| 1003 | |
| 1004 | read_lock_bh(&pppoe_hash_lock); |
| 1005 | return l ? pppoe_get_idx(--l) : SEQ_START_TOKEN; |
| 1006 | } |
| 1007 | |
| 1008 | static void *pppoe_seq_next(struct seq_file *seq, void *v, loff_t *pos) |
| 1009 | { |
| 1010 | struct pppox_sock *po; |
| 1011 | |
| 1012 | ++*pos; |
| 1013 | if (v == SEQ_START_TOKEN) { |
| 1014 | po = pppoe_get_idx(0); |
| 1015 | goto out; |
| 1016 | } |
| 1017 | po = v; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 1018 | if (po->next) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1019 | po = po->next; |
| 1020 | else { |
| 1021 | int hash = hash_item(po->pppoe_pa.sid, po->pppoe_pa.remote); |
| 1022 | |
| 1023 | while (++hash < PPPOE_HASH_SIZE) { |
| 1024 | po = item_hash_table[hash]; |
| 1025 | if (po) |
| 1026 | break; |
| 1027 | } |
| 1028 | } |
| 1029 | out: |
| 1030 | return po; |
| 1031 | } |
| 1032 | |
| 1033 | static void pppoe_seq_stop(struct seq_file *seq, void *v) |
Stephen Hemminger | 3c582b3 | 2008-01-23 20:54:07 -0800 | [diff] [blame] | 1034 | __releases(pppoe_hash_lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1035 | { |
| 1036 | read_unlock_bh(&pppoe_hash_lock); |
| 1037 | } |
| 1038 | |
Jan Engelhardt | 4101dec | 2009-01-14 13:52:18 -0800 | [diff] [blame] | 1039 | static const struct seq_operations pppoe_seq_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1040 | .start = pppoe_seq_start, |
| 1041 | .next = pppoe_seq_next, |
| 1042 | .stop = pppoe_seq_stop, |
| 1043 | .show = pppoe_seq_show, |
| 1044 | }; |
| 1045 | |
| 1046 | static int pppoe_seq_open(struct inode *inode, struct file *file) |
| 1047 | { |
| 1048 | return seq_open(file, &pppoe_seq_ops); |
| 1049 | } |
| 1050 | |
Arjan van de Ven | d54b1fd | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 1051 | static const struct file_operations pppoe_seq_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1052 | .owner = THIS_MODULE, |
| 1053 | .open = pppoe_seq_open, |
| 1054 | .read = seq_read, |
| 1055 | .llseek = seq_lseek, |
| 1056 | .release = seq_release, |
| 1057 | }; |
| 1058 | |
| 1059 | static int __init pppoe_proc_init(void) |
| 1060 | { |
| 1061 | struct proc_dir_entry *p; |
| 1062 | |
Denis V. Lunev | a95609c | 2008-04-29 01:02:29 -0700 | [diff] [blame] | 1063 | p = proc_net_fops_create(&init_net, "pppoe", S_IRUGO, &pppoe_seq_fops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | if (!p) |
| 1065 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | return 0; |
| 1067 | } |
| 1068 | #else /* CONFIG_PROC_FS */ |
| 1069 | static inline int pppoe_proc_init(void) { return 0; } |
| 1070 | #endif /* CONFIG_PROC_FS */ |
| 1071 | |
David S. Miller | 17ba15f | 2005-12-27 20:57:40 -0800 | [diff] [blame] | 1072 | static const struct proto_ops pppoe_ops = { |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 1073 | .family = AF_PPPOX, |
| 1074 | .owner = THIS_MODULE, |
| 1075 | .release = pppoe_release, |
| 1076 | .bind = sock_no_bind, |
| 1077 | .connect = pppoe_connect, |
| 1078 | .socketpair = sock_no_socketpair, |
| 1079 | .accept = sock_no_accept, |
| 1080 | .getname = pppoe_getname, |
| 1081 | .poll = datagram_poll, |
| 1082 | .listen = sock_no_listen, |
| 1083 | .shutdown = sock_no_shutdown, |
| 1084 | .setsockopt = sock_no_setsockopt, |
| 1085 | .getsockopt = sock_no_getsockopt, |
| 1086 | .sendmsg = pppoe_sendmsg, |
| 1087 | .recvmsg = pppoe_recvmsg, |
| 1088 | .mmap = sock_no_mmap, |
| 1089 | .ioctl = pppox_ioctl, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | }; |
| 1091 | |
| 1092 | static struct pppox_proto pppoe_proto = { |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 1093 | .create = pppoe_create, |
| 1094 | .ioctl = pppoe_ioctl, |
| 1095 | .owner = THIS_MODULE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1096 | }; |
| 1097 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | static int __init pppoe_init(void) |
| 1099 | { |
| 1100 | int err = proto_register(&pppoe_sk_proto, 0); |
| 1101 | |
| 1102 | if (err) |
| 1103 | goto out; |
| 1104 | |
Cyrill Gorcunov | 6aba915 | 2009-01-21 15:54:15 -0800 | [diff] [blame^] | 1105 | err = register_pppox_proto(PX_PROTO_OE, &pppoe_proto); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1106 | if (err) |
| 1107 | goto out_unregister_pppoe_proto; |
| 1108 | |
| 1109 | err = pppoe_proc_init(); |
| 1110 | if (err) |
| 1111 | goto out_unregister_pppox_proto; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 1112 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1113 | dev_add_pack(&pppoes_ptype); |
| 1114 | dev_add_pack(&pppoed_ptype); |
| 1115 | register_netdevice_notifier(&pppoe_notifier); |
| 1116 | out: |
| 1117 | return err; |
| 1118 | out_unregister_pppox_proto: |
| 1119 | unregister_pppox_proto(PX_PROTO_OE); |
| 1120 | out_unregister_pppoe_proto: |
| 1121 | proto_unregister(&pppoe_sk_proto); |
| 1122 | goto out; |
| 1123 | } |
| 1124 | |
| 1125 | static void __exit pppoe_exit(void) |
| 1126 | { |
| 1127 | unregister_pppox_proto(PX_PROTO_OE); |
| 1128 | dev_remove_pack(&pppoes_ptype); |
| 1129 | dev_remove_pack(&pppoed_ptype); |
| 1130 | unregister_netdevice_notifier(&pppoe_notifier); |
Eric W. Biederman | 457c4cb | 2007-09-12 12:01:34 +0200 | [diff] [blame] | 1131 | remove_proc_entry("pppoe", init_net.proc_net); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1132 | proto_unregister(&pppoe_sk_proto); |
| 1133 | } |
| 1134 | |
| 1135 | module_init(pppoe_init); |
| 1136 | module_exit(pppoe_exit); |
| 1137 | |
| 1138 | MODULE_AUTHOR("Michal Ostrowski <mostrows@speakeasy.net>"); |
| 1139 | MODULE_DESCRIPTION("PPP over Ethernet driver"); |
| 1140 | MODULE_LICENSE("GPL"); |
| 1141 | MODULE_ALIAS_NETPROTO(PF_PPPOX); |