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