1 .\" Copyright (c) 1996-1999 Whistle Communications, Inc.
2 .\" All rights reserved.
4 .\" Subject to the following obligations and disclaimer of warranty, use and
5 .\" redistribution of this software, in source or object code forms, with or
6 .\" without modifications are expressly permitted by Whistle Communications;
7 .\" provided, however, that:
8 .\" 1. Any and all reproductions of the source or object code must include the
9 .\" copyright notice above and the following disclaimer of warranties; and
10 .\" 2. No rights are granted, in any manner or form, to use Whistle
11 .\" Communications, Inc. trademarks, including the mark "WHISTLE
12 .\" COMMUNICATIONS" on advertising, endorsements, or otherwise except as
13 .\" such appears in the above copyright notice or in the software.
15 .\" THIS SOFTWARE IS BEING PROVIDED BY WHISTLE COMMUNICATIONS "AS IS", AND
16 .\" TO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO
17 .\" REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS SOFTWARE,
18 .\" INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED WARRANTIES OF
19 .\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
20 .\" WHISTLE COMMUNICATIONS DOES NOT WARRANT, GUARANTEE, OR MAKE ANY
21 .\" REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS OF THE USE OF THIS
22 .\" SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY OR OTHERWISE.
23 .\" IN NO EVENT SHALL WHISTLE COMMUNICATIONS BE LIABLE FOR ANY DAMAGES
24 .\" RESULTING FROM OR ARISING OUT OF ANY USE OF THIS SOFTWARE, INCLUDING
25 .\" WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
26 .\" PUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR
27 .\" SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY
28 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 .\" THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
33 .\" Author: Archie Cobbs <archie@FreeBSD.org>
36 .\" $Whistle: ng_pppoe.8,v 1.1 1999/01/25 23:46:27 archie Exp $
43 .Nd RFC 2516 PPPoE protocol netgraph node type
48 .In netgraph/ng_pppoe.h
52 node type performs the PPPoE protocol.
53 It is used in conjunction with the
55 extensions to the Ethernet framework to divert and inject Ethernet packets
56 to and from a PPP agent (which is not specified).
59 .Dv NGM_PPPOE_GET_STATUS
60 control message can be used at any time to query the current status
62 The only statistics presently available are the
63 total packet counts for input and output.
64 This node does not yet support
69 This node type supports the following hooks:
71 .Bl -tag -width [unspecified]
73 The hook that should normally be connected to an
78 will send a message down this hook to determine Ethernet address of
80 Obtained address will be stored and then used for outgoing datagrams.
84 Any other name is assumed to be a session hook that will be connected to
85 a PPP client agent, or a PPP server agent.
88 This node type supports the generic control messages, plus the following:
90 .It Dv NGM_PPPOE_GET_STATUS
91 This command returns status information in a
92 .Dv "struct ngpppoestat" :
93 .Bd -literal -offset 4n
95 u_int packets_in; /* packets in from Ethernet */
96 u_int packets_out; /* packets out towards Ethernet */
99 .It Dv NGM_TEXT_STATUS
100 This generic message returns a human-readable version of the node status.
102 .It Dv NGM_PPPOE_CONNECT
103 Tell a nominated newly created hook that its session should enter
104 the state machine as a client.
105 It must be newly created and a service name can be given as an argument.
106 It is legal to specify a zero-length service name, this is common
108 It is possible to request a connection to a specific
109 access concentrator by its name using the "AC-Name\\Service-Name" syntax.
110 A session request packet will be broadcasted on the Ethernet.
111 This command uses the
112 .Dv ngpppoe_init_data
113 structure shown below.
114 .It Dv NGM_PPPOE_LISTEN
115 Tell a nominated newly created hook that its session should enter
116 the state machine as a server listener.
118 given is the name of the service to listen for.
119 A zero-length service name will match all requests for service.
120 A matching service request
121 packet will be passed unmodified back to the process responsible
122 for starting the service.
123 It can then examine it and pass it on to
124 the session that is started to answer the request.
125 This command uses the
126 .Dv ngpppoe_init_data
127 structure shown below.
128 .It Dv NGM_PPPOE_OFFER
129 Tell a nominated newly created hook that its session should enter
130 the state machine as a server.
131 The argument given is the name of the service to offer.
132 A zero-length service
134 The State machine will progress to a state where it will await
135 a request packet to be forwarded to it from the startup server,
136 which in turn probably received it from a LISTEN mode hook (see above).
138 that information that is required for the session that is embedded in
139 the original session request packet, is made available to the state machine
140 that eventually answers the request.
141 When the Session request packet is
142 received, the session negotiation will proceed.
143 This command uses the
144 .Dv ngpppoe_init_data
145 structure shown below.
148 The three commands above use a common data structure:
149 .Bd -literal -offset 4n
150 struct ngpppoe_init_data {
151 char hook[NG_HOOKSIZ]; /* hook to monitor on */
152 u_int16_t data_len; /* service name length */
153 char data[0]; /* init data goes here */
157 .It Dv NGM_PPPOE_SUCCESS
158 This command is sent to the node that started this session with one of the
159 above messages, and reports a state change.
160 This message reports successful Session negotiation.
161 It uses the structure shown below, and
162 reports back the hook name corresponding to the successful session.
163 .It Dv NGM_PPPOE_FAIL
164 This command is sent to the node that started this session with one of the
165 above messages, and reports a state change.
166 This message reports failed Session negotiation.
167 It uses the structure shown below, and
168 reports back the hook name corresponding to the failed session.
169 The hook will probably have been removed immediately after sending this
171 .It Dv NGM_PPPOE_CLOSE
172 This command is sent to the node that started this session with one of the
173 above messages, and reports a state change.
174 This message reports a request to close a session.
175 It uses the structure shown below, and
176 reports back the hook name corresponding to the closed session.
177 The hook will probably have been removed immediately after sending this
179 At present this message is not yet used and a
182 will be received at closure instead.
183 .It Dv NGM_PPPOE_ACNAME
184 This command is sent to the node that started this session with one of the
185 above messages, and reports the Access Concentrator Name.
188 The four commands above use a common data structure:
189 .Bd -literal -offset 4n
191 char hook[NG_HOOKSIZ]; /* hook associated with event session */
195 .It Dv NGM_PPPOE_GETMODE
196 This command returns the current compatibility mode of the node
199 form of this message is
200 .Qq Li pppoe_getmode .
201 The following keywords can be returned:
204 The node operates according to RFC 2516.
208 is a PPPoE client, it initiates a session encapsulating packets into
209 incorrect 3Com ethertypes.
210 This compatibility option does not affect server mode.
213 supports both modes simultaneously, depending on the ethertype, the
214 client used when connecting.
218 is a PPPoE server serving only specific Service-Name(s), it will respond
219 to a PADI requests with empty Service-Name tag, returning all available
220 Service-Name(s) on node.
221 This option is necessary for compatibility with D-Link DI-614+ and DI-624+
222 SOHO routers as clients, when serving only specific Service-Name.
223 This compatibility option does not affect client mode.
225 .It Dv NGM_PPPOE_SETMODE
226 Configure node to the specified mode.
227 The string argument is required.
228 This command understands the same keywords that are returned by the
229 .Dv NGM_PPPOE_GETMODE
232 form of this message is
233 .Qq Li pppoe_setmode .
234 For example, the following command will configure the node to initiate
235 the next session in the proprietary 3Com mode:
236 .Bd -literal -offset indent
237 ngctl msg fxp0:orphans pppoe_setmode '"3Com"'
239 .It Dv NGM_PPPOE_SETENADDR
240 Set the node Ethernet address for outgoing datagrams.
241 This message is important when a node has failed to obtain an Ethernet
242 address from its peer on the
244 hook, or when user wants to override this address with another one.
246 form of this message is
250 This node shuts down upon receipt of a
252 control message, when all session have been disconnected or when the
254 hook is disconnected.
256 The following code uses
260 node and connect it to both a socket node and an Ethernet node.
261 It can handle the case of when a
263 node is already attached to the Ethernet.
264 It then starts a client session.
271 #include <sysexits.h>
275 #include <sys/types.h>
276 #include <sys/socket.h>
277 #include <sys/select.h>
278 #include <net/ethernet.h>
280 #include <netgraph.h>
281 #include <netgraph/ng_ether.h>
282 #include <netgraph/ng_pppoe.h>
283 #include <netgraph/ng_socket.h>
284 static int setup(char *ethername, char *service, char *sessname,
291 setup("xl0", NULL, "fred", &fd1, &fd2);
296 setup(char *ethername, char *service, char *sessname,
299 struct ngm_connect ngc; /* connect */
300 struct ngm_mkpeer mkp; /* mkpeer */
301 /******** nodeinfo stuff **********/
302 u_char rbuf[2 * 1024];
303 struct ng_mesg *const resp = (struct ng_mesg *) rbuf;
304 struct hooklist *const hlist
305 = (struct hooklist *) resp->data;
306 struct nodeinfo *const ninfo = &hlist->nodeinfo;
307 int ch, no_hooks = 0;
308 struct linkinfo *link;
309 struct nodeinfo *peer;
310 /****message to connect PPPoE session*****/
312 struct ngpppoe_init_data idata;
315 /********tracking our little graph ********/
317 char source_ID[NG_NODESIZ];
318 char pppoe_node_name[100];
322 * Create the data and control sockets
324 if (NgMkSockNode(NULL, cfd, dfd) < 0) {
328 * find the ether node of the name requested by asking it for
329 * it's inquiry information.
331 if (strlen(ethername) > 16)
333 sprintf(path, "%s:", ethername);
334 if (NgSendMsg(*cfd, path, NGM_GENERIC_COOKIE,
335 NGM_LISTHOOKS, NULL, 0) < 0) {
339 * the command was accepted so it exists. Await the reply (It's
340 * almost certainly already waiting).
342 if (NgRecvMsg(*cfd, resp, sizeof(rbuf), NULL) < 0) {
346 * The following is available about the node:
347 * ninfo->name (string)
348 * ninfo->type (string)
349 * ninfo->id (u_int32_t)
350 * ninfo->hooks (u_int32_t) (count of hooks)
351 * check it is the correct type. and get it's ID for use
354 if (strncmp(ninfo->type, NG_ETHER_NODE_TYPE,
355 strlen(NG_ETHER_NODE_TYPE)) != 0) {
358 sprintf(source_ID, "[%08x]:", ninfo->id);
361 * look for a hook already attached.
363 for (k = 0; k < ninfo->hooks; k++) {
365 * The following are available about each hook.
366 * link->ourhook (string)
367 * link->peerhook (string)
368 * peer->name (string)
369 * peer->type (string)
370 * peer->id (u_int32_t)
371 * peer->hooks (u_int32_t)
373 link = &hlist->link[k];
374 peer = &hlist->link[k].nodeinfo;
376 /* Ignore debug hooks */
377 if (strcmp("debug", link->ourhook) == 0)
380 /* If the orphans hook is attached, use that */
381 if (strcmp(NG_ETHER_HOOK_ORPHAN,
382 link->ourhook) == 0) {
385 /* the other option is the 'divert' hook */
386 if (strcmp("NG_ETHER_HOOK_DIVERT",
387 link->ourhook) == 0) {
393 * See if we found a hook there.
395 if (k < ninfo->hooks) {
396 if (strcmp(peer->type, NG_PPPOE_NODE_TYPE) == 0) {
398 * If it's a type PPPoE, we skip making one
399 * ourself, but we continue, using
402 sprintf(pppoe_node_name, "[%08x]:", peer->id);
405 * There is already someone hogging the data,
406 * return an error. Some day we'll try
414 * Try make a node of type PPPoE against node "ID"
415 * On hook NG_ETHER_HOOK_ORPHAN.
417 snprintf(mkp.type, sizeof(mkp.type),
418 "%s", NG_PPPOE_NODE_TYPE);
419 snprintf(mkp.ourhook, sizeof(mkp.ourhook),
420 "%s", NG_ETHER_HOOK_ORPHAN);
421 snprintf(mkp.peerhook, sizeof(mkp.peerhook),
422 "%s", NG_PPPOE_HOOK_ETHERNET);
424 if (NgSendMsg(*cfd, source_ID, NGM_GENERIC_COOKIE,
425 NGM_MKPEER, &mkp, sizeof(mkp)) < 0) {
429 * Work out a name for the new node.
431 sprintf(pppoe_node_name, "%s:%s",
432 source_ID, NG_ETHER_HOOK_ORPHAN);
435 * We now have a PPPoE node attached to the Ethernet
436 * card. The Ethernet is addressed as ethername: The PPPoE
437 * node is addressed as pppoe_node_name: attach to it.
438 * Connect socket node to specified node Use the same hook
439 * name on both ends of the link.
441 snprintf(ngc.path, sizeof(ngc.path), "%s", pppoe_node_name);
442 snprintf(ngc.ourhook, sizeof(ngc.ourhook), "%s", sessname);
443 snprintf(ngc.peerhook, sizeof(ngc.peerhook), "%s", sessname);
445 if (NgSendMsg(*cfd, ".:", NGM_GENERIC_COOKIE,
446 NGM_CONNECT, &ngc, sizeof(ngc)) < 0) {
452 * In some cases we are speaking to 3Com hardware, so
453 * configure node to non-standard mode.
455 if (NgSendMsg(*cfd, ngc.path, NGM_PPPOE_COOKIE,
456 NGM_PPPOE_SETMODE, NG_PPPOE_NONSTANDARD,
457 strlen(NG_PPPOE_NONSTANDARD) + 1) == -1) {
463 * Send it a message telling it to start up.
465 bzero(&message, sizeof(message));
466 snprintf(message.idata.hook, sizeof(message.idata.hook),
468 if (service == NULL) {
469 message.idata.data_len = 0;
471 snprintf(message.idata.data,
472 sizeof(message.idata.data), "%s", service);
473 message.idata.data_len = strlen(service);
475 /* Tell session/hook to start up as a client */
476 if (NgSendMsg(*cfd, ngc.path,
477 NGM_PPPOE_COOKIE, NGM_PPPOE_CONNECT, &message.idata,
478 sizeof(message.idata) + message.idata.data_len) < 0) {
499 .%T "A Method for transmitting PPP over Ethernet (PPPoE)"
505 node type was implemented in
508 .An Julian Elischer Aq julian@FreeBSD.org