1/*-
  2 * SPDX-License-Identifier: BSD-3-Clause
  3 *
  4 * Copyright (c) 1989, 1993, 1995
  5 *	The Regents of the University of California.  All rights reserved.
  6 *
  7 * This code is derived from software contributed to Berkeley by
  8 * Rick Macklem at The University of Guelph.
  9 *
 10 * Redistribution and use in source and binary forms, with or without
 11 * modification, are permitted provided that the following conditions
 12 * are met:
 13 * 1. Redistributions of source code must retain the above copyright
 14 *    notice, this list of conditions and the following disclaimer.
 15 * 2. Redistributions in binary form must reproduce the above copyright
 16 *    notice, this list of conditions and the following disclaimer in the
 17 *    documentation and/or other materials provided with the distribution.
 18 * 3. Neither the name of the University nor the names of its contributors
 19 *    may be used to endorse or promote products derived from this software
 20 *    without specific prior written permission.
 21 *
 22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 25 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 32 * SUCH DAMAGE.
 33 *
 34 *	@(#)nfs.h	8.4 (Berkeley) 5/1/95
 35 */
 36
 37#ifndef _NFSCLIENT_NFS_H_
 38#define _NFSCLIENT_NFS_H_
 39
 40#ifdef _KERNEL
 41#include "opt_nfs.h"
 42#endif
 43
 44#include <nfsclient/nfsargs.h>
 45
 46/*
 47 * Tunable constants for nfs
 48 */
 49
 50#define NFS_TICKINTVL	10		/* Desired time for a tick (msec) */
 51#define NFS_HZ		(hz / nfs_ticks) /* Ticks/sec */
 52#define	NFS_TIMEO	(1 * NFS_HZ)	/* Default timeout = 1 second */
 53#define	NFS_MINTIMEO	(1 * NFS_HZ)	/* Min timeout to use */
 54#define	NFS_MAXTIMEO	(60 * NFS_HZ)	/* Max timeout to backoff to */
 55#define	NFS_MINIDEMTIMEO (5 * NFS_HZ)	/* Min timeout for non-idempotent ops*/
 56#define	NFS_MAXREXMIT	100		/* Stop counting after this many */
 57#define	NFS_RETRANS	10		/* Num of retrans for UDP soft mounts */
 58#define	NFS_RETRANS_TCP	2		/* Num of retrans for TCP soft mounts */
 59#define	NFS_MAXGRPS	16		/* Max. size of groups list */
 60#ifndef NFS_MINATTRTIMO
 61#define	NFS_MINATTRTIMO 3		/* VREG attrib cache timeout in sec */
 62#endif
 63#ifndef NFS_MAXATTRTIMO
 64#define	NFS_MAXATTRTIMO 60
 65#endif
 66#ifndef NFS_MINDIRATTRTIMO
 67#define	NFS_MINDIRATTRTIMO 3		/* VDIR attrib cache timeout in sec */
 68#endif
 69#ifndef NFS_MAXDIRATTRTIMO
 70#define	NFS_MAXDIRATTRTIMO 60
 71#endif
 72#ifndef	NFS_ACCESSCACHESIZE
 73#define	NFS_ACCESSCACHESIZE 8		/* Per-node access cache entries */
 74#endif
 75#define	NFS_WSIZE	8192		/* Def. write data size <= 8192 */
 76#define	NFS_RSIZE	8192		/* Def. read data size <= 8192 */
 77#define NFS_READDIRSIZE	8192		/* Def. readdir size */
 78#define	NFS_DEFRAHEAD	1		/* Def. read ahead # blocks */
 79#define	NFS_MAXRAHEAD	4		/* Max. read ahead # blocks */
 80#define	NFS_MAXASYNCDAEMON 	64	/* Max. number async_daemons runnable */
 81#define	NFS_DIRBLKSIZ	4096		/* Must be a multiple of DIRBLKSIZ */
 82#ifdef _KERNEL
 83#define	DIRBLKSIZ	512		/* XXX we used to use ufs's DIRBLKSIZ */
 84#endif
 85#define NFS_MAXDEADTHRESH	9	/* How long till we say 'server not responding' */
 86
 87/*
 88 * Oddballs
 89 */
 90#define NFS_CMPFH(n, f, s) \
 91	((n)->n_fhsize == (s) && !bcmp((caddr_t)(n)->n_fhp, (caddr_t)(f), (s)))
 92#define NFS_ISV3(v)	(VFSTONFS((v)->v_mount)->nm_flag & NFSMNT_NFSV3)
 93#define NFS_ISV4(v)	(VFSTONFS((v)->v_mount)->nm_flag & NFSMNT_NFSV4)
 94
 95#define NFSSTA_HASWRITEVERF	0x00040000  /* Has write verifier for V3 */
 96#define NFSSTA_GOTFSINFO	0x00100000  /* Got the V3 fsinfo */
 97#define	NFSSTA_SNDLOCK		0x01000000  /* Send socket lock */
 98#define	NFSSTA_WANTSND		0x02000000  /* Want above */
 99#define	NFSSTA_TIMEO		0x10000000  /* Experiencing a timeout */
