14cf49a43SJulian Elischer 24cf49a43SJulian Elischer /* 34cf49a43SJulian Elischer * ng_pppoe.c 44cf49a43SJulian Elischer * 54cf49a43SJulian Elischer * Copyright (c) 1996-1999 Whistle Communications, Inc. 64cf49a43SJulian Elischer * All rights reserved. 74cf49a43SJulian Elischer * 84cf49a43SJulian Elischer * Subject to the following obligations and disclaimer of warranty, use and 94cf49a43SJulian Elischer * redistribution of this software, in source or object code forms, with or 104cf49a43SJulian Elischer * without modifications are expressly permitted by Whistle Communications; 114cf49a43SJulian Elischer * provided, however, that: 124cf49a43SJulian Elischer * 1. Any and all reproductions of the source or object code must include the 134cf49a43SJulian Elischer * copyright notice above and the following disclaimer of warranties; and 144cf49a43SJulian Elischer * 2. No rights are granted, in any manner or form, to use Whistle 154cf49a43SJulian Elischer * Communications, Inc. trademarks, including the mark "WHISTLE 164cf49a43SJulian Elischer * COMMUNICATIONS" on advertising, endorsements, or otherwise except as 174cf49a43SJulian Elischer * such appears in the above copyright notice or in the software. 184cf49a43SJulian Elischer * 194cf49a43SJulian Elischer * THIS SOFTWARE IS BEING PROVIDED BY WHISTLE COMMUNICATIONS "AS IS", AND 204cf49a43SJulian Elischer * TO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO 214cf49a43SJulian Elischer * REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS SOFTWARE, 224cf49a43SJulian Elischer * INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED WARRANTIES OF 234cf49a43SJulian Elischer * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. 244cf49a43SJulian Elischer * WHISTLE COMMUNICATIONS DOES NOT WARRANT, GUARANTEE, OR MAKE ANY 254cf49a43SJulian Elischer * REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS OF THE USE OF THIS 264cf49a43SJulian Elischer * SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY OR OTHERWISE. 274cf49a43SJulian Elischer * IN NO EVENT SHALL WHISTLE COMMUNICATIONS BE LIABLE FOR ANY DAMAGES 284cf49a43SJulian Elischer * RESULTING FROM OR ARISING OUT OF ANY USE OF THIS SOFTWARE, INCLUDING 294cf49a43SJulian Elischer * WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, 304cf49a43SJulian Elischer * PUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR 314cf49a43SJulian Elischer * SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY 324cf49a43SJulian Elischer * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 334cf49a43SJulian Elischer * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 344cf49a43SJulian Elischer * THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY 354cf49a43SJulian Elischer * OF SUCH DAMAGE. 364cf49a43SJulian Elischer * 374cf49a43SJulian Elischer * Author: Julian Elischer <julian@whistle.com> 384cf49a43SJulian Elischer * 394cf49a43SJulian Elischer * $FreeBSD$ 404cf49a43SJulian Elischer * $Whistle: ng_pppoe.c,v 1.7 1999/10/16 10:16:43 julian Exp $ 414cf49a43SJulian Elischer */ 421e2510f8SJulian Elischer #if 0 431e2510f8SJulian Elischer #define AAA printf("pppoe: %s\n", __FUNCTION__ ); 440c65c135SJulian Elischer #define BBB printf("-%d-", __LINE__ ); 451e2510f8SJulian Elischer #else 461e2510f8SJulian Elischer #define AAA 470c65c135SJulian Elischer #define BBB 481e2510f8SJulian Elischer #endif 494cf49a43SJulian Elischer 504cf49a43SJulian Elischer #include <sys/param.h> 514cf49a43SJulian Elischer #include <sys/systm.h> 524cf49a43SJulian Elischer #include <sys/kernel.h> 534cf49a43SJulian Elischer #include <sys/mbuf.h> 544cf49a43SJulian Elischer #include <sys/malloc.h> 554cf49a43SJulian Elischer #include <sys/errno.h> 564cf49a43SJulian Elischer #include <sys/syslog.h> 574cf49a43SJulian Elischer #include <net/ethernet.h> 584cf49a43SJulian Elischer 594cf49a43SJulian Elischer #include <netgraph/ng_message.h> 604cf49a43SJulian Elischer #include <netgraph/netgraph.h> 614cf49a43SJulian Elischer #include <netgraph/ng_pppoe.h> 624cf49a43SJulian Elischer 634cf49a43SJulian Elischer /* 644cf49a43SJulian Elischer * This section contains the netgraph method declarations for the 654cf49a43SJulian Elischer * sample node. These methods define the netgraph 'type'. 664cf49a43SJulian Elischer */ 674cf49a43SJulian Elischer 684cf49a43SJulian Elischer static int ng_PPPoE_constructor(node_p *node); 694cf49a43SJulian Elischer static int ng_PPPoE_rcvmsg(node_p node, struct ng_mesg *msg, 704cf49a43SJulian Elischer const char *retaddr, struct ng_mesg **resp); 714cf49a43SJulian Elischer static int ng_PPPoE_rmnode(node_p node); 724cf49a43SJulian Elischer static int ng_PPPoE_newhook(node_p node, hook_p hook, const char *name); 734cf49a43SJulian Elischer static int ng_PPPoE_connect(hook_p hook); 744cf49a43SJulian Elischer static int ng_PPPoE_rcvdata(hook_p hook, struct mbuf *m, meta_p meta); 754cf49a43SJulian Elischer static int ng_PPPoE_disconnect(hook_p hook); 764cf49a43SJulian Elischer 774cf49a43SJulian Elischer /* Netgraph node type descriptor */ 784cf49a43SJulian Elischer static struct ng_type typestruct = { 794cf49a43SJulian Elischer NG_VERSION, 804cf49a43SJulian Elischer NG_PPPOE_NODE_TYPE, 814cf49a43SJulian Elischer NULL, 824cf49a43SJulian Elischer ng_PPPoE_constructor, 834cf49a43SJulian Elischer ng_PPPoE_rcvmsg, 844cf49a43SJulian Elischer ng_PPPoE_rmnode, 854cf49a43SJulian Elischer ng_PPPoE_newhook, 864cf49a43SJulian Elischer NULL, 874cf49a43SJulian Elischer ng_PPPoE_connect, 884cf49a43SJulian Elischer ng_PPPoE_rcvdata, 894cf49a43SJulian Elischer ng_PPPoE_rcvdata, 904cf49a43SJulian Elischer ng_PPPoE_disconnect 914cf49a43SJulian Elischer }; 924cf49a43SJulian Elischer NETGRAPH_INIT(PPPoE, &typestruct); 934cf49a43SJulian Elischer 944cf49a43SJulian Elischer /* 954cf49a43SJulian Elischer * States for the session state machine. 964cf49a43SJulian Elischer * These have no meaning if there is no hook attached yet. 974cf49a43SJulian Elischer */ 984cf49a43SJulian Elischer enum state { 994cf49a43SJulian Elischer PPPOE_SNONE=0, /* [both] Initial state */ 1004cf49a43SJulian Elischer PPPOE_SINIT, /* [Client] Sent discovery initiation */ 1014cf49a43SJulian Elischer PPPOE_PRIMED, /* [Server] Sent offer message */ 1024cf49a43SJulian Elischer PPPOE_SOFFER, /* [Server] Sent offer message */ 1034cf49a43SJulian Elischer PPPOE_SREQ, /* [Client] Sent a Request */ 1044cf49a43SJulian Elischer PPPOE_LISTENING, /* [Server] Listening for discover initiation msg */ 1054cf49a43SJulian Elischer PPPOE_NEWCONNECTED, /* [Both] Connection established, No data received */ 1064cf49a43SJulian Elischer PPPOE_CONNECTED, /* [Both] Connection established, Data received */ 1074cf49a43SJulian Elischer PPPOE_DEAD /* [Both] */ 1084cf49a43SJulian Elischer }; 1094cf49a43SJulian Elischer 1104cf49a43SJulian Elischer #define NUMTAGS 20 /* number of tags we are set up to work with */ 1114cf49a43SJulian Elischer 1124cf49a43SJulian Elischer /* 1134cf49a43SJulian Elischer * Information we store for each hook on each node for negotiating the 1144cf49a43SJulian Elischer * session. The mbuf and cluster are freed once negotiation has completed. 1154cf49a43SJulian Elischer * The whole negotiation block is then discarded. 1164cf49a43SJulian Elischer */ 1174cf49a43SJulian Elischer 1184cf49a43SJulian Elischer struct sess_neg { 1194cf49a43SJulian Elischer struct mbuf *m; /* holds cluster with last sent packet */ 1204cf49a43SJulian Elischer union packet *pkt; /* points within the above cluster */ 1214cf49a43SJulian Elischer struct callout_handle timeout_handle; /* see timeout(9) */ 1224cf49a43SJulian Elischer u_int timeout; /* 0,1,2,4,8,16 etc. seconds */ 1234cf49a43SJulian Elischer u_int numtags; 1244cf49a43SJulian Elischer struct pppoe_tag *tags[NUMTAGS]; 1254cf49a43SJulian Elischer u_int service_len; 1264cf49a43SJulian Elischer u_int ac_name_len; 1274cf49a43SJulian Elischer 1284cf49a43SJulian Elischer struct datatag service; 1294cf49a43SJulian Elischer struct datatag ac_name; 1304cf49a43SJulian Elischer }; 1314cf49a43SJulian Elischer typedef struct sess_neg *negp; 1324cf49a43SJulian Elischer 1334cf49a43SJulian Elischer /* 1344cf49a43SJulian Elischer * Session information that is needed after connection. 1354cf49a43SJulian Elischer */ 1364cf49a43SJulian Elischer struct session { 1374cf49a43SJulian Elischer hook_p hook; 1384cf49a43SJulian Elischer u_int16_t Session_ID; 1394cf49a43SJulian Elischer struct session *hash_next; /* not yet uesed */ 1404cf49a43SJulian Elischer enum state state; 1414cf49a43SJulian Elischer char creator[NG_NODELEN + 1]; /* who to notify */ 1424cf49a43SJulian Elischer struct pppoe_full_hdr pkt_hdr; /* used when connected */ 1434cf49a43SJulian Elischer negp neg; /* used when negotiating */ 1444cf49a43SJulian Elischer }; 1454cf49a43SJulian Elischer typedef struct session *sessp; 1464cf49a43SJulian Elischer 1474cf49a43SJulian Elischer /* 1484cf49a43SJulian Elischer * Information we store for each node 1494cf49a43SJulian Elischer */ 1504cf49a43SJulian Elischer struct PPPOE { 1514cf49a43SJulian Elischer node_p node; /* back pointer to node */ 1524cf49a43SJulian Elischer hook_p ethernet_hook; 1534cf49a43SJulian Elischer hook_p debug_hook; 1544cf49a43SJulian Elischer u_int packets_in; /* packets in from ethernet */ 1554cf49a43SJulian Elischer u_int packets_out; /* packets out towards ethernet */ 1564cf49a43SJulian Elischer u_int32_t flags; 1574cf49a43SJulian Elischer /*struct session *buckets[HASH_SIZE];*/ /* not yet used */ 1584cf49a43SJulian Elischer }; 1594cf49a43SJulian Elischer typedef struct PPPOE *priv_p; 1604cf49a43SJulian Elischer 1614cf49a43SJulian Elischer const struct ether_header eh_prototype = 1624cf49a43SJulian Elischer {{0xff,0xff,0xff,0xff,0xff,0xff}, 1634cf49a43SJulian Elischer {0x00,0x00,0x00,0x00,0x00,0x00}, 1644cf49a43SJulian Elischer ETHERTYPE_PPPOE_DISC}; 1654cf49a43SJulian Elischer 1664cf49a43SJulian Elischer union uniq { 1674cf49a43SJulian Elischer char bytes[sizeof(void *)]; 1684cf49a43SJulian Elischer void * pointer; 1694cf49a43SJulian Elischer }; 1704cf49a43SJulian Elischer 1714cf49a43SJulian Elischer #define LEAVE(x) do { error = x; goto quit; } while(0) 1724cf49a43SJulian Elischer static void pppoe_start(sessp sp); 1734cf49a43SJulian Elischer static void sendpacket(sessp sp); 1744cf49a43SJulian Elischer static void pppoe_ticker(void *arg); 1754cf49a43SJulian Elischer static struct pppoe_tag* scan_tags(sessp sp, struct pppoe_hdr* ph); 176b58a8a3bSJulian Elischer static int pppoe_send_event(sessp sp, enum cmd cmdid); 1774cf49a43SJulian Elischer 1784cf49a43SJulian Elischer /************************************************************************* 1794cf49a43SJulian Elischer * Some basic utilities from the Linux version with author's permission.* 1804cf49a43SJulian Elischer * Author: Michal Ostrowski <mostrows@styx.uwaterloo.ca> * 1814cf49a43SJulian Elischer ************************************************************************/ 1824cf49a43SJulian Elischer 1834cf49a43SJulian Elischer /* 1844cf49a43SJulian Elischer * Generate a new session id 1854cf49a43SJulian Elischer * XXX find out the freeBSD locking scheme. 1864cf49a43SJulian Elischer */ 1874cf49a43SJulian Elischer static u_int16_t 1884cf49a43SJulian Elischer get_new_sid(node_p node) 1894cf49a43SJulian Elischer { 1904cf49a43SJulian Elischer static int pppoe_sid = 10; 1914cf49a43SJulian Elischer sessp sp; 1924cf49a43SJulian Elischer hook_p hook; 1934cf49a43SJulian Elischer u_int16_t val; 1944cf49a43SJulian Elischer priv_p privp = node->private; 1954cf49a43SJulian Elischer 1961e2510f8SJulian Elischer AAA 1974cf49a43SJulian Elischer restart: 1984cf49a43SJulian Elischer val = pppoe_sid++; 1994cf49a43SJulian Elischer /* 2004cf49a43SJulian Elischer * Spec says 0xFFFF is reserved. 2014cf49a43SJulian Elischer * Also don't use 0x0000 2024cf49a43SJulian Elischer */ 2034cf49a43SJulian Elischer if (val == 0xffff) { 2044cf49a43SJulian Elischer pppoe_sid = 20; 2054cf49a43SJulian Elischer goto restart; 2064cf49a43SJulian Elischer } 2074cf49a43SJulian Elischer 2084cf49a43SJulian Elischer /* Check it isn't already in use */ 2094cf49a43SJulian Elischer LIST_FOREACH(hook, &node->hooks, hooks) { 2104cf49a43SJulian Elischer /* don't check special hooks */ 2114cf49a43SJulian Elischer if ((hook->private == &privp->debug_hook) 2124cf49a43SJulian Elischer || (hook->private == &privp->ethernet_hook)) 2134cf49a43SJulian Elischer continue; 2144cf49a43SJulian Elischer sp = hook->private; 2154cf49a43SJulian Elischer if (sp->Session_ID == val) 2164cf49a43SJulian Elischer goto restart; 2174cf49a43SJulian Elischer } 2184cf49a43SJulian Elischer 2194cf49a43SJulian Elischer return val; 2204cf49a43SJulian Elischer } 2214cf49a43SJulian Elischer 2224cf49a43SJulian Elischer 2234cf49a43SJulian Elischer /* 2244cf49a43SJulian Elischer * Return the location where the next tag can be put 2254cf49a43SJulian Elischer */ 2264cf49a43SJulian Elischer static __inline struct pppoe_tag* 2274cf49a43SJulian Elischer next_tag(struct pppoe_hdr* ph) 2284cf49a43SJulian Elischer { 2294cf49a43SJulian Elischer return (struct pppoe_tag*)(((char*)&ph->tag[0]) + ntohs(ph->length)); 2304cf49a43SJulian Elischer } 2314cf49a43SJulian Elischer 2324cf49a43SJulian Elischer /* 2334cf49a43SJulian Elischer * Look for a tag of a specific type 2344cf49a43SJulian Elischer * Don't trust any length the other end says. 2354cf49a43SJulian Elischer * but assume we already sanity checked ph->length. 2364cf49a43SJulian Elischer */ 2374cf49a43SJulian Elischer static struct pppoe_tag* 2384cf49a43SJulian Elischer get_tag(struct pppoe_hdr* ph, u_int16_t idx) 2394cf49a43SJulian Elischer { 2404cf49a43SJulian Elischer char *end = (char *)next_tag(ph); 2414cf49a43SJulian Elischer char *ptn; 2424cf49a43SJulian Elischer struct pppoe_tag *pt = &ph->tag[0]; 2434cf49a43SJulian Elischer /* 2444cf49a43SJulian Elischer * Keep processing tags while a tag header will still fit. 2454cf49a43SJulian Elischer */ 2461e2510f8SJulian Elischer AAA 2474cf49a43SJulian Elischer while((char*)(pt + 1) <= end) { 2484cf49a43SJulian Elischer /* 2494cf49a43SJulian Elischer * If the tag data would go past the end of the packet, abort. 2504cf49a43SJulian Elischer */ 2514cf49a43SJulian Elischer ptn = (((char *)(pt + 1)) + ntohs(pt->tag_len)); 2524cf49a43SJulian Elischer if(ptn > end) 2534cf49a43SJulian Elischer return NULL; 2544cf49a43SJulian Elischer 2554cf49a43SJulian Elischer if(pt->tag_type == idx) 2564cf49a43SJulian Elischer return pt; 2574cf49a43SJulian Elischer 2584cf49a43SJulian Elischer pt = (struct pppoe_tag*)ptn; 2594cf49a43SJulian Elischer } 2604cf49a43SJulian Elischer return NULL; 2614cf49a43SJulian Elischer } 2624cf49a43SJulian Elischer 2634cf49a43SJulian Elischer /************************************************************************** 2644cf49a43SJulian Elischer * inlines to initialise or add tags to a session's tag list, 2654cf49a43SJulian Elischer **************************************************************************/ 2664cf49a43SJulian Elischer /* 2674cf49a43SJulian Elischer * Initialise the session's tag list 2684cf49a43SJulian Elischer */ 2694cf49a43SJulian Elischer static void 2704cf49a43SJulian Elischer init_tags(sessp sp) 2714cf49a43SJulian Elischer { 2721e2510f8SJulian Elischer AAA 2734cf49a43SJulian Elischer if(sp->neg == NULL) { 2744cf49a43SJulian Elischer printf("pppoe: asked to init NULL neg pointer\n"); 2754cf49a43SJulian Elischer return; 2764cf49a43SJulian Elischer } 2774cf49a43SJulian Elischer sp->neg->numtags = 0; 2784cf49a43SJulian Elischer } 2794cf49a43SJulian Elischer 2804cf49a43SJulian Elischer static void 2814cf49a43SJulian Elischer insert_tag(sessp sp, struct pppoe_tag *tp) 2824cf49a43SJulian Elischer { 2834cf49a43SJulian Elischer int i; 2844cf49a43SJulian Elischer negp neg; 2854cf49a43SJulian Elischer 2861e2510f8SJulian Elischer AAA 2874cf49a43SJulian Elischer if((neg = sp->neg) == NULL) { 2884cf49a43SJulian Elischer printf("pppoe: asked to use NULL neg pointer\n"); 2894cf49a43SJulian Elischer return; 2904cf49a43SJulian Elischer } 2914cf49a43SJulian Elischer if ((i = neg->numtags++) < NUMTAGS) { 2924cf49a43SJulian Elischer neg->tags[i] = tp; 2934cf49a43SJulian Elischer } else { 2944cf49a43SJulian Elischer printf("pppoe: asked to add too many tags to packet\n"); 2954cf49a43SJulian Elischer } 2964cf49a43SJulian Elischer } 2974cf49a43SJulian Elischer 2984cf49a43SJulian Elischer /* 2994cf49a43SJulian Elischer * Make up a packet, using the tags filled out for the session. 3004cf49a43SJulian Elischer * 3014cf49a43SJulian Elischer * Assume that the actual pppoe header and ethernet header 3024cf49a43SJulian Elischer * are filled out externally to this routine. 3034cf49a43SJulian Elischer * Also assume that neg->wh points to the correct 3044cf49a43SJulian Elischer * location at the front of the buffer space. 3054cf49a43SJulian Elischer */ 3064cf49a43SJulian Elischer static void 3074cf49a43SJulian Elischer make_packet(sessp sp) { 3084cf49a43SJulian Elischer struct pppoe_full_hdr *wh = &sp->neg->pkt->pkt_header; 3094cf49a43SJulian Elischer struct pppoe_tag **tag; 3104cf49a43SJulian Elischer char *dp; 3114cf49a43SJulian Elischer int count; 3124cf49a43SJulian Elischer int tlen; 3134cf49a43SJulian Elischer u_int16_t length = 0; 3144cf49a43SJulian Elischer 3151e2510f8SJulian Elischer AAA 3161e2510f8SJulian Elischer if ((sp->neg == NULL) || (sp->neg->m == NULL)) { 3174cf49a43SJulian Elischer printf("pppoe: make_packet called from wrong state\n"); 3184cf49a43SJulian Elischer } 3194cf49a43SJulian Elischer dp = (char *)wh->ph.tag; 3204cf49a43SJulian Elischer for (count = 0, tag = sp->neg->tags; 3214cf49a43SJulian Elischer ((count < sp->neg->numtags) && (count < NUMTAGS)); 3224cf49a43SJulian Elischer tag++, count++) { 3234cf49a43SJulian Elischer tlen = ntohs((*tag)->tag_len) + sizeof(**tag); 3244cf49a43SJulian Elischer if ((length + tlen) > (ETHER_MAX_LEN - 4 - sizeof(*wh))) { 3254cf49a43SJulian Elischer printf("pppoe: tags too long\n"); 3264cf49a43SJulian Elischer sp->neg->numtags = count; 3274cf49a43SJulian Elischer break; /* XXX chop off what's too long */ 3284cf49a43SJulian Elischer } 3294cf49a43SJulian Elischer bcopy((char *)*tag, (char *)dp, tlen); 3304cf49a43SJulian Elischer length += tlen; 3314cf49a43SJulian Elischer dp += tlen; 3324cf49a43SJulian Elischer } 3334cf49a43SJulian Elischer wh->ph.length = htons(length); 3344cf49a43SJulian Elischer sp->neg->m->m_len = length + sizeof(*wh); 3354cf49a43SJulian Elischer sp->neg->m->m_pkthdr.len = length + sizeof(*wh); 3364cf49a43SJulian Elischer } 3374cf49a43SJulian Elischer 3384cf49a43SJulian Elischer /************************************************************************** 3394cf49a43SJulian Elischer * Routine to match a service offered * 3404cf49a43SJulian Elischer **************************************************************************/ 3414cf49a43SJulian Elischer /* 3424cf49a43SJulian Elischer * Find a hook that has a service string that matches that 3434cf49a43SJulian Elischer * we are seeking. for now use a simple string. 3444cf49a43SJulian Elischer * In the future we may need something like regexp(). 3454cf49a43SJulian Elischer * for testing allow a null string to match 1st found and a null service 3464cf49a43SJulian Elischer * to match all requests. Also make '*' do the same. 3474cf49a43SJulian Elischer */ 3484cf49a43SJulian Elischer static hook_p 3494cf49a43SJulian Elischer pppoe_match_svc(node_p node, char *svc_name, int svc_len) 3504cf49a43SJulian Elischer { 3514cf49a43SJulian Elischer sessp sp = NULL; 3524cf49a43SJulian Elischer negp neg = NULL; 3534cf49a43SJulian Elischer priv_p privp = node->private; 3544cf49a43SJulian Elischer hook_p hook; 3554cf49a43SJulian Elischer 3561e2510f8SJulian Elischer AAA 3574cf49a43SJulian Elischer LIST_FOREACH(hook, &node->hooks, hooks) { 3584cf49a43SJulian Elischer 3594cf49a43SJulian Elischer /* skip any hook that is debug or ethernet */ 3604cf49a43SJulian Elischer if ((hook->private == &privp->debug_hook) 3614cf49a43SJulian Elischer || (hook->private == &privp->ethernet_hook)) 3624cf49a43SJulian Elischer continue; 3634cf49a43SJulian Elischer sp = hook->private; 3644cf49a43SJulian Elischer 3654cf49a43SJulian Elischer /* Skip any sessions which are not in LISTEN mode. */ 3664cf49a43SJulian Elischer if ( sp->state != PPPOE_LISTENING) 3674cf49a43SJulian Elischer continue; 3684cf49a43SJulian Elischer 3694cf49a43SJulian Elischer neg = sp->neg; 3704cf49a43SJulian Elischer /* XXX check validity of this */ 3714cf49a43SJulian Elischer /* special case, NULL request. match 1st found. */ 3724cf49a43SJulian Elischer if (svc_len == 0) 3734cf49a43SJulian Elischer break; 3744cf49a43SJulian Elischer 3754cf49a43SJulian Elischer /* XXX check validity of this */ 3764cf49a43SJulian Elischer /* Special case for a blank or "*" service name (wildcard) */ 3774cf49a43SJulian Elischer if ((neg->service_len == 0) 3784cf49a43SJulian Elischer || ((neg->service_len == 1) 3794cf49a43SJulian Elischer && (neg->service.data[0] == '*'))) { 3804cf49a43SJulian Elischer break; 3814cf49a43SJulian Elischer } 3824cf49a43SJulian Elischer 3834cf49a43SJulian Elischer /* If the lengths don't match, that aint it. */ 3844cf49a43SJulian Elischer if (neg->service_len != svc_len) 3854cf49a43SJulian Elischer continue; 3864cf49a43SJulian Elischer 3874cf49a43SJulian Elischer /* An exact match? */ 3884cf49a43SJulian Elischer if (strncmp(svc_name, neg->service.data, svc_len) == 0) 3894cf49a43SJulian Elischer break; 3904cf49a43SJulian Elischer } 3914cf49a43SJulian Elischer return (hook); 3924cf49a43SJulian Elischer } 3934cf49a43SJulian Elischer /************************************************************************** 3944cf49a43SJulian Elischer * Routine to find a particular session that matches an incoming packet * 3954cf49a43SJulian Elischer **************************************************************************/ 3964cf49a43SJulian Elischer static hook_p 3974cf49a43SJulian Elischer pppoe_findsession(node_p node, struct pppoe_full_hdr *wh) 3984cf49a43SJulian Elischer { 3994cf49a43SJulian Elischer sessp sp = NULL; 4004cf49a43SJulian Elischer hook_p hook = NULL; 4014cf49a43SJulian Elischer priv_p privp = node->private; 402b86d0a9eSJulian Elischer u_int16_t session = ntohs(wh->ph.sid); 4034cf49a43SJulian Elischer 4044cf49a43SJulian Elischer /* 4054cf49a43SJulian Elischer * find matching peer/session combination. 4064cf49a43SJulian Elischer */ 4071e2510f8SJulian Elischer AAA 4084cf49a43SJulian Elischer LIST_FOREACH(hook, &node->hooks, hooks) { 4094cf49a43SJulian Elischer /* don't check special hooks */ 4104cf49a43SJulian Elischer if ((hook->private == &privp->debug_hook) 4114cf49a43SJulian Elischer || (hook->private == &privp->ethernet_hook)) { 4124cf49a43SJulian Elischer continue; 4134cf49a43SJulian Elischer } 4144cf49a43SJulian Elischer sp = hook->private; 4154cf49a43SJulian Elischer if ( ( (sp->state == PPPOE_CONNECTED) 4164cf49a43SJulian Elischer || (sp->state == PPPOE_NEWCONNECTED) ) 4174cf49a43SJulian Elischer && (sp->Session_ID == session) 4184cf49a43SJulian Elischer && (bcmp(sp->pkt_hdr.eh.ether_dhost, 4194cf49a43SJulian Elischer wh->eh.ether_shost, 4204cf49a43SJulian Elischer ETHER_ADDR_LEN)) == 0) { 4214cf49a43SJulian Elischer break; 4224cf49a43SJulian Elischer } 4234cf49a43SJulian Elischer } 4244cf49a43SJulian Elischer return (hook); 4254cf49a43SJulian Elischer } 4264cf49a43SJulian Elischer 4274cf49a43SJulian Elischer static hook_p 4284cf49a43SJulian Elischer pppoe_finduniq(node_p node, struct pppoe_tag *tag) 4294cf49a43SJulian Elischer { 4304cf49a43SJulian Elischer hook_p hook = NULL; 4314cf49a43SJulian Elischer priv_p privp = node->private; 4324cf49a43SJulian Elischer union uniq uniq; 4334cf49a43SJulian Elischer 4341e2510f8SJulian Elischer AAA 4354cf49a43SJulian Elischer bcopy(tag->tag_data, uniq.bytes, sizeof(void *)); 4364cf49a43SJulian Elischer /* cycle through all known hooks */ 4374cf49a43SJulian Elischer LIST_FOREACH(hook, &node->hooks, hooks) { 4384cf49a43SJulian Elischer /* don't check special hooks */ 4394cf49a43SJulian Elischer if ((hook->private == &privp->debug_hook) 4404cf49a43SJulian Elischer || (hook->private == &privp->ethernet_hook)) 4414cf49a43SJulian Elischer continue; 4424cf49a43SJulian Elischer if (uniq.pointer == hook->private) 4434cf49a43SJulian Elischer break; 4444cf49a43SJulian Elischer } 4454cf49a43SJulian Elischer return (hook); 4464cf49a43SJulian Elischer } 4474cf49a43SJulian Elischer 4484cf49a43SJulian Elischer /************************************************************************** 4494cf49a43SJulian Elischer * start of Netgraph entrypoints * 4504cf49a43SJulian Elischer **************************************************************************/ 4514cf49a43SJulian Elischer 4524cf49a43SJulian Elischer /* 4534cf49a43SJulian Elischer * Allocate the private data structure and the generic node 4544cf49a43SJulian Elischer * and link them together. 4554cf49a43SJulian Elischer * 4564cf49a43SJulian Elischer * ng_make_node_common() returns with a generic node struct 4574cf49a43SJulian Elischer * with a single reference for us.. we transfer it to the 4584cf49a43SJulian Elischer * private structure.. when we free the private struct we must 4594cf49a43SJulian Elischer * unref the node so it gets freed too. 4604cf49a43SJulian Elischer * 4614cf49a43SJulian Elischer * If this were a device node than this work would be done in the attach() 4624cf49a43SJulian Elischer * routine and the constructor would return EINVAL as you should not be able 4634cf49a43SJulian Elischer * to creatednodes that depend on hardware (unless you can add the hardware :) 4644cf49a43SJulian Elischer */ 4654cf49a43SJulian Elischer static int 4664cf49a43SJulian Elischer ng_PPPoE_constructor(node_p *nodep) 4674cf49a43SJulian Elischer { 4684cf49a43SJulian Elischer priv_p privdata; 4694cf49a43SJulian Elischer int error; 4704cf49a43SJulian Elischer 4711e2510f8SJulian Elischer AAA 4724cf49a43SJulian Elischer /* Initialize private descriptor */ 4734cf49a43SJulian Elischer MALLOC(privdata, priv_p, sizeof(*privdata), M_NETGRAPH, M_WAITOK); 4744cf49a43SJulian Elischer if (privdata == NULL) 4754cf49a43SJulian Elischer return (ENOMEM); 4764cf49a43SJulian Elischer bzero(privdata, sizeof(*privdata)); 4774cf49a43SJulian Elischer 4784cf49a43SJulian Elischer /* Call the 'generic' (ie, superclass) node constructor */ 4794cf49a43SJulian Elischer if ((error = ng_make_node_common(&typestruct, nodep))) { 4804cf49a43SJulian Elischer FREE(privdata, M_NETGRAPH); 4814cf49a43SJulian Elischer return (error); 4824cf49a43SJulian Elischer } 4834cf49a43SJulian Elischer 4844cf49a43SJulian Elischer /* Link structs together; this counts as our one reference to *nodep */ 4854cf49a43SJulian Elischer (*nodep)->private = privdata; 4864cf49a43SJulian Elischer privdata->node = *nodep; 4874cf49a43SJulian Elischer return (0); 4884cf49a43SJulian Elischer } 4894cf49a43SJulian Elischer 4904cf49a43SJulian Elischer /* 4914cf49a43SJulian Elischer * Give our ok for a hook to be added... 4924cf49a43SJulian Elischer * point the hook's private info to the hook structure. 4934cf49a43SJulian Elischer * 4944cf49a43SJulian Elischer * The following hook names are special: 4954cf49a43SJulian Elischer * Ethernet: the hook that should be connected to a NIC. 4964cf49a43SJulian Elischer * debug: copies of data sent out here (when I write the code). 4974cf49a43SJulian Elischer */ 4984cf49a43SJulian Elischer static int 4994cf49a43SJulian Elischer ng_PPPoE_newhook(node_p node, hook_p hook, const char *name) 5004cf49a43SJulian Elischer { 5014cf49a43SJulian Elischer const priv_p privp = node->private; 5024cf49a43SJulian Elischer sessp sp; 5034cf49a43SJulian Elischer 5041e2510f8SJulian Elischer AAA 5054cf49a43SJulian Elischer if (strcmp(name, NG_PPPOE_HOOK_ETHERNET) == 0) { 5064cf49a43SJulian Elischer privp->ethernet_hook = hook; 5074cf49a43SJulian Elischer hook->private = &privp->ethernet_hook; 5084cf49a43SJulian Elischer } else if (strcmp(name, NG_PPPOE_HOOK_DEBUG) == 0) { 5094cf49a43SJulian Elischer privp->debug_hook = hook; 5104cf49a43SJulian Elischer hook->private = &privp->debug_hook; 5114cf49a43SJulian Elischer } else { 5124cf49a43SJulian Elischer /* 5134cf49a43SJulian Elischer * Any other unique name is OK. 5144cf49a43SJulian Elischer * The infrastructure has already checked that it's unique, 5154cf49a43SJulian Elischer * so just allocate it and hook it in. 5164cf49a43SJulian Elischer */ 5174cf49a43SJulian Elischer MALLOC(sp, sessp, sizeof(*sp), M_NETGRAPH, M_WAITOK); 5184cf49a43SJulian Elischer if (sp == NULL) { 5194cf49a43SJulian Elischer return (ENOMEM); 5204cf49a43SJulian Elischer } 5214cf49a43SJulian Elischer bzero(sp, sizeof(*sp)); 5224cf49a43SJulian Elischer 5234cf49a43SJulian Elischer hook->private = sp; 5244cf49a43SJulian Elischer sp->hook = hook; 5254cf49a43SJulian Elischer } 5264cf49a43SJulian Elischer return(0); 5274cf49a43SJulian Elischer } 5284cf49a43SJulian Elischer 5294cf49a43SJulian Elischer /* 5304cf49a43SJulian Elischer * Get a netgraph control message. 5314cf49a43SJulian Elischer * Check it is one we understand. If needed, send a response. 5324cf49a43SJulian Elischer * We sometimes save the address for an async action later. 5334cf49a43SJulian Elischer * Always free the message. 5344cf49a43SJulian Elischer */ 5354cf49a43SJulian Elischer static int 5364cf49a43SJulian Elischer ng_PPPoE_rcvmsg(node_p node, 5374cf49a43SJulian Elischer struct ng_mesg *msg, const char *retaddr, struct ng_mesg **rptr) 5384cf49a43SJulian Elischer { 5394cf49a43SJulian Elischer priv_p privp = node->private; 5404cf49a43SJulian Elischer struct ngPPPoE_init_data *ourmsg = NULL; 5414cf49a43SJulian Elischer struct ng_mesg *resp = NULL; 5424cf49a43SJulian Elischer int error = 0; 5434cf49a43SJulian Elischer hook_p hook = NULL; 5444cf49a43SJulian Elischer sessp sp = NULL; 5454cf49a43SJulian Elischer negp neg = NULL; 5464cf49a43SJulian Elischer 5471e2510f8SJulian Elischer AAA 5484cf49a43SJulian Elischer /* Deal with message according to cookie and command */ 5494cf49a43SJulian Elischer switch (msg->header.typecookie) { 5504cf49a43SJulian Elischer case NGM_PPPOE_COOKIE: 5514cf49a43SJulian Elischer switch (msg->header.cmd) { 5524cf49a43SJulian Elischer case NGM_PPPOE_CONNECT: 5534cf49a43SJulian Elischer case NGM_PPPOE_LISTEN: 5544cf49a43SJulian Elischer case NGM_PPPOE_OFFER: 5554cf49a43SJulian Elischer ourmsg = (struct ngPPPoE_init_data *)msg->data; 5564cf49a43SJulian Elischer if (( sizeof(*ourmsg) > msg->header.arglen) 5574cf49a43SJulian Elischer || ((sizeof(*ourmsg) + ourmsg->data_len) 5584cf49a43SJulian Elischer > msg->header.arglen)) { 5594cf49a43SJulian Elischer printf("PPPoE_rcvmsg: bad arg size"); 5604cf49a43SJulian Elischer LEAVE(EMSGSIZE); 5614cf49a43SJulian Elischer } 5624cf49a43SJulian Elischer if (ourmsg->data_len > PPPOE_SERVICE_NAME_SIZE) { 5634cf49a43SJulian Elischer printf("pppoe: init data too long (%d)\n", 5644cf49a43SJulian Elischer ourmsg->data_len); 5654cf49a43SJulian Elischer LEAVE(EMSGSIZE); 5664cf49a43SJulian Elischer } 5674cf49a43SJulian Elischer /* make sure strcmp will terminate safely */ 5684cf49a43SJulian Elischer ourmsg->hook[sizeof(ourmsg->hook) - 1] = '\0'; 5694cf49a43SJulian Elischer 5704cf49a43SJulian Elischer /* cycle through all known hooks */ 5714cf49a43SJulian Elischer LIST_FOREACH(hook, &node->hooks, hooks) { 5724cf49a43SJulian Elischer if (hook->name 5734cf49a43SJulian Elischer && strcmp(hook->name, ourmsg->hook) == 0) 5744cf49a43SJulian Elischer break; 5754cf49a43SJulian Elischer } 5764cf49a43SJulian Elischer if (hook == NULL) { 5774cf49a43SJulian Elischer LEAVE(ENOENT); 5784cf49a43SJulian Elischer } 5794cf49a43SJulian Elischer if ((hook->private == &privp->debug_hook) 5804cf49a43SJulian Elischer || (hook->private == &privp->ethernet_hook)) { 5814cf49a43SJulian Elischer LEAVE(EINVAL); 5824cf49a43SJulian Elischer } 5834cf49a43SJulian Elischer sp = hook->private; 5844cf49a43SJulian Elischer if (sp->state |= PPPOE_SNONE) { 5854cf49a43SJulian Elischer printf("pppoe: Session already active\n"); 5864cf49a43SJulian Elischer LEAVE(EISCONN); 5874cf49a43SJulian Elischer } 5881e2510f8SJulian Elischer 5894cf49a43SJulian Elischer /* 5904cf49a43SJulian Elischer * set up prototype header 5914cf49a43SJulian Elischer */ 5924cf49a43SJulian Elischer MALLOC(neg, negp, sizeof(*neg), M_NETGRAPH, M_WAITOK); 5934cf49a43SJulian Elischer 5944cf49a43SJulian Elischer if (neg == NULL) { 5954cf49a43SJulian Elischer printf("pppoe: Session out of memory\n"); 5964cf49a43SJulian Elischer LEAVE(ENOMEM); 5974cf49a43SJulian Elischer } 5984cf49a43SJulian Elischer bzero(neg, sizeof(*neg)); 5994cf49a43SJulian Elischer MGETHDR(neg->m, M_DONTWAIT, MT_DATA); 6004cf49a43SJulian Elischer if(neg->m == NULL) { 6011e2510f8SJulian Elischer printf("pppoe: Session out of mbufs\n"); 6024cf49a43SJulian Elischer FREE(neg, M_NETGRAPH); 6034cf49a43SJulian Elischer LEAVE(ENOBUFS); 6044cf49a43SJulian Elischer } 6054cf49a43SJulian Elischer neg->m->m_pkthdr.rcvif = NULL; 6064cf49a43SJulian Elischer MCLGET(neg->m, M_DONTWAIT); 6074cf49a43SJulian Elischer if ((neg->m->m_flags & M_EXT) == 0) { 6081e2510f8SJulian Elischer printf("pppoe: Session out of mcls\n"); 6094cf49a43SJulian Elischer m_freem(neg->m); 6104cf49a43SJulian Elischer FREE(neg, M_NETGRAPH); 6114cf49a43SJulian Elischer LEAVE(ENOBUFS); 6124cf49a43SJulian Elischer } 6134cf49a43SJulian Elischer sp->neg = neg; 6141e2510f8SJulian Elischer callout_handle_init( &neg->timeout_handle); 6154cf49a43SJulian Elischer neg->m->m_len = sizeof(struct pppoe_full_hdr); 6164cf49a43SJulian Elischer neg->pkt = mtod(neg->m, union packet*); 6174cf49a43SJulian Elischer neg->pkt->pkt_header.eh = eh_prototype; 6184cf49a43SJulian Elischer neg->pkt->pkt_header.ph.ver = 0x1; 6194cf49a43SJulian Elischer neg->pkt->pkt_header.ph.type = 0x1; 6204cf49a43SJulian Elischer neg->pkt->pkt_header.ph.sid = 0x0000; 6214cf49a43SJulian Elischer neg->timeout = 0; 6224cf49a43SJulian Elischer 6234cf49a43SJulian Elischer strncpy(sp->creator, retaddr, NG_NODELEN); 6244cf49a43SJulian Elischer sp->creator[NG_NODELEN] = '\0'; 6254cf49a43SJulian Elischer } 6264cf49a43SJulian Elischer switch (msg->header.cmd) { 6274cf49a43SJulian Elischer case NGM_PPPOE_GET_STATUS: 6284cf49a43SJulian Elischer { 6294cf49a43SJulian Elischer struct ngPPPoEstat *stats; 6304cf49a43SJulian Elischer 6314cf49a43SJulian Elischer NG_MKRESPONSE(resp, msg, sizeof(*stats), M_NOWAIT); 6324cf49a43SJulian Elischer if (!resp) { 6334cf49a43SJulian Elischer LEAVE(ENOMEM); 6344cf49a43SJulian Elischer } 6354cf49a43SJulian Elischer stats = (struct ngPPPoEstat *) resp->data; 6364cf49a43SJulian Elischer stats->packets_in = privp->packets_in; 6374cf49a43SJulian Elischer stats->packets_out = privp->packets_out; 6384cf49a43SJulian Elischer break; 6394cf49a43SJulian Elischer } 6404cf49a43SJulian Elischer case NGM_PPPOE_CONNECT: 6414cf49a43SJulian Elischer /* 6424cf49a43SJulian Elischer * Check the hook exists and is Uninitialised. 6434cf49a43SJulian Elischer * Send a PADI request, and start the timeout logic. 6444cf49a43SJulian Elischer * Store the originator of this message so we can send 6454cf49a43SJulian Elischer * a success of fail message to them later. 6464cf49a43SJulian Elischer * Move the session to SINIT 6474cf49a43SJulian Elischer * Set up the session to the correct state and 6484cf49a43SJulian Elischer * start it. 6494cf49a43SJulian Elischer */ 6504cf49a43SJulian Elischer neg->service.hdr.tag_type = PTT_SRV_NAME; 6514cf49a43SJulian Elischer neg->service.hdr.tag_len = 6524cf49a43SJulian Elischer htons((u_int16_t)ourmsg->data_len); 6531e2510f8SJulian Elischer if (ourmsg->data_len) { 6544cf49a43SJulian Elischer bcopy(ourmsg->data, 6554cf49a43SJulian Elischer neg->service.data, ourmsg->data_len); 6561e2510f8SJulian Elischer } 6574cf49a43SJulian Elischer neg->service_len = ourmsg->data_len; 6584cf49a43SJulian Elischer pppoe_start(sp); 6594cf49a43SJulian Elischer break; 6604cf49a43SJulian Elischer case NGM_PPPOE_LISTEN: 6614cf49a43SJulian Elischer /* 6624cf49a43SJulian Elischer * Check the hook exists and is Uninitialised. 6634cf49a43SJulian Elischer * Install the service matching string. 6644cf49a43SJulian Elischer * Store the originator of this message so we can send 6654cf49a43SJulian Elischer * a success of fail message to them later. 6664cf49a43SJulian Elischer * Move the hook to 'LISTENING' 6671e2510f8SJulian Elischer 6684cf49a43SJulian Elischer */ 6694cf49a43SJulian Elischer neg->service.hdr.tag_type = PTT_SRV_NAME; 6704cf49a43SJulian Elischer neg->service.hdr.tag_len = 6714cf49a43SJulian Elischer htons((u_int16_t)ourmsg->data_len); 6721e2510f8SJulian Elischer 6731e2510f8SJulian Elischer if (ourmsg->data_len) { 6744cf49a43SJulian Elischer bcopy(ourmsg->data, 6754cf49a43SJulian Elischer neg->service.data, ourmsg->data_len); 6761e2510f8SJulian Elischer } 6774cf49a43SJulian Elischer neg->service_len = ourmsg->data_len; 6784cf49a43SJulian Elischer neg->pkt->pkt_header.ph.code = PADT_CODE; 6794cf49a43SJulian Elischer /* 6804cf49a43SJulian Elischer * wait for PADI packet coming from ethernet 6814cf49a43SJulian Elischer */ 6824cf49a43SJulian Elischer sp->state = PPPOE_LISTENING; 6834cf49a43SJulian Elischer break; 6844cf49a43SJulian Elischer case NGM_PPPOE_OFFER: 6854cf49a43SJulian Elischer /* 6864cf49a43SJulian Elischer * Check the hook exists and is Uninitialised. 6874cf49a43SJulian Elischer * Store the originator of this message so we can send 6884cf49a43SJulian Elischer * a success of fail message to them later. 6894cf49a43SJulian Elischer * Store the AC-Name given and go to PRIMED. 6904cf49a43SJulian Elischer */ 6914cf49a43SJulian Elischer neg->ac_name.hdr.tag_type = PTT_AC_NAME; 6924cf49a43SJulian Elischer neg->ac_name.hdr.tag_len = 6934cf49a43SJulian Elischer htons((u_int16_t)ourmsg->data_len); 6941e2510f8SJulian Elischer if (ourmsg->data_len) { 6954cf49a43SJulian Elischer bcopy(ourmsg->data, 6964cf49a43SJulian Elischer neg->ac_name.data, ourmsg->data_len); 6971e2510f8SJulian Elischer } 6984cf49a43SJulian Elischer neg->ac_name_len = ourmsg->data_len; 6994cf49a43SJulian Elischer neg->pkt->pkt_header.ph.code = PADO_CODE; 7004cf49a43SJulian Elischer /* 7014cf49a43SJulian Elischer * Wait for PADI packet coming from hook 7024cf49a43SJulian Elischer */ 7034cf49a43SJulian Elischer sp->state = PPPOE_PRIMED; 7044cf49a43SJulian Elischer break; 7054cf49a43SJulian Elischer default: 7064cf49a43SJulian Elischer LEAVE(EINVAL); 7074cf49a43SJulian Elischer } 7084cf49a43SJulian Elischer break; 7094cf49a43SJulian Elischer default: 7104cf49a43SJulian Elischer LEAVE(EINVAL); 7114cf49a43SJulian Elischer } 7124cf49a43SJulian Elischer 7134cf49a43SJulian Elischer /* Take care of synchronous response, if any */ 7144cf49a43SJulian Elischer if (rptr) 7154cf49a43SJulian Elischer *rptr = resp; 7164cf49a43SJulian Elischer else if (resp) 7174cf49a43SJulian Elischer FREE(resp, M_NETGRAPH); 7184cf49a43SJulian Elischer 7194cf49a43SJulian Elischer /* Free the message and return */ 7204cf49a43SJulian Elischer quit: 7214cf49a43SJulian Elischer FREE(msg, M_NETGRAPH); 7224cf49a43SJulian Elischer return(error); 7234cf49a43SJulian Elischer } 7244cf49a43SJulian Elischer 7251e2510f8SJulian Elischer /* 7261e2510f8SJulian Elischer * Start a client into the first state. A separate function because 7271e2510f8SJulian Elischer * it can be needed if the negotiation times out. 7281e2510f8SJulian Elischer */ 7294cf49a43SJulian Elischer static void 7304cf49a43SJulian Elischer pppoe_start(sessp sp) 7314cf49a43SJulian Elischer { 7324cf49a43SJulian Elischer struct { 7334cf49a43SJulian Elischer struct pppoe_tag hdr; 7344cf49a43SJulian Elischer union uniq data; 7354cf49a43SJulian Elischer } uniqtag; 7364cf49a43SJulian Elischer 7374cf49a43SJulian Elischer /* 7384cf49a43SJulian Elischer * kick the state machine into starting up 7394cf49a43SJulian Elischer */ 7401e2510f8SJulian Elischer AAA 7414cf49a43SJulian Elischer sp->state = PPPOE_SINIT; 7421e2510f8SJulian Elischer /* reset the packet header to broadcast */ 7431e2510f8SJulian Elischer sp->neg->pkt->pkt_header.eh = eh_prototype; 7441e2510f8SJulian Elischer sp->neg->pkt->pkt_header.ph.code = PADI_CODE; 7454cf49a43SJulian Elischer uniqtag.hdr.tag_type = PTT_HOST_UNIQ; 7464cf49a43SJulian Elischer uniqtag.hdr.tag_len = htons((u_int16_t)sizeof(uniqtag.data)); 7474cf49a43SJulian Elischer uniqtag.data.pointer = sp; 7484cf49a43SJulian Elischer init_tags(sp); 7494cf49a43SJulian Elischer insert_tag(sp, &uniqtag.hdr); 7504cf49a43SJulian Elischer insert_tag(sp, &sp->neg->service.hdr); 7514cf49a43SJulian Elischer make_packet(sp); 7524cf49a43SJulian Elischer sendpacket(sp); 7534cf49a43SJulian Elischer } 7544cf49a43SJulian Elischer 7554cf49a43SJulian Elischer /* 7564cf49a43SJulian Elischer * Receive data, and do something with it. 7574cf49a43SJulian Elischer * The caller will never free m or meta, so 7584cf49a43SJulian Elischer * if we use up this data or abort we must free BOTH of these. 7594cf49a43SJulian Elischer */ 7604cf49a43SJulian Elischer static int 7614cf49a43SJulian Elischer ng_PPPoE_rcvdata(hook_p hook, struct mbuf *m, meta_p meta) 7624cf49a43SJulian Elischer { 7634cf49a43SJulian Elischer node_p node = hook->node; 7644cf49a43SJulian Elischer const priv_p privp = node->private; 7654cf49a43SJulian Elischer sessp sp = hook->private; 7664cf49a43SJulian Elischer struct pppoe_full_hdr *wh; 7674cf49a43SJulian Elischer struct pppoe_hdr *ph; 7684cf49a43SJulian Elischer int error = 0; 7694cf49a43SJulian Elischer u_int16_t session; 7704cf49a43SJulian Elischer u_int16_t length; 7714cf49a43SJulian Elischer u_int8_t code; 7724cf49a43SJulian Elischer struct pppoe_tag *tag = NULL; 7734cf49a43SJulian Elischer hook_p sendhook; 7744cf49a43SJulian Elischer struct { 7754cf49a43SJulian Elischer struct pppoe_tag hdr; 7764cf49a43SJulian Elischer union uniq data; 7774cf49a43SJulian Elischer } uniqtag; 7784cf49a43SJulian Elischer negp neg = NULL; 7794cf49a43SJulian Elischer 7801e2510f8SJulian Elischer AAA 7814cf49a43SJulian Elischer if (hook->private == &privp->debug_hook) { 7824cf49a43SJulian Elischer /* 7834cf49a43SJulian Elischer * Data from the debug hook gets sent without modification 7844cf49a43SJulian Elischer * straight to the ethernet. 7854cf49a43SJulian Elischer */ 7864cf49a43SJulian Elischer NG_SEND_DATA( error, privp->ethernet_hook, m, meta); 7874cf49a43SJulian Elischer privp->packets_out++; 7884cf49a43SJulian Elischer } else if (hook->private == &privp->ethernet_hook) { 7894cf49a43SJulian Elischer /* 7904cf49a43SJulian Elischer * Incoming data. 7914cf49a43SJulian Elischer * Dig out various fields from the packet. 7924cf49a43SJulian Elischer * use them to decide where to send it. 7934cf49a43SJulian Elischer */ 7944cf49a43SJulian Elischer 7954cf49a43SJulian Elischer privp->packets_in++; 7960c65c135SJulian Elischer if( m->m_len < sizeof(*wh)) { 7970c65c135SJulian Elischer m = m_pullup(m, sizeof(*wh)); /* Checks length */ 7984cf49a43SJulian Elischer if (m == NULL) { 799b86d0a9eSJulian Elischer printf("couldn't m_pullup\n"); 8004cf49a43SJulian Elischer LEAVE(ENOBUFS); 8014cf49a43SJulian Elischer } 8020c65c135SJulian Elischer } 8030c65c135SJulian Elischer BBB 8044cf49a43SJulian Elischer wh = mtod(m, struct pppoe_full_hdr *); 8054cf49a43SJulian Elischer ph = &wh->ph; 8064cf49a43SJulian Elischer session = ntohs(wh->ph.sid); 8074cf49a43SJulian Elischer length = ntohs(wh->ph.length); 8084cf49a43SJulian Elischer code = wh->ph.code; 8090c65c135SJulian Elischer BBB 8100c65c135SJulian Elischer switch(wh->eh.ether_type) { 8114cf49a43SJulian Elischer case ETHERTYPE_PPPOE_DISC: 8124cf49a43SJulian Elischer /* 8134cf49a43SJulian Elischer * We need to try make sure that the tag area 8144cf49a43SJulian Elischer * is contiguous, or we could wander of the end 8154cf49a43SJulian Elischer * of a buffer and make a mess. 8164cf49a43SJulian Elischer * (Linux wouldn't have this problem). 8174cf49a43SJulian Elischer */ 8180c65c135SJulian Elischer BBB 8190c65c135SJulian Elischer /*XXX fix this mess */ 8200c65c135SJulian Elischer 8210c65c135SJulian Elischer if (m->m_pkthdr.len <= MHLEN) { 8220c65c135SJulian Elischer if( m->m_len < m->m_pkthdr.len) { 8230c65c135SJulian Elischer m = m_pullup(m, m->m_pkthdr.len); 8240c65c135SJulian Elischer if (m == NULL) { 8250c65c135SJulian Elischer printf("couldn't m_pullup\n"); 8260c65c135SJulian Elischer LEAVE(ENOBUFS); 8270c65c135SJulian Elischer } 8280c65c135SJulian Elischer } 8290c65c135SJulian Elischer } 8304cf49a43SJulian Elischer if (m->m_len != m->m_pkthdr.len) { 8314cf49a43SJulian Elischer /* 8324cf49a43SJulian Elischer * It's not all in one piece. 8334cf49a43SJulian Elischer * We need to do extra work. 8344cf49a43SJulian Elischer */ 8354cf49a43SJulian Elischer printf("packet fragmented\n"); 836b86d0a9eSJulian Elischer LEAVE(EMSGSIZE); 8374cf49a43SJulian Elischer } 8384cf49a43SJulian Elischer 8390c65c135SJulian Elischer BBB 8404cf49a43SJulian Elischer switch(code) { 8414cf49a43SJulian Elischer case PADI_CODE: 8420c65c135SJulian Elischer BBB 8434cf49a43SJulian Elischer /* 8444cf49a43SJulian Elischer * We are a server: 8454cf49a43SJulian Elischer * Look for a hook with the required service 8464cf49a43SJulian Elischer * and send the ENTIRE packet up there. 8474cf49a43SJulian Elischer * It should come back to a new hook in 8484cf49a43SJulian Elischer * PRIMED state. Look there for further 8494cf49a43SJulian Elischer * processing. 8504cf49a43SJulian Elischer */ 8514cf49a43SJulian Elischer tag = get_tag(ph, PTT_SRV_NAME); 8524cf49a43SJulian Elischer if (tag == NULL) { 853b86d0a9eSJulian Elischer printf("no service tag\n"); 8544cf49a43SJulian Elischer LEAVE(ENETUNREACH); 8554cf49a43SJulian Elischer } 8560c65c135SJulian Elischer BBB 8574cf49a43SJulian Elischer sendhook = pppoe_match_svc(hook->node, 8584cf49a43SJulian Elischer tag->tag_data, ntohs(tag->tag_len)); 8594cf49a43SJulian Elischer if (sendhook) { 8604cf49a43SJulian Elischer NG_SEND_DATA(error, sendhook, m, meta); 8614cf49a43SJulian Elischer } else { 862b86d0a9eSJulian Elischer printf("no such service\n"); 8634cf49a43SJulian Elischer LEAVE(ENETUNREACH); 8644cf49a43SJulian Elischer } 8650c65c135SJulian Elischer BBB 8664cf49a43SJulian Elischer break; 8674cf49a43SJulian Elischer case PADO_CODE: 8684cf49a43SJulian Elischer /* 8694cf49a43SJulian Elischer * We are a client: 8704cf49a43SJulian Elischer * Use the host_uniq tag to find the 8714cf49a43SJulian Elischer * hook this is in response to. 872b86d0a9eSJulian Elischer * Received #2, now send #3 8734cf49a43SJulian Elischer * For now simply accept the first we receive. 8744cf49a43SJulian Elischer */ 8750c65c135SJulian Elischer BBB 8764cf49a43SJulian Elischer tag = get_tag(ph, PTT_HOST_UNIQ); 8774cf49a43SJulian Elischer if ((tag == NULL) 8784cf49a43SJulian Elischer || (ntohs(tag->tag_len) != sizeof(sp))) { 879b86d0a9eSJulian Elischer printf("no host unique field\n"); 8804cf49a43SJulian Elischer LEAVE(ENETUNREACH); 8814cf49a43SJulian Elischer } 8820c65c135SJulian Elischer BBB 8834cf49a43SJulian Elischer 8844cf49a43SJulian Elischer sendhook = pppoe_finduniq(node, tag); 8854cf49a43SJulian Elischer if (sendhook == NULL) { 886b86d0a9eSJulian Elischer printf("no matching session\n"); 8874cf49a43SJulian Elischer LEAVE(ENETUNREACH); 8884cf49a43SJulian Elischer } 8890c65c135SJulian Elischer BBB 8904cf49a43SJulian Elischer 8914cf49a43SJulian Elischer /* 8924cf49a43SJulian Elischer * Check the session is in the right state. 8934cf49a43SJulian Elischer * It needs to be in PPPOE_SINIT. 8944cf49a43SJulian Elischer */ 8954cf49a43SJulian Elischer sp = sendhook->private; 8964cf49a43SJulian Elischer if (sp->state != PPPOE_SINIT) { 897b86d0a9eSJulian Elischer printf("session in wrong state\n"); 8984cf49a43SJulian Elischer LEAVE(ENETUNREACH); 8994cf49a43SJulian Elischer } 9004cf49a43SJulian Elischer neg = sp->neg; 9010c65c135SJulian Elischer BBB 9024cf49a43SJulian Elischer untimeout(pppoe_ticker, sendhook, 9034cf49a43SJulian Elischer neg->timeout_handle); 9044cf49a43SJulian Elischer 9054cf49a43SJulian Elischer /* 9064cf49a43SJulian Elischer * This is the first time we hear 9074cf49a43SJulian Elischer * from the server, so note it's 9084cf49a43SJulian Elischer * unicast address, replacing the 9094cf49a43SJulian Elischer * broadcast address . 9104cf49a43SJulian Elischer */ 9110c65c135SJulian Elischer BBB 9124cf49a43SJulian Elischer bcopy(wh->eh.ether_shost, 9134cf49a43SJulian Elischer neg->pkt->pkt_header.eh.ether_dhost, 9144cf49a43SJulian Elischer ETHER_ADDR_LEN); 9154cf49a43SJulian Elischer neg->timeout = 0; 9164cf49a43SJulian Elischer neg->pkt->pkt_header.ph.code = PADR_CODE; 9170c65c135SJulian Elischer BBB 9184cf49a43SJulian Elischer init_tags(sp); 9190c65c135SJulian Elischer BBB 9204cf49a43SJulian Elischer insert_tag(sp, &neg->service.hdr); /* Service */ 9210c65c135SJulian Elischer BBB 9224cf49a43SJulian Elischer insert_tag(sp, tag); /* Host Unique */ 9230c65c135SJulian Elischer BBB 9244cf49a43SJulian Elischer tag = get_tag(ph, PTT_AC_COOKIE); 925b86d0a9eSJulian Elischer if (tag) 926b86d0a9eSJulian Elischer insert_tag(sp, tag); /* return cookie */ 9274cf49a43SJulian Elischer scan_tags(sp, ph); 9280c65c135SJulian Elischer BBB 9294cf49a43SJulian Elischer make_packet(sp); 9304cf49a43SJulian Elischer sp->state = PPPOE_SREQ; 9310c65c135SJulian Elischer BBB 9324cf49a43SJulian Elischer sendpacket(sp); 9330c65c135SJulian Elischer BBB 9344cf49a43SJulian Elischer break; 9354cf49a43SJulian Elischer case PADR_CODE: 9364cf49a43SJulian Elischer 9370c65c135SJulian Elischer BBB 9384cf49a43SJulian Elischer /* 9394cf49a43SJulian Elischer * We are a server: 9404cf49a43SJulian Elischer * Use the ac_cookie tag to find the 9414cf49a43SJulian Elischer * hook this is in response to. 9424cf49a43SJulian Elischer */ 9434cf49a43SJulian Elischer tag = get_tag(ph, PTT_AC_COOKIE); 9444cf49a43SJulian Elischer if ((tag == NULL) 9454cf49a43SJulian Elischer || (ntohs(tag->tag_len) != sizeof(sp))) { 9464cf49a43SJulian Elischer LEAVE(ENETUNREACH); 9474cf49a43SJulian Elischer } 9484cf49a43SJulian Elischer 9490c65c135SJulian Elischer BBB 9504cf49a43SJulian Elischer sendhook = pppoe_finduniq(node, tag); 9514cf49a43SJulian Elischer if (sendhook == NULL) { 9524cf49a43SJulian Elischer LEAVE(ENETUNREACH); 9534cf49a43SJulian Elischer } 9544cf49a43SJulian Elischer 9550c65c135SJulian Elischer BBB 9564cf49a43SJulian Elischer /* 9574cf49a43SJulian Elischer * Check the session is in the right state. 9584cf49a43SJulian Elischer * It needs to be in PPPOE_SOFFER 9594cf49a43SJulian Elischer * or PPPOE_NEWCONNECTED. If the latter, 9604cf49a43SJulian Elischer * then this is a retry by the client. 9614cf49a43SJulian Elischer * so be nice, and resend. 9624cf49a43SJulian Elischer */ 9634cf49a43SJulian Elischer sp = sendhook->private; 9644cf49a43SJulian Elischer if (sp->state == PPPOE_NEWCONNECTED) { 9654cf49a43SJulian Elischer /* 9664cf49a43SJulian Elischer * Whoa! drop back to resend that 9674cf49a43SJulian Elischer * PADS packet. 9684cf49a43SJulian Elischer * We should still have a copy of it. 9694cf49a43SJulian Elischer */ 9700c65c135SJulian Elischer BBB 9714cf49a43SJulian Elischer sp->state = PPPOE_SOFFER; 9724cf49a43SJulian Elischer } 9730c65c135SJulian Elischer BBB 9744cf49a43SJulian Elischer if (sp->state != PPPOE_SOFFER) { 9754cf49a43SJulian Elischer LEAVE (ENETUNREACH); 9764cf49a43SJulian Elischer break; 9774cf49a43SJulian Elischer } 9784cf49a43SJulian Elischer neg = sp->neg; 9790c65c135SJulian Elischer BBB 9804cf49a43SJulian Elischer untimeout(pppoe_ticker, sendhook, 9814cf49a43SJulian Elischer neg->timeout_handle); 9824cf49a43SJulian Elischer neg->pkt->pkt_header.ph.code = PADS_CODE; 9834cf49a43SJulian Elischer if (sp->Session_ID == 0) 9844cf49a43SJulian Elischer neg->pkt->pkt_header.ph.sid = 985b86d0a9eSJulian Elischer htons(sp->Session_ID 986b86d0a9eSJulian Elischer = get_new_sid(node)); 9874cf49a43SJulian Elischer neg->timeout = 0; 9880c65c135SJulian Elischer BBB 9894cf49a43SJulian Elischer /* 9904cf49a43SJulian Elischer * start working out the tags to respond with. 9914cf49a43SJulian Elischer */ 9924cf49a43SJulian Elischer init_tags(sp); 9930c65c135SJulian Elischer BBB 9944cf49a43SJulian Elischer insert_tag(sp, &neg->ac_name.hdr); /* AC_NAME */ 9954cf49a43SJulian Elischer insert_tag(sp, tag); /* ac_cookie */ 9964cf49a43SJulian Elischer tag = get_tag(ph, PTT_SRV_NAME); 9974cf49a43SJulian Elischer insert_tag(sp, tag); /* returned service */ 9984cf49a43SJulian Elischer tag = get_tag(ph, PTT_HOST_UNIQ); 9994cf49a43SJulian Elischer insert_tag(sp, tag); /* returned hostuniq */ 10000c65c135SJulian Elischer BBB 10014cf49a43SJulian Elischer scan_tags(sp, ph); 10024cf49a43SJulian Elischer make_packet(sp); 10034cf49a43SJulian Elischer sp->state = PPPOE_NEWCONNECTED; 10040c65c135SJulian Elischer BBB 10054cf49a43SJulian Elischer sendpacket(sp); 10060c65c135SJulian Elischer BBB 1007b58a8a3bSJulian Elischer pppoe_send_event(sp, NGM_PPPOE_SUCCESS); 10080c65c135SJulian Elischer BBB 10094cf49a43SJulian Elischer /* 10104cf49a43SJulian Elischer * Having sent the last Negotiation header, 10114cf49a43SJulian Elischer * Set up the stored packet header to 10124cf49a43SJulian Elischer * be correct for the actual session. 10134cf49a43SJulian Elischer * But keep the negotialtion stuff 10144cf49a43SJulian Elischer * around in case we need to resend this last 10154cf49a43SJulian Elischer * packet. We'll discard it when we move 10164cf49a43SJulian Elischer * from NEWCONNECTED to CONNECTED 10174cf49a43SJulian Elischer */ 10184cf49a43SJulian Elischer sp->pkt_hdr = neg->pkt->pkt_header; 10190c65c135SJulian Elischer BBB 10204cf49a43SJulian Elischer sp->pkt_hdr.eh.ether_type 10214cf49a43SJulian Elischer = ETHERTYPE_PPPOE_SESS; 10224cf49a43SJulian Elischer sp->pkt_hdr.ph.code = 0; 1023b58a8a3bSJulian Elischer pppoe_send_event(sp, NGM_PPPOE_SUCCESS); 10244cf49a43SJulian Elischer break; 10254cf49a43SJulian Elischer case PADS_CODE: 10264cf49a43SJulian Elischer /* 10274cf49a43SJulian Elischer * We are a client: 10284cf49a43SJulian Elischer * Use the host_uniq tag to find the 10294cf49a43SJulian Elischer * hook this is in response to. 10304cf49a43SJulian Elischer * take the session ID and store it away. 10314cf49a43SJulian Elischer * Also make sure the pre-made header is 10324cf49a43SJulian Elischer * correct and set us into Session mode. 10334cf49a43SJulian Elischer */ 10340c65c135SJulian Elischer BBB 10354cf49a43SJulian Elischer tag = get_tag(ph, PTT_HOST_UNIQ); 10364cf49a43SJulian Elischer if ((tag == NULL) 10374cf49a43SJulian Elischer || (ntohs(tag->tag_len) != sizeof(sp))) { 10384cf49a43SJulian Elischer LEAVE (ENETUNREACH); 10394cf49a43SJulian Elischer break; 10404cf49a43SJulian Elischer } 10410c65c135SJulian Elischer BBB 10424cf49a43SJulian Elischer 10434cf49a43SJulian Elischer sendhook = pppoe_finduniq(node, tag); 10444cf49a43SJulian Elischer if (sendhook == NULL) { 10454cf49a43SJulian Elischer LEAVE(ENETUNREACH); 10464cf49a43SJulian Elischer } 10474cf49a43SJulian Elischer 10484cf49a43SJulian Elischer /* 10494cf49a43SJulian Elischer * Check the session is in the right state. 10504cf49a43SJulian Elischer * It needs to be in PPPOE_SREQ. 10514cf49a43SJulian Elischer */ 10524cf49a43SJulian Elischer sp = sendhook->private; 10534cf49a43SJulian Elischer if (sp->state != PPPOE_SREQ) { 10544cf49a43SJulian Elischer LEAVE(ENETUNREACH); 10554cf49a43SJulian Elischer } 10564cf49a43SJulian Elischer neg = sp->neg; 10570c65c135SJulian Elischer BBB 10584cf49a43SJulian Elischer untimeout(pppoe_ticker, sendhook, 10594cf49a43SJulian Elischer neg->timeout_handle); 1060b86d0a9eSJulian Elischer sp->Session_ID = ntohs(wh->ph.sid); 10614cf49a43SJulian Elischer neg->timeout = 0; 10624cf49a43SJulian Elischer sp->state = PPPOE_CONNECTED; 10634cf49a43SJulian Elischer sendpacket(sp); 10644cf49a43SJulian Elischer /* 10654cf49a43SJulian Elischer * Now we have gone to Connected mode, 10664cf49a43SJulian Elischer * Free all resources needed for 10674cf49a43SJulian Elischer * negotiation. 10684cf49a43SJulian Elischer * Keep a copy of the header we will be using. 10694cf49a43SJulian Elischer */ 10700c65c135SJulian Elischer BBB 10714cf49a43SJulian Elischer sp->pkt_hdr = neg->pkt->pkt_header; 10724cf49a43SJulian Elischer sp->pkt_hdr.eh.ether_type 10734cf49a43SJulian Elischer = ETHERTYPE_PPPOE_SESS; 10744cf49a43SJulian Elischer sp->pkt_hdr.ph.code = 0; 10754cf49a43SJulian Elischer m_freem(neg->m); 10764cf49a43SJulian Elischer FREE(sp->neg, M_NETGRAPH); 10774cf49a43SJulian Elischer sp->neg = NULL; 1078b58a8a3bSJulian Elischer pppoe_send_event(sp, NGM_PPPOE_SUCCESS); 10794cf49a43SJulian Elischer break; 10804cf49a43SJulian Elischer case PADT_CODE: 10814cf49a43SJulian Elischer /* 10824cf49a43SJulian Elischer * Send a 'close' message to the controlling 10834cf49a43SJulian Elischer * process (the one that set us up); 10844cf49a43SJulian Elischer * And then tear everything down. 10854cf49a43SJulian Elischer * 10864cf49a43SJulian Elischer * Find matching peer/session combination. 10874cf49a43SJulian Elischer */ 10884cf49a43SJulian Elischer sendhook = pppoe_findsession(node, wh); 10894cf49a43SJulian Elischer NG_FREE_DATA(m, meta); /* no longer needed */ 10904cf49a43SJulian Elischer if (sendhook == NULL) { 10914cf49a43SJulian Elischer LEAVE(ENETUNREACH); 10924cf49a43SJulian Elischer } 10934cf49a43SJulian Elischer /* send message to creator */ 10944cf49a43SJulian Elischer /* close hook */ 1095b58a8a3bSJulian Elischer if (sendhook) { 10964cf49a43SJulian Elischer ng_destroy_hook(sendhook); 1097b58a8a3bSJulian Elischer } 10984cf49a43SJulian Elischer break; 10994cf49a43SJulian Elischer default: 11004cf49a43SJulian Elischer LEAVE(EPFNOSUPPORT); 11014cf49a43SJulian Elischer } 11024cf49a43SJulian Elischer break; 11034cf49a43SJulian Elischer case ETHERTYPE_PPPOE_SESS: 11044cf49a43SJulian Elischer /* 11054cf49a43SJulian Elischer * find matching peer/session combination. 11064cf49a43SJulian Elischer */ 11074cf49a43SJulian Elischer sendhook = pppoe_findsession(node, wh); 11084cf49a43SJulian Elischer if (sendhook == NULL) { 11094cf49a43SJulian Elischer LEAVE (ENETUNREACH); 11104cf49a43SJulian Elischer break; 11114cf49a43SJulian Elischer } 11124cf49a43SJulian Elischer m_adj(m, sizeof(*wh)); 11134cf49a43SJulian Elischer if (m->m_pkthdr.len < length) { 11144cf49a43SJulian Elischer /* Packet too short, dump it */ 11154cf49a43SJulian Elischer LEAVE(EMSGSIZE); 11164cf49a43SJulian Elischer } 11174cf49a43SJulian Elischer /* XXX also need to trim excess at end I should think */ 11184cf49a43SJulian Elischer if ( sp->state != PPPOE_CONNECTED) { 11194cf49a43SJulian Elischer if (sp->state == PPPOE_NEWCONNECTED) { 11204cf49a43SJulian Elischer sp->state = PPPOE_CONNECTED; 11214cf49a43SJulian Elischer /* 11224cf49a43SJulian Elischer * Now we have gone to Connected mode, 11234cf49a43SJulian Elischer * Free all resources needed for 11244cf49a43SJulian Elischer * negotiation. 11254cf49a43SJulian Elischer */ 11264cf49a43SJulian Elischer m_freem(sp->neg->m); 11274cf49a43SJulian Elischer FREE(sp->neg, M_NETGRAPH); 11284cf49a43SJulian Elischer sp->neg = NULL; 11294cf49a43SJulian Elischer } else { 11304cf49a43SJulian Elischer LEAVE (ENETUNREACH); 11314cf49a43SJulian Elischer break; 11324cf49a43SJulian Elischer } 11334cf49a43SJulian Elischer } 11344cf49a43SJulian Elischer NG_SEND_DATA( error, sendhook, m, meta); 11354cf49a43SJulian Elischer break; 11364cf49a43SJulian Elischer default: 11370c65c135SJulian Elischer BBB LEAVE(EPFNOSUPPORT); 11384cf49a43SJulian Elischer } 11394cf49a43SJulian Elischer } else { 11404cf49a43SJulian Elischer /* 11414cf49a43SJulian Elischer * Not ethernet or debug hook.. 11424cf49a43SJulian Elischer * 11434cf49a43SJulian Elischer * The packet has come in on a normal hook. 11444cf49a43SJulian Elischer * We need to find out what kind of hook, 11454cf49a43SJulian Elischer * So we can decide how to handle it. 11464cf49a43SJulian Elischer * Check the hook's state. 11474cf49a43SJulian Elischer */ 11484cf49a43SJulian Elischer sp = hook->private; 11494cf49a43SJulian Elischer switch (sp->state) { 11504cf49a43SJulian Elischer case PPPOE_NEWCONNECTED: 11514cf49a43SJulian Elischer case PPPOE_CONNECTED: { 11524cf49a43SJulian Elischer struct pppoe_full_hdr *wh; 11534cf49a43SJulian Elischer /* 11544cf49a43SJulian Elischer * Bang in a pre-made header, and set the length up 11554cf49a43SJulian Elischer * to be correct. Then send it to the ethernet driver. 11564cf49a43SJulian Elischer */ 11574cf49a43SJulian Elischer M_PREPEND(m, sizeof(*wh), M_DONTWAIT); 11584cf49a43SJulian Elischer if (m == NULL) { 11594cf49a43SJulian Elischer LEAVE(ENOBUFS); 11604cf49a43SJulian Elischer } 11614cf49a43SJulian Elischer wh = mtod(m, struct pppoe_full_hdr *); 11624cf49a43SJulian Elischer bcopy(&sp->pkt_hdr, wh, sizeof(*wh)); 11634cf49a43SJulian Elischer wh->ph.length = htons((short)(m->m_pkthdr.len)); 11644cf49a43SJulian Elischer NG_SEND_DATA( error, privp->ethernet_hook, m, meta); 11654cf49a43SJulian Elischer privp->packets_out++; 11664cf49a43SJulian Elischer break; 11674cf49a43SJulian Elischer } 11684cf49a43SJulian Elischer case PPPOE_PRIMED: 11694cf49a43SJulian Elischer /* 11704cf49a43SJulian Elischer * A PADI packet is being returned by the application 11714cf49a43SJulian Elischer * that has set up this hook. This indicates that it 11724cf49a43SJulian Elischer * wants us to offer service. 11734cf49a43SJulian Elischer */ 11744cf49a43SJulian Elischer neg = sp->neg; 11754cf49a43SJulian Elischer m_pullup(m, sizeof(*wh)); /* Checks length */ 11764cf49a43SJulian Elischer if (m == NULL) { 11774cf49a43SJulian Elischer LEAVE(ENOBUFS); 11784cf49a43SJulian Elischer } 11794cf49a43SJulian Elischer wh = mtod(m, struct pppoe_full_hdr *); 11804cf49a43SJulian Elischer ph = &wh->ph; 11814cf49a43SJulian Elischer session = ntohs(wh->ph.sid); 11824cf49a43SJulian Elischer length = ntohs(wh->ph.length); 11834cf49a43SJulian Elischer code = wh->ph.code; 11841e2510f8SJulian Elischer if ( code != PADI_CODE) { 11851e2510f8SJulian Elischer LEAVE(EINVAL); 11861e2510f8SJulian Elischer }; 11871e2510f8SJulian Elischer untimeout(pppoe_ticker, hook, 11881e2510f8SJulian Elischer neg->timeout_handle); 11894cf49a43SJulian Elischer 11904cf49a43SJulian Elischer /* 11914cf49a43SJulian Elischer * This is the first time we hear 11924cf49a43SJulian Elischer * from the client, so note it's 11934cf49a43SJulian Elischer * unicast address, replacing the 11944cf49a43SJulian Elischer * broadcast address . 11954cf49a43SJulian Elischer */ 11964cf49a43SJulian Elischer bcopy(wh->eh.ether_shost, 11974cf49a43SJulian Elischer neg->pkt->pkt_header.eh.ether_dhost, 11984cf49a43SJulian Elischer ETHER_ADDR_LEN); 11994cf49a43SJulian Elischer sp->state = PPPOE_SOFFER; 12004cf49a43SJulian Elischer neg->timeout = 0; 12014cf49a43SJulian Elischer neg->pkt->pkt_header.ph.code = PADO_CODE; 12024cf49a43SJulian Elischer 12034cf49a43SJulian Elischer /* 12044cf49a43SJulian Elischer * start working out the tags to respond with. 12054cf49a43SJulian Elischer */ 12064cf49a43SJulian Elischer uniqtag.hdr.tag_type = PTT_AC_COOKIE; 12074cf49a43SJulian Elischer uniqtag.hdr.tag_len = htons((u_int16_t)sizeof(sp)); 12084cf49a43SJulian Elischer uniqtag.data.pointer = sp; 12094cf49a43SJulian Elischer init_tags(sp); 12104cf49a43SJulian Elischer insert_tag(sp, &neg->ac_name.hdr); /* AC_NAME */ 12114cf49a43SJulian Elischer insert_tag(sp, tag); /* returned hostunique */ 12124cf49a43SJulian Elischer insert_tag(sp, &uniqtag.hdr); /* AC cookie */ 12134cf49a43SJulian Elischer tag = get_tag(ph, PTT_SRV_NAME); 12144cf49a43SJulian Elischer insert_tag(sp, tag); /* returned service */ 12154cf49a43SJulian Elischer /* XXX maybe put the tag in the session store */ 12164cf49a43SJulian Elischer scan_tags(sp, ph); 12174cf49a43SJulian Elischer make_packet(sp); 12184cf49a43SJulian Elischer sendpacket(sp); 12194cf49a43SJulian Elischer break; 12204cf49a43SJulian Elischer 12214cf49a43SJulian Elischer /* 12224cf49a43SJulian Elischer * Packets coming from the hook make no sense 12234cf49a43SJulian Elischer * to sessions in these states. Throw them away. 12244cf49a43SJulian Elischer */ 12254cf49a43SJulian Elischer case PPPOE_SINIT: 12264cf49a43SJulian Elischer case PPPOE_SREQ: 12274cf49a43SJulian Elischer case PPPOE_SOFFER: 12284cf49a43SJulian Elischer case PPPOE_SNONE: 12294cf49a43SJulian Elischer case PPPOE_LISTENING: 12304cf49a43SJulian Elischer case PPPOE_DEAD: 12314cf49a43SJulian Elischer default: 12324cf49a43SJulian Elischer LEAVE(ENETUNREACH); 12334cf49a43SJulian Elischer } 12344cf49a43SJulian Elischer } 12354cf49a43SJulian Elischer quit: 12364cf49a43SJulian Elischer NG_FREE_DATA(m, meta); 12374cf49a43SJulian Elischer return error; 12384cf49a43SJulian Elischer } 12394cf49a43SJulian Elischer 12404cf49a43SJulian Elischer /* 12414cf49a43SJulian Elischer * Do local shutdown processing.. 12424cf49a43SJulian Elischer * If we are a persistant device, we might refuse to go away, and 12434cf49a43SJulian Elischer * we'd only remove our links and reset ourself. 12444cf49a43SJulian Elischer */ 12454cf49a43SJulian Elischer static int 12464cf49a43SJulian Elischer ng_PPPoE_rmnode(node_p node) 12474cf49a43SJulian Elischer { 12484cf49a43SJulian Elischer const priv_p privdata = node->private; 12494cf49a43SJulian Elischer 12501e2510f8SJulian Elischer AAA 12514cf49a43SJulian Elischer node->flags |= NG_INVALID; 12524cf49a43SJulian Elischer ng_cutlinks(node); 12534cf49a43SJulian Elischer ng_unname(node); 12544cf49a43SJulian Elischer node->private = NULL; 12554cf49a43SJulian Elischer ng_unref(privdata->node); 12564cf49a43SJulian Elischer FREE(privdata, M_NETGRAPH); 12574cf49a43SJulian Elischer return (0); 12584cf49a43SJulian Elischer } 12594cf49a43SJulian Elischer 12604cf49a43SJulian Elischer /* 12614cf49a43SJulian Elischer * This is called once we've already connected a new hook to the other node. 12624cf49a43SJulian Elischer * It gives us a chance to balk at the last minute. 12634cf49a43SJulian Elischer */ 12644cf49a43SJulian Elischer static int 12654cf49a43SJulian Elischer ng_PPPoE_connect(hook_p hook) 12664cf49a43SJulian Elischer { 12674cf49a43SJulian Elischer /* be really amiable and just say "YUP that's OK by me! " */ 12684cf49a43SJulian Elischer return (0); 12694cf49a43SJulian Elischer } 12704cf49a43SJulian Elischer 12714cf49a43SJulian Elischer /* 12724cf49a43SJulian Elischer * Hook disconnection 12734cf49a43SJulian Elischer * 12744cf49a43SJulian Elischer * Clean up all dangling links and infirmation about the session/hook. 12754cf49a43SJulian Elischer * For this type, removal of the last link destroys the node 12764cf49a43SJulian Elischer */ 12774cf49a43SJulian Elischer static int 12784cf49a43SJulian Elischer ng_PPPoE_disconnect(hook_p hook) 12794cf49a43SJulian Elischer { 12804cf49a43SJulian Elischer node_p node = hook->node; 12814cf49a43SJulian Elischer priv_p privp = node->private; 12824cf49a43SJulian Elischer sessp sp; 12834cf49a43SJulian Elischer 12841e2510f8SJulian Elischer AAA 12854cf49a43SJulian Elischer if (hook->private == &privp->debug_hook) { 12864cf49a43SJulian Elischer privp->debug_hook = NULL; 12874cf49a43SJulian Elischer } else if (hook->private == &privp->ethernet_hook) { 12884cf49a43SJulian Elischer privp->ethernet_hook = NULL; 12894cf49a43SJulian Elischer } else { 12904cf49a43SJulian Elischer sp = hook->private; 1291b58a8a3bSJulian Elischer if (sp->state != PPPOE_SNONE ) { 1292b58a8a3bSJulian Elischer pppoe_send_event(sp, NGM_PPPOE_CLOSE); 1293b58a8a3bSJulian Elischer } 12941e2510f8SJulian Elischer if (sp->neg) { 12954cf49a43SJulian Elischer untimeout(pppoe_ticker, hook, sp->neg->timeout_handle); 12961e2510f8SJulian Elischer if (sp->neg->m) 12971e2510f8SJulian Elischer m_freem(sp->neg->m); 12981e2510f8SJulian Elischer FREE(sp->neg, M_NETGRAPH); 12991e2510f8SJulian Elischer } 13004cf49a43SJulian Elischer FREE(sp, M_NETGRAPH); 13011e2510f8SJulian Elischer hook->private = NULL; 13024cf49a43SJulian Elischer } 13034cf49a43SJulian Elischer if (node->numhooks == 0) 13044cf49a43SJulian Elischer ng_rmnode(node); 13054cf49a43SJulian Elischer return (0); 13064cf49a43SJulian Elischer } 13074cf49a43SJulian Elischer 13084cf49a43SJulian Elischer /* 13094cf49a43SJulian Elischer * timeouts come here. 13104cf49a43SJulian Elischer */ 13114cf49a43SJulian Elischer static void 13124cf49a43SJulian Elischer pppoe_ticker(void *arg) 13134cf49a43SJulian Elischer { 13144cf49a43SJulian Elischer int s = splnet(); 13154cf49a43SJulian Elischer hook_p hook = arg; 13164cf49a43SJulian Elischer sessp sp = hook->private; 13174cf49a43SJulian Elischer negp neg = sp->neg; 13184cf49a43SJulian Elischer int error = 0; 13194cf49a43SJulian Elischer struct mbuf *m0 = NULL; 13204cf49a43SJulian Elischer priv_p privp = hook->node->private; 13214cf49a43SJulian Elischer meta_p dummy = NULL; 13224cf49a43SJulian Elischer 13231e2510f8SJulian Elischer AAA 13244cf49a43SJulian Elischer switch(sp->state) { 13254cf49a43SJulian Elischer /* 13264cf49a43SJulian Elischer * resend the last packet, using an exponential backoff. 13274cf49a43SJulian Elischer * After a period of time, stop growing the backoff, 13284cf49a43SJulian Elischer * and either leave it, or reverst to the start. 13294cf49a43SJulian Elischer */ 13304cf49a43SJulian Elischer case PPPOE_SINIT: 13314cf49a43SJulian Elischer case PPPOE_SREQ: 13324cf49a43SJulian Elischer /* timeouts on these produce resends */ 13334cf49a43SJulian Elischer m0 = m_copypacket(sp->neg->m, M_DONTWAIT); 13344cf49a43SJulian Elischer NG_SEND_DATA( error, privp->ethernet_hook, m0, dummy); 13354cf49a43SJulian Elischer neg->timeout_handle = timeout(pppoe_ticker, 13364cf49a43SJulian Elischer hook, neg->timeout * hz); 13374cf49a43SJulian Elischer if ((neg->timeout <<= 1) > PPPOE_TIMEOUT_LIMIT) { 13384cf49a43SJulian Elischer if (sp->state == PPPOE_SREQ) { 13394cf49a43SJulian Elischer /* revert to SINIT mode */ 1340b58a8a3bSJulian Elischer pppoe_start(sp); 13414cf49a43SJulian Elischer } else { 13424cf49a43SJulian Elischer neg->timeout = PPPOE_TIMEOUT_LIMIT; 13434cf49a43SJulian Elischer } 13444cf49a43SJulian Elischer } 13454cf49a43SJulian Elischer break; 13464cf49a43SJulian Elischer case PPPOE_PRIMED: 13474cf49a43SJulian Elischer case PPPOE_SOFFER: 13484cf49a43SJulian Elischer /* a timeout on these says "give up" */ 13494cf49a43SJulian Elischer ng_destroy_hook(hook); 13504cf49a43SJulian Elischer break; 13514cf49a43SJulian Elischer default: 13524cf49a43SJulian Elischer /* timeouts have no meaning in other states */ 13534cf49a43SJulian Elischer printf("pppoe: unexpected timeout\n"); 13544cf49a43SJulian Elischer } 13554cf49a43SJulian Elischer splx(s); 13564cf49a43SJulian Elischer } 13574cf49a43SJulian Elischer 13584cf49a43SJulian Elischer 13594cf49a43SJulian Elischer static void 13604cf49a43SJulian Elischer sendpacket(sessp sp) 13614cf49a43SJulian Elischer { 13624cf49a43SJulian Elischer int error = 0; 13634cf49a43SJulian Elischer struct mbuf *m0 = NULL; 13644cf49a43SJulian Elischer hook_p hook = sp->hook; 13654cf49a43SJulian Elischer negp neg = sp->neg; 13664cf49a43SJulian Elischer priv_p privp = hook->node->private; 13674cf49a43SJulian Elischer meta_p dummy = NULL; 13684cf49a43SJulian Elischer 13691e2510f8SJulian Elischer AAA 13704cf49a43SJulian Elischer switch(sp->state) { 13714cf49a43SJulian Elischer case PPPOE_LISTENING: 13724cf49a43SJulian Elischer case PPPOE_DEAD: 13734cf49a43SJulian Elischer case PPPOE_SNONE: 13744cf49a43SJulian Elischer case PPPOE_NEWCONNECTED: 13754cf49a43SJulian Elischer case PPPOE_CONNECTED: 1376b86d0a9eSJulian Elischer printf("pppoe: sendpacket: unexpected state\n"); 13774cf49a43SJulian Elischer break; 13784cf49a43SJulian Elischer 13794cf49a43SJulian Elischer case PPPOE_PRIMED: 13804cf49a43SJulian Elischer /* No packet to send, but set up the timeout */ 13814cf49a43SJulian Elischer neg->timeout_handle = timeout(pppoe_ticker, 13824cf49a43SJulian Elischer hook, PPPOE_OFFER_TIMEOUT * hz); 13834cf49a43SJulian Elischer break; 13844cf49a43SJulian Elischer 13854cf49a43SJulian Elischer case PPPOE_SOFFER: 13864cf49a43SJulian Elischer /* 13874cf49a43SJulian Elischer * send the offer but if they don't respond 13884cf49a43SJulian Elischer * in PPPOE_OFFER_TIMEOUT seconds, forget about it. 13894cf49a43SJulian Elischer */ 13904cf49a43SJulian Elischer m0 = m_copypacket(sp->neg->m, M_DONTWAIT); 13914cf49a43SJulian Elischer NG_SEND_DATA( error, privp->ethernet_hook, m0, dummy); 13924cf49a43SJulian Elischer neg->timeout_handle = timeout(pppoe_ticker, 13934cf49a43SJulian Elischer hook, PPPOE_OFFER_TIMEOUT * hz); 13944cf49a43SJulian Elischer break; 13954cf49a43SJulian Elischer 13964cf49a43SJulian Elischer case PPPOE_SINIT: 13974cf49a43SJulian Elischer case PPPOE_SREQ: 13984cf49a43SJulian Elischer m0 = m_copypacket(sp->neg->m, M_DONTWAIT); 1399b86d0a9eSJulian Elischer NG_SEND_DATA( error, privp->ethernet_hook, m0, dummy); 14004cf49a43SJulian Elischer neg->timeout_handle = timeout(pppoe_ticker, hook, hz); 14014cf49a43SJulian Elischer neg->timeout = 2; 14024cf49a43SJulian Elischer break; 14034cf49a43SJulian Elischer 14044cf49a43SJulian Elischer default: 14054cf49a43SJulian Elischer error = EINVAL; 14064cf49a43SJulian Elischer printf("pppoe: timeout: bad state\n"); 14074cf49a43SJulian Elischer } 14084cf49a43SJulian Elischer /* return (error); */ 14094cf49a43SJulian Elischer } 14104cf49a43SJulian Elischer 14114cf49a43SJulian Elischer /* 14124cf49a43SJulian Elischer * Parse an incoming packet to see if any tags should be copied to the 14134cf49a43SJulian Elischer * output packet. DOon't do any tags that are likely to have been 14144cf49a43SJulian Elischer * handles a the main state machine. 14154cf49a43SJulian Elischer */ 14164cf49a43SJulian Elischer static struct pppoe_tag* 14174cf49a43SJulian Elischer scan_tags(sessp sp, struct pppoe_hdr* ph) 14184cf49a43SJulian Elischer { 14194cf49a43SJulian Elischer char *end = (char *)next_tag(ph); 14204cf49a43SJulian Elischer char *ptn; 14214cf49a43SJulian Elischer struct pppoe_tag *pt = &ph->tag[0]; 14224cf49a43SJulian Elischer /* 14234cf49a43SJulian Elischer * Keep processing tags while a tag header will still fit. 14244cf49a43SJulian Elischer */ 14251e2510f8SJulian Elischer AAA 14264cf49a43SJulian Elischer while((char*)(pt + 1) <= end) { 14274cf49a43SJulian Elischer /* 14284cf49a43SJulian Elischer * If the tag data would go past the end of the packet, abort. 14294cf49a43SJulian Elischer */ 14304cf49a43SJulian Elischer ptn = (((char *)(pt + 1)) + ntohs(pt->tag_len)); 14314cf49a43SJulian Elischer if(ptn > end) 14324cf49a43SJulian Elischer return NULL; 14334cf49a43SJulian Elischer 14344cf49a43SJulian Elischer switch (pt->tag_type) { 14354cf49a43SJulian Elischer case PTT_RELAY_SID: 14364cf49a43SJulian Elischer insert_tag(sp, pt); 14374cf49a43SJulian Elischer break; 14384cf49a43SJulian Elischer case PTT_EOL: 14394cf49a43SJulian Elischer return NULL; 14404cf49a43SJulian Elischer case PTT_SRV_NAME: 14414cf49a43SJulian Elischer case PTT_AC_NAME: 14424cf49a43SJulian Elischer case PTT_HOST_UNIQ: 14434cf49a43SJulian Elischer case PTT_AC_COOKIE: 14444cf49a43SJulian Elischer case PTT_VENDOR: 14454cf49a43SJulian Elischer case PTT_SRV_ERR: 14464cf49a43SJulian Elischer case PTT_SYS_ERR: 14474cf49a43SJulian Elischer case PTT_GEN_ERR: 14484cf49a43SJulian Elischer break; 14494cf49a43SJulian Elischer } 14504cf49a43SJulian Elischer pt = (struct pppoe_tag*)ptn; 14514cf49a43SJulian Elischer } 14524cf49a43SJulian Elischer return NULL; 14534cf49a43SJulian Elischer } 14544cf49a43SJulian Elischer 1455b58a8a3bSJulian Elischer static int 1456b58a8a3bSJulian Elischer pppoe_send_event(sessp sp, enum cmd cmdid) 1457b58a8a3bSJulian Elischer { 1458b58a8a3bSJulian Elischer int error; 1459b58a8a3bSJulian Elischer struct ng_mesg *msg; 1460b58a8a3bSJulian Elischer struct ngPPPoE_sts *sts; 1461b58a8a3bSJulian Elischer 14621e2510f8SJulian Elischer AAA 1463b58a8a3bSJulian Elischer NG_MKMESSAGE(msg, NGM_PPPOE_COOKIE, cmdid, 1464b58a8a3bSJulian Elischer sizeof(struct ngPPPoE_sts), M_NOWAIT); 1465b58a8a3bSJulian Elischer sts = (struct ngPPPoE_sts *)msg->data; 1466b58a8a3bSJulian Elischer strncpy(sts->hook, sp->hook->name, NG_HOOKLEN + 1); 1467b58a8a3bSJulian Elischer error = ng_send_msg(sp->hook->node, msg, sp->creator, NULL); 1468b58a8a3bSJulian Elischer return (error); 1469b58a8a3bSJulian Elischer } 1470