blob: 86e56f1f2f0bd0a9e215afbb35d6f7ba5b992240 [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
81#include <net/sock.h>
82
83#include <asm/uaccess.h>
84
85#define PPPOE_HASH_BITS 4
86#define PPPOE_HASH_SIZE (1<<PPPOE_HASH_BITS)
87
88static struct ppp_channel_ops pppoe_chan_ops;
89
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095static DEFINE_RWLOCK(pppoe_hash_lock);
96
97static struct ppp_channel_ops pppoe_chan_ops;
98
99static inline int cmp_2_addr(struct pppoe_addr *a, struct pppoe_addr *b)
100{
101 return (a->sid == b->sid &&
102 (memcmp(a->remote, b->remote, ETH_ALEN) == 0));
103}
104
105static inline int cmp_addr(struct pppoe_addr *a, unsigned long sid, char *addr)
106{
107 return (a->sid == sid &&
108 (memcmp(a->remote,addr,ETH_ALEN) == 0));
109}
110
111static int hash_item(unsigned long sid, unsigned char *addr)
112{
113 char hash = 0;
114 int i, j;
115
116 for (i = 0; i < ETH_ALEN ; ++i) {
117 for (j = 0; j < 8/PPPOE_HASH_BITS ; ++j) {
118 hash ^= addr[i] >> ( j * PPPOE_HASH_BITS );
119 }
120 }
121
122 for (i = 0; i < (sizeof(unsigned long)*8) / PPPOE_HASH_BITS ; ++i)
123 hash ^= sid >> (i*PPPOE_HASH_BITS);
124
125 return hash & ( PPPOE_HASH_SIZE - 1 );
126}
127
128/* zeroed because its in .bss */
129static struct pppox_sock *item_hash_table[PPPOE_HASH_SIZE];
130
131/**********************************************************************
132 *
133 * Set/get/delete/rehash items (internal versions)
134 *
135 **********************************************************************/
Florian Zumbiehl90719db2007-03-02 13:16:56 -0800136static struct pppox_sock *__get_item(unsigned long sid, unsigned char *addr, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
138 int hash = hash_item(sid, addr);
139 struct pppox_sock *ret;
140
141 ret = item_hash_table[hash];
142
Florian Zumbiehl90719db2007-03-02 13:16:56 -0800143 while (ret && !(cmp_addr(&ret->pppoe_pa, sid, addr) && ret->pppoe_dev->ifindex == ifindex))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 ret = ret->next;
145
146 return ret;
147}
148
149static int __set_item(struct pppox_sock *po)
150{
151 int hash = hash_item(po->pppoe_pa.sid, po->pppoe_pa.remote);
152 struct pppox_sock *ret;
153
154 ret = item_hash_table[hash];
155 while (ret) {
Florian Zumbiehl90719db2007-03-02 13:16:56 -0800156 if (cmp_2_addr(&ret->pppoe_pa, &po->pppoe_pa) && ret->pppoe_dev->ifindex == po->pppoe_dev->ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 return -EALREADY;
158
159 ret = ret->next;
160 }
161
Florian Zumbiehl90719db2007-03-02 13:16:56 -0800162 po->next = item_hash_table[hash];
163 item_hash_table[hash] = po;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165 return 0;
166}
167
Florian Zumbiehl90719db2007-03-02 13:16:56 -0800168static struct pppox_sock *__delete_item(unsigned long sid, char *addr, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
170 int hash = hash_item(sid, addr);
171 struct pppox_sock *ret, **src;
172
173 ret = item_hash_table[hash];
174 src = &item_hash_table[hash];
175
176 while (ret) {
Florian Zumbiehl90719db2007-03-02 13:16:56 -0800177 if (cmp_addr(&ret->pppoe_pa, sid, addr) && ret->pppoe_dev->ifindex == ifindex) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 *src = ret->next;
179 break;
180 }
181
182 src = &ret->next;
183 ret = ret->next;
184 }
185
186 return ret;
187}
188
189/**********************************************************************
190 *
191 * Set/get/delete/rehash items
192 *
193 **********************************************************************/
194static inline struct pppox_sock *get_item(unsigned long sid,
Florian Zumbiehl90719db2007-03-02 13:16:56 -0800195 unsigned char *addr, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
197 struct pppox_sock *po;
198
199 read_lock_bh(&pppoe_hash_lock);
Florian Zumbiehl90719db2007-03-02 13:16:56 -0800200 po = __get_item(sid, addr, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 if (po)
202 sock_hold(sk_pppox(po));
203 read_unlock_bh(&pppoe_hash_lock);
204
205 return po;
206}
207
208static inline struct pppox_sock *get_item_by_addr(struct sockaddr_pppox *sp)
209{
Florian Zumbiehl90719db2007-03-02 13:16:56 -0800210 struct net_device *dev = NULL;
211 int ifindex;
212
213 dev = dev_get_by_name(sp->sa_addr.pppoe.dev);
214 if(!dev)
215 return NULL;
216 ifindex = dev->ifindex;
217 dev_put(dev);
218 return get_item(sp->sa_addr.pppoe.sid, sp->sa_addr.pppoe.remote, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219}
220
221static inline int set_item(struct pppox_sock *po)
222{
223 int i;
224
225 if (!po)
226 return -EINVAL;
227
228 write_lock_bh(&pppoe_hash_lock);
229 i = __set_item(po);
230 write_unlock_bh(&pppoe_hash_lock);
231
232 return i;
233}
234
Florian Zumbiehl90719db2007-03-02 13:16:56 -0800235static inline struct pppox_sock *delete_item(unsigned long sid, char *addr, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
237 struct pppox_sock *ret;
238
239 write_lock_bh(&pppoe_hash_lock);
Florian Zumbiehl90719db2007-03-02 13:16:56 -0800240 ret = __delete_item(sid, addr, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 write_unlock_bh(&pppoe_hash_lock);
242
243 return ret;
244}
245
246
247
248/***************************************************************************
249 *
250 * Handler for device events.
251 * Certain device events require that sockets be unconnected.
252 *
253 **************************************************************************/
254
255static void pppoe_flush_dev(struct net_device *dev)
256{
257 int hash;
258
259 BUG_ON(dev == NULL);
260
261 read_lock_bh(&pppoe_hash_lock);
262 for (hash = 0; hash < PPPOE_HASH_SIZE; hash++) {
263 struct pppox_sock *po = item_hash_table[hash];
264
265 while (po != NULL) {
266 if (po->pppoe_dev == dev) {
267 struct sock *sk = sk_pppox(po);
268
269 sock_hold(sk);
270 po->pppoe_dev = NULL;
271
272 /* We hold a reference to SK, now drop the
273 * hash table lock so that we may attempt
274 * to lock the socket (which can sleep).
275 */
276 read_unlock_bh(&pppoe_hash_lock);
277
278 lock_sock(sk);
279
280 if (sk->sk_state &
281 (PPPOX_CONNECTED | PPPOX_BOUND)) {
282 pppox_unbind_sock(sk);
283 dev_put(dev);
284 sk->sk_state = PPPOX_ZOMBIE;
285 sk->sk_state_change(sk);
286 }
287
288 release_sock(sk);
289
290 sock_put(sk);
291
292 read_lock_bh(&pppoe_hash_lock);
293
294 /* Now restart from the beginning of this
295 * hash chain. We always NULL out pppoe_dev
296 * so we are guaranteed to make forward
297 * progress.
298 */
299 po = item_hash_table[hash];
300 continue;
301 }
302 po = po->next;
303 }
304 }
305 read_unlock_bh(&pppoe_hash_lock);
306}
307
308static int pppoe_device_event(struct notifier_block *this,
309 unsigned long event, void *ptr)
310{
311 struct net_device *dev = (struct net_device *) ptr;
312
313 /* Only look at sockets that are using this specific device. */
314 switch (event) {
315 case NETDEV_CHANGEMTU:
316 /* A change in mtu is a bad thing, requiring
317 * LCP re-negotiation.
318 */
319
320 case NETDEV_GOING_DOWN:
321 case NETDEV_DOWN:
322 /* Find every socket on this device and kill it. */
323 pppoe_flush_dev(dev);
324 break;
325
326 default:
327 break;
328 };
329
330 return NOTIFY_DONE;
331}
332
333
334static struct notifier_block pppoe_notifier = {
335 .notifier_call = pppoe_device_event,
336};
337
338
339/************************************************************************
340 *
341 * Do the real work of receiving a PPPoE Session frame.
342 *
343 ***********************************************************************/
344static int pppoe_rcv_core(struct sock *sk, struct sk_buff *skb)
345{
346 struct pppox_sock *po = pppox_sk(sk);
347 struct pppox_sock *relay_po = NULL;
348
349 if (sk->sk_state & PPPOX_BOUND) {
350 struct pppoe_hdr *ph = (struct pppoe_hdr *) skb->nh.raw;
351 int len = ntohs(ph->length);
Herbert Xucbb042f2006-03-20 22:43:56 -0800352 skb_pull_rcsum(skb, sizeof(struct pppoe_hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 if (pskb_trim_rcsum(skb, len))
354 goto abort_kfree;
355
356 ppp_input(&po->chan, skb);
357 } else if (sk->sk_state & PPPOX_RELAY) {
358 relay_po = get_item_by_addr(&po->pppoe_relay);
359
360 if (relay_po == NULL)
361 goto abort_kfree;
362
363 if ((sk_pppox(relay_po)->sk_state & PPPOX_CONNECTED) == 0)
364 goto abort_put;
365
366 skb_pull(skb, sizeof(struct pppoe_hdr));
367 if (!__pppoe_xmit(sk_pppox(relay_po), skb))
368 goto abort_put;
369 } else {
370 if (sock_queue_rcv_skb(sk, skb))
371 goto abort_kfree;
372 }
373
374 return NET_RX_SUCCESS;
375
376abort_put:
377 sock_put(sk_pppox(relay_po));
378
379abort_kfree:
380 kfree_skb(skb);
381 return NET_RX_DROP;
382}
383
384/************************************************************************
385 *
386 * Receive wrapper called in BH context.
387 *
388 ***********************************************************************/
389static int pppoe_rcv(struct sk_buff *skb,
390 struct net_device *dev,
David S. Millerf2ccd8f2005-08-09 19:34:12 -0700391 struct packet_type *pt,
392 struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
394{
395 struct pppoe_hdr *ph;
396 struct pppox_sock *po;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398 if (!pskb_may_pull(skb, sizeof(struct pppoe_hdr)))
399 goto drop;
400
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400401 if (!(skb = skb_share_check(skb, GFP_ATOMIC)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 goto out;
403
404 ph = (struct pppoe_hdr *) skb->nh.raw;
405
Florian Zumbiehl90719db2007-03-02 13:16:56 -0800406 po = get_item((unsigned long) ph->sid, eth_hdr(skb)->h_source, dev->ifindex);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400407 if (po != NULL)
Arnaldo Carvalho de Melo58a5a7b2006-11-16 14:06:06 -0200408 return sk_receive_skb(sk_pppox(po), skb, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409drop:
410 kfree_skb(skb);
411out:
412 return NET_RX_DROP;
413}
414
415/************************************************************************
416 *
417 * Receive a PPPoE Discovery frame.
418 * This is solely for detection of PADT frames
419 *
420 ***********************************************************************/
421static int pppoe_disc_rcv(struct sk_buff *skb,
422 struct net_device *dev,
David S. Millerf2ccd8f2005-08-09 19:34:12 -0700423 struct packet_type *pt,
424 struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426{
427 struct pppoe_hdr *ph;
428 struct pppox_sock *po;
429
430 if (!pskb_may_pull(skb, sizeof(struct pppoe_hdr)))
431 goto abort;
432
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400433 if (!(skb = skb_share_check(skb, GFP_ATOMIC)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 goto out;
435
436 ph = (struct pppoe_hdr *) skb->nh.raw;
437 if (ph->code != PADT_CODE)
438 goto abort;
439
Florian Zumbiehl90719db2007-03-02 13:16:56 -0800440 po = get_item((unsigned long) ph->sid, eth_hdr(skb)->h_source, dev->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 if (po) {
442 struct sock *sk = sk_pppox(po);
443
444 bh_lock_sock(sk);
445
446 /* If the user has locked the socket, just ignore
447 * the packet. With the way two rcv protocols hook into
448 * one socket family type, we cannot (easily) distinguish
449 * what kind of SKB it is during backlog rcv.
450 */
451 if (sock_owned_by_user(sk) == 0) {
452 /* We're no longer connect at the PPPOE layer,
453 * and must wait for ppp channel to disconnect us.
454 */
455 sk->sk_state = PPPOX_ZOMBIE;
456 }
457
458 bh_unlock_sock(sk);
459 sock_put(sk);
460 }
461
462abort:
463 kfree_skb(skb);
464out:
465 return NET_RX_SUCCESS; /* Lies... :-) */
466}
467
468static struct packet_type pppoes_ptype = {
469 .type = __constant_htons(ETH_P_PPP_SES),
470 .func = pppoe_rcv,
471};
472
473static struct packet_type pppoed_ptype = {
474 .type = __constant_htons(ETH_P_PPP_DISC),
475 .func = pppoe_disc_rcv,
476};
477
478static struct proto pppoe_sk_proto = {
479 .name = "PPPOE",
480 .owner = THIS_MODULE,
481 .obj_size = sizeof(struct pppox_sock),
482};
483
484/***********************************************************************
485 *
486 * Initialize a new struct sock.
487 *
488 **********************************************************************/
489static int pppoe_create(struct socket *sock)
490{
491 int error = -ENOMEM;
492 struct sock *sk;
493
494 sk = sk_alloc(PF_PPPOX, GFP_KERNEL, &pppoe_sk_proto, 1);
495 if (!sk)
496 goto out;
497
498 sock_init_data(sock, sk);
499
500 sock->state = SS_UNCONNECTED;
501 sock->ops = &pppoe_ops;
502
503 sk->sk_backlog_rcv = pppoe_rcv_core;
504 sk->sk_state = PPPOX_NONE;
505 sk->sk_type = SOCK_STREAM;
506 sk->sk_family = PF_PPPOX;
507 sk->sk_protocol = PX_PROTO_OE;
508
509 error = 0;
510out: return error;
511}
512
513static int pppoe_release(struct socket *sock)
514{
515 struct sock *sk = sock->sk;
516 struct pppox_sock *po;
517 int error = 0;
518
519 if (!sk)
520 return 0;
521
522 if (sock_flag(sk, SOCK_DEAD))
523 return -EBADF;
524
525 pppox_unbind_sock(sk);
526
527 /* Signal the death of the socket. */
528 sk->sk_state = PPPOX_DEAD;
529
530 po = pppox_sk(sk);
531 if (po->pppoe_pa.sid) {
Florian Zumbiehl90719db2007-03-02 13:16:56 -0800532 delete_item(po->pppoe_pa.sid, po->pppoe_pa.remote, po->pppoe_dev->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 }
534
535 if (po->pppoe_dev)
536 dev_put(po->pppoe_dev);
537
538 po->pppoe_dev = NULL;
539
540 sock_orphan(sk);
541 sock->sk = NULL;
542
543 skb_queue_purge(&sk->sk_receive_queue);
544 sock_put(sk);
545
546 return error;
547}
548
549
550static int pppoe_connect(struct socket *sock, struct sockaddr *uservaddr,
551 int sockaddr_len, int flags)
552{
553 struct sock *sk = sock->sk;
Florian Zumbiehl90719db2007-03-02 13:16:56 -0800554 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 struct sockaddr_pppox *sp = (struct sockaddr_pppox *) uservaddr;
556 struct pppox_sock *po = pppox_sk(sk);
557 int error;
558
559 lock_sock(sk);
560
561 error = -EINVAL;
562 if (sp->sa_protocol != PX_PROTO_OE)
563 goto end;
564
565 /* Check for already bound sockets */
566 error = -EBUSY;
567 if ((sk->sk_state & PPPOX_CONNECTED) && sp->sa_addr.pppoe.sid)
568 goto end;
569
570 /* Check for already disconnected sockets, on attempts to disconnect */
571 error = -EALREADY;
572 if ((sk->sk_state & PPPOX_DEAD) && !sp->sa_addr.pppoe.sid )
573 goto end;
574
575 error = 0;
576 if (po->pppoe_pa.sid) {
577 pppox_unbind_sock(sk);
578
579 /* Delete the old binding */
Florian Zumbiehl90719db2007-03-02 13:16:56 -0800580 delete_item(po->pppoe_pa.sid,po->pppoe_pa.remote,po->pppoe_dev->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582 if(po->pppoe_dev)
583 dev_put(po->pppoe_dev);
584
585 memset(sk_pppox(po) + 1, 0,
586 sizeof(struct pppox_sock) - sizeof(struct sock));
587
588 sk->sk_state = PPPOX_NONE;
589 }
590
591 /* Don't re-bind if sid==0 */
592 if (sp->sa_addr.pppoe.sid != 0) {
593 dev = dev_get_by_name(sp->sa_addr.pppoe.dev);
594
595 error = -ENODEV;
596 if (!dev)
597 goto end;
598
599 po->pppoe_dev = dev;
600
601 if (!(dev->flags & IFF_UP))
602 goto err_put;
603
604 memcpy(&po->pppoe_pa,
605 &sp->sa_addr.pppoe,
606 sizeof(struct pppoe_addr));
607
608 error = set_item(po);
609 if (error < 0)
610 goto err_put;
611
612 po->chan.hdrlen = (sizeof(struct pppoe_hdr) +
613 dev->hard_header_len);
614
Michal Ostrowskic9aa6892006-09-27 16:11:25 -0700615 po->chan.mtu = dev->mtu - sizeof(struct pppoe_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 po->chan.private = sk;
617 po->chan.ops = &pppoe_chan_ops;
618
619 error = ppp_register_channel(&po->chan);
620 if (error)
621 goto err_put;
622
623 sk->sk_state = PPPOX_CONNECTED;
624 }
625
626 po->num = sp->sa_addr.pppoe.sid;
627
628 end:
629 release_sock(sk);
630 return error;
631err_put:
632 if (po->pppoe_dev) {
633 dev_put(po->pppoe_dev);
634 po->pppoe_dev = NULL;
635 }
636 goto end;
637}
638
639
640static int pppoe_getname(struct socket *sock, struct sockaddr *uaddr,
641 int *usockaddr_len, int peer)
642{
643 int len = sizeof(struct sockaddr_pppox);
644 struct sockaddr_pppox sp;
645
646 sp.sa_family = AF_PPPOX;
647 sp.sa_protocol = PX_PROTO_OE;
648 memcpy(&sp.sa_addr.pppoe, &pppox_sk(sock->sk)->pppoe_pa,
649 sizeof(struct pppoe_addr));
650
651 memcpy(uaddr, &sp, len);
652
653 *usockaddr_len = len;
654
655 return 0;
656}
657
658
659static int pppoe_ioctl(struct socket *sock, unsigned int cmd,
660 unsigned long arg)
661{
662 struct sock *sk = sock->sk;
663 struct pppox_sock *po = pppox_sk(sk);
664 int val = 0;
665 int err = 0;
666
667 switch (cmd) {
668 case PPPIOCGMRU:
669 err = -ENXIO;
670
671 if (!(sk->sk_state & PPPOX_CONNECTED))
672 break;
673
674 err = -EFAULT;
675 if (put_user(po->pppoe_dev->mtu -
676 sizeof(struct pppoe_hdr) -
677 PPP_HDRLEN,
678 (int __user *) arg))
679 break;
680 err = 0;
681 break;
682
683 case PPPIOCSMRU:
684 err = -ENXIO;
685 if (!(sk->sk_state & PPPOX_CONNECTED))
686 break;
687
688 err = -EFAULT;
689 if (get_user(val,(int __user *) arg))
690 break;
691
692 if (val < (po->pppoe_dev->mtu
693 - sizeof(struct pppoe_hdr)
694 - PPP_HDRLEN))
695 err = 0;
696 else
697 err = -EINVAL;
698 break;
699
700 case PPPIOCSFLAGS:
701 err = -EFAULT;
702 if (get_user(val, (int __user *) arg))
703 break;
704 err = 0;
705 break;
706
707 case PPPOEIOCSFWD:
708 {
709 struct pppox_sock *relay_po;
710
711 err = -EBUSY;
712 if (sk->sk_state & (PPPOX_BOUND | PPPOX_ZOMBIE | PPPOX_DEAD))
713 break;
714
715 err = -ENOTCONN;
716 if (!(sk->sk_state & PPPOX_CONNECTED))
717 break;
718
719 /* PPPoE address from the user specifies an outbound
Florian Zumbiehl90719db2007-03-02 13:16:56 -0800720 PPPoE address which frames are forwarded to */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 err = -EFAULT;
722 if (copy_from_user(&po->pppoe_relay,
723 (void __user *)arg,
724 sizeof(struct sockaddr_pppox)))
725 break;
726
727 err = -EINVAL;
728 if (po->pppoe_relay.sa_family != AF_PPPOX ||
729 po->pppoe_relay.sa_protocol!= PX_PROTO_OE)
730 break;
731
732 /* Check that the socket referenced by the address
733 actually exists. */
734 relay_po = get_item_by_addr(&po->pppoe_relay);
735
736 if (!relay_po)
737 break;
738
739 sock_put(sk_pppox(relay_po));
740 sk->sk_state |= PPPOX_RELAY;
741 err = 0;
742 break;
743 }
744
745 case PPPOEIOCDFWD:
746 err = -EALREADY;
747 if (!(sk->sk_state & PPPOX_RELAY))
748 break;
749
750 sk->sk_state &= ~PPPOX_RELAY;
751 err = 0;
752 break;
753
754 default:;
755 };
756
757 return err;
758}
759
760
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400761static int pppoe_sendmsg(struct kiocb *iocb, struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 struct msghdr *m, size_t total_len)
763{
764 struct sk_buff *skb = NULL;
765 struct sock *sk = sock->sk;
766 struct pppox_sock *po = pppox_sk(sk);
767 int error = 0;
768 struct pppoe_hdr hdr;
769 struct pppoe_hdr *ph;
770 struct net_device *dev;
771 char *start;
772
773 if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED)) {
774 error = -ENOTCONN;
775 goto end;
776 }
777
778 hdr.ver = 1;
779 hdr.type = 1;
780 hdr.code = 0;
781 hdr.sid = po->num;
782
783 lock_sock(sk);
784
785 dev = po->pppoe_dev;
786
787 error = -EMSGSIZE;
788 if (total_len > (dev->mtu + dev->hard_header_len))
789 goto end;
790
791
792 skb = sock_wmalloc(sk, total_len + dev->hard_header_len + 32,
793 0, GFP_KERNEL);
794 if (!skb) {
795 error = -ENOMEM;
796 goto end;
797 }
798
799 /* Reserve space for headers. */
800 skb_reserve(skb, dev->hard_header_len);
801 skb->nh.raw = skb->data;
802
803 skb->dev = dev;
804
805 skb->priority = sk->sk_priority;
806 skb->protocol = __constant_htons(ETH_P_PPP_SES);
807
808 ph = (struct pppoe_hdr *) skb_put(skb, total_len + sizeof(struct pppoe_hdr));
809 start = (char *) &ph->tag[0];
810
811 error = memcpy_fromiovec(start, m->msg_iov, total_len);
812
813 if (error < 0) {
814 kfree_skb(skb);
815 goto end;
816 }
817
818 error = total_len;
819 dev->hard_header(skb, dev, ETH_P_PPP_SES,
820 po->pppoe_pa.remote, NULL, total_len);
821
822 memcpy(ph, &hdr, sizeof(struct pppoe_hdr));
823
824 ph->length = htons(total_len);
825
826 dev_queue_xmit(skb);
827
828end:
829 release_sock(sk);
830 return error;
831}
832
833
834/************************************************************************
835 *
836 * xmit function for internal use.
837 *
838 ***********************************************************************/
839static int __pppoe_xmit(struct sock *sk, struct sk_buff *skb)
840{
841 struct pppox_sock *po = pppox_sk(sk);
842 struct net_device *dev = po->pppoe_dev;
843 struct pppoe_hdr hdr;
844 struct pppoe_hdr *ph;
845 int headroom = skb_headroom(skb);
846 int data_len = skb->len;
847 struct sk_buff *skb2;
848
849 if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED))
850 goto abort;
851
852 hdr.ver = 1;
853 hdr.type = 1;
854 hdr.code = 0;
855 hdr.sid = po->num;
856 hdr.length = htons(skb->len);
857
858 if (!dev)
859 goto abort;
860
861 /* Copy the skb if there is no space for the header. */
862 if (headroom < (sizeof(struct pppoe_hdr) + dev->hard_header_len)) {
863 skb2 = dev_alloc_skb(32+skb->len +
864 sizeof(struct pppoe_hdr) +
865 dev->hard_header_len);
866
867 if (skb2 == NULL)
868 goto abort;
869
870 skb_reserve(skb2, dev->hard_header_len + sizeof(struct pppoe_hdr));
871 memcpy(skb_put(skb2, skb->len), skb->data, skb->len);
872 } else {
873 /* Make a clone so as to not disturb the original skb,
874 * give dev_queue_xmit something it can free.
875 */
876 skb2 = skb_clone(skb, GFP_ATOMIC);
Florin Malita9bc18092006-06-05 15:34:33 -0700877
878 if (skb2 == NULL)
879 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 }
881
882 ph = (struct pppoe_hdr *) skb_push(skb2, sizeof(struct pppoe_hdr));
883 memcpy(ph, &hdr, sizeof(struct pppoe_hdr));
884 skb2->protocol = __constant_htons(ETH_P_PPP_SES);
885
886 skb2->nh.raw = skb2->data;
887
888 skb2->dev = dev;
889
890 dev->hard_header(skb2, dev, ETH_P_PPP_SES,
891 po->pppoe_pa.remote, NULL, data_len);
892
893 /* We're transmitting skb2, and assuming that dev_queue_xmit
894 * will free it. The generic ppp layer however, is expecting
895 * that we give back 'skb' (not 'skb2') in case of failure,
896 * but free it in case of success.
897 */
898
899 if (dev_queue_xmit(skb2) < 0)
900 goto abort;
901
902 kfree_skb(skb);
903 return 1;
904
905abort:
906 return 0;
907}
908
909
910/************************************************************************
911 *
912 * xmit function called by generic PPP driver
913 * sends PPP frame over PPPoE socket
914 *
915 ***********************************************************************/
916static int pppoe_xmit(struct ppp_channel *chan, struct sk_buff *skb)
917{
918 struct sock *sk = (struct sock *) chan->private;
919 return __pppoe_xmit(sk, skb);
920}
921
922
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400923static struct ppp_channel_ops pppoe_chan_ops = {
924 .start_xmit = pppoe_xmit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925};
926
927static int pppoe_recvmsg(struct kiocb *iocb, struct socket *sock,
928 struct msghdr *m, size_t total_len, int flags)
929{
930 struct sock *sk = sock->sk;
931 struct sk_buff *skb = NULL;
932 int error = 0;
933 int len;
934 struct pppoe_hdr *ph = NULL;
935
936 if (sk->sk_state & PPPOX_BOUND) {
937 error = -EIO;
938 goto end;
939 }
940
941 skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT,
942 flags & MSG_DONTWAIT, &error);
943
944 if (error < 0) {
945 goto end;
946 }
947
948 m->msg_namelen = 0;
949
950 if (skb) {
951 error = 0;
952 ph = (struct pppoe_hdr *) skb->nh.raw;
953 len = ntohs(ph->length);
954
955 error = memcpy_toiovec(m->msg_iov, (unsigned char *) &ph->tag[0], len);
956 if (error < 0)
957 goto do_skb_free;
958 error = len;
959 }
960
961do_skb_free:
962 if (skb)
963 kfree_skb(skb);
964end:
965 return error;
966}
967
968#ifdef CONFIG_PROC_FS
969static int pppoe_seq_show(struct seq_file *seq, void *v)
970{
971 struct pppox_sock *po;
972 char *dev_name;
973
974 if (v == SEQ_START_TOKEN) {
975 seq_puts(seq, "Id Address Device\n");
976 goto out;
977 }
978
979 po = v;
980 dev_name = po->pppoe_pa.dev;
981
982 seq_printf(seq, "%08X %02X:%02X:%02X:%02X:%02X:%02X %8s\n",
983 po->pppoe_pa.sid,
984 po->pppoe_pa.remote[0], po->pppoe_pa.remote[1],
985 po->pppoe_pa.remote[2], po->pppoe_pa.remote[3],
986 po->pppoe_pa.remote[4], po->pppoe_pa.remote[5], dev_name);
987out:
988 return 0;
989}
990
991static __inline__ struct pppox_sock *pppoe_get_idx(loff_t pos)
992{
993 struct pppox_sock *po = NULL;
994 int i = 0;
995
996 for (; i < PPPOE_HASH_SIZE; i++) {
997 po = item_hash_table[i];
998 while (po) {
999 if (!pos--)
1000 goto out;
1001 po = po->next;
1002 }
1003 }
1004out:
1005 return po;
1006}
1007
1008static void *pppoe_seq_start(struct seq_file *seq, loff_t *pos)
1009{
1010 loff_t l = *pos;
1011
1012 read_lock_bh(&pppoe_hash_lock);
1013 return l ? pppoe_get_idx(--l) : SEQ_START_TOKEN;
1014}
1015
1016static void *pppoe_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1017{
1018 struct pppox_sock *po;
1019
1020 ++*pos;
1021 if (v == SEQ_START_TOKEN) {
1022 po = pppoe_get_idx(0);
1023 goto out;
1024 }
1025 po = v;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001026 if (po->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 po = po->next;
1028 else {
1029 int hash = hash_item(po->pppoe_pa.sid, po->pppoe_pa.remote);
1030
1031 while (++hash < PPPOE_HASH_SIZE) {
1032 po = item_hash_table[hash];
1033 if (po)
1034 break;
1035 }
1036 }
1037out:
1038 return po;
1039}
1040
1041static void pppoe_seq_stop(struct seq_file *seq, void *v)
1042{
1043 read_unlock_bh(&pppoe_hash_lock);
1044}
1045
1046static struct seq_operations pppoe_seq_ops = {
1047 .start = pppoe_seq_start,
1048 .next = pppoe_seq_next,
1049 .stop = pppoe_seq_stop,
1050 .show = pppoe_seq_show,
1051};
1052
1053static int pppoe_seq_open(struct inode *inode, struct file *file)
1054{
1055 return seq_open(file, &pppoe_seq_ops);
1056}
1057
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08001058static const struct file_operations pppoe_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 .owner = THIS_MODULE,
1060 .open = pppoe_seq_open,
1061 .read = seq_read,
1062 .llseek = seq_lseek,
1063 .release = seq_release,
1064};
1065
1066static int __init pppoe_proc_init(void)
1067{
1068 struct proc_dir_entry *p;
1069
Al Viro66600222005-09-28 22:32:57 +01001070 p = create_proc_entry("net/pppoe", S_IRUGO, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 if (!p)
1072 return -ENOMEM;
1073
1074 p->proc_fops = &pppoe_seq_fops;
1075 return 0;
1076}
1077#else /* CONFIG_PROC_FS */
1078static inline int pppoe_proc_init(void) { return 0; }
1079#endif /* CONFIG_PROC_FS */
1080
David S. Miller17ba15f2005-12-27 20:57:40 -08001081static const struct proto_ops pppoe_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 .family = AF_PPPOX,
1083 .owner = THIS_MODULE,
1084 .release = pppoe_release,
1085 .bind = sock_no_bind,
1086 .connect = pppoe_connect,
1087 .socketpair = sock_no_socketpair,
1088 .accept = sock_no_accept,
1089 .getname = pppoe_getname,
1090 .poll = datagram_poll,
1091 .listen = sock_no_listen,
1092 .shutdown = sock_no_shutdown,
1093 .setsockopt = sock_no_setsockopt,
1094 .getsockopt = sock_no_getsockopt,
1095 .sendmsg = pppoe_sendmsg,
1096 .recvmsg = pppoe_recvmsg,
David S. Miller17ba15f2005-12-27 20:57:40 -08001097 .mmap = sock_no_mmap,
1098 .ioctl = pppox_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099};
1100
1101static struct pppox_proto pppoe_proto = {
1102 .create = pppoe_create,
1103 .ioctl = pppoe_ioctl,
1104 .owner = THIS_MODULE,
1105};
1106
1107
1108static int __init pppoe_init(void)
1109{
1110 int err = proto_register(&pppoe_sk_proto, 0);
1111
1112 if (err)
1113 goto out;
1114
1115 err = register_pppox_proto(PX_PROTO_OE, &pppoe_proto);
1116 if (err)
1117 goto out_unregister_pppoe_proto;
1118
1119 err = pppoe_proc_init();
1120 if (err)
1121 goto out_unregister_pppox_proto;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001122
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 dev_add_pack(&pppoes_ptype);
1124 dev_add_pack(&pppoed_ptype);
1125 register_netdevice_notifier(&pppoe_notifier);
1126out:
1127 return err;
1128out_unregister_pppox_proto:
1129 unregister_pppox_proto(PX_PROTO_OE);
1130out_unregister_pppoe_proto:
1131 proto_unregister(&pppoe_sk_proto);
1132 goto out;
1133}
1134
1135static void __exit pppoe_exit(void)
1136{
1137 unregister_pppox_proto(PX_PROTO_OE);
1138 dev_remove_pack(&pppoes_ptype);
1139 dev_remove_pack(&pppoed_ptype);
1140 unregister_netdevice_notifier(&pppoe_notifier);
Al Viro66600222005-09-28 22:32:57 +01001141 remove_proc_entry("net/pppoe", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 proto_unregister(&pppoe_sk_proto);
1143}
1144
1145module_init(pppoe_init);
1146module_exit(pppoe_exit);
1147
1148MODULE_AUTHOR("Michal Ostrowski <mostrows@speakeasy.net>");
1149MODULE_DESCRIPTION("PPP over Ethernet driver");
1150MODULE_LICENSE("GPL");
1151MODULE_ALIAS_NETPROTO(PF_PPPOX);