100#define	NFSSTA_LOCKTIMEO	0x20000000  /* Experiencing a lockd timeout */
101
102/*
103 * XXX to allow amd to include nfs.h without nfsproto.h
104 */
105#ifdef NFS_NPROCS
106#include <nfsclient/nfsstats.h>
107#endif
108
109/*
110 * vfs.oldnfs sysctl(3) identifiers
111 */
112#define NFS_NFSSTATS	1		/* struct: struct nfsstats */
113
114#ifdef _KERNEL
115
116#ifdef MALLOC_DECLARE
117MALLOC_DECLARE(M_NFSDIROFF);
118MALLOC_DECLARE(M_NFSDIRECTIO);
119#endif
120
121extern struct uma_zone *nfsmount_zone;
122
123extern struct nfsstats nfsstats;
124extern struct mtx nfs_iod_mtx;
125extern struct task nfs_nfsiodnew_task;
126
127extern int nfs_numasync;
128extern unsigned int nfs_iodmax;
129extern int nfs_pbuf_freecnt;
130extern int nfs_ticks;
131
132/* Data constants in XDR form */
133extern u_int32_t nfs_true, nfs_false, nfs_xdrneg1;
134extern u_int32_t rpc_reply, rpc_msgdenied, rpc_mismatch, rpc_vers;
135extern u_int32_t rpc_auth_unix, rpc_msgaccepted, rpc_call, rpc_autherr;
136
137extern int nfsv3_procid[NFS_NPROCS];
138
139/*
140 * Socket errors ignored for connectionless sockets??
141 * For now, ignore them all
142 */
143#define	NFSIGNORE_SOERROR(s, e) \
144		((e) != EINTR && (e) != EIO && \
145		(e) != ERESTART && (e) != EWOULDBLOCK && \
146		((s) & PR_CONNREQUIRED) == 0)
147
148struct nfsmount;
149
150struct buf;
151struct socket;
152struct uio;
153struct vattr;
154
155/*
156 * Pointers to ops that differ from v3 to v4
157 */
158struct nfs_rpcops {
159	int	(*nr_readrpc)(struct vnode *vp, struct uio *uiop,
160		    struct ucred *cred);
161	int	(*nr_writerpc)(struct vnode *vp, struct uio *uiop,
162		    struct ucred *cred, int *iomode, int *must_commit);
163	int	(*nr_writebp)(struct buf *bp, int force, struct thread *td);
164	int	(*nr_readlinkrpc)(struct vnode *vp, struct uio *uiop,
165		    struct ucred *cred);
166	void	(*nr_invaldir)(struct vnode *vp);
167	int	(*nr_commit)(struct vnode *vp, u_quad_t offset, int cnt,
168		    struct ucred *cred, struct thread *td);
169};
170
171/*
172 * Defines for WebNFS
173 */
174
175#define WEBNFS_ESC_CHAR		'%'
176#define WEBNFS_SPECCHAR_START	0x80
177
178#define WEBNFS_NATIVE_CHAR	0x80
179/*
180 * ..
181 * Possibly more here in the future.
182 */
183
184/*
185 * Macro for converting escape characters in WebNFS pathnames.
186 * Should really be in libkern.
187 */
188
189#define HEXTOC(c) \
190	((c) >= 'a' ? ((c) - ('a' - 10)) : \
191	    ((c) >= 'A' ? ((c) - ('A' - 10)) : ((c) - '0')))
192#define HEXSTRTOI(p) \
193	((HEXTOC(p[0]) << 4) + HEXTOC(p[1]))
194
195/* nfs_sigintr() helper, when 'rep' has all we need */
196#define NFS_SIGREP(rep)		nfs_sigintr((rep)->r_nmp, (rep), (rep)->r_td)
197
198#ifdef NFS_DEBUG
199
200extern int nfs_debug;
201#define NFS_DEBUG_ASYNCIO	1 /* asynchronous i/o */
202#define NFS_DEBUG_WG		2 /* server write gathering */
203#define NFS_DEBUG_RC		4 /* server request caching */
204
205#define NFS_DPF(cat, args)					\
206	do {							\
207		if (nfs_debug & NFS_DEBUG_##cat) printf args;	\
208	} while (0)
209
210#else
211
212#define NFS_DPF(cat, args)
213
214#endif
215
216/*
217 * On fast networks, the estimator will try to reduce the
218 * timeout lower than the latency of the server's disks,
219 * which results in too many timeouts, so cap the lower
220 * bound.
221 */
222#define NFS_MINRTO	(NFS_HZ >> 2)
223
224/*
225 * Keep the RTO from increasing to unreasonably large values
226 * when a server is not responding.
227 */
228#define NFS_MAXRTO	(20 * NFS_HZ)
229
230enum nfs_rto_timer_t {
231	NFS_DEFAULT_TIMER,
232	NFS_GETATTR_TIMER,
233	NFS_LOOKUP_TIMER,
234	NFS_READ_TIMER,
235	NFS_WRITE_TIMER,
236};
237#define NFS_MAX_TIMER	(NFS_WRITE_TIMER)
238
239#define NFS_INITRTT	(NFS_HZ << 3)
240
241vfs_init_t nfs_init;
242vfs_uninit_t nfs_uninit;
243int	nfs_mountroot(struct mount *mp);
244
245void	nfs_purgecache(struct vnode *);
246int	nfs_vinvalbuf(struct vnode *, int, struct thread *, int);
247int	nfs_readrpc(struct vnode *, struct uio *, struct ucred *);
248int	nfs_writerpc(struct vnode *, struct uio *, struct ucred *, int *,
249	    int *);
250int	nfs_commit(struct vnode *vp, u_quad_t offset, int cnt,
251	    struct ucred *cred, struct thread *td);
252int	nfs_readdirrpc(struct vnode *, struct uio *, struct ucred *);
253void	nfs_nfsiodnew(void);
254void	nfs_nfsiodnew_tq(__unused void *, int);
255int	nfs_asyncio(struct nfsmount *, struct buf *, struct ucred *, struct thread *);
256int	nfs_doio(struct vnode *, struct buf *, struct ucred *, struct thread *);
257void	nfs_doio_directwrite (struct buf *);
258int	nfs_readlinkrpc(struct vnode *, struct uio *, struct ucred *);
259int	nfs_sigintr(struct nfsmount *, struct thread *);
260int	nfs_readdirplusrpc(struct vnode *, struct uio *, struct ucred *);
261int	nfs_request(struct vnode *, struct mbuf *, int, struct thread *,
262	    struct ucred *, struct mbuf **, struct mbuf **, caddr_t *);
263int	nfs_loadattrcache(struct vnode **, struct mbuf **, caddr_t *,
264	    struct vattr *, int);
265int	nfsm_mbuftouio(struct mbuf **, struct uio *, int, caddr_t *);
266void	nfs_nhinit(void);
267void	nfs_nhuninit(void);
268int	nfs_nmcancelreqs(struct nfsmount *);
269void	nfs_timer(void*);
270
271int	nfs_connect(struct nfsmount *);
272void	nfs_disconnect(struct nfsmount *);
273void	nfs_safedisconnect(struct nfsmount *);
274int	nfs_getattrcache(struct vnode *, struct vattr *);
275int	nfs_iosize(struct nfsmount *nmp);
276int	nfsm_strtmbuf(struct mbuf **, char **, const char *, long);
277int	nfs_bioread(struct vnode *, struct uio *, int, struct ucred *);
278int	nfsm_uiotombuf(struct uio *, struct mbuf **, int, caddr_t *);
279void	nfs_clearcommit(struct mount *);
280int	nfs_writebp(struct buf *, int, struct thread *);
281int	nfs_fsinfo(struct nfsmount *, struct vnode *, struct ucred *,
282	    struct thread *);
283int	nfs_meta_setsize (struct vnode *, struct ucred *,
284	    struct thread *, u_quad_t);
285
286void	nfs_set_sigmask(struct thread *td, sigset_t *oldset);
287void	nfs_restore_sigmask(struct thread *td, sigset_t *set);
288int	nfs_msleep(struct thread *td, void *ident, struct mtx *mtx,
289	    int priority, char *wmesg, int timo);
290
291#endif	/* _KERNEL */
292
293#endif