MOXA linux-2.6.x / linux-2.6.9-uc0 from sdlinux-moxaart.tgz
[linux-2.6.9-moxart.git] / drivers / net / pppox.c
blob0a585bc369c56df9f738ec7145892febed7d4542
1 /** -*- linux-c -*- ***********************************************************
2 * Linux PPP over X/Ethernet (PPPoX/PPPoE) Sockets
4 * PPPoX --- Generic PPP encapsulation socket family
5 * PPPoE --- PPP over Ethernet (RFC 2516)
8 * Version: 0.5.2
10 * Author: Michal Ostrowski <mostrows@speakeasy.net>
12 * 051000 : Initialization cleanup
14 * License:
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version
18 * 2 of the License, or (at your option) any later version.
22 #include <linux/string.h>
23 #include <linux/module.h>
24 #include <linux/kernel.h>
25 #include <linux/slab.h>
26 #include <linux/errno.h>
27 #include <linux/netdevice.h>
28 #include <linux/net.h>
29 #include <linux/init.h>
30 #include <linux/if_pppox.h>
31 #include <linux/ppp_defs.h>
32 #include <linux/if_ppp.h>
33 #include <linux/ppp_channel.h>
35 #include <net/sock.h>
37 #include <asm/uaccess.h>
39 static struct pppox_proto *pppox_protos[PX_MAX_PROTO + 1];
41 int register_pppox_proto(int proto_num, struct pppox_proto *pp)
43 if (proto_num < 0 || proto_num > PX_MAX_PROTO)
44 return -EINVAL;
45 if (pppox_protos[proto_num])
46 return -EALREADY;
47 pppox_protos[proto_num] = pp;
48 return 0;
51 void unregister_pppox_proto(int proto_num)
53 if (proto_num >= 0 && proto_num <= PX_MAX_PROTO)
54 pppox_protos[proto_num] = NULL;
57 void pppox_unbind_sock(struct sock *sk)
59 /* Clear connection to ppp device, if attached. */
61 if (sk->sk_state & (PPPOX_BOUND | PPPOX_ZOMBIE)) {
62 ppp_unregister_channel(&pppox_sk(sk)->chan);
63 sk->sk_state = PPPOX_DEAD;
67 EXPORT_SYMBOL(register_pppox_proto);
68 EXPORT_SYMBOL(unregister_pppox_proto);
69 EXPORT_SYMBOL(pppox_unbind_sock);
71 static int pppox_ioctl(struct socket* sock, unsigned int cmd,
72 unsigned long arg)
74 struct sock *sk = sock->sk;
75 struct pppox_opt *po = pppox_sk(sk);
76 int rc = 0;
78 lock_sock(sk);
80 switch (cmd) {
81 case PPPIOCGCHAN: {
82 int index;
83 rc = -ENOTCONN;
84 if (!(sk->sk_state & PPPOX_CONNECTED))
85 break;
87 rc = -EINVAL;
88 index = ppp_channel_index(&po->chan);
89 if (put_user(index , (int __user *) arg))
90 break;
92 rc = 0;
93 sk->sk_state |= PPPOX_BOUND;
94 break;
96 default:
97 if (pppox_protos[sk->sk_protocol]->ioctl)
98 rc = pppox_protos[sk->sk_protocol]->ioctl(sock, cmd,
99 arg);
101 break;
104 release_sock(sk);
105 return rc;
109 static int pppox_create(struct socket *sock, int protocol)
111 int rc = -EPROTOTYPE;
113 if (protocol < 0 || protocol > PX_MAX_PROTO)
114 goto out;
116 rc = -EPROTONOSUPPORT;
117 if (!pppox_protos[protocol] ||
118 !try_module_get(pppox_protos[protocol]->owner))
119 goto out;
121 rc = pppox_protos[protocol]->create(sock);
122 if (!rc) {
123 /* We get to set the ioctl handler. */
124 /* For everything else, pppox is just a shell. */
125 sock->ops->ioctl = pppox_ioctl;
127 module_put(pppox_protos[protocol]->owner);
128 out:
129 return rc;
132 static struct net_proto_family pppox_proto_family = {
133 .family = PF_PPPOX,
134 .create = pppox_create,
135 .owner = THIS_MODULE,
138 static int __init pppox_init(void)
140 return sock_register(&pppox_proto_family);
143 static void __exit pppox_exit(void)
145 sock_unregister(PF_PPPOX);
148 module_init(pppox_init);
149 module_exit(pppox_exit);
151 MODULE_AUTHOR("Michal Ostrowski <mostrows@speakeasy.net>");
152 MODULE_DESCRIPTION("PPP over Ethernet driver (generic socket layer)");
153 MODULE_LICENSE("GPL");