4 * Copyright (c) 1997-2009 Erez Zadok
5 * Copyright (c) 1989 Jan-Simon Pendry
6 * Copyright (c) 1989 Imperial College of Science, Technology & Medicine
7 * Copyright (c) 1989 The Regents of the University of California.
10 * This code is derived from software contributed to Berkeley by
11 * Jan-Simon Pendry at Imperial College, London.
13 * Redistribution and use in source and binary forms, with or without
14 * modification, are permitted provided that the following conditions
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. All advertising materials mentioning features or use of this software
22 * must display the following acknowledgment:
23 * This product includes software developed by the University of
24 * California, Berkeley and its contributors.
25 * 4. Neither the name of the University nor the names of its contributors
26 * may be used to endorse or promote products derived from this software
27 * without specific prior written permission.
29 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
30 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
31 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
32 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
33 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
35 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
37 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
38 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
42 * File: am-utils/fsinfo/fsi_data.h
49 typedef struct auto_tree auto_tree
;
50 typedef struct automount automount
;
51 typedef struct dict dict
;
52 typedef struct dict_data dict_data
;
53 typedef struct dict_ent dict_ent
;
54 typedef struct disk_fs disk_fs
;
55 typedef struct ether_if ether_if
;
56 typedef struct fsmount fsmount
;
57 typedef struct host host
;
58 typedef struct ioloc ioloc
;
59 typedef struct fsi_mount fsi_mount
;
68 char *a_name
; /* Automount key */
69 char *a_volname
; /* Equivalent volume to be referenced */
70 char *a_symlink
; /* Symlink representation */
71 char *a_opts
; /* opts for mounting */
72 char *a_hardwiredfs
; /* hack to bypass bogus fs definitions */
73 qelem
*a_mount
; /* Tree representation */
78 * List of automount trees
94 fsmount
*h_netroot
, *h_netswap
;
96 char *h_hostname
; /* The full name of the host */
97 char *h_lochost
; /* The name of the host with local domains stripped */
98 char *h_hostpath
; /* The filesystem path to the host (cf
115 * An ethernet interface
123 struct in_addr e_inaddr
;
131 * Disk filesystem structure.
133 * If the DF_* numbers are changed
134 * disk_fs_strings in analyze.c will
160 #define DF_REQUIRED ((1<<DF_FSTYPE)|(1<<DF_OPTS)|(1<<DF_PASSNO)|(1<<DF_MOUNT))
171 #define DM_EXPORTFS 1
179 fsi_mount
*m_exported
;
184 * Additional filesystem mounts
186 * If the FM_* numbers are changed
187 * disk_fs_strings in analyze.c will
195 #define FM_LOCALNAME 0
208 #define FM_REQUIRED ((1<<FM_VOLNAME)|(1<<FM_FSTYPE)|(1<<FM_OPTS)|(1<<FM_FROM)|(1<<FM_LOCALNAME))
209 #define FM_NETROOT 0x01
210 #define FM_NETSWAP 0x02
211 #define FM_NETBOOT (FM_NETROOT|FM_NETSWAP)
230 dict_ent
*de
[DICTHASH
];
234 * Source text location for error reports
240 #endif /* not _FSI_DATA_H */