1/*
2 * Copyright (c) 1997-2006 Erez Zadok
3 * Copyright (c) 1989 Jan-Simon Pendry
4 * Copyright (c) 1989 Imperial College of Science, Technology & Medicine
5 * Copyright (c) 1989 The Regents of the University of California.
6 * All rights reserved.
7 *
8 * This code is derived from software contributed to Berkeley by
9 * Jan-Simon Pendry at Imperial College, London.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 *    notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 *    notice, this list of conditions and the following disclaimer in the
18 *    documentation and/or other materials provided with the distribution.
19 * 3. All advertising materials mentioning features or use of this software
20 *    must display the following acknowledgment:
21 *      This product includes software developed by the University of
22 *      California, Berkeley and its contributors.
23 * 4. Neither the name of the University nor the names of its contributors
24 *    may be used to endorse or promote products derived from this software
25 *    without specific prior written permission.
26 *
27 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
38 *
39 *
40 * File: am-utils/fsinfo/fsinfo.h
41 *
42 */
43
44extern FILE *pref_open(char *pref, char *hn, void (*hdr) (FILE *, char *), char *arg);
45extern auto_tree *new_auto_tree(char *, qelem *);
46extern automount *new_automount(char *);
47extern char **g_argv;
48extern char *autodir;
49extern char *bootparams_pref;
50extern char *disk_fs_strings[];
51extern char *dumpset_pref;
52extern char *ether_if_strings[];
53extern char *exportfs_pref;
54extern char *fsmount_strings[];
55extern char *fstab_pref;
56extern char *host_strings[];
57extern char *mount_pref;
58extern char *mount_strings[];
59extern char *progname;
60extern char *username;
61extern char *xcalloc(int, int);
62extern char hostname[];
63extern char idvbuf[];
64extern dict *dict_of_hosts;
65extern dict *dict_of_volnames;
66extern dict *new_dict(void);
67extern dict_ent *dict_locate(dict *, char *);
68extern disk_fs *new_disk_fs(void);
69extern ether_if *new_ether_if(void);
70extern fsmount *new_fsmount(void);
71extern host *new_host(void);
72extern int dict_iter(dict *, int (*)(qelem *));
73extern int errors;
74extern int file_io_errors;
75extern int parse_errors;
76extern int pref_close(FILE *fp);
77extern int verbose;
78extern ioloc *current_location(void);
79extern fsi_mount *new_mount(void);
80extern qelem *new_que(void);
81extern void analyze_automounts(qelem *);
82extern void analyze_hosts(qelem *);
83extern void compute_automount_point(char *, size_t, host *, char *);
84extern void dict_add(dict *, char *, char *);
85extern void error(char *fmt, ...)
86	__attribute__((__format__(__printf__, 1, 2)));
87extern void fatal(char *fmt, ...)
88	__attribute__((__format__(__printf__, 1, 2)));
89extern void gen_hdr(FILE *ef, char *hn);
90extern void info_hdr(FILE *ef, char *info);
91extern void init_que(qelem *);
92extern void ins_que(qelem *, qelem *);
93extern void lerror(ioloc *l, char *fmt, ...)
94	__attribute__((__format__(__printf__, 2, 3)));
95extern void fsi_log(char *fmt, ...)
96	__attribute__((__format__(__printf__, 1, 2)));
97extern void lwarning(ioloc *l, char *fmt, ...)
98	__attribute__((__format__(__printf__, 2, 3)));
99extern void rem_que(qelem *);
100extern void set_disk_fs(disk_fs *, int, char *);
101extern void set_fsmount(fsmount *, int, char *);
102extern void set_mount(fsi_mount *, int, char *);
103extern void show_area_being_processed(char *area, int n);
104extern void show_new(char *msg);
105extern void warning(void);
106
107extern int yyerror(char *fmt, ...)
108	__attribute__((__format__(__printf__, 1, 2)));
109extern void domain_strip(char *otherdom, char *localdom);
110/*
111 * some systems such as DU-4.x have a different GNU flex in /usr/bin
112 * which automatically generates yywrap macros and symbols.  So I must
113 * distinguish between them and when yywrap is actually needed.
114 */
115#ifndef yywrap
116extern int yywrap(void);
117#endif /* not yywrap */
118extern int yyparse(void);
119extern int write_atab(qelem *q);
120extern int write_bootparams(qelem *q);
121extern int write_dumpset(qelem *q);
122extern int write_exportfs(qelem *q);
123extern int write_fstab(qelem *q);
124extern void col_cleanup(int eoj);
125extern void set_host(host *hp, int k, char *v);
126extern void set_ether_if(ether_if *ep, int k, char *v);
127extern int yylex(void);
128
129
130#define	BITSET(m,b)	((m) |= (1<<(b)))
131#define	AM_FIRST(ty, q)	((ty *) ((q)->q_forw))
132#define	HEAD(ty, q)	((ty *) q)
133#define	ISSET(m,b)	((m) & (1<<(b)))
134#define	ITER(v, ty, q) 	for ((v) = AM_FIRST(ty,(q)); (v) != HEAD(ty,(q)); (v) = NEXT(ty,(v)))
135#define	AM_LAST(ty, q)	((ty *) ((q)->q_back))
136#define	NEXT(ty, q)	((ty *) (((qelem *) q)->q_forw))
137