blob: c2ceea4f46ba2de2b33f13ea5ce90558bb56d02f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/** -*- 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 Zumbiehl90719db2007-03-02 13:16:56 -080010 * 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 Torvalds1da177e2005-04-16 15:20:36 -070016 * 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. Biederman457c4cb2007-09-12 12:01:34 +020081#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#include <net/sock.h>
83
84#include <asm/uaccess.h>
85
86#define PPPOE_HASH_BITS 4
Cyrill Gorcunov6aba9152009-01-21 15:54:15 -080087#define PPPOE_HASH_SIZE (1 << PPPOE_HASH_BITS)
88#define PPPOE_HASH_MASK (PPPOE_HASH_SIZE - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90static int pppoe_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg);
91static int pppoe_xmit(struct ppp_channel *chan, struct sk_buff *skb);
92static int __pppoe_xmit(struct sock *sk, struct sk_buff *skb);
93
David S. Miller17ba15f2005-12-27 20:57:40 -080094static const struct proto_ops pppoe_ops;
Cyrill Gorcunov6aba9152009-01-21 15:54:15 -080095static struct ppp_channel_ops pppoe_chan_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096static DEFINE_RWLOCK(pppoe_hash_lock);
97
Cyrill Gorcunov6aba9152009-01-21 15:54:15 -080098/*
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 */
106static inline bool stage_session(__be16 sid)
107{
108 return sid != 0;
109}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111static inline int cmp_2_addr(struct pppoe_addr *a, struct pppoe_addr *b)
112{
Cyrill Gorcunov6aba9152009-01-21 15:54:15 -0800113 return a->sid == b->sid &&
114 (memcmp(a->remote, b->remote, ETH_ALEN) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
116
Al Virob963dc12007-08-23 02:55:33 -0400117static inline int cmp_addr(struct pppoe_addr *a, __be16 sid, char *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
Cyrill Gorcunov6aba9152009-01-21 15:54:15 -0800119 return a->sid == sid &&
120 (memcmp(a->remote, addr, ETH_ALEN) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121}
122
Cyrill Gorcunov6aba9152009-01-21 15:54:15 -0800123#if 8 % PPPOE_HASH_BITS
Florian Zumbiehlf1543f82007-07-31 13:47:57 -0700124#error 8 must be a multiple of PPPOE_HASH_BITS
125#endif
126
Al Virob963dc12007-08-23 02:55:33 -0400127static int hash_item(__be16 sid, unsigned char *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
Florian Zumbiehlf1543f82007-07-31 13:47:57 -0700129 unsigned char hash = 0;
130 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Cyrill Gorcunov6aba9152009-01-21 15:54:15 -0800132 for (i = 0; i < ETH_ALEN; i++)
Florian Zumbiehlf1543f82007-07-31 13:47:57 -0700133 hash ^= addr[i];
Cyrill Gorcunov6aba9152009-01-21 15:54:15 -0800134 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 Torvalds1da177e2005-04-16 15:20:36 -0700138
Cyrill Gorcunov6aba9152009-01-21 15:54:15 -0800139 return hash & PPPOE_HASH_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
141
142/* zeroed because its in .bss */
143static struct pppox_sock *item_hash_table[PPPOE_HASH_SIZE];
144
145/**********************************************************************
146 *
147 * Set/get/delete/rehash items (internal versions)
148 *
149 **********************************************************************/
Al Virob963dc12007-08-23 02:55:33 -0400150static struct pppox_sock *__get_item(__be16 sid, unsigned char *addr, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
152 int hash = hash_item(sid, addr);
153 struct pppox_sock *ret;
154
155 ret = item_hash_table[hash];
156
Cyrill Gorcunov6aba9152009-01-21 15:54:15 -0800157 while (ret) {
158 if (cmp_addr(&ret->pppoe_pa, sid, addr) &&
159 ret->pppoe_ifindex == ifindex)
160 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Cyrill Gorcunov6aba9152009-01-21 15:54:15 -0800162 ret = ret->next;
163 }
164
165 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
167
168static 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 Gorcunov6aba9152009-01-21 15:54:15 -0800175 if (cmp_2_addr(&ret->pppoe_pa, &po->pppoe_pa) &&
176 ret->pppoe_ifindex == po->pppoe_ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 return -EALREADY;
178
179 ret = ret->next;
180 }
181
Florian Zumbiehl90719db2007-03-02 13:16:56 -0800182 po->next = item_hash_table[hash];
183 item_hash_table[hash] = po;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 return 0;
186}
187
Al Virob963dc12007-08-23 02:55:33 -0400188static struct pppox_sock *__delete_item(__be16 sid, char *addr, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
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 Gorcunov6aba9152009-01-21 15:54:15 -0800197 if (cmp_addr(&ret->pppoe_pa, sid, addr) &&
198 ret->pppoe_ifindex == ifindex) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 *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 Virob963dc12007-08-23 02:55:33 -0400215static inline struct pppox_sock *get_item(__be16 sid,
Florian Zumbiehl90719db2007-03-02 13:16:56 -0800216 unsigned char *addr, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
218 struct pppox_sock *po;
219
220 read_lock_bh(&pppoe_hash_lock);
Florian Zumbiehl90719db2007-03-02 13:16:56 -0800221 po = __get_item(sid, addr, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 if (po)
223 sock_hold(sk_pppox(po));
224 read_unlock_bh(&pppoe_hash_lock);
225
226 return po;
227}
228
229static inline struct pppox_sock *get_item_by_addr(struct sockaddr_pppox *sp)
230{
Florian Zumbiehlbfafb262007-04-20 16:56:31 -0700231 struct net_device *dev;
Florian Zumbiehl90719db2007-03-02 13:16:56 -0800232 int ifindex;
233
Eric W. Biederman881d9662007-09-17 11:56:21 -0700234 dev = dev_get_by_name(&init_net, sp->sa_addr.pppoe.dev);
Cyrill Gorcunov6aba9152009-01-21 15:54:15 -0800235 if (!dev)
Florian Zumbiehl90719db2007-03-02 13:16:56 -0800236 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 Torvalds1da177e2005-04-16 15:20:36 -0700240}
241
Al Virob963dc12007-08-23 02:55:33 -0400242static inline struct pppox_sock *delete_item(__be16 sid, char *addr, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
244 struct pppox_sock *ret;
245
246 write_lock_bh(&pppoe_hash_lock);
Florian Zumbiehl90719db2007-03-02 13:16:56 -0800247 ret = __delete_item(sid, addr, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 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
262static void pppoe_flush_dev(struct net_device *dev)
263{
264 int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 BUG_ON(dev == NULL);
266
Michal Ostrowski42dc9cd2007-04-20 16:59:24 -0700267 write_lock_bh(&pppoe_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 for (hash = 0; hash < PPPOE_HASH_SIZE; hash++) {
269 struct pppox_sock *po = item_hash_table[hash];
270
271 while (po != NULL) {
Michal Ostrowski42dc9cd2007-04-20 16:59:24 -0700272 struct sock *sk = sk_pppox(po);
273 if (po->pppoe_dev != dev) {
274 po = po->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 continue;
276 }
Michal Ostrowski42dc9cd2007-04-20 16:59:24 -0700277 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 Torvalds1da177e2005-04-16 15:20:36 -0700309 }
310 }
Michal Ostrowski42dc9cd2007-04-20 16:59:24 -0700311 write_unlock_bh(&pppoe_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
314static 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 Hideakic346dca2008-03-25 21:47:49 +0900319 if (dev_net(dev) != &init_net)
Eric W. Biedermane9dc8652007-09-12 13:02:17 +0200320 return NOTIFY_DONE;
321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 /* 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
343static struct notifier_block pppoe_notifier = {
344 .notifier_call = pppoe_device_event,
345};
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347/************************************************************************
348 *
349 * Do the real work of receiving a PPPoE Session frame.
350 *
351 ***********************************************************************/
352static int pppoe_rcv_core(struct sock *sk, struct sk_buff *skb)
353{
354 struct pppox_sock *po = pppox_sk(sk);
Florian Zumbiehlbfafb262007-04-20 16:56:31 -0700355 struct pppox_sock *relay_po;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 if (sk->sk_state & PPPOX_BOUND) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 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 Torvalds1da177e2005-04-16 15:20:36 -0700368 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
377abort_put:
378 sock_put(sk_pppox(relay_po));
379
380abort_kfree:
381 kfree_skb(skb);
382 return NET_RX_DROP;
383}
384
385/************************************************************************
386 *
387 * Receive wrapper called in BH context.
388 *
389 ***********************************************************************/
390static int pppoe_rcv(struct sk_buff *skb,
391 struct net_device *dev,
David S. Millerf2ccd8f2005-08-09 19:34:12 -0700392 struct packet_type *pt,
393 struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395{
396 struct pppoe_hdr *ph;
397 struct pppox_sock *po;
Herbert Xu392fdb02008-06-10 14:07:25 -0700398 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Cyrill Gorcunov6aba9152009-01-21 15:54:15 -0800400 skb = skb_share_check(skb, GFP_ATOMIC);
401 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 goto out;
403
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900404 if (dev_net(dev) != &init_net)
Eric W. Biedermane730c152007-09-17 11:53:39 -0700405 goto drop;
406
Herbert Xu31bac442007-09-16 16:19:20 -0700407 if (!pskb_may_pull(skb, sizeof(struct pppoe_hdr)))
408 goto drop;
409
Arnaldo Carvalho de Melo797659f2007-03-10 15:56:08 -0300410 ph = pppoe_hdr(skb);
Herbert Xu392fdb02008-06-10 14:07:25 -0700411 len = ntohs(ph->length);
412
413 skb_pull_rcsum(skb, sizeof(*ph));
414 if (skb->len < len)
415 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
David S. Miller263e69c2008-10-30 23:11:44 -0700417 if (pskb_trim_rcsum(skb, len))
Herbert Xu392fdb02008-06-10 14:07:25 -0700418 goto drop;
419
David S. Miller263e69c2008-10-30 23:11:44 -0700420 po = get_item(ph->sid, eth_hdr(skb)->h_source, dev->ifindex);
421 if (!po)
Herbert Xu392fdb02008-06-10 14:07:25 -0700422 goto drop;
423
424 return sk_receive_skb(sk_pppox(po), skb, 0);
425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426drop:
427 kfree_skb(skb);
428out:
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 ***********************************************************************/
438static int pppoe_disc_rcv(struct sk_buff *skb,
439 struct net_device *dev,
David S. Millerf2ccd8f2005-08-09 19:34:12 -0700440 struct packet_type *pt,
441 struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443{
444 struct pppoe_hdr *ph;
445 struct pppox_sock *po;
446
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900447 if (dev_net(dev) != &init_net)
Eric W. Biedermane730c152007-09-17 11:53:39 -0700448 goto abort;
449
Cyrill Gorcunov6aba9152009-01-21 15:54:15 -0800450 skb = skb_share_check(skb, GFP_ATOMIC);
451 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 goto out;
453
Herbert Xubc6cffd12008-06-10 14:08:25 -0700454 if (!pskb_may_pull(skb, sizeof(struct pppoe_hdr)))
455 goto abort;
456
Arnaldo Carvalho de Melo797659f2007-03-10 15:56:08 -0300457 ph = pppoe_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 if (ph->code != PADT_CODE)
459 goto abort;
460
Al Virob963dc12007-08-23 02:55:33 -0400461 po = get_item(ph->sid, eth_hdr(skb)->h_source, dev->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 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
483abort:
484 kfree_skb(skb);
485out:
486 return NET_RX_SUCCESS; /* Lies... :-) */
487}
488
489static struct packet_type pppoes_ptype = {
490 .type = __constant_htons(ETH_P_PPP_SES),
491 .func = pppoe_rcv,
492};
493
494static struct packet_type pppoed_ptype = {
495 .type = __constant_htons(ETH_P_PPP_DISC),
496 .func = pppoe_disc_rcv,
497};
498
499static 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. Biederman1b8d7ae2007-10-08 23:24:22 -0700510static int pppoe_create(struct net *net, struct socket *sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 struct sock *sk;
513
Pavel Emelyanov6257ff22007-11-01 00:39:31 -0700514 sk = sk_alloc(net, PF_PPPOX, GFP_KERNEL, &pppoe_sk_proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 if (!sk)
Cyrill Gorcunov6aba9152009-01-21 15:54:15 -0800516 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
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 Gorcunov6aba9152009-01-21 15:54:15 -0800529 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530}
531
532static int pppoe_release(struct socket *sock)
533{
534 struct sock *sk = sock->sk;
535 struct pppox_sock *po;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537 if (!sk)
538 return 0;
539
Michal Ostrowski42dc9cd2007-04-20 16:59:24 -0700540 lock_sock(sk);
Cyrill Gorcunov6aba9152009-01-21 15:54:15 -0800541 if (sock_flag(sk, SOCK_DEAD)) {
Michal Ostrowski42dc9cd2007-04-20 16:59:24 -0700542 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 return -EBADF;
Michal Ostrowski42dc9cd2007-04-20 16:59:24 -0700544 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 pppox_unbind_sock(sk);
547
548 /* Signal the death of the socket. */
549 sk->sk_state = PPPOX_DEAD;
550
Michal Ostrowski42dc9cd2007-04-20 16:59:24 -0700551
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 Torvalds1da177e2005-04-16 15:20:36 -0700558 po = pppox_sk(sk);
Cyrill Gorcunov6aba9152009-01-21 15:54:15 -0800559 if (stage_session(po->pppoe_pa.sid)) {
Michal Ostrowski42dc9cd2007-04-20 16:59:24 -0700560 __delete_item(po->pppoe_pa.sid,
561 po->pppoe_pa.remote, po->pppoe_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 }
563
Michal Ostrowski42dc9cd2007-04-20 16:59:24 -0700564 if (po->pppoe_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 dev_put(po->pppoe_dev);
Michal Ostrowski42dc9cd2007-04-20 16:59:24 -0700566 po->pppoe_dev = NULL;
567 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Michal Ostrowski42dc9cd2007-04-20 16:59:24 -0700569 write_unlock_bh(&pppoe_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
571 sock_orphan(sk);
572 sock->sk = NULL;
573
574 skb_queue_purge(&sk->sk_receive_queue);
Michal Ostrowski42dc9cd2007-04-20 16:59:24 -0700575 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 sock_put(sk);
577
Florian Zumbiehlbfafb262007-04-20 16:56:31 -0700578 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579}
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581static int pppoe_connect(struct socket *sock, struct sockaddr *uservaddr,
582 int sockaddr_len, int flags)
583{
584 struct sock *sk = sock->sk;
Florian Zumbiehl90719db2007-03-02 13:16:56 -0800585 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 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 Gorcunov6aba9152009-01-21 15:54:15 -0800598 if ((sk->sk_state & PPPOX_CONNECTED) &&
599 stage_session(sp->sa_addr.pppoe.sid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 goto end;
601
602 /* Check for already disconnected sockets, on attempts to disconnect */
603 error = -EALREADY;
Cyrill Gorcunov6aba9152009-01-21 15:54:15 -0800604 if ((sk->sk_state & PPPOX_DEAD) &&
605 !stage_session(sp->sa_addr.pppoe.sid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 goto end;
607
608 error = 0;
Cyrill Gorcunov6aba9152009-01-21 15:54:15 -0800609
610 /* Delete the old binding */
611 if (stage_session(po->pppoe_pa.sid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 pppox_unbind_sock(sk);
Cyrill Gorcunov6aba9152009-01-21 15:54:15 -0800613 delete_item(po->pppoe_pa.sid, po->pppoe_pa.remote, po->pppoe_ifindex);
614 if (po->pppoe_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 dev_put(po->pppoe_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 memset(sk_pppox(po) + 1, 0,
617 sizeof(struct pppox_sock) - sizeof(struct sock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 sk->sk_state = PPPOX_NONE;
619 }
620
Cyrill Gorcunov6aba9152009-01-21 15:54:15 -0800621 /* Re-bind in session stage only */
622 if (stage_session(sp->sa_addr.pppoe.sid)) {
Eric W. Biederman881d9662007-09-17 11:56:21 -0700623 dev = dev_get_by_name(&init_net, sp->sa_addr.pppoe.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625 error = -ENODEV;
626 if (!dev)
627 goto end;
628
629 po->pppoe_dev = dev;
Florian Zumbiehl6f30e182007-03-04 16:03:22 -0800630 po->pppoe_ifindex = dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Florian Zumbiehl74b885c2007-04-20 16:57:27 -0700632 write_lock_bh(&pppoe_hash_lock);
Cyrill Gorcunov6aba9152009-01-21 15:54:15 -0800633 if (!(dev->flags & IFF_UP)) {
Florian Zumbiehl74b885c2007-04-20 16:57:27 -0700634 write_unlock_bh(&pppoe_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 goto err_put;
Florian Zumbiehl74b885c2007-04-20 16:57:27 -0700636 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
638 memcpy(&po->pppoe_pa,
639 &sp->sa_addr.pppoe,
640 sizeof(struct pppoe_addr));
641
Florian Zumbiehl74b885c2007-04-20 16:57:27 -0700642 error = __set_item(po);
643 write_unlock_bh(&pppoe_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 if (error < 0)
645 goto err_put;
646
647 po->chan.hdrlen = (sizeof(struct pppoe_hdr) +
648 dev->hard_header_len);
649
Michal Ostrowskic9aa6892006-09-27 16:11:25 -0700650 po->chan.mtu = dev->mtu - sizeof(struct pppoe_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 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 Gorcunov6aba9152009-01-21 15:54:15 -0800663end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 release_sock(sk);
665 return error;
666err_put:
667 if (po->pppoe_dev) {
668 dev_put(po->pppoe_dev);
669 po->pppoe_dev = NULL;
670 }
671 goto end;
672}
673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674static 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 Torvalds1da177e2005-04-16 15:20:36 -0700692static 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 Zumbiehl86c1dcf2007-07-30 17:48:23 -0700697 int val;
698 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
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 Gorcunov6aba9152009-01-21 15:54:15 -0800722 if (get_user(val, (int __user *)arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 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 Gorcunov6aba9152009-01-21 15:54:15 -0800735 if (get_user(val, (int __user *)arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 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 Zumbiehl90719db2007-03-02 13:16:56 -0800753 PPPoE address which frames are forwarded to */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 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 Gorcunov6aba9152009-01-21 15:54:15 -0800762 po->pppoe_relay.sa_protocol != PX_PROTO_OE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 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 Zumbiehl86c1dcf2007-07-30 17:48:23 -0700787 default:
788 err = -ENOTTY;
789 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
791 return err;
792}
793
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400794static int pppoe_sendmsg(struct kiocb *iocb, struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 struct msghdr *m, size_t total_len)
796{
Florian Zumbiehlbfafb262007-04-20 16:56:31 -0700797 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 struct sock *sk = sock->sk;
799 struct pppox_sock *po = pppox_sk(sk);
Florian Zumbiehlbfafb262007-04-20 16:56:31 -0700800 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 struct pppoe_hdr hdr;
802 struct pppoe_hdr *ph;
803 struct net_device *dev;
804 char *start;
805
Florian Zumbiehl8aeca8f2007-07-30 17:49:13 -0700806 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 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 Torvalds1da177e2005-04-16 15:20:36 -0700817 dev = po->pppoe_dev;
818
819 error = -EMSGSIZE;
Cyrill Gorcunov6aba9152009-01-21 15:54:15 -0800820 if (total_len > (dev->mtu + dev->hard_header_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 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 Meloc1d2bbe2007-04-10 20:45:18 -0700833 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
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 Hemminger0c4e8582007-10-09 01:36:32 -0700851 dev_hard_header(skb, dev, ETH_P_PPP_SES,
852 po->pppoe_pa.remote, NULL, total_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
854 memcpy(ph, &hdr, sizeof(struct pppoe_hdr));
855
856 ph->length = htons(total_len);
857
858 dev_queue_xmit(skb);
859
860end:
861 release_sock(sk);
862 return error;
863}
864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865/************************************************************************
866 *
867 * xmit function for internal use.
868 *
869 ***********************************************************************/
870static 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 Torvalds1da177e2005-04-16 15:20:36 -0700874 struct pppoe_hdr *ph;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 int data_len = skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
877 if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED))
878 goto abort;
879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 if (!dev)
881 goto abort;
882
Herbert Xudb7bf6d2007-09-16 16:19:50 -0700883 /* Copy the data if there is no space for the header or if it's
884 * read-only.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 */
Herbert Xud9cc2042007-09-16 16:21:16 -0700886 if (skb_cow_head(skb, sizeof(*ph) + dev->hard_header_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 goto abort;
888
Herbert Xu9355ec22007-09-16 16:20:21 -0700889 __skb_push(skb, sizeof(*ph));
Herbert Xudb7bf6d2007-09-16 16:19:50 -0700890 skb_reset_network_header(skb);
891
Herbert Xu9355ec22007-09-16 16:20:21 -0700892 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 Xudb7bf6d2007-09-16 16:19:50 -0700900 skb->dev = dev;
901
Stephen Hemminger0c4e8582007-10-09 01:36:32 -0700902 dev_hard_header(skb, dev, ETH_P_PPP_SES,
903 po->pppoe_pa.remote, NULL, data_len);
Herbert Xudb7bf6d2007-09-16 16:19:50 -0700904
Herbert Xu21d0c832007-09-19 10:45:02 -0700905 dev_queue_xmit(skb);
Herbert Xudb7bf6d2007-09-16 16:19:50 -0700906
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 return 1;
908
909abort:
Herbert Xudb7bf6d2007-09-16 16:19:50 -0700910 kfree_skb(skb);
911 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912}
913
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914/************************************************************************
915 *
916 * xmit function called by generic PPP driver
917 * sends PPP frame over PPPoE socket
918 *
919 ***********************************************************************/
920static 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 Garzik6aa20a22006-09-13 13:24:59 -0400926static struct ppp_channel_ops pppoe_chan_ops = {
927 .start_xmit = pppoe_xmit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928};
929
930static 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 Zumbiehlbfafb262007-04-20 16:56:31 -0700934 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
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 Zumbiehlbfafb262007-04-20 16:56:31 -0700945 if (error < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948 m->msg_namelen = 0;
949
950 if (skb) {
Stephen Hemminger2645a3c2008-06-20 21:58:02 -0700951 total_len = min_t(size_t, total_len, skb->len);
Herbert Xu392fdb02008-06-10 14:07:25 -0700952 error = skb_copy_datagram_iovec(skb, 0, m->msg_iov, total_len);
Arnaldo Carvalho de Melo797659f2007-03-10 15:56:08 -0300953 if (error == 0)
Herbert Xu392fdb02008-06-10 14:07:25 -0700954 error = total_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 }
956
Arnaldo Carvalho de Melo797659f2007-03-10 15:56:08 -0300957 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958end:
959 return error;
960}
961
962#ifdef CONFIG_PROC_FS
963static 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 Berge1749612008-10-27 15:59:26 -0700976 seq_printf(seq, "%08X %pM %8s\n",
977 po->pppoe_pa.sid, po->pppoe_pa.remote, dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978out:
979 return 0;
980}
981
982static __inline__ struct pppox_sock *pppoe_get_idx(loff_t pos)
983{
Florian Zumbiehlbfafb262007-04-20 16:56:31 -0700984 struct pppox_sock *po;
Cyrill Gorcunov6aba9152009-01-21 15:54:15 -0800985 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Cyrill Gorcunov6aba9152009-01-21 15:54:15 -0800987 for (i = 0; i < PPPOE_HASH_SIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 po = item_hash_table[i];
989 while (po) {
990 if (!pos--)
991 goto out;
992 po = po->next;
993 }
994 }
995out:
996 return po;
997}
998
999static void *pppoe_seq_start(struct seq_file *seq, loff_t *pos)
Stephen Hemminger3c582b32008-01-23 20:54:07 -08001000 __acquires(pppoe_hash_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001{
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
1008static 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 Garzik6aa20a22006-09-13 13:24:59 -04001018 if (po->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 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 }
1029out:
1030 return po;
1031}
1032
1033static void pppoe_seq_stop(struct seq_file *seq, void *v)
Stephen Hemminger3c582b32008-01-23 20:54:07 -08001034 __releases(pppoe_hash_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035{
1036 read_unlock_bh(&pppoe_hash_lock);
1037}
1038
Jan Engelhardt4101dec2009-01-14 13:52:18 -08001039static const struct seq_operations pppoe_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 .start = pppoe_seq_start,
1041 .next = pppoe_seq_next,
1042 .stop = pppoe_seq_stop,
1043 .show = pppoe_seq_show,
1044};
1045
1046static int pppoe_seq_open(struct inode *inode, struct file *file)
1047{
1048 return seq_open(file, &pppoe_seq_ops);
1049}
1050
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08001051static const struct file_operations pppoe_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 .owner = THIS_MODULE,
1053 .open = pppoe_seq_open,
1054 .read = seq_read,
1055 .llseek = seq_lseek,
1056 .release = seq_release,
1057};
1058
1059static int __init pppoe_proc_init(void)
1060{
1061 struct proc_dir_entry *p;
1062
Denis V. Luneva95609c2008-04-29 01:02:29 -07001063 p = proc_net_fops_create(&init_net, "pppoe", S_IRUGO, &pppoe_seq_fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 if (!p)
1065 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 return 0;
1067}
1068#else /* CONFIG_PROC_FS */
1069static inline int pppoe_proc_init(void) { return 0; }
1070#endif /* CONFIG_PROC_FS */
1071
David S. Miller17ba15f2005-12-27 20:57:40 -08001072static const struct proto_ops pppoe_ops = {
Cyrill Gorcunov6aba9152009-01-21 15:54:15 -08001073 .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 Torvalds1da177e2005-04-16 15:20:36 -07001090};
1091
1092static struct pppox_proto pppoe_proto = {
Cyrill Gorcunov6aba9152009-01-21 15:54:15 -08001093 .create = pppoe_create,
1094 .ioctl = pppoe_ioctl,
1095 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096};
1097
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098static int __init pppoe_init(void)
1099{
1100 int err = proto_register(&pppoe_sk_proto, 0);
1101
1102 if (err)
1103 goto out;
1104
Cyrill Gorcunov6aba9152009-01-21 15:54:15 -08001105 err = register_pppox_proto(PX_PROTO_OE, &pppoe_proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 if (err)
1107 goto out_unregister_pppoe_proto;
1108
1109 err = pppoe_proc_init();
1110 if (err)
1111 goto out_unregister_pppox_proto;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001112
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 dev_add_pack(&pppoes_ptype);
1114 dev_add_pack(&pppoed_ptype);
1115 register_netdevice_notifier(&pppoe_notifier);
1116out:
1117 return err;
1118out_unregister_pppox_proto:
1119 unregister_pppox_proto(PX_PROTO_OE);
1120out_unregister_pppoe_proto:
1121 proto_unregister(&pppoe_sk_proto);
1122 goto out;
1123}
1124
1125static 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. Biederman457c4cb2007-09-12 12:01:34 +02001131 remove_proc_entry("pppoe", init_net.proc_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 proto_unregister(&pppoe_sk_proto);
1133}
1134
1135module_init(pppoe_init);
1136module_exit(pppoe_exit);
1137
1138MODULE_AUTHOR("Michal Ostrowski <mostrows@speakeasy.net>");
1139MODULE_DESCRIPTION("PPP over Ethernet driver");
1140MODULE_LICENSE("GPL");
1141MODULE_ALIAS_NETPROTO(PF_PPPOX);