19fcb3d83SJulian Elischer #define SIGNOFF "session closed" 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 688876b55dSJulian Elischer static int ng_pppoe_constructor(node_p *node); 698876b55dSJulian Elischer static int ng_pppoe_rcvmsg(node_p node, struct ng_mesg *msg, 704cf49a43SJulian Elischer const char *retaddr, struct ng_mesg **resp); 718876b55dSJulian Elischer static int ng_pppoe_rmnode(node_p node); 728876b55dSJulian Elischer static int ng_pppoe_newhook(node_p node, hook_p hook, const char *name); 738876b55dSJulian Elischer static int ng_pppoe_connect(hook_p hook); 748876b55dSJulian Elischer static int ng_pppoe_rcvdata(hook_p hook, struct mbuf *m, meta_p meta); 758876b55dSJulian 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, 828876b55dSJulian Elischer ng_pppoe_constructor, 838876b55dSJulian Elischer ng_pppoe_rcvmsg, 848876b55dSJulian Elischer ng_pppoe_rmnode, 858876b55dSJulian Elischer ng_pppoe_newhook, 864cf49a43SJulian Elischer NULL, 878876b55dSJulian Elischer ng_pppoe_connect, 888876b55dSJulian Elischer ng_pppoe_rcvdata, 898876b55dSJulian Elischer ng_pppoe_rcvdata, 908876b55dSJulian Elischer ng_pppoe_disconnect 914cf49a43SJulian Elischer }; 928876b55dSJulian 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 4668876b55dSJulian 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 4998876b55dSJulian 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 5368876b55dSJulian 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; 5408876b55dSJulian 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: 5558876b55dSJulian 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)) { 5598876b55dSJulian 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 { 6298876b55dSJulian 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 } 6358876b55dSJulian 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 7618876b55dSJulian 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 } 8034cf49a43SJulian Elischer wh = mtod(m, struct pppoe_full_hdr *); 8044cf49a43SJulian Elischer ph = &wh->ph; 8054cf49a43SJulian Elischer session = ntohs(wh->ph.sid); 8064cf49a43SJulian Elischer length = ntohs(wh->ph.length); 8074cf49a43SJulian Elischer code = wh->ph.code; 8080c65c135SJulian Elischer switch(wh->eh.ether_type) { 8094cf49a43SJulian Elischer case ETHERTYPE_PPPOE_DISC: 8104cf49a43SJulian Elischer /* 8114cf49a43SJulian Elischer * We need to try make sure that the tag area 8124cf49a43SJulian Elischer * is contiguous, or we could wander of the end 8134cf49a43SJulian Elischer * of a buffer and make a mess. 8144cf49a43SJulian Elischer * (Linux wouldn't have this problem). 8154cf49a43SJulian Elischer */ 8160c65c135SJulian Elischer /*XXX fix this mess */ 8170c65c135SJulian Elischer 8180c65c135SJulian Elischer if (m->m_pkthdr.len <= MHLEN) { 8190c65c135SJulian Elischer if( m->m_len < m->m_pkthdr.len) { 8200c65c135SJulian Elischer m = m_pullup(m, m->m_pkthdr.len); 8210c65c135SJulian Elischer if (m == NULL) { 8220c65c135SJulian Elischer printf("couldn't m_pullup\n"); 8230c65c135SJulian Elischer LEAVE(ENOBUFS); 8240c65c135SJulian Elischer } 8250c65c135SJulian Elischer } 8260c65c135SJulian Elischer } 8274cf49a43SJulian Elischer if (m->m_len != m->m_pkthdr.len) { 8284cf49a43SJulian Elischer /* 8294cf49a43SJulian Elischer * It's not all in one piece. 8304cf49a43SJulian Elischer * We need to do extra work. 8314cf49a43SJulian Elischer */ 8324cf49a43SJulian Elischer printf("packet fragmented\n"); 833b86d0a9eSJulian Elischer LEAVE(EMSGSIZE); 8344cf49a43SJulian Elischer } 8354cf49a43SJulian Elischer 8364cf49a43SJulian Elischer switch(code) { 8374cf49a43SJulian Elischer case PADI_CODE: 8384cf49a43SJulian Elischer /* 8394cf49a43SJulian Elischer * We are a server: 8404cf49a43SJulian Elischer * Look for a hook with the required service 8414cf49a43SJulian Elischer * and send the ENTIRE packet up there. 8424cf49a43SJulian Elischer * It should come back to a new hook in 8434cf49a43SJulian Elischer * PRIMED state. Look there for further 8444cf49a43SJulian Elischer * processing. 8454cf49a43SJulian Elischer */ 8464cf49a43SJulian Elischer tag = get_tag(ph, PTT_SRV_NAME); 8474cf49a43SJulian Elischer if (tag == NULL) { 848b86d0a9eSJulian Elischer printf("no service tag\n"); 8494cf49a43SJulian Elischer LEAVE(ENETUNREACH); 8504cf49a43SJulian Elischer } 8514cf49a43SJulian Elischer sendhook = pppoe_match_svc(hook->node, 8524cf49a43SJulian Elischer tag->tag_data, ntohs(tag->tag_len)); 8534cf49a43SJulian Elischer if (sendhook) { 8544cf49a43SJulian Elischer NG_SEND_DATA(error, sendhook, m, meta); 8554cf49a43SJulian Elischer } else { 856b86d0a9eSJulian Elischer printf("no such service\n"); 8574cf49a43SJulian Elischer LEAVE(ENETUNREACH); 8584cf49a43SJulian Elischer } 8594cf49a43SJulian Elischer break; 8604cf49a43SJulian Elischer case PADO_CODE: 8614cf49a43SJulian Elischer /* 8624cf49a43SJulian Elischer * We are a client: 8634cf49a43SJulian Elischer * Use the host_uniq tag to find the 8644cf49a43SJulian Elischer * hook this is in response to. 865b86d0a9eSJulian Elischer * Received #2, now send #3 8664cf49a43SJulian Elischer * For now simply accept the first we receive. 8674cf49a43SJulian Elischer */ 8684cf49a43SJulian Elischer tag = get_tag(ph, PTT_HOST_UNIQ); 8694cf49a43SJulian Elischer if ((tag == NULL) 8704cf49a43SJulian Elischer || (ntohs(tag->tag_len) != sizeof(sp))) { 871b86d0a9eSJulian Elischer printf("no host unique field\n"); 8724cf49a43SJulian Elischer LEAVE(ENETUNREACH); 8734cf49a43SJulian Elischer } 8744cf49a43SJulian Elischer 8754cf49a43SJulian Elischer sendhook = pppoe_finduniq(node, tag); 8764cf49a43SJulian Elischer if (sendhook == NULL) { 877b86d0a9eSJulian Elischer printf("no matching session\n"); 8784cf49a43SJulian Elischer LEAVE(ENETUNREACH); 8794cf49a43SJulian Elischer } 8804cf49a43SJulian Elischer 8814cf49a43SJulian Elischer /* 8824cf49a43SJulian Elischer * Check the session is in the right state. 8834cf49a43SJulian Elischer * It needs to be in PPPOE_SINIT. 8844cf49a43SJulian Elischer */ 8854cf49a43SJulian Elischer sp = sendhook->private; 8864cf49a43SJulian Elischer if (sp->state != PPPOE_SINIT) { 887b86d0a9eSJulian Elischer printf("session in wrong state\n"); 8884cf49a43SJulian Elischer LEAVE(ENETUNREACH); 8894cf49a43SJulian Elischer } 8904cf49a43SJulian Elischer neg = sp->neg; 8914cf49a43SJulian Elischer untimeout(pppoe_ticker, sendhook, 8924cf49a43SJulian Elischer neg->timeout_handle); 8934cf49a43SJulian Elischer 8944cf49a43SJulian Elischer /* 8954cf49a43SJulian Elischer * This is the first time we hear 8964cf49a43SJulian Elischer * from the server, so note it's 8974cf49a43SJulian Elischer * unicast address, replacing the 8984cf49a43SJulian Elischer * broadcast address . 8994cf49a43SJulian Elischer */ 9004cf49a43SJulian Elischer bcopy(wh->eh.ether_shost, 9014cf49a43SJulian Elischer neg->pkt->pkt_header.eh.ether_dhost, 9024cf49a43SJulian Elischer ETHER_ADDR_LEN); 9034cf49a43SJulian Elischer neg->timeout = 0; 9044cf49a43SJulian Elischer neg->pkt->pkt_header.ph.code = PADR_CODE; 9054cf49a43SJulian Elischer init_tags(sp); 9064cf49a43SJulian Elischer insert_tag(sp, &neg->service.hdr); /* Service */ 9074cf49a43SJulian Elischer insert_tag(sp, tag); /* Host Unique */ 9084cf49a43SJulian Elischer tag = get_tag(ph, PTT_AC_COOKIE); 909b86d0a9eSJulian Elischer if (tag) 910b86d0a9eSJulian Elischer insert_tag(sp, tag); /* return cookie */ 9114b276f90SJulian Elischer tag = get_tag(ph, PTT_AC_NAME); 9124b276f90SJulian Elischer if (tag) 9134b276f90SJulian Elischer insert_tag(sp, tag); /* return cookie */ 9144cf49a43SJulian Elischer scan_tags(sp, ph); 9154cf49a43SJulian Elischer make_packet(sp); 9164cf49a43SJulian Elischer sp->state = PPPOE_SREQ; 9174cf49a43SJulian Elischer sendpacket(sp); 9184cf49a43SJulian Elischer break; 9194cf49a43SJulian Elischer case PADR_CODE: 9204cf49a43SJulian Elischer 9214cf49a43SJulian Elischer /* 9224cf49a43SJulian Elischer * We are a server: 9234cf49a43SJulian Elischer * Use the ac_cookie tag to find the 9244cf49a43SJulian Elischer * hook this is in response to. 9254cf49a43SJulian Elischer */ 9264cf49a43SJulian Elischer tag = get_tag(ph, PTT_AC_COOKIE); 9274cf49a43SJulian Elischer if ((tag == NULL) 9284cf49a43SJulian Elischer || (ntohs(tag->tag_len) != sizeof(sp))) { 9294cf49a43SJulian Elischer LEAVE(ENETUNREACH); 9304cf49a43SJulian Elischer } 9314cf49a43SJulian Elischer 9324cf49a43SJulian Elischer sendhook = pppoe_finduniq(node, tag); 9334cf49a43SJulian Elischer if (sendhook == NULL) { 9344cf49a43SJulian Elischer LEAVE(ENETUNREACH); 9354cf49a43SJulian Elischer } 9364cf49a43SJulian Elischer 9374cf49a43SJulian Elischer /* 9384cf49a43SJulian Elischer * Check the session is in the right state. 9394cf49a43SJulian Elischer * It needs to be in PPPOE_SOFFER 9404cf49a43SJulian Elischer * or PPPOE_NEWCONNECTED. If the latter, 9414cf49a43SJulian Elischer * then this is a retry by the client. 9424cf49a43SJulian Elischer * so be nice, and resend. 9434cf49a43SJulian Elischer */ 9444cf49a43SJulian Elischer sp = sendhook->private; 9454cf49a43SJulian Elischer if (sp->state == PPPOE_NEWCONNECTED) { 9464cf49a43SJulian Elischer /* 9474cf49a43SJulian Elischer * Whoa! drop back to resend that 9484cf49a43SJulian Elischer * PADS packet. 9494cf49a43SJulian Elischer * We should still have a copy of it. 9504cf49a43SJulian Elischer */ 9514cf49a43SJulian Elischer sp->state = PPPOE_SOFFER; 9524cf49a43SJulian Elischer } 9534cf49a43SJulian Elischer if (sp->state != PPPOE_SOFFER) { 9544cf49a43SJulian Elischer LEAVE (ENETUNREACH); 9554cf49a43SJulian Elischer break; 9564cf49a43SJulian Elischer } 9574cf49a43SJulian Elischer neg = sp->neg; 9584cf49a43SJulian Elischer untimeout(pppoe_ticker, sendhook, 9594cf49a43SJulian Elischer neg->timeout_handle); 9604cf49a43SJulian Elischer neg->pkt->pkt_header.ph.code = PADS_CODE; 9614cf49a43SJulian Elischer if (sp->Session_ID == 0) 9624cf49a43SJulian Elischer neg->pkt->pkt_header.ph.sid = 963b86d0a9eSJulian Elischer htons(sp->Session_ID 964b86d0a9eSJulian Elischer = get_new_sid(node)); 9654cf49a43SJulian Elischer neg->timeout = 0; 9664cf49a43SJulian Elischer /* 9674cf49a43SJulian Elischer * start working out the tags to respond with. 9684cf49a43SJulian Elischer */ 9694cf49a43SJulian Elischer init_tags(sp); 9704cf49a43SJulian Elischer insert_tag(sp, &neg->ac_name.hdr); /* AC_NAME */ 9714cf49a43SJulian Elischer insert_tag(sp, tag); /* ac_cookie */ 9724cf49a43SJulian Elischer tag = get_tag(ph, PTT_SRV_NAME); 9734cf49a43SJulian Elischer insert_tag(sp, tag); /* returned service */ 9744cf49a43SJulian Elischer tag = get_tag(ph, PTT_HOST_UNIQ); 9754cf49a43SJulian Elischer insert_tag(sp, tag); /* returned hostuniq */ 9764cf49a43SJulian Elischer scan_tags(sp, ph); 9774cf49a43SJulian Elischer make_packet(sp); 9784cf49a43SJulian Elischer sp->state = PPPOE_NEWCONNECTED; 9794cf49a43SJulian Elischer sendpacket(sp); 980b58a8a3bSJulian Elischer pppoe_send_event(sp, NGM_PPPOE_SUCCESS); 9814cf49a43SJulian Elischer /* 9824cf49a43SJulian Elischer * Having sent the last Negotiation header, 9834cf49a43SJulian Elischer * Set up the stored packet header to 9844cf49a43SJulian Elischer * be correct for the actual session. 9854cf49a43SJulian Elischer * But keep the negotialtion stuff 9864cf49a43SJulian Elischer * around in case we need to resend this last 9874cf49a43SJulian Elischer * packet. We'll discard it when we move 9884cf49a43SJulian Elischer * from NEWCONNECTED to CONNECTED 9894cf49a43SJulian Elischer */ 9904cf49a43SJulian Elischer sp->pkt_hdr = neg->pkt->pkt_header; 9914cf49a43SJulian Elischer sp->pkt_hdr.eh.ether_type 9924cf49a43SJulian Elischer = ETHERTYPE_PPPOE_SESS; 9934cf49a43SJulian Elischer sp->pkt_hdr.ph.code = 0; 994b58a8a3bSJulian Elischer pppoe_send_event(sp, NGM_PPPOE_SUCCESS); 9954cf49a43SJulian Elischer break; 9964cf49a43SJulian Elischer case PADS_CODE: 9974cf49a43SJulian Elischer /* 9984cf49a43SJulian Elischer * We are a client: 9994cf49a43SJulian Elischer * Use the host_uniq tag to find the 10004cf49a43SJulian Elischer * hook this is in response to. 10014cf49a43SJulian Elischer * take the session ID and store it away. 10024cf49a43SJulian Elischer * Also make sure the pre-made header is 10034cf49a43SJulian Elischer * correct and set us into Session mode. 10044cf49a43SJulian Elischer */ 10054cf49a43SJulian Elischer tag = get_tag(ph, PTT_HOST_UNIQ); 10064cf49a43SJulian Elischer if ((tag == NULL) 10074cf49a43SJulian Elischer || (ntohs(tag->tag_len) != sizeof(sp))) { 10084cf49a43SJulian Elischer LEAVE (ENETUNREACH); 10094cf49a43SJulian Elischer break; 10104cf49a43SJulian Elischer } 10114cf49a43SJulian Elischer 10124cf49a43SJulian Elischer sendhook = pppoe_finduniq(node, tag); 10134cf49a43SJulian Elischer if (sendhook == NULL) { 10144cf49a43SJulian Elischer LEAVE(ENETUNREACH); 10154cf49a43SJulian Elischer } 10164cf49a43SJulian Elischer 10174cf49a43SJulian Elischer /* 10184cf49a43SJulian Elischer * Check the session is in the right state. 10194cf49a43SJulian Elischer * It needs to be in PPPOE_SREQ. 10204cf49a43SJulian Elischer */ 10214cf49a43SJulian Elischer sp = sendhook->private; 10224cf49a43SJulian Elischer if (sp->state != PPPOE_SREQ) { 10234cf49a43SJulian Elischer LEAVE(ENETUNREACH); 10244cf49a43SJulian Elischer } 10254cf49a43SJulian Elischer neg = sp->neg; 10264cf49a43SJulian Elischer untimeout(pppoe_ticker, sendhook, 10274cf49a43SJulian Elischer neg->timeout_handle); 1028cfbcfe62SJulian Elischer neg->pkt->pkt_header.ph.sid = wh->ph.sid; 1029b86d0a9eSJulian Elischer sp->Session_ID = ntohs(wh->ph.sid); 10304cf49a43SJulian Elischer neg->timeout = 0; 10314cf49a43SJulian Elischer sp->state = PPPOE_CONNECTED; 10324cf49a43SJulian Elischer /* 10334cf49a43SJulian Elischer * Now we have gone to Connected mode, 10344cf49a43SJulian Elischer * Free all resources needed for 10354cf49a43SJulian Elischer * negotiation. 10364cf49a43SJulian Elischer * Keep a copy of the header we will be using. 10374cf49a43SJulian Elischer */ 10384cf49a43SJulian Elischer sp->pkt_hdr = neg->pkt->pkt_header; 10394cf49a43SJulian Elischer sp->pkt_hdr.eh.ether_type 10404cf49a43SJulian Elischer = ETHERTYPE_PPPOE_SESS; 10414cf49a43SJulian Elischer sp->pkt_hdr.ph.code = 0; 10424cf49a43SJulian Elischer m_freem(neg->m); 10434cf49a43SJulian Elischer FREE(sp->neg, M_NETGRAPH); 10444cf49a43SJulian Elischer sp->neg = NULL; 1045b58a8a3bSJulian Elischer pppoe_send_event(sp, NGM_PPPOE_SUCCESS); 10464cf49a43SJulian Elischer break; 10474cf49a43SJulian Elischer case PADT_CODE: 10484cf49a43SJulian Elischer /* 10494cf49a43SJulian Elischer * Send a 'close' message to the controlling 10504cf49a43SJulian Elischer * process (the one that set us up); 10514cf49a43SJulian Elischer * And then tear everything down. 10524cf49a43SJulian Elischer * 10534cf49a43SJulian Elischer * Find matching peer/session combination. 10544cf49a43SJulian Elischer */ 10554cf49a43SJulian Elischer sendhook = pppoe_findsession(node, wh); 10564cf49a43SJulian Elischer NG_FREE_DATA(m, meta); /* no longer needed */ 10574cf49a43SJulian Elischer if (sendhook == NULL) { 10584cf49a43SJulian Elischer LEAVE(ENETUNREACH); 10594cf49a43SJulian Elischer } 10604cf49a43SJulian Elischer /* send message to creator */ 10614cf49a43SJulian Elischer /* close hook */ 1062b58a8a3bSJulian Elischer if (sendhook) { 10634cf49a43SJulian Elischer ng_destroy_hook(sendhook); 1064b58a8a3bSJulian Elischer } 10654cf49a43SJulian Elischer break; 10664cf49a43SJulian Elischer default: 10674cf49a43SJulian Elischer LEAVE(EPFNOSUPPORT); 10684cf49a43SJulian Elischer } 10694cf49a43SJulian Elischer break; 10704cf49a43SJulian Elischer case ETHERTYPE_PPPOE_SESS: 10714cf49a43SJulian Elischer /* 10724cf49a43SJulian Elischer * find matching peer/session combination. 10734cf49a43SJulian Elischer */ 10744cf49a43SJulian Elischer sendhook = pppoe_findsession(node, wh); 10754cf49a43SJulian Elischer if (sendhook == NULL) { 10764cf49a43SJulian Elischer LEAVE (ENETUNREACH); 10774cf49a43SJulian Elischer break; 10784cf49a43SJulian Elischer } 10794b276f90SJulian Elischer sp = sendhook->private; 10804cf49a43SJulian Elischer m_adj(m, sizeof(*wh)); 10814cf49a43SJulian Elischer if (m->m_pkthdr.len < length) { 10824cf49a43SJulian Elischer /* Packet too short, dump it */ 10834cf49a43SJulian Elischer LEAVE(EMSGSIZE); 10844cf49a43SJulian Elischer } 10859fcb3d83SJulian Elischer 10869fcb3d83SJulian Elischer if (m->m_pkthdr.len > length) { 10879fcb3d83SJulian Elischer m_adj(m, -((int)(m->m_pkthdr.len - length))); 10889fcb3d83SJulian Elischer } 10894cf49a43SJulian Elischer /* XXX also need to trim excess at end I should think */ 10904cf49a43SJulian Elischer if ( sp->state != PPPOE_CONNECTED) { 10914cf49a43SJulian Elischer if (sp->state == PPPOE_NEWCONNECTED) { 10924cf49a43SJulian Elischer sp->state = PPPOE_CONNECTED; 10934cf49a43SJulian Elischer /* 10944cf49a43SJulian Elischer * Now we have gone to Connected mode, 10954cf49a43SJulian Elischer * Free all resources needed for 10964cf49a43SJulian Elischer * negotiation. 10974cf49a43SJulian Elischer */ 10984cf49a43SJulian Elischer m_freem(sp->neg->m); 10994cf49a43SJulian Elischer FREE(sp->neg, M_NETGRAPH); 11004cf49a43SJulian Elischer sp->neg = NULL; 11014cf49a43SJulian Elischer } else { 11024cf49a43SJulian Elischer LEAVE (ENETUNREACH); 11034cf49a43SJulian Elischer break; 11044cf49a43SJulian Elischer } 11054cf49a43SJulian Elischer } 11064cf49a43SJulian Elischer NG_SEND_DATA( error, sendhook, m, meta); 11074cf49a43SJulian Elischer break; 11084cf49a43SJulian Elischer default: 11094b276f90SJulian Elischer LEAVE(EPFNOSUPPORT); 11104cf49a43SJulian Elischer } 11114cf49a43SJulian Elischer } else { 11124cf49a43SJulian Elischer /* 11134cf49a43SJulian Elischer * Not ethernet or debug hook.. 11144cf49a43SJulian Elischer * 11154cf49a43SJulian Elischer * The packet has come in on a normal hook. 11164cf49a43SJulian Elischer * We need to find out what kind of hook, 11174cf49a43SJulian Elischer * So we can decide how to handle it. 11184cf49a43SJulian Elischer * Check the hook's state. 11194cf49a43SJulian Elischer */ 11204cf49a43SJulian Elischer sp = hook->private; 11214cf49a43SJulian Elischer switch (sp->state) { 11224cf49a43SJulian Elischer case PPPOE_NEWCONNECTED: 11234cf49a43SJulian Elischer case PPPOE_CONNECTED: { 11244cf49a43SJulian Elischer struct pppoe_full_hdr *wh; 11254cf49a43SJulian Elischer /* 11264cf49a43SJulian Elischer * Bang in a pre-made header, and set the length up 11274cf49a43SJulian Elischer * to be correct. Then send it to the ethernet driver. 1128d9da9cbaSJulian Elischer * But first correct the length. 11294cf49a43SJulian Elischer */ 1130d9da9cbaSJulian Elischer sp->pkt_hdr.ph.length = htons((short)(m->m_pkthdr.len)); 11314cf49a43SJulian Elischer M_PREPEND(m, sizeof(*wh), M_DONTWAIT); 11324cf49a43SJulian Elischer if (m == NULL) { 11334cf49a43SJulian Elischer LEAVE(ENOBUFS); 11344cf49a43SJulian Elischer } 11354cf49a43SJulian Elischer wh = mtod(m, struct pppoe_full_hdr *); 11364cf49a43SJulian Elischer bcopy(&sp->pkt_hdr, wh, sizeof(*wh)); 11374cf49a43SJulian Elischer NG_SEND_DATA( error, privp->ethernet_hook, m, meta); 11384cf49a43SJulian Elischer privp->packets_out++; 11394cf49a43SJulian Elischer break; 11404cf49a43SJulian Elischer } 11414cf49a43SJulian Elischer case PPPOE_PRIMED: 11424cf49a43SJulian Elischer /* 11434cf49a43SJulian Elischer * A PADI packet is being returned by the application 11444cf49a43SJulian Elischer * that has set up this hook. This indicates that it 11454cf49a43SJulian Elischer * wants us to offer service. 11464cf49a43SJulian Elischer */ 11474cf49a43SJulian Elischer neg = sp->neg; 1148bef9dae0SJulian Elischer if (m->m_len < sizeof(*wh)) 1149bef9dae0SJulian Elischer m_pullup(m, sizeof(*wh)); 11504cf49a43SJulian Elischer if (m == NULL) { 11514cf49a43SJulian Elischer LEAVE(ENOBUFS); 11524cf49a43SJulian Elischer } 11534cf49a43SJulian Elischer wh = mtod(m, struct pppoe_full_hdr *); 11544cf49a43SJulian Elischer ph = &wh->ph; 11554cf49a43SJulian Elischer session = ntohs(wh->ph.sid); 11564cf49a43SJulian Elischer length = ntohs(wh->ph.length); 11574cf49a43SJulian Elischer code = wh->ph.code; 11581e2510f8SJulian Elischer if ( code != PADI_CODE) { 11591e2510f8SJulian Elischer LEAVE(EINVAL); 11601e2510f8SJulian Elischer }; 11611e2510f8SJulian Elischer untimeout(pppoe_ticker, hook, 11621e2510f8SJulian Elischer neg->timeout_handle); 11634cf49a43SJulian Elischer 11644cf49a43SJulian Elischer /* 11654cf49a43SJulian Elischer * This is the first time we hear 11664cf49a43SJulian Elischer * from the client, so note it's 11674cf49a43SJulian Elischer * unicast address, replacing the 11684cf49a43SJulian Elischer * broadcast address . 11694cf49a43SJulian Elischer */ 11704cf49a43SJulian Elischer bcopy(wh->eh.ether_shost, 11714cf49a43SJulian Elischer neg->pkt->pkt_header.eh.ether_dhost, 11724cf49a43SJulian Elischer ETHER_ADDR_LEN); 11734cf49a43SJulian Elischer sp->state = PPPOE_SOFFER; 11744cf49a43SJulian Elischer neg->timeout = 0; 11754cf49a43SJulian Elischer neg->pkt->pkt_header.ph.code = PADO_CODE; 11764cf49a43SJulian Elischer 11774cf49a43SJulian Elischer /* 11784cf49a43SJulian Elischer * start working out the tags to respond with. 11794cf49a43SJulian Elischer */ 11804cf49a43SJulian Elischer uniqtag.hdr.tag_type = PTT_AC_COOKIE; 11814cf49a43SJulian Elischer uniqtag.hdr.tag_len = htons((u_int16_t)sizeof(sp)); 11824cf49a43SJulian Elischer uniqtag.data.pointer = sp; 11834cf49a43SJulian Elischer init_tags(sp); 11844cf49a43SJulian Elischer insert_tag(sp, &neg->ac_name.hdr); /* AC_NAME */ 11854cf49a43SJulian Elischer insert_tag(sp, tag); /* returned hostunique */ 11864cf49a43SJulian Elischer insert_tag(sp, &uniqtag.hdr); /* AC cookie */ 11874cf49a43SJulian Elischer tag = get_tag(ph, PTT_SRV_NAME); 11884cf49a43SJulian Elischer insert_tag(sp, tag); /* returned service */ 11894cf49a43SJulian Elischer /* XXX maybe put the tag in the session store */ 11904cf49a43SJulian Elischer scan_tags(sp, ph); 11914cf49a43SJulian Elischer make_packet(sp); 11924cf49a43SJulian Elischer sendpacket(sp); 11934cf49a43SJulian Elischer break; 11944cf49a43SJulian Elischer 11954cf49a43SJulian Elischer /* 11964cf49a43SJulian Elischer * Packets coming from the hook make no sense 11974cf49a43SJulian Elischer * to sessions in these states. Throw them away. 11984cf49a43SJulian Elischer */ 11994cf49a43SJulian Elischer case PPPOE_SINIT: 12004cf49a43SJulian Elischer case PPPOE_SREQ: 12014cf49a43SJulian Elischer case PPPOE_SOFFER: 12024cf49a43SJulian Elischer case PPPOE_SNONE: 12034cf49a43SJulian Elischer case PPPOE_LISTENING: 12044cf49a43SJulian Elischer case PPPOE_DEAD: 12054cf49a43SJulian Elischer default: 12064cf49a43SJulian Elischer LEAVE(ENETUNREACH); 12074cf49a43SJulian Elischer } 12084cf49a43SJulian Elischer } 12094cf49a43SJulian Elischer quit: 12104cf49a43SJulian Elischer NG_FREE_DATA(m, meta); 12114cf49a43SJulian Elischer return error; 12124cf49a43SJulian Elischer } 12134cf49a43SJulian Elischer 12144cf49a43SJulian Elischer /* 12154cf49a43SJulian Elischer * Do local shutdown processing.. 12164cf49a43SJulian Elischer * If we are a persistant device, we might refuse to go away, and 12174cf49a43SJulian Elischer * we'd only remove our links and reset ourself. 12184cf49a43SJulian Elischer */ 12194cf49a43SJulian Elischer static int 12208876b55dSJulian Elischer ng_pppoe_rmnode(node_p node) 12214cf49a43SJulian Elischer { 12224cf49a43SJulian Elischer const priv_p privdata = node->private; 12234cf49a43SJulian Elischer 12241e2510f8SJulian Elischer AAA 12254cf49a43SJulian Elischer node->flags |= NG_INVALID; 12264cf49a43SJulian Elischer ng_cutlinks(node); 12274cf49a43SJulian Elischer ng_unname(node); 12284cf49a43SJulian Elischer node->private = NULL; 12294cf49a43SJulian Elischer ng_unref(privdata->node); 12304cf49a43SJulian Elischer FREE(privdata, M_NETGRAPH); 12314cf49a43SJulian Elischer return (0); 12324cf49a43SJulian Elischer } 12334cf49a43SJulian Elischer 12344cf49a43SJulian Elischer /* 12354cf49a43SJulian Elischer * This is called once we've already connected a new hook to the other node. 12364cf49a43SJulian Elischer * It gives us a chance to balk at the last minute. 12374cf49a43SJulian Elischer */ 12384cf49a43SJulian Elischer static int 12398876b55dSJulian Elischer ng_pppoe_connect(hook_p hook) 12404cf49a43SJulian Elischer { 12414cf49a43SJulian Elischer /* be really amiable and just say "YUP that's OK by me! " */ 12424cf49a43SJulian Elischer return (0); 12434cf49a43SJulian Elischer } 12444cf49a43SJulian Elischer 12454cf49a43SJulian Elischer /* 12464cf49a43SJulian Elischer * Hook disconnection 12474cf49a43SJulian Elischer * 12484cf49a43SJulian Elischer * Clean up all dangling links and infirmation about the session/hook. 12494cf49a43SJulian Elischer * For this type, removal of the last link destroys the node 12504cf49a43SJulian Elischer */ 12514cf49a43SJulian Elischer static int 12528876b55dSJulian Elischer ng_pppoe_disconnect(hook_p hook) 12534cf49a43SJulian Elischer { 12544cf49a43SJulian Elischer node_p node = hook->node; 12554cf49a43SJulian Elischer priv_p privp = node->private; 12564cf49a43SJulian Elischer sessp sp; 125704853d8aSJulian Elischer int hooks; 12584cf49a43SJulian Elischer 12591e2510f8SJulian Elischer AAA 12604cf49a43SJulian Elischer if (hook->private == &privp->debug_hook) { 12614cf49a43SJulian Elischer privp->debug_hook = NULL; 12624cf49a43SJulian Elischer } else if (hook->private == &privp->ethernet_hook) { 12634cf49a43SJulian Elischer privp->ethernet_hook = NULL; 126404853d8aSJulian Elischer ng_rmnode(node); 12654cf49a43SJulian Elischer } else { 12664cf49a43SJulian Elischer sp = hook->private; 1267b58a8a3bSJulian Elischer if (sp->state != PPPOE_SNONE ) { 1268b58a8a3bSJulian Elischer pppoe_send_event(sp, NGM_PPPOE_CLOSE); 1269b58a8a3bSJulian Elischer } 12709fcb3d83SJulian Elischer if ((privp->ethernet_hook) 12719fcb3d83SJulian Elischer && ((sp->state == PPPOE_CONNECTED) 12729fcb3d83SJulian Elischer || (sp->state == PPPOE_NEWCONNECTED))) { 12739fcb3d83SJulian Elischer struct mbuf *m; 12749fcb3d83SJulian Elischer struct pppoe_full_hdr *wh; 12759fcb3d83SJulian Elischer struct pppoe_tag *tag; 12769fcb3d83SJulian Elischer int msglen = strlen(SIGNOFF); 12779fcb3d83SJulian Elischer void *dummy = NULL; 12789fcb3d83SJulian Elischer int error = 0; 12799fcb3d83SJulian Elischer 12809fcb3d83SJulian Elischer /* revert the stored header to DISC/PADT mode */ 12819fcb3d83SJulian Elischer wh = &sp->pkt_hdr; 12829fcb3d83SJulian Elischer wh->ph.code = PADT_CODE; 12839fcb3d83SJulian Elischer wh->eh.ether_type = ETHERTYPE_PPPOE_DISC; 12849fcb3d83SJulian Elischer 12859fcb3d83SJulian Elischer /* generate a packet of that type */ 12869fcb3d83SJulian Elischer MGETHDR(m, M_DONTWAIT, MT_DATA); 12879fcb3d83SJulian Elischer m->m_pkthdr.rcvif = NULL; 12889fcb3d83SJulian Elischer m->m_pkthdr.len = m->m_len = sizeof(*wh); 12899fcb3d83SJulian Elischer bcopy((caddr_t)wh, mtod(m, caddr_t), sizeof(*wh)); 12909fcb3d83SJulian Elischer /* Add a General error message and adjust sizes */ 12919fcb3d83SJulian Elischer wh = mtod(m, struct pppoe_full_hdr *); 12929fcb3d83SJulian Elischer tag = wh->ph.tag; 12939fcb3d83SJulian Elischer tag->tag_type = PTT_GEN_ERR; 12949fcb3d83SJulian Elischer tag->tag_len = htons((u_int16_t)msglen); 12959fcb3d83SJulian Elischer strncpy(tag->tag_data, SIGNOFF, msglen); 12969fcb3d83SJulian Elischer m->m_pkthdr.len = (m->m_len += sizeof(*tag) + msglen); 12979fcb3d83SJulian Elischer wh->ph.length = htons(sizeof(*tag) + msglen); 1298cfbcfe62SJulian Elischer NG_SEND_DATA(error, privp->ethernet_hook, m, dummy); 12999fcb3d83SJulian Elischer } 13001e2510f8SJulian Elischer if (sp->neg) { 13014cf49a43SJulian Elischer untimeout(pppoe_ticker, hook, sp->neg->timeout_handle); 13021e2510f8SJulian Elischer if (sp->neg->m) 13031e2510f8SJulian Elischer m_freem(sp->neg->m); 13041e2510f8SJulian Elischer FREE(sp->neg, M_NETGRAPH); 13051e2510f8SJulian Elischer } 13064cf49a43SJulian Elischer FREE(sp, M_NETGRAPH); 13071e2510f8SJulian Elischer hook->private = NULL; 1308ed52f174SJulian Elischer /* work out how many session hooks there are */ 130904853d8aSJulian Elischer /* Node goes away on last session hook removal */ 131004853d8aSJulian Elischer hooks = node->numhooks; /* this one already not counted */ 131104853d8aSJulian Elischer if (privp->ethernet_hook) hooks -= 1; 1312ed52f174SJulian Elischer if (privp->debug_hook) hooks -= 1; 131304853d8aSJulian Elischer if (hooks == 0) 131404853d8aSJulian Elischer ng_rmnode(node); 13154cf49a43SJulian Elischer } 13164cf49a43SJulian Elischer if (node->numhooks == 0) 13174cf49a43SJulian Elischer ng_rmnode(node); 13184cf49a43SJulian Elischer return (0); 13194cf49a43SJulian Elischer } 13204cf49a43SJulian Elischer 13214cf49a43SJulian Elischer /* 13224cf49a43SJulian Elischer * timeouts come here. 13234cf49a43SJulian Elischer */ 13244cf49a43SJulian Elischer static void 13254cf49a43SJulian Elischer pppoe_ticker(void *arg) 13264cf49a43SJulian Elischer { 13274cf49a43SJulian Elischer int s = splnet(); 13284cf49a43SJulian Elischer hook_p hook = arg; 13294cf49a43SJulian Elischer sessp sp = hook->private; 13304cf49a43SJulian Elischer negp neg = sp->neg; 13314cf49a43SJulian Elischer int error = 0; 13324cf49a43SJulian Elischer struct mbuf *m0 = NULL; 13334cf49a43SJulian Elischer priv_p privp = hook->node->private; 13344cf49a43SJulian Elischer meta_p dummy = NULL; 13354cf49a43SJulian Elischer 13361e2510f8SJulian Elischer AAA 13374cf49a43SJulian Elischer switch(sp->state) { 13384cf49a43SJulian Elischer /* 13394cf49a43SJulian Elischer * resend the last packet, using an exponential backoff. 13404cf49a43SJulian Elischer * After a period of time, stop growing the backoff, 13414cf49a43SJulian Elischer * and either leave it, or reverst to the start. 13424cf49a43SJulian Elischer */ 13434cf49a43SJulian Elischer case PPPOE_SINIT: 13444cf49a43SJulian Elischer case PPPOE_SREQ: 13454cf49a43SJulian Elischer /* timeouts on these produce resends */ 13464cf49a43SJulian Elischer m0 = m_copypacket(sp->neg->m, M_DONTWAIT); 13474cf49a43SJulian Elischer NG_SEND_DATA( error, privp->ethernet_hook, m0, dummy); 13484cf49a43SJulian Elischer neg->timeout_handle = timeout(pppoe_ticker, 13494cf49a43SJulian Elischer hook, neg->timeout * hz); 13504cf49a43SJulian Elischer if ((neg->timeout <<= 1) > PPPOE_TIMEOUT_LIMIT) { 13514cf49a43SJulian Elischer if (sp->state == PPPOE_SREQ) { 13524cf49a43SJulian Elischer /* revert to SINIT mode */ 1353b58a8a3bSJulian Elischer pppoe_start(sp); 13544cf49a43SJulian Elischer } else { 13554cf49a43SJulian Elischer neg->timeout = PPPOE_TIMEOUT_LIMIT; 13564cf49a43SJulian Elischer } 13574cf49a43SJulian Elischer } 13584cf49a43SJulian Elischer break; 13594cf49a43SJulian Elischer case PPPOE_PRIMED: 13604cf49a43SJulian Elischer case PPPOE_SOFFER: 13614cf49a43SJulian Elischer /* a timeout on these says "give up" */ 13624cf49a43SJulian Elischer ng_destroy_hook(hook); 13634cf49a43SJulian Elischer break; 13644cf49a43SJulian Elischer default: 13654cf49a43SJulian Elischer /* timeouts have no meaning in other states */ 13664cf49a43SJulian Elischer printf("pppoe: unexpected timeout\n"); 13674cf49a43SJulian Elischer } 13684cf49a43SJulian Elischer splx(s); 13694cf49a43SJulian Elischer } 13704cf49a43SJulian Elischer 13714cf49a43SJulian Elischer 13724cf49a43SJulian Elischer static void 13734cf49a43SJulian Elischer sendpacket(sessp sp) 13744cf49a43SJulian Elischer { 13754cf49a43SJulian Elischer int error = 0; 13764cf49a43SJulian Elischer struct mbuf *m0 = NULL; 13774cf49a43SJulian Elischer hook_p hook = sp->hook; 13784cf49a43SJulian Elischer negp neg = sp->neg; 13794cf49a43SJulian Elischer priv_p privp = hook->node->private; 13804cf49a43SJulian Elischer meta_p dummy = NULL; 13814cf49a43SJulian Elischer 13821e2510f8SJulian Elischer AAA 13834cf49a43SJulian Elischer switch(sp->state) { 13844cf49a43SJulian Elischer case PPPOE_LISTENING: 13854cf49a43SJulian Elischer case PPPOE_DEAD: 13864cf49a43SJulian Elischer case PPPOE_SNONE: 13874cf49a43SJulian Elischer case PPPOE_NEWCONNECTED: 13884cf49a43SJulian Elischer case PPPOE_CONNECTED: 1389b86d0a9eSJulian Elischer printf("pppoe: sendpacket: unexpected state\n"); 13904cf49a43SJulian Elischer break; 13914cf49a43SJulian Elischer 13924cf49a43SJulian Elischer case PPPOE_PRIMED: 13934cf49a43SJulian Elischer /* No packet to send, but set up the timeout */ 13944cf49a43SJulian Elischer neg->timeout_handle = timeout(pppoe_ticker, 13954cf49a43SJulian Elischer hook, PPPOE_OFFER_TIMEOUT * hz); 13964cf49a43SJulian Elischer break; 13974cf49a43SJulian Elischer 13984cf49a43SJulian Elischer case PPPOE_SOFFER: 13994cf49a43SJulian Elischer /* 14004cf49a43SJulian Elischer * send the offer but if they don't respond 14014cf49a43SJulian Elischer * in PPPOE_OFFER_TIMEOUT seconds, forget about it. 14024cf49a43SJulian Elischer */ 14034cf49a43SJulian Elischer m0 = m_copypacket(sp->neg->m, M_DONTWAIT); 14044cf49a43SJulian Elischer NG_SEND_DATA( error, privp->ethernet_hook, m0, dummy); 14054cf49a43SJulian Elischer neg->timeout_handle = timeout(pppoe_ticker, 14064cf49a43SJulian Elischer hook, PPPOE_OFFER_TIMEOUT * hz); 14074cf49a43SJulian Elischer break; 14084cf49a43SJulian Elischer 14094cf49a43SJulian Elischer case PPPOE_SINIT: 14104cf49a43SJulian Elischer case PPPOE_SREQ: 14114cf49a43SJulian Elischer m0 = m_copypacket(sp->neg->m, M_DONTWAIT); 1412b86d0a9eSJulian Elischer NG_SEND_DATA( error, privp->ethernet_hook, m0, dummy); 14134cf49a43SJulian Elischer neg->timeout_handle = timeout(pppoe_ticker, hook, hz); 14144cf49a43SJulian Elischer neg->timeout = 2; 14154cf49a43SJulian Elischer break; 14164cf49a43SJulian Elischer 14174cf49a43SJulian Elischer default: 14184cf49a43SJulian Elischer error = EINVAL; 14194cf49a43SJulian Elischer printf("pppoe: timeout: bad state\n"); 14204cf49a43SJulian Elischer } 14214cf49a43SJulian Elischer /* return (error); */ 14224cf49a43SJulian Elischer } 14234cf49a43SJulian Elischer 14244cf49a43SJulian Elischer /* 14254cf49a43SJulian Elischer * Parse an incoming packet to see if any tags should be copied to the 14264cf49a43SJulian Elischer * output packet. DOon't do any tags that are likely to have been 14274cf49a43SJulian Elischer * handles a the main state machine. 14284cf49a43SJulian Elischer */ 14294cf49a43SJulian Elischer static struct pppoe_tag* 14304cf49a43SJulian Elischer scan_tags(sessp sp, struct pppoe_hdr* ph) 14314cf49a43SJulian Elischer { 14324cf49a43SJulian Elischer char *end = (char *)next_tag(ph); 14334cf49a43SJulian Elischer char *ptn; 14344cf49a43SJulian Elischer struct pppoe_tag *pt = &ph->tag[0]; 14354cf49a43SJulian Elischer /* 14364cf49a43SJulian Elischer * Keep processing tags while a tag header will still fit. 14374cf49a43SJulian Elischer */ 14381e2510f8SJulian Elischer AAA 14394cf49a43SJulian Elischer while((char*)(pt + 1) <= end) { 14404cf49a43SJulian Elischer /* 14414cf49a43SJulian Elischer * If the tag data would go past the end of the packet, abort. 14424cf49a43SJulian Elischer */ 14434cf49a43SJulian Elischer ptn = (((char *)(pt + 1)) + ntohs(pt->tag_len)); 14444cf49a43SJulian Elischer if(ptn > end) 14454cf49a43SJulian Elischer return NULL; 14464cf49a43SJulian Elischer 14474cf49a43SJulian Elischer switch (pt->tag_type) { 14484cf49a43SJulian Elischer case PTT_RELAY_SID: 14494cf49a43SJulian Elischer insert_tag(sp, pt); 14504cf49a43SJulian Elischer break; 14514cf49a43SJulian Elischer case PTT_EOL: 14524cf49a43SJulian Elischer return NULL; 14534cf49a43SJulian Elischer case PTT_SRV_NAME: 14544cf49a43SJulian Elischer case PTT_AC_NAME: 14554cf49a43SJulian Elischer case PTT_HOST_UNIQ: 14564cf49a43SJulian Elischer case PTT_AC_COOKIE: 14574cf49a43SJulian Elischer case PTT_VENDOR: 14584cf49a43SJulian Elischer case PTT_SRV_ERR: 14594cf49a43SJulian Elischer case PTT_SYS_ERR: 14604cf49a43SJulian Elischer case PTT_GEN_ERR: 14614cf49a43SJulian Elischer break; 14624cf49a43SJulian Elischer } 14634cf49a43SJulian Elischer pt = (struct pppoe_tag*)ptn; 14644cf49a43SJulian Elischer } 14654cf49a43SJulian Elischer return NULL; 14664cf49a43SJulian Elischer } 14674cf49a43SJulian Elischer 1468b58a8a3bSJulian Elischer static int 1469b58a8a3bSJulian Elischer pppoe_send_event(sessp sp, enum cmd cmdid) 1470b58a8a3bSJulian Elischer { 1471b58a8a3bSJulian Elischer int error; 1472b58a8a3bSJulian Elischer struct ng_mesg *msg; 14738876b55dSJulian Elischer struct ngpppoe_sts *sts; 1474b58a8a3bSJulian Elischer 14751e2510f8SJulian Elischer AAA 1476b58a8a3bSJulian Elischer NG_MKMESSAGE(msg, NGM_PPPOE_COOKIE, cmdid, 14778876b55dSJulian Elischer sizeof(struct ngpppoe_sts), M_NOWAIT); 14788876b55dSJulian Elischer sts = (struct ngpppoe_sts *)msg->data; 1479b58a8a3bSJulian Elischer strncpy(sts->hook, sp->hook->name, NG_HOOKLEN + 1); 1480b58a8a3bSJulian Elischer error = ng_send_msg(sp->hook->node, msg, sp->creator, NULL); 1481b58a8a3bSJulian Elischer return (error); 1482b58a8a3bSJulian Elischer } 1483