2005-01-07 01:45:51 +00:00
|
|
|
/*-
|
1997-05-09 07:48:14 +00:00
|
|
|
* Copyright (c) 1996 Charles D. Cranor and Washington University.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by Charles D. Cranor and
|
|
|
|
* Washington University.
|
|
|
|
* 4. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2007-01-08 22:30:39 +00:00
|
|
|
*
|
|
|
|
* $NetBSD: natm_proto.c,v 1.3 1996/09/18 00:56:41 chuck Exp $
|
1997-05-09 07:48:14 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* protocol layer for access to native mode ATM
|
|
|
|
*/
|
|
|
|
|
2003-06-11 05:37:42 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1997-05-09 07:48:14 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/protosw.h>
|
|
|
|
#include <sys/domain.h>
|
|
|
|
|
|
|
|
#include <net/if.h>
|
2003-03-04 23:19:55 +00:00
|
|
|
#include <net/netisr.h>
|
1997-05-09 07:48:14 +00:00
|
|
|
|
|
|
|
#include <netinet/in.h>
|
|
|
|
|
|
|
|
#include <netnatm/natm.h>
|
|
|
|
|
2002-03-20 02:39:27 +00:00
|
|
|
static void natm_init(void);
|
1997-05-09 07:48:14 +00:00
|
|
|
|
2005-09-07 10:06:14 +00:00
|
|
|
static struct domain natmdomain;
|
|
|
|
|
1998-02-09 06:11:36 +00:00
|
|
|
static struct protosw natmsw[] = {
|
2005-11-09 13:29:16 +00:00
|
|
|
{
|
|
|
|
.pr_type = SOCK_STREAM,
|
|
|
|
.pr_domain = &natmdomain,
|
|
|
|
.pr_protocol = PROTO_NATMAAL5,
|
|
|
|
.pr_flags = PR_CONNREQUIRED,
|
|
|
|
.pr_usrreqs = &natm_usrreqs
|
1997-05-09 07:48:14 +00:00
|
|
|
},
|
2005-11-09 13:29:16 +00:00
|
|
|
{
|
|
|
|
.pr_type = SOCK_DGRAM,
|
|
|
|
.pr_domain = &natmdomain,
|
|
|
|
.pr_protocol = PROTO_NATMAAL5,
|
|
|
|
.pr_flags = PR_CONNREQUIRED|PR_ATOMIC,
|
|
|
|
.pr_usrreqs = &natm_usrreqs
|
1997-05-09 07:48:14 +00:00
|
|
|
},
|
2005-11-09 13:29:16 +00:00
|
|
|
{
|
|
|
|
.pr_type = SOCK_STREAM,
|
|
|
|
.pr_domain = &natmdomain,
|
|
|
|
.pr_protocol = PROTO_NATMAAL0,
|
|
|
|
.pr_flags = PR_CONNREQUIRED,
|
|
|
|
.pr_usrreqs = &natm_usrreqs
|
1997-05-09 07:48:14 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2005-11-09 13:29:16 +00:00
|
|
|
static struct domain natmdomain = {
|
|
|
|
.dom_family = AF_NATM,
|
|
|
|
.dom_name = "natm",
|
|
|
|
.dom_init = natm_init,
|
|
|
|
.dom_protosw = natmsw,
|
|
|
|
.dom_protoswNPROTOSW = &natmsw[sizeof(natmsw)/sizeof(natmsw[0])],
|
|
|
|
};
|
1997-05-09 07:48:14 +00:00
|
|
|
|
2003-08-06 13:46:15 +00:00
|
|
|
static int natmqmaxlen = 1000 /* IFQ_MAXLEN */; /* max # of packets on queue */
|
2003-03-04 23:19:55 +00:00
|
|
|
static struct ifqueue natmintrq;
|
1997-05-09 07:48:14 +00:00
|
|
|
#ifdef NATM_STAT
|
2003-08-06 13:46:15 +00:00
|
|
|
u_int natm_sodropcnt; /* # mbufs dropped due to full sb */
|
|
|
|
u_int natm_sodropbytes; /* # of bytes dropped */
|
|
|
|
u_int natm_sookcnt; /* # mbufs ok */
|
|
|
|
u_int natm_sookbytes; /* # of bytes ok */
|
1997-05-09 07:48:14 +00:00
|
|
|
#endif
|
|
|
|
|
2003-08-06 13:46:15 +00:00
|
|
|
static void
|
|
|
|
natm_init(void)
|
1997-05-09 07:48:14 +00:00
|
|
|
{
|
2003-08-06 13:46:15 +00:00
|
|
|
LIST_INIT(&natm_pcbs);
|
|
|
|
bzero(&natmintrq, sizeof(natmintrq));
|
|
|
|
natmintrq.ifq_maxlen = natmqmaxlen;
|
Lock down netnatm and mark as MPSAFE:
- Introduce a subsystem mutex, natm_mtx, manipulated with accessor macros
NATM_LOCK_INIT(), NATM_LOCK(), NATM_UNLOCK(), NATM_LOCK_ASSERT(). It
protects the consistency of pcb-related data structures. Finer grained
locking is possible, but should be done in the context of specific
measurements (as very little work is done in netnatm -- most is in the
ATM device driver or socket layer, so there's probably not much
contention).
- Remove GIANT_REQUIRED, mark as NETISR_MPSAFE, remove
NET_NEEDS_GIANT("netnatm").
- Conditionally acquire Giant when entering network interfaces for
ifp->if_ioctl() using IFF_LOCKGIANT(ifp)/IFF_UNLOCKGIANT(ifp) in order
to coexist with non-MPSAFE atm ifnet drivers..
- De-spl.
MFC after: 2 weeks
Reviewed by: harti, bms (various versions)
2005-07-18 16:55:46 +00:00
|
|
|
NATM_LOCK_INIT();
|
2003-08-06 13:46:15 +00:00
|
|
|
mtx_init(&natmintrq.ifq_mtx, "natm_inq", NULL, MTX_DEF);
|
Lock down netnatm and mark as MPSAFE:
- Introduce a subsystem mutex, natm_mtx, manipulated with accessor macros
NATM_LOCK_INIT(), NATM_LOCK(), NATM_UNLOCK(), NATM_LOCK_ASSERT(). It
protects the consistency of pcb-related data structures. Finer grained
locking is possible, but should be done in the context of specific
measurements (as very little work is done in netnatm -- most is in the
ATM device driver or socket layer, so there's probably not much
contention).
- Remove GIANT_REQUIRED, mark as NETISR_MPSAFE, remove
NET_NEEDS_GIANT("netnatm").
- Conditionally acquire Giant when entering network interfaces for
ifp->if_ioctl() using IFF_LOCKGIANT(ifp)/IFF_UNLOCKGIANT(ifp) in order
to coexist with non-MPSAFE atm ifnet drivers..
- De-spl.
MFC after: 2 weeks
Reviewed by: harti, bms (various versions)
2005-07-18 16:55:46 +00:00
|
|
|
netisr_register(NETISR_NATM, natmintr, &natmintrq, NETISR_MPSAFE);
|
1997-05-09 07:48:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DOMAIN_SET(natm);
|