blob: 9128e42e33e74f5f744fa4b9564cb31d2394d71b [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001/** -*- linux-c -*- ***********************************************************
2 * Linux PPP over X/Ethernet (PPPoX/PPPoE) Sockets
3 *
4 * PPPoX --- Generic PPP encapsulation socket family
5 * PPPoE --- PPP over Ethernet (RFC 2516)
6 *
7 *
8 * Version: 0.5.2
9 *
10 * Author: Michal Ostrowski <mostrows@speakeasy.net>
11 *
12 * 051000 : Initialization cleanup
13 *
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.
19 *
20 */
21
22#include <linux/string.h>
23#include <linux/module.h>
24#include <linux/kernel.h>
25#include <linux/compat.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/ppp-ioctl.h>
33#include <linux/ppp_channel.h>
34#include <linux/kmod.h>
35
36#include <net/sock.h>
37
38#include <linux/uaccess.h>
39
40static const struct pppox_proto *pppox_protos[PX_MAX_PROTO + 1];
41
42int register_pppox_proto(int proto_num, const struct pppox_proto *pp)
43{
44 if (proto_num < 0 || proto_num > PX_MAX_PROTO)
45 return -EINVAL;
46 if (pppox_protos[proto_num])
47 return -EALREADY;
48 pppox_protos[proto_num] = pp;
49 return 0;
50}
51
52void unregister_pppox_proto(int proto_num)
53{
54 if (proto_num >= 0 && proto_num <= PX_MAX_PROTO)
55 pppox_protos[proto_num] = NULL;
56}
57
58void pppox_unbind_sock(struct sock *sk)
59{
60 /* Clear connection to ppp device, if attached. */
61
62 if (sk->sk_state & (PPPOX_BOUND | PPPOX_CONNECTED)) {
63 ppp_unregister_channel(&pppox_sk(sk)->chan);
64 sk->sk_state = PPPOX_DEAD;
65 }
66}
67
68EXPORT_SYMBOL(register_pppox_proto);
69EXPORT_SYMBOL(unregister_pppox_proto);
70EXPORT_SYMBOL(pppox_unbind_sock);
71
72int pppox_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
73{
74 struct sock *sk = sock->sk;
75 struct pppox_sock *po = pppox_sk(sk);
76 int rc;
77
78 lock_sock(sk);
79
80 switch (cmd) {
81 case PPPIOCGCHAN: {
82 int index;
83 rc = -ENOTCONN;
84 if (!(sk->sk_state & PPPOX_CONNECTED))
85 break;
86
87 rc = -EINVAL;
88 index = ppp_channel_index(&po->chan);
89 if (put_user(index , (int __user *) arg))
90 break;
91
92 rc = 0;
93 sk->sk_state |= PPPOX_BOUND;
94 break;
95 }
96 default:
97 rc = pppox_protos[sk->sk_protocol]->ioctl ?
98 pppox_protos[sk->sk_protocol]->ioctl(sock, cmd, arg) : -ENOTTY;
99 }
100
101 release_sock(sk);
102 return rc;
103}
104
105EXPORT_SYMBOL(pppox_ioctl);
106
107#ifdef CONFIG_COMPAT
108int pppox_compat_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
109{
110 if (cmd == PPPOEIOCSFWD32)
111 cmd = PPPOEIOCSFWD;
112
113 return pppox_ioctl(sock, cmd, (unsigned long)compat_ptr(arg));
114}
115
116EXPORT_SYMBOL(pppox_compat_ioctl);
117#endif
118
119static int pppox_create(struct net *net, struct socket *sock, int protocol,
120 int kern)
121{
122 int rc = -EPROTOTYPE;
123
124 if (protocol < 0 || protocol > PX_MAX_PROTO)
125 goto out;
126
127 rc = -EPROTONOSUPPORT;
128 if (!pppox_protos[protocol])
129 request_module("net-pf-%d-proto-%d", PF_PPPOX, protocol);
130 if (!pppox_protos[protocol] ||
131 !try_module_get(pppox_protos[protocol]->owner))
132 goto out;
133
134 rc = pppox_protos[protocol]->create(net, sock, kern);
135
136 module_put(pppox_protos[protocol]->owner);
137out:
138 return rc;
139}
140
141static const struct net_proto_family pppox_proto_family = {
142 .family = PF_PPPOX,
143 .create = pppox_create,
144 .owner = THIS_MODULE,
145};
146
147static int __init pppox_init(void)
148{
149 return sock_register(&pppox_proto_family);
150}
151
152static void __exit pppox_exit(void)
153{
154 sock_unregister(PF_PPPOX);
155}
156
157module_init(pppox_init);
158module_exit(pppox_exit);
159
160MODULE_AUTHOR("Michal Ostrowski <mostrows@speakeasy.net>");
161MODULE_DESCRIPTION("PPP over Ethernet driver (generic socket layer)");
162MODULE_LICENSE("GPL");
163MODULE_ALIAS_NETPROTO(PF_PPPOX);