1*7c478bd9Sstevel@tonic-gate /* 2*7c478bd9Sstevel@tonic-gate * CDDL HEADER START 3*7c478bd9Sstevel@tonic-gate * 4*7c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5*7c478bd9Sstevel@tonic-gate * Common Development and Distribution License, Version 1.0 only 6*7c478bd9Sstevel@tonic-gate * (the "License"). You may not use this file except in compliance 7*7c478bd9Sstevel@tonic-gate * with the License. 8*7c478bd9Sstevel@tonic-gate * 9*7c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10*7c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 11*7c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 12*7c478bd9Sstevel@tonic-gate * and limitations under the License. 13*7c478bd9Sstevel@tonic-gate * 14*7c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 15*7c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16*7c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 17*7c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 18*7c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 19*7c478bd9Sstevel@tonic-gate * 20*7c478bd9Sstevel@tonic-gate * CDDL HEADER END 21*7c478bd9Sstevel@tonic-gate */ 22*7c478bd9Sstevel@tonic-gate /* 23*7c478bd9Sstevel@tonic-gate * Copyright 1990-2003 Sun Microsystems, Inc. All rights reserved. 24*7c478bd9Sstevel@tonic-gate * Use is subject to license terms. 25*7c478bd9Sstevel@tonic-gate */ 26*7c478bd9Sstevel@tonic-gate 27*7c478bd9Sstevel@tonic-gate /* 28*7c478bd9Sstevel@tonic-gate * sysconf.h - include file for sysconf utility and the kernel. 29*7c478bd9Sstevel@tonic-gate */ 30*7c478bd9Sstevel@tonic-gate 31*7c478bd9Sstevel@tonic-gate #ifndef _SYS_SYSCONF_H 32*7c478bd9Sstevel@tonic-gate #define _SYS_SYSCONF_H 33*7c478bd9Sstevel@tonic-gate 34*7c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 35*7c478bd9Sstevel@tonic-gate 36*7c478bd9Sstevel@tonic-gate #ifdef __cplusplus 37*7c478bd9Sstevel@tonic-gate extern "C" { 38*7c478bd9Sstevel@tonic-gate #endif 39*7c478bd9Sstevel@tonic-gate 40*7c478bd9Sstevel@tonic-gate /* 41*7c478bd9Sstevel@tonic-gate * For each entry in /etc/system a sysparam record is created. 42*7c478bd9Sstevel@tonic-gate */ 43*7c478bd9Sstevel@tonic-gate struct sysparam { 44*7c478bd9Sstevel@tonic-gate struct sysparam *sys_next; /* pointer to next */ 45*7c478bd9Sstevel@tonic-gate int sys_type; /* type of record */ 46*7c478bd9Sstevel@tonic-gate int sys_op; /* operation */ 47*7c478bd9Sstevel@tonic-gate char *sys_modnam; /* module name (null if param in kernel) */ 48*7c478bd9Sstevel@tonic-gate char *sys_ptr; /* string pointer to device, etc. */ 49*7c478bd9Sstevel@tonic-gate u_longlong_t sys_info; /* additional information */ 50*7c478bd9Sstevel@tonic-gate char *sys_config; /* configuration data */ 51*7c478bd9Sstevel@tonic-gate int sys_len; /* len of config data */ 52*7c478bd9Sstevel@tonic-gate ulong_t *addrp; /* pointer to valloced config addresses */ 53*7c478bd9Sstevel@tonic-gate int sys_flags; /* flags to check duplicate entries */ 54*7c478bd9Sstevel@tonic-gate }; 55*7c478bd9Sstevel@tonic-gate 56*7c478bd9Sstevel@tonic-gate #define MAXLINESIZE 80 /* max size of a line in /etc/system */ 57*7c478bd9Sstevel@tonic-gate 58*7c478bd9Sstevel@tonic-gate struct modcmd { 59*7c478bd9Sstevel@tonic-gate char *mc_cmdname; 60*7c478bd9Sstevel@tonic-gate int mc_type; 61*7c478bd9Sstevel@tonic-gate }; 62*7c478bd9Sstevel@tonic-gate 63*7c478bd9Sstevel@tonic-gate #define MOD_EXCLUDE 0 /* we'll never load this one */ 64*7c478bd9Sstevel@tonic-gate #define MOD_INCLUDE 1 /* load on demand */ 65*7c478bd9Sstevel@tonic-gate #define MOD_FORCELOAD 2 /* load during initialization */ 66*7c478bd9Sstevel@tonic-gate #define MOD_ROOTDEV 3 /* root device */ 67*7c478bd9Sstevel@tonic-gate #define MOD_ROOTFS 4 /* root fs type */ 68*7c478bd9Sstevel@tonic-gate #define MOD_SWAPDEV 5 /* swap device */ 69*7c478bd9Sstevel@tonic-gate #define MOD_SWAPFS 6 /* swap fs type */ 70*7c478bd9Sstevel@tonic-gate #define MOD_MODDIR 7 /* default directory for modules */ 71*7c478bd9Sstevel@tonic-gate #define MOD_SET 8 /* set int to specified value */ 72*7c478bd9Sstevel@tonic-gate #define MOD_UNKNOWN 9 /* unknown command */ 73*7c478bd9Sstevel@tonic-gate #define MOD_SET32 10 /* like MOD_SET but -only- on 32-bit kernel */ 74*7c478bd9Sstevel@tonic-gate #define MOD_SET64 11 /* like MOD_SET but -only- on 64-bit kernel */ 75*7c478bd9Sstevel@tonic-gate 76*7c478bd9Sstevel@tonic-gate /* 77*7c478bd9Sstevel@tonic-gate * Commands for mod_sysctl() 78*7c478bd9Sstevel@tonic-gate */ 79*7c478bd9Sstevel@tonic-gate #define SYS_FORCELOAD 0 /* forceload modules */ 80*7c478bd9Sstevel@tonic-gate #define SYS_SET_KVAR 1 /* set kernel variables */ 81*7c478bd9Sstevel@tonic-gate #define SYS_SET_MVAR 2 /* set module variables */ 82*7c478bd9Sstevel@tonic-gate #define SYS_CHECK_EXCLUDE 3 /* check if a module is excluded */ 83*7c478bd9Sstevel@tonic-gate 84*7c478bd9Sstevel@tonic-gate /* 85*7c478bd9Sstevel@tonic-gate * Legal operations for MOD_SET. 86*7c478bd9Sstevel@tonic-gate */ 87*7c478bd9Sstevel@tonic-gate #define SETOP_NONE 0 /* no op - for types other than MOD_SET */ 88*7c478bd9Sstevel@tonic-gate #define SETOP_ASSIGN 1 /* '=' - simple assignment */ 89*7c478bd9Sstevel@tonic-gate #define SETOP_AND 2 /* '&' - bitwise AND */ 90*7c478bd9Sstevel@tonic-gate #define SETOP_OR 3 /* '|' - bitwise OR */ 91*7c478bd9Sstevel@tonic-gate 92*7c478bd9Sstevel@tonic-gate /* 93*7c478bd9Sstevel@tonic-gate * Defines for sys_flags. 94*7c478bd9Sstevel@tonic-gate */ 95*7c478bd9Sstevel@tonic-gate #define SYSPARAM_STR_TOKEN 0x0001 /* a string token is set */ 96*7c478bd9Sstevel@tonic-gate #define SYSPARAM_HEX_TOKEN 0x0002 /* a hexadecimal number is set */ 97*7c478bd9Sstevel@tonic-gate #define SYSPARAM_DEC_TOKEN 0x0004 /* a decimal number is set */ 98*7c478bd9Sstevel@tonic-gate #define SYSPARAM_DUP 0x0010 /* this entry is duplicated */ 99*7c478bd9Sstevel@tonic-gate #define SYSPARAM_TERM 0x0020 /* this entry is the last entry */ 100*7c478bd9Sstevel@tonic-gate 101*7c478bd9Sstevel@tonic-gate #ifdef __cplusplus 102*7c478bd9Sstevel@tonic-gate } 103*7c478bd9Sstevel@tonic-gate #endif 104*7c478bd9Sstevel@tonic-gate 105*7c478bd9Sstevel@tonic-gate #endif /* _SYS_SYSCONF_H */ 106