1 /*
2  * Copyright (c) 1997-2014 Erez Zadok
3  * Copyright (c) 1990 Jan-Simon Pendry
4  * Copyright (c) 1990 Imperial College of Science, Technology & Medicine
5  * Copyright (c) 1990 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. Neither the name of the University nor the names of its contributors
20  *    may be used to endorse or promote products derived from this software
21  *    without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33  * SUCH DAMAGE.
34  *
35  *
36  * File: am-utils/conf/nfs_prot/nfs_prot_freebsd3.h
37  * $Id: nfs_prot_freebsd3.h,v 1.5.2.7 2004/01/06 03:15:19 ezk Exp $
38  * $FreeBSD: stable/10/contrib/amd/conf/nfs_prot/nfs_prot_freebsd3.h 310490 2016-12-23 22:42:14Z cy $
39  *
40  */
41 
42 #ifndef _AMU_NFS_PROT_H
43 #define _AMU_NFS_PROT_H
44 
45 /* nfs_prot.h defines struct `nfs_fh3', but it is a ``dmr "unwarranted
46  * chumminess with the C implementation".  We need the more complete
47  * structure, which is defined below.  So get the stock `nfs_fh3'
48  * out of the way.
49  */
50 struct nfs_fh3;
51 #define nfs_fh3 nfs_fh3_fbsd_
52 
53 #ifdef HAVE_RPCSVC_NFS_PROT_H
54 # include <rpcsvc/nfs_prot.h>
55 #endif /* HAVE_RPCSVC_NFS_PROT_H */
56 
57 #undef nfs_fh3
58 
59 #ifdef HAVE_NFS_RPCV2_H
60 # include <nfs/rpcv2.h>
61 #endif /* HAVE_NFS_RPCV2_H */
62 #ifdef HAVE_NFS_NFS_H
63 # include <nfsclient/nfs.h>
64 # include <nfsserver/nfs.h>
65 #endif /* HAVE_NFS_NFS_H */
66 #ifdef	HAVE_UFS_UFS_UFSMOUNT_H
67 # ifdef HAVE_UFS_UFS_EXTATTR_H
68 /*
69  * Define a dummy struct ufs_extattr_per_mount, which is used in struct
70  * ufsmount in <ufs/ufs/ufsmount.h>.
71  */
72 struct ufs_extattr_per_mount;
73 # endif /* HAVE_UFS_UFS_EXTATTR_H */
74 # include <ufs/ufs/ufsmount.h>
75 #endif	/* HAVE_UFS_UFS_UFSMOUNT_H */
76 
77 /* nfsclient/nfsargs.h was introduced in FreeBSD 5.0, and is needed */
78 #ifdef	HAVE_NFSCLIENT_NFSARGS_H
79 # include <nfsclient/nfsargs.h>
80 #endif	/* HAVE_NFSCLIENT_NFSARGS_H */
81 
82 /*
83  * MACROS:
84  */
85 #define	dr_drok_u	diropres
86 #define ca_where	where
87 #define da_fhandle	dir
88 #define da_name		name
89 #define dl_entries	entries
90 #define dl_eof		eof
91 #define dr_status	status
92 #define dr_u		diropres_u
93 #define drok_attributes	attributes
94 #define drok_fhandle	file
95 #define fh_data		data
96 #define la_fhandle	from
97 #define la_to		to
98 #define na_atime	atime
99 #define na_ctime	ctime
100 #define na_fileid	fileid
101 #define na_fsid		fsid
102 #define na_gid		gid
103 #define na_mode		mode
104 #define na_mtime	mtime
105 #define na_nlink	nlink
106 #define na_rdev		rdev
107 #define na_size		size
108 #define na_type		type
109 #define na_uid		uid
110 #define ne_cookie	cookie
111 #define ne_fileid	fileid
112 #define ne_name		name
113 #define ne_nextentry	nextentry
114 #define ns_attr_u	attributes
115 #define ns_status	status
116 #define ns_u		attrstat_u
117 #define nt_seconds	seconds
118 #define nt_useconds	useconds
119 #define rda_cookie	cookie
120 #define rda_count	count
121 #define rda_fhandle	dir
122 #define rdr_reply_u	reply
123 #define rdr_status	status
124 #define rdr_u		readdirres_u
125 #define rlr_data_u	data
126 #define rlr_status	status
127 #define rlr_u		readlinkres_u
128 #define rna_from	from
129 #define rna_to		to
130 #define rr_status	status
131 #define sag_fhandle	file
132 #define sfr_reply_u	reply
133 #define sfr_status	status
134 #define sfr_u		statfsres_u
135 #define sfrok_bavail	bavail
136 #define sfrok_bfree	bfree
137 #define sfrok_blocks	blocks
138 #define sfrok_bsize	bsize
139 #define sfrok_tsize	tsize
140 #define sla_from	from
141 #define wra_fhandle	file
142 
143 
144 /*
145  * TYPEDEFS:
146  */
147 typedef attrstat nfsattrstat;
148 typedef createargs nfscreateargs;
149 typedef dirlist nfsdirlist;
150 typedef diropargs nfsdiropargs;
151 typedef diropres nfsdiropres;
152 typedef entry nfsentry;
153 typedef fattr nfsfattr;
154 typedef ftype nfsftype;
155 typedef linkargs nfslinkargs;
156 typedef readargs nfsreadargs;
157 typedef readdirargs nfsreaddirargs;
158 typedef readdirres nfsreaddirres;
159 typedef readlinkres nfsreadlinkres;
160 typedef readres nfsreadres;
161 typedef renameargs nfsrenameargs;
162 typedef sattrargs nfssattrargs;
163 typedef statfsokres nfsstatfsokres;
164 typedef statfsres nfsstatfsres;
165 typedef symlinkargs nfssymlinkargs;
166 typedef writeargs nfswriteargs;
167 
168 
169 /*
170  *
171  * FreeBSD-3.0-RELEASE has NFS V3.  Older versions had it only defined
172  * in the rpcgen source file.  If you are on an older system, and you
173  * want NFSv3 support, you need to regenerate the rpcsvc header files as
174  * follows:
175  *	cd /usr/include/rpcsvc
176  *	rpcgen -h -C -DWANT_NFS3 mount.x
177  *	rpcgen -h -C -DWANT_NFS3 nfs_prot.x
178  * If you don't want NFSv3, then you will have to turn off the NFSMNT_NFSV3
179  * macro below.  If the code doesn't compile, upgrade to the latest 3.0
180  * version...
181  */
182 #ifdef NFSMNT_NFSV3
183 
184 # define MOUNT_NFS3	"nfs"	/* is this right? */
185 # define MNTOPT_NFS3	"nfs"
186 
187 # ifndef HAVE_XDR_LOOKUP3RES
188 /*
189  * FreeBSD uses different field names than are defined on most other
190  * systems.
191  */
192 #  define AMU_LOOKUP3RES_OK(x)		((x)->LOOKUP3res_u.resok)
193 #  define AMU_LOOKUP3RES_FAIL(x)	((x)->LOOKUP3res_u.resfail)
194 #  define AMU_LOOKUP3RES_FH_LEN(x)	(AMU_LOOKUP3RES_OK(x).object.data.data_len)
195 #  define AMU_LOOKUP3RES_FH_DATA(x)	(AMU_LOOKUP3RES_OK(x).object.data.data_val)
196 # endif /* not HAVE_XDR_LOOKUP3RES */
197 
198 /* since we don't use Am-utils's aux/macros/struct_nfs_fh3.m4, we don't get
199    their special searching.  So restore the standard name. */
200 typedef struct nfs_fh3_freebsd3 nfs_fh3;
201 
202 #endif /* NFSMNT_NFSV3 */
203 
204 #endif /* not _AMU_NFS_PROT_H */
205