4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
23 * Copyright 2014 Nexenta Systems, Inc. All rights reserved.
24 * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
25 * Copyright (c) 2013 by Delphix. All rights reserved.
28 /* Copyright (c) 1983, 1984, 1985, 1986, 1987, 1988, 1989 AT&T */
29 /* All Rights Reserved */
34 /* nfs.h 2.38 88/08/19 SMI */
36 #include <sys/isa_defs.h>
38 #include <sys/stream.h>
39 #include <rpc/types.h>
40 #include <sys/types32.h>
42 #include <rpc/rpc_rdma.h>
44 #include <sys/fcntl.h>
45 #include <sys/kstat.h>
46 #include <sys/dirent.h>
48 #include <sys/nvpair.h>
49 #include <nfs/mount.h>
53 #include <rpc/rpc_sztypes.h>
54 #include <sys/sysmacros.h>
60 * remote file service numbers
62 #define NFS_PROGRAM ((rpcprog_t)100003)
63 #define NFS_VERSMIN ((rpcvers_t)2)
64 #define NFS_VERSMAX ((rpcvers_t)4)
65 #define NFS_VERSION ((rpcvers_t)2)
69 * Used to determine registration and service handling of versions
71 #define NFS_VERSMIN_DEFAULT ((rpcvers_t)2)
72 #define NFS_VERSMAX_DEFAULT ((rpcvers_t)4)
74 extern rpcvers_t nfs_versmin
;
75 extern rpcvers_t nfs_versmax
;
78 * Default delegation setting for the server ==> "on"
80 #define NFS_SERVER_DELEGATION_DEFAULT (TRUE)
82 /* Maximum size of data portion of a remote request */
83 #define NFS_MAXDATA 8192
84 #define NFS_MAXNAMLEN 255
85 #define NFS_MAXPATHLEN 1024
88 * Rpc retransmission parameters
90 #define NFS_TIMEO 11 /* initial timeout for clts in 10th of a sec */
91 #define NFS_RETRIES 5 /* times to retry request */
92 #define NFS_COTS_TIMEO 600 /* initial timeout for cots in 10th of a sec */
95 * The value of UID_NOBODY/GID_NOBODY presented to the world via NFS.
96 * UID_NOBODY/GID_NOBODY is translated to NFS_UID_NOBODY/NFS_GID_NOBODY
97 * when being sent out over the network and NFS_UID_NOBODY/NFS_GID_NOBODY
98 * is translated to UID_NOBODY/GID_NOBODY when received.
100 #define NFS_UID_NOBODY -2
101 #define NFS_GID_NOBODY -2
104 * maximum transfer size for different interfaces
110 * WebNFS error status
113 WNFSERR_CLNT_FLAVOR
= 20001 /* invalid client sec flavor */
118 * Should include all possible net errors.
119 * For now we just cast errno into an enum nfsstat.
122 NFS_OK
= 0, /* no error */
123 NFSERR_PERM
= 1, /* Not owner */
124 NFSERR_NOENT
= 2, /* No such file or directory */
125 NFSERR_IO
= 5, /* I/O error */
126 NFSERR_NXIO
= 6, /* No such device or address */
127 NFSERR_ACCES
= 13, /* Permission denied */
128 NFSERR_EXIST
= 17, /* File exists */
129 NFSERR_XDEV
= 18, /* Cross-device link */
130 NFSERR_NODEV
= 19, /* No such device */
131 NFSERR_NOTDIR
= 20, /* Not a directory */
132 NFSERR_ISDIR
= 21, /* Is a directory */
133 NFSERR_INVAL
= 22, /* Invalid argument */
134 NFSERR_FBIG
= 27, /* File too large */
135 NFSERR_NOSPC
= 28, /* No space left on device */
136 NFSERR_ROFS
= 30, /* Read-only file system */
137 NFSERR_OPNOTSUPP
= 45, /* Operation not supported */
138 NFSERR_NAMETOOLONG
= 63, /* File name too long */
139 NFSERR_NOTEMPTY
= 66, /* Directory not empty */
140 NFSERR_DQUOT
= 69, /* Disc quota exceeded */
141 NFSERR_STALE
= 70, /* Stale NFS file handle */
142 NFSERR_REMOTE
= 71, /* Object is remote */
143 NFSERR_WFLUSH
= 99 /* write cache flushed */
146 typedef enum nfsstat nfsstat
;
153 NFREG
, /* regular file */
154 NFDIR
, /* directory */
155 NFBLK
, /* block special */
156 NFCHR
, /* character special */
157 NFLNK
, /* symbolic link */
162 * Macros for converting device numbers to and from the format
163 * SunOS 4.x used. SVR4 uses 14 bit majors and 18 bits minors,
164 * SunOS 4.x used 8 bit majors and 8 bit minors. It isn't sufficient
165 * to use the cmpdev() and expdev() macros because they only compress
166 * 7 bit (and smaller) majors. We must compress 8 bit majors too.
167 * If the major or minor exceeds 8 bits, then we send it out in
168 * full 32 bit format and hope that the peer can deal with it.
171 #define SO4_BITSMAJOR 8 /* # of SunOS 4.x major device bits */
172 #define SO4_BITSMINOR 8 /* # of SunOS 4.x minor device bits */
173 #define SO4_MAXMAJ 0xff /* SunOS 4.x max major value */
174 #define SO4_MAXMIN 0xff /* SunOS 4.x max minor value */
177 * Convert to over-the-wire device number format
179 #define nfsv2_cmpdev(x) \
181 ((getmajor(x) > SO4_MAXMAJ || getminor(x) > SO4_MAXMIN) ? NODEV : \
182 ((getmajor(x) << SO4_BITSMINOR) | (getminor(x) & SO4_MAXMIN))))
185 * Convert from over-the-wire format to SVR4 device number format
187 #define nfsv2_expdev(x) \
188 makedevice((((x) >> SO4_BITSMINOR) & SO4_MAXMAJ), (x) & SO4_MAXMIN)
191 * Special kludge for fifos (named pipes) [to adhere to NFS Protocol Spec]
193 * VFIFO is not in the protocol spec (VNON will be replaced by VFIFO)
194 * so the over-the-wire representation is VCHR with a '-1' device number.
196 * NOTE: This kludge becomes unnecessary with the Protocol Revision,
197 * but it may be necessary to support it (backwards compatibility).
199 #define NFS_FIFO_TYPE NFCHR
200 #define NFS_FIFO_MODE S_IFCHR
201 #define NFS_FIFO_DEV ((uint32_t)-1)
203 /* identify fifo in nfs attributes */
204 #define NA_ISFIFO(NA) (((NA)->na_type == NFS_FIFO_TYPE) && \
205 ((NA)->na_rdev == NFS_FIFO_DEV))
207 /* set fifo in nfs attributes */
208 #define NA_SETFIFO(NA) { \
209 (NA)->na_type = NFS_FIFO_TYPE; \
210 (NA)->na_rdev = NFS_FIFO_DEV; \
211 (NA)->na_mode = ((NA)->na_mode & ~S_IFMT) | NFS_FIFO_MODE; \
215 * Check for time overflow using a kernel tunable to determine whether
216 * we should accept or reject an unsigned 32-bit time value. Time value in NFS
217 * v2/3 protocol is unsigned 32 bit, but ILP32 kernel only allows 31 bits.
218 * In nfsv4, time value is a signed 64 bit, so needs to be checked for
219 * overflow as well (e.g. for setattr). So define the tunable as follows:
220 * nfs_allow_preepoch_time is TRUE if pre-epoch (negative) times are allowed
221 * and is FALSE (the default) otherwise. For nfsv2/3 this means that
222 * if negative times are allowed, the uint32_t time value is interpreted
223 * as a signed int, otherwise as a large positive number. For nfsv4,
224 * we use the value as is - except that if negative times are not allowed,
225 * we will not accept a negative value otw.
227 * So for nfsv2/3 (uint32_t):
229 * If nfs_allow_preepoch_time is
230 * FALSE, the maximum time value is INT32_MAX for 32-bit kernels and
231 * UINT32_MAX for 64-bit kernels (to allow times larger than 2038)
232 * and the minimum is zero. Note that in that case, a 32-bit application
233 * running on a 64-bit kernel will not be able to access files with
234 * the larger time values.
235 * If nfs_allow_preepoch_time is TRUE, the maximum time value is INT32_MAX
236 * for both kernel configurations and the minimum is INT32_MIN.
238 * And for nfsv4 (int64_t):
240 * nfsv4 allows for negative values in the protocol, and has a 64-bit
241 * time field, so nfs_allow_preepoch_time can be ignored.
245 extern bool_t nfs_allow_preepoch_time
;
250 * If no negative otw values are allowed, may use the full 32-bits of the
251 * time to represent time later than 2038, by presenting the value as an
252 * unsigned (but this can only be used by 64-bit apps due to cstat32
253 * restrictions). If negative values are allowed, cannot represent times
254 * after 2038. Either way, all 32 bits have a valid representation.
257 /* Check if nfstime4 seconds (int64_t) can be stored in the system time */
258 #define NFS4_TIME_OK(tt) TRUE
261 #define NFS3_TIME_OVERFLOW(tt) (FALSE)
262 #define NFS2_TIME_OVERFLOW(tt) (FALSE)
265 * check if a time_t (int64_t) is ok when preepoch times are allowed -
266 * nfsv2/3: every 32-bit value is accepted, but can't overflow 64->32.
267 * nfsv4: every value is valid.
269 #define NFS_PREEPOCH_TIME_T_OK(tt) \
270 (((tt) >= (time_t)INT32_MIN) && ((tt) <= (time_t)INT32_MAX))
273 * check if a time_t (int64_t) is ok when preepoch times are not allowed -
274 * nfsv2/3: every positive 32-bit value is accepted, but can't overflow 64->32.
275 * nfsv4: every value is valid.
277 #define NFS_NO_PREEPOCH_TIME_T_OK(tt) \
278 (((tt) >= 0) && ((tt) <= (time_t)(ulong_t)UINT32_MAX))
280 #else /* not _LP64 */
283 * Cannot represent times after 2038 in a 32-bit kernel, but we may wish to
284 * restrict the use of negative values (which violate the protocol).
285 * So if negative times allowed, all uint32 time values are valid. Otherwise
286 * only those which are less than INT32_MAX (msb=0).
288 * NFSv4 uses int64_t for the time, so in a 32-bit kernel the nfsv4 value
289 * must fit in an int32_t.
292 /* Only allow signed 32-bit time values */
294 /* Check if an nfstime4 (int64_t) can be stored in the system time */
295 #define NFS4_TIME_OK(tt) \
296 (((tt) <= INT32_MAX) && ((tt) >= INT32_MIN))
298 #define NFS3_TIME_OVERFLOW(tt) ((tt) > INT32_MAX)
299 #define NFS2_TIME_OVERFLOW(tt) ((tt) > INT32_MAX)
302 * check if a time_t (int32_t) is ok when preepoch times are allowed -
303 * every 32-bit value is accepted
305 #define NFS_PREEPOCH_TIME_T_OK(tt) TRUE
308 * check if a time_t (int32_t) is ok when preepoch times are not allowed -
309 * only positive values are accepted.
311 #define NFS_NO_PREEPOCH_TIME_T_OK(tt) ((tt) >= 0)
315 /* Check if an nfstime3 (uint32_t) can be stored in the system time */
316 #define NFS3_TIME_OK(tt) \
317 (nfs_allow_preepoch_time || (!NFS3_TIME_OVERFLOW(tt)))
319 /* Check if an nfs2_timeval (uint32_t) can be stored in the system time. */
320 #define NFS2_TIME_OK(tt) \
321 (nfs_allow_preepoch_time || (!NFS2_TIME_OVERFLOW(tt)))
324 * Test if time_t (signed long) can be sent over the wire - for v2/3 only if:
325 * 1. The time value can fit in a uint32_t; and
326 * 2. Either the time value is positive or allow preepoch times.
327 * No restrictions for nfsv4.
329 #define NFS_TIME_T_OK(tt) \
330 (nfs_allow_preepoch_time ? \
331 NFS_PREEPOCH_TIME_T_OK(tt) : NFS_NO_PREEPOCH_TIME_T_OK(tt))
333 #define NFS4_TIME_T_OK(tt) TRUE
335 /* Test if all attr times are valid */
336 #define NFS_VAP_TIME_OK(vap) \
337 (nfs_allow_preepoch_time ? \
338 (NFS_PREEPOCH_TIME_T_OK((vap)->va_atime.tv_sec) && \
339 NFS_PREEPOCH_TIME_T_OK((vap)->va_mtime.tv_sec) && \
340 NFS_PREEPOCH_TIME_T_OK((vap)->va_ctime.tv_sec)) : \
341 (NFS_NO_PREEPOCH_TIME_T_OK((vap)->va_atime.tv_sec) && \
342 NFS_NO_PREEPOCH_TIME_T_OK((vap)->va_mtime.tv_sec) && \
343 NFS_NO_PREEPOCH_TIME_T_OK((vap)->va_ctime.tv_sec)))
345 #define NFS4_VAP_TIME_OK(vap) TRUE
348 * To extend the sign or not extend the sign, that is the question.
349 * Note: The correct way is to code a macro:
350 * #define NFS_TIME_T_CONVERT(tt) \
351 * (nfs_allow_preepoch_time ? (int32_t)(tt) : (uint32_t)(tt))
352 * But the 64-bit compiler does not extend the sign in that case (why?)
353 * so we'll do it the ugly way...
355 #define NFS_TIME_T_CONVERT(systt, tt) \
356 if (nfs_allow_preepoch_time) { \
357 systt = (int32_t)(tt); \
359 systt = (uint32_t)(tt); \
362 /* macro to check for overflowed time attribute fields - version 3 */
363 #define NFS3_FATTR_TIME_OK(attrs) \
364 (NFS3_TIME_OK((attrs)->atime.seconds) && \
365 NFS3_TIME_OK((attrs)->mtime.seconds) && \
366 NFS3_TIME_OK((attrs)->ctime.seconds))
368 /* macro to check for overflowed time attribute fields - version 2 */
369 #define NFS2_FATTR_TIME_OK(attrs) \
370 (NFS2_TIME_OK((attrs)->na_atime.tv_sec) && \
371 NFS2_TIME_OK((attrs)->na_mtime.tv_sec) && \
372 NFS2_TIME_OK((attrs)->na_ctime.tv_sec))
374 /* Check that a size3 value is not overflowed */
375 #define NFS3_SIZE_OK(size) ((size) <= MAXOFFSET_T)
380 * Size of an fhandle in bytes
382 #define NFS_FHSIZE 32
387 char nf_data
[NFS_FHSIZE
];
391 * "Legacy" filehandles use NFS_FHMAXDATA (10) byte fids. Filesystems that
392 * return a larger fid than NFS_FHMAXDATA, such as ZFS's .zfs snapshot
393 * directory, can use up to (((64 - 8) / 2) - 2) bytes for their fid.
394 * This currently holds for both NFSv3 and NFSv4.
396 #define NFS_FHMAXDATA 10
397 #define NFS_FH3MAXDATA 26
398 #define NFS_FH4MAXDATA 26
401 * The original nfs file handle size for version 3 was 32 which was
402 * the same in version 2; now we're making it bigger to to deal with
405 * If the size of fhandle3_t changes or if Version 3 uses some other
406 * filehandle format, this constant may need to change.
409 #define NFS3_OLDFHSIZE 32
410 #define NFS3_MAXFHSIZE 64
413 * This is the actual definition of a legacy filehandle. There is some
414 * dependence on this layout in NFS-related code, particularly in the
415 * user-level lock manager, so be careful about changing it.
417 * Currently only NFSv2 uses this structure.
420 typedef struct svcfh
{
421 fsid_t fh_fsid
; /* filesystem id */
422 ushort_t fh_len
; /* file number length */
423 char fh_data
[NFS_FHMAXDATA
]; /* and data */
424 ushort_t fh_xlen
; /* export file number length */
425 char fh_xdata
[NFS_FHMAXDATA
]; /* and data */
429 * This is the in-memory structure for an NFSv3 extended filehandle.
432 fsid_t _fh3_fsid
; /* filesystem id */
433 ushort_t _fh3_len
; /* file number length */
434 char _fh3_data
[NFS_FH3MAXDATA
]; /* and data */
435 ushort_t _fh3_xlen
; /* export file number length */
436 char _fh3_xdata
[NFS_FH3MAXDATA
]; /* and data */
440 * This is the in-memory structure for an NFSv4 extended filehandle.
443 fsid_t fhx_fsid
; /* filesystem id */
444 ushort_t fhx_len
; /* file number length */
445 char fhx_data
[NFS_FH4MAXDATA
]; /* and data */
446 ushort_t fhx_xlen
; /* export file number length */
447 char fhx_xdata
[NFS_FH4MAXDATA
]; /* and data */
451 * Arguments to remote write and writecache
454 * The `over the wire' representation of the first four arguments.
456 struct otw_nfswriteargs
{
457 fhandle_t otw_wa_fhandle
;
458 uint32_t otw_wa_begoff
;
459 uint32_t otw_wa_offset
;
460 uint32_t otw_wa_totcount
;
463 struct nfswriteargs
{
464 struct otw_nfswriteargs
*wa_args
; /* ptr to the otw arguments */
465 struct otw_nfswriteargs wa_args_buf
; /* space for otw arguments */
467 char *wa_data
; /* data to write (up to NFS_MAXDATA) */
468 mblk_t
*wa_mblk
; /* pointer to mblks containing data */
470 /* rdma related info */
471 struct clist
*wa_rlist
;
475 #define wa_fhandle wa_args->otw_wa_fhandle
476 #define wa_begoff wa_args->otw_wa_begoff
477 #define wa_offset wa_args->otw_wa_offset
478 #define wa_totcount wa_args->otw_wa_totcount
481 * NFS timeval struct using unsigned int as specified in V2 protocol.
482 * tv_sec and tv_usec used to match existing code.
484 struct nfs2_timeval
{
488 typedef struct nfs2_timeval nfs2_timeval
;
494 enum nfsftype na_type
; /* file type */
495 uint32_t na_mode
; /* protection mode bits */
496 uint32_t na_nlink
; /* # hard links */
497 uint32_t na_uid
; /* owner user id */
498 uint32_t na_gid
; /* owner group id */
499 uint32_t na_size
; /* file size in bytes */
500 uint32_t na_blocksize
; /* preferred block size */
501 uint32_t na_rdev
; /* special device # */
502 uint32_t na_blocks
; /* Kb of disk used by file */
503 uint32_t na_fsid
; /* device # */
504 uint32_t na_nodeid
; /* inode # */
505 struct nfs2_timeval na_atime
; /* time of last access */
506 struct nfs2_timeval na_mtime
; /* time of last modification */
507 struct nfs2_timeval na_ctime
; /* time of last change */
510 #define n2v_type(x) (NA_ISFIFO(x) ? VFIFO : nf_to_vt[(x)->na_type])
511 #define n2v_rdev(x) (NA_ISFIFO(x) ? 0 : (x)->na_rdev)
514 * Arguments to remote read
517 fhandle_t ra_fhandle
; /* handle for file */
518 uint32_t ra_offset
; /* byte offset in file */
519 uint32_t ra_count
; /* immediate read count */
520 uint32_t ra_totcount
; /* total read cnt (from this offset) */
522 /* used in rdma transports */
523 caddr_t ra_data
; /* destination for read data */
524 struct clist
*ra_wlist
;
530 * Status OK portion of remote read reply
533 struct nfsfattr rrok_attr
; /* attributes, need for pagin */
534 uint32_t rrok_count
; /* bytes of data */
535 char *rrok_data
; /* data (up to NFS_MAXDATA bytes) */
536 uint_t rrok_bufsize
; /* size of kmem_alloc'd buffer */
537 mblk_t
*rrok_mp
; /* mblk_t contains data for reply */
539 uint_t rrok_wlist_len
;
540 struct clist
*rrok_wlist
;
545 * Reply from remote read
548 nfsstat rr_status
; /* status of read */
550 struct nfsrrok rr_ok_u
; /* attributes, need for pagin */
553 #define rr_ok rr_u.rr_ok_u
554 #define rr_attr rr_u.rr_ok_u.rrok_attr
555 #define rr_count rr_u.rr_ok_u.rrok_count
556 #define rr_bufsize rr_u.rr_ok_u.rrok_bufsize
557 #define rr_data rr_u.rr_ok_u.rrok_data
558 #define rr_mp rr_u.rr_ok_u.rrok_mp
561 * File attributes which can be set
564 uint32_t sa_mode
; /* protection mode bits */
565 uint32_t sa_uid
; /* owner user id */
566 uint32_t sa_gid
; /* owner group id */
567 uint32_t sa_size
; /* file size in bytes */
568 struct nfs2_timeval sa_atime
; /* time of last access */
569 struct nfs2_timeval sa_mtime
; /* time of last modification */
574 * Reply status with file attributes
577 nfsstat ns_status
; /* reply status */
579 struct nfsfattr ns_attr_u
; /* NFS_OK: file attributes */
582 #define ns_attr ns_u.ns_attr_u
586 * NFS_OK part of read sym link reply union
589 uint32_t srok_count
; /* size of string */
590 char *srok_data
; /* string (up to NFS_MAXPATHLEN bytes) */
594 * Result of reading symbolic link
597 nfsstat rl_status
; /* status of symlink read */
599 struct nfssrok rl_srok_u
; /* name of linked to */
602 #define rl_srok rl_u.rl_srok_u
603 #define rl_count rl_u.rl_srok_u.srok_count
604 #define rl_data rl_u.rl_srok_u.srok_data
608 * Arguments to readdir
610 struct nfsrddirargs
{
611 fhandle_t rda_fh
; /* directory handle */
612 uint32_t rda_offset
; /* offset in directory (opaque) */
613 uint32_t rda_count
; /* number of directory bytes to read */
617 * NFS_OK part of readdir result
620 uint32_t rdok_offset
; /* next offset (opaque) */
621 uint32_t rdok_size
; /* size in bytes of entries */
622 bool_t rdok_eof
; /* true if last entry is in result */
623 struct dirent
*rdok_entries
; /* variable number of entries */
631 uint_t rd_bufsize
; /* client request size (not xdr'ed) */
633 struct nfsrdok rd_rdok_u
;
636 #define rd_rdok rd_u.rd_rdok_u
637 #define rd_offset rd_u.rd_rdok_u.rdok_offset
638 #define rd_size rd_u.rd_rdok_u.rdok_size
639 #define rd_eof rd_u.rd_rdok_u.rdok_eof
640 #define rd_entries rd_u.rd_rdok_u.rdok_entries
644 * Arguments for directory operations
646 struct nfsdiropargs
{
647 fhandle_t
*da_fhandle
; /* pointer to directory file handle */
648 char *da_name
; /* name (up to NFS_MAXNAMLEN bytes) */
649 fhandle_t da_fhandle_buf
; /* directory file handle */
650 int da_flags
; /* flags, see below */
652 #define DA_FREENAME 1
655 * NFS_OK part of directory operation result
658 fhandle_t drok_fhandle
; /* result file handle */
659 struct nfsfattr drok_attr
; /* result file attributes */
663 * Results from directory operation
666 nfsstat dr_status
; /* result status */
668 struct nfsdrok dr_drok_u
; /* NFS_OK result */
671 #define dr_drok dr_u.dr_drok_u
672 #define dr_fhandle dr_u.dr_drok_u.drok_fhandle
673 #define dr_attr dr_u.dr_drok_u.drok_attr
676 * arguments to setattr
679 fhandle_t saa_fh
; /* fhandle of file to be set */
680 struct nfssattr saa_sa
; /* new attributes */
684 * arguments to create and mkdir
686 struct nfscreatargs
{
687 struct nfsdiropargs ca_da
; /* file name to create and parent dir */
688 struct nfssattr
*ca_sa
; /* initial attributes */
689 struct nfssattr ca_sa_buf
; /* space to store attributes */
696 fhandle_t
*la_from
; /* old file */
697 fhandle_t la_from_buf
; /* old file */
698 struct nfsdiropargs la_to
; /* new file and parent dir */
702 * arguments to rename
705 struct nfsdiropargs rna_from
; /* old file and parent dir */
706 struct nfsdiropargs rna_to
; /* new file and parent dir */
710 * arguments to symlink
713 struct nfsdiropargs sla_from
; /* old file and parent dir */
714 char *sla_tnm
; /* new name */
715 int sla_tnm_flags
; /* flags for name */
716 struct nfssattr
*sla_sa
; /* attributes */
717 struct nfssattr sla_sa_buf
; /* attributes buffer */
719 #define SLA_FREETNM 1
722 * NFS_OK part of statfs operation
725 uint32_t fsok_tsize
; /* preferred transfer size in bytes */
726 uint32_t fsok_bsize
; /* fundamental file system block size */
727 uint32_t fsok_blocks
; /* total blocks in file system */
728 uint32_t fsok_bfree
; /* free blocks in fs */
729 uint32_t fsok_bavail
; /* free blocks avail to non-superuser */
733 * Results of statfs operation
736 nfsstat fs_status
; /* result status */
738 struct nfsstatfsok fs_fsok_u
; /* NFS_OK result */
741 #define fs_fsok fs_u.fs_fsok_u
742 #define fs_tsize fs_u.fs_fsok_u.fsok_tsize
743 #define fs_bsize fs_u.fs_fsok_u.fsok_bsize
744 #define fs_blocks fs_u.fs_fsok_u.fsok_blocks
745 #define fs_bfree fs_u.fs_fsok_u.fsok_bfree
746 #define fs_bavail fs_u.fs_fsok_u.fsok_bavail
750 * XDR routines for handling structures defined above
752 extern bool_t
xdr_attrstat(XDR
*, struct nfsattrstat
*);
753 extern bool_t
xdr_fastattrstat(XDR
*, struct nfsattrstat
*);
754 extern bool_t
xdr_creatargs(XDR
*, struct nfscreatargs
*);
755 extern bool_t
xdr_diropargs(XDR
*, struct nfsdiropargs
*);
756 extern bool_t
xdr_diropres(XDR
*, struct nfsdiropres
*);
757 extern bool_t
xdr_fastdiropres(XDR
*, struct nfsdiropres
*);
758 extern bool_t
xdr_drok(XDR
*, struct nfsdrok
*);
759 #ifdef _LITTLE_ENDIAN
760 extern bool_t
xdr_fastdrok(XDR
*, struct nfsdrok
*);
761 extern bool_t
xdr_fastfattr(XDR
*, struct nfsfattr
*);
763 extern bool_t
xdr_fattr(XDR
*, struct nfsfattr
*);
764 extern bool_t
xdr_fhandle(XDR
*, fhandle_t
*);
765 extern bool_t
xdr_fastfhandle(XDR
*, fhandle_t
**);
766 extern bool_t
xdr_linkargs(XDR
*, struct nfslinkargs
*);
767 extern bool_t
xdr_rddirargs(XDR
*, struct nfsrddirargs
*);
768 extern bool_t
xdr_putrddirres(XDR
*, struct nfsrddirres
*);
769 extern bool_t
xdr_getrddirres(XDR
*, struct nfsrddirres
*);
770 extern bool_t
xdr_rdlnres(XDR
*, struct nfsrdlnres
*);
771 extern bool_t
xdr_rdresult(XDR
*, struct nfsrdresult
*);
772 extern bool_t
xdr_readargs(XDR
*, struct nfsreadargs
*);
773 extern bool_t
xdr_readlink(XDR
*, fhandle_t
*);
774 extern bool_t
xdr_rnmargs(XDR
*, struct nfsrnmargs
*);
775 extern bool_t
xdr_rrok(XDR
*, struct nfsrrok
*);
776 extern bool_t
xdr_saargs(XDR
*, struct nfssaargs
*);
777 extern bool_t
xdr_sattr(XDR
*, struct nfssattr
*);
778 extern bool_t
xdr_slargs(XDR
*, struct nfsslargs
*);
779 extern bool_t
xdr_srok(XDR
*, struct nfssrok
*);
780 extern bool_t
xdr_nfs2_timeval(XDR
*, struct nfs2_timeval
*);
781 extern bool_t
xdr_writeargs(XDR
*, struct nfswriteargs
*);
782 extern bool_t
xdr_fsok(XDR
*, struct nfsstatfsok
*);
783 #ifdef _LITTLE_ENDIAN
784 extern bool_t
xdr_fastfsok(XDR
*, struct nfsstatfsok
*);
785 extern bool_t
xdr_fastenum(XDR
*, enum_t
*);
787 extern bool_t
xdr_statfs(XDR
*, struct nfsstatfs
*);
788 extern bool_t
xdr_faststatfs(XDR
*, struct nfsstatfs
*);
792 * Remote file service routines
795 #define RFS_GETATTR 1
796 #define RFS_SETATTR 2
799 #define RFS_READLINK 5
801 #define RFS_WRITECACHE 7
804 #define RFS_REMOVE 10
805 #define RFS_RENAME 11
807 #define RFS_SYMLINK 13
810 #define RFS_READDIR 16
811 #define RFS_STATFS 17
816 * The NFS Version 2 service procedures
818 struct exportinfo
; /* defined in nfs/export.h */
819 struct servinfo
; /* defined in nfs/nfs_clnt.h */
820 struct mntinfo
; /* defined in nfs/nfs_clnt.h */
822 extern void rfs_getattr(fhandle_t
*, struct nfsattrstat
*,
823 struct exportinfo
*, struct svc_req
*, cred_t
*, bool_t
);
824 extern void *rfs_getattr_getfh(fhandle_t
*);
825 extern void rfs_setattr(struct nfssaargs
*, struct nfsattrstat
*,
826 struct exportinfo
*, struct svc_req
*, cred_t
*, bool_t
);
827 extern void *rfs_setattr_getfh(struct nfssaargs
*);
828 extern void rfs_lookup(struct nfsdiropargs
*, struct nfsdiropres
*,
829 struct exportinfo
*, struct svc_req
*, cred_t
*, bool_t
);
830 extern void *rfs_lookup_getfh(struct nfsdiropargs
*);
831 extern void rfs_readlink(fhandle_t
*, struct nfsrdlnres
*,
832 struct exportinfo
*, struct svc_req
*, cred_t
*, bool_t
);
833 extern void *rfs_readlink_getfh(fhandle_t
*);
834 extern void rfs_rlfree(struct nfsrdlnres
*);
835 extern void rfs_read(struct nfsreadargs
*, struct nfsrdresult
*,
836 struct exportinfo
*, struct svc_req
*, cred_t
*, bool_t
);
837 extern void *rfs_read_getfh(struct nfsreadargs
*);
838 extern void rfs_rdfree(struct nfsrdresult
*);
839 extern void rfs_write_sync(struct nfswriteargs
*, struct nfsattrstat
*,
840 struct exportinfo
*, struct svc_req
*, cred_t
*, bool_t
);
841 extern void rfs_write(struct nfswriteargs
*, struct nfsattrstat
*,
842 struct exportinfo
*, struct svc_req
*, cred_t
*, bool_t
);
843 extern void *rfs_write_getfh(struct nfswriteargs
*);
844 extern void rfs_create(struct nfscreatargs
*, struct nfsdiropres
*,
845 struct exportinfo
*, struct svc_req
*, cred_t
*, bool_t
);
846 extern void *rfs_create_getfh(struct nfscreatargs
*);
847 extern void rfs_remove(struct nfsdiropargs
*, enum nfsstat
*,
848 struct exportinfo
*, struct svc_req
*, cred_t
*, bool_t
);
849 extern void *rfs_remove_getfh(struct nfsdiropargs
*);
850 extern void rfs_rename(struct nfsrnmargs
*, enum nfsstat
*,
851 struct exportinfo
*, struct svc_req
*, cred_t
*, bool_t
);
852 extern void *rfs_rename_getfh(struct nfsrnmargs
*);
853 extern void rfs_link(struct nfslinkargs
*, enum nfsstat
*,
854 struct exportinfo
*, struct svc_req
*, cred_t
*, bool_t
);
855 extern void *rfs_link_getfh(struct nfslinkargs
*);
856 extern void rfs_symlink(struct nfsslargs
*, enum nfsstat
*,
857 struct exportinfo
*, struct svc_req
*, cred_t
*, bool_t
);
858 extern void *rfs_symlink_getfh(struct nfsslargs
*);
859 extern void rfs_mkdir(struct nfscreatargs
*, struct nfsdiropres
*,
860 struct exportinfo
*, struct svc_req
*, cred_t
*, bool_t
);
861 extern void *rfs_mkdir_getfh(struct nfscreatargs
*);
862 extern void rfs_rmdir(struct nfsdiropargs
*, enum nfsstat
*,
863 struct exportinfo
*, struct svc_req
*, cred_t
*, bool_t
);
864 extern void *rfs_rmdir_getfh(struct nfsdiropargs
*);
865 extern void rfs_readdir(struct nfsrddirargs
*, struct nfsrddirres
*,
866 struct exportinfo
*, struct svc_req
*, cred_t
*, bool_t
);
867 extern void *rfs_readdir_getfh(struct nfsrddirargs
*);
868 extern void rfs_rddirfree(struct nfsrddirres
*);
869 extern void rfs_statfs(fhandle_t
*, struct nfsstatfs
*, struct exportinfo
*,
870 struct svc_req
*, cred_t
*, bool_t
);
871 extern void *rfs_statfs_getfh(fhandle_t
*);
872 extern void rfs_srvrinit(void);
873 extern void rfs_srvrfini(void);
876 * flags to define path types during Multi Component Lookups
877 * using the public filehandle
879 #define URLPATH 0x01 /* Universal Resource Locator path */
880 #define NATIVEPATH 0x02 /* Native path, i.e., via mount protocol */
881 #define SECURITY_QUERY 0x04 /* Security query */
883 /* index for svstat_ptr */
884 enum nfs_svccounts
{NFS_CALLS
, NFS_BADCALLS
, NFS_REFERRALS
, NFS_REFERLINKS
};
886 /* function defs for NFS kernel */
887 extern int nfs_waitfor_purge_complete(vnode_t
*);
888 extern int nfs_validate_caches(vnode_t
*, cred_t
*);
889 extern void nfs_purge_caches(vnode_t
*, int, cred_t
*);
890 extern void nfs_purge_rddir_cache(vnode_t
*);
891 extern void nfs_attrcache(vnode_t
*, struct nfsfattr
*, hrtime_t
);
892 extern int nfs_cache_fattr(vnode_t
*, struct nfsfattr
*, vattr_t
*,
894 extern void nfs_attr_cache(vnode_t
*, vattr_t
*, hrtime_t
, cred_t
*);
895 extern void nfs_attrcache_va(vnode_t
*, struct vattr
*);
896 extern int nfs_getattr_otw(vnode_t
*, struct vattr
*, cred_t
*);
897 extern int nfsgetattr(vnode_t
*, struct vattr
*, cred_t
*);
898 extern int nattr_to_vattr(vnode_t
*, struct nfsfattr
*, struct vattr
*);
899 extern void nfs_async_manager(struct vfs
*);
900 extern void nfs_async_manager_stop(struct vfs
*);
901 extern void nfs_async_stop(struct vfs
*);
902 extern int nfs_async_stop_sig(struct vfs
*);
903 extern int nfs_clntinit(void);
904 extern void nfs_clntfini(void);
905 extern int nfstsize(void);
906 extern int nfs_srvinit(void);
907 extern void nfs_srvfini(void);
908 extern int vattr_to_sattr(struct vattr
*, struct nfssattr
*);
909 extern void setdiropargs(struct nfsdiropargs
*, char *, vnode_t
*);
910 extern int setdirgid(vnode_t
*, gid_t
*, cred_t
*);
911 extern int setdirmode(vnode_t
*, mode_t
*, cred_t
*);
912 extern int newnum(void);
913 extern char *newname(void);
914 extern int nfs_subrinit(void);
915 extern void nfs_subrfini(void);
916 extern enum nfsstat
puterrno(int);
917 extern int geterrno(enum nfsstat
);
918 extern int nfsinit(int, char *);
919 extern void nfsfini(void);
920 extern int nfs_vfsinit(void);
921 extern void nfs_vfsfini(void);
922 extern int nfs_dump(vnode_t
*, caddr_t
, offset_t
, offset_t
,
924 extern void nfs_perror(int, char *, ...);
925 extern void nfs_cmn_err(int, int, char *, ...);
926 extern int nfs_addcllock(vnode_t
*, struct flock64
*);
927 extern void nfs_rmcllock(vnode_t
*, struct flock64
*);
928 extern void nfs_lockrelease(vnode_t
*, int, offset_t
, cred_t
*);
929 extern int vattr_to_nattr(struct vattr
*, struct nfsfattr
*);
930 extern int mount_root(char *, char *, int, struct nfs_args
*, int *);
931 extern void nfs_lockcompletion(vnode_t
*, int);
932 extern void nfs_add_locking_id(vnode_t
*, pid_t
, int, char *, int);
933 extern void nfs3copyfh(caddr_t
, vnode_t
*);
934 extern void nfscopyfh(caddr_t
, vnode_t
*);
935 extern int nfs3lookup(vnode_t
*, char *, vnode_t
**, struct pathname
*,
936 int, vnode_t
*, cred_t
*, int);
937 extern int nfslookup(vnode_t
*, char *, vnode_t
**, struct pathname
*, int,
938 vnode_t
*, cred_t
*, int);
939 extern void sv_free(struct servinfo
*);
940 extern int nfsauth_access(struct exportinfo
*, struct svc_req
*, cred_t
*,
941 uid_t
*, gid_t
*, uint_t
*, gid_t
**);
942 extern void nfsauth_init(void);
943 extern void nfsauth_fini(void);
944 extern int nfs_setopts(vnode_t
*, model_t
, struct nfs_args
*);
945 extern boolean_t
nfs_has_ctty(void);
946 extern void nfs_srv_stop_all(void);
947 extern void nfs_srv_quiesce_all(void);
948 extern int rfs4_dss_setpaths(char *, size_t);
949 extern int nfs_setmod_check(page_t
*);
951 extern time_t rfs4_lease_time
;
952 extern time_t rfs4_grace_period
;
953 extern nvlist_t
*rfs4_dss_paths
, *rfs4_dss_oldpaths
;
955 extern kstat_named_t
*global_svstat_ptr
[];
957 extern krwlock_t rroklock
;
958 extern vtype_t nf_to_vt
[];
959 extern kstat_named_t
*rfsproccnt_v2_ptr
;
960 extern kmutex_t nfs_minor_lock
;
961 extern int nfs_major
;
962 extern int nfs_minor
;
963 extern const struct vfsops nfs_vfsops
;
964 extern const struct vnodeops nfs_vnodeops
;
966 extern void (*nfs_srv_quiesce_func
)(void);
967 extern int (*nfs_srv_dss_func
)(char *, size_t);
970 * Per-zone stats as consumed by nfsstat(1m)
972 struct nfs_version_stats
{
973 kstat_named_t
*aclreqcnt_ptr
; /* nfs_acl:0:aclreqcnt_v? */
974 kstat_named_t
*aclproccnt_ptr
; /* nfs_acl:0:aclproccnt_v? */
975 kstat_named_t
*rfsreqcnt_ptr
; /* nfs:0:rfsreqcnt_v? */
976 kstat_named_t
*rfsproccnt_ptr
; /* nfs:0:rfsproccnt_v? */
980 * A bit of asymmetry: nfs:0:nfs_client isn't part of this structure.
983 kstat_named_t
*nfs_stats_svstat_ptr
[NFS_VERSMAX
+ 1];
984 struct nfs_version_stats nfs_stats_v2
;
985 struct nfs_version_stats nfs_stats_v3
;
986 struct nfs_version_stats nfs_stats_v4
;
990 * Key used to retrieve counters.
992 extern zone_key_t nfsstat_zone_key
;
995 * Zone callback functions.
997 extern void *nfsstat_zone_init(zoneid_t
);
998 extern void nfsstat_zone_fini(zoneid_t
, void *);
1000 #endif /* _KERNEL */
1003 * Version 3 declarations and definitions.
1006 #define NFS3_FHSIZE 64
1007 #define NFS3_COOKIEVERFSIZE 8
1008 #define NFS3_CREATEVERFSIZE 8
1009 #define NFS3_WRITEVERFSIZE 8
1011 typedef char *filename3
;
1013 typedef char *nfspath3
;
1015 #define nfs3nametoolong ((char *)-1)
1017 typedef uint64 fileid3
;
1019 typedef uint64 cookie3
;
1021 typedef uint32 uid3
;
1023 typedef uint32 gid3
;
1025 typedef uint64 size3
;
1027 typedef uint64 offset3
;
1029 typedef uint32 mode3
;
1031 typedef uint32 count3
;
1034 * These three are really opaque arrays, but we treat them as
1035 * uint64 for efficiency sake
1037 typedef uint64 cookieverf3
;
1039 typedef uint64 createverf3
;
1041 typedef uint64 writeverf3
;
1043 typedef struct nfs_fh3
{
1049 char data
[NFS3_FHSIZE
];
1053 #define fh3_fsid fh3_u.nfs_fh3_i.fh3_i._fh3_fsid
1054 #define fh3_len fh3_u.nfs_fh3_i.fh3_i._fh3_len
1055 #define fh3_data fh3_u.nfs_fh3_i.fh3_i._fh3_data
1056 #define fh3_xlen fh3_u.nfs_fh3_i.fh3_i._fh3_xlen
1057 #define fh3_xdata fh3_u.nfs_fh3_i.fh3_i._fh3_xdata
1058 #define FH3TOFIDP(fh) ((fid_t *)&((fh)->fh3_len))
1059 #define FH3TOXFIDP(fh) ((fid_t *)&((fh)->fh3_xlen))
1062 * nfs_fh3.fh3_flags values
1064 #define FH_WEBNFS 0x1 /* fh is WebNFS overloaded - see makefh3_ol() */
1067 * Two elements were added to the
1068 * diropargs3 structure for performance (xdr-inlining).
1069 * They are not included as part of the args
1070 * that are encoded or decoded:
1071 * dirp - ptr to the nfs_fh3
1072 * flag indicating when to free the name that was
1073 * allocated during decode.
1081 typedef struct diropargs3 diropargs3
;
1087 typedef struct nfstime3 nfstime3
;
1093 typedef struct specdata3 specdata3
;
1105 NFS3ERR_NOTDIR
= 20,
1112 NFS3ERR_NAMETOOLONG
= 63,
1113 NFS3ERR_NOTEMPTY
= 66,
1116 NFS3ERR_REMOTE
= 71,
1117 NFS3ERR_BADHANDLE
= 10001,
1118 NFS3ERR_NOT_SYNC
= 10002,
1119 NFS3ERR_BAD_COOKIE
= 10003,
1120 NFS3ERR_NOTSUPP
= 10004,
1121 NFS3ERR_TOOSMALL
= 10005,
1122 NFS3ERR_SERVERFAULT
= 10006,
1123 NFS3ERR_BADTYPE
= 10007,
1124 NFS3ERR_JUKEBOX
= 10008
1126 typedef enum nfsstat3 nfsstat3
;
1137 typedef enum ftype3 ftype3
;
1154 typedef struct fattr3 fattr3
;
1156 #define NFS3_SIZEOF_FATTR3 (21)
1164 typedef struct fattr3_res fattr3_res
;
1165 #endif /* _KERNEL */
1167 struct post_op_attr
{
1171 typedef struct post_op_attr post_op_attr
;
1174 struct post_op_vattr
{
1178 typedef struct post_op_vattr post_op_vattr
;
1179 #endif /* _KERNEL */
1186 typedef struct wcc_attr wcc_attr
;
1188 struct pre_op_attr
{
1192 typedef struct pre_op_attr pre_op_attr
;
1198 typedef struct wcc_data wcc_data
;
1200 struct post_op_fh3
{
1201 bool_t handle_follows
;
1204 typedef struct post_op_fh3 post_op_fh3
;
1208 SET_TO_SERVER_TIME
= 1,
1209 SET_TO_CLIENT_TIME
= 2
1211 typedef enum time_how time_how
;
1217 typedef struct set_mode3 set_mode3
;
1223 typedef struct set_uid3 set_uid3
;
1229 typedef struct set_gid3 set_gid3
;
1235 typedef struct set_size3 set_size3
;
1241 typedef struct set_atime set_atime
;
1247 typedef struct set_mtime set_mtime
;
1257 typedef struct sattr3 sattr3
;
1260 * A couple of defines to make resok and resfail look like the
1261 * correct things in a response type independent manner.
1263 #define resok res_u.ok
1264 #define resfail res_u.fail
1266 struct GETATTR3args
{
1269 typedef struct GETATTR3args GETATTR3args
;
1271 struct GETATTR3resok
{
1272 fattr3 obj_attributes
;
1274 typedef struct GETATTR3resok GETATTR3resok
;
1276 struct GETATTR3res
{
1282 typedef struct GETATTR3res GETATTR3res
;
1285 struct GETATTR3vres
{
1289 typedef struct GETATTR3vres GETATTR3vres
;
1290 #endif /* _KERNEL */
1292 struct sattrguard3
{
1296 typedef struct sattrguard3 sattrguard3
;
1298 struct SETATTR3args
{
1300 sattr3 new_attributes
;
1303 typedef struct SETATTR3args SETATTR3args
;
1305 struct SETATTR3resok
{
1308 typedef struct SETATTR3resok SETATTR3resok
;
1310 struct SETATTR3resfail
{
1313 typedef struct SETATTR3resfail SETATTR3resfail
;
1315 struct SETATTR3res
{
1319 SETATTR3resfail fail
;
1322 typedef struct SETATTR3res SETATTR3res
;
1324 struct LOOKUP3args
{
1327 typedef struct LOOKUP3args LOOKUP3args
;
1329 struct LOOKUP3resok
{
1331 post_op_attr obj_attributes
;
1332 post_op_attr dir_attributes
;
1334 typedef struct LOOKUP3resok LOOKUP3resok
;
1336 struct LOOKUP3resfail
{
1337 post_op_attr dir_attributes
;
1339 typedef struct LOOKUP3resfail LOOKUP3resfail
;
1345 LOOKUP3resfail fail
;
1348 typedef struct LOOKUP3res LOOKUP3res
;
1351 struct LOOKUP3vres
{
1354 post_op_vattr dir_attributes
;
1355 post_op_vattr obj_attributes
;
1357 typedef struct LOOKUP3vres LOOKUP3vres
;
1358 #endif /* _KERNEL */
1360 struct ACCESS3args
{
1364 typedef struct ACCESS3args ACCESS3args
;
1365 #define ACCESS3_READ 0x1
1366 #define ACCESS3_LOOKUP 0x2
1367 #define ACCESS3_MODIFY 0x4
1368 #define ACCESS3_EXTEND 0x8
1369 #define ACCESS3_DELETE 0x10
1370 #define ACCESS3_EXECUTE 0x20
1372 struct ACCESS3resok
{
1373 post_op_attr obj_attributes
;
1376 typedef struct ACCESS3resok ACCESS3resok
;
1378 struct ACCESS3resfail
{
1379 post_op_attr obj_attributes
;
1381 typedef struct ACCESS3resfail ACCESS3resfail
;
1387 ACCESS3resfail fail
;
1390 typedef struct ACCESS3res ACCESS3res
;
1392 struct READLINK3args
{
1395 typedef struct READLINK3args READLINK3args
;
1397 struct READLINK3resok
{
1398 post_op_attr symlink_attributes
;
1401 typedef struct READLINK3resok READLINK3resok
;
1403 struct READLINK3resfail
{
1404 post_op_attr symlink_attributes
;
1406 typedef struct READLINK3resfail READLINK3resfail
;
1408 struct READLINK3res
{
1412 READLINK3resfail fail
;
1415 typedef struct READLINK3res READLINK3res
;
1422 /* for read using rdma */
1423 char *res_data_val_alt
;
1424 struct uio
*res_uiop
;
1425 struct clist
*wlist
;
1429 typedef struct READ3args READ3args
;
1432 post_op_attr file_attributes
;
1443 struct clist
*wlist
;
1447 typedef struct READ3resok READ3resok
;
1449 struct READ3resfail
{
1450 post_op_attr file_attributes
;
1452 typedef struct READ3resfail READ3resfail
;
1461 typedef struct READ3res READ3res
;
1465 * READ3 reply that directly decodes fattr3 directly into vattr
1469 struct post_op_vattr pov
;
1479 struct clist
*wlist
;
1481 typedef struct READ3vres READ3vres
;
1482 #endif /* _KERNEL */
1485 * READ3 reply that uiomoves data directly into a struct uio
1486 * ignores any attributes returned
1488 struct READ3uiores
{
1493 uint_t size
; /* maximum reply size */
1496 struct clist
*wlist
;
1499 typedef struct READ3uiores READ3uiores
;
1506 typedef enum stable_how stable_how
;
1519 struct clist
*rlist
;
1523 typedef struct WRITE3args WRITE3args
;
1525 struct WRITE3resok
{
1528 stable_how committed
;
1531 typedef struct WRITE3resok WRITE3resok
;
1533 struct WRITE3resfail
{
1536 typedef struct WRITE3resfail WRITE3resfail
;
1545 typedef struct WRITE3res WRITE3res
;
1552 typedef enum createmode3 createmode3
;
1557 sattr3 obj_attributes
;
1561 typedef struct createhow3 createhow3
;
1563 struct CREATE3args
{
1567 typedef struct CREATE3args CREATE3args
;
1569 struct CREATE3resok
{
1571 post_op_attr obj_attributes
;
1574 typedef struct CREATE3resok CREATE3resok
;
1576 struct CREATE3resfail
{
1579 typedef struct CREATE3resfail CREATE3resfail
;
1585 CREATE3resfail fail
;
1588 typedef struct CREATE3res CREATE3res
;
1594 typedef struct MKDIR3args MKDIR3args
;
1596 struct MKDIR3resok
{
1598 post_op_attr obj_attributes
;
1601 typedef struct MKDIR3resok MKDIR3resok
;
1603 struct MKDIR3resfail
{
1606 typedef struct MKDIR3resfail MKDIR3resfail
;
1615 typedef struct MKDIR3res MKDIR3res
;
1617 struct symlinkdata3
{
1618 sattr3 symlink_attributes
;
1619 nfspath3 symlink_data
;
1621 typedef struct symlinkdata3 symlinkdata3
;
1623 struct SYMLINK3args
{
1625 symlinkdata3 symlink
;
1627 typedef struct SYMLINK3args SYMLINK3args
;
1629 struct SYMLINK3resok
{
1631 post_op_attr obj_attributes
;
1634 typedef struct SYMLINK3resok SYMLINK3resok
;
1636 struct SYMLINK3resfail
{
1639 typedef struct SYMLINK3resfail SYMLINK3resfail
;
1641 struct SYMLINK3res
{
1645 SYMLINK3resfail fail
;
1648 typedef struct SYMLINK3res SYMLINK3res
;
1650 struct devicedata3
{
1651 sattr3 dev_attributes
;
1654 typedef struct devicedata3 devicedata3
;
1660 sattr3 pipe_attributes
;
1663 typedef struct mknoddata3 mknoddata3
;
1669 typedef struct MKNOD3args MKNOD3args
;
1671 struct MKNOD3resok
{
1673 post_op_attr obj_attributes
;
1676 typedef struct MKNOD3resok MKNOD3resok
;
1678 struct MKNOD3resfail
{
1681 typedef struct MKNOD3resfail MKNOD3resfail
;
1690 typedef struct MKNOD3res MKNOD3res
;
1692 struct REMOVE3args
{
1695 typedef struct REMOVE3args REMOVE3args
;
1697 struct REMOVE3resok
{
1700 typedef struct REMOVE3resok REMOVE3resok
;
1702 struct REMOVE3resfail
{
1705 typedef struct REMOVE3resfail REMOVE3resfail
;
1711 REMOVE3resfail fail
;
1714 typedef struct REMOVE3res REMOVE3res
;
1719 typedef struct RMDIR3args RMDIR3args
;
1721 struct RMDIR3resok
{
1724 typedef struct RMDIR3resok RMDIR3resok
;
1726 struct RMDIR3resfail
{
1729 typedef struct RMDIR3resfail RMDIR3resfail
;
1738 typedef struct RMDIR3res RMDIR3res
;
1740 struct RENAME3args
{
1744 typedef struct RENAME3args RENAME3args
;
1746 struct RENAME3resok
{
1747 wcc_data fromdir_wcc
;
1750 typedef struct RENAME3resok RENAME3resok
;
1752 struct RENAME3resfail
{
1753 wcc_data fromdir_wcc
;
1756 typedef struct RENAME3resfail RENAME3resfail
;
1762 RENAME3resfail fail
;
1765 typedef struct RENAME3res RENAME3res
;
1771 typedef struct LINK3args LINK3args
;
1774 post_op_attr file_attributes
;
1775 wcc_data linkdir_wcc
;
1777 typedef struct LINK3resok LINK3resok
;
1779 struct LINK3resfail
{
1780 post_op_attr file_attributes
;
1781 wcc_data linkdir_wcc
;
1783 typedef struct LINK3resfail LINK3resfail
;
1792 typedef struct LINK3res LINK3res
;
1794 struct READDIR3args
{
1797 cookieverf3 cookieverf
;
1800 typedef struct READDIR3args READDIR3args
;
1806 struct entry3
*nextentry
;
1808 typedef struct entry3 entry3
;
1814 typedef struct dirlist3 dirlist3
;
1816 struct READDIR3resok
{
1817 post_op_attr dir_attributes
;
1818 cookieverf3 cookieverf
;
1825 typedef struct READDIR3resok READDIR3resok
;
1827 struct READDIR3resfail
{
1828 post_op_attr dir_attributes
;
1830 typedef struct READDIR3resfail READDIR3resfail
;
1832 struct READDIR3res
{
1836 READDIR3resfail fail
;
1839 typedef struct READDIR3res READDIR3res
;
1842 struct READDIR3vres
{
1844 post_op_vattr dir_attributes
;
1845 cookieverf3 cookieverf
;
1846 dirent_t
*entries
; /* decoded dirent64s */
1847 uint_t size
; /* actual size of entries */
1848 uint_t entries_size
; /* max size of entries */
1849 off64_t loff
; /* last offset/cookie */
1850 bool_t eof
; /* End of directory */
1852 typedef struct READDIR3vres READDIR3vres
;
1853 #endif /* _KERNEL */
1855 struct READDIRPLUS3args
{
1858 cookieverf3 cookieverf
;
1862 typedef struct READDIRPLUS3args READDIRPLUS3args
;
1868 post_op_attr name_attributes
;
1869 post_op_fh3 name_handle
;
1870 struct entryplus3
*nextentry
;
1872 typedef struct entryplus3 entryplus3
;
1874 struct dirlistplus3
{
1875 entryplus3
*entries
;
1878 typedef struct dirlistplus3 dirlistplus3
;
1880 struct entryplus3_info
{
1885 typedef struct entryplus3_info entryplus3_info
;
1887 struct READDIRPLUS3resok
{
1888 post_op_attr dir_attributes
;
1889 cookieverf3 cookieverf
;
1894 entryplus3_info
*infop
;
1896 typedef struct READDIRPLUS3resok READDIRPLUS3resok
;
1898 struct READDIRPLUS3resfail
{
1899 post_op_attr dir_attributes
;
1901 typedef struct READDIRPLUS3resfail READDIRPLUS3resfail
;
1903 struct READDIRPLUS3res
{
1906 READDIRPLUS3resok ok
;
1907 READDIRPLUS3resfail fail
;
1910 typedef struct READDIRPLUS3res READDIRPLUS3res
;
1913 struct entryplus3_va_fh
{
1918 char *d_name
; /* back pointer into entries */
1921 struct READDIRPLUS3vres
{
1923 post_op_vattr dir_attributes
;
1924 cookieverf3 cookieverf
;
1925 dirent_t
*entries
; /* decoded dirent64s */
1926 uint_t size
; /* actual size of entries */
1927 uint_t entries_size
; /* max size of entries */
1928 bool_t eof
; /* End of directory */
1929 off64_t loff
; /* last offset/cookie */
1930 cred_t
*credentials
; /* caller's credentials */
1931 hrtime_t time
; /* time of READDIRPLUS call */
1933 typedef struct READDIRPLUS3vres READDIRPLUS3vres
;
1934 #endif /* _KERNEL */
1936 struct FSSTAT3args
{
1939 typedef struct FSSTAT3args FSSTAT3args
;
1941 struct FSSTAT3resok
{
1942 post_op_attr obj_attributes
;
1951 typedef struct FSSTAT3resok FSSTAT3resok
;
1953 struct FSSTAT3resfail
{
1954 post_op_attr obj_attributes
;
1956 typedef struct FSSTAT3resfail FSSTAT3resfail
;
1962 FSSTAT3resfail fail
;
1965 typedef struct FSSTAT3res FSSTAT3res
;
1967 struct FSINFO3args
{
1970 typedef struct FSINFO3args FSINFO3args
;
1972 struct FSINFO3resok
{
1973 post_op_attr obj_attributes
;
1982 nfstime3 time_delta
;
1985 typedef struct FSINFO3resok FSINFO3resok
;
1987 struct FSINFO3resfail
{
1988 post_op_attr obj_attributes
;
1990 typedef struct FSINFO3resfail FSINFO3resfail
;
1991 #define FSF3_LINK 0x1
1992 #define FSF3_SYMLINK 0x2
1993 #define FSF3_HOMOGENEOUS 0x8
1994 #define FSF3_CANSETTIME 0x10
2000 FSINFO3resfail fail
;
2003 typedef struct FSINFO3res FSINFO3res
;
2005 struct PATHCONF3args
{
2008 typedef struct PATHCONF3args PATHCONF3args
;
2010 struct nfs3_pathconf_info
{
2014 bool_t chown_restricted
;
2015 bool_t case_insensitive
;
2016 bool_t case_preserving
;
2018 typedef struct nfs3_pathconf_info nfs3_pathconf_info
;
2020 struct PATHCONF3resok
{
2021 post_op_attr obj_attributes
;
2022 nfs3_pathconf_info info
;
2024 typedef struct PATHCONF3resok PATHCONF3resok
;
2026 struct PATHCONF3resfail
{
2027 post_op_attr obj_attributes
;
2029 typedef struct PATHCONF3resfail PATHCONF3resfail
;
2031 struct PATHCONF3res
{
2035 PATHCONF3resfail fail
;
2038 typedef struct PATHCONF3res PATHCONF3res
;
2040 struct COMMIT3args
{
2045 typedef struct COMMIT3args COMMIT3args
;
2047 struct COMMIT3resok
{
2051 typedef struct COMMIT3resok COMMIT3resok
;
2053 struct COMMIT3resfail
{
2056 typedef struct COMMIT3resfail COMMIT3resfail
;
2062 COMMIT3resfail fail
;
2065 typedef struct COMMIT3res COMMIT3res
;
2067 #define NFS3_PROGRAM ((rpcprog_t)100003)
2068 #define NFS_V3 ((rpcvers_t)3)
2069 #define NFSPROC3_NULL ((rpcproc_t)0)
2070 #define NFSPROC3_GETATTR ((rpcproc_t)1)
2071 #define NFSPROC3_SETATTR ((rpcproc_t)2)
2072 #define NFSPROC3_LOOKUP ((rpcproc_t)3)
2073 #define NFSPROC3_ACCESS ((rpcproc_t)4)
2074 #define NFSPROC3_READLINK ((rpcproc_t)5)
2075 #define NFSPROC3_READ ((rpcproc_t)6)
2076 #define NFSPROC3_WRITE ((rpcproc_t)7)
2077 #define NFSPROC3_CREATE ((rpcproc_t)8)
2078 #define NFSPROC3_MKDIR ((rpcproc_t)9)
2079 #define NFSPROC3_SYMLINK ((rpcproc_t)10)
2080 #define NFSPROC3_MKNOD ((rpcproc_t)11)
2081 #define NFSPROC3_REMOVE ((rpcproc_t)12)
2082 #define NFSPROC3_RMDIR ((rpcproc_t)13)
2083 #define NFSPROC3_RENAME ((rpcproc_t)14)
2084 #define NFSPROC3_LINK ((rpcproc_t)15)
2085 #define NFSPROC3_READDIR ((rpcproc_t)16)
2086 #define NFSPROC3_READDIRPLUS ((rpcproc_t)17)
2087 #define NFSPROC3_FSSTAT ((rpcproc_t)18)
2088 #define NFSPROC3_FSINFO ((rpcproc_t)19)
2089 #define NFSPROC3_PATHCONF ((rpcproc_t)20)
2090 #define NFSPROC3_COMMIT ((rpcproc_t)21)
2093 extern void *nfsproc3_null_3();
2094 extern GETATTR3res
*nfsproc3_getattr_3();
2095 extern SETATTR3res
*nfsproc3_setattr_3();
2096 extern LOOKUP3res
*nfsproc3_lookup_3();
2097 extern ACCESS3res
*nfsproc3_access_3();
2098 extern READLINK3res
*nfsproc3_readlink_3();
2099 extern READ3res
*nfsproc3_read_3();
2100 extern WRITE3res
*nfsproc3_write_3();
2101 extern CREATE3res
*nfsproc3_create_3();
2102 extern MKDIR3res
*nfsproc3_mkdir_3();
2103 extern SYMLINK3res
*nfsproc3_symlink_3();
2104 extern MKNOD3res
*nfsproc3_mknod_3();
2105 extern REMOVE3res
*nfsproc3_remove_3();
2106 extern RMDIR3res
*nfsproc3_rmdir_3();
2107 extern RENAME3res
*nfsproc3_rename_3();
2108 extern LINK3res
*nfsproc3_link_3();
2109 extern READDIR3res
*nfsproc3_readdir_3();
2110 extern READDIRPLUS3res
*nfsproc3_readdirplus_3();
2111 extern FSSTAT3res
*nfsproc3_fsstat_3();
2112 extern FSINFO3res
*nfsproc3_fsinfo_3();
2113 extern PATHCONF3res
*nfsproc3_pathconf_3();
2114 extern COMMIT3res
*nfsproc3_commit_3();
2115 #endif /* !_KERNEL */
2118 /* the NFS Version 3 XDR functions */
2120 extern bool_t
xdr_nfs_fh3(XDR
*, nfs_fh3
*);
2121 extern bool_t
xdr_nfslog_nfs_fh3(XDR
*, nfs_fh3
*);
2122 extern bool_t
xdr_nfs_fh3_server(XDR
*, nfs_fh3
*);
2123 extern bool_t
xdr_diropargs3(XDR
*, diropargs3
*);
2124 extern bool_t
xdr_post_op_attr(XDR
*, post_op_attr
*);
2125 extern bool_t
xdr_post_op_fh3(XDR
*, post_op_fh3
*);
2126 extern bool_t
xdr_GETATTR3res(XDR
*, GETATTR3res
*);
2127 extern bool_t
xdr_GETATTR3vres(XDR
*, GETATTR3vres
*);
2128 extern bool_t
xdr_SETATTR3args(XDR
*, SETATTR3args
*);
2129 extern bool_t
xdr_SETATTR3res(XDR
*, SETATTR3res
*);
2130 extern bool_t
xdr_LOOKUP3res(XDR
*, LOOKUP3res
*);
2131 extern bool_t
xdr_LOOKUP3vres(XDR
*, LOOKUP3vres
*);
2132 extern bool_t
xdr_ACCESS3args(XDR
*, ACCESS3args
*);
2133 extern bool_t
xdr_ACCESS3res(XDR
*, ACCESS3res
*);
2134 extern bool_t
xdr_READLINK3args(XDR
*, READLINK3args
*);
2135 extern bool_t
xdr_READLINK3res(XDR
*, READLINK3res
*);
2136 extern bool_t
xdr_READ3args(XDR
*, READ3args
*);
2137 extern bool_t
xdr_READ3res(XDR
*, READ3res
*);
2138 extern bool_t
xdr_READ3vres(XDR
*, READ3vres
*);
2139 extern bool_t
xdr_READ3uiores(XDR
*, READ3uiores
*);
2140 extern bool_t
xdr_WRITE3args(XDR
*, WRITE3args
*);
2141 extern bool_t
xdr_WRITE3res(XDR
*, WRITE3res
*);
2142 extern bool_t
xdr_CREATE3args(XDR
*, CREATE3args
*);
2143 extern bool_t
xdr_CREATE3res(XDR
*, CREATE3res
*);
2144 extern bool_t
xdr_MKDIR3args(XDR
*, MKDIR3args
*);
2145 extern bool_t
xdr_MKDIR3res(XDR
*, MKDIR3res
*);
2146 extern bool_t
xdr_SYMLINK3args(XDR
*, SYMLINK3args
*);
2147 extern bool_t
xdr_SYMLINK3res(XDR
*, SYMLINK3res
*);
2148 extern bool_t
xdr_MKNOD3args(XDR
*, MKNOD3args
*);
2149 extern bool_t
xdr_MKNOD3res(XDR
*, MKNOD3res
*);
2150 extern bool_t
xdr_REMOVE3res(XDR
*, REMOVE3res
*);
2151 extern bool_t
xdr_RMDIR3resfail(XDR
*, RMDIR3resfail
*);
2152 extern bool_t
xdr_RMDIR3res(XDR
*, RMDIR3res
*);
2153 extern bool_t
xdr_RENAME3args(XDR
*, RENAME3args
*);
2154 extern bool_t
xdr_RENAME3res(XDR
*, RENAME3res
*);
2155 extern bool_t
xdr_LINK3args(XDR
*, LINK3args
*);
2156 extern bool_t
xdr_LINK3res(XDR
*, LINK3res
*);
2157 extern bool_t
xdr_READDIR3args(XDR
*, READDIR3args
*);
2158 extern bool_t
xdr_READDIR3res(XDR
*, READDIR3res
*);
2159 extern bool_t
xdr_READDIR3vres(XDR
*, READDIR3vres
*);
2160 extern bool_t
xdr_READDIRPLUS3args(XDR
*, READDIRPLUS3args
*);
2161 extern bool_t
xdr_READDIRPLUS3res(XDR
*, READDIRPLUS3res
*);
2162 extern bool_t
xdr_READDIRPLUS3vres(XDR
*, READDIRPLUS3vres
*);
2163 extern bool_t
xdr_FSSTAT3res(XDR
*, FSSTAT3res
*);
2164 extern bool_t
xdr_FSINFO3res(XDR
*, FSINFO3res
*);
2165 extern bool_t
xdr_PATHCONF3res(XDR
*, PATHCONF3res
*);
2166 extern bool_t
xdr_COMMIT3args(XDR
*, COMMIT3args
*);
2167 extern bool_t
xdr_COMMIT3res(XDR
*, COMMIT3res
*);
2168 extern bool_t
xdr_fastnfs_fh3(XDR
*, nfs_fh3
**);
2171 * The NFS Version 3 service procedures.
2173 struct exportinfo
; /* defined in nfs/export.h */
2174 struct servinfo
; /* defined in nfs/nfs_clnt.h */
2175 struct mntinfo
; /* defined in nfs/nfs_clnt.h */
2176 struct sec_ol
; /* defined in nfs/export.h */
2178 extern void rfs3_getattr(GETATTR3args
*, GETATTR3res
*, struct exportinfo
*,
2179 struct svc_req
*, cred_t
*, bool_t
);
2180 extern void *rfs3_getattr_getfh(GETATTR3args
*);
2181 extern void rfs3_setattr(SETATTR3args
*, SETATTR3res
*, struct exportinfo
*,
2182 struct svc_req
*, cred_t
*, bool_t
);
2183 extern void *rfs3_setattr_getfh(SETATTR3args
*);
2184 extern void rfs3_lookup(LOOKUP3args
*, LOOKUP3res
*, struct exportinfo
*,
2185 struct svc_req
*, cred_t
*, bool_t
);
2186 extern void *rfs3_lookup_getfh(LOOKUP3args
*);
2187 extern void rfs3_access(ACCESS3args
*, ACCESS3res
*, struct exportinfo
*,
2188 struct svc_req
*, cred_t
*, bool_t
);
2189 extern void *rfs3_access_getfh(ACCESS3args
*);
2190 extern void rfs3_readlink(READLINK3args
*, READLINK3res
*,
2191 struct exportinfo
*, struct svc_req
*, cred_t
*, bool_t
);
2192 extern void *rfs3_readlink_getfh(READLINK3args
*);
2193 extern void rfs3_readlink_free(READLINK3res
*);
2194 extern void rfs3_read(READ3args
*, READ3res
*, struct exportinfo
*,
2195 struct svc_req
*, cred_t
*, bool_t
);
2196 extern void *rfs3_read_getfh(READ3args
*);
2197 extern void rfs3_read_free(READ3res
*);
2198 extern void rfs3_write(WRITE3args
*, WRITE3res
*, struct exportinfo
*,
2199 struct svc_req
*, cred_t
*, bool_t
);
2200 extern void *rfs3_write_getfh(WRITE3args
*);
2201 extern void rfs3_create(CREATE3args
*, CREATE3res
*, struct exportinfo
*,
2202 struct svc_req
*, cred_t
*, bool_t
);
2203 extern void *rfs3_create_getfh(CREATE3args
*);
2204 extern void rfs3_mkdir(MKDIR3args
*, MKDIR3res
*, struct exportinfo
*,
2205 struct svc_req
*, cred_t
*, bool_t
);
2206 extern void *rfs3_mkdir_getfh(MKDIR3args
*);
2207 extern void rfs3_symlink(SYMLINK3args
*, SYMLINK3res
*, struct exportinfo
*,
2208 struct svc_req
*, cred_t
*, bool_t
);
2209 extern void *rfs3_symlink_getfh(SYMLINK3args
*);
2210 extern void rfs3_mknod(MKNOD3args
*, MKNOD3res
*, struct exportinfo
*,
2211 struct svc_req
*, cred_t
*, bool_t
);
2212 extern void *rfs3_mknod_getfh(MKNOD3args
*);
2213 extern void rfs3_remove(REMOVE3args
*, REMOVE3res
*, struct exportinfo
*,
2214 struct svc_req
*, cred_t
*, bool_t
);
2215 extern void *rfs3_remove_getfh(REMOVE3args
*);
2216 extern void rfs3_rmdir(RMDIR3args
*, RMDIR3res
*, struct exportinfo
*,
2217 struct svc_req
*, cred_t
*, bool_t
);
2218 extern void *rfs3_rmdir_getfh(RMDIR3args
*);
2219 extern void rfs3_rename(RENAME3args
*, RENAME3res
*, struct exportinfo
*,
2220 struct svc_req
*, cred_t
*, bool_t
);
2221 extern void *rfs3_rename_getfh(RENAME3args
*);
2222 extern void rfs3_link(LINK3args
*, LINK3res
*, struct exportinfo
*,
2223 struct svc_req
*, cred_t
*, bool_t
);
2224 extern void *rfs3_link_getfh(LINK3args
*);
2225 extern void rfs3_readdir(READDIR3args
*, READDIR3res
*, struct exportinfo
*,
2226 struct svc_req
*, cred_t
*, bool_t
);
2227 extern void *rfs3_readdir_getfh(READDIR3args
*);
2228 extern void rfs3_readdir_free(READDIR3res
*);
2229 extern void rfs3_readdirplus(READDIRPLUS3args
*, READDIRPLUS3res
*,
2230 struct exportinfo
*, struct svc_req
*, cred_t
*, bool_t
);
2231 extern void *rfs3_readdirplus_getfh(READDIRPLUS3args
*);
2232 extern void rfs3_readdirplus_free(READDIRPLUS3res
*);
2233 extern void rfs3_fsstat(FSSTAT3args
*, FSSTAT3res
*, struct exportinfo
*,
2234 struct svc_req
*, cred_t
*, bool_t
);
2235 extern void *rfs3_fsstat_getfh(FSSTAT3args
*);
2236 extern void rfs3_fsinfo(FSINFO3args
*, FSINFO3res
*, struct exportinfo
*,
2237 struct svc_req
*, cred_t
*, bool_t
);
2238 extern void *rfs3_fsinfo_getfh(FSINFO3args
*);
2239 extern void rfs3_pathconf(PATHCONF3args
*, PATHCONF3res
*,
2240 struct exportinfo
*, struct svc_req
*, cred_t
*, bool_t
);
2241 extern void *rfs3_pathconf_getfh(PATHCONF3args
*);
2242 extern void rfs3_commit(COMMIT3args
*, COMMIT3res
*, struct exportinfo
*,
2243 struct svc_req
*, cred_t
*, bool_t
);
2244 extern void *rfs3_commit_getfh(COMMIT3args
*);
2245 extern void rfs3_srvrinit(void);
2246 extern void rfs3_srvrfini(void);
2248 extern int nfs3_validate_caches(vnode_t
*, cred_t
*);
2249 extern void nfs3_cache_post_op_attr(vnode_t
*, post_op_attr
*, hrtime_t
,
2251 extern void nfs3_cache_post_op_vattr(vnode_t
*, post_op_vattr
*, hrtime_t
,
2253 extern void nfs3_cache_wcc_data(vnode_t
*, wcc_data
*, hrtime_t
, cred_t
*);
2254 extern void nfs3_attrcache(vnode_t
*, fattr3
*, hrtime_t
);
2255 extern int nfs3_cache_fattr3(vnode_t
*, fattr3
*, vattr_t
*, hrtime_t
,
2257 extern int nfs3_getattr_otw(vnode_t
*, struct vattr
*, cred_t
*);
2258 extern int nfs3getattr(vnode_t
*, struct vattr
*, cred_t
*);
2259 extern int fattr3_to_vattr(vnode_t
*, fattr3
*, struct vattr
*);
2260 extern int nfs3tsize(void);
2261 extern uint_t
nfs3_tsize(struct knetconfig
*);
2262 extern uint_t
rfs3_tsize(struct svc_req
*);
2263 extern int vattr_to_sattr3(struct vattr
*, sattr3
*);
2264 extern void setdiropargs3(diropargs3
*, char *, vnode_t
*);
2265 extern enum nfsstat3
puterrno3(int);
2266 extern int geterrno3(enum nfsstat3
);
2267 extern int nfs3init(int, char *);
2268 extern void nfs3fini(void);
2269 extern int nfs3_vfsinit(void);
2270 extern void nfs3_vfsfini(void);
2271 extern void vattr_to_post_op_attr(struct vattr
*, post_op_attr
*);
2272 extern void mblk_to_iov(mblk_t
*, int, struct iovec
*);
2273 extern int rfs_publicfh_mclookup(char *, vnode_t
*, cred_t
*, vnode_t
**,
2274 struct exportinfo
**, struct sec_ol
*);
2275 extern int rfs_pathname(char *, vnode_t
**, vnode_t
**, vnode_t
*,
2278 extern vtype_t nf3_to_vt
[];
2279 extern kstat_named_t
*rfsproccnt_v3_ptr
;
2280 extern const struct vfsops nfs3_vfsops
;
2281 extern const struct vnodeops nfs3_vnodeops
;
2284 * Some servers do not properly update the attributes of the
2285 * directory when changes are made. To allow interoperability
2286 * with these broken servers, the nfs_disable_rddir_cache
2287 * parameter can be used to disable readdir response caching.
2289 extern int nfs_disable_rddir_cache
;
2292 * External functions called by the v2/v3 code into the v4 code
2294 extern void nfs4_clnt_init(void);
2295 extern void nfs4_clnt_fini(void);
2298 * Does NFS4 server have a vnode delegated? TRUE if so, FALSE if not.
2300 extern bool_t
rfs4_check_delegated(int mode
, vnode_t
*, bool_t trunc
);
2302 * fop_getattr call. If a NFS4 delegation is present on the supplied vnode
2303 * call back to the delegated client to get attributes for VATTR_MTIME and
2304 * VATTR_SIZE. Invoke fop_getattr to get all other attributes or all attributes
2305 * if no delegation is present.
2307 extern int rfs4_delegated_getattr(vnode_t
*, vattr_t
*, int, cred_t
*);
2308 extern void rfs4_hold_deleg_policy(void);
2309 extern void rfs4_rele_deleg_policy(void);
2311 extern int do_xattr_exists_check(vnode_t
*, ulong_t
*, cred_t
*);
2314 * Copy Reduction support.
2315 * xuio_t wrapper with additional private data.
2318 typedef struct nfs_xuio
{
2325 extern xuio_t
*rfs_setup_xuio(vnode_t
*);
2326 extern mblk_t
*uio_to_mblk(uio_t
*);
2327 extern mblk_t
*rfs_read_alloc(uint_t
, struct iovec
**, int *);
2328 extern void rfs_rndup_mblks(mblk_t
*, uint_t
, int);
2329 extern void rfs_free_xuio(void *);
2331 #endif /* _KERNEL */
2337 #endif /* _NFS_NFS_H */