/* * CDDL HEADER START * * The contents of this file are subject to the terms of the * Common Development and Distribution License, Version 1.0 only * (the "License"). You may not use this file except in compliance * with the License. * * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE * or http://www.opensolaris.org/os/licensing. * See the License for the specific language governing permissions * and limitations under the License. * * When distributing Covered Code, include this CDDL HEADER in each * file and include the License file at usr/src/OPENSOLARIS.LICENSE. * If applicable, add the following below this CDDL HEADER, with the * fields enclosed by brackets "[]" replaced with your own identifying * information: Portions Copyright [yyyy] [name of copyright owner] * * CDDL HEADER END */ /* * Copyright 1996-1998,2001-2003 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ #pragma ident "%Z%%M% %I% %E% SMI" #include #include #define _SUN_TPI_VERSION 1 #include #include #include #include #include #include #include #include #include #include /* * Table of all known options handled on a keysock (PF_KEY) protocol stack. * * Note: This table contains options processed by both KEYSOCK and IP levels * and is the superset of options that can be performed on a KEYSOCK over * IP stack. */ opdes_t keysock_opt_arr[] = { { SO_USELOOPBACK, SOL_SOCKET, OA_RW, OA_RW, OP_NP, OP_PASSNEXT, (t_uscalar_t)sizeof (int), 0 }, { SO_SNDBUF, SOL_SOCKET, OA_RW, OA_RW, OP_NP, OP_PASSNEXT, (t_uscalar_t)sizeof (int), 0 }, { SO_RCVBUF, SOL_SOCKET, OA_RW, OA_RW, OP_NP, OP_PASSNEXT, (t_uscalar_t)sizeof (int), 0 }, }; /* * Table of all supported levels * Note: Some levels (e.g. XTI_GENERIC) may be valid but may not have * any supported options so we need this info separately. * * This is needed only for topmost tpi providers. */ optlevel_t keysock_valid_levels_arr[] = { SOL_SOCKET }; #define KEYSOCK_VALID_LEVELS_CNT A_CNT(keysock_valid_levels_arr) #define KEYSOCK_OPT_ARR_CNT A_CNT(keysock_opt_arr) uint_t keysock_max_optsize; /* initialized in keysock_ddi_init() */ /* * Intialize option database object for KEYSOCK * * This object represents database of options to search passed to * {sock,tpi}optcom_req() interface routine to take care of option * management and associated methods. */ optdb_obj_t keysock_opt_obj = { NULL, /* KEYSOCK default value function pointer */ keysock_opt_get, /* KEYSOCK get function pointer */ keysock_opt_set, /* KEYSOCK set function pointer */ B_TRUE, /* KEYSOCK is tpi provider */ KEYSOCK_OPT_ARR_CNT, /* KEYSOCK option database count of entries */ keysock_opt_arr, /* KEYSOCK option database */ KEYSOCK_VALID_LEVELS_CNT, /* KEYSOCK valid level count of entries */ keysock_valid_levels_arr /* KEYSOCK valid level array */ };