]> git.ozlabs.org Git - ppp.git/blob - pppd/plugins/rp-pppoe/plugin.c
Revert the previous change that required channel send_config and
[ppp.git] / pppd / plugins / rp-pppoe / plugin.c
1 /***********************************************************************
2 *
3 * plugin.c
4 *
5 * pppd plugin for kernel-mode PPPoE on Linux
6 *
7 * Copyright (C) 2001 by Roaring Penguin Software Inc., Michal Ostrowski
8 * and Jamal Hadi Salim.
9 *
10 * Much code and many ideas derived from pppoe plugin by Michal
11 * Ostrowski and Jamal Hadi Salim, which carries this copyright:
12 *
13 * Copyright 2000 Michal Ostrowski <mostrows@styx.uwaterloo.ca>,
14 *                Jamal Hadi Salim <hadi@cyberus.ca>
15 * Borrows heavily from the PPPoATM plugin by Mitchell Blank Jr.,
16 * which is based in part on work from Jens Axboe and Paul Mackerras.
17 *
18 * This program is free software; you can redistribute it and/or
19 * modify it under the terms of the GNU General Public License
20 * as published by the Free Software Foundation; either version
21 * 2 of the License, or (at your option) any later version.
22 ***********************************************************************/
23
24 static char const RCSID[] =
25 "$Id: plugin.c,v 1.9 2003/04/07 00:01:46 paulus Exp $";
26
27 #define _GNU_SOURCE 1
28 #include "pppoe.h"
29
30 #include "pppd/pppd.h"
31 #include "pppd/fsm.h"
32 #include "pppd/lcp.h"
33 #include "pppd/ipcp.h"
34 #include "pppd/ccp.h"
35 #include "pppd/pathnames.h"
36
37 #include <linux/types.h>
38 #include <syslog.h>
39 #include <sys/ioctl.h>
40 #include <sys/types.h>
41 #include <sys/socket.h>
42 #include <sys/stat.h>
43 #include <string.h>
44 #include <stdlib.h>
45 #include <errno.h>
46 #include <unistd.h>
47 #include <fcntl.h>
48 #include <signal.h>
49 #include <net/ethernet.h>
50 #include <net/if_arp.h>
51 #include "ppp_defs.h"
52 #include "if_ppp.h"
53 #include "if_pppox.h"
54
55 #define _PATH_ETHOPT         _ROOT_PATH "/etc/ppp/options."
56
57 char pppd_version[] = VERSION;
58
59 /* From sys-linux.c in pppd -- MUST FIX THIS! */
60 extern int new_style_driver;
61
62 char *pppd_pppoe_service = NULL;
63 static char *acName = NULL;
64 static char *existingSession = NULL;
65 static int printACNames = 0;
66
67 static int PPPoEDevnameHook(char *cmd, char **argv, int doit);
68 static option_t Options[] = {
69     { "device name", o_wild, (void *) &PPPoEDevnameHook,
70       "PPPoE device name",
71       OPT_DEVNAM | OPT_PRIVFIX | OPT_NOARG  | OPT_A2STRVAL | OPT_STATIC,
72       devnam},
73     { "rp_pppoe_service", o_string, &pppd_pppoe_service,
74       "Desired PPPoE service name" },
75     { "rp_pppoe_ac",      o_string, &acName,
76       "Desired PPPoE access concentrator name" },
77     { "rp_pppoe_sess",    o_string, &existingSession,
78       "Attach to existing session (sessid:macaddr)" },
79     { "rp_pppoe_verbose", o_int, &printACNames,
80       "Be verbose about discovered access concentrators"},
81     { NULL }
82 };
83 int (*OldDevnameHook)(char *cmd, char **argv, int doit) = NULL;
84 static PPPoEConnection *conn = NULL;
85
86 /**********************************************************************
87  * %FUNCTION: PPPOEInitDevice
88  * %ARGUMENTS:
89  * None
90  * %RETURNS:
91  *
92  * %DESCRIPTION:
93  * Initializes PPPoE device.
94  ***********************************************************************/
95 static int
96 PPPOEInitDevice(void)
97 {
98     conn = malloc(sizeof(PPPoEConnection));
99     if (!conn) {
100         fatal("Could not allocate memory for PPPoE session");
101     }
102     memset(conn, 0, sizeof(PPPoEConnection));
103     if (acName) {
104         SET_STRING(conn->acName, acName);
105     }
106     if (pppd_pppoe_service) {
107         SET_STRING(conn->serviceName, pppd_pppoe_service);
108     }
109     SET_STRING(conn->ifName, devnam);
110     conn->discoverySocket = -1;
111     conn->sessionSocket = -1;
112     conn->useHostUniq = 1;
113     conn->printACNames = printACNames;
114     return 1;
115 }
116
117 /**********************************************************************
118  * %FUNCTION: PPPOEConnectDevice
119  * %ARGUMENTS:
120  * None
121  * %RETURNS:
122  * Non-negative if all goes well; -1 otherwise
123  * %DESCRIPTION:
124  * Connects PPPoE device.
125  ***********************************************************************/
126 static int
127 PPPOEConnectDevice(void)
128 {
129     struct sockaddr_pppox sp;
130
131     strlcpy(ppp_devnam, devnam, sizeof(ppp_devnam));
132     if (existingSession) {
133         unsigned int mac[ETH_ALEN];
134         int i, ses;
135         if (sscanf(existingSession, "%d:%x:%x:%x:%x:%x:%x",
136                    &ses, &mac[0], &mac[1], &mac[2],
137                    &mac[3], &mac[4], &mac[5]) != 7) {
138             fatal("Illegal value for rp_pppoe_sess option");
139         }
140         conn->session = htons(ses);
141         for (i=0; i<ETH_ALEN; i++) {
142             conn->peerEth[i] = (unsigned char) mac[i];
143         }
144     } else {
145         discovery(conn);
146         if (conn->discoveryState != STATE_SESSION) {
147             fatal("Unable to complete PPPoE Discovery");
148         }
149     }
150
151     /* Set PPPoE session-number for further consumption */
152     ppp_session_number = ntohs(conn->session);
153
154     /* Make the session socket */
155     conn->sessionSocket = socket(AF_PPPOX, SOCK_STREAM, PX_PROTO_OE);
156     if (conn->sessionSocket < 0) {
157         fatal("Failed to create PPPoE socket: %m");
158     }
159     sp.sa_family = AF_PPPOX;
160     sp.sa_protocol = PX_PROTO_OE;
161     sp.sa_addr.pppoe.sid = conn->session;
162     memcpy(sp.sa_addr.pppoe.dev, conn->ifName, IFNAMSIZ);
163     memcpy(sp.sa_addr.pppoe.remote, conn->peerEth, ETH_ALEN);
164
165     /* Set remote_number for ServPoET */
166     sprintf(remote_number, "%02X:%02X:%02X:%02X:%02X:%02X",
167             (unsigned) conn->peerEth[0],
168             (unsigned) conn->peerEth[1],
169             (unsigned) conn->peerEth[2],
170             (unsigned) conn->peerEth[3],
171             (unsigned) conn->peerEth[4],
172             (unsigned) conn->peerEth[5]);
173
174     if (connect(conn->sessionSocket, (struct sockaddr *) &sp,
175                 sizeof(struct sockaddr_pppox)) < 0) {
176         fatal("Failed to connect PPPoE socket: %d %m", errno);
177         return -1;
178     }
179
180     return conn->sessionSocket;
181 }
182
183 static void
184 PPPOESendConfig(int mtu,
185                 u_int32_t asyncmap,
186                 int pcomp,
187                 int accomp)
188 {
189     int sock;
190     struct ifreq ifr;
191
192     if (mtu > MAX_PPPOE_MTU) {
193         warn("Couldn't increase MTU to %d", mtu);
194         mtu = MAX_PPPOE_MTU;
195     }
196     sock = socket(AF_INET, SOCK_DGRAM, 0);
197     if (sock < 0) {
198         error("Couldn't create IP socket: %m");
199         return;
200     }
201     strlcpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
202     ifr.ifr_mtu = mtu;
203     if (ioctl(sock, SIOCSIFMTU, &ifr) < 0) {
204         error("Couldn't set interface MTU to %d: %m", mtu);
205         return;
206     }
207     (void) close (sock);
208 }
209
210
211 static void
212 PPPOERecvConfig(int mru,
213                 u_int32_t asyncmap,
214                 int pcomp,
215                 int accomp)
216 {
217     if (mru > MAX_PPPOE_MTU)
218         warn("Couldn't increase MRU to %d", mru);
219 }
220
221 /**********************************************************************
222  * %FUNCTION: PPPOEDisconnectDevice
223  * %ARGUMENTS:
224  * None
225  * %RETURNS:
226  * Nothing
227  * %DESCRIPTION:
228  * Disconnects PPPoE device
229  ***********************************************************************/
230 static void
231 PPPOEDisconnectDevice(void)
232 {
233     struct sockaddr_pppox sp;
234
235     sp.sa_family = AF_PPPOX;
236     sp.sa_protocol = PX_PROTO_OE;
237     sp.sa_addr.pppoe.sid = 0;
238     memcpy(sp.sa_addr.pppoe.dev, conn->ifName, IFNAMSIZ);
239     memcpy(sp.sa_addr.pppoe.remote, conn->peerEth, ETH_ALEN);
240     if (connect(conn->sessionSocket, (struct sockaddr *) &sp,
241                 sizeof(struct sockaddr_pppox)) < 0) {
242         fatal("Failed to disconnect PPPoE socket: %d %m", errno);
243         return;
244     }
245     close(conn->sessionSocket);
246 }
247
248 static void
249 PPPOEDeviceOptions(void)
250 {
251     char buf[256];
252     snprintf(buf, 256, _PATH_ETHOPT "%s",devnam);
253     if(!options_from_file(buf, 0, 0, 1))
254         exit(EXIT_OPTION_ERROR);
255
256 }
257
258 struct channel pppoe_channel;
259
260 /**********************************************************************
261  * %FUNCTION: PPPoEDevnameHook
262  * %ARGUMENTS:
263  * cmd -- the command (actually, the device name
264  * argv -- argument vector
265  * doit -- if non-zero, set device name.  Otherwise, just check if possible
266  * %RETURNS:
267  * 1 if we will handle this device; 0 otherwise.
268  * %DESCRIPTION:
269  * Checks if name is a valid interface name; if so, returns 1.  Also
270  * sets up devnam (string representation of device).
271  ***********************************************************************/
272 static int
273 PPPoEDevnameHook(char *cmd, char **argv, int doit)
274 {
275     int r = 1;
276     int fd;
277     struct ifreq ifr;
278
279     /* Only do it if name is "ethXXX" or "nic-XXXX.  In latter case,
280        strip off the "nic-" */
281     /* Thanks to Russ Couturier for this fix */
282     if (strlen(cmd) > 4 && !strncmp(cmd, "nic-", 4)) {
283         /* Strip off "nic-" */
284         cmd += 4;
285     } else if (strlen(cmd) < 4 || strncmp(cmd, "eth", 3)) {
286         if (OldDevnameHook) return OldDevnameHook(cmd, argv, doit);
287         return 0;
288     }
289
290     /* Open a socket */
291     if ((fd = socket(PF_PACKET, SOCK_RAW, 0)) < 0) {
292         r = 0;
293     }
294
295     /* Try getting interface index */
296     if (r) {
297         strncpy(ifr.ifr_name, cmd, sizeof(ifr.ifr_name));
298         if (ioctl(fd, SIOCGIFINDEX, &ifr) < 0) {
299             r = 0;
300         } else {
301             if (ioctl(fd, SIOCGIFHWADDR, &ifr) < 0) {
302                 r = 0;
303             } else {
304                 if (ifr.ifr_hwaddr.sa_family != ARPHRD_ETHER) {
305                     error("Interface %s not Ethernet", cmd);
306                     r=0;
307                 }
308             }
309         }
310     }
311
312     /* Close socket */
313     close(fd);
314     if (r) {
315         strncpy(devnam, cmd, sizeof(devnam));
316         if (the_channel != &pppoe_channel) {
317
318             the_channel = &pppoe_channel;
319             modem = 0;
320
321             lcp_allowoptions[0].neg_accompression = 0;
322             lcp_wantoptions[0].neg_accompression = 0;
323
324             lcp_allowoptions[0].neg_asyncmap = 0;
325             lcp_wantoptions[0].neg_asyncmap = 0;
326
327             lcp_allowoptions[0].neg_pcompression = 0;
328             lcp_wantoptions[0].neg_pcompression = 0;
329
330             ccp_allowoptions[0].deflate = 0 ;
331             ccp_wantoptions[0].deflate = 0 ;
332
333             ipcp_allowoptions[0].neg_vj=0;
334             ipcp_wantoptions[0].neg_vj=0;
335
336             ccp_allowoptions[0].bsd_compress = 0;
337             ccp_wantoptions[0].bsd_compress = 0;
338
339             PPPOEInitDevice();
340         }
341         return 1;
342     }
343
344     if (OldDevnameHook) r = OldDevnameHook(cmd, argv, doit);
345     return r;
346 }
347
348 /**********************************************************************
349  * %FUNCTION: plugin_init
350  * %ARGUMENTS:
351  * None
352  * %RETURNS:
353  * Nothing
354  * %DESCRIPTION:
355  * Initializes hooks for pppd plugin
356  ***********************************************************************/
357 void
358 plugin_init(void)
359 {
360     if (!ppp_available() && !new_style_driver) {
361         fatal("Linux kernel does not support PPPoE -- are you running 2.4.x?");
362     }
363
364     add_options(Options);
365
366     info("RP-PPPoE plugin version %s compiled against pppd %s",
367          RP_VERSION, VERSION);
368 }
369
370 /**********************************************************************
371 *%FUNCTION: fatalSys
372 *%ARGUMENTS:
373 * str -- error message
374 *%RETURNS:
375 * Nothing
376 *%DESCRIPTION:
377 * Prints a message plus the errno value to stderr and syslog and exits.
378 ***********************************************************************/
379 void
380 fatalSys(char const *str)
381 {
382     char buf[1024];
383     int i = errno;
384     sprintf(buf, "%.256s: %.256s", str, strerror(i));
385     printErr(buf);
386     sprintf(buf, "RP-PPPoE: %.256s: %.256s", str, strerror(i));
387     sendPADT(conn, buf);
388     exit(1);
389 }
390
391 /**********************************************************************
392 *%FUNCTION: rp_fatal
393 *%ARGUMENTS:
394 * str -- error message
395 *%RETURNS:
396 * Nothing
397 *%DESCRIPTION:
398 * Prints a message to stderr and syslog and exits.
399 ***********************************************************************/
400 void
401 rp_fatal(char const *str)
402 {
403     char buf[1024];
404     printErr(str);
405     sprintf(buf, "RP-PPPoE: %.256s", str);
406     sendPADT(conn, buf);
407     exit(1);
408 }
409 /**********************************************************************
410 *%FUNCTION: sysErr
411 *%ARGUMENTS:
412 * str -- error message
413 *%RETURNS:
414 * Nothing
415 *%DESCRIPTION:
416 * Prints a message plus the errno value to syslog.
417 ***********************************************************************/
418 void
419 sysErr(char const *str)
420 {
421     rp_fatal(str);
422 }
423
424
425 struct channel pppoe_channel = {
426     options: Options,
427     process_extra_options: &PPPOEDeviceOptions,
428     check_options: NULL,
429     connect: &PPPOEConnectDevice,
430     disconnect: &PPPOEDisconnectDevice,
431     establish_ppp: &generic_establish_ppp,
432     disestablish_ppp: &generic_disestablish_ppp,
433     send_config: &PPPOESendConfig,
434     recv_config: &PPPOERecvConfig,
435     close: NULL,
436     cleanup: NULL
437 };