xref: /illumos-gate/usr/src/uts/common/io/ppp/sppp/sppp.c (revision d624471b)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * sppp.c - Solaris STREAMS PPP multiplexing pseudo-driver
37c478bd9Sstevel@tonic-gate  *
4*d624471bSelowe  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
57c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
67c478bd9Sstevel@tonic-gate  *
77c478bd9Sstevel@tonic-gate  * Permission to use, copy, modify, and distribute this software and its
87c478bd9Sstevel@tonic-gate  * documentation is hereby granted, provided that the above copyright
97c478bd9Sstevel@tonic-gate  * notice appears in all copies.
107c478bd9Sstevel@tonic-gate  *
117c478bd9Sstevel@tonic-gate  * SUN MAKES NO REPRESENTATION OR WARRANTIES ABOUT THE SUITABILITY OF
127c478bd9Sstevel@tonic-gate  * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
137c478bd9Sstevel@tonic-gate  * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
147c478bd9Sstevel@tonic-gate  * PARTICULAR PURPOSE, OR NON-INFRINGEMENT.  SUN SHALL NOT BE LIABLE FOR
157c478bd9Sstevel@tonic-gate  * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
167c478bd9Sstevel@tonic-gate  * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES
177c478bd9Sstevel@tonic-gate  *
187c478bd9Sstevel@tonic-gate  * Copyright (c) 1994 The Australian National University.
197c478bd9Sstevel@tonic-gate  * All rights reserved.
207c478bd9Sstevel@tonic-gate  *
217c478bd9Sstevel@tonic-gate  * Permission to use, copy, modify, and distribute this software and its
227c478bd9Sstevel@tonic-gate  * documentation is hereby granted, provided that the above copyright
237c478bd9Sstevel@tonic-gate  * notice appears in all copies.  This software is provided without any
247c478bd9Sstevel@tonic-gate  * warranty, express or implied. The Australian National University
257c478bd9Sstevel@tonic-gate  * makes no representations about the suitability of this software for
267c478bd9Sstevel@tonic-gate  * any purpose.
277c478bd9Sstevel@tonic-gate  *
287c478bd9Sstevel@tonic-gate  * IN NO EVENT SHALL THE AUSTRALIAN NATIONAL UNIVERSITY BE LIABLE TO ANY
297c478bd9Sstevel@tonic-gate  * PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
307c478bd9Sstevel@tonic-gate  * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF
317c478bd9Sstevel@tonic-gate  * THE AUSTRALIAN NATIONAL UNIVERSITY HAS BEEN ADVISED OF THE POSSIBILITY
327c478bd9Sstevel@tonic-gate  * OF SUCH DAMAGE.
337c478bd9Sstevel@tonic-gate  *
347c478bd9Sstevel@tonic-gate  * THE AUSTRALIAN NATIONAL UNIVERSITY SPECIFICALLY DISCLAIMS ANY WARRANTIES,
357c478bd9Sstevel@tonic-gate  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
367c478bd9Sstevel@tonic-gate  * AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
377c478bd9Sstevel@tonic-gate  * ON AN "AS IS" BASIS, AND THE AUSTRALIAN NATIONAL UNIVERSITY HAS NO
387c478bd9Sstevel@tonic-gate  * OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS,
397c478bd9Sstevel@tonic-gate  * OR MODIFICATIONS.
407c478bd9Sstevel@tonic-gate  *
417c478bd9Sstevel@tonic-gate  * This driver is derived from the original SVR4 STREAMS PPP driver
427c478bd9Sstevel@tonic-gate  * originally written by Paul Mackerras <paul.mackerras@cs.anu.edu.au>.
437c478bd9Sstevel@tonic-gate  *
447c478bd9Sstevel@tonic-gate  * Adi Masputra <adi.masputra@sun.com> rewrote and restructured the code
457c478bd9Sstevel@tonic-gate  * for improved performance and scalability.
467c478bd9Sstevel@tonic-gate  */
477c478bd9Sstevel@tonic-gate 
487c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
497c478bd9Sstevel@tonic-gate #define	RCSID	"$Id: sppp.c,v 1.0 2000/05/08 01:10:12 masputra Exp $"
507c478bd9Sstevel@tonic-gate 
517c478bd9Sstevel@tonic-gate #include <sys/types.h>
527c478bd9Sstevel@tonic-gate #include <sys/debug.h>
537c478bd9Sstevel@tonic-gate #include <sys/param.h>
547c478bd9Sstevel@tonic-gate #include <sys/stat.h>
557c478bd9Sstevel@tonic-gate #include <sys/stream.h>
567c478bd9Sstevel@tonic-gate #include <sys/stropts.h>
577c478bd9Sstevel@tonic-gate #include <sys/sysmacros.h>
587c478bd9Sstevel@tonic-gate #include <sys/errno.h>
597c478bd9Sstevel@tonic-gate #include <sys/time.h>
607c478bd9Sstevel@tonic-gate #include <sys/cmn_err.h>
617c478bd9Sstevel@tonic-gate #include <sys/kmem.h>
627c478bd9Sstevel@tonic-gate #include <sys/conf.h>
637c478bd9Sstevel@tonic-gate #include <sys/dlpi.h>
647c478bd9Sstevel@tonic-gate #include <sys/ddi.h>
657c478bd9Sstevel@tonic-gate #include <sys/kstat.h>
667c478bd9Sstevel@tonic-gate #include <sys/strsun.h>
677c478bd9Sstevel@tonic-gate #include <sys/ethernet.h>
687c478bd9Sstevel@tonic-gate #include <sys/policy.h>
697c478bd9Sstevel@tonic-gate #include <net/ppp_defs.h>
707c478bd9Sstevel@tonic-gate #include <net/pppio.h>
717c478bd9Sstevel@tonic-gate #include "sppp.h"
727c478bd9Sstevel@tonic-gate #include "s_common.h"
737c478bd9Sstevel@tonic-gate 
747c478bd9Sstevel@tonic-gate /*
757c478bd9Sstevel@tonic-gate  * This is used to tag official Solaris sources.  Please do not define
767c478bd9Sstevel@tonic-gate  * "INTERNAL_BUILD" when building this software outside of Sun Microsystems.
777c478bd9Sstevel@tonic-gate  */
787c478bd9Sstevel@tonic-gate #ifdef INTERNAL_BUILD
797c478bd9Sstevel@tonic-gate /* MODINFO is limited to 32 characters. */
807c478bd9Sstevel@tonic-gate const char sppp_module_description[] = "PPP 4.0 mux v%I%";
817c478bd9Sstevel@tonic-gate #else /* INTERNAL_BUILD */
827c478bd9Sstevel@tonic-gate const char sppp_module_description[] = "ANU PPP mux $Revision: 1.0$";
837c478bd9Sstevel@tonic-gate 
847c478bd9Sstevel@tonic-gate /* LINTED */
857c478bd9Sstevel@tonic-gate static const char buildtime[] = "Built " __DATE__ " at " __TIME__
867c478bd9Sstevel@tonic-gate #ifdef DEBUG
877c478bd9Sstevel@tonic-gate " DEBUG"
887c478bd9Sstevel@tonic-gate #endif
897c478bd9Sstevel@tonic-gate "\n";
907c478bd9Sstevel@tonic-gate #endif /* INTERNAL_BUILD */
917c478bd9Sstevel@tonic-gate 
927c478bd9Sstevel@tonic-gate static void	sppp_inner_ioctl(queue_t *, mblk_t *);
937c478bd9Sstevel@tonic-gate static void	sppp_outer_ioctl(queue_t *, mblk_t *);
947c478bd9Sstevel@tonic-gate static queue_t	*sppp_send(queue_t *, mblk_t **, spppstr_t *);
957c478bd9Sstevel@tonic-gate static queue_t	*sppp_recv(queue_t *, mblk_t **, spppstr_t *);
967c478bd9Sstevel@tonic-gate static void	sppp_recv_nondata(queue_t *, mblk_t *, spppstr_t *);
977c478bd9Sstevel@tonic-gate static queue_t	*sppp_outpkt(queue_t *, mblk_t **, int, spppstr_t *);
987c478bd9Sstevel@tonic-gate static spppstr_t *sppp_inpkt(queue_t *, mblk_t *, spppstr_t *);
997c478bd9Sstevel@tonic-gate static int	sppp_kstat_update(kstat_t *, int);
1007c478bd9Sstevel@tonic-gate static void 	sppp_release_pkts(sppa_t *, uint16_t);
1017c478bd9Sstevel@tonic-gate 
1027c478bd9Sstevel@tonic-gate /*
1037c478bd9Sstevel@tonic-gate  * sps_list contains the list of active per-stream instance state structures
1047c478bd9Sstevel@tonic-gate  * ordered on the minor device number (see sppp.h for details). All streams
1057c478bd9Sstevel@tonic-gate  * opened to this driver are threaded together in this list.
1067c478bd9Sstevel@tonic-gate  */
1077c478bd9Sstevel@tonic-gate static spppstr_t *sps_list = NULL;
1087c478bd9Sstevel@tonic-gate /*
1097c478bd9Sstevel@tonic-gate  * ppa_list contains the list of active per-attachment instance state
1107c478bd9Sstevel@tonic-gate  * structures ordered on the ppa id number (see sppp.h for details). All of
1117c478bd9Sstevel@tonic-gate  * the ppa structures created once per PPPIO_NEWPPA ioctl are threaded together
1127c478bd9Sstevel@tonic-gate  * in this list. There is exactly one ppa structure for a given PPP interface,
1137c478bd9Sstevel@tonic-gate  * and multiple sps streams (upper streams) may share a ppa by performing
1147c478bd9Sstevel@tonic-gate  * an attachment explicitly (PPPIO_ATTACH) or implicitly (DL_ATTACH_REQ).
1157c478bd9Sstevel@tonic-gate  */
1167c478bd9Sstevel@tonic-gate static sppa_t *ppa_list = NULL;
1177c478bd9Sstevel@tonic-gate 
1187c478bd9Sstevel@tonic-gate static const char *kstats_names[] = { SPPP_KSTATS_NAMES };
1197c478bd9Sstevel@tonic-gate static const char *kstats64_names[] = { SPPP_KSTATS64_NAMES };
1207c478bd9Sstevel@tonic-gate 
1217c478bd9Sstevel@tonic-gate /*
1227c478bd9Sstevel@tonic-gate  * map proto (which is an IANA defined ppp network protocol) to
1237c478bd9Sstevel@tonic-gate  * a bit position indicated by NP_* in ppa_npflag
1247c478bd9Sstevel@tonic-gate  */
1257c478bd9Sstevel@tonic-gate static uint32_t
1267c478bd9Sstevel@tonic-gate sppp_ppp2np(uint16_t proto)
1277c478bd9Sstevel@tonic-gate {
1287c478bd9Sstevel@tonic-gate 	if (proto > 0x7fff)
1297c478bd9Sstevel@tonic-gate 		return (0);
1307c478bd9Sstevel@tonic-gate 	switch (proto) {
1317c478bd9Sstevel@tonic-gate 	case PPP_IP:
1327c478bd9Sstevel@tonic-gate 		return (NP_IP);
1337c478bd9Sstevel@tonic-gate 	case PPP_IPV6:
1347c478bd9Sstevel@tonic-gate 		return (NP_IPV6);
1357c478bd9Sstevel@tonic-gate 	default:
1367c478bd9Sstevel@tonic-gate 		printf("sppp: unknown protocol 0x%x\n", proto);
1377c478bd9Sstevel@tonic-gate 		return (0);
1387c478bd9Sstevel@tonic-gate 	}
1397c478bd9Sstevel@tonic-gate }
1407c478bd9Sstevel@tonic-gate 
1417c478bd9Sstevel@tonic-gate /*
1427c478bd9Sstevel@tonic-gate  * sppp_open()
1437c478bd9Sstevel@tonic-gate  *
1447c478bd9Sstevel@tonic-gate  * MT-Perimeters:
1457c478bd9Sstevel@tonic-gate  *    exclusive inner, exclusive outer.
1467c478bd9Sstevel@tonic-gate  *
1477c478bd9Sstevel@tonic-gate  * Description:
1487c478bd9Sstevel@tonic-gate  *    Common open procedure for module.
1497c478bd9Sstevel@tonic-gate  */
1507c478bd9Sstevel@tonic-gate /* ARGSUSED */
1517c478bd9Sstevel@tonic-gate int
1527c478bd9Sstevel@tonic-gate sppp_open(queue_t *q, dev_t *devp, int oflag, int sflag, cred_t *credp)
1537c478bd9Sstevel@tonic-gate {
1547c478bd9Sstevel@tonic-gate 	spppstr_t	*sps;
1557c478bd9Sstevel@tonic-gate 	spppstr_t	**nextmn;
1567c478bd9Sstevel@tonic-gate 	minor_t		mn;
1577c478bd9Sstevel@tonic-gate 
1587c478bd9Sstevel@tonic-gate 	ASSERT(q != NULL && devp != NULL);
1597c478bd9Sstevel@tonic-gate 	ASSERT(sflag != MODOPEN);
1607c478bd9Sstevel@tonic-gate 
1617c478bd9Sstevel@tonic-gate 	if (q->q_ptr != NULL) {
1627c478bd9Sstevel@tonic-gate 		return (0);		/* already open */
1637c478bd9Sstevel@tonic-gate 	}
1647c478bd9Sstevel@tonic-gate 	if (sflag != CLONEOPEN) {
1657c478bd9Sstevel@tonic-gate 		return (OPENFAIL);
1667c478bd9Sstevel@tonic-gate 	}
1677c478bd9Sstevel@tonic-gate 	/*
1687c478bd9Sstevel@tonic-gate 	 * The sps list is sorted using the minor number as the key. The
1697c478bd9Sstevel@tonic-gate 	 * following code walks the list to find the lowest valued minor
1707c478bd9Sstevel@tonic-gate 	 * number available to be used.
1717c478bd9Sstevel@tonic-gate 	 */
1727c478bd9Sstevel@tonic-gate 	mn = 0;
1737c478bd9Sstevel@tonic-gate 	for (nextmn = &sps_list; (sps = *nextmn) != NULL;
1747c478bd9Sstevel@tonic-gate 	    nextmn = &sps->sps_nextmn) {
1757c478bd9Sstevel@tonic-gate 		if (sps->sps_mn_id != mn) {
1767c478bd9Sstevel@tonic-gate 			break;
1777c478bd9Sstevel@tonic-gate 		}
1787c478bd9Sstevel@tonic-gate 		++mn;
1797c478bd9Sstevel@tonic-gate 	}
1807c478bd9Sstevel@tonic-gate 	sps = (spppstr_t *)kmem_zalloc(sizeof (spppstr_t), KM_SLEEP);
1817c478bd9Sstevel@tonic-gate 	ASSERT(sps != NULL);		/* KM_SLEEP must never return NULL */
1827c478bd9Sstevel@tonic-gate 	sps->sps_nextmn = *nextmn;	/* insert stream in global list */
1837c478bd9Sstevel@tonic-gate 	*nextmn = sps;
1847c478bd9Sstevel@tonic-gate 	sps->sps_mn_id = mn;		/* save minor id for this stream */
1857c478bd9Sstevel@tonic-gate 	sps->sps_rq = q;		/* save read queue pointer */
1867c478bd9Sstevel@tonic-gate 	sps->sps_sap = -1;		/* no sap bound to stream */
1877c478bd9Sstevel@tonic-gate 	sps->sps_dlstate = DL_UNATTACHED; /* dlpi state is unattached */
1887c478bd9Sstevel@tonic-gate 	sps->sps_npmode = NPMODE_DROP;	/* drop all packets initially */
1897c478bd9Sstevel@tonic-gate 	q->q_ptr = WR(q)->q_ptr = (caddr_t)sps;
1907c478bd9Sstevel@tonic-gate 	/*
1917c478bd9Sstevel@tonic-gate 	 * We explicitly disable the automatic queue scheduling for the
1927c478bd9Sstevel@tonic-gate 	 * write-side to obtain complete control over queuing during transmit.
1937c478bd9Sstevel@tonic-gate 	 * Packets will be queued at the upper write queue and the service
1947c478bd9Sstevel@tonic-gate 	 * routine will not be called until it gets scheduled by having the
1957c478bd9Sstevel@tonic-gate 	 * lower write service routine call the qenable(WR(uq)) for all streams
1967c478bd9Sstevel@tonic-gate 	 * attached to the same ppa instance.
1977c478bd9Sstevel@tonic-gate 	 */
1987c478bd9Sstevel@tonic-gate 	noenable(WR(q));
1997c478bd9Sstevel@tonic-gate 	*devp = makedevice(getmajor(*devp), mn);
2007c478bd9Sstevel@tonic-gate 	qprocson(q);
2017c478bd9Sstevel@tonic-gate 	return (0);
2027c478bd9Sstevel@tonic-gate }
2037c478bd9Sstevel@tonic-gate 
2047c478bd9Sstevel@tonic-gate /*
2057c478bd9Sstevel@tonic-gate  * Free storage used by a PPA.  This is not called until the last PPA
2067c478bd9Sstevel@tonic-gate  * user closes his connection or reattaches to a different PPA.
2077c478bd9Sstevel@tonic-gate  */
2087c478bd9Sstevel@tonic-gate static void
2097c478bd9Sstevel@tonic-gate sppp_free_ppa(sppa_t *ppa)
2107c478bd9Sstevel@tonic-gate {
2117c478bd9Sstevel@tonic-gate 	sppa_t **nextppa;
2127c478bd9Sstevel@tonic-gate 
2137c478bd9Sstevel@tonic-gate 	ASSERT(ppa->ppa_refcnt == 1);
2147c478bd9Sstevel@tonic-gate 	if (ppa->ppa_kstats != NULL) {
2157c478bd9Sstevel@tonic-gate 		kstat_delete(ppa->ppa_kstats);
2167c478bd9Sstevel@tonic-gate 		ppa->ppa_kstats = NULL;
2177c478bd9Sstevel@tonic-gate 	}
2187c478bd9Sstevel@tonic-gate 	mutex_destroy(&ppa->ppa_sta_lock);
2197c478bd9Sstevel@tonic-gate 	mutex_destroy(&ppa->ppa_npmutex);
2207c478bd9Sstevel@tonic-gate 	rw_destroy(&ppa->ppa_sib_lock);
2217c478bd9Sstevel@tonic-gate 	nextppa = &ppa_list;
2227c478bd9Sstevel@tonic-gate 	while (*nextppa != NULL) {
2237c478bd9Sstevel@tonic-gate 		if (*nextppa == ppa) {
2247c478bd9Sstevel@tonic-gate 			*nextppa = ppa->ppa_nextppa;
2257c478bd9Sstevel@tonic-gate 			break;
2267c478bd9Sstevel@tonic-gate 		}
2277c478bd9Sstevel@tonic-gate 		nextppa = &(*nextppa)->ppa_nextppa;
2287c478bd9Sstevel@tonic-gate 	}
2297c478bd9Sstevel@tonic-gate 	kmem_free(ppa, sizeof (*ppa));
2307c478bd9Sstevel@tonic-gate }
2317c478bd9Sstevel@tonic-gate 
2327c478bd9Sstevel@tonic-gate /*
2337c478bd9Sstevel@tonic-gate  * Create a new PPA.  Caller must be exclusive on outer perimeter.
2347c478bd9Sstevel@tonic-gate  */
2357c478bd9Sstevel@tonic-gate sppa_t *
2367c478bd9Sstevel@tonic-gate sppp_create_ppa(uint32_t ppa_id)
2377c478bd9Sstevel@tonic-gate {
2387c478bd9Sstevel@tonic-gate 	sppa_t *ppa;
2397c478bd9Sstevel@tonic-gate 	sppa_t *curppa;
2407c478bd9Sstevel@tonic-gate 	sppa_t **availppa;
2417c478bd9Sstevel@tonic-gate 	char unit[32];		/* Unit name */
2427c478bd9Sstevel@tonic-gate 	const char **cpp;
2437c478bd9Sstevel@tonic-gate 	kstat_t *ksp;
2447c478bd9Sstevel@tonic-gate 	kstat_named_t *knt;
2457c478bd9Sstevel@tonic-gate 
2467c478bd9Sstevel@tonic-gate 	/*
2477c478bd9Sstevel@tonic-gate 	 * NOTE: unit *must* be named for the driver
2487c478bd9Sstevel@tonic-gate 	 * name plus the ppa number so that netstat
2497c478bd9Sstevel@tonic-gate 	 * can find the statistics.
2507c478bd9Sstevel@tonic-gate 	 */
2517c478bd9Sstevel@tonic-gate 	(void) sprintf(unit, "%s%d", PPP_DRV_NAME, ppa_id);
2527c478bd9Sstevel@tonic-gate 	/*
2537c478bd9Sstevel@tonic-gate 	 * Make sure we can allocate a buffer to
2547c478bd9Sstevel@tonic-gate 	 * contain the ppa to be sent upstream, as
2557c478bd9Sstevel@tonic-gate 	 * well as the actual ppa structure and its
2567c478bd9Sstevel@tonic-gate 	 * associated kstat structure.
2577c478bd9Sstevel@tonic-gate 	 */
2587c478bd9Sstevel@tonic-gate 	ppa = (sppa_t *)kmem_zalloc(sizeof (sppa_t),
2597c478bd9Sstevel@tonic-gate 	    KM_NOSLEEP);
2607c478bd9Sstevel@tonic-gate 	ksp = kstat_create(PPP_DRV_NAME, ppa_id, unit, "net", KSTAT_TYPE_NAMED,
2617c478bd9Sstevel@tonic-gate 	    sizeof (sppp_kstats_t) / sizeof (kstat_named_t), 0);
2627c478bd9Sstevel@tonic-gate 
2637c478bd9Sstevel@tonic-gate 	if (ppa == NULL || ksp == NULL) {
2647c478bd9Sstevel@tonic-gate 		if (ppa != NULL) {
2657c478bd9Sstevel@tonic-gate 			kmem_free(ppa, sizeof (sppa_t));
2667c478bd9Sstevel@tonic-gate 		}
2677c478bd9Sstevel@tonic-gate 		if (ksp != NULL) {
2687c478bd9Sstevel@tonic-gate 			kstat_delete(ksp);
2697c478bd9Sstevel@tonic-gate 		}
2707c478bd9Sstevel@tonic-gate 		return (NULL);
2717c478bd9Sstevel@tonic-gate 	}
2727c478bd9Sstevel@tonic-gate 	ppa->ppa_kstats = ksp;		/* chain kstat structure */
2737c478bd9Sstevel@tonic-gate 	ppa->ppa_ppa_id = ppa_id;	/* record ppa id */
2747c478bd9Sstevel@tonic-gate 	ppa->ppa_mtu = PPP_MAXMTU;	/* 65535-(PPP_HDRLEN+PPP_FCSLEN) */
2757c478bd9Sstevel@tonic-gate 	ppa->ppa_mru = PPP_MAXMRU;	/* 65000 */
2767c478bd9Sstevel@tonic-gate 
2777c478bd9Sstevel@tonic-gate 	mutex_init(&ppa->ppa_sta_lock, NULL, MUTEX_DRIVER, NULL);
2787c478bd9Sstevel@tonic-gate 	mutex_init(&ppa->ppa_npmutex, NULL, MUTEX_DRIVER, NULL);
2797c478bd9Sstevel@tonic-gate 	rw_init(&ppa->ppa_sib_lock, NULL, RW_DRIVER, NULL);
2807c478bd9Sstevel@tonic-gate 
2817c478bd9Sstevel@tonic-gate 	/*
2827c478bd9Sstevel@tonic-gate 	 * Prepare and install kstat counters.  Note that for netstat
2837c478bd9Sstevel@tonic-gate 	 * -i to work, there needs to be "ipackets", "opackets",
2847c478bd9Sstevel@tonic-gate 	 * "ierrors", and "oerrors" kstat named variables.
2857c478bd9Sstevel@tonic-gate 	 */
2867c478bd9Sstevel@tonic-gate 	knt = (kstat_named_t *)ksp->ks_data;
2877c478bd9Sstevel@tonic-gate 	for (cpp = kstats_names; cpp < kstats_names + Dim(kstats_names);
2887c478bd9Sstevel@tonic-gate 	    cpp++) {
289*d624471bSelowe 		kstat_named_init(knt, *cpp, KSTAT_DATA_UINT32);
2907c478bd9Sstevel@tonic-gate 		knt++;
2917c478bd9Sstevel@tonic-gate 	}
2927c478bd9Sstevel@tonic-gate 	for (cpp = kstats64_names; cpp < kstats64_names + Dim(kstats64_names);
2937c478bd9Sstevel@tonic-gate 	    cpp++) {
294*d624471bSelowe 		kstat_named_init(knt, *cpp, KSTAT_DATA_UINT64);
2957c478bd9Sstevel@tonic-gate 		knt++;
2967c478bd9Sstevel@tonic-gate 	}
2977c478bd9Sstevel@tonic-gate 	ksp->ks_update = sppp_kstat_update;
2987c478bd9Sstevel@tonic-gate 	ksp->ks_private = (void *)ppa;
2997c478bd9Sstevel@tonic-gate 	kstat_install(ksp);
3007c478bd9Sstevel@tonic-gate 
3017c478bd9Sstevel@tonic-gate 	/* link to the next ppa and insert into global list */
3027c478bd9Sstevel@tonic-gate 	availppa = &ppa_list;
3037c478bd9Sstevel@tonic-gate 	while ((curppa = *availppa) != NULL) {
3047c478bd9Sstevel@tonic-gate 		if (ppa_id < curppa->ppa_ppa_id)
3057c478bd9Sstevel@tonic-gate 			break;
3067c478bd9Sstevel@tonic-gate 		availppa = &curppa->ppa_nextppa;
3077c478bd9Sstevel@tonic-gate 	}
3087c478bd9Sstevel@tonic-gate 	ppa->ppa_nextppa = *availppa;
3097c478bd9Sstevel@tonic-gate 	*availppa = ppa;
3107c478bd9Sstevel@tonic-gate 	return (ppa);
3117c478bd9Sstevel@tonic-gate }
3127c478bd9Sstevel@tonic-gate 
3137c478bd9Sstevel@tonic-gate /*
3147c478bd9Sstevel@tonic-gate  * sppp_close()
3157c478bd9Sstevel@tonic-gate  *
3167c478bd9Sstevel@tonic-gate  * MT-Perimeters:
3177c478bd9Sstevel@tonic-gate  *    exclusive inner, exclusive outer.
3187c478bd9Sstevel@tonic-gate  *
3197c478bd9Sstevel@tonic-gate  * Description:
3207c478bd9Sstevel@tonic-gate  *    Common close procedure for module.
3217c478bd9Sstevel@tonic-gate  */
3227c478bd9Sstevel@tonic-gate int
3237c478bd9Sstevel@tonic-gate sppp_close(queue_t *q)
3247c478bd9Sstevel@tonic-gate {
3257c478bd9Sstevel@tonic-gate 	spppstr_t	*sps;
3267c478bd9Sstevel@tonic-gate 	spppstr_t	**nextmn;
3277c478bd9Sstevel@tonic-gate 	spppstr_t	*sib;
3287c478bd9Sstevel@tonic-gate 	sppa_t		*ppa;
3297c478bd9Sstevel@tonic-gate 	mblk_t		*mp;
3307c478bd9Sstevel@tonic-gate 
3317c478bd9Sstevel@tonic-gate 	ASSERT(q != NULL && q->q_ptr != NULL);
3327c478bd9Sstevel@tonic-gate 	sps = (spppstr_t *)q->q_ptr;
3337c478bd9Sstevel@tonic-gate 	qprocsoff(q);
3347c478bd9Sstevel@tonic-gate 
3357c478bd9Sstevel@tonic-gate 	ppa = sps->sps_ppa;
3367c478bd9Sstevel@tonic-gate 	if (ppa == NULL) {
3377c478bd9Sstevel@tonic-gate 		ASSERT(!IS_SPS_CONTROL(sps));
3387c478bd9Sstevel@tonic-gate 		goto close_unattached;
3397c478bd9Sstevel@tonic-gate 	}
3407c478bd9Sstevel@tonic-gate 	if (IS_SPS_CONTROL(sps)) {
3417c478bd9Sstevel@tonic-gate 		uint32_t	cnt = 0;
3427c478bd9Sstevel@tonic-gate 
3437c478bd9Sstevel@tonic-gate 		ASSERT(ppa != NULL);
3447c478bd9Sstevel@tonic-gate 		ASSERT(ppa->ppa_ctl == sps);
3457c478bd9Sstevel@tonic-gate 		ppa->ppa_ctl = NULL;
3467c478bd9Sstevel@tonic-gate 		/*
3477c478bd9Sstevel@tonic-gate 		 * STREAMS framework always issues I_UNLINK prior to close,
3487c478bd9Sstevel@tonic-gate 		 * since we only allow I_LINK under the control stream.
3497c478bd9Sstevel@tonic-gate 		 * A given ppa structure has at most one lower stream pointed
3507c478bd9Sstevel@tonic-gate 		 * by the ppa_lower_wq field, because we only allow a single
3517c478bd9Sstevel@tonic-gate 		 * linkage (I_LINK) to be done on the control stream.
3527c478bd9Sstevel@tonic-gate 		 */
3537c478bd9Sstevel@tonic-gate 		ASSERT(ppa->ppa_lower_wq == NULL);
3547c478bd9Sstevel@tonic-gate 		/*
3557c478bd9Sstevel@tonic-gate 		 * Walk through all of sibling streams attached to this ppa,
3567c478bd9Sstevel@tonic-gate 		 * and remove all references to this ppa. We have exclusive
3577c478bd9Sstevel@tonic-gate 		 * access for the entire driver here, so there's no need
3587c478bd9Sstevel@tonic-gate 		 * to hold ppa_sib_lock.
3597c478bd9Sstevel@tonic-gate 		 */
3607c478bd9Sstevel@tonic-gate 		cnt++;
3617c478bd9Sstevel@tonic-gate 		sib = ppa->ppa_streams;
3627c478bd9Sstevel@tonic-gate 		while (sib != NULL) {
3637c478bd9Sstevel@tonic-gate 			ASSERT(ppa == sib->sps_ppa);
3647c478bd9Sstevel@tonic-gate 			sib->sps_npmode = NPMODE_DROP;
3657c478bd9Sstevel@tonic-gate 			sib->sps_flags &= ~(SPS_PIOATTACH | SPS_CACHED);
3667c478bd9Sstevel@tonic-gate 			/*
3677c478bd9Sstevel@tonic-gate 			 * There should be a preallocated hangup
3687c478bd9Sstevel@tonic-gate 			 * message here.  Fetch it and send it up to
3697c478bd9Sstevel@tonic-gate 			 * the stream head.  This will cause IP to
3707c478bd9Sstevel@tonic-gate 			 * mark the interface as "down."
3717c478bd9Sstevel@tonic-gate 			 */
3727c478bd9Sstevel@tonic-gate 			if ((mp = sib->sps_hangup) != NULL) {
3737c478bd9Sstevel@tonic-gate 				sib->sps_hangup = NULL;
3747c478bd9Sstevel@tonic-gate 				/*
3757c478bd9Sstevel@tonic-gate 				 * M_HANGUP works with IP, but snoop
3767c478bd9Sstevel@tonic-gate 				 * is lame and requires M_ERROR.  Send
3777c478bd9Sstevel@tonic-gate 				 * up a clean error code instead.
3787c478bd9Sstevel@tonic-gate 				 *
3797c478bd9Sstevel@tonic-gate 				 * XXX if snoop is fixed, fix this, too.
3807c478bd9Sstevel@tonic-gate 				 */
3817c478bd9Sstevel@tonic-gate 				MTYPE(mp) = M_ERROR;
3827c478bd9Sstevel@tonic-gate 				*mp->b_wptr++ = ENXIO;
3837c478bd9Sstevel@tonic-gate 				putnext(sib->sps_rq, mp);
3847c478bd9Sstevel@tonic-gate 			}
3857c478bd9Sstevel@tonic-gate 			qenable(WR(sib->sps_rq));
3867c478bd9Sstevel@tonic-gate 			cnt++;
3877c478bd9Sstevel@tonic-gate 			sib = sib->sps_nextsib;
3887c478bd9Sstevel@tonic-gate 		}
3897c478bd9Sstevel@tonic-gate 		ASSERT(ppa->ppa_refcnt == cnt);
3907c478bd9Sstevel@tonic-gate 	} else {
3917c478bd9Sstevel@tonic-gate 		ASSERT(ppa->ppa_streams != NULL);
3927c478bd9Sstevel@tonic-gate 		ASSERT(ppa->ppa_ctl != sps);
3937c478bd9Sstevel@tonic-gate 		mp = NULL;
3947c478bd9Sstevel@tonic-gate 		if (sps->sps_sap == PPP_IP) {
3957c478bd9Sstevel@tonic-gate 			ppa->ppa_ip_cache = NULL;
3967c478bd9Sstevel@tonic-gate 			mp = create_lsmsg(PPP_LINKSTAT_IPV4_UNBOUND);
3977c478bd9Sstevel@tonic-gate 		} else if (sps->sps_sap == PPP_IPV6) {
3987c478bd9Sstevel@tonic-gate 			ppa->ppa_ip6_cache = NULL;
3997c478bd9Sstevel@tonic-gate 			mp = create_lsmsg(PPP_LINKSTAT_IPV6_UNBOUND);
4007c478bd9Sstevel@tonic-gate 		}
4017c478bd9Sstevel@tonic-gate 		/* Tell the daemon the bad news. */
4027c478bd9Sstevel@tonic-gate 		if (mp != NULL && ppa->ppa_ctl != NULL &&
4037c478bd9Sstevel@tonic-gate 		    (sps->sps_npmode == NPMODE_PASS ||
4047c478bd9Sstevel@tonic-gate 		    sps->sps_npmode == NPMODE_QUEUE)) {
4057c478bd9Sstevel@tonic-gate 			putnext(ppa->ppa_ctl->sps_rq, mp);
4067c478bd9Sstevel@tonic-gate 		} else {
4077c478bd9Sstevel@tonic-gate 			freemsg(mp);
4087c478bd9Sstevel@tonic-gate 		}
4097c478bd9Sstevel@tonic-gate 		/*
4107c478bd9Sstevel@tonic-gate 		 * Walk through all of sibling streams attached to the
4117c478bd9Sstevel@tonic-gate 		 * same ppa, and remove this stream from the sibling
4127c478bd9Sstevel@tonic-gate 		 * streams list. We have exclusive access for the
4137c478bd9Sstevel@tonic-gate 		 * entire driver here, so there's no need to hold
4147c478bd9Sstevel@tonic-gate 		 * ppa_sib_lock.
4157c478bd9Sstevel@tonic-gate 		 */
4167c478bd9Sstevel@tonic-gate 		sib = ppa->ppa_streams;
4177c478bd9Sstevel@tonic-gate 		if (sib == sps) {
4187c478bd9Sstevel@tonic-gate 			ppa->ppa_streams = sps->sps_nextsib;
4197c478bd9Sstevel@tonic-gate 		} else {
4207c478bd9Sstevel@tonic-gate 			while (sib->sps_nextsib != NULL) {
4217c478bd9Sstevel@tonic-gate 				if (sib->sps_nextsib == sps) {
4227c478bd9Sstevel@tonic-gate 					sib->sps_nextsib = sps->sps_nextsib;
4237c478bd9Sstevel@tonic-gate 					break;
4247c478bd9Sstevel@tonic-gate 				}
4257c478bd9Sstevel@tonic-gate 				sib = sib->sps_nextsib;
4267c478bd9Sstevel@tonic-gate 			}
4277c478bd9Sstevel@tonic-gate 		}
4287c478bd9Sstevel@tonic-gate 		sps->sps_nextsib = NULL;
4297c478bd9Sstevel@tonic-gate 		freemsg(sps->sps_hangup);
4307c478bd9Sstevel@tonic-gate 		sps->sps_hangup = NULL;
4317c478bd9Sstevel@tonic-gate 		/*
4327c478bd9Sstevel@tonic-gate 		 * Check if this is a promiscous stream. If the SPS_PROMISC bit
4337c478bd9Sstevel@tonic-gate 		 * is still set, it means that the stream is closed without
4347c478bd9Sstevel@tonic-gate 		 * ever having issued DL_DETACH_REQ or DL_PROMISCOFF_REQ.
4357c478bd9Sstevel@tonic-gate 		 * In this case, we simply decrement the promiscous counter,
4367c478bd9Sstevel@tonic-gate 		 * and it's safe to do it without holding ppa_sib_lock since
4377c478bd9Sstevel@tonic-gate 		 * we're exclusive (inner and outer) at this point.
4387c478bd9Sstevel@tonic-gate 		 */
4397c478bd9Sstevel@tonic-gate 		if (IS_SPS_PROMISC(sps)) {
4407c478bd9Sstevel@tonic-gate 			ASSERT(ppa->ppa_promicnt > 0);
4417c478bd9Sstevel@tonic-gate 			ppa->ppa_promicnt--;
4427c478bd9Sstevel@tonic-gate 		}
4437c478bd9Sstevel@tonic-gate 	}
4447c478bd9Sstevel@tonic-gate 	/* If we're the only one left, then delete now. */
4457c478bd9Sstevel@tonic-gate 	if (ppa->ppa_refcnt <= 1)
4467c478bd9Sstevel@tonic-gate 		sppp_free_ppa(ppa);
4477c478bd9Sstevel@tonic-gate 	else
4487c478bd9Sstevel@tonic-gate 		ppa->ppa_refcnt--;
4497c478bd9Sstevel@tonic-gate close_unattached:
4507c478bd9Sstevel@tonic-gate 	q->q_ptr = WR(q)->q_ptr = NULL;
4517c478bd9Sstevel@tonic-gate 	for (nextmn = &sps_list; *nextmn != NULL;
4527c478bd9Sstevel@tonic-gate 	    nextmn = &(*nextmn)->sps_nextmn) {
4537c478bd9Sstevel@tonic-gate 		if (*nextmn == sps) {
4547c478bd9Sstevel@tonic-gate 			*nextmn = sps->sps_nextmn;
4557c478bd9Sstevel@tonic-gate 			break;
4567c478bd9Sstevel@tonic-gate 		}
4577c478bd9Sstevel@tonic-gate 	}
4587c478bd9Sstevel@tonic-gate 	kmem_free(sps, sizeof (spppstr_t));
4597c478bd9Sstevel@tonic-gate 	return (0);
4607c478bd9Sstevel@tonic-gate }
4617c478bd9Sstevel@tonic-gate 
4627c478bd9Sstevel@tonic-gate static void
4637c478bd9Sstevel@tonic-gate sppp_ioctl(struct queue *q, mblk_t *mp)
4647c478bd9Sstevel@tonic-gate {
4657c478bd9Sstevel@tonic-gate 	spppstr_t	*sps;
4667c478bd9Sstevel@tonic-gate 	spppstr_t	*nextsib;
4677c478bd9Sstevel@tonic-gate 	sppa_t		*ppa;
4687c478bd9Sstevel@tonic-gate 	struct iocblk	*iop;
4697c478bd9Sstevel@tonic-gate 	mblk_t		*nmp;
4707c478bd9Sstevel@tonic-gate 	enum NPmode	npmode;
4717c478bd9Sstevel@tonic-gate 	struct ppp_idle	*pip;
4727c478bd9Sstevel@tonic-gate 	struct ppp_stats64 *psp;
4737c478bd9Sstevel@tonic-gate 	struct ppp_comp_stats *pcsp;
4747c478bd9Sstevel@tonic-gate 	hrtime_t	hrtime;
4757c478bd9Sstevel@tonic-gate 	int		sap;
4767c478bd9Sstevel@tonic-gate 	int		count = 0;
4777c478bd9Sstevel@tonic-gate 	int		error = EINVAL;
4787c478bd9Sstevel@tonic-gate 
4797c478bd9Sstevel@tonic-gate 	sps = (spppstr_t *)q->q_ptr;
4807c478bd9Sstevel@tonic-gate 	ppa = sps->sps_ppa;
4817c478bd9Sstevel@tonic-gate 
4827c478bd9Sstevel@tonic-gate 	iop = (struct iocblk *)mp->b_rptr;
4837c478bd9Sstevel@tonic-gate 	switch (iop->ioc_cmd) {
4847c478bd9Sstevel@tonic-gate 	case PPPIO_NPMODE:
4857c478bd9Sstevel@tonic-gate 		if (!IS_SPS_CONTROL(sps)) {
4867c478bd9Sstevel@tonic-gate 			break;		/* return EINVAL */
4877c478bd9Sstevel@tonic-gate 		} else if (iop->ioc_count != 2 * sizeof (uint32_t) ||
4887c478bd9Sstevel@tonic-gate 		    (mp->b_cont == NULL)) {
4897c478bd9Sstevel@tonic-gate 			error = EPROTO;
4907c478bd9Sstevel@tonic-gate 			break;
4917c478bd9Sstevel@tonic-gate 		}
4927c478bd9Sstevel@tonic-gate 		ASSERT(ppa != NULL);
4937c478bd9Sstevel@tonic-gate 		ASSERT(mp->b_cont->b_rptr != NULL);
4947c478bd9Sstevel@tonic-gate 		ASSERT(sps->sps_npmode == NPMODE_PASS);
4957c478bd9Sstevel@tonic-gate 		sap = ((uint32_t *)mp->b_cont->b_rptr)[0];
4967c478bd9Sstevel@tonic-gate 		npmode = (enum NPmode)((uint32_t *)mp->b_cont->b_rptr)[1];
4977c478bd9Sstevel@tonic-gate 		/*
4987c478bd9Sstevel@tonic-gate 		 * Walk the sibling streams which belong to the same
4997c478bd9Sstevel@tonic-gate 		 * ppa, and try to find a stream with matching sap
5007c478bd9Sstevel@tonic-gate 		 * number.
5017c478bd9Sstevel@tonic-gate 		 */
5027c478bd9Sstevel@tonic-gate 		rw_enter(&ppa->ppa_sib_lock, RW_WRITER);
5037c478bd9Sstevel@tonic-gate 		for (nextsib = ppa->ppa_streams; nextsib != NULL;
5047c478bd9Sstevel@tonic-gate 		    nextsib = nextsib->sps_nextsib) {
5057c478bd9Sstevel@tonic-gate 			if (nextsib->sps_sap == sap) {
5067c478bd9Sstevel@tonic-gate 				break;	/* found it */
5077c478bd9Sstevel@tonic-gate 			}
5087c478bd9Sstevel@tonic-gate 		}
5097c478bd9Sstevel@tonic-gate 		if (nextsib == NULL) {
5107c478bd9Sstevel@tonic-gate 			rw_exit(&ppa->ppa_sib_lock);
5117c478bd9Sstevel@tonic-gate 			break;		/* return EINVAL */
5127c478bd9Sstevel@tonic-gate 		} else {
5137c478bd9Sstevel@tonic-gate 			nextsib->sps_npmode = npmode;
5147c478bd9Sstevel@tonic-gate 			if ((nextsib->sps_npmode != NPMODE_QUEUE) &&
5157c478bd9Sstevel@tonic-gate 			    (WR(nextsib->sps_rq)->q_first != NULL)) {
5167c478bd9Sstevel@tonic-gate 				qenable(WR(nextsib->sps_rq));
5177c478bd9Sstevel@tonic-gate 			}
5187c478bd9Sstevel@tonic-gate 		}
5197c478bd9Sstevel@tonic-gate 		rw_exit(&ppa->ppa_sib_lock);
5207c478bd9Sstevel@tonic-gate 		error = 0;	/* return success */
5217c478bd9Sstevel@tonic-gate 		break;
5227c478bd9Sstevel@tonic-gate 	case PPPIO_GIDLE:
5237c478bd9Sstevel@tonic-gate 		if (ppa == NULL) {
5247c478bd9Sstevel@tonic-gate 			ASSERT(!IS_SPS_CONTROL(sps));
5257c478bd9Sstevel@tonic-gate 			error = ENOLINK;
5267c478bd9Sstevel@tonic-gate 			break;
5277c478bd9Sstevel@tonic-gate 		} else if (!IS_PPA_TIMESTAMP(ppa)) {
5287c478bd9Sstevel@tonic-gate 			break;		/* return EINVAL */
5297c478bd9Sstevel@tonic-gate 		}
5307c478bd9Sstevel@tonic-gate 		if ((nmp = allocb(sizeof (struct ppp_idle),
5317c478bd9Sstevel@tonic-gate 		    BPRI_MED)) == NULL) {
5327c478bd9Sstevel@tonic-gate 			mutex_enter(&ppa->ppa_sta_lock);
5337c478bd9Sstevel@tonic-gate 			ppa->ppa_allocbfail++;
5347c478bd9Sstevel@tonic-gate 			mutex_exit(&ppa->ppa_sta_lock);
5357c478bd9Sstevel@tonic-gate 			error = ENOSR;
5367c478bd9Sstevel@tonic-gate 			break;
5377c478bd9Sstevel@tonic-gate 		}
5387c478bd9Sstevel@tonic-gate 		if (mp->b_cont != NULL) {
5397c478bd9Sstevel@tonic-gate 			freemsg(mp->b_cont);
5407c478bd9Sstevel@tonic-gate 		}
5417c478bd9Sstevel@tonic-gate 		mp->b_cont = nmp;
5427c478bd9Sstevel@tonic-gate 		pip = (struct ppp_idle *)nmp->b_wptr;
5437c478bd9Sstevel@tonic-gate 		nmp->b_wptr += sizeof (struct ppp_idle);
5447c478bd9Sstevel@tonic-gate 		/*
5457c478bd9Sstevel@tonic-gate 		 * Get current timestamp and subtract the tx and rx
5467c478bd9Sstevel@tonic-gate 		 * timestamps to get the actual idle time to be
5477c478bd9Sstevel@tonic-gate 		 * returned.
5487c478bd9Sstevel@tonic-gate 		 */
5497c478bd9Sstevel@tonic-gate 		hrtime = gethrtime();
5507c478bd9Sstevel@tonic-gate 		pip->xmit_idle = (hrtime - ppa->ppa_lasttx) / 1000000000ul;
5517c478bd9Sstevel@tonic-gate 		pip->recv_idle = (hrtime - ppa->ppa_lastrx) / 1000000000ul;
5527c478bd9Sstevel@tonic-gate 		count = msgsize(nmp);
5537c478bd9Sstevel@tonic-gate 		error = 0;
5547c478bd9Sstevel@tonic-gate 		break;		/* return success (error is 0) */
5557c478bd9Sstevel@tonic-gate 	case PPPIO_GTYPE:
5567c478bd9Sstevel@tonic-gate 		nmp = allocb(sizeof (uint32_t), BPRI_MED);
5577c478bd9Sstevel@tonic-gate 		if (nmp == NULL) {
5587c478bd9Sstevel@tonic-gate 			error = ENOSR;
5597c478bd9Sstevel@tonic-gate 			break;
5607c478bd9Sstevel@tonic-gate 		}
5617c478bd9Sstevel@tonic-gate 		if (mp->b_cont != NULL) {
5627c478bd9Sstevel@tonic-gate 			freemsg(mp->b_cont);
5637c478bd9Sstevel@tonic-gate 		}
5647c478bd9Sstevel@tonic-gate 		mp->b_cont = nmp;
5657c478bd9Sstevel@tonic-gate 		/*
5667c478bd9Sstevel@tonic-gate 		 * Let the requestor know that we are the PPP
5677c478bd9Sstevel@tonic-gate 		 * multiplexer (PPPTYP_MUX).
5687c478bd9Sstevel@tonic-gate 		 */
5697c478bd9Sstevel@tonic-gate 		*(uint32_t *)nmp->b_wptr = PPPTYP_MUX;
5707c478bd9Sstevel@tonic-gate 		nmp->b_wptr += sizeof (uint32_t);
5717c478bd9Sstevel@tonic-gate 		count = msgsize(nmp);
5727c478bd9Sstevel@tonic-gate 		error = 0;		/* return success */
5737c478bd9Sstevel@tonic-gate 		break;
5747c478bd9Sstevel@tonic-gate 	case PPPIO_GETSTAT64:
5757c478bd9Sstevel@tonic-gate 		if (ppa == NULL) {
5767c478bd9Sstevel@tonic-gate 			break;		/* return EINVAL */
5777c478bd9Sstevel@tonic-gate 		} else if ((ppa->ppa_lower_wq != NULL) &&
5787c478bd9Sstevel@tonic-gate 		    !IS_PPA_LASTMOD(ppa)) {
5797c478bd9Sstevel@tonic-gate 			mutex_enter(&ppa->ppa_sta_lock);
5807c478bd9Sstevel@tonic-gate 			ppa->ppa_ioctlsfwd++;
5817c478bd9Sstevel@tonic-gate 			mutex_exit(&ppa->ppa_sta_lock);
5827c478bd9Sstevel@tonic-gate 			/*
5837c478bd9Sstevel@tonic-gate 			 * Record the ioctl CMD & ID - this will be
5847c478bd9Sstevel@tonic-gate 			 * used to check the ACK or NAK responses
5857c478bd9Sstevel@tonic-gate 			 * coming from below.
5867c478bd9Sstevel@tonic-gate 			 */
5877c478bd9Sstevel@tonic-gate 			sps->sps_ioc_id = iop->ioc_id;
5887c478bd9Sstevel@tonic-gate 			putnext(ppa->ppa_lower_wq, mp);
5897c478bd9Sstevel@tonic-gate 			return;	/* don't ack or nak the request */
5907c478bd9Sstevel@tonic-gate 		}
5917c478bd9Sstevel@tonic-gate 		nmp = allocb(sizeof (*psp), BPRI_MED);
5927c478bd9Sstevel@tonic-gate 		if (nmp == NULL) {
5937c478bd9Sstevel@tonic-gate 			mutex_enter(&ppa->ppa_sta_lock);
5947c478bd9Sstevel@tonic-gate 			ppa->ppa_allocbfail++;
5957c478bd9Sstevel@tonic-gate 			mutex_exit(&ppa->ppa_sta_lock);
5967c478bd9Sstevel@tonic-gate 			error = ENOSR;
5977c478bd9Sstevel@tonic-gate 			break;
5987c478bd9Sstevel@tonic-gate 		}
5997c478bd9Sstevel@tonic-gate 		if (mp->b_cont != NULL) {
6007c478bd9Sstevel@tonic-gate 			freemsg(mp->b_cont);
6017c478bd9Sstevel@tonic-gate 		}
6027c478bd9Sstevel@tonic-gate 		mp->b_cont = nmp;
6037c478bd9Sstevel@tonic-gate 		psp = (struct ppp_stats64 *)nmp->b_wptr;
6047c478bd9Sstevel@tonic-gate 		/*
6057c478bd9Sstevel@tonic-gate 		 * Copy the contents of ppp_stats64 structure for this
6067c478bd9Sstevel@tonic-gate 		 * ppa and return them to the caller.
6077c478bd9Sstevel@tonic-gate 		 */
6087c478bd9Sstevel@tonic-gate 		mutex_enter(&ppa->ppa_sta_lock);
6097c478bd9Sstevel@tonic-gate 		bcopy(&ppa->ppa_stats, psp, sizeof (*psp));
6107c478bd9Sstevel@tonic-gate 		mutex_exit(&ppa->ppa_sta_lock);
6117c478bd9Sstevel@tonic-gate 		nmp->b_wptr += sizeof (*psp);
6127c478bd9Sstevel@tonic-gate 		count = sizeof (*psp);
6137c478bd9Sstevel@tonic-gate 		error = 0;		/* return success */
6147c478bd9Sstevel@tonic-gate 		break;
6157c478bd9Sstevel@tonic-gate 	case PPPIO_GETCSTAT:
6167c478bd9Sstevel@tonic-gate 		if (ppa == NULL) {
6177c478bd9Sstevel@tonic-gate 			break;		/* return EINVAL */
6187c478bd9Sstevel@tonic-gate 		} else if ((ppa->ppa_lower_wq != NULL) &&
6197c478bd9Sstevel@tonic-gate 		    !IS_PPA_LASTMOD(ppa)) {
6207c478bd9Sstevel@tonic-gate 			mutex_enter(&ppa->ppa_sta_lock);
6217c478bd9Sstevel@tonic-gate 			ppa->ppa_ioctlsfwd++;
6227c478bd9Sstevel@tonic-gate 			mutex_exit(&ppa->ppa_sta_lock);
6237c478bd9Sstevel@tonic-gate 			/*
6247c478bd9Sstevel@tonic-gate 			 * Record the ioctl CMD & ID - this will be
6257c478bd9Sstevel@tonic-gate 			 * used to check the ACK or NAK responses
6267c478bd9Sstevel@tonic-gate 			 * coming from below.
6277c478bd9Sstevel@tonic-gate 			 */
6287c478bd9Sstevel@tonic-gate 			sps->sps_ioc_id = iop->ioc_id;
6297c478bd9Sstevel@tonic-gate 			putnext(ppa->ppa_lower_wq, mp);
6307c478bd9Sstevel@tonic-gate 			return;	/* don't ack or nak the request */
6317c478bd9Sstevel@tonic-gate 		}
6327c478bd9Sstevel@tonic-gate 		nmp = allocb(sizeof (struct ppp_comp_stats), BPRI_MED);
6337c478bd9Sstevel@tonic-gate 		if (nmp == NULL) {
6347c478bd9Sstevel@tonic-gate 			mutex_enter(&ppa->ppa_sta_lock);
6357c478bd9Sstevel@tonic-gate 			ppa->ppa_allocbfail++;
6367c478bd9Sstevel@tonic-gate 			mutex_exit(&ppa->ppa_sta_lock);
6377c478bd9Sstevel@tonic-gate 			error = ENOSR;
6387c478bd9Sstevel@tonic-gate 			break;
6397c478bd9Sstevel@tonic-gate 		}
6407c478bd9Sstevel@tonic-gate 		if (mp->b_cont != NULL) {
6417c478bd9Sstevel@tonic-gate 			freemsg(mp->b_cont);
6427c478bd9Sstevel@tonic-gate 		}
6437c478bd9Sstevel@tonic-gate 		mp->b_cont = nmp;
6447c478bd9Sstevel@tonic-gate 		pcsp = (struct ppp_comp_stats *)nmp->b_wptr;
6457c478bd9Sstevel@tonic-gate 		nmp->b_wptr += sizeof (struct ppp_comp_stats);
6467c478bd9Sstevel@tonic-gate 		bzero((caddr_t)pcsp, sizeof (struct ppp_comp_stats));
6477c478bd9Sstevel@tonic-gate 		count = msgsize(nmp);
6487c478bd9Sstevel@tonic-gate 		error = 0;		/* return success */
6497c478bd9Sstevel@tonic-gate 		break;
6507c478bd9Sstevel@tonic-gate 	}
6517c478bd9Sstevel@tonic-gate 
6527c478bd9Sstevel@tonic-gate 	if (error == 0) {
6537c478bd9Sstevel@tonic-gate 		/* Success; tell the user. */
6547c478bd9Sstevel@tonic-gate 		miocack(q, mp, count, 0);
6557c478bd9Sstevel@tonic-gate 	} else {
6567c478bd9Sstevel@tonic-gate 		/* Failure; send error back upstream. */
6577c478bd9Sstevel@tonic-gate 		miocnak(q, mp, 0, error);
6587c478bd9Sstevel@tonic-gate 	}
6597c478bd9Sstevel@tonic-gate }
6607c478bd9Sstevel@tonic-gate 
6617c478bd9Sstevel@tonic-gate /*
6627c478bd9Sstevel@tonic-gate  * sppp_uwput()
6637c478bd9Sstevel@tonic-gate  *
6647c478bd9Sstevel@tonic-gate  * MT-Perimeters:
6657c478bd9Sstevel@tonic-gate  *    shared inner, shared outer.
6667c478bd9Sstevel@tonic-gate  *
6677c478bd9Sstevel@tonic-gate  * Description:
6687c478bd9Sstevel@tonic-gate  *    Upper write-side put procedure. Messages from above arrive here.
6697c478bd9Sstevel@tonic-gate  */
6707c478bd9Sstevel@tonic-gate int
6717c478bd9Sstevel@tonic-gate sppp_uwput(queue_t *q, mblk_t *mp)
6727c478bd9Sstevel@tonic-gate {
6737c478bd9Sstevel@tonic-gate 	queue_t		*nextq;
6747c478bd9Sstevel@tonic-gate 	spppstr_t	*sps;
6757c478bd9Sstevel@tonic-gate 	sppa_t		*ppa;
6767c478bd9Sstevel@tonic-gate 	struct iocblk	*iop;
6777c478bd9Sstevel@tonic-gate 	int		error;
6787c478bd9Sstevel@tonic-gate 
6797c478bd9Sstevel@tonic-gate 	ASSERT(q != NULL && q->q_ptr != NULL);
6807c478bd9Sstevel@tonic-gate 	ASSERT(mp != NULL && mp->b_rptr != NULL);
6817c478bd9Sstevel@tonic-gate 	sps = (spppstr_t *)q->q_ptr;
6827c478bd9Sstevel@tonic-gate 	ppa = sps->sps_ppa;
6837c478bd9Sstevel@tonic-gate 
6847c478bd9Sstevel@tonic-gate 	switch (MTYPE(mp)) {
6857c478bd9Sstevel@tonic-gate 	case M_PCPROTO:
6867c478bd9Sstevel@tonic-gate 	case M_PROTO:
6877c478bd9Sstevel@tonic-gate 		if (IS_SPS_CONTROL(sps)) {
6887c478bd9Sstevel@tonic-gate 			ASSERT(ppa != NULL);
6897c478bd9Sstevel@tonic-gate 			/*
6907c478bd9Sstevel@tonic-gate 			 * Intentionally change this to a high priority
6917c478bd9Sstevel@tonic-gate 			 * message so it doesn't get queued up. M_PROTO is
6927c478bd9Sstevel@tonic-gate 			 * specifically used for signalling between pppd and its
6937c478bd9Sstevel@tonic-gate 			 * kernel-level component(s), such as ppptun, so we
6947c478bd9Sstevel@tonic-gate 			 * make sure that it doesn't get queued up behind
6957c478bd9Sstevel@tonic-gate 			 * data messages.
6967c478bd9Sstevel@tonic-gate 			 */
6977c478bd9Sstevel@tonic-gate 			MTYPE(mp) = M_PCPROTO;
6987c478bd9Sstevel@tonic-gate 			if ((ppa->ppa_lower_wq != NULL) &&
6997c478bd9Sstevel@tonic-gate 			    canputnext(ppa->ppa_lower_wq)) {
7007c478bd9Sstevel@tonic-gate 				mutex_enter(&ppa->ppa_sta_lock);
7017c478bd9Sstevel@tonic-gate 				ppa->ppa_mctlsfwd++;
7027c478bd9Sstevel@tonic-gate 				mutex_exit(&ppa->ppa_sta_lock);
7037c478bd9Sstevel@tonic-gate 				putnext(ppa->ppa_lower_wq, mp);
7047c478bd9Sstevel@tonic-gate 			} else {
7057c478bd9Sstevel@tonic-gate 				mutex_enter(&ppa->ppa_sta_lock);
7067c478bd9Sstevel@tonic-gate 				ppa->ppa_mctlsfwderr++;
7077c478bd9Sstevel@tonic-gate 				mutex_exit(&ppa->ppa_sta_lock);
7087c478bd9Sstevel@tonic-gate 				freemsg(mp);
7097c478bd9Sstevel@tonic-gate 			}
7107c478bd9Sstevel@tonic-gate 		} else {
7117c478bd9Sstevel@tonic-gate 			return (sppp_mproto(q, mp, sps));
7127c478bd9Sstevel@tonic-gate 		}
7137c478bd9Sstevel@tonic-gate 		break;
7147c478bd9Sstevel@tonic-gate 	case M_DATA:
7157c478bd9Sstevel@tonic-gate 		if ((nextq = sppp_send(q, &mp, sps)) != NULL)
7167c478bd9Sstevel@tonic-gate 			putnext(nextq, mp);
7177c478bd9Sstevel@tonic-gate 		break;
7187c478bd9Sstevel@tonic-gate 	case M_IOCTL:
7197c478bd9Sstevel@tonic-gate 		error = EINVAL;
7207c478bd9Sstevel@tonic-gate 		iop = (struct iocblk *)mp->b_rptr;
7217c478bd9Sstevel@tonic-gate 		switch (iop->ioc_cmd) {
7227c478bd9Sstevel@tonic-gate 		case DLIOCRAW:
7237c478bd9Sstevel@tonic-gate 		case DL_IOC_HDR_INFO:
7247c478bd9Sstevel@tonic-gate 		case PPPIO_ATTACH:
7257c478bd9Sstevel@tonic-gate 		case PPPIO_DEBUG:
7267c478bd9Sstevel@tonic-gate 		case PPPIO_DETACH:
7277c478bd9Sstevel@tonic-gate 		case PPPIO_LASTMOD:
7287c478bd9Sstevel@tonic-gate 		case PPPIO_MRU:
7297c478bd9Sstevel@tonic-gate 		case PPPIO_MTU:
7307c478bd9Sstevel@tonic-gate 		case PPPIO_USETIMESTAMP:
7317c478bd9Sstevel@tonic-gate 		case PPPIO_BLOCKNP:
7327c478bd9Sstevel@tonic-gate 		case PPPIO_UNBLOCKNP:
7337c478bd9Sstevel@tonic-gate 			qwriter(q, mp, sppp_inner_ioctl, PERIM_INNER);
7347c478bd9Sstevel@tonic-gate 			return (0);
7357c478bd9Sstevel@tonic-gate 		case I_LINK:
7367c478bd9Sstevel@tonic-gate 		case I_UNLINK:
7377c478bd9Sstevel@tonic-gate 		case PPPIO_NEWPPA:
7387c478bd9Sstevel@tonic-gate 			qwriter(q, mp, sppp_outer_ioctl, PERIM_OUTER);
7397c478bd9Sstevel@tonic-gate 			return (0);
7407c478bd9Sstevel@tonic-gate 		case PPPIO_NPMODE:
7417c478bd9Sstevel@tonic-gate 		case PPPIO_GIDLE:
7427c478bd9Sstevel@tonic-gate 		case PPPIO_GTYPE:
7437c478bd9Sstevel@tonic-gate 		case PPPIO_GETSTAT64:
7447c478bd9Sstevel@tonic-gate 		case PPPIO_GETCSTAT:
7457c478bd9Sstevel@tonic-gate 			/*
7467c478bd9Sstevel@tonic-gate 			 * These require additional auto variables to
7477c478bd9Sstevel@tonic-gate 			 * handle, so (for optimization reasons)
7487c478bd9Sstevel@tonic-gate 			 * they're moved off to a separate function.
7497c478bd9Sstevel@tonic-gate 			 */
7507c478bd9Sstevel@tonic-gate 			sppp_ioctl(q, mp);
7517c478bd9Sstevel@tonic-gate 			return (0);
7527c478bd9Sstevel@tonic-gate 		case PPPIO_GETSTAT:
7537c478bd9Sstevel@tonic-gate 			break;			/* 32 bit interface gone */
7547c478bd9Sstevel@tonic-gate 		default:
7557c478bd9Sstevel@tonic-gate 			if (iop->ioc_cr == NULL ||
7567c478bd9Sstevel@tonic-gate 			    secpolicy_net_config(iop->ioc_cr, B_FALSE) != 0) {
7577c478bd9Sstevel@tonic-gate 				error = EPERM;
7587c478bd9Sstevel@tonic-gate 				break;
7597c478bd9Sstevel@tonic-gate 			} else if ((ppa == NULL) ||
7607c478bd9Sstevel@tonic-gate 			    (ppa->ppa_lower_wq == NULL)) {
7617c478bd9Sstevel@tonic-gate 				break;		/* return EINVAL */
7627c478bd9Sstevel@tonic-gate 			}
7637c478bd9Sstevel@tonic-gate 			mutex_enter(&ppa->ppa_sta_lock);
7647c478bd9Sstevel@tonic-gate 			ppa->ppa_ioctlsfwd++;
7657c478bd9Sstevel@tonic-gate 			mutex_exit(&ppa->ppa_sta_lock);
7667c478bd9Sstevel@tonic-gate 			/*
7677c478bd9Sstevel@tonic-gate 			 * Record the ioctl CMD & ID - this will be used to
7687c478bd9Sstevel@tonic-gate 			 * check the ACK or NAK responses coming from below.
7697c478bd9Sstevel@tonic-gate 			 */
7707c478bd9Sstevel@tonic-gate 			sps->sps_ioc_id = iop->ioc_id;
7717c478bd9Sstevel@tonic-gate 			putnext(ppa->ppa_lower_wq, mp);
7727c478bd9Sstevel@tonic-gate 			return (0);	/* don't ack or nak the request */
7737c478bd9Sstevel@tonic-gate 		}
7747c478bd9Sstevel@tonic-gate 		/* Failure; send error back upstream. */
7757c478bd9Sstevel@tonic-gate 		miocnak(q, mp, 0, error);
7767c478bd9Sstevel@tonic-gate 		break;
7777c478bd9Sstevel@tonic-gate 	case M_FLUSH:
7787c478bd9Sstevel@tonic-gate 		if (*mp->b_rptr & FLUSHW) {
7797c478bd9Sstevel@tonic-gate 			flushq(q, FLUSHDATA);
7807c478bd9Sstevel@tonic-gate 		}
7817c478bd9Sstevel@tonic-gate 		if (*mp->b_rptr & FLUSHR) {
7827c478bd9Sstevel@tonic-gate 			*mp->b_rptr &= ~FLUSHW;
7837c478bd9Sstevel@tonic-gate 			qreply(q, mp);
7847c478bd9Sstevel@tonic-gate 		} else {
7857c478bd9Sstevel@tonic-gate 			freemsg(mp);
7867c478bd9Sstevel@tonic-gate 		}
7877c478bd9Sstevel@tonic-gate 		break;
7887c478bd9Sstevel@tonic-gate 	default:
7897c478bd9Sstevel@tonic-gate 		freemsg(mp);
7907c478bd9Sstevel@tonic-gate 		break;
7917c478bd9Sstevel@tonic-gate 	}
7927c478bd9Sstevel@tonic-gate 	return (0);
7937c478bd9Sstevel@tonic-gate }
7947c478bd9Sstevel@tonic-gate 
7957c478bd9Sstevel@tonic-gate /*
7967c478bd9Sstevel@tonic-gate  * sppp_uwsrv()
7977c478bd9Sstevel@tonic-gate  *
7987c478bd9Sstevel@tonic-gate  * MT-Perimeters:
7997c478bd9Sstevel@tonic-gate  *    exclusive inner, shared outer.
8007c478bd9Sstevel@tonic-gate  *
8017c478bd9Sstevel@tonic-gate  * Description:
8027c478bd9Sstevel@tonic-gate  *    Upper write-side service procedure. Note that this procedure does
8037c478bd9Sstevel@tonic-gate  *    not get called when a message is placed on our write-side queue, since
8047c478bd9Sstevel@tonic-gate  *    automatic queue scheduling has been turned off by noenable() when
8057c478bd9Sstevel@tonic-gate  *    the queue was opened. We do this on purpose, as we explicitly control
8067c478bd9Sstevel@tonic-gate  *    the write-side queue. Therefore, this procedure gets called when
8077c478bd9Sstevel@tonic-gate  *    the lower write service procedure qenable() the upper write stream queue.
8087c478bd9Sstevel@tonic-gate  */
8097c478bd9Sstevel@tonic-gate int
8107c478bd9Sstevel@tonic-gate sppp_uwsrv(queue_t *q)
8117c478bd9Sstevel@tonic-gate {
8127c478bd9Sstevel@tonic-gate 	spppstr_t	*sps;
8137c478bd9Sstevel@tonic-gate 	mblk_t		*mp;
8147c478bd9Sstevel@tonic-gate 	queue_t		*nextq;
8157c478bd9Sstevel@tonic-gate 
8167c478bd9Sstevel@tonic-gate 	ASSERT(q != NULL && q->q_ptr != NULL);
8177c478bd9Sstevel@tonic-gate 	sps = (spppstr_t *)q->q_ptr;
8187c478bd9Sstevel@tonic-gate 	while ((mp = getq(q)) != NULL) {
8197c478bd9Sstevel@tonic-gate 		if ((nextq = sppp_outpkt(q, &mp, msgdsize(mp), sps)) == NULL) {
8207c478bd9Sstevel@tonic-gate 			if (mp != NULL) {
8217c478bd9Sstevel@tonic-gate 				if (putbq(q, mp) == 0)
8227c478bd9Sstevel@tonic-gate 					freemsg(mp);
8237c478bd9Sstevel@tonic-gate 				break;
8247c478bd9Sstevel@tonic-gate 			}
8257c478bd9Sstevel@tonic-gate 		} else {
8267c478bd9Sstevel@tonic-gate 			putnext(nextq, mp);
8277c478bd9Sstevel@tonic-gate 		}
8287c478bd9Sstevel@tonic-gate 	}
8297c478bd9Sstevel@tonic-gate 	return (0);
8307c478bd9Sstevel@tonic-gate }
8317c478bd9Sstevel@tonic-gate 
8327c478bd9Sstevel@tonic-gate void
8337c478bd9Sstevel@tonic-gate sppp_remove_ppa(spppstr_t *sps)
8347c478bd9Sstevel@tonic-gate {
8357c478bd9Sstevel@tonic-gate 	spppstr_t *nextsib;
8367c478bd9Sstevel@tonic-gate 	sppa_t *ppa = sps->sps_ppa;
8377c478bd9Sstevel@tonic-gate 
8387c478bd9Sstevel@tonic-gate 	rw_enter(&ppa->ppa_sib_lock, RW_WRITER);
8397c478bd9Sstevel@tonic-gate 	if (ppa->ppa_refcnt <= 1) {
8407c478bd9Sstevel@tonic-gate 		rw_exit(&ppa->ppa_sib_lock);
8417c478bd9Sstevel@tonic-gate 		sppp_free_ppa(ppa);
8427c478bd9Sstevel@tonic-gate 	} else {
8437c478bd9Sstevel@tonic-gate 		nextsib = ppa->ppa_streams;
8447c478bd9Sstevel@tonic-gate 		if (nextsib == sps) {
8457c478bd9Sstevel@tonic-gate 			ppa->ppa_streams = sps->sps_nextsib;
8467c478bd9Sstevel@tonic-gate 		} else {
8477c478bd9Sstevel@tonic-gate 			while (nextsib->sps_nextsib != NULL) {
8487c478bd9Sstevel@tonic-gate 				if (nextsib->sps_nextsib == sps) {
8497c478bd9Sstevel@tonic-gate 					nextsib->sps_nextsib =
8507c478bd9Sstevel@tonic-gate 					    sps->sps_nextsib;
8517c478bd9Sstevel@tonic-gate 					break;
8527c478bd9Sstevel@tonic-gate 				}
8537c478bd9Sstevel@tonic-gate 				nextsib = nextsib->sps_nextsib;
8547c478bd9Sstevel@tonic-gate 			}
8557c478bd9Sstevel@tonic-gate 		}
8567c478bd9Sstevel@tonic-gate 		ppa->ppa_refcnt--;
8577c478bd9Sstevel@tonic-gate 		/*
8587c478bd9Sstevel@tonic-gate 		 * And if this stream was marked as promiscuous
8597c478bd9Sstevel@tonic-gate 		 * (SPS_PROMISC), then we need to update the
8607c478bd9Sstevel@tonic-gate 		 * promiscuous streams count. This should only happen
8617c478bd9Sstevel@tonic-gate 		 * when DL_DETACH_REQ is issued prior to marking the
8627c478bd9Sstevel@tonic-gate 		 * stream as non-promiscuous, through
8637c478bd9Sstevel@tonic-gate 		 * DL_PROMISCOFF_REQ request.
8647c478bd9Sstevel@tonic-gate 		 */
8657c478bd9Sstevel@tonic-gate 		if (IS_SPS_PROMISC(sps)) {
8667c478bd9Sstevel@tonic-gate 			ASSERT(ppa->ppa_promicnt > 0);
8677c478bd9Sstevel@tonic-gate 			ppa->ppa_promicnt--;
8687c478bd9Sstevel@tonic-gate 		}
8697c478bd9Sstevel@tonic-gate 		rw_exit(&ppa->ppa_sib_lock);
8707c478bd9Sstevel@tonic-gate 	}
8717c478bd9Sstevel@tonic-gate 	sps->sps_nextsib = NULL;
8727c478bd9Sstevel@tonic-gate 	sps->sps_ppa = NULL;
8737c478bd9Sstevel@tonic-gate 	freemsg(sps->sps_hangup);
8747c478bd9Sstevel@tonic-gate 	sps->sps_hangup = NULL;
8757c478bd9Sstevel@tonic-gate }
8767c478bd9Sstevel@tonic-gate 
8777c478bd9Sstevel@tonic-gate sppa_t *
8787c478bd9Sstevel@tonic-gate sppp_find_ppa(uint32_t ppa_id)
8797c478bd9Sstevel@tonic-gate {
8807c478bd9Sstevel@tonic-gate 	sppa_t *ppa;
8817c478bd9Sstevel@tonic-gate 
8827c478bd9Sstevel@tonic-gate 	for (ppa = ppa_list; ppa != NULL; ppa = ppa->ppa_nextppa) {
8837c478bd9Sstevel@tonic-gate 		if (ppa->ppa_ppa_id == ppa_id) {
8847c478bd9Sstevel@tonic-gate 			break;	/* found the ppa */
8857c478bd9Sstevel@tonic-gate 		}
8867c478bd9Sstevel@tonic-gate 	}
8877c478bd9Sstevel@tonic-gate 	return (ppa);
8887c478bd9Sstevel@tonic-gate }
8897c478bd9Sstevel@tonic-gate 
8907c478bd9Sstevel@tonic-gate /*
8917c478bd9Sstevel@tonic-gate  * sppp_inner_ioctl()
8927c478bd9Sstevel@tonic-gate  *
8937c478bd9Sstevel@tonic-gate  * MT-Perimeters:
8947c478bd9Sstevel@tonic-gate  *    exclusive inner, shared outer
8957c478bd9Sstevel@tonic-gate  *
8967c478bd9Sstevel@tonic-gate  * Description:
8977c478bd9Sstevel@tonic-gate  *    Called by sppp_uwput as a result of receiving ioctls which require
8987c478bd9Sstevel@tonic-gate  *    an exclusive access at the inner perimeter.
8997c478bd9Sstevel@tonic-gate  */
9007c478bd9Sstevel@tonic-gate static void
9017c478bd9Sstevel@tonic-gate sppp_inner_ioctl(queue_t *q, mblk_t *mp)
9027c478bd9Sstevel@tonic-gate {
9037c478bd9Sstevel@tonic-gate 	spppstr_t	*sps;
9047c478bd9Sstevel@tonic-gate 	sppa_t		*ppa;
9057c478bd9Sstevel@tonic-gate 	struct iocblk	*iop;
9067c478bd9Sstevel@tonic-gate 	mblk_t		*nmp;
9077c478bd9Sstevel@tonic-gate 	int		error = EINVAL;
9087c478bd9Sstevel@tonic-gate 	int		count = 0;
9097c478bd9Sstevel@tonic-gate 	int		dbgcmd;
9107c478bd9Sstevel@tonic-gate 	int		mru, mtu;
9117c478bd9Sstevel@tonic-gate 	uint32_t	ppa_id;
9127c478bd9Sstevel@tonic-gate 	hrtime_t	hrtime;
9137c478bd9Sstevel@tonic-gate 	uint16_t	proto;
9147c478bd9Sstevel@tonic-gate 
9157c478bd9Sstevel@tonic-gate 	ASSERT(q != NULL && q->q_ptr != NULL);
9167c478bd9Sstevel@tonic-gate 	ASSERT(mp != NULL && mp->b_rptr != NULL);
9177c478bd9Sstevel@tonic-gate 
9187c478bd9Sstevel@tonic-gate 	sps = (spppstr_t *)q->q_ptr;
9197c478bd9Sstevel@tonic-gate 	ppa = sps->sps_ppa;
9207c478bd9Sstevel@tonic-gate 	iop = (struct iocblk *)mp->b_rptr;
9217c478bd9Sstevel@tonic-gate 	switch (iop->ioc_cmd) {
9227c478bd9Sstevel@tonic-gate 	case DLIOCRAW:
9237c478bd9Sstevel@tonic-gate 		if (IS_SPS_CONTROL(sps)) {
9247c478bd9Sstevel@tonic-gate 			break;		/* return EINVAL */
9257c478bd9Sstevel@tonic-gate 		}
9267c478bd9Sstevel@tonic-gate 		sps->sps_flags |= SPS_RAWDATA;
9277c478bd9Sstevel@tonic-gate 		error = 0;		/* return success */
9287c478bd9Sstevel@tonic-gate 		break;
9297c478bd9Sstevel@tonic-gate 	case DL_IOC_HDR_INFO:
9307c478bd9Sstevel@tonic-gate 		if (IS_SPS_CONTROL(sps)) {
9317c478bd9Sstevel@tonic-gate 			break;		/* return EINVAL */
9327c478bd9Sstevel@tonic-gate 		} else if ((mp->b_cont == NULL) ||
9337c478bd9Sstevel@tonic-gate 		    *((t_uscalar_t *)mp->b_cont->b_rptr) != DL_UNITDATA_REQ ||
9347c478bd9Sstevel@tonic-gate 		    (MBLKL(mp->b_cont) < (sizeof (dl_unitdata_req_t) +
9357c478bd9Sstevel@tonic-gate 			SPPP_ADDRL))) {
9367c478bd9Sstevel@tonic-gate 			error = EPROTO;
9377c478bd9Sstevel@tonic-gate 			break;
9387c478bd9Sstevel@tonic-gate 		} else if (ppa == NULL) {
9397c478bd9Sstevel@tonic-gate 			error = ENOLINK;
9407c478bd9Sstevel@tonic-gate 			break;
9417c478bd9Sstevel@tonic-gate 		}
9427c478bd9Sstevel@tonic-gate 		if ((nmp = allocb(PPP_HDRLEN, BPRI_MED)) == NULL) {
9437c478bd9Sstevel@tonic-gate 			mutex_enter(&ppa->ppa_sta_lock);
9447c478bd9Sstevel@tonic-gate 			ppa->ppa_allocbfail++;
9457c478bd9Sstevel@tonic-gate 			mutex_exit(&ppa->ppa_sta_lock);
9467c478bd9Sstevel@tonic-gate 			error = ENOMEM;
9477c478bd9Sstevel@tonic-gate 			break;
9487c478bd9Sstevel@tonic-gate 		}
9497c478bd9Sstevel@tonic-gate 		*(uchar_t *)nmp->b_wptr++ = PPP_ALLSTATIONS;
9507c478bd9Sstevel@tonic-gate 		*(uchar_t *)nmp->b_wptr++ = PPP_UI;
9517c478bd9Sstevel@tonic-gate 		*(uchar_t *)nmp->b_wptr++ = sps->sps_sap >> 8;
9527c478bd9Sstevel@tonic-gate 		*(uchar_t *)nmp->b_wptr++ = sps->sps_sap & 0xff;
9537c478bd9Sstevel@tonic-gate 		ASSERT(MBLKL(nmp) == PPP_HDRLEN);
9547c478bd9Sstevel@tonic-gate 
9557c478bd9Sstevel@tonic-gate 		linkb(mp, nmp);
9567c478bd9Sstevel@tonic-gate 		sps->sps_flags |= SPS_FASTPATH;
9577c478bd9Sstevel@tonic-gate 		error = 0;		/* return success */
9587c478bd9Sstevel@tonic-gate 		count = msgsize(nmp);
9597c478bd9Sstevel@tonic-gate 		break;
9607c478bd9Sstevel@tonic-gate 	case PPPIO_ATTACH:
9617c478bd9Sstevel@tonic-gate 		if (IS_SPS_CONTROL(sps) || IS_SPS_PIOATTACH(sps) ||
9627c478bd9Sstevel@tonic-gate 		    (sps->sps_dlstate != DL_UNATTACHED) ||
9637c478bd9Sstevel@tonic-gate 		    (iop->ioc_count != sizeof (uint32_t))) {
9647c478bd9Sstevel@tonic-gate 			break;		/* return EINVAL */
9657c478bd9Sstevel@tonic-gate 		} else if (mp->b_cont == NULL) {
9667c478bd9Sstevel@tonic-gate 			error = EPROTO;
9677c478bd9Sstevel@tonic-gate 			break;
9687c478bd9Sstevel@tonic-gate 		}
9697c478bd9Sstevel@tonic-gate 		ASSERT(mp->b_cont->b_rptr != NULL);
9707c478bd9Sstevel@tonic-gate 		/* If there's something here, it's detached. */
9717c478bd9Sstevel@tonic-gate 		if (ppa != NULL) {
9727c478bd9Sstevel@tonic-gate 			sppp_remove_ppa(sps);
9737c478bd9Sstevel@tonic-gate 		}
9747c478bd9Sstevel@tonic-gate 		ppa_id = *(uint32_t *)mp->b_cont->b_rptr;
9757c478bd9Sstevel@tonic-gate 		ppa = sppp_find_ppa(ppa_id);
9767c478bd9Sstevel@tonic-gate 		/*
9777c478bd9Sstevel@tonic-gate 		 * If we can't find it, then it's either because the requestor
9787c478bd9Sstevel@tonic-gate 		 * has supplied a wrong ppa_id to be attached to, or because
9797c478bd9Sstevel@tonic-gate 		 * the control stream for the specified ppa_id has been closed
9807c478bd9Sstevel@tonic-gate 		 * before we get here.
9817c478bd9Sstevel@tonic-gate 		 */
9827c478bd9Sstevel@tonic-gate 		if (ppa == NULL) {
9837c478bd9Sstevel@tonic-gate 			error = ENOENT;
9847c478bd9Sstevel@tonic-gate 			break;
9857c478bd9Sstevel@tonic-gate 		}
9867c478bd9Sstevel@tonic-gate 		/*
9877c478bd9Sstevel@tonic-gate 		 * Preallocate the hangup message so that we're always
9887c478bd9Sstevel@tonic-gate 		 * able to send this upstream in the event of a
9897c478bd9Sstevel@tonic-gate 		 * catastrophic failure.
9907c478bd9Sstevel@tonic-gate 		 */
9917c478bd9Sstevel@tonic-gate 		if ((sps->sps_hangup = allocb(1, BPRI_MED)) == NULL) {
9927c478bd9Sstevel@tonic-gate 			error = ENOSR;
9937c478bd9Sstevel@tonic-gate 			break;
9947c478bd9Sstevel@tonic-gate 		}
9957c478bd9Sstevel@tonic-gate 		/*
9967c478bd9Sstevel@tonic-gate 		 * There are two ways to attach a stream to a ppa: one is
9977c478bd9Sstevel@tonic-gate 		 * through DLPI (DL_ATTACH_REQ) and the other is through
9987c478bd9Sstevel@tonic-gate 		 * PPPIO_ATTACH. This is why we need to distinguish whether or
9997c478bd9Sstevel@tonic-gate 		 * not a stream was allocated via PPPIO_ATTACH, so that we can
10007c478bd9Sstevel@tonic-gate 		 * properly detach it when we receive PPPIO_DETACH ioctl
10017c478bd9Sstevel@tonic-gate 		 * request.
10027c478bd9Sstevel@tonic-gate 		 */
10037c478bd9Sstevel@tonic-gate 		sps->sps_flags |= SPS_PIOATTACH;
10047c478bd9Sstevel@tonic-gate 		sps->sps_ppa = ppa;
10057c478bd9Sstevel@tonic-gate 		/*
10067c478bd9Sstevel@tonic-gate 		 * Add this stream to the head of the list of sibling streams
10077c478bd9Sstevel@tonic-gate 		 * which belong to the same ppa as specified.
10087c478bd9Sstevel@tonic-gate 		 */
10097c478bd9Sstevel@tonic-gate 		rw_enter(&ppa->ppa_sib_lock, RW_WRITER);
10107c478bd9Sstevel@tonic-gate 		ppa->ppa_refcnt++;
10117c478bd9Sstevel@tonic-gate 		sps->sps_nextsib = ppa->ppa_streams;
10127c478bd9Sstevel@tonic-gate 		ppa->ppa_streams = sps;
10137c478bd9Sstevel@tonic-gate 		rw_exit(&ppa->ppa_sib_lock);
10147c478bd9Sstevel@tonic-gate 		error = 0;		/* return success */
10157c478bd9Sstevel@tonic-gate 		break;
10167c478bd9Sstevel@tonic-gate 	case PPPIO_BLOCKNP:
10177c478bd9Sstevel@tonic-gate 	case PPPIO_UNBLOCKNP:
10187c478bd9Sstevel@tonic-gate 		if (iop->ioc_cr == NULL ||
10197c478bd9Sstevel@tonic-gate 		    secpolicy_net_config(iop->ioc_cr, B_FALSE) != 0) {
10207c478bd9Sstevel@tonic-gate 			error = EPERM;
10217c478bd9Sstevel@tonic-gate 			break;
10227c478bd9Sstevel@tonic-gate 		}
10237c478bd9Sstevel@tonic-gate 		error = miocpullup(mp, sizeof (uint16_t));
10247c478bd9Sstevel@tonic-gate 		if (error != 0)
10257c478bd9Sstevel@tonic-gate 			break;
10267c478bd9Sstevel@tonic-gate 		ASSERT(mp->b_cont->b_rptr != NULL);
10277c478bd9Sstevel@tonic-gate 		proto = *(uint16_t *)mp->b_cont->b_rptr;
10287c478bd9Sstevel@tonic-gate 		if (iop->ioc_cmd == PPPIO_BLOCKNP) {
10297c478bd9Sstevel@tonic-gate 			uint32_t npflagpos = sppp_ppp2np(proto);
10307c478bd9Sstevel@tonic-gate 			/*
10317c478bd9Sstevel@tonic-gate 			 * Mark proto as blocked in ppa_npflag until the
10327c478bd9Sstevel@tonic-gate 			 * corresponding queues for proto have been plumbed.
10337c478bd9Sstevel@tonic-gate 			 */
10347c478bd9Sstevel@tonic-gate 			if (npflagpos != 0) {
10357c478bd9Sstevel@tonic-gate 				mutex_enter(&ppa->ppa_npmutex);
10367c478bd9Sstevel@tonic-gate 				ppa->ppa_npflag |= (1 << npflagpos);
10377c478bd9Sstevel@tonic-gate 				mutex_exit(&ppa->ppa_npmutex);
10387c478bd9Sstevel@tonic-gate 			} else {
10397c478bd9Sstevel@tonic-gate 				error = EINVAL;
10407c478bd9Sstevel@tonic-gate 			}
10417c478bd9Sstevel@tonic-gate 		} else {
10427c478bd9Sstevel@tonic-gate 			/*
10437c478bd9Sstevel@tonic-gate 			 * reset ppa_npflag and release proto
10447c478bd9Sstevel@tonic-gate 			 * packets that were being held in control queue.
10457c478bd9Sstevel@tonic-gate 			 */
10467c478bd9Sstevel@tonic-gate 			sppp_release_pkts(ppa, proto);
10477c478bd9Sstevel@tonic-gate 		}
10487c478bd9Sstevel@tonic-gate 		break;
10497c478bd9Sstevel@tonic-gate 	case PPPIO_DEBUG:
10507c478bd9Sstevel@tonic-gate 		if (iop->ioc_cr == NULL ||
10517c478bd9Sstevel@tonic-gate 		    secpolicy_net_config(iop->ioc_cr, B_FALSE) != 0) {
10527c478bd9Sstevel@tonic-gate 			error = EPERM;
10537c478bd9Sstevel@tonic-gate 			break;
10547c478bd9Sstevel@tonic-gate 		} else if (iop->ioc_count != sizeof (uint32_t)) {
10557c478bd9Sstevel@tonic-gate 			break;		/* return EINVAL */
10567c478bd9Sstevel@tonic-gate 		} else if (mp->b_cont == NULL) {
10577c478bd9Sstevel@tonic-gate 			error = EPROTO;
10587c478bd9Sstevel@tonic-gate 			break;
10597c478bd9Sstevel@tonic-gate 		}
10607c478bd9Sstevel@tonic-gate 		ASSERT(mp->b_cont->b_rptr != NULL);
10617c478bd9Sstevel@tonic-gate 		dbgcmd = *(uint32_t *)mp->b_cont->b_rptr;
10627c478bd9Sstevel@tonic-gate 		/*
10637c478bd9Sstevel@tonic-gate 		 * We accept PPPDBG_LOG + PPPDBG_DRIVER value as an indication
10647c478bd9Sstevel@tonic-gate 		 * that SPS_KDEBUG needs to be enabled for this upper stream.
10657c478bd9Sstevel@tonic-gate 		 */
10667c478bd9Sstevel@tonic-gate 		if (dbgcmd == PPPDBG_LOG + PPPDBG_DRIVER) {
10677c478bd9Sstevel@tonic-gate 			sps->sps_flags |= SPS_KDEBUG;
10687c478bd9Sstevel@tonic-gate 			error = 0;	/* return success */
10697c478bd9Sstevel@tonic-gate 			break;
10707c478bd9Sstevel@tonic-gate 		}
10717c478bd9Sstevel@tonic-gate 		/*
10727c478bd9Sstevel@tonic-gate 		 * Otherwise, for any other values, we send them down only if
10737c478bd9Sstevel@tonic-gate 		 * there is an attachment and if the attachment has something
10747c478bd9Sstevel@tonic-gate 		 * linked underneath it.
10757c478bd9Sstevel@tonic-gate 		 */
10767c478bd9Sstevel@tonic-gate 		if ((ppa == NULL) || (ppa->ppa_lower_wq == NULL)) {
10777c478bd9Sstevel@tonic-gate 			error = ENOLINK;
10787c478bd9Sstevel@tonic-gate 			break;
10797c478bd9Sstevel@tonic-gate 		}
10807c478bd9Sstevel@tonic-gate 		mutex_enter(&ppa->ppa_sta_lock);
10817c478bd9Sstevel@tonic-gate 		ppa->ppa_ioctlsfwd++;
10827c478bd9Sstevel@tonic-gate 		mutex_exit(&ppa->ppa_sta_lock);
10837c478bd9Sstevel@tonic-gate 		/*
10847c478bd9Sstevel@tonic-gate 		 * Record the ioctl CMD & ID - this will be used to check the
10857c478bd9Sstevel@tonic-gate 		 * ACK or NAK responses coming from below.
10867c478bd9Sstevel@tonic-gate 		 */
10877c478bd9Sstevel@tonic-gate 		sps->sps_ioc_id = iop->ioc_id;
10887c478bd9Sstevel@tonic-gate 		putnext(ppa->ppa_lower_wq, mp);
10897c478bd9Sstevel@tonic-gate 		return;			/* don't ack or nak the request */
10907c478bd9Sstevel@tonic-gate 	case PPPIO_DETACH:
10917c478bd9Sstevel@tonic-gate 		if (!IS_SPS_PIOATTACH(sps)) {
10927c478bd9Sstevel@tonic-gate 			break;		/* return EINVAL */
10937c478bd9Sstevel@tonic-gate 		}
10947c478bd9Sstevel@tonic-gate 		/*
10957c478bd9Sstevel@tonic-gate 		 * The SPS_PIOATTACH flag set on the stream tells us that
10967c478bd9Sstevel@tonic-gate 		 * the ppa field is still valid. In the event that the control
10977c478bd9Sstevel@tonic-gate 		 * stream be closed prior to this stream's detachment, the
10987c478bd9Sstevel@tonic-gate 		 * SPS_PIOATTACH flag would have been cleared from this stream
10997c478bd9Sstevel@tonic-gate 		 * during close; in that case we won't get here.
11007c478bd9Sstevel@tonic-gate 		 */
11017c478bd9Sstevel@tonic-gate 		ASSERT(ppa != NULL);
11027c478bd9Sstevel@tonic-gate 		ASSERT(ppa->ppa_ctl != sps);
11037c478bd9Sstevel@tonic-gate 		ASSERT(sps->sps_dlstate == DL_UNATTACHED);
11047c478bd9Sstevel@tonic-gate 
11057c478bd9Sstevel@tonic-gate 		/*
11067c478bd9Sstevel@tonic-gate 		 * We don't actually detach anything until the stream is
11077c478bd9Sstevel@tonic-gate 		 * closed or reattached.
11087c478bd9Sstevel@tonic-gate 		 */
11097c478bd9Sstevel@tonic-gate 
11107c478bd9Sstevel@tonic-gate 		sps->sps_flags &= ~SPS_PIOATTACH;
11117c478bd9Sstevel@tonic-gate 		error = 0;		/* return success */
11127c478bd9Sstevel@tonic-gate 		break;
11137c478bd9Sstevel@tonic-gate 	case PPPIO_LASTMOD:
11147c478bd9Sstevel@tonic-gate 		if (!IS_SPS_CONTROL(sps)) {
11157c478bd9Sstevel@tonic-gate 			break;		/* return EINVAL */
11167c478bd9Sstevel@tonic-gate 		}
11177c478bd9Sstevel@tonic-gate 		ASSERT(ppa != NULL);
11187c478bd9Sstevel@tonic-gate 		ppa->ppa_flags |= PPA_LASTMOD;
11197c478bd9Sstevel@tonic-gate 		error = 0;		/* return success */
11207c478bd9Sstevel@tonic-gate 		break;
11217c478bd9Sstevel@tonic-gate 	case PPPIO_MRU:
11227c478bd9Sstevel@tonic-gate 		if (!IS_SPS_CONTROL(sps) ||
11237c478bd9Sstevel@tonic-gate 		    (iop->ioc_count != sizeof (uint32_t))) {
11247c478bd9Sstevel@tonic-gate 			break;		/* return EINVAL */
11257c478bd9Sstevel@tonic-gate 		} else if (mp->b_cont == NULL) {
11267c478bd9Sstevel@tonic-gate 			error = EPROTO;
11277c478bd9Sstevel@tonic-gate 			break;
11287c478bd9Sstevel@tonic-gate 		}
11297c478bd9Sstevel@tonic-gate 		ASSERT(ppa != NULL);
11307c478bd9Sstevel@tonic-gate 		ASSERT(mp->b_cont->b_rptr != NULL);
11317c478bd9Sstevel@tonic-gate 		mru = *(uint32_t *)mp->b_cont->b_rptr;
11327c478bd9Sstevel@tonic-gate 		if ((mru <= 0) || (mru > PPP_MAXMRU)) {
11337c478bd9Sstevel@tonic-gate 			error = EPROTO;
11347c478bd9Sstevel@tonic-gate 			break;
11357c478bd9Sstevel@tonic-gate 		}
11367c478bd9Sstevel@tonic-gate 		if (mru < PPP_MRU) {
11377c478bd9Sstevel@tonic-gate 			mru = PPP_MRU;
11387c478bd9Sstevel@tonic-gate 		}
11397c478bd9Sstevel@tonic-gate 		ppa->ppa_mru = (uint16_t)mru;
11407c478bd9Sstevel@tonic-gate 		/*
11417c478bd9Sstevel@tonic-gate 		 * If there's something beneath this driver for the ppa, then
11427c478bd9Sstevel@tonic-gate 		 * inform it (or them) of the MRU size. Only do this is we
11437c478bd9Sstevel@tonic-gate 		 * are not the last PPP module on the stream.
11447c478bd9Sstevel@tonic-gate 		 */
11457c478bd9Sstevel@tonic-gate 		if (!IS_PPA_LASTMOD(ppa) && (ppa->ppa_lower_wq != NULL)) {
11467c478bd9Sstevel@tonic-gate 			(void) putctl4(ppa->ppa_lower_wq, M_CTL, PPPCTL_MRU,
11477c478bd9Sstevel@tonic-gate 			    mru);
11487c478bd9Sstevel@tonic-gate 		}
11497c478bd9Sstevel@tonic-gate 		error = 0;		/* return success */
11507c478bd9Sstevel@tonic-gate 		break;
11517c478bd9Sstevel@tonic-gate 	case PPPIO_MTU:
11527c478bd9Sstevel@tonic-gate 		if (!IS_SPS_CONTROL(sps) ||
11537c478bd9Sstevel@tonic-gate 		    (iop->ioc_count != sizeof (uint32_t))) {
11547c478bd9Sstevel@tonic-gate 			break;		/* return EINVAL */
11557c478bd9Sstevel@tonic-gate 		} else if (mp->b_cont == NULL) {
11567c478bd9Sstevel@tonic-gate 			error = EPROTO;
11577c478bd9Sstevel@tonic-gate 			break;
11587c478bd9Sstevel@tonic-gate 		}
11597c478bd9Sstevel@tonic-gate 		ASSERT(ppa != NULL);
11607c478bd9Sstevel@tonic-gate 		ASSERT(mp->b_cont->b_rptr != NULL);
11617c478bd9Sstevel@tonic-gate 		mtu = *(uint32_t *)mp->b_cont->b_rptr;
11627c478bd9Sstevel@tonic-gate 		if ((mtu <= 0) || (mtu > PPP_MAXMTU)) {
11637c478bd9Sstevel@tonic-gate 			error = EPROTO;
11647c478bd9Sstevel@tonic-gate 			break;
11657c478bd9Sstevel@tonic-gate 		}
11667c478bd9Sstevel@tonic-gate 		ppa->ppa_mtu = (uint16_t)mtu;
11677c478bd9Sstevel@tonic-gate 		/*
11687c478bd9Sstevel@tonic-gate 		 * If there's something beneath this driver for the ppa, then
11697c478bd9Sstevel@tonic-gate 		 * inform it (or them) of the MTU size. Only do this if we
11707c478bd9Sstevel@tonic-gate 		 * are not the last PPP module on the stream.
11717c478bd9Sstevel@tonic-gate 		 */
11727c478bd9Sstevel@tonic-gate 		if (!IS_PPA_LASTMOD(ppa) && (ppa->ppa_lower_wq != NULL)) {
11737c478bd9Sstevel@tonic-gate 			(void) putctl4(ppa->ppa_lower_wq, M_CTL, PPPCTL_MTU,
11747c478bd9Sstevel@tonic-gate 			    mtu);
11757c478bd9Sstevel@tonic-gate 		}
11767c478bd9Sstevel@tonic-gate 		error = 0;		/* return success */
11777c478bd9Sstevel@tonic-gate 		break;
11787c478bd9Sstevel@tonic-gate 	case PPPIO_USETIMESTAMP:
11797c478bd9Sstevel@tonic-gate 		if (!IS_SPS_CONTROL(sps)) {
11807c478bd9Sstevel@tonic-gate 			break;		/* return EINVAL */
11817c478bd9Sstevel@tonic-gate 		}
11827c478bd9Sstevel@tonic-gate 		if (!IS_PPA_TIMESTAMP(ppa)) {
11837c478bd9Sstevel@tonic-gate 			hrtime = gethrtime();
11847c478bd9Sstevel@tonic-gate 			ppa->ppa_lasttx = ppa->ppa_lastrx = hrtime;
11857c478bd9Sstevel@tonic-gate 			ppa->ppa_flags |= PPA_TIMESTAMP;
11867c478bd9Sstevel@tonic-gate 		}
11877c478bd9Sstevel@tonic-gate 		error = 0;
11887c478bd9Sstevel@tonic-gate 		break;
11897c478bd9Sstevel@tonic-gate 	}
11907c478bd9Sstevel@tonic-gate 
11917c478bd9Sstevel@tonic-gate 	if (error == 0) {
11927c478bd9Sstevel@tonic-gate 		/* Success; tell the user */
11937c478bd9Sstevel@tonic-gate 		miocack(q, mp, count, 0);
11947c478bd9Sstevel@tonic-gate 	} else {
11957c478bd9Sstevel@tonic-gate 		/* Failure; send error back upstream */
11967c478bd9Sstevel@tonic-gate 		miocnak(q, mp, 0, error);
11977c478bd9Sstevel@tonic-gate 	}
11987c478bd9Sstevel@tonic-gate }
11997c478bd9Sstevel@tonic-gate 
12007c478bd9Sstevel@tonic-gate /*
12017c478bd9Sstevel@tonic-gate  * sppp_outer_ioctl()
12027c478bd9Sstevel@tonic-gate  *
12037c478bd9Sstevel@tonic-gate  * MT-Perimeters:
12047c478bd9Sstevel@tonic-gate  *    exclusive inner, exclusive outer
12057c478bd9Sstevel@tonic-gate  *
12067c478bd9Sstevel@tonic-gate  * Description:
12077c478bd9Sstevel@tonic-gate  *    Called by sppp_uwput as a result of receiving ioctls which require
12087c478bd9Sstevel@tonic-gate  *    an exclusive access at the outer perimeter.
12097c478bd9Sstevel@tonic-gate  */
12107c478bd9Sstevel@tonic-gate static void
12117c478bd9Sstevel@tonic-gate sppp_outer_ioctl(queue_t *q, mblk_t *mp)
12127c478bd9Sstevel@tonic-gate {
12137c478bd9Sstevel@tonic-gate 	spppstr_t	*sps;
12147c478bd9Sstevel@tonic-gate 	spppstr_t	*nextsib;
12157c478bd9Sstevel@tonic-gate 	queue_t		*lwq;
12167c478bd9Sstevel@tonic-gate 	sppa_t		*ppa;
12177c478bd9Sstevel@tonic-gate 	struct iocblk	*iop;
12187c478bd9Sstevel@tonic-gate 	int		error = EINVAL;
12197c478bd9Sstevel@tonic-gate 	int		count = 0;
12207c478bd9Sstevel@tonic-gate 	uint32_t	ppa_id;
12217c478bd9Sstevel@tonic-gate 	mblk_t		*nmp;
12227c478bd9Sstevel@tonic-gate 
12237c478bd9Sstevel@tonic-gate 	ASSERT(q != NULL && q->q_ptr != NULL);
12247c478bd9Sstevel@tonic-gate 	ASSERT(mp != NULL && mp->b_rptr != NULL);
12257c478bd9Sstevel@tonic-gate 
12267c478bd9Sstevel@tonic-gate 	sps = (spppstr_t *)q->q_ptr;
12277c478bd9Sstevel@tonic-gate 	ppa = sps->sps_ppa;
12287c478bd9Sstevel@tonic-gate 	iop = (struct iocblk *)mp->b_rptr;
12297c478bd9Sstevel@tonic-gate 	switch (iop->ioc_cmd) {
12307c478bd9Sstevel@tonic-gate 	case I_LINK:
12317c478bd9Sstevel@tonic-gate 		if (!IS_SPS_CONTROL(sps)) {
12327c478bd9Sstevel@tonic-gate 			break;		/* return EINVAL */
12337c478bd9Sstevel@tonic-gate 		} else if (ppa->ppa_lower_wq != NULL) {
12347c478bd9Sstevel@tonic-gate 			error = EEXIST;
12357c478bd9Sstevel@tonic-gate 			break;
12367c478bd9Sstevel@tonic-gate 		}
12377c478bd9Sstevel@tonic-gate 		ASSERT(ppa->ppa_ctl != NULL);
12387c478bd9Sstevel@tonic-gate 		ASSERT(sps->sps_npmode == NPMODE_PASS);
12397c478bd9Sstevel@tonic-gate 		ASSERT(mp->b_cont != NULL && mp->b_cont->b_rptr != NULL);
12407c478bd9Sstevel@tonic-gate 
12417c478bd9Sstevel@tonic-gate 		lwq = ((struct linkblk *)mp->b_cont->b_rptr)->l_qbot;
12427c478bd9Sstevel@tonic-gate 		ASSERT(lwq != NULL);
12437c478bd9Sstevel@tonic-gate 
12447c478bd9Sstevel@tonic-gate 		ppa->ppa_lower_wq = lwq;
12457c478bd9Sstevel@tonic-gate 		lwq->q_ptr = RD(lwq)->q_ptr = (caddr_t)ppa;
12467c478bd9Sstevel@tonic-gate 		/*
12477c478bd9Sstevel@tonic-gate 		 * Unblock upper network streams which now feed this lower
12487c478bd9Sstevel@tonic-gate 		 * stream. We don't need to hold ppa_sib_lock here, since we
12497c478bd9Sstevel@tonic-gate 		 * are writer at the outer perimeter.
12507c478bd9Sstevel@tonic-gate 		 */
12517c478bd9Sstevel@tonic-gate 		if (WR(sps->sps_rq)->q_first != NULL)
12527c478bd9Sstevel@tonic-gate 			qenable(WR(sps->sps_rq));
12537c478bd9Sstevel@tonic-gate 		for (nextsib = ppa->ppa_streams; nextsib != NULL;
12547c478bd9Sstevel@tonic-gate 		    nextsib = nextsib->sps_nextsib) {
12557c478bd9Sstevel@tonic-gate 			nextsib->sps_npmode = NPMODE_PASS;
12567c478bd9Sstevel@tonic-gate 			if (WR(nextsib->sps_rq)->q_first != NULL) {
12577c478bd9Sstevel@tonic-gate 				qenable(WR(nextsib->sps_rq));
12587c478bd9Sstevel@tonic-gate 			}
12597c478bd9Sstevel@tonic-gate 		}
12607c478bd9Sstevel@tonic-gate 		/*
12617c478bd9Sstevel@tonic-gate 		 * Send useful information down to the modules which are now
12627c478bd9Sstevel@tonic-gate 		 * linked below this driver (for this particular ppa). Only
12637c478bd9Sstevel@tonic-gate 		 * do this if we are not the last PPP module on the stream.
12647c478bd9Sstevel@tonic-gate 		 */
12657c478bd9Sstevel@tonic-gate 		if (!IS_PPA_LASTMOD(ppa)) {
12667c478bd9Sstevel@tonic-gate 			(void) putctl8(lwq, M_CTL, PPPCTL_UNIT,
12677c478bd9Sstevel@tonic-gate 			    ppa->ppa_ppa_id);
12687c478bd9Sstevel@tonic-gate 			(void) putctl4(lwq, M_CTL, PPPCTL_MRU, ppa->ppa_mru);
12697c478bd9Sstevel@tonic-gate 			(void) putctl4(lwq, M_CTL, PPPCTL_MTU, ppa->ppa_mtu);
12707c478bd9Sstevel@tonic-gate 		}
12717c478bd9Sstevel@tonic-gate 
12727c478bd9Sstevel@tonic-gate 		if (IS_SPS_KDEBUG(sps)) {
12737c478bd9Sstevel@tonic-gate 			SPDEBUG(PPP_DRV_NAME
12747c478bd9Sstevel@tonic-gate 			    "/%d: I_LINK lwq=0x%p sps=0x%p flags=0x%b ppa=0x%p "
12757c478bd9Sstevel@tonic-gate 			    "flags=0x%b\n", sps->sps_mn_id,
12767c478bd9Sstevel@tonic-gate 			    (void *)ppa->ppa_lower_wq, (void *)sps,
12777c478bd9Sstevel@tonic-gate 			    sps->sps_flags, SPS_FLAGS_STR,
12787c478bd9Sstevel@tonic-gate 			    (void *)ppa, ppa->ppa_flags,
12797c478bd9Sstevel@tonic-gate 			    PPA_FLAGS_STR);
12807c478bd9Sstevel@tonic-gate 		}
12817c478bd9Sstevel@tonic-gate 		error = 0;		/* return success */
12827c478bd9Sstevel@tonic-gate 		break;
12837c478bd9Sstevel@tonic-gate 	case I_UNLINK:
12847c478bd9Sstevel@tonic-gate 		ASSERT(IS_SPS_CONTROL(sps));
12857c478bd9Sstevel@tonic-gate 		ASSERT(ppa != NULL);
12867c478bd9Sstevel@tonic-gate 		lwq = ppa->ppa_lower_wq;
12877c478bd9Sstevel@tonic-gate 		ASSERT(mp->b_cont != NULL && mp->b_cont->b_rptr != NULL);
12887c478bd9Sstevel@tonic-gate 		ASSERT(lwq == ((struct linkblk *)mp->b_cont->b_rptr)->l_qbot);
12897c478bd9Sstevel@tonic-gate 
12907c478bd9Sstevel@tonic-gate 		if (IS_SPS_KDEBUG(sps)) {
12917c478bd9Sstevel@tonic-gate 			SPDEBUG(PPP_DRV_NAME
12927c478bd9Sstevel@tonic-gate 			    "/%d: I_UNLINK lwq=0x%p sps=0x%p flags=0x%b "
12937c478bd9Sstevel@tonic-gate 			    "ppa=0x%p flags=0x%b\n", sps->sps_mn_id,
12947c478bd9Sstevel@tonic-gate 			    (void *)lwq, (void *)sps, sps->sps_flags,
12957c478bd9Sstevel@tonic-gate 			    SPS_FLAGS_STR, (void *)ppa, ppa->ppa_flags,
12967c478bd9Sstevel@tonic-gate 			    PPA_FLAGS_STR);
12977c478bd9Sstevel@tonic-gate 		}
12987c478bd9Sstevel@tonic-gate 		/*
12997c478bd9Sstevel@tonic-gate 		 * While accessing the outer perimeter exclusively, we
13007c478bd9Sstevel@tonic-gate 		 * disassociate our ppa's lower_wq from the lower stream linked
13017c478bd9Sstevel@tonic-gate 		 * beneath us, and we also disassociate our control stream from
13027c478bd9Sstevel@tonic-gate 		 * the q_ptr of the lower stream.
13037c478bd9Sstevel@tonic-gate 		 */
13047c478bd9Sstevel@tonic-gate 		lwq->q_ptr = RD(lwq)->q_ptr = NULL;
13057c478bd9Sstevel@tonic-gate 		ppa->ppa_lower_wq = NULL;
13067c478bd9Sstevel@tonic-gate 		/*
13077c478bd9Sstevel@tonic-gate 		 * Unblock streams which now feed back up the control stream,
13087c478bd9Sstevel@tonic-gate 		 * and acknowledge the request. We don't need to hold
13097c478bd9Sstevel@tonic-gate 		 * ppa_sib_lock here, since we are writer at the outer
13107c478bd9Sstevel@tonic-gate 		 * perimeter.
13117c478bd9Sstevel@tonic-gate 		 */
13127c478bd9Sstevel@tonic-gate 		if (WR(sps->sps_rq)->q_first != NULL)
13137c478bd9Sstevel@tonic-gate 			qenable(WR(sps->sps_rq));
13147c478bd9Sstevel@tonic-gate 		for (nextsib = ppa->ppa_streams; nextsib != NULL;
13157c478bd9Sstevel@tonic-gate 		    nextsib = nextsib->sps_nextsib) {
13167c478bd9Sstevel@tonic-gate 			if (WR(nextsib->sps_rq)->q_first != NULL) {
13177c478bd9Sstevel@tonic-gate 				qenable(WR(nextsib->sps_rq));
13187c478bd9Sstevel@tonic-gate 			}
13197c478bd9Sstevel@tonic-gate 		}
13207c478bd9Sstevel@tonic-gate 		error = 0;		/* return success */
13217c478bd9Sstevel@tonic-gate 		break;
13227c478bd9Sstevel@tonic-gate 	case PPPIO_NEWPPA:
13237c478bd9Sstevel@tonic-gate 		/*
13247c478bd9Sstevel@tonic-gate 		 * Do sanity check to ensure that we don't accept PPPIO_NEWPPA
13257c478bd9Sstevel@tonic-gate 		 * on a stream which DLPI is used (since certain DLPI messages
13267c478bd9Sstevel@tonic-gate 		 * will cause state transition reflected in sps_dlstate,
13277c478bd9Sstevel@tonic-gate 		 * changing it from its default DL_UNATTACHED value). In other
13287c478bd9Sstevel@tonic-gate 		 * words, we won't allow a network/snoop stream to become
13297c478bd9Sstevel@tonic-gate 		 * a control stream.
13307c478bd9Sstevel@tonic-gate 		 */
13317c478bd9Sstevel@tonic-gate 		if (iop->ioc_cr == NULL ||
13327c478bd9Sstevel@tonic-gate 		    secpolicy_net_config(iop->ioc_cr, B_FALSE) != 0) {
13337c478bd9Sstevel@tonic-gate 			error = EPERM;
13347c478bd9Sstevel@tonic-gate 			break;
13357c478bd9Sstevel@tonic-gate 		} else if (IS_SPS_CONTROL(sps) || IS_SPS_PIOATTACH(sps) ||
13367c478bd9Sstevel@tonic-gate 		    (ppa != NULL) || (sps->sps_dlstate != DL_UNATTACHED)) {
13377c478bd9Sstevel@tonic-gate 			break;		/* return EINVAL */
13387c478bd9Sstevel@tonic-gate 		}
13397c478bd9Sstevel@tonic-gate 		/* Get requested unit number (if any) */
13407c478bd9Sstevel@tonic-gate 		if (iop->ioc_count == sizeof (uint32_t) && mp->b_cont != NULL)
13417c478bd9Sstevel@tonic-gate 			ppa_id = *(uint32_t *)mp->b_cont->b_rptr;
13427c478bd9Sstevel@tonic-gate 		else
13437c478bd9Sstevel@tonic-gate 			ppa_id = 0;
13447c478bd9Sstevel@tonic-gate 		/* Get mblk to use for response message */
13457c478bd9Sstevel@tonic-gate 		nmp = allocb(sizeof (uint32_t), BPRI_MED);
13467c478bd9Sstevel@tonic-gate 		if (nmp == NULL) {
13477c478bd9Sstevel@tonic-gate 			error = ENOSR;
13487c478bd9Sstevel@tonic-gate 			break;
13497c478bd9Sstevel@tonic-gate 		}
13507c478bd9Sstevel@tonic-gate 		if (mp->b_cont != NULL) {
13517c478bd9Sstevel@tonic-gate 			freemsg(mp->b_cont);
13527c478bd9Sstevel@tonic-gate 		}
13537c478bd9Sstevel@tonic-gate 		mp->b_cont = nmp;		/* chain our response mblk */
13547c478bd9Sstevel@tonic-gate 		/*
13557c478bd9Sstevel@tonic-gate 		 * Walk the global ppa list and determine the lowest
13567c478bd9Sstevel@tonic-gate 		 * available ppa_id number to be used.
13577c478bd9Sstevel@tonic-gate 		 */
13587c478bd9Sstevel@tonic-gate 		if (ppa_id == (uint32_t)-1)
13597c478bd9Sstevel@tonic-gate 			ppa_id = 0;
13607c478bd9Sstevel@tonic-gate 		for (ppa = ppa_list; ppa != NULL; ppa = ppa->ppa_nextppa) {
13617c478bd9Sstevel@tonic-gate 			if (ppa_id == (uint32_t)-2) {
13627c478bd9Sstevel@tonic-gate 				if (ppa->ppa_ctl == NULL)
13637c478bd9Sstevel@tonic-gate 					break;
13647c478bd9Sstevel@tonic-gate 			} else {
13657c478bd9Sstevel@tonic-gate 				if (ppa_id < ppa->ppa_ppa_id)
13667c478bd9Sstevel@tonic-gate 					break;
13677c478bd9Sstevel@tonic-gate 				if (ppa_id == ppa->ppa_ppa_id)
13687c478bd9Sstevel@tonic-gate 					++ppa_id;
13697c478bd9Sstevel@tonic-gate 			}
13707c478bd9Sstevel@tonic-gate 		}
13717c478bd9Sstevel@tonic-gate 		if (ppa_id == (uint32_t)-2) {
13727c478bd9Sstevel@tonic-gate 			if (ppa == NULL) {
13737c478bd9Sstevel@tonic-gate 				error = ENXIO;
13747c478bd9Sstevel@tonic-gate 				break;
13757c478bd9Sstevel@tonic-gate 			}
13767c478bd9Sstevel@tonic-gate 			/* Clear timestamp and lastmod flags */
13777c478bd9Sstevel@tonic-gate 			ppa->ppa_flags = 0;
13787c478bd9Sstevel@tonic-gate 		} else {
13797c478bd9Sstevel@tonic-gate 			ppa = sppp_create_ppa(ppa_id);
13807c478bd9Sstevel@tonic-gate 			if (ppa == NULL) {
13817c478bd9Sstevel@tonic-gate 				error = ENOMEM;
13827c478bd9Sstevel@tonic-gate 				break;
13837c478bd9Sstevel@tonic-gate 			}
13847c478bd9Sstevel@tonic-gate 		}
13857c478bd9Sstevel@tonic-gate 
13867c478bd9Sstevel@tonic-gate 		sps->sps_ppa = ppa;		/* chain the ppa structure */
13877c478bd9Sstevel@tonic-gate 		sps->sps_npmode = NPMODE_PASS;	/* network packets may travel */
13887c478bd9Sstevel@tonic-gate 		sps->sps_flags |= SPS_CONTROL;	/* this is the control stream */
13897c478bd9Sstevel@tonic-gate 
13907c478bd9Sstevel@tonic-gate 		ppa->ppa_refcnt++;		/* new PPA reference */
13917c478bd9Sstevel@tonic-gate 		ppa->ppa_ctl = sps;		/* back ptr to upper stream */
13927c478bd9Sstevel@tonic-gate 		/*
13937c478bd9Sstevel@tonic-gate 		 * Return the newly created ppa_id to the requestor and
13947c478bd9Sstevel@tonic-gate 		 * acnowledge the request.
13957c478bd9Sstevel@tonic-gate 		 */
13967c478bd9Sstevel@tonic-gate 		*(uint32_t *)nmp->b_wptr = ppa->ppa_ppa_id;
13977c478bd9Sstevel@tonic-gate 		nmp->b_wptr += sizeof (uint32_t);
13987c478bd9Sstevel@tonic-gate 
13997c478bd9Sstevel@tonic-gate 		if (IS_SPS_KDEBUG(sps)) {
14007c478bd9Sstevel@tonic-gate 			SPDEBUG(PPP_DRV_NAME
14017c478bd9Sstevel@tonic-gate 			    "/%d: PPPIO_NEWPPA ppa_id=%d sps=0x%p flags=0x%b "
14027c478bd9Sstevel@tonic-gate 			    "ppa=0x%p flags=0x%b\n", sps->sps_mn_id, ppa_id,
14037c478bd9Sstevel@tonic-gate 			    (void *)sps, sps->sps_flags, SPS_FLAGS_STR,
14047c478bd9Sstevel@tonic-gate 			    (void *)ppa, ppa->ppa_flags,
14057c478bd9Sstevel@tonic-gate 			    PPA_FLAGS_STR);
14067c478bd9Sstevel@tonic-gate 		}
14077c478bd9Sstevel@tonic-gate 		count = msgsize(nmp);
14087c478bd9Sstevel@tonic-gate 		error = 0;
14097c478bd9Sstevel@tonic-gate 		break;
14107c478bd9Sstevel@tonic-gate 	}
14117c478bd9Sstevel@tonic-gate 
14127c478bd9Sstevel@tonic-gate 	if (error == 0) {
14137c478bd9Sstevel@tonic-gate 		/* Success; tell the user. */
14147c478bd9Sstevel@tonic-gate 		miocack(q, mp, count, 0);
14157c478bd9Sstevel@tonic-gate 	} else {
14167c478bd9Sstevel@tonic-gate 		/* Failure; send error back upstream. */
14177c478bd9Sstevel@tonic-gate 		miocnak(q, mp, 0, error);
14187c478bd9Sstevel@tonic-gate 	}
14197c478bd9Sstevel@tonic-gate }
14207c478bd9Sstevel@tonic-gate 
14217c478bd9Sstevel@tonic-gate /*
14227c478bd9Sstevel@tonic-gate  * sppp_send()
14237c478bd9Sstevel@tonic-gate  *
14247c478bd9Sstevel@tonic-gate  * MT-Perimeters:
14257c478bd9Sstevel@tonic-gate  *    shared inner, shared outer.
14267c478bd9Sstevel@tonic-gate  *
14277c478bd9Sstevel@tonic-gate  * Description:
14287c478bd9Sstevel@tonic-gate  *    Called by sppp_uwput to handle M_DATA message type.  Returns
14297c478bd9Sstevel@tonic-gate  *    queue_t for putnext, or NULL to mean that the packet was
14307c478bd9Sstevel@tonic-gate  *    handled internally.
14317c478bd9Sstevel@tonic-gate  */
14327c478bd9Sstevel@tonic-gate static queue_t *
14337c478bd9Sstevel@tonic-gate sppp_send(queue_t *q, mblk_t **mpp, spppstr_t *sps)
14347c478bd9Sstevel@tonic-gate {
14357c478bd9Sstevel@tonic-gate 	mblk_t	*mp;
14367c478bd9Sstevel@tonic-gate 	sppa_t	*ppa;
14377c478bd9Sstevel@tonic-gate 	int	is_promisc;
14387c478bd9Sstevel@tonic-gate 	int	msize;
14397c478bd9Sstevel@tonic-gate 	int	error = 0;
14407c478bd9Sstevel@tonic-gate 	queue_t	*nextq;
14417c478bd9Sstevel@tonic-gate 
14427c478bd9Sstevel@tonic-gate 	ASSERT(mpp != NULL);
14437c478bd9Sstevel@tonic-gate 	mp = *mpp;
14447c478bd9Sstevel@tonic-gate 	ASSERT(q != NULL && q->q_ptr != NULL);
14457c478bd9Sstevel@tonic-gate 	ASSERT(mp != NULL && mp->b_rptr != NULL);
14467c478bd9Sstevel@tonic-gate 	ASSERT(sps != NULL);
14477c478bd9Sstevel@tonic-gate 	ASSERT(q->q_ptr == sps);
14487c478bd9Sstevel@tonic-gate 	/*
14497c478bd9Sstevel@tonic-gate 	 * We only let M_DATA through if the sender is either the control
14507c478bd9Sstevel@tonic-gate 	 * stream (for PPP control packets) or one of the network streams
14517c478bd9Sstevel@tonic-gate 	 * (for IP packets) in IP fastpath mode. If this stream is not attached
14527c478bd9Sstevel@tonic-gate 	 * to any ppas, then discard data coming down through this stream.
14537c478bd9Sstevel@tonic-gate 	 */
14547c478bd9Sstevel@tonic-gate 	ppa = sps->sps_ppa;
14557c478bd9Sstevel@tonic-gate 	if (ppa == NULL) {
14567c478bd9Sstevel@tonic-gate 		ASSERT(!IS_SPS_CONTROL(sps));
14577c478bd9Sstevel@tonic-gate 		error = ENOLINK;
14587c478bd9Sstevel@tonic-gate 	} else if (!IS_SPS_CONTROL(sps) && !IS_SPS_FASTPATH(sps)) {
14597c478bd9Sstevel@tonic-gate 		error = EPROTO;
14607c478bd9Sstevel@tonic-gate 	}
14617c478bd9Sstevel@tonic-gate 	if (error != 0) {
14627c478bd9Sstevel@tonic-gate 		merror(q, mp, error);
14637c478bd9Sstevel@tonic-gate 		return (NULL);
14647c478bd9Sstevel@tonic-gate 	}
14657c478bd9Sstevel@tonic-gate 	msize = msgdsize(mp);
14667c478bd9Sstevel@tonic-gate 	if (msize > (ppa->ppa_mtu + PPP_HDRLEN)) {
14677c478bd9Sstevel@tonic-gate 		/* Log, and send it anyway */
14687c478bd9Sstevel@tonic-gate 		mutex_enter(&ppa->ppa_sta_lock);
14697c478bd9Sstevel@tonic-gate 		ppa->ppa_otoolongs++;
14707c478bd9Sstevel@tonic-gate 		mutex_exit(&ppa->ppa_sta_lock);
14717c478bd9Sstevel@tonic-gate 	} else if (msize < PPP_HDRLEN) {
14727c478bd9Sstevel@tonic-gate 		/*
14737c478bd9Sstevel@tonic-gate 		 * Log, and send it anyway. We log it because we get things
14747c478bd9Sstevel@tonic-gate 		 * in M_DATA form here, which tells us that the sender is
14757c478bd9Sstevel@tonic-gate 		 * either IP in fastpath transmission mode, or pppd. In both
14767c478bd9Sstevel@tonic-gate 		 * cases, they are currently expected to send the 4-bytes
14777c478bd9Sstevel@tonic-gate 		 * PPP header in front of any possible payloads.
14787c478bd9Sstevel@tonic-gate 		 */
14797c478bd9Sstevel@tonic-gate 		mutex_enter(&ppa->ppa_sta_lock);
14807c478bd9Sstevel@tonic-gate 		ppa->ppa_orunts++;
14817c478bd9Sstevel@tonic-gate 		mutex_exit(&ppa->ppa_sta_lock);
14827c478bd9Sstevel@tonic-gate 	}
14837c478bd9Sstevel@tonic-gate 
14847c478bd9Sstevel@tonic-gate 	if (IS_SPS_KDEBUG(sps)) {
14857c478bd9Sstevel@tonic-gate 		SPDEBUG(PPP_DRV_NAME
14867c478bd9Sstevel@tonic-gate 		    "/%d: M_DATA send (%d bytes) sps=0x%p flags=0x%b "
14877c478bd9Sstevel@tonic-gate 		    "ppa=0x%p flags=0x%b\n", sps->sps_mn_id, msize,
14887c478bd9Sstevel@tonic-gate 		    (void *)sps, sps->sps_flags, SPS_FLAGS_STR,
14897c478bd9Sstevel@tonic-gate 		    (void *)ppa, ppa->ppa_flags, PPA_FLAGS_STR);
14907c478bd9Sstevel@tonic-gate 	}
14917c478bd9Sstevel@tonic-gate 	/*
14927c478bd9Sstevel@tonic-gate 	 * Should there be any promiscuous stream(s), send the data up
14937c478bd9Sstevel@tonic-gate 	 * for each promiscuous stream that we recognize. Make sure that
14947c478bd9Sstevel@tonic-gate 	 * for fastpath, we skip the PPP header in the M_DATA mblk. We skip
14957c478bd9Sstevel@tonic-gate 	 * the control stream as we obviously never allow the control stream
14967c478bd9Sstevel@tonic-gate 	 * to become promiscous and bind to PPP_ALLSAP.
14977c478bd9Sstevel@tonic-gate 	 */
14987c478bd9Sstevel@tonic-gate 	rw_enter(&ppa->ppa_sib_lock, RW_READER);
14997c478bd9Sstevel@tonic-gate 	is_promisc = sps->sps_ppa->ppa_promicnt;
15007c478bd9Sstevel@tonic-gate 	if (is_promisc) {
15017c478bd9Sstevel@tonic-gate 		ASSERT(ppa->ppa_streams != NULL);
15027c478bd9Sstevel@tonic-gate 		sppp_dlprsendup(ppa->ppa_streams, mp, sps->sps_sap, B_TRUE);
15037c478bd9Sstevel@tonic-gate 	}
15047c478bd9Sstevel@tonic-gate 	rw_exit(&ppa->ppa_sib_lock);
15057c478bd9Sstevel@tonic-gate 	/*
15067c478bd9Sstevel@tonic-gate 	 * Only time-stamp the packet with hrtime if the upper stream
15077c478bd9Sstevel@tonic-gate 	 * is configured to do so.  PPP control (negotiation) messages
15087c478bd9Sstevel@tonic-gate 	 * are never considered link activity; only data is activity.
15097c478bd9Sstevel@tonic-gate 	 */
15107c478bd9Sstevel@tonic-gate 	if (!IS_SPS_CONTROL(sps) && IS_PPA_TIMESTAMP(ppa)) {
15117c478bd9Sstevel@tonic-gate 		ppa->ppa_lasttx = gethrtime();
15127c478bd9Sstevel@tonic-gate 	}
15137c478bd9Sstevel@tonic-gate 	/*
15147c478bd9Sstevel@tonic-gate 	 * If there's already a message in the write-side service queue,
15157c478bd9Sstevel@tonic-gate 	 * then queue this message there as well, otherwise, try to send
15167c478bd9Sstevel@tonic-gate 	 * it down to the module immediately below us.
15177c478bd9Sstevel@tonic-gate 	 */
15187c478bd9Sstevel@tonic-gate 	if (q->q_first != NULL ||
15197c478bd9Sstevel@tonic-gate 	    (nextq = sppp_outpkt(q, mpp, msize, sps)) == NULL) {
15207c478bd9Sstevel@tonic-gate 		mp = *mpp;
15217c478bd9Sstevel@tonic-gate 		if (mp != NULL && putq(q, mp) == 0) {
15227c478bd9Sstevel@tonic-gate 			mutex_enter(&ppa->ppa_sta_lock);
15237c478bd9Sstevel@tonic-gate 			ppa->ppa_oqdropped++;
15247c478bd9Sstevel@tonic-gate 			mutex_exit(&ppa->ppa_sta_lock);
15257c478bd9Sstevel@tonic-gate 			freemsg(mp);
15267c478bd9Sstevel@tonic-gate 		}
15277c478bd9Sstevel@tonic-gate 		return (NULL);
15287c478bd9Sstevel@tonic-gate 	}
15297c478bd9Sstevel@tonic-gate 	return (nextq);
15307c478bd9Sstevel@tonic-gate }
15317c478bd9Sstevel@tonic-gate 
15327c478bd9Sstevel@tonic-gate /*
15337c478bd9Sstevel@tonic-gate  * sppp_outpkt()
15347c478bd9Sstevel@tonic-gate  *
15357c478bd9Sstevel@tonic-gate  * MT-Perimeters:
15367c478bd9Sstevel@tonic-gate  *    shared inner, shared outer (if called from sppp_wput, sppp_dlunitdatareq).
15377c478bd9Sstevel@tonic-gate  *    exclusive inner, shared outer (if called from sppp_wsrv).
15387c478bd9Sstevel@tonic-gate  *
15397c478bd9Sstevel@tonic-gate  * Description:
15407c478bd9Sstevel@tonic-gate  *    Called from 1) sppp_uwput when processing a M_DATA fastpath message,
15417c478bd9Sstevel@tonic-gate  *    or 2) sppp_uwsrv when processing the upper write-side service queue.
15427c478bd9Sstevel@tonic-gate  *    For both cases, it prepares to send the data to the module below
15437c478bd9Sstevel@tonic-gate  *    this driver if there is a lower stream linked underneath. If none, then
15447c478bd9Sstevel@tonic-gate  *    the data will be sent upstream via the control channel to pppd.
15457c478bd9Sstevel@tonic-gate  *
15467c478bd9Sstevel@tonic-gate  * Returns:
15477c478bd9Sstevel@tonic-gate  *	Non-NULL queue_t if message should be sent now, otherwise
15487c478bd9Sstevel@tonic-gate  *	if *mpp == NULL, then message was freed, otherwise put *mpp
15497c478bd9Sstevel@tonic-gate  *	(back) on the queue.  (Does not do putq/putbq, since it's
15507c478bd9Sstevel@tonic-gate  *	called both from srv and put procedures.)
15517c478bd9Sstevel@tonic-gate  */
15527c478bd9Sstevel@tonic-gate static queue_t *
15537c478bd9Sstevel@tonic-gate sppp_outpkt(queue_t *q, mblk_t **mpp, int msize, spppstr_t *sps)
15547c478bd9Sstevel@tonic-gate {
15557c478bd9Sstevel@tonic-gate 	mblk_t		*mp;
15567c478bd9Sstevel@tonic-gate 	sppa_t		*ppa;
15577c478bd9Sstevel@tonic-gate 	enum NPmode	npmode;
15587c478bd9Sstevel@tonic-gate 	mblk_t		*mpnew;
15597c478bd9Sstevel@tonic-gate 
15607c478bd9Sstevel@tonic-gate 	ASSERT(mpp != NULL);
15617c478bd9Sstevel@tonic-gate 	mp = *mpp;
15627c478bd9Sstevel@tonic-gate 	ASSERT(q != NULL && q->q_ptr != NULL);
15637c478bd9Sstevel@tonic-gate 	ASSERT(mp != NULL && mp->b_rptr != NULL);
15647c478bd9Sstevel@tonic-gate 	ASSERT(sps != NULL);
15657c478bd9Sstevel@tonic-gate 
15667c478bd9Sstevel@tonic-gate 	ppa = sps->sps_ppa;
15677c478bd9Sstevel@tonic-gate 	npmode = sps->sps_npmode;
15687c478bd9Sstevel@tonic-gate 
15697c478bd9Sstevel@tonic-gate 	if (npmode == NPMODE_QUEUE) {
15707c478bd9Sstevel@tonic-gate 		ASSERT(!IS_SPS_CONTROL(sps));
15717c478bd9Sstevel@tonic-gate 		return (NULL);	/* queue it for later */
15727c478bd9Sstevel@tonic-gate 	} else if (ppa == NULL || ppa->ppa_ctl == NULL ||
15737c478bd9Sstevel@tonic-gate 	    npmode == NPMODE_DROP || npmode == NPMODE_ERROR) {
15747c478bd9Sstevel@tonic-gate 		/*
15757c478bd9Sstevel@tonic-gate 		 * This can not be the control stream, as it must always have
15767c478bd9Sstevel@tonic-gate 		 * a valid ppa, and its npmode must always be NPMODE_PASS.
15777c478bd9Sstevel@tonic-gate 		 */
15787c478bd9Sstevel@tonic-gate 		ASSERT(!IS_SPS_CONTROL(sps));
15797c478bd9Sstevel@tonic-gate 		if (npmode == NPMODE_DROP) {
15807c478bd9Sstevel@tonic-gate 			freemsg(mp);
15817c478bd9Sstevel@tonic-gate 		} else {
15827c478bd9Sstevel@tonic-gate 			/*
15837c478bd9Sstevel@tonic-gate 			 * If we no longer have the control stream, or if the
15847c478bd9Sstevel@tonic-gate 			 * mode is set to NPMODE_ERROR, then we need to tell IP
15857c478bd9Sstevel@tonic-gate 			 * that the interface need to be marked as down. In
15867c478bd9Sstevel@tonic-gate 			 * other words, we tell IP to be quiescent.
15877c478bd9Sstevel@tonic-gate 			 */
15887c478bd9Sstevel@tonic-gate 			merror(q, mp, EPROTO);
15897c478bd9Sstevel@tonic-gate 		}
15907c478bd9Sstevel@tonic-gate 		*mpp = NULL;
15917c478bd9Sstevel@tonic-gate 		return (NULL);	/* don't queue it */
15927c478bd9Sstevel@tonic-gate 	}
15937c478bd9Sstevel@tonic-gate 	/*
15947c478bd9Sstevel@tonic-gate 	 * Do we have a driver stream linked underneath ? If not, we need to
15957c478bd9Sstevel@tonic-gate 	 * notify pppd that the link needs to be brought up and configure
15967c478bd9Sstevel@tonic-gate 	 * this upper stream to drop subsequent outgoing packets. This is
15977c478bd9Sstevel@tonic-gate 	 * for demand-dialing, in which case pppd has done the IP plumbing
15987c478bd9Sstevel@tonic-gate 	 * but hasn't linked the driver stream underneath us. Therefore, when
15997c478bd9Sstevel@tonic-gate 	 * a packet is sent down the IP interface, a notification message
16007c478bd9Sstevel@tonic-gate 	 * will be sent up the control stream to pppd in order for it to
16017c478bd9Sstevel@tonic-gate 	 * establish the physical link. The driver stream is then expected
16027c478bd9Sstevel@tonic-gate 	 * to be linked underneath after physical link establishment is done.
16037c478bd9Sstevel@tonic-gate 	 */
16047c478bd9Sstevel@tonic-gate 	if (ppa->ppa_lower_wq == NULL) {
16057c478bd9Sstevel@tonic-gate 		ASSERT(ppa->ppa_ctl != NULL);
16067c478bd9Sstevel@tonic-gate 		ASSERT(ppa->ppa_ctl->sps_rq != NULL);
16077c478bd9Sstevel@tonic-gate 
16087c478bd9Sstevel@tonic-gate 		*mpp = NULL;
16097c478bd9Sstevel@tonic-gate 		mpnew = create_lsmsg(PPP_LINKSTAT_NEEDUP);
16107c478bd9Sstevel@tonic-gate 		if (mpnew == NULL) {
16117c478bd9Sstevel@tonic-gate 			freemsg(mp);
16127c478bd9Sstevel@tonic-gate 			mutex_enter(&ppa->ppa_sta_lock);
16137c478bd9Sstevel@tonic-gate 			ppa->ppa_allocbfail++;
16147c478bd9Sstevel@tonic-gate 			mutex_exit(&ppa->ppa_sta_lock);
16157c478bd9Sstevel@tonic-gate 			return (NULL);	/* don't queue it */
16167c478bd9Sstevel@tonic-gate 		}
16177c478bd9Sstevel@tonic-gate 		/* Include the data in the message for logging. */
16187c478bd9Sstevel@tonic-gate 		mpnew->b_cont = mp;
16197c478bd9Sstevel@tonic-gate 		mutex_enter(&ppa->ppa_sta_lock);
16207c478bd9Sstevel@tonic-gate 		ppa->ppa_lsneedup++;
16217c478bd9Sstevel@tonic-gate 		mutex_exit(&ppa->ppa_sta_lock);
16227c478bd9Sstevel@tonic-gate 		/*
16237c478bd9Sstevel@tonic-gate 		 * We need to set the mode to NPMODE_DROP, but should only
16247c478bd9Sstevel@tonic-gate 		 * do so when this stream is not the control stream.
16257c478bd9Sstevel@tonic-gate 		 */
16267c478bd9Sstevel@tonic-gate 		if (!IS_SPS_CONTROL(sps)) {
16277c478bd9Sstevel@tonic-gate 			sps->sps_npmode = NPMODE_DROP;
16287c478bd9Sstevel@tonic-gate 		}
16297c478bd9Sstevel@tonic-gate 		putnext(ppa->ppa_ctl->sps_rq, mpnew);
16307c478bd9Sstevel@tonic-gate 		return (NULL);	/* don't queue it */
16317c478bd9Sstevel@tonic-gate 	}
16327c478bd9Sstevel@tonic-gate 	/*
16337c478bd9Sstevel@tonic-gate 	 * If so, then try to send it down. The lower queue is only ever
16347c478bd9Sstevel@tonic-gate 	 * detached while holding an exclusive lock on the whole driver,
16357c478bd9Sstevel@tonic-gate 	 * so we can be confident that the lower queue is still there.
16367c478bd9Sstevel@tonic-gate 	 */
16377c478bd9Sstevel@tonic-gate 	if (bcanputnext(ppa->ppa_lower_wq, mp->b_band)) {
16387c478bd9Sstevel@tonic-gate 		mutex_enter(&ppa->ppa_sta_lock);
16397c478bd9Sstevel@tonic-gate 		ppa->ppa_stats.p.ppp_opackets++;
16407c478bd9Sstevel@tonic-gate 		if (IS_SPS_CONTROL(sps)) {
16417c478bd9Sstevel@tonic-gate 			ppa->ppa_opkt_ctl++;
16427c478bd9Sstevel@tonic-gate 		}
16437c478bd9Sstevel@tonic-gate 		ppa->ppa_stats.p.ppp_obytes += msize;
16447c478bd9Sstevel@tonic-gate 		mutex_exit(&ppa->ppa_sta_lock);
16457c478bd9Sstevel@tonic-gate 		return (ppa->ppa_lower_wq);	/* don't queue it */
16467c478bd9Sstevel@tonic-gate 	}
16477c478bd9Sstevel@tonic-gate 	return (NULL);	/* queue it for later */
16487c478bd9Sstevel@tonic-gate }
16497c478bd9Sstevel@tonic-gate 
16507c478bd9Sstevel@tonic-gate /*
16517c478bd9Sstevel@tonic-gate  * sppp_lwsrv()
16527c478bd9Sstevel@tonic-gate  *
16537c478bd9Sstevel@tonic-gate  * MT-Perimeters:
16547c478bd9Sstevel@tonic-gate  *    exclusive inner, shared outer.
16557c478bd9Sstevel@tonic-gate  *
16567c478bd9Sstevel@tonic-gate  * Description:
16577c478bd9Sstevel@tonic-gate  *    Lower write-side service procedure. No messages are ever placed on
16587c478bd9Sstevel@tonic-gate  *    the write queue here, this just back-enables all upper write side
16597c478bd9Sstevel@tonic-gate  *    service procedures.
16607c478bd9Sstevel@tonic-gate  */
16617c478bd9Sstevel@tonic-gate int
16627c478bd9Sstevel@tonic-gate sppp_lwsrv(queue_t *q)
16637c478bd9Sstevel@tonic-gate {
16647c478bd9Sstevel@tonic-gate 	sppa_t		*ppa;
16657c478bd9Sstevel@tonic-gate 	spppstr_t	*nextsib;
16667c478bd9Sstevel@tonic-gate 
16677c478bd9Sstevel@tonic-gate 	ASSERT(q != NULL && q->q_ptr != NULL);
16687c478bd9Sstevel@tonic-gate 	ppa = (sppa_t *)q->q_ptr;
16697c478bd9Sstevel@tonic-gate 	ASSERT(ppa != NULL);
16707c478bd9Sstevel@tonic-gate 
16717c478bd9Sstevel@tonic-gate 	rw_enter(&ppa->ppa_sib_lock, RW_READER);
16727c478bd9Sstevel@tonic-gate 	if ((nextsib = ppa->ppa_ctl) != NULL &&
16737c478bd9Sstevel@tonic-gate 	    WR(nextsib->sps_rq)->q_first != NULL)
16747c478bd9Sstevel@tonic-gate 		qenable(WR(nextsib->sps_rq));
16757c478bd9Sstevel@tonic-gate 	for (nextsib = ppa->ppa_streams; nextsib != NULL;
16767c478bd9Sstevel@tonic-gate 	    nextsib = nextsib->sps_nextsib) {
16777c478bd9Sstevel@tonic-gate 		if (WR(nextsib->sps_rq)->q_first != NULL) {
16787c478bd9Sstevel@tonic-gate 			qenable(WR(nextsib->sps_rq));
16797c478bd9Sstevel@tonic-gate 		}
16807c478bd9Sstevel@tonic-gate 	}
16817c478bd9Sstevel@tonic-gate 	rw_exit(&ppa->ppa_sib_lock);
16827c478bd9Sstevel@tonic-gate 	return (0);
16837c478bd9Sstevel@tonic-gate }
16847c478bd9Sstevel@tonic-gate 
16857c478bd9Sstevel@tonic-gate /*
16867c478bd9Sstevel@tonic-gate  * sppp_lrput()
16877c478bd9Sstevel@tonic-gate  *
16887c478bd9Sstevel@tonic-gate  * MT-Perimeters:
16897c478bd9Sstevel@tonic-gate  *    shared inner, shared outer.
16907c478bd9Sstevel@tonic-gate  *
16917c478bd9Sstevel@tonic-gate  * Description:
16927c478bd9Sstevel@tonic-gate  *    Lower read-side put procedure. Messages from below get here.
16937c478bd9Sstevel@tonic-gate  *    Data messages are handled separately to limit stack usage
16947c478bd9Sstevel@tonic-gate  *    going into IP.
16957c478bd9Sstevel@tonic-gate  */
16967c478bd9Sstevel@tonic-gate int
16977c478bd9Sstevel@tonic-gate sppp_lrput(queue_t *q, mblk_t *mp)
16987c478bd9Sstevel@tonic-gate {
16997c478bd9Sstevel@tonic-gate 	sppa_t		*ppa;
17007c478bd9Sstevel@tonic-gate 	spppstr_t	*sps;
17017c478bd9Sstevel@tonic-gate 
17027c478bd9Sstevel@tonic-gate 	ppa = (sppa_t *)q->q_ptr;
17037c478bd9Sstevel@tonic-gate 	sps = ppa->ppa_ctl;
17047c478bd9Sstevel@tonic-gate 
17057c478bd9Sstevel@tonic-gate 	if (MTYPE(mp) != M_DATA) {
17067c478bd9Sstevel@tonic-gate 		sppp_recv_nondata(q, mp, sps);
17077c478bd9Sstevel@tonic-gate 	} else if (sps == NULL) {
17087c478bd9Sstevel@tonic-gate 		freemsg(mp);
17097c478bd9Sstevel@tonic-gate 	} else if ((q = sppp_recv(q, &mp, sps)) != NULL) {
17107c478bd9Sstevel@tonic-gate 		putnext(q, mp);
17117c478bd9Sstevel@tonic-gate 	}
17127c478bd9Sstevel@tonic-gate 	return (0);
17137c478bd9Sstevel@tonic-gate }
17147c478bd9Sstevel@tonic-gate 
17157c478bd9Sstevel@tonic-gate /*
17167c478bd9Sstevel@tonic-gate  * sppp_recv_nondata()
17177c478bd9Sstevel@tonic-gate  *
17187c478bd9Sstevel@tonic-gate  * MT-Perimeters:
17197c478bd9Sstevel@tonic-gate  *    shared inner, shared outer.
17207c478bd9Sstevel@tonic-gate  *
17217c478bd9Sstevel@tonic-gate  * Description:
17227c478bd9Sstevel@tonic-gate  *    All received non-data messages come through here.
17237c478bd9Sstevel@tonic-gate  */
17247c478bd9Sstevel@tonic-gate static void
17257c478bd9Sstevel@tonic-gate sppp_recv_nondata(queue_t *q, mblk_t *mp, spppstr_t *ctlsps)
17267c478bd9Sstevel@tonic-gate {
17277c478bd9Sstevel@tonic-gate 	sppa_t		*ppa;
17287c478bd9Sstevel@tonic-gate 	spppstr_t	*destsps;
17297c478bd9Sstevel@tonic-gate 	struct iocblk	*iop;
17307c478bd9Sstevel@tonic-gate 
17317c478bd9Sstevel@tonic-gate 	ppa = (sppa_t *)q->q_ptr;
17327c478bd9Sstevel@tonic-gate 	ctlsps = ppa->ppa_ctl;
17337c478bd9Sstevel@tonic-gate 
17347c478bd9Sstevel@tonic-gate 	switch (MTYPE(mp)) {
17357c478bd9Sstevel@tonic-gate 	case M_CTL:
17367c478bd9Sstevel@tonic-gate 		mutex_enter(&ppa->ppa_sta_lock);
17377c478bd9Sstevel@tonic-gate 		if (*mp->b_rptr == PPPCTL_IERROR) {
17387c478bd9Sstevel@tonic-gate 			ppa->ppa_stats.p.ppp_ierrors++;
17397c478bd9Sstevel@tonic-gate 			ppa->ppa_ierr_low++;
17407c478bd9Sstevel@tonic-gate 			ppa->ppa_mctlsknown++;
17417c478bd9Sstevel@tonic-gate 		} else if (*mp->b_rptr == PPPCTL_OERROR) {
17427c478bd9Sstevel@tonic-gate 			ppa->ppa_stats.p.ppp_oerrors++;
17437c478bd9Sstevel@tonic-gate 			ppa->ppa_oerr_low++;
17447c478bd9Sstevel@tonic-gate 			ppa->ppa_mctlsknown++;
17457c478bd9Sstevel@tonic-gate 		} else {
17467c478bd9Sstevel@tonic-gate 			ppa->ppa_mctlsunknown++;
17477c478bd9Sstevel@tonic-gate 		}
17487c478bd9Sstevel@tonic-gate 		mutex_exit(&ppa->ppa_sta_lock);
17497c478bd9Sstevel@tonic-gate 		freemsg(mp);
17507c478bd9Sstevel@tonic-gate 		break;
17517c478bd9Sstevel@tonic-gate 	case M_IOCTL:
17527c478bd9Sstevel@tonic-gate 		miocnak(q, mp, 0, EINVAL);
17537c478bd9Sstevel@tonic-gate 		break;
17547c478bd9Sstevel@tonic-gate 	case M_IOCACK:
17557c478bd9Sstevel@tonic-gate 	case M_IOCNAK:
17567c478bd9Sstevel@tonic-gate 		iop = (struct iocblk *)mp->b_rptr;
17577c478bd9Sstevel@tonic-gate 		ASSERT(iop != NULL);
17587c478bd9Sstevel@tonic-gate 		/*
17597c478bd9Sstevel@tonic-gate 		 * Attempt to match up the response with the stream that the
17607c478bd9Sstevel@tonic-gate 		 * request came from. If ioc_id doesn't match the one that we
17617c478bd9Sstevel@tonic-gate 		 * recorded, then discard this message.
17627c478bd9Sstevel@tonic-gate 		 */
17637c478bd9Sstevel@tonic-gate 		rw_enter(&ppa->ppa_sib_lock, RW_READER);
17647c478bd9Sstevel@tonic-gate 		if ((destsps = ctlsps) == NULL ||
17657c478bd9Sstevel@tonic-gate 		    destsps->sps_ioc_id != iop->ioc_id) {
17667c478bd9Sstevel@tonic-gate 			destsps = ppa->ppa_streams;
17677c478bd9Sstevel@tonic-gate 			while (destsps != NULL) {
17687c478bd9Sstevel@tonic-gate 				if (destsps->sps_ioc_id == iop->ioc_id) {
17697c478bd9Sstevel@tonic-gate 					break;	/* found the upper stream */
17707c478bd9Sstevel@tonic-gate 				}
17717c478bd9Sstevel@tonic-gate 				destsps = destsps->sps_nextsib;
17727c478bd9Sstevel@tonic-gate 			}
17737c478bd9Sstevel@tonic-gate 		}
17747c478bd9Sstevel@tonic-gate 		rw_exit(&ppa->ppa_sib_lock);
17757c478bd9Sstevel@tonic-gate 		if (destsps == NULL) {
17767c478bd9Sstevel@tonic-gate 			mutex_enter(&ppa->ppa_sta_lock);
17777c478bd9Sstevel@tonic-gate 			ppa->ppa_ioctlsfwderr++;
17787c478bd9Sstevel@tonic-gate 			mutex_exit(&ppa->ppa_sta_lock);
17797c478bd9Sstevel@tonic-gate 			freemsg(mp);
17807c478bd9Sstevel@tonic-gate 			break;
17817c478bd9Sstevel@tonic-gate 		}
17827c478bd9Sstevel@tonic-gate 		mutex_enter(&ppa->ppa_sta_lock);
17837c478bd9Sstevel@tonic-gate 		ppa->ppa_ioctlsfwdok++;
17847c478bd9Sstevel@tonic-gate 		mutex_exit(&ppa->ppa_sta_lock);
17857c478bd9Sstevel@tonic-gate 		putnext(destsps->sps_rq, mp);
17867c478bd9Sstevel@tonic-gate 		break;
17877c478bd9Sstevel@tonic-gate 	case M_HANGUP:
17887c478bd9Sstevel@tonic-gate 		/*
17897c478bd9Sstevel@tonic-gate 		 * Free the original mblk_t. We don't really want to send
17907c478bd9Sstevel@tonic-gate 		 * a M_HANGUP message upstream, so we need to translate this
17917c478bd9Sstevel@tonic-gate 		 * message into something else.
17927c478bd9Sstevel@tonic-gate 		 */
17937c478bd9Sstevel@tonic-gate 		freemsg(mp);
17947c478bd9Sstevel@tonic-gate 		if (ctlsps == NULL)
17957c478bd9Sstevel@tonic-gate 			break;
17967c478bd9Sstevel@tonic-gate 		mp = create_lsmsg(PPP_LINKSTAT_HANGUP);
17977c478bd9Sstevel@tonic-gate 		if (mp == NULL) {
17987c478bd9Sstevel@tonic-gate 			mutex_enter(&ppa->ppa_sta_lock);
17997c478bd9Sstevel@tonic-gate 			ppa->ppa_allocbfail++;
18007c478bd9Sstevel@tonic-gate 			mutex_exit(&ppa->ppa_sta_lock);
18017c478bd9Sstevel@tonic-gate 			break;
18027c478bd9Sstevel@tonic-gate 		}
18037c478bd9Sstevel@tonic-gate 		mutex_enter(&ppa->ppa_sta_lock);
18047c478bd9Sstevel@tonic-gate 		ppa->ppa_lsdown++;
18057c478bd9Sstevel@tonic-gate 		mutex_exit(&ppa->ppa_sta_lock);
18067c478bd9Sstevel@tonic-gate 		putnext(ctlsps->sps_rq, mp);
18077c478bd9Sstevel@tonic-gate 		break;
18087c478bd9Sstevel@tonic-gate 	case M_FLUSH:
18097c478bd9Sstevel@tonic-gate 		if (*mp->b_rptr & FLUSHR) {
18107c478bd9Sstevel@tonic-gate 			flushq(q, FLUSHDATA);
18117c478bd9Sstevel@tonic-gate 		}
18127c478bd9Sstevel@tonic-gate 		if (*mp->b_rptr & FLUSHW) {
18137c478bd9Sstevel@tonic-gate 			*mp->b_rptr &= ~FLUSHR;
18147c478bd9Sstevel@tonic-gate 			qreply(q, mp);
18157c478bd9Sstevel@tonic-gate 		} else {
18167c478bd9Sstevel@tonic-gate 			freemsg(mp);
18177c478bd9Sstevel@tonic-gate 		}
18187c478bd9Sstevel@tonic-gate 		break;
18197c478bd9Sstevel@tonic-gate 	default:
18207c478bd9Sstevel@tonic-gate 		if (ctlsps != NULL &&
18217c478bd9Sstevel@tonic-gate 		    (queclass(mp) == QPCTL) || canputnext(ctlsps->sps_rq)) {
18227c478bd9Sstevel@tonic-gate 			putnext(ctlsps->sps_rq, mp);
18237c478bd9Sstevel@tonic-gate 		} else {
18247c478bd9Sstevel@tonic-gate 			mutex_enter(&ppa->ppa_sta_lock);
18257c478bd9Sstevel@tonic-gate 			ppa->ppa_iqdropped++;
18267c478bd9Sstevel@tonic-gate 			mutex_exit(&ppa->ppa_sta_lock);
18277c478bd9Sstevel@tonic-gate 			freemsg(mp);
18287c478bd9Sstevel@tonic-gate 		}
18297c478bd9Sstevel@tonic-gate 		break;
18307c478bd9Sstevel@tonic-gate 	}
18317c478bd9Sstevel@tonic-gate }
18327c478bd9Sstevel@tonic-gate 
18337c478bd9Sstevel@tonic-gate /*
18347c478bd9Sstevel@tonic-gate  * sppp_recv()
18357c478bd9Sstevel@tonic-gate  *
18367c478bd9Sstevel@tonic-gate  * MT-Perimeters:
18377c478bd9Sstevel@tonic-gate  *    shared inner, shared outer.
18387c478bd9Sstevel@tonic-gate  *
18397c478bd9Sstevel@tonic-gate  * Description:
18407c478bd9Sstevel@tonic-gate  *    Receive function called by sppp_lrput.  Finds appropriate
18417c478bd9Sstevel@tonic-gate  *    receive stream and does accounting.
18427c478bd9Sstevel@tonic-gate  */
18437c478bd9Sstevel@tonic-gate static queue_t *
18447c478bd9Sstevel@tonic-gate sppp_recv(queue_t *q, mblk_t **mpp, spppstr_t *ctlsps)
18457c478bd9Sstevel@tonic-gate {
18467c478bd9Sstevel@tonic-gate 	mblk_t		*mp;
18477c478bd9Sstevel@tonic-gate 	int		len;
18487c478bd9Sstevel@tonic-gate 	sppa_t		*ppa;
18497c478bd9Sstevel@tonic-gate 	spppstr_t	*destsps;
18507c478bd9Sstevel@tonic-gate 	mblk_t		*zmp;
18517c478bd9Sstevel@tonic-gate 	uint32_t	npflagpos;
18527c478bd9Sstevel@tonic-gate 
18537c478bd9Sstevel@tonic-gate 	ASSERT(mpp != NULL);
18547c478bd9Sstevel@tonic-gate 	mp = *mpp;
18557c478bd9Sstevel@tonic-gate 	ASSERT(q != NULL && q->q_ptr != NULL);
18567c478bd9Sstevel@tonic-gate 	ASSERT(mp != NULL && mp->b_rptr != NULL);
18577c478bd9Sstevel@tonic-gate 	ASSERT(ctlsps != NULL);
18587c478bd9Sstevel@tonic-gate 	ASSERT(IS_SPS_CONTROL(ctlsps));
18597c478bd9Sstevel@tonic-gate 	ppa = ctlsps->sps_ppa;
18607c478bd9Sstevel@tonic-gate 	ASSERT(ppa != NULL && ppa->ppa_ctl != NULL);
18617c478bd9Sstevel@tonic-gate 
18627c478bd9Sstevel@tonic-gate 	len = msgdsize(mp);
18637c478bd9Sstevel@tonic-gate 	mutex_enter(&ppa->ppa_sta_lock);
18647c478bd9Sstevel@tonic-gate 	ppa->ppa_stats.p.ppp_ibytes += len;
18657c478bd9Sstevel@tonic-gate 	mutex_exit(&ppa->ppa_sta_lock);
18667c478bd9Sstevel@tonic-gate 	/*
18677c478bd9Sstevel@tonic-gate 	 * If the entire data size of the mblk is less than the length of the
18687c478bd9Sstevel@tonic-gate 	 * PPP header, then free it. We can't do much with such message anyway,
18697c478bd9Sstevel@tonic-gate 	 * since we can't really determine what the PPP protocol type is.
18707c478bd9Sstevel@tonic-gate 	 */
18717c478bd9Sstevel@tonic-gate 	if (len < PPP_HDRLEN) {
18727c478bd9Sstevel@tonic-gate 		/* Log, and free it */
18737c478bd9Sstevel@tonic-gate 		mutex_enter(&ppa->ppa_sta_lock);
18747c478bd9Sstevel@tonic-gate 		ppa->ppa_irunts++;
18757c478bd9Sstevel@tonic-gate 		mutex_exit(&ppa->ppa_sta_lock);
18767c478bd9Sstevel@tonic-gate 		freemsg(mp);
18777c478bd9Sstevel@tonic-gate 		return (NULL);
18787c478bd9Sstevel@tonic-gate 	} else if (len > (ppa->ppa_mru + PPP_HDRLEN)) {
18797c478bd9Sstevel@tonic-gate 		/* Log, and accept it anyway */
18807c478bd9Sstevel@tonic-gate 		mutex_enter(&ppa->ppa_sta_lock);
18817c478bd9Sstevel@tonic-gate 		ppa->ppa_itoolongs++;
18827c478bd9Sstevel@tonic-gate 		mutex_exit(&ppa->ppa_sta_lock);
18837c478bd9Sstevel@tonic-gate 	}
18847c478bd9Sstevel@tonic-gate 	/*
18857c478bd9Sstevel@tonic-gate 	 * We need at least be able to read the PPP protocol from the header,
18867c478bd9Sstevel@tonic-gate 	 * so if the first message block is too small, then we concatenate the
18877c478bd9Sstevel@tonic-gate 	 * rest of the following blocks into one message.
18887c478bd9Sstevel@tonic-gate 	 */
18897c478bd9Sstevel@tonic-gate 	if (MBLKL(mp) < PPP_HDRLEN) {
18907c478bd9Sstevel@tonic-gate 		zmp = msgpullup(mp, PPP_HDRLEN);
18917c478bd9Sstevel@tonic-gate 		freemsg(mp);
18927c478bd9Sstevel@tonic-gate 		mp = zmp;
18937c478bd9Sstevel@tonic-gate 		if (mp == NULL) {
18947c478bd9Sstevel@tonic-gate 			mutex_enter(&ppa->ppa_sta_lock);
18957c478bd9Sstevel@tonic-gate 			ppa->ppa_allocbfail++;
18967c478bd9Sstevel@tonic-gate 			mutex_exit(&ppa->ppa_sta_lock);
18977c478bd9Sstevel@tonic-gate 			return (NULL);
18987c478bd9Sstevel@tonic-gate 		}
18997c478bd9Sstevel@tonic-gate 		*mpp = mp;
19007c478bd9Sstevel@tonic-gate 	}
19017c478bd9Sstevel@tonic-gate 	/*
19027c478bd9Sstevel@tonic-gate 	 * Hold this packet in the control-queue until
19037c478bd9Sstevel@tonic-gate 	 * the matching network-layer upper stream for the PPP protocol (sap)
19047c478bd9Sstevel@tonic-gate 	 * has not been plumbed and configured
19057c478bd9Sstevel@tonic-gate 	 */
19067c478bd9Sstevel@tonic-gate 	npflagpos = sppp_ppp2np(PPP_PROTOCOL(mp->b_rptr));
19077c478bd9Sstevel@tonic-gate 	mutex_enter(&ppa->ppa_npmutex);
19087c478bd9Sstevel@tonic-gate 	if (npflagpos != 0 && (ppa->ppa_npflag & (1 << npflagpos))) {
19097c478bd9Sstevel@tonic-gate 		/*
19107c478bd9Sstevel@tonic-gate 		 * proto is currently blocked; Hold up to 4 packets
19117c478bd9Sstevel@tonic-gate 		 * in the kernel.
19127c478bd9Sstevel@tonic-gate 		 */
19137c478bd9Sstevel@tonic-gate 		if (ppa->ppa_holdpkts[npflagpos] > 3 ||
19147c478bd9Sstevel@tonic-gate 		    putq(ctlsps->sps_rq, mp) == 0)
19157c478bd9Sstevel@tonic-gate 			freemsg(mp);
19167c478bd9Sstevel@tonic-gate 		else
19177c478bd9Sstevel@tonic-gate 			ppa->ppa_holdpkts[npflagpos]++;
19187c478bd9Sstevel@tonic-gate 		mutex_exit(&ppa->ppa_npmutex);
19197c478bd9Sstevel@tonic-gate 		return (NULL);
19207c478bd9Sstevel@tonic-gate 	}
19217c478bd9Sstevel@tonic-gate 	mutex_exit(&ppa->ppa_npmutex);
19227c478bd9Sstevel@tonic-gate 	/*
19237c478bd9Sstevel@tonic-gate 	 * Try to find a matching network-layer upper stream for the specified
19247c478bd9Sstevel@tonic-gate 	 * PPP protocol (sap), and if none is found, send this frame up the
19257c478bd9Sstevel@tonic-gate 	 * control stream.
19267c478bd9Sstevel@tonic-gate 	 */
19277c478bd9Sstevel@tonic-gate 	destsps = sppp_inpkt(q, mp, ctlsps);
19287c478bd9Sstevel@tonic-gate 	if (destsps == NULL) {
19297c478bd9Sstevel@tonic-gate 		mutex_enter(&ppa->ppa_sta_lock);
19307c478bd9Sstevel@tonic-gate 		ppa->ppa_ipkt_ctl++;
19317c478bd9Sstevel@tonic-gate 		mutex_exit(&ppa->ppa_sta_lock);
19327c478bd9Sstevel@tonic-gate 		if (canputnext(ctlsps->sps_rq)) {
19337c478bd9Sstevel@tonic-gate 			if (IS_SPS_KDEBUG(ctlsps)) {
19347c478bd9Sstevel@tonic-gate 				SPDEBUG(PPP_DRV_NAME
19357c478bd9Sstevel@tonic-gate 				    "/%d: M_DATA recv (%d bytes) sps=0x%p "
19367c478bd9Sstevel@tonic-gate 				    "flags=0x%b ppa=0x%p flags=0x%b\n",
19377c478bd9Sstevel@tonic-gate 				    ctlsps->sps_mn_id, len, (void *)ctlsps,
19387c478bd9Sstevel@tonic-gate 				    ctlsps->sps_flags, SPS_FLAGS_STR,
19397c478bd9Sstevel@tonic-gate 				    (void *)ppa, ppa->ppa_flags,
19407c478bd9Sstevel@tonic-gate 				    PPA_FLAGS_STR);
19417c478bd9Sstevel@tonic-gate 			}
19427c478bd9Sstevel@tonic-gate 			return (ctlsps->sps_rq);
19437c478bd9Sstevel@tonic-gate 		} else {
19447c478bd9Sstevel@tonic-gate 			mutex_enter(&ppa->ppa_sta_lock);
19457c478bd9Sstevel@tonic-gate 			ppa->ppa_iqdropped++;
19467c478bd9Sstevel@tonic-gate 			mutex_exit(&ppa->ppa_sta_lock);
19477c478bd9Sstevel@tonic-gate 			freemsg(mp);
19487c478bd9Sstevel@tonic-gate 			return (NULL);
19497c478bd9Sstevel@tonic-gate 		}
19507c478bd9Sstevel@tonic-gate 	}
19517c478bd9Sstevel@tonic-gate 	if (canputnext(destsps->sps_rq)) {
19527c478bd9Sstevel@tonic-gate 		if (IS_SPS_KDEBUG(destsps)) {
19537c478bd9Sstevel@tonic-gate 			SPDEBUG(PPP_DRV_NAME
19547c478bd9Sstevel@tonic-gate 			    "/%d: M_DATA recv (%d bytes) sps=0x%p flags=0x%b "
19557c478bd9Sstevel@tonic-gate 			    "ppa=0x%p flags=0x%b\n", destsps->sps_mn_id, len,
19567c478bd9Sstevel@tonic-gate 			    (void *)destsps, destsps->sps_flags,
19577c478bd9Sstevel@tonic-gate 			    SPS_FLAGS_STR, (void *)ppa, ppa->ppa_flags,
19587c478bd9Sstevel@tonic-gate 			    PPA_FLAGS_STR);
19597c478bd9Sstevel@tonic-gate 		}
19607c478bd9Sstevel@tonic-gate 		/*
19617c478bd9Sstevel@tonic-gate 		 * If fastpath is enabled on the network-layer stream, then
19627c478bd9Sstevel@tonic-gate 		 * make sure we skip over the PPP header, otherwise, we wrap
19637c478bd9Sstevel@tonic-gate 		 * the message in a DLPI message.
19647c478bd9Sstevel@tonic-gate 		 */
19657c478bd9Sstevel@tonic-gate 		if (IS_SPS_FASTPATH(destsps)) {
19667c478bd9Sstevel@tonic-gate 			mp->b_rptr += PPP_HDRLEN;
19677c478bd9Sstevel@tonic-gate 			return (destsps->sps_rq);
19687c478bd9Sstevel@tonic-gate 		} else {
19697c478bd9Sstevel@tonic-gate 			spppstr_t *uqs = (spppstr_t *)destsps->sps_rq->q_ptr;
19707c478bd9Sstevel@tonic-gate 			ASSERT(uqs != NULL);
19717c478bd9Sstevel@tonic-gate 			mp->b_rptr += PPP_HDRLEN;
19727c478bd9Sstevel@tonic-gate 			mp = sppp_dladdud(uqs, mp, uqs->sps_sap, B_FALSE);
19737c478bd9Sstevel@tonic-gate 			if (mp != NULL) {
19747c478bd9Sstevel@tonic-gate 				*mpp = mp;
19757c478bd9Sstevel@tonic-gate 				return (destsps->sps_rq);
19767c478bd9Sstevel@tonic-gate 			} else {
19777c478bd9Sstevel@tonic-gate 				mutex_enter(&ppa->ppa_sta_lock);
19787c478bd9Sstevel@tonic-gate 				ppa->ppa_allocbfail++;
19797c478bd9Sstevel@tonic-gate 				mutex_exit(&ppa->ppa_sta_lock);
19807c478bd9Sstevel@tonic-gate 				/* mp already freed by sppp_dladdud */
19817c478bd9Sstevel@tonic-gate 				return (NULL);
19827c478bd9Sstevel@tonic-gate 			}
19837c478bd9Sstevel@tonic-gate 		}
19847c478bd9Sstevel@tonic-gate 	} else {
19857c478bd9Sstevel@tonic-gate 		mutex_enter(&ppa->ppa_sta_lock);
19867c478bd9Sstevel@tonic-gate 		ppa->ppa_iqdropped++;
19877c478bd9Sstevel@tonic-gate 		mutex_exit(&ppa->ppa_sta_lock);
19887c478bd9Sstevel@tonic-gate 		freemsg(mp);
19897c478bd9Sstevel@tonic-gate 		return (NULL);
19907c478bd9Sstevel@tonic-gate 	}
19917c478bd9Sstevel@tonic-gate }
19927c478bd9Sstevel@tonic-gate 
19937c478bd9Sstevel@tonic-gate /*
19947c478bd9Sstevel@tonic-gate  * sppp_inpkt()
19957c478bd9Sstevel@tonic-gate  *
19967c478bd9Sstevel@tonic-gate  * MT-Perimeters:
19977c478bd9Sstevel@tonic-gate  *    shared inner, shared outer.
19987c478bd9Sstevel@tonic-gate  *
19997c478bd9Sstevel@tonic-gate  * Description:
20007c478bd9Sstevel@tonic-gate  *    Find the destination upper stream for the received packet, called
20017c478bd9Sstevel@tonic-gate  *    from sppp_recv.
20027c478bd9Sstevel@tonic-gate  *
20037c478bd9Sstevel@tonic-gate  * Returns:
20047c478bd9Sstevel@tonic-gate  *    ptr to destination upper network stream, or NULL for control stream.
20057c478bd9Sstevel@tonic-gate  */
20067c478bd9Sstevel@tonic-gate /* ARGSUSED */
20077c478bd9Sstevel@tonic-gate static spppstr_t *
20087c478bd9Sstevel@tonic-gate sppp_inpkt(queue_t *q, mblk_t *mp, spppstr_t *ctlsps)
20097c478bd9Sstevel@tonic-gate {
20107c478bd9Sstevel@tonic-gate 	spppstr_t	*destsps = NULL;
20117c478bd9Sstevel@tonic-gate 	sppa_t		*ppa;
20127c478bd9Sstevel@tonic-gate 	uint16_t	proto;
20137c478bd9Sstevel@tonic-gate 	int		is_promisc;
20147c478bd9Sstevel@tonic-gate 
20157c478bd9Sstevel@tonic-gate 	ASSERT(q != NULL && q->q_ptr != NULL);
20167c478bd9Sstevel@tonic-gate 	ASSERT(mp != NULL && mp->b_rptr != NULL);
20177c478bd9Sstevel@tonic-gate 	ASSERT(IS_SPS_CONTROL(ctlsps));
20187c478bd9Sstevel@tonic-gate 	ppa = ctlsps->sps_ppa;
20197c478bd9Sstevel@tonic-gate 	ASSERT(ppa != NULL);
20207c478bd9Sstevel@tonic-gate 	/*
20217c478bd9Sstevel@tonic-gate 	 * From RFC 1661 (Section 2):
20227c478bd9Sstevel@tonic-gate 	 *
20237c478bd9Sstevel@tonic-gate 	 * The Protocol field is one or two octets, and its value identifies
20247c478bd9Sstevel@tonic-gate 	 * the datagram encapsulated in the Information field of the packet.
20257c478bd9Sstevel@tonic-gate 	 * The field is transmitted and received most significant octet first.
20267c478bd9Sstevel@tonic-gate 	 *
20277c478bd9Sstevel@tonic-gate 	 * The structure of this field is consistent with the ISO 3309
20287c478bd9Sstevel@tonic-gate 	 * extension mechanism for address fields.  All Protocols MUST be odd;
20297c478bd9Sstevel@tonic-gate 	 * the least significant bit of the least significant octet MUST equal
20307c478bd9Sstevel@tonic-gate 	 * "1".  Also, all Protocols MUST be assigned such that the least
20317c478bd9Sstevel@tonic-gate 	 * significant bit of the most significant octet equals "0". Frames
20327c478bd9Sstevel@tonic-gate 	 * received which don't comply with these rules MUST be treated as
20337c478bd9Sstevel@tonic-gate 	 * having an unrecognized Protocol.
20347c478bd9Sstevel@tonic-gate 	 *
20357c478bd9Sstevel@tonic-gate 	 * Protocol field values in the "0***" to "3***" range identify the
20367c478bd9Sstevel@tonic-gate 	 * network-layer protocol of specific packets, and values in the
20377c478bd9Sstevel@tonic-gate 	 * "8***" to "b***" range identify packets belonging to the associated
20387c478bd9Sstevel@tonic-gate 	 * Network Control Protocols (NCPs), if any.
20397c478bd9Sstevel@tonic-gate 	 *
20407c478bd9Sstevel@tonic-gate 	 * Protocol field values in the "4***" to "7***" range are used for
20417c478bd9Sstevel@tonic-gate 	 * protocols with low volume traffic which have no associated NCP.
20427c478bd9Sstevel@tonic-gate 	 * Protocol field values in the "c***" to "f***" range identify packets
20437c478bd9Sstevel@tonic-gate 	 * as link-layer Control Protocols (such as LCP).
20447c478bd9Sstevel@tonic-gate 	 */
20457c478bd9Sstevel@tonic-gate 	proto = PPP_PROTOCOL(mp->b_rptr);
20467c478bd9Sstevel@tonic-gate 	mutex_enter(&ppa->ppa_sta_lock);
20477c478bd9Sstevel@tonic-gate 	ppa->ppa_stats.p.ppp_ipackets++;
20487c478bd9Sstevel@tonic-gate 	mutex_exit(&ppa->ppa_sta_lock);
20497c478bd9Sstevel@tonic-gate 	/*
20507c478bd9Sstevel@tonic-gate 	 * We check if this is not a network-layer protocol, and if so,
20517c478bd9Sstevel@tonic-gate 	 * then send this packet up the control stream.
20527c478bd9Sstevel@tonic-gate 	 */
20537c478bd9Sstevel@tonic-gate 	if (proto > 0x7fff) {
20547c478bd9Sstevel@tonic-gate 		goto inpkt_done;	/* send it up the control stream */
20557c478bd9Sstevel@tonic-gate 	}
20567c478bd9Sstevel@tonic-gate 	/*
20577c478bd9Sstevel@tonic-gate 	 * Try to grab the destination upper stream from the network-layer
20587c478bd9Sstevel@tonic-gate 	 * stream cache for this ppa for PPP_IP (0x0021) or PPP_IPV6 (0x0057)
20597c478bd9Sstevel@tonic-gate 	 * protocol types. Otherwise, if the type is not known to the cache,
20607c478bd9Sstevel@tonic-gate 	 * or if its sap can't be matched with any of the upper streams, then
20617c478bd9Sstevel@tonic-gate 	 * send this packet up the control stream so that it can be rejected.
20627c478bd9Sstevel@tonic-gate 	 */
20637c478bd9Sstevel@tonic-gate 	if (proto == PPP_IP) {
20647c478bd9Sstevel@tonic-gate 		destsps = ppa->ppa_ip_cache;
20657c478bd9Sstevel@tonic-gate 	} else if (proto == PPP_IPV6) {
20667c478bd9Sstevel@tonic-gate 		destsps = ppa->ppa_ip6_cache;
20677c478bd9Sstevel@tonic-gate 	}
20687c478bd9Sstevel@tonic-gate 	/*
20697c478bd9Sstevel@tonic-gate 	 * Toss this one away up the control stream if there's no matching sap;
20707c478bd9Sstevel@tonic-gate 	 * this way the protocol can be rejected (destsps is NULL).
20717c478bd9Sstevel@tonic-gate 	 */
20727c478bd9Sstevel@tonic-gate 
20737c478bd9Sstevel@tonic-gate inpkt_done:
20747c478bd9Sstevel@tonic-gate 	/*
20757c478bd9Sstevel@tonic-gate 	 * Only time-stamp the packet with hrtime if the upper stream
20767c478bd9Sstevel@tonic-gate 	 * is configured to do so.  PPP control (negotiation) messages
20777c478bd9Sstevel@tonic-gate 	 * are never considered link activity; only data is activity.
20787c478bd9Sstevel@tonic-gate 	 */
20797c478bd9Sstevel@tonic-gate 	if (destsps != NULL && IS_PPA_TIMESTAMP(ppa)) {
20807c478bd9Sstevel@tonic-gate 		ppa->ppa_lastrx = gethrtime();
20817c478bd9Sstevel@tonic-gate 	}
20827c478bd9Sstevel@tonic-gate 	/*
20837c478bd9Sstevel@tonic-gate 	 * Should there be any promiscuous stream(s), send the data up for
20847c478bd9Sstevel@tonic-gate 	 * each promiscuous stream that we recognize. We skip the control
20857c478bd9Sstevel@tonic-gate 	 * stream as we obviously never allow the control stream to become
20867c478bd9Sstevel@tonic-gate 	 * promiscous and bind to PPP_ALLSAP.
20877c478bd9Sstevel@tonic-gate 	 */
20887c478bd9Sstevel@tonic-gate 	rw_enter(&ppa->ppa_sib_lock, RW_READER);
20897c478bd9Sstevel@tonic-gate 	is_promisc = ppa->ppa_promicnt;
20907c478bd9Sstevel@tonic-gate 	if (is_promisc) {
20917c478bd9Sstevel@tonic-gate 		ASSERT(ppa->ppa_streams != NULL);
20927c478bd9Sstevel@tonic-gate 		sppp_dlprsendup(ppa->ppa_streams, mp, proto, B_TRUE);
20937c478bd9Sstevel@tonic-gate 	}
20947c478bd9Sstevel@tonic-gate 	rw_exit(&ppa->ppa_sib_lock);
20957c478bd9Sstevel@tonic-gate 	return (destsps);
20967c478bd9Sstevel@tonic-gate }
20977c478bd9Sstevel@tonic-gate 
20987c478bd9Sstevel@tonic-gate /*
20997c478bd9Sstevel@tonic-gate  * sppp_kstat_update()
21007c478bd9Sstevel@tonic-gate  *
21017c478bd9Sstevel@tonic-gate  * Description:
21027c478bd9Sstevel@tonic-gate  *    Update per-ppa kstat interface statistics.
21037c478bd9Sstevel@tonic-gate  */
21047c478bd9Sstevel@tonic-gate static int
21057c478bd9Sstevel@tonic-gate sppp_kstat_update(kstat_t *ksp, int rw)
21067c478bd9Sstevel@tonic-gate {
21077c478bd9Sstevel@tonic-gate 	register sppa_t		*ppa;
21087c478bd9Sstevel@tonic-gate 	register sppp_kstats_t	*pppkp;
21097c478bd9Sstevel@tonic-gate 	register struct pppstat64 *sp;
21107c478bd9Sstevel@tonic-gate 
21117c478bd9Sstevel@tonic-gate 	if (rw == KSTAT_WRITE) {
21127c478bd9Sstevel@tonic-gate 		return (EACCES);
21137c478bd9Sstevel@tonic-gate 	}
21147c478bd9Sstevel@tonic-gate 
21157c478bd9Sstevel@tonic-gate 	ppa = (sppa_t *)ksp->ks_private;
21167c478bd9Sstevel@tonic-gate 	ASSERT(ppa != NULL);
21177c478bd9Sstevel@tonic-gate 
21187c478bd9Sstevel@tonic-gate 	pppkp = (sppp_kstats_t *)ksp->ks_data;
21197c478bd9Sstevel@tonic-gate 	sp = &ppa->ppa_stats.p;
21207c478bd9Sstevel@tonic-gate 
21217c478bd9Sstevel@tonic-gate 	mutex_enter(&ppa->ppa_sta_lock);
21227c478bd9Sstevel@tonic-gate 	pppkp->allocbfail.value.ui32	= ppa->ppa_allocbfail;
21237c478bd9Sstevel@tonic-gate 	pppkp->mctlsfwd.value.ui32	= ppa->ppa_mctlsfwd;
21247c478bd9Sstevel@tonic-gate 	pppkp->mctlsfwderr.value.ui32	= ppa->ppa_mctlsfwderr;
21257c478bd9Sstevel@tonic-gate 	pppkp->rbytes.value.ui32	= sp->ppp_ibytes;
21267c478bd9Sstevel@tonic-gate 	pppkp->rbytes64.value.ui64	= sp->ppp_ibytes;
21277c478bd9Sstevel@tonic-gate 	pppkp->ierrors.value.ui32	= sp->ppp_ierrors;
21287c478bd9Sstevel@tonic-gate 	pppkp->ierrors_lower.value.ui32	= ppa->ppa_ierr_low;
21297c478bd9Sstevel@tonic-gate 	pppkp->ioctlsfwd.value.ui32	= ppa->ppa_ioctlsfwd;
21307c478bd9Sstevel@tonic-gate 	pppkp->ioctlsfwdok.value.ui32	= ppa->ppa_ioctlsfwdok;
21317c478bd9Sstevel@tonic-gate 	pppkp->ioctlsfwderr.value.ui32	= ppa->ppa_ioctlsfwderr;
21327c478bd9Sstevel@tonic-gate 	pppkp->ipackets.value.ui32	= sp->ppp_ipackets;
21337c478bd9Sstevel@tonic-gate 	pppkp->ipackets64.value.ui64	= sp->ppp_ipackets;
21347c478bd9Sstevel@tonic-gate 	pppkp->ipackets_ctl.value.ui32	= ppa->ppa_ipkt_ctl;
21357c478bd9Sstevel@tonic-gate 	pppkp->iqdropped.value.ui32	= ppa->ppa_iqdropped;
21367c478bd9Sstevel@tonic-gate 	pppkp->irunts.value.ui32	= ppa->ppa_irunts;
21377c478bd9Sstevel@tonic-gate 	pppkp->itoolongs.value.ui32	= ppa->ppa_itoolongs;
21387c478bd9Sstevel@tonic-gate 	pppkp->lsneedup.value.ui32	= ppa->ppa_lsneedup;
21397c478bd9Sstevel@tonic-gate 	pppkp->lsdown.value.ui32	= ppa->ppa_lsdown;
21407c478bd9Sstevel@tonic-gate 	pppkp->mctlsknown.value.ui32	= ppa->ppa_mctlsknown;
21417c478bd9Sstevel@tonic-gate 	pppkp->mctlsunknown.value.ui32	= ppa->ppa_mctlsunknown;
21427c478bd9Sstevel@tonic-gate 	pppkp->obytes.value.ui32	= sp->ppp_obytes;
21437c478bd9Sstevel@tonic-gate 	pppkp->obytes64.value.ui64	= sp->ppp_obytes;
21447c478bd9Sstevel@tonic-gate 	pppkp->oerrors.value.ui32	= sp->ppp_oerrors;
21457c478bd9Sstevel@tonic-gate 	pppkp->oerrors_lower.value.ui32	= ppa->ppa_oerr_low;
21467c478bd9Sstevel@tonic-gate 	pppkp->opackets.value.ui32	= sp->ppp_opackets;
21477c478bd9Sstevel@tonic-gate 	pppkp->opackets64.value.ui64	= sp->ppp_opackets;
21487c478bd9Sstevel@tonic-gate 	pppkp->opackets_ctl.value.ui32	= ppa->ppa_opkt_ctl;
21497c478bd9Sstevel@tonic-gate 	pppkp->oqdropped.value.ui32	= ppa->ppa_oqdropped;
21507c478bd9Sstevel@tonic-gate 	pppkp->otoolongs.value.ui32	= ppa->ppa_otoolongs;
21517c478bd9Sstevel@tonic-gate 	pppkp->orunts.value.ui32	= ppa->ppa_orunts;
21527c478bd9Sstevel@tonic-gate 	mutex_exit(&ppa->ppa_sta_lock);
21537c478bd9Sstevel@tonic-gate 
21547c478bd9Sstevel@tonic-gate 	return (0);
21557c478bd9Sstevel@tonic-gate }
21567c478bd9Sstevel@tonic-gate 
21577c478bd9Sstevel@tonic-gate /*
21587c478bd9Sstevel@tonic-gate  * Turn off proto in ppa_npflag to indicate that
21597c478bd9Sstevel@tonic-gate  * the corresponding network protocol has been plumbed.
21607c478bd9Sstevel@tonic-gate  * Release proto packets that were being held in the control
21617c478bd9Sstevel@tonic-gate  * queue in anticipation of this event.
21627c478bd9Sstevel@tonic-gate  */
21637c478bd9Sstevel@tonic-gate static void
21647c478bd9Sstevel@tonic-gate sppp_release_pkts(sppa_t *ppa, uint16_t proto)
21657c478bd9Sstevel@tonic-gate {
21667c478bd9Sstevel@tonic-gate 	uint32_t npflagpos = sppp_ppp2np(proto);
21677c478bd9Sstevel@tonic-gate 	int count;
21687c478bd9Sstevel@tonic-gate 	mblk_t *mp;
21697c478bd9Sstevel@tonic-gate 	uint16_t mp_proto;
21707c478bd9Sstevel@tonic-gate 	queue_t *q;
21717c478bd9Sstevel@tonic-gate 	spppstr_t *destsps;
21727c478bd9Sstevel@tonic-gate 
21737c478bd9Sstevel@tonic-gate 	ASSERT(ppa != NULL);
21747c478bd9Sstevel@tonic-gate 
21757c478bd9Sstevel@tonic-gate 	if (npflagpos == 0 || (ppa->ppa_npflag & (1 << npflagpos)) == 0)
21767c478bd9Sstevel@tonic-gate 		return;
21777c478bd9Sstevel@tonic-gate 
21787c478bd9Sstevel@tonic-gate 	mutex_enter(&ppa->ppa_npmutex);
21797c478bd9Sstevel@tonic-gate 	ppa->ppa_npflag &= ~(1 << npflagpos);
21807c478bd9Sstevel@tonic-gate 	count = ppa->ppa_holdpkts[npflagpos];
21817c478bd9Sstevel@tonic-gate 	ppa->ppa_holdpkts[npflagpos] = 0;
21827c478bd9Sstevel@tonic-gate 	mutex_exit(&ppa->ppa_npmutex);
21837c478bd9Sstevel@tonic-gate 
21847c478bd9Sstevel@tonic-gate 	q = ppa->ppa_ctl->sps_rq;
21857c478bd9Sstevel@tonic-gate 
21867c478bd9Sstevel@tonic-gate 	while (count > 0) {
21877c478bd9Sstevel@tonic-gate 		mp = getq(q);
21887c478bd9Sstevel@tonic-gate 		ASSERT(mp != NULL);
21897c478bd9Sstevel@tonic-gate 
21907c478bd9Sstevel@tonic-gate 		mp_proto = PPP_PROTOCOL(mp->b_rptr);
21917c478bd9Sstevel@tonic-gate 		if (mp_proto !=  proto) {
21927c478bd9Sstevel@tonic-gate 			(void) putq(q, mp);
21937c478bd9Sstevel@tonic-gate 			continue;
21947c478bd9Sstevel@tonic-gate 		}
21957c478bd9Sstevel@tonic-gate 		count--;
21967c478bd9Sstevel@tonic-gate 		destsps = NULL;
21977c478bd9Sstevel@tonic-gate 		if (mp_proto == PPP_IP) {
21987c478bd9Sstevel@tonic-gate 			destsps = ppa->ppa_ip_cache;
21997c478bd9Sstevel@tonic-gate 		} else if (mp_proto == PPP_IPV6) {
22007c478bd9Sstevel@tonic-gate 			destsps = ppa->ppa_ip6_cache;
22017c478bd9Sstevel@tonic-gate 		}
22027c478bd9Sstevel@tonic-gate 		ASSERT(destsps != NULL);
22037c478bd9Sstevel@tonic-gate 
22047c478bd9Sstevel@tonic-gate 		if (IS_SPS_FASTPATH(destsps)) {
22057c478bd9Sstevel@tonic-gate 			mp->b_rptr += PPP_HDRLEN;
22067c478bd9Sstevel@tonic-gate 		} else {
22077c478bd9Sstevel@tonic-gate 			spppstr_t *uqs = (spppstr_t *)destsps->sps_rq->q_ptr;
22087c478bd9Sstevel@tonic-gate 			ASSERT(uqs != NULL);
22097c478bd9Sstevel@tonic-gate 			mp->b_rptr += PPP_HDRLEN;
22107c478bd9Sstevel@tonic-gate 			mp = sppp_dladdud(uqs, mp, uqs->sps_sap, B_FALSE);
22117c478bd9Sstevel@tonic-gate 			if (mp == NULL) {
22127c478bd9Sstevel@tonic-gate 				mutex_enter(&ppa->ppa_sta_lock);
22137c478bd9Sstevel@tonic-gate 				ppa->ppa_allocbfail++;
22147c478bd9Sstevel@tonic-gate 				mutex_exit(&ppa->ppa_sta_lock);
22157c478bd9Sstevel@tonic-gate 				/* mp already freed by sppp_dladdud */
22167c478bd9Sstevel@tonic-gate 				continue;
22177c478bd9Sstevel@tonic-gate 			}
22187c478bd9Sstevel@tonic-gate 		}
22197c478bd9Sstevel@tonic-gate 
22207c478bd9Sstevel@tonic-gate 		if (canputnext(destsps->sps_rq)) {
22217c478bd9Sstevel@tonic-gate 			putnext(destsps->sps_rq, mp);
22227c478bd9Sstevel@tonic-gate 		} else {
22237c478bd9Sstevel@tonic-gate 			mutex_enter(&ppa->ppa_sta_lock);
22247c478bd9Sstevel@tonic-gate 			ppa->ppa_iqdropped++;
22257c478bd9Sstevel@tonic-gate 			mutex_exit(&ppa->ppa_sta_lock);
22267c478bd9Sstevel@tonic-gate 			freemsg(mp);
22277c478bd9Sstevel@tonic-gate 			continue;
22287c478bd9Sstevel@tonic-gate 		}
22297c478bd9Sstevel@tonic-gate 	}
22307c478bd9Sstevel@tonic-gate }
2231