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 (c) 1999 by Sun Microsystems, Inc. 24*7c478bd9Sstevel@tonic-gate * All rights reserved. 25*7c478bd9Sstevel@tonic-gate */ 26*7c478bd9Sstevel@tonic-gate 27*7c478bd9Sstevel@tonic-gate #ifndef _NFS_NFSLOG_CONFIG_H 28*7c478bd9Sstevel@tonic-gate #define _NFS_NFSLOG_CONFIG_H 29*7c478bd9Sstevel@tonic-gate 30*7c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 31*7c478bd9Sstevel@tonic-gate 32*7c478bd9Sstevel@tonic-gate /* 33*7c478bd9Sstevel@tonic-gate * Internal configuration file API for NFS logging. 34*7c478bd9Sstevel@tonic-gate * 35*7c478bd9Sstevel@tonic-gate * Warning: This code is likely to change drastically in future releases. 36*7c478bd9Sstevel@tonic-gate */ 37*7c478bd9Sstevel@tonic-gate 38*7c478bd9Sstevel@tonic-gate #ifdef __cplusplus 39*7c478bd9Sstevel@tonic-gate extern "C" { 40*7c478bd9Sstevel@tonic-gate #endif 41*7c478bd9Sstevel@tonic-gate 42*7c478bd9Sstevel@tonic-gate #ifndef LINTHAPPY 43*7c478bd9Sstevel@tonic-gate #define LINTHAPPY 44*7c478bd9Sstevel@tonic-gate #endif 45*7c478bd9Sstevel@tonic-gate 46*7c478bd9Sstevel@tonic-gate #define MAX_LINESZ 4096 47*7c478bd9Sstevel@tonic-gate 48*7c478bd9Sstevel@tonic-gate #define NFSL_CONFIG_FILE_PATH "/etc/nfs/nfslog.conf" 49*7c478bd9Sstevel@tonic-gate #define DEFAULTTAG "global" 50*7c478bd9Sstevel@tonic-gate #define DEFAULTRAWTAG "global-raw" 51*7c478bd9Sstevel@tonic-gate #define DEFAULTDIR "/var/nfs" 52*7c478bd9Sstevel@tonic-gate #define BUFFERPATH "nfslog_workbuffer" 53*7c478bd9Sstevel@tonic-gate #define FHPATH "fhtable" 54*7c478bd9Sstevel@tonic-gate #define LOGPATH "nfslog" 55*7c478bd9Sstevel@tonic-gate 56*7c478bd9Sstevel@tonic-gate enum translog_format { 57*7c478bd9Sstevel@tonic-gate TRANSLOG_BASIC, TRANSLOG_EXTENDED 58*7c478bd9Sstevel@tonic-gate }; 59*7c478bd9Sstevel@tonic-gate 60*7c478bd9Sstevel@tonic-gate /* 61*7c478bd9Sstevel@tonic-gate * This struct is used to get or set the logging state for a filesystem. 62*7c478bd9Sstevel@tonic-gate * Using a single struct like this is okay for for releases where it's 63*7c478bd9Sstevel@tonic-gate * private, but it's questionable as a 64*7c478bd9Sstevel@tonic-gate * public API, because of extensibility and binary compatibility issues. 65*7c478bd9Sstevel@tonic-gate * 66*7c478bd9Sstevel@tonic-gate * Relative paths are interpreted relative to the root of the exported 67*7c478bd9Sstevel@tonic-gate * directory tree. 68*7c478bd9Sstevel@tonic-gate */ 69*7c478bd9Sstevel@tonic-gate typedef struct nfsl_config { 70*7c478bd9Sstevel@tonic-gate uint_t nc_flags; 71*7c478bd9Sstevel@tonic-gate char *nc_name; /* tag or "global" */ 72*7c478bd9Sstevel@tonic-gate char *nc_defaultdir; 73*7c478bd9Sstevel@tonic-gate char *nc_logpath; 74*7c478bd9Sstevel@tonic-gate char *nc_fhpath; 75*7c478bd9Sstevel@tonic-gate char *nc_bufferpath; 76*7c478bd9Sstevel@tonic-gate char *nc_rpclogpath; 77*7c478bd9Sstevel@tonic-gate enum translog_format nc_logformat; 78*7c478bd9Sstevel@tonic-gate void *nc_elfcookie; /* for rpclogfile processing */ 79*7c478bd9Sstevel@tonic-gate void *nc_transcookie; /* for logfile processing */ 80*7c478bd9Sstevel@tonic-gate struct nfsl_config *nc_next; 81*7c478bd9Sstevel@tonic-gate } nfsl_config_t; 82*7c478bd9Sstevel@tonic-gate 83*7c478bd9Sstevel@tonic-gate #define NC_UPDATED 0x001 /* set when an existing entry is */ 84*7c478bd9Sstevel@tonic-gate /* modified after detecting changes */ 85*7c478bd9Sstevel@tonic-gate /* in the configuration file. */ 86*7c478bd9Sstevel@tonic-gate /* Not set on creation of entry. */ 87*7c478bd9Sstevel@tonic-gate 88*7c478bd9Sstevel@tonic-gate #define NC_NOTAG_PRINTED 0x002 /* 'missing tag' syslogged */ 89*7c478bd9Sstevel@tonic-gate 90*7c478bd9Sstevel@tonic-gate extern boolean_t nfsl_errs_to_syslog; 91*7c478bd9Sstevel@tonic-gate 92*7c478bd9Sstevel@tonic-gate extern int nfsl_getconfig_list(nfsl_config_t **listpp); 93*7c478bd9Sstevel@tonic-gate extern int nfsl_checkconfig_list(nfsl_config_t **listpp, boolean_t *); 94*7c478bd9Sstevel@tonic-gate extern void nfsl_freeconfig_list(nfsl_config_t **listpp); 95*7c478bd9Sstevel@tonic-gate extern nfsl_config_t *nfsl_findconfig(nfsl_config_t *, char *, int *); 96*7c478bd9Sstevel@tonic-gate #ifndef LINTHAPPY 97*7c478bd9Sstevel@tonic-gate extern void nfsl_printconfig_list(nfsl_config_t *config); 98*7c478bd9Sstevel@tonic-gate #endif 99*7c478bd9Sstevel@tonic-gate 100*7c478bd9Sstevel@tonic-gate #ifdef __cplusplus 101*7c478bd9Sstevel@tonic-gate } 102*7c478bd9Sstevel@tonic-gate #endif 103*7c478bd9Sstevel@tonic-gate 104*7c478bd9Sstevel@tonic-gate #endif /* _NFS_NFSLOG_CONFIG_H */ 105