2 * Copyright (c) 2006-2019 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
30 * miscellaneous support functions for NFSv4
32 #include <sys/param.h>
34 #include <sys/kauth.h>
35 #include <sys/systm.h>
36 #include <sys/kernel.h>
37 #include <sys/mount_internal.h>
38 #include <sys/vnode_internal.h>
39 #include <sys/kpi_mbuf.h>
40 #include <sys/socket.h>
42 #include <sys/malloc.h>
43 #include <sys/syscall.h>
44 #include <sys/ubc_internal.h>
45 #include <sys/fcntl.h>
46 #include <sys/quota.h>
47 #include <sys/domain.h>
48 #include <libkern/OSAtomic.h>
49 #include <kern/thread_call.h>
52 #include <sys/vmparam.h>
55 #include <kern/clock.h>
57 #include <nfs/rpcv2.h>
58 #include <nfs/nfsproto.h>
60 #include <nfs/nfsnode.h>
61 #include <nfs/xdr_subs.h>
62 #include <nfs/nfsm_subs.h>
63 #include <nfs/nfs_gss.h>
64 #include <nfs/nfsmount.h>
65 #include <nfs/nfs_lock.h>
67 #include <miscfs/specfs/specdev.h>
69 #include <netinet/in.h>
70 #include <net/kpi_interface.h>
74 * NFS_MAX_WHO is the maximum length of a string representation used
75 * in as an ace who, owner, or group. There is no explicit limit in the
76 * protocol, however the kauth routines have a limit of MAPATHLEN for
77 * strings including the trailing null character, so we impose that
78 * limit. This should be changed if kauth routines change.
80 * We also want some reasonable maximum, as 32 bits worth of string length
81 * is liable to cause problems. At the very least this limit must guarantee
82 * that any express that contains the 32 bit length from off the wire used in
83 * allocations does not overflow.
85 #define NFS_MAX_WHO MAXPATHLEN
88 * Create the unique client ID to use for this mount.
90 * Format: unique ID + en0_address + server_address + mntfromname + mntonname
92 * We could possibly use one client ID for all mounts of the same server;
93 * however, that would complicate some aspects of state management.
95 * Each mount socket connection sends a SETCLIENTID. If the ID is the same but
96 * the verifier (mounttime) changes, then all previous (mounts') state gets dropped.
98 * State is typically managed per-mount and in order to keep it that way
99 * each mount needs to use a separate client ID. However, we also need to
100 * make sure that each mount uses the same client ID each time.
102 * In an attempt to differentiate mounts we include the mntfromname and mntonname
103 * strings to the client ID (as long as they fit). We also make sure that the
104 * value does not conflict with any existing values in use (changing the unique ID).
106 * Note that info such as the server's address may change over the lifetime of the
107 * mount. But the client ID will not be updated because we don't want it changing
108 * simply because we switched to a different server address.
111 nfs4_init_clientid(struct nfsmount
*nmp
)
113 struct nfs_client_id
*ncip
, *ncip2
;
114 struct sockaddr
*saddr
;
115 int error
, len
, len2
, cmp
;
116 struct vfsstatfs
*vsfs
;
118 static uint8_t en0addr
[6];
119 static uint8_t en0addr_set
= 0;
121 lck_mtx_lock(nfs_global_mutex
);
123 ifnet_t interface
= NULL
;
124 error
= ifnet_find_by_name("en0", &interface
);
126 error
= ifnet_lladdr_copy_bytes(interface
, en0addr
, sizeof(en0addr
));
129 printf("nfs4_init_clientid: error getting en0 address, %d\n", error
);
135 ifnet_release(interface
);
138 lck_mtx_unlock(nfs_global_mutex
);
140 MALLOC(ncip
, struct nfs_client_id
*, sizeof(struct nfs_client_id
), M_TEMP
, M_WAITOK
);
145 vsfs
= vfs_statfs(nmp
->nm_mountp
);
146 saddr
= nmp
->nm_saddr
;
147 ncip
->nci_idlen
= sizeof(uint32_t) + sizeof(en0addr
) + saddr
->sa_len
+
148 strlen(vsfs
->f_mntfromname
) + 1 + strlen(vsfs
->f_mntonname
) + 1;
149 if (ncip
->nci_idlen
> NFS4_OPAQUE_LIMIT
) {
150 ncip
->nci_idlen
= NFS4_OPAQUE_LIMIT
;
152 MALLOC(ncip
->nci_id
, char *, ncip
->nci_idlen
, M_TEMP
, M_WAITOK
);
158 *(uint32_t*)ncip
->nci_id
= 0;
159 len
= sizeof(uint32_t);
160 len2
= min(sizeof(en0addr
), ncip
->nci_idlen
- len
);
161 bcopy(en0addr
, &ncip
->nci_id
[len
], len2
);
162 len
+= sizeof(en0addr
);
163 len2
= min(saddr
->sa_len
, ncip
->nci_idlen
- len
);
164 bcopy(saddr
, &ncip
->nci_id
[len
], len2
);
166 if (len
< ncip
->nci_idlen
) {
167 len2
= strlcpy(&ncip
->nci_id
[len
], vsfs
->f_mntfromname
, ncip
->nci_idlen
- len
);
168 if (len2
< (ncip
->nci_idlen
- len
)) {
171 len
= ncip
->nci_idlen
;
174 if (len
< ncip
->nci_idlen
) {
175 len2
= strlcpy(&ncip
->nci_id
[len
], vsfs
->f_mntonname
, ncip
->nci_idlen
- len
);
176 if (len2
< (ncip
->nci_idlen
- len
)) {
179 len
= ncip
->nci_idlen
;
183 /* make sure the ID is unique, and add it to the sorted list */
184 lck_mtx_lock(nfs_global_mutex
);
185 TAILQ_FOREACH(ncip2
, &nfsclientids
, nci_link
) {
186 if (ncip
->nci_idlen
> ncip2
->nci_idlen
) {
189 if (ncip
->nci_idlen
< ncip2
->nci_idlen
) {
192 cmp
= bcmp(ncip
->nci_id
+ sizeof(uint32_t),
193 ncip2
->nci_id
+ sizeof(uint32_t),
194 ncip
->nci_idlen
- sizeof(uint32_t));
201 if (*(uint32_t*)ncip
->nci_id
> *(uint32_t*)ncip2
->nci_id
) {
204 if (*(uint32_t*)ncip
->nci_id
< *(uint32_t*)ncip2
->nci_id
) {
207 *(uint32_t*)ncip
->nci_id
+= 1;
209 if (*(uint32_t*)ncip
->nci_id
) {
210 printf("nfs client ID collision (%d) for %s on %s\n", *(uint32_t*)ncip
->nci_id
,
211 vsfs
->f_mntfromname
, vsfs
->f_mntonname
);
214 TAILQ_INSERT_BEFORE(ncip2
, ncip
, nci_link
);
216 TAILQ_INSERT_TAIL(&nfsclientids
, ncip
, nci_link
);
218 nmp
->nm_longid
= ncip
;
219 lck_mtx_unlock(nfs_global_mutex
);
228 nfs4_setclientid(struct nfsmount
*nmp
)
230 uint64_t verifier
, xid
;
231 int error
= 0, status
, numops
;
232 uint32_t bitmap
[NFS_ATTR_BITMAP_LEN
];
235 struct nfsm_chain nmreq
, nmrep
;
236 struct sockaddr_storage ss
;
237 void *sinaddr
= NULL
;
238 char raddr
[MAX_IPv6_STR_LEN
];
239 char uaddr
[MAX_IPv6_STR_LEN
+ 16];
243 thd
= current_thread();
244 cred
= IS_VALID_CRED(nmp
->nm_mcred
) ? nmp
->nm_mcred
: vfs_context_ucred(vfs_context_kernel());
245 kauth_cred_ref(cred
);
247 nfsm_chain_null(&nmreq
);
248 nfsm_chain_null(&nmrep
);
250 if (!nmp
->nm_longid
) {
251 error
= nfs4_init_clientid(nmp
);
256 nfsm_chain_build_alloc_init(error
, &nmreq
, 14 * NFSX_UNSIGNED
+ nmp
->nm_longid
->nci_idlen
);
257 nfsm_chain_add_compound_header(error
, &nmreq
, "setclid", nmp
->nm_minor_vers
, numops
);
259 nfsm_chain_add_32(error
, &nmreq
, NFS_OP_SETCLIENTID
);
260 /* nfs_client_id4 client; */
261 nfsm_chain_add_64(error
, &nmreq
, nmp
->nm_mounttime
);
262 nfsm_chain_add_32(error
, &nmreq
, nmp
->nm_longid
->nci_idlen
);
263 nfsm_chain_add_opaque(error
, &nmreq
, nmp
->nm_longid
->nci_id
, nmp
->nm_longid
->nci_idlen
);
265 /* cb_client4 callback; */
266 if (!NMFLAG(nmp
, NOCALLBACK
) && nmp
->nm_cbid
&& nfs4_cb_port
&&
267 !sock_getsockname(nmp
->nm_nso
->nso_so
, (struct sockaddr
*)&ss
, sizeof(ss
))) {
268 if (ss
.ss_family
== AF_INET
) {
269 sinaddr
= &((struct sockaddr_in
*)&ss
)->sin_addr
;
271 } else if (ss
.ss_family
== AF_INET6
) {
272 sinaddr
= &((struct sockaddr_in6
*)&ss
)->sin6_addr
;
273 port
= nfs4_cb_port6
;
275 if (sinaddr
&& port
&& (inet_ntop(ss
.ss_family
, sinaddr
, raddr
, sizeof(raddr
)) == raddr
)) {
276 /* assemble r_addr = universal address (nmp->nm_nso->nso_so source IP addr + port) */
277 ualen
= snprintf(uaddr
, sizeof(uaddr
), "%s.%d.%d", raddr
,
278 ((port
>> 8) & 0xff),
280 /* make sure it fit, give up if it didn't */
281 if (ualen
>= (int)sizeof(uaddr
)) {
287 /* add callback info */
288 nfsm_chain_add_32(error
, &nmreq
, NFS4_CALLBACK_PROG
); /* callback program */
289 if (ss
.ss_family
== AF_INET
) {
290 nfsm_chain_add_string(error
, &nmreq
, "tcp", 3); /* callback r_netid */
291 } else if (ss
.ss_family
== AF_INET6
) {
292 nfsm_chain_add_string(error
, &nmreq
, "tcp6", 4); /* callback r_netid */
294 nfsm_chain_add_string(error
, &nmreq
, uaddr
, ualen
); /* callback r_addr */
295 nfsm_chain_add_32(error
, &nmreq
, nmp
->nm_cbid
); /* callback_ident */
297 /* don't provide valid callback info */
298 nfsm_chain_add_32(error
, &nmreq
, 0); /* callback program */
299 nfsm_chain_add_string(error
, &nmreq
, "", 0); /* callback r_netid */
300 nfsm_chain_add_string(error
, &nmreq
, "", 0); /* callback r_addr */
301 nfsm_chain_add_32(error
, &nmreq
, 0); /* callback_ident */
303 nfsm_chain_build_done(error
, &nmreq
);
304 nfsm_assert(error
, (numops
== 0), EPROTO
);
306 error
= nfs_request2(NULL
, nmp
->nm_mountp
, &nmreq
, NFSPROC4_COMPOUND
, thd
, cred
, NULL
, R_SETUP
, &nmrep
, &xid
, &status
);
307 nfsm_chain_skip_tag(error
, &nmrep
);
308 nfsm_chain_get_32(error
, &nmrep
, numops
);
309 if (!error
&& (numops
!= 1) && status
) {
312 nfsm_chain_op_check(error
, &nmrep
, NFS_OP_SETCLIENTID
);
313 if (error
== NFSERR_CLID_INUSE
) {
314 printf("nfs4_setclientid: client ID in use?\n");
317 nfsm_chain_get_64(error
, &nmrep
, nmp
->nm_clientid
);
318 nfsm_chain_get_64(error
, &nmrep
, verifier
);
319 nfsm_chain_cleanup(&nmreq
);
320 nfsm_chain_cleanup(&nmrep
);
322 // SETCLIENTID_CONFIRM
324 nfsm_chain_build_alloc_init(error
, &nmreq
, 15 * NFSX_UNSIGNED
);
325 nfsm_chain_add_compound_header(error
, &nmreq
, "setclid_conf", nmp
->nm_minor_vers
, numops
);
327 nfsm_chain_add_32(error
, &nmreq
, NFS_OP_SETCLIENTID_CONFIRM
);
328 nfsm_chain_add_64(error
, &nmreq
, nmp
->nm_clientid
);
329 nfsm_chain_add_64(error
, &nmreq
, verifier
);
330 nfsm_chain_build_done(error
, &nmreq
);
331 nfsm_assert(error
, (numops
== 0), EPROTO
);
333 error
= nfs_request2(NULL
, nmp
->nm_mountp
, &nmreq
, NFSPROC4_COMPOUND
, thd
, cred
, NULL
, R_SETUP
, &nmrep
, &xid
, &status
);
334 nfsm_chain_skip_tag(error
, &nmrep
);
335 nfsm_chain_get_32(error
, &nmrep
, numops
);
336 nfsm_chain_op_check(error
, &nmrep
, NFS_OP_SETCLIENTID_CONFIRM
);
338 printf("nfs4_setclientid: confirm error %d\n", error
);
340 lck_mtx_lock(&nmp
->nm_lock
);
342 nmp
->nm_state
|= NFSSTA_CLIENTID
;
344 lck_mtx_unlock(&nmp
->nm_lock
);
346 nfsmout_if(error
|| !nmp
->nm_dnp
);
348 /* take the opportunity to refresh fs attributes too */
349 // PUTFH, GETATTR(FS)
351 nfsm_chain_build_alloc_init(error
, &nmreq
, 23 * NFSX_UNSIGNED
);
352 nfsm_chain_add_compound_header(error
, &nmreq
, "setclid_attr", nmp
->nm_minor_vers
, numops
);
354 nfsm_chain_add_32(error
, &nmreq
, NFS_OP_PUTFH
);
355 nfsm_chain_add_fh(error
, &nmreq
, nmp
->nm_vers
, nmp
->nm_dnp
->n_fhp
, nmp
->nm_dnp
->n_fhsize
);
357 nfsm_chain_add_32(error
, &nmreq
, NFS_OP_GETATTR
);
358 NFS_CLEAR_ATTRIBUTES(bitmap
);
359 NFS4_PER_FS_ATTRIBUTES(bitmap
);
360 nfsm_chain_add_bitmap(error
, &nmreq
, bitmap
, NFS_ATTR_BITMAP_LEN
);
361 nfsm_chain_build_done(error
, &nmreq
);
362 nfsm_assert(error
, (numops
== 0), EPROTO
);
364 error
= nfs_request2(NULL
, nmp
->nm_mountp
, &nmreq
, NFSPROC4_COMPOUND
, thd
, cred
, NULL
, R_SETUP
, &nmrep
, &xid
, &status
);
365 nfsm_chain_skip_tag(error
, &nmrep
);
366 nfsm_chain_get_32(error
, &nmrep
, numops
);
367 lck_mtx_lock(&nmp
->nm_lock
);
368 nfsm_chain_op_check(error
, &nmrep
, NFS_OP_PUTFH
);
369 nfsm_chain_op_check(error
, &nmrep
, NFS_OP_GETATTR
);
371 error
= nfs4_parsefattr(&nmrep
, &nmp
->nm_fsattr
, NULL
, NULL
, NULL
, NULL
);
373 lck_mtx_unlock(&nmp
->nm_lock
);
374 if (error
) { /* ignore any error from the getattr */
378 nfsm_chain_cleanup(&nmreq
);
379 nfsm_chain_cleanup(&nmrep
);
380 kauth_cred_unref(&cred
);
382 printf("nfs4_setclientid failed, %d\n", error
);
388 * renew/check lease state on server
391 nfs4_renew(struct nfsmount
*nmp
, int rpcflag
)
393 int error
= 0, status
, numops
;
395 struct nfsm_chain nmreq
, nmrep
;
398 cred
= IS_VALID_CRED(nmp
->nm_mcred
) ? nmp
->nm_mcred
: vfs_context_ucred(vfs_context_kernel());
399 kauth_cred_ref(cred
);
401 nfsm_chain_null(&nmreq
);
402 nfsm_chain_null(&nmrep
);
406 nfsm_chain_build_alloc_init(error
, &nmreq
, 8 * NFSX_UNSIGNED
);
407 nfsm_chain_add_compound_header(error
, &nmreq
, "renew", nmp
->nm_minor_vers
, numops
);
409 nfsm_chain_add_32(error
, &nmreq
, NFS_OP_RENEW
);
410 nfsm_chain_add_64(error
, &nmreq
, nmp
->nm_clientid
);
411 nfsm_chain_build_done(error
, &nmreq
);
412 nfsm_assert(error
, (numops
== 0), EPROTO
);
414 error
= nfs_request2(NULL
, nmp
->nm_mountp
, &nmreq
, NFSPROC4_COMPOUND
,
415 current_thread(), cred
, NULL
, rpcflag
, &nmrep
, &xid
, &status
);
416 nfsm_chain_skip_tag(error
, &nmrep
);
417 nfsm_chain_get_32(error
, &nmrep
, numops
);
418 nfsm_chain_op_check(error
, &nmrep
, NFS_OP_RENEW
);
420 nfsm_chain_cleanup(&nmreq
);
421 nfsm_chain_cleanup(&nmrep
);
422 kauth_cred_unref(&cred
);
428 * periodic timer to renew lease state on server
431 nfs4_renew_timer(void *param0
, __unused
void *param1
)
433 struct nfsmount
*nmp
= param0
;
435 int error
= 0, interval
;
437 lck_mtx_lock(&nmp
->nm_lock
);
438 clientid
= nmp
->nm_clientid
;
439 if ((nmp
->nm_state
& NFSSTA_RECOVER
) || !(nmp
->nm_sockflags
& NMSOCK_READY
)) {
440 lck_mtx_unlock(&nmp
->nm_lock
);
443 lck_mtx_unlock(&nmp
->nm_lock
);
445 error
= nfs4_renew(nmp
, R_RECOVER
);
447 if (error
== ETIMEDOUT
) {
448 nfs_need_reconnect(nmp
);
450 printf("nfs4_renew_timer: error %d\n", error
);
452 lck_mtx_lock(&nmp
->nm_lock
);
453 if (error
&& (error
!= ETIMEDOUT
) &&
454 (nmp
->nm_clientid
== clientid
) && !(nmp
->nm_state
& NFSSTA_RECOVER
)) {
455 printf("nfs4_renew_timer: error %d, initiating recovery\n", error
);
456 nfs_need_recover(nmp
, error
);
459 interval
= nmp
->nm_fsattr
.nfsa_lease
/ (error
? 4 : 2);
460 if ((interval
< 1) || (nmp
->nm_state
& NFSSTA_RECOVER
)) {
463 lck_mtx_unlock(&nmp
->nm_lock
);
464 nfs_interval_timer_start(nmp
->nm_renew_timer
, interval
* 1000);
468 * get the list of supported security flavors
470 * How we get them depends on what args we are given:
474 * YES YES Use the fh and name provided
475 * YES NO 4.1-only just use the fh provided
476 * NO YES Use the node's (or root) fh and the name provided
477 * NO NO Use the node's parent and the node's name (4.1 will just use node's fh)
480 nfs4_secinfo_rpc(struct nfsmount
*nmp
, struct nfsreq_secinfo_args
*siap
, kauth_cred_t cred
, uint32_t *sec
, int *seccountp
)
482 int error
= 0, status
, nfsvers
, numops
, namelen
, fhsize
;
483 vnode_t dvp
= NULLVP
;
486 const char *vname
= NULL
, *name
;
488 struct nfsm_chain nmreq
, nmrep
;
491 if (nfs_mount_gone(nmp
)) {
494 nfsvers
= nmp
->nm_vers
;
497 nfsm_chain_null(&nmreq
);
498 nfsm_chain_null(&nmrep
);
501 fhsize
= fhp
? siap
->rsia_fhsize
: 0;
502 name
= siap
->rsia_name
;
503 namelen
= name
? siap
->rsia_namelen
: 0;
504 if (name
&& !namelen
) {
505 namelen
= strlen(name
);
508 if (!np
) { /* use PUTROOTFH */
512 fhsize
= np
->n_fhsize
;
521 nfs_node_lock_force(np
);
522 if ((vnode_vtype(NFSTOV(np
)) != VDIR
) && np
->n_sillyrename
) {
524 * The node's been sillyrenamed, so we need to use
525 * the sillyrename directory/name to do the open.
527 struct nfs_sillyrename
*nsp
= np
->n_sillyrename
;
530 if ((error
= vnode_get(dvp
))) {
536 fhsize
= dnp
->n_fhsize
;
537 name
= nsp
->nsr_name
;
538 namelen
= nsp
->nsr_namlen
;
541 * [sigh] We can't trust VFS to get the parent right for named
542 * attribute nodes. (It likes to reparent the nodes after we've
543 * created them.) Luckily we can probably get the right parent
544 * from the n_parent we have stashed away.
546 if ((np
->n_vattr
.nva_flags
& NFS_FFLAG_IS_ATTR
) &&
547 (((dvp
= np
->n_parent
)) && (error
= vnode_get(dvp
)))) {
551 dvp
= vnode_getparent(NFSTOV(np
));
553 vname
= vnode_getname(NFSTOV(np
));
554 if (!dvp
|| !vname
) {
563 fhsize
= dnp
->n_fhsize
;
565 namelen
= strnlen(vname
, MAXPATHLEN
);
570 // PUT(ROOT)FH + SECINFO
572 nfsm_chain_build_alloc_init(error
, &nmreq
,
573 4 * NFSX_UNSIGNED
+ NFSX_FH(nfsvers
) + nfsm_rndup(namelen
));
574 nfsm_chain_add_compound_header(error
, &nmreq
, "secinfo", nmp
->nm_minor_vers
, numops
);
577 nfsm_chain_add_32(error
, &nmreq
, NFS_OP_PUTFH
);
578 nfsm_chain_add_fh(error
, &nmreq
, nfsvers
, fhp
, fhsize
);
580 nfsm_chain_add_32(error
, &nmreq
, NFS_OP_PUTROOTFH
);
583 nfsm_chain_add_32(error
, &nmreq
, NFS_OP_SECINFO
);
584 nfsm_chain_add_name(error
, &nmreq
, name
, namelen
, nmp
);
585 nfsm_chain_build_done(error
, &nmreq
);
586 nfsm_assert(error
, (numops
== 0), EPROTO
);
588 error
= nfs_request2(np
, nmp
->nm_mountp
, &nmreq
, NFSPROC4_COMPOUND
,
589 current_thread(), cred
, NULL
, 0, &nmrep
, &xid
, &status
);
590 nfsm_chain_skip_tag(error
, &nmrep
);
591 nfsm_chain_get_32(error
, &nmrep
, numops
);
592 nfsm_chain_op_check(error
, &nmrep
, fhp
? NFS_OP_PUTFH
: NFS_OP_PUTROOTFH
);
593 nfsm_chain_op_check(error
, &nmrep
, NFS_OP_SECINFO
);
595 error
= nfsm_chain_get_secinfo(&nmrep
, sec
, seccountp
);
597 nfsm_chain_cleanup(&nmreq
);
598 nfsm_chain_cleanup(&nmrep
);
600 vnode_putname(vname
);
607 #endif /* CONFIG_NFS4 */
610 * Parse an NFSv4 SECINFO array to an array of pseudo flavors.
611 * (Note: also works for MOUNTv3 security arrays.)
614 nfsm_chain_get_secinfo(struct nfsm_chain
*nmc
, uint32_t *sec
, int *seccountp
)
616 int error
= 0, secmax
, seccount
, srvcount
;
624 seccount
= srvcount
= 0;
628 nfsm_chain_get_32(error
, nmc
, srvcount
);
629 while (!error
&& (srvcount
> 0) && (seccount
< secmax
)) {
630 nfsm_chain_get_32(error
, nmc
, flavor
);
639 #endif /* CONFIG_NFS_GSS */
640 sec
[seccount
++] = flavor
;
644 /* we only recognize KRB5, KRB5I, KRB5P */
645 nfsm_chain_get_32(error
, nmc
, val
); /* OID length */
647 if (val
!= sizeof(krb5_mech_oid
)) {
648 nfsm_chain_adv(error
, nmc
, val
);
649 nfsm_chain_adv(error
, nmc
, 2 * NFSX_UNSIGNED
);
652 nfsm_chain_get_opaque(error
, nmc
, val
, oid
); /* OID bytes */
654 if (bcmp(oid
, krb5_mech_oid
, sizeof(krb5_mech_oid
))) {
655 nfsm_chain_adv(error
, nmc
, 2 * NFSX_UNSIGNED
);
658 nfsm_chain_get_32(error
, nmc
, val
); /* QOP */
659 nfsm_chain_get_32(error
, nmc
, val
); /* SERVICE */
662 case RPCSEC_GSS_SVC_NONE
:
663 sec
[seccount
++] = RPCAUTH_KRB5
;
665 case RPCSEC_GSS_SVC_INTEGRITY
:
666 sec
[seccount
++] = RPCAUTH_KRB5I
;
668 case RPCSEC_GSS_SVC_PRIVACY
:
669 sec
[seccount
++] = RPCAUTH_KRB5P
;
673 #endif /* CONFIG_NFS_GSS */
679 *seccountp
= seccount
;
686 * Fetch the FS_LOCATIONS attribute for the node found at directory/name.
689 nfs4_get_fs_locations(
690 struct nfsmount
*nmp
,
696 struct nfs_fs_locations
*nfslsp
)
698 int error
= 0, numops
, status
;
699 uint32_t bitmap
[NFS_ATTR_BITMAP_LEN
];
700 struct nfsreq rq
, *req
= &rq
;
701 struct nfsreq_secinfo_args si
;
702 struct nfsm_chain nmreq
, nmrep
;
707 fhsize
= dnp
->n_fhsize
;
713 nfsm_chain_null(&nmreq
);
714 nfsm_chain_null(&nmrep
);
716 NFSREQ_SECINFO_SET(&si
, NULL
, fhp
, fhsize
, name
, 0);
718 nfsm_chain_build_alloc_init(error
, &nmreq
, 18 * NFSX_UNSIGNED
);
719 nfsm_chain_add_compound_header(error
, &nmreq
, "fs_locations", nmp
->nm_minor_vers
, numops
);
721 nfsm_chain_add_32(error
, &nmreq
, NFS_OP_PUTFH
);
722 nfsm_chain_add_fh(error
, &nmreq
, NFS_VER4
, fhp
, fhsize
);
724 nfsm_chain_add_32(error
, &nmreq
, NFS_OP_LOOKUP
);
725 nfsm_chain_add_name(error
, &nmreq
, name
, strlen(name
), nmp
);
727 nfsm_chain_add_32(error
, &nmreq
, NFS_OP_GETATTR
);
728 NFS_CLEAR_ATTRIBUTES(bitmap
);
729 NFS_BITMAP_SET(bitmap
, NFS_FATTR_FS_LOCATIONS
);
730 nfsm_chain_add_bitmap(error
, &nmreq
, bitmap
, NFS_ATTR_BITMAP_LEN
);
731 nfsm_chain_build_done(error
, &nmreq
);
732 nfsm_assert(error
, (numops
== 0), EPROTO
);
734 error
= nfs_request_async(dnp
, nmp
->nm_mountp
, &nmreq
, NFSPROC4_COMPOUND
,
735 vfs_context_thread(ctx
), vfs_context_ucred(ctx
), &si
, 0, NULL
, &req
);
737 error
= nfs_request_async_finish(req
, &nmrep
, &xid
, &status
);
739 nfsm_chain_skip_tag(error
, &nmrep
);
740 nfsm_chain_get_32(error
, &nmrep
, numops
);
741 nfsm_chain_op_check(error
, &nmrep
, NFS_OP_PUTFH
);
742 nfsm_chain_op_check(error
, &nmrep
, NFS_OP_LOOKUP
);
743 nfsm_chain_op_check(error
, &nmrep
, NFS_OP_GETATTR
);
745 error
= nfs4_parsefattr(&nmrep
, NULL
, NULL
, NULL
, NULL
, nfslsp
);
747 nfsm_chain_cleanup(&nmrep
);
748 nfsm_chain_cleanup(&nmreq
);
753 * Referral trigger nodes may not have many attributes provided by the
754 * server, so put some default values in place.
757 nfs4_default_attrs_for_referral_trigger(
761 struct nfs_vattr
*nvap
,
768 nvap
->nva_flags
= NFS_FFLAG_TRIGGER
| NFS_FFLAG_TRIGGER_REFERRAL
;
769 if (!NFS_BITMAP_ISSET(nvap
->nva_bitmap
, NFS_FATTR_TYPE
)) {
770 NFS_BITMAP_SET(nvap
->nva_bitmap
, NFS_FATTR_TYPE
);
771 nvap
->nva_type
= VDIR
;
773 if (!NFS_BITMAP_ISSET(nvap
->nva_bitmap
, NFS_FATTR_FSID
)) {
774 NFS_BITMAP_SET(nvap
->nva_bitmap
, NFS_FATTR_FSID
);
775 nvap
->nva_fsid
.major
= 0;
776 nvap
->nva_fsid
.minor
= 0;
778 if (!NFS_BITMAP_ISSET(nvap
->nva_bitmap
, NFS_FATTR_OWNER
) && dnp
) {
779 NFS_BITMAP_SET(nvap
->nva_bitmap
, NFS_FATTR_OWNER
);
780 nvap
->nva_uid
= dnp
->n_vattr
.nva_uid
;
781 nvap
->nva_uuuid
= dnp
->n_vattr
.nva_uuuid
;
783 if (!NFS_BITMAP_ISSET(nvap
->nva_bitmap
, NFS_FATTR_OWNER_GROUP
) && dnp
) {
784 NFS_BITMAP_SET(nvap
->nva_bitmap
, NFS_FATTR_OWNER_GROUP
);
785 nvap
->nva_gid
= dnp
->n_vattr
.nva_gid
;
786 nvap
->nva_guuid
= dnp
->n_vattr
.nva_guuid
;
788 if (!NFS_BITMAP_ISSET(nvap
->nva_bitmap
, NFS_FATTR_MODE
)) {
789 NFS_BITMAP_SET(nvap
->nva_bitmap
, NFS_FATTR_MODE
);
790 nvap
->nva_mode
= 0777;
792 if (!NFS_BITMAP_ISSET(nvap
->nva_bitmap
, NFS_FATTR_SIZE
)) {
793 NFS_BITMAP_SET(nvap
->nva_bitmap
, NFS_FATTR_SIZE
);
796 if (!NFS_BITMAP_ISSET(nvap
->nva_bitmap
, NFS_FATTR_SPACE_USED
)) {
797 NFS_BITMAP_SET(nvap
->nva_bitmap
, NFS_FATTR_SPACE_USED
);
800 if (!NFS_BITMAP_ISSET(nvap
->nva_bitmap
, NFS_FATTR_NUMLINKS
)) {
801 NFS_BITMAP_SET(nvap
->nva_bitmap
, NFS_FATTR_NUMLINKS
);
804 if (!NFS_BITMAP_ISSET(nvap
->nva_bitmap
, NFS_FATTR_TIME_ACCESS
)) {
805 NFS_BITMAP_SET(nvap
->nva_bitmap
, NFS_FATTR_TIME_ACCESS
);
806 nvap
->nva_timesec
[NFSTIME_ACCESS
] = now
.tv_sec
;
807 nvap
->nva_timensec
[NFSTIME_ACCESS
] = now
.tv_nsec
;
809 if (!NFS_BITMAP_ISSET(nvap
->nva_bitmap
, NFS_FATTR_TIME_MODIFY
)) {
810 NFS_BITMAP_SET(nvap
->nva_bitmap
, NFS_FATTR_TIME_MODIFY
);
811 nvap
->nva_timesec
[NFSTIME_MODIFY
] = now
.tv_sec
;
812 nvap
->nva_timensec
[NFSTIME_MODIFY
] = now
.tv_nsec
;
814 if (!NFS_BITMAP_ISSET(nvap
->nva_bitmap
, NFS_FATTR_TIME_METADATA
)) {
815 NFS_BITMAP_SET(nvap
->nva_bitmap
, NFS_FATTR_TIME_METADATA
);
816 nvap
->nva_timesec
[NFSTIME_CHANGE
] = now
.tv_sec
;
817 nvap
->nva_timensec
[NFSTIME_CHANGE
] = now
.tv_nsec
;
819 if (!NFS_BITMAP_ISSET(nvap
->nva_bitmap
, NFS_FATTR_FILEID
)) {
820 NFS_BITMAP_SET(nvap
->nva_bitmap
, NFS_FATTR_FILEID
);
821 nvap
->nva_fileid
= 42;
823 if (!NFS_BITMAP_ISSET(nvap
->nva_bitmap
, NFS_FATTR_FILEHANDLE
) && dnp
&& name
&& fhp
) {
824 /* Build a fake filehandle made up of parent node pointer and name */
825 NFS_BITMAP_SET(nvap
->nva_bitmap
, NFS_FATTR_FILEHANDLE
);
826 bcopy(&dnp
, &fhp
->fh_data
[0], sizeof(dnp
));
827 len
= sizeof(fhp
->fh_data
) - sizeof(dnp
);
828 bcopy(name
, &fhp
->fh_data
[0] + sizeof(dnp
), MIN(len
, namelen
));
829 fhp
->fh_len
= sizeof(dnp
) + namelen
;
830 if (fhp
->fh_len
> (int)sizeof(fhp
->fh_data
)) {
831 fhp
->fh_len
= sizeof(fhp
->fh_data
);
837 * Set NFS bitmap according to what's set in vnode_attr (and supported by the server).
840 nfs_vattr_set_bitmap(struct nfsmount
*nmp
, uint32_t *bitmap
, struct vnode_attr
*vap
)
844 NFS_CLEAR_ATTRIBUTES(bitmap
);
845 if (VATTR_IS_ACTIVE(vap
, va_data_size
)) {
846 NFS_BITMAP_SET(bitmap
, NFS_FATTR_SIZE
);
848 if (VATTR_IS_ACTIVE(vap
, va_acl
) && (nmp
->nm_fsattr
.nfsa_flags
& NFS_FSFLAG_ACL
)) {
849 NFS_BITMAP_SET(bitmap
, NFS_FATTR_ACL
);
851 if (VATTR_IS_ACTIVE(vap
, va_flags
)) {
852 NFS_BITMAP_SET(bitmap
, NFS_FATTR_ARCHIVE
);
853 NFS_BITMAP_SET(bitmap
, NFS_FATTR_HIDDEN
);
855 // NFS_BITMAP_SET(bitmap, NFS_FATTR_MIMETYPE)
856 if (VATTR_IS_ACTIVE(vap
, va_mode
) && !NMFLAG(nmp
, ACLONLY
)) {
857 NFS_BITMAP_SET(bitmap
, NFS_FATTR_MODE
);
859 if (VATTR_IS_ACTIVE(vap
, va_uid
) || VATTR_IS_ACTIVE(vap
, va_uuuid
)) {
860 NFS_BITMAP_SET(bitmap
, NFS_FATTR_OWNER
);
862 if (VATTR_IS_ACTIVE(vap
, va_gid
) || VATTR_IS_ACTIVE(vap
, va_guuid
)) {
863 NFS_BITMAP_SET(bitmap
, NFS_FATTR_OWNER_GROUP
);
865 // NFS_BITMAP_SET(bitmap, NFS_FATTR_SYSTEM)
866 if (vap
->va_vaflags
& VA_UTIMES_NULL
) {
867 NFS_BITMAP_SET(bitmap
, NFS_FATTR_TIME_ACCESS_SET
);
868 NFS_BITMAP_SET(bitmap
, NFS_FATTR_TIME_MODIFY_SET
);
870 if (VATTR_IS_ACTIVE(vap
, va_access_time
)) {
871 NFS_BITMAP_SET(bitmap
, NFS_FATTR_TIME_ACCESS_SET
);
873 if (VATTR_IS_ACTIVE(vap
, va_modify_time
)) {
874 NFS_BITMAP_SET(bitmap
, NFS_FATTR_TIME_MODIFY_SET
);
877 if (VATTR_IS_ACTIVE(vap
, va_backup_time
)) {
878 NFS_BITMAP_SET(bitmap
, NFS_FATTR_TIME_BACKUP
);
880 if (VATTR_IS_ACTIVE(vap
, va_create_time
)) {
881 NFS_BITMAP_SET(bitmap
, NFS_FATTR_TIME_CREATE
);
883 /* and limit to what is supported by server */
884 for (i
= 0; i
< NFS_ATTR_BITMAP_LEN
; i
++) {
885 bitmap
[i
] &= nmp
->nm_fsattr
.nfsa_supp_attr
[i
];
890 * Convert between NFSv4 and VFS ACE types
893 nfs4_ace_nfstype_to_vfstype(uint32_t nfsacetype
, int *errorp
)
895 switch (nfsacetype
) {
896 case NFS_ACE_ACCESS_ALLOWED_ACE_TYPE
:
897 return KAUTH_ACE_PERMIT
;
898 case NFS_ACE_ACCESS_DENIED_ACE_TYPE
:
899 return KAUTH_ACE_DENY
;
900 case NFS_ACE_SYSTEM_AUDIT_ACE_TYPE
:
901 return KAUTH_ACE_AUDIT
;
902 case NFS_ACE_SYSTEM_ALARM_ACE_TYPE
:
903 return KAUTH_ACE_ALARM
;
910 nfs4_ace_vfstype_to_nfstype(uint32_t vfstype
, int *errorp
)
913 case KAUTH_ACE_PERMIT
:
914 return NFS_ACE_ACCESS_ALLOWED_ACE_TYPE
;
916 return NFS_ACE_ACCESS_DENIED_ACE_TYPE
;
917 case KAUTH_ACE_AUDIT
:
918 return NFS_ACE_SYSTEM_AUDIT_ACE_TYPE
;
919 case KAUTH_ACE_ALARM
:
920 return NFS_ACE_SYSTEM_ALARM_ACE_TYPE
;
927 * Convert between NFSv4 and VFS ACE flags
930 nfs4_ace_nfsflags_to_vfsflags(uint32_t nfsflags
)
932 uint32_t vfsflags
= 0;
934 if (nfsflags
& NFS_ACE_FILE_INHERIT_ACE
) {
935 vfsflags
|= KAUTH_ACE_FILE_INHERIT
;
937 if (nfsflags
& NFS_ACE_DIRECTORY_INHERIT_ACE
) {
938 vfsflags
|= KAUTH_ACE_DIRECTORY_INHERIT
;
940 if (nfsflags
& NFS_ACE_NO_PROPAGATE_INHERIT_ACE
) {
941 vfsflags
|= KAUTH_ACE_LIMIT_INHERIT
;
943 if (nfsflags
& NFS_ACE_INHERIT_ONLY_ACE
) {
944 vfsflags
|= KAUTH_ACE_ONLY_INHERIT
;
946 if (nfsflags
& NFS_ACE_SUCCESSFUL_ACCESS_ACE_FLAG
) {
947 vfsflags
|= KAUTH_ACE_SUCCESS
;
949 if (nfsflags
& NFS_ACE_FAILED_ACCESS_ACE_FLAG
) {
950 vfsflags
|= KAUTH_ACE_FAILURE
;
952 if (nfsflags
& NFS_ACE_INHERITED_ACE
) {
953 vfsflags
|= KAUTH_ACE_INHERITED
;
960 nfs4_ace_vfsflags_to_nfsflags(uint32_t vfsflags
)
962 uint32_t nfsflags
= 0;
964 if (vfsflags
& KAUTH_ACE_FILE_INHERIT
) {
965 nfsflags
|= NFS_ACE_FILE_INHERIT_ACE
;
967 if (vfsflags
& KAUTH_ACE_DIRECTORY_INHERIT
) {
968 nfsflags
|= NFS_ACE_DIRECTORY_INHERIT_ACE
;
970 if (vfsflags
& KAUTH_ACE_LIMIT_INHERIT
) {
971 nfsflags
|= NFS_ACE_NO_PROPAGATE_INHERIT_ACE
;
973 if (vfsflags
& KAUTH_ACE_ONLY_INHERIT
) {
974 nfsflags
|= NFS_ACE_INHERIT_ONLY_ACE
;
976 if (vfsflags
& KAUTH_ACE_SUCCESS
) {
977 nfsflags
|= NFS_ACE_SUCCESSFUL_ACCESS_ACE_FLAG
;
979 if (vfsflags
& KAUTH_ACE_FAILURE
) {
980 nfsflags
|= NFS_ACE_FAILED_ACCESS_ACE_FLAG
;
982 if (vfsflags
& KAUTH_ACE_INHERITED
) {
983 nfsflags
|= NFS_ACE_INHERITED_ACE
;
990 * Convert between NFSv4 ACE access masks and VFS access rights
993 nfs4_ace_nfsmask_to_vfsrights(uint32_t nfsmask
)
995 uint32_t vfsrights
= 0;
997 if (nfsmask
& NFS_ACE_READ_DATA
) {
998 vfsrights
|= KAUTH_VNODE_READ_DATA
;
1000 if (nfsmask
& NFS_ACE_LIST_DIRECTORY
) {
1001 vfsrights
|= KAUTH_VNODE_LIST_DIRECTORY
;
1003 if (nfsmask
& NFS_ACE_WRITE_DATA
) {
1004 vfsrights
|= KAUTH_VNODE_WRITE_DATA
;
1006 if (nfsmask
& NFS_ACE_ADD_FILE
) {
1007 vfsrights
|= KAUTH_VNODE_ADD_FILE
;
1009 if (nfsmask
& NFS_ACE_APPEND_DATA
) {
1010 vfsrights
|= KAUTH_VNODE_APPEND_DATA
;
1012 if (nfsmask
& NFS_ACE_ADD_SUBDIRECTORY
) {
1013 vfsrights
|= KAUTH_VNODE_ADD_SUBDIRECTORY
;
1015 if (nfsmask
& NFS_ACE_READ_NAMED_ATTRS
) {
1016 vfsrights
|= KAUTH_VNODE_READ_EXTATTRIBUTES
;
1018 if (nfsmask
& NFS_ACE_WRITE_NAMED_ATTRS
) {
1019 vfsrights
|= KAUTH_VNODE_WRITE_EXTATTRIBUTES
;
1021 if (nfsmask
& NFS_ACE_EXECUTE
) {
1022 vfsrights
|= KAUTH_VNODE_EXECUTE
;
1024 if (nfsmask
& NFS_ACE_DELETE_CHILD
) {
1025 vfsrights
|= KAUTH_VNODE_DELETE_CHILD
;
1027 if (nfsmask
& NFS_ACE_READ_ATTRIBUTES
) {
1028 vfsrights
|= KAUTH_VNODE_READ_ATTRIBUTES
;
1030 if (nfsmask
& NFS_ACE_WRITE_ATTRIBUTES
) {
1031 vfsrights
|= KAUTH_VNODE_WRITE_ATTRIBUTES
;
1033 if (nfsmask
& NFS_ACE_DELETE
) {
1034 vfsrights
|= KAUTH_VNODE_DELETE
;
1036 if (nfsmask
& NFS_ACE_READ_ACL
) {
1037 vfsrights
|= KAUTH_VNODE_READ_SECURITY
;
1039 if (nfsmask
& NFS_ACE_WRITE_ACL
) {
1040 vfsrights
|= KAUTH_VNODE_WRITE_SECURITY
;
1042 if (nfsmask
& NFS_ACE_WRITE_OWNER
) {
1043 vfsrights
|= KAUTH_VNODE_CHANGE_OWNER
;
1045 if (nfsmask
& NFS_ACE_SYNCHRONIZE
) {
1046 vfsrights
|= KAUTH_VNODE_SYNCHRONIZE
;
1048 if ((nfsmask
& NFS_ACE_GENERIC_READ
) == NFS_ACE_GENERIC_READ
) {
1049 vfsrights
|= KAUTH_ACE_GENERIC_READ
;
1051 if ((nfsmask
& NFS_ACE_GENERIC_WRITE
) == NFS_ACE_GENERIC_WRITE
) {
1052 vfsrights
|= KAUTH_ACE_GENERIC_WRITE
;
1054 if ((nfsmask
& NFS_ACE_GENERIC_EXECUTE
) == NFS_ACE_GENERIC_EXECUTE
) {
1055 vfsrights
|= KAUTH_ACE_GENERIC_EXECUTE
;
1062 nfs4_ace_vfsrights_to_nfsmask(uint32_t vfsrights
)
1064 uint32_t nfsmask
= 0;
1066 if (vfsrights
& KAUTH_VNODE_READ_DATA
) {
1067 nfsmask
|= NFS_ACE_READ_DATA
;
1069 if (vfsrights
& KAUTH_VNODE_LIST_DIRECTORY
) {
1070 nfsmask
|= NFS_ACE_LIST_DIRECTORY
;
1072 if (vfsrights
& KAUTH_VNODE_WRITE_DATA
) {
1073 nfsmask
|= NFS_ACE_WRITE_DATA
;
1075 if (vfsrights
& KAUTH_VNODE_ADD_FILE
) {
1076 nfsmask
|= NFS_ACE_ADD_FILE
;
1078 if (vfsrights
& KAUTH_VNODE_APPEND_DATA
) {
1079 nfsmask
|= NFS_ACE_APPEND_DATA
;
1081 if (vfsrights
& KAUTH_VNODE_ADD_SUBDIRECTORY
) {
1082 nfsmask
|= NFS_ACE_ADD_SUBDIRECTORY
;
1084 if (vfsrights
& KAUTH_VNODE_READ_EXTATTRIBUTES
) {
1085 nfsmask
|= NFS_ACE_READ_NAMED_ATTRS
;
1087 if (vfsrights
& KAUTH_VNODE_WRITE_EXTATTRIBUTES
) {
1088 nfsmask
|= NFS_ACE_WRITE_NAMED_ATTRS
;
1090 if (vfsrights
& KAUTH_VNODE_EXECUTE
) {
1091 nfsmask
|= NFS_ACE_EXECUTE
;
1093 if (vfsrights
& KAUTH_VNODE_DELETE_CHILD
) {
1094 nfsmask
|= NFS_ACE_DELETE_CHILD
;
1096 if (vfsrights
& KAUTH_VNODE_READ_ATTRIBUTES
) {
1097 nfsmask
|= NFS_ACE_READ_ATTRIBUTES
;
1099 if (vfsrights
& KAUTH_VNODE_WRITE_ATTRIBUTES
) {
1100 nfsmask
|= NFS_ACE_WRITE_ATTRIBUTES
;
1102 if (vfsrights
& KAUTH_VNODE_DELETE
) {
1103 nfsmask
|= NFS_ACE_DELETE
;
1105 if (vfsrights
& KAUTH_VNODE_READ_SECURITY
) {
1106 nfsmask
|= NFS_ACE_READ_ACL
;
1108 if (vfsrights
& KAUTH_VNODE_WRITE_SECURITY
) {
1109 nfsmask
|= NFS_ACE_WRITE_ACL
;
1111 if (vfsrights
& KAUTH_VNODE_CHANGE_OWNER
) {
1112 nfsmask
|= NFS_ACE_WRITE_OWNER
;
1114 if (vfsrights
& KAUTH_VNODE_SYNCHRONIZE
) {
1115 nfsmask
|= NFS_ACE_SYNCHRONIZE
;
1117 if (vfsrights
& KAUTH_ACE_GENERIC_READ
) {
1118 nfsmask
|= NFS_ACE_GENERIC_READ
;
1120 if (vfsrights
& KAUTH_ACE_GENERIC_WRITE
) {
1121 nfsmask
|= NFS_ACE_GENERIC_WRITE
;
1123 if (vfsrights
& KAUTH_ACE_GENERIC_EXECUTE
) {
1124 nfsmask
|= NFS_ACE_GENERIC_EXECUTE
;
1126 if (vfsrights
& KAUTH_ACE_GENERIC_ALL
) {
1127 nfsmask
|= (KAUTH_ACE_GENERIC_READ
| KAUTH_ACE_GENERIC_WRITE
| NFS_ACE_GENERIC_EXECUTE
);
1135 * mapid a wellknown identity to guid.
1136 * Return 0 on success ENOENT if id does not map and EINVAL if the id is not a well known name.
1139 nfs4_wkid2sid(const char *id
, ntsid_t
*sp
)
1141 size_t len
= strnlen(id
, MAXIDNAMELEN
);
1143 if (len
== MAXIDNAMELEN
|| id
[len
- 1] != '@') {
1147 bzero(sp
, sizeof(ntsid_t
));
1149 sp
->sid_authcount
= 1;
1150 if (!strcmp(id
, "OWNER@")) {
1152 sp
->sid_authority
[5] = 3;
1153 sp
->sid_authorities
[0] = 0;
1154 } else if (!strcmp(id
, "GROUP@")) {
1156 sp
->sid_authority
[5] = 3;
1157 sp
->sid_authorities
[0] = 1;
1158 } else if (!strcmp(id
, "EVERYONE@")) {
1160 sp
->sid_authority
[5] = 1;
1161 sp
->sid_authorities
[0] = 0;
1162 } else if (!strcmp(id
, "INTERACTIVE@")) {
1164 sp
->sid_authority
[5] = 5;
1165 sp
->sid_authorities
[0] = 4;
1166 } else if (!strcmp(id
, "NETWORK@")) {
1168 sp
->sid_authority
[5] = 5;
1169 sp
->sid_authorities
[0] = 2;
1170 } else if (!strcmp(id
, "DIALUP@")) {
1172 sp
->sid_authority
[5] = 5;
1173 sp
->sid_authorities
[0] = 1;
1174 } else if (!strcmp(id
, "BATCH@")) {
1176 sp
->sid_authority
[5] = 5;
1177 sp
->sid_authorities
[0] = 3;
1178 } else if (!strcmp(id
, "ANONYMOUS@")) {
1180 sp
->sid_authority
[5] = 5;
1181 sp
->sid_authorities
[0] = 7;
1182 } else if (!strcmp(id
, "AUTHENTICATED@")) {
1184 sp
->sid_authority
[5] = 5;
1185 sp
->sid_authorities
[0] = 11;
1186 } else if (!strcmp(id
, "SERVICE@")) {
1188 sp
->sid_authority
[5] = 5;
1189 sp
->sid_authorities
[0] = 6;
1192 sp
->sid_authority
[5] = 0;
1193 sp
->sid_authorities
[0] = 0;
1199 nfs4_fallback_name(const char *id
, int have_at
)
1202 /* must be user@domain */
1203 /* try to identify some well-known IDs */
1204 if (!strncmp(id
, "root@", 5)) {
1206 } else if (!strncmp(id
, "wheel@", 6)) {
1208 } else if (!strncmp(id
, "nobody@", 7)) {
1210 } else if (!strncmp(id
, "nfsnobody@", 10)) {
1218 nfs4_mapid_log(int error
, const char *idstr
, int isgroup
, guid_t
*gp
)
1220 if (error
&& (nfs_idmap_ctrl
& NFS_IDMAP_CTRL_LOG_FAILED_MAPPINGS
)) {
1221 printf("nfs4_id2guid: idmap failed for %s %s error %d\n", idstr
, isgroup
? "G" : " ", error
);
1223 if (!error
&& (nfs_idmap_ctrl
& NFS_IDMAP_CTRL_LOG_SUCCESSFUL_MAPPINGS
)) {
1224 printf("nfs4_id2guid: idmap for %s %s got guid "
1225 "%02x%02x%02x%02x_%02x%02x%02x%02x_%02x%02x%02x%02x_%02x%02x%02x%02x\n",
1226 idstr
, isgroup
? "G" : " ",
1227 gp
->g_guid
[0], gp
->g_guid
[1], gp
->g_guid
[2], gp
->g_guid
[3],
1228 gp
->g_guid
[4], gp
->g_guid
[5], gp
->g_guid
[6], gp
->g_guid
[7],
1229 gp
->g_guid
[8], gp
->g_guid
[9], gp
->g_guid
[10], gp
->g_guid
[11],
1230 gp
->g_guid
[12], gp
->g_guid
[13], gp
->g_guid
[14], gp
->g_guid
[15]);
1235 nfs4_map_domain(char *id
, char **atp
)
1238 char *dsnode
, *otw_nfs4domain
;
1239 char *new_id
= NULL
;
1240 size_t otw_domain_len
;
1241 size_t otw_id_2_at_len
;
1245 at
= strchr(id
, '@');
1247 if (at
== NULL
|| *at
!= '@') {
1251 otw_nfs4domain
= at
+ 1;
1252 otw_domain_len
= strnlen(otw_nfs4domain
, MAXPATHLEN
);
1253 otw_id_2_at_len
= at
- id
+ 1;
1255 MALLOC_ZONE(dsnode
, char*, MAXPATHLEN
, M_NAMEI
, M_WAITOK
);
1256 /* first try to map nfs4 domain to dsnode for scoped lookups */
1257 error
= kauth_cred_nfs4domain2dsnode(otw_nfs4domain
, dsnode
);
1259 /* Success! Make new id be id@dsnode */
1260 size_t dsnode_len
= strnlen(dsnode
, MAXPATHLEN
);
1261 size_t new_id_len
= otw_id_2_at_len
+ dsnode_len
+ 1;
1264 MALLOC(new_id
, char*, new_id_len
, M_TEMP
, M_WAITOK
);
1265 tmp
= *otw_nfs4domain
;
1266 *otw_nfs4domain
= '\0'; /* Chop of the old domain */
1267 strlcpy(new_id
, id
, MAXPATHLEN
);
1268 *otw_nfs4domain
= tmp
; /* Be nice and preserve callers original id */
1269 strlcat(new_id
, dsnode
, MAXPATHLEN
);
1270 at
= strchr(new_id
, '@');
1272 /* Bummer:-( See if default nfs4 set for unscoped lookup */
1273 size_t default_domain_len
= strnlen(nfs4_default_domain
, MAXPATHLEN
);
1275 if ((otw_domain_len
== default_domain_len
) &&
1276 (strncmp(otw_nfs4domain
, nfs4_default_domain
, otw_domain_len
) == 0)) {
1277 /* Woohoo! We have matching domains, do unscoped lookups */
1281 FREE_ZONE(dsnode
, MAXPATHLEN
, M_NAMEI
);
1283 if (nfs_idmap_ctrl
& NFS_IDMAP_CTRL_LOG_SUCCESSFUL_MAPPINGS
) {
1284 printf("nfs4_id2guid: after domain mapping id is %s\n", id
);
1292 * Map an NFSv4 ID string to a VFS guid.
1294 * Try to use the ID mapping service... but we may fallback to trying to do it ourselves.
1297 nfs4_id2guid(/*const*/ char *id
, guid_t
*guidp
, int isgroup
)
1302 char *p
, *at
, *new_id
= NULL
;
1304 *guidp
= kauth_null_guid
;
1307 * First check if it is just a simple numeric ID string or a special "XXX@" name.
1308 * If it's a number, there's no need trying to ask the IDMAP service to map it.
1309 * If it's a special "XXX@" name, we want to make sure to treat it as a group.
1315 if ((*p
< '0') || (*p
> '9')) {
1325 /* must be numeric ID (or empty) */
1326 num
= *id
? strtol(id
, NULL
, 10) : -2;
1328 error
= kauth_cred_gid2guid((gid_t
)num
, guidp
);
1330 error
= kauth_cred_uid2guid((uid_t
)num
, guidp
);
1332 nfs4_mapid_log(error
, id
, isgroup
, guidp
);
1336 /* See if this is a well known NFSv4 name */
1337 error
= nfs4_wkid2sid(id
, &sid
);
1339 error
= kauth_cred_ntsid2guid(&sid
, guidp
);
1340 nfs4_mapid_log(error
, id
, 1, guidp
);
1344 /* Handle nfs4 domain first */
1346 new_id
= nfs4_map_domain(id
, &at
);
1352 /* Now try to do actual id mapping */
1353 if (nfs_idmap_ctrl
& NFS_IDMAP_CTRL_USE_IDMAP_SERVICE
) {
1355 * Ask the ID mapping service to map the ID string to a GUID.
1357 * [sigh] this isn't a "pwnam/grnam" it's an NFS ID string!
1360 error
= kauth_cred_grnam2guid(id
, guidp
);
1362 error
= kauth_cred_pwnam2guid(id
, guidp
);
1364 nfs4_mapid_log(error
, id
, isgroup
, guidp
);
1371 * fallback path... see if we can come up with an answer ourselves.
1373 num
= nfs4_fallback_name(id
, at
!= NULL
);
1375 error
= kauth_cred_gid2guid((gid_t
)num
, guidp
);
1377 error
= kauth_cred_uid2guid((uid_t
)num
, guidp
);
1379 nfs4_mapid_log(error
, id
, isgroup
, guidp
);
1383 /* restore @ symbol in case we clobered for unscoped lookup */
1384 if (at
&& *at
== '\0') {
1388 /* free mapped domain id string */
1390 FREE(new_id
, M_TEMP
);
1398 * mapid a wellknown identity to guid.
1399 * returns well known name for the sid or NULL if sid does not map.
1401 #define MAXWELLKNOWNID 18
1404 nfs4_sid2wkid(ntsid_t
*sp
)
1406 if ((sp
->sid_kind
== 1) && (sp
->sid_authcount
== 1)) {
1407 /* check if it's one of our well-known ACE WHO names */
1408 if (sp
->sid_authority
[5] == 0) {
1409 if (sp
->sid_authorities
[0] == 0) { // S-1-0-0
1410 return "nobody@localdomain";
1412 } else if (sp
->sid_authority
[5] == 1) {
1413 if (sp
->sid_authorities
[0] == 0) { // S-1-1-0
1416 } else if (sp
->sid_authority
[5] == 3) {
1417 if (sp
->sid_authorities
[0] == 0) { // S-1-3-0
1419 } else if (sp
->sid_authorities
[0] == 1) { // S-1-3-1
1422 } else if (sp
->sid_authority
[5] == 5) {
1423 if (sp
->sid_authorities
[0] == 1) { // S-1-5-1
1425 } else if (sp
->sid_authorities
[0] == 2) { // S-1-5-2
1427 } else if (sp
->sid_authorities
[0] == 3) { // S-1-5-3
1429 } else if (sp
->sid_authorities
[0] == 4) { // S-1-5-4
1430 return "INTERACTIVE@";
1431 } else if (sp
->sid_authorities
[0] == 6) { // S-1-5-6
1433 } else if (sp
->sid_authorities
[0] == 7) { // S-1-5-7
1434 return "ANONYMOUS@";
1435 } else if (sp
->sid_authorities
[0] == 11) { // S-1-5-11
1436 return "AUTHENTICATED@";
1444 nfs4_mapguid_log(int error
, const char *where
, guid_t
*gp
, int isgroup
, const char *idstr
)
1446 if (error
&& (nfs_idmap_ctrl
& NFS_IDMAP_CTRL_LOG_FAILED_MAPPINGS
)) {
1447 printf("nfs4_guid2id: %s idmap failed for "
1448 "%02x%02x%02x%02x_%02x%02x%02x%02x_%02x%02x%02x%02x_%02x%02x%02x%02x %s "
1449 "error %d\n", where
,
1450 gp
->g_guid
[0], gp
->g_guid
[1], gp
->g_guid
[2], gp
->g_guid
[3],
1451 gp
->g_guid
[4], gp
->g_guid
[5], gp
->g_guid
[6], gp
->g_guid
[7],
1452 gp
->g_guid
[8], gp
->g_guid
[9], gp
->g_guid
[10], gp
->g_guid
[11],
1453 gp
->g_guid
[12], gp
->g_guid
[13], gp
->g_guid
[14], gp
->g_guid
[15],
1454 isgroup
? "G" : " ", error
);
1456 if (!error
&& (nfs_idmap_ctrl
& NFS_IDMAP_CTRL_LOG_SUCCESSFUL_MAPPINGS
)) {
1457 printf("nfs4_guid2id: %s idmap for "
1458 "%02x%02x%02x%02x_%02x%02x%02x%02x_%02x%02x%02x%02x_%02x%02x%02x%02x %s "
1459 "got ID %s\n", where
,
1460 gp
->g_guid
[0], gp
->g_guid
[1], gp
->g_guid
[2], gp
->g_guid
[3],
1461 gp
->g_guid
[4], gp
->g_guid
[5], gp
->g_guid
[6], gp
->g_guid
[7],
1462 gp
->g_guid
[8], gp
->g_guid
[9], gp
->g_guid
[10], gp
->g_guid
[11],
1463 gp
->g_guid
[12], gp
->g_guid
[13], gp
->g_guid
[14], gp
->g_guid
[15],
1464 isgroup
? "G" : " ", idstr
);
1469 nfs4_addv4domain(char *id
, size_t *idlen
)
1471 char *at
= NULL
, *cp
;
1477 if (id
== NULL
|| *id
== '\0') {
1481 for (cp
= id
; *cp
!= '\0'; cp
++) {
1488 have_domain
= (at
&& at
[1] != '\0');
1491 char *dsnode
= at
+ 1;
1494 char *mapped_domain
;
1496 MALLOC_ZONE(nfs4domain
, char*, MAXPATHLEN
, M_NAMEI
, M_WAITOK
);
1497 error
= kauth_cred_dsnode2nfs4domain(dsnode
, nfs4domain
);
1499 domain_len
= strnlen(nfs4domain
, MAXPATHLEN
);
1500 mapped_domain
= nfs4domain
;
1503 domain_len
= strnlen(nfs4_default_domain
, MAXPATHLEN
);
1504 mapped_domain
= nfs4_default_domain
;
1507 /* chop off id after the '@' */
1509 /* Add our mapped_domain */
1510 idsize
= strlcat(id
, mapped_domain
, *idlen
);
1511 if (*idlen
> idsize
) {
1517 FREE_ZONE(nfs4domain
, MAXPATHLEN
, M_NAMEI
);
1518 } else if (at
== NULL
) {
1520 * If we didn't find an 'at' then cp points to the end of id passed in.
1521 * and if we have a nfs4_default_domain set. Try to append the
1522 * default domain if we have root or set ENOSPC.
1524 size_t default_domain_len
= strnlen(nfs4_default_domain
, MAXPATHLEN
);
1526 if (default_domain_len
) {
1527 strlcat(id
, "@", *idlen
);
1528 idsize
= strlcat(id
, nfs4_default_domain
, *idlen
);
1529 if (*idlen
> idsize
) {
1535 ; /* Unscoped name otw */
1539 if (!error
&& nfs_idmap_ctrl
& NFS_IDMAP_CTRL_LOG_SUCCESSFUL_MAPPINGS
) {
1540 printf("nfs4_guid2id: id after nfs4 domain map: %s[%zd].\n", id
, *idlen
);
1547 nfs4_fallback_id(int numid
, int isgrp
, char *buf
, size_t size
)
1549 const char *idp
= NULL
;
1551 if (!(nfs_idmap_ctrl
& NFS_IDMAP_CTRL_FALLBACK_NO_COMMON_IDS
)) {
1552 /* map well known uid's to strings */
1554 idp
= isgrp
? "wheel" : "root";
1555 } else if (numid
== -2) {
1560 /* or just use a decimal number string. */
1561 snprintf(buf
, size
- 1, "%d", numid
);
1562 buf
[size
- 1] = '\0';
1564 size_t idplen
= strlcpy(buf
, idp
, size
);
1565 if (idplen
>= size
) {
1574 * Map a VFS guid to an NFSv4 ID string.
1576 * Try to use the ID mapping service... but we may fallback to trying to do it ourselves.
1579 nfs4_guid2id(guid_t
*guidp
, char *id
, size_t *idlen
, int isgroup
)
1587 id1buf
= id1
= NULL
;
1591 * See if our guid maps to a well known NFSv4 name
1593 error
= kauth_cred_guid2ntsid(guidp
, &sid
);
1595 const char *wkid
= nfs4_sid2wkid(&sid
);
1597 len
= strnlen(wkid
, MAXWELLKNOWNID
);
1598 strlcpy(id
, wkid
, *idlen
);
1599 error
= (len
< *idlen
) ? 0 : ENOSPC
;
1601 nfs4_mapguid_log(error
, "kauth_cred_guid2ntsid", guidp
, 1, id
);
1605 nfs4_mapguid_log(error
, "kauth_cred_guid2ntsid", guidp
, isgroup
, NULL
);
1608 if (nfs_idmap_ctrl
& NFS_IDMAP_CTRL_USE_IDMAP_SERVICE
) {
1610 * Ask the ID mapping service to map the GUID to an ID string.
1612 * [sigh] this isn't a "pwnam" it's an NFS id string!
1616 * Stupid kauth_cred_guid2pwnam() function requires that the buffer
1617 * be at least MAXPATHLEN bytes long even though most if not all ID
1618 * strings will be much much shorter than that.
1621 if (*idlen
< MAXPATHLEN
) {
1622 MALLOC_ZONE(id1buf
, char*, MAXPATHLEN
, M_NAMEI
, M_WAITOK
);
1624 id1len
= MAXPATHLEN
;
1631 error
= kauth_cred_guid2grnam(guidp
, id1
);
1633 error
= kauth_cred_guid2pwnam(guidp
, id1
);
1636 nfs4_mapguid_log(error
, "kauth_cred2[pw|gr]nam", guidp
, isgroup
, id1
);
1644 * fallback path... see if we can come up with an answer ourselves.
1648 /* OK, let's just try mapping it to a UID/GID */
1650 error
= kauth_cred_guid2gid(guidp
, (gid_t
*)&uid
);
1652 error
= kauth_cred_guid2uid(guidp
, &uid
);
1655 char *fbidp
= nfs4_fallback_id(uid
, isgroup
, numbuf
, sizeof(numbuf
));
1656 if (fbidp
== NULL
) {
1663 error
= nfs4_addv4domain(id1
, &id1len
);
1668 /* copy idmap result to output buffer */
1669 len
= strlcpy(id
, id1
, *idlen
);
1670 if (len
>= *idlen
) {
1677 nfs4_mapguid_log(error
, "End of routine", guidp
, isgroup
, id1
);
1680 FREE_ZONE(id1buf
, MAXPATHLEN
, M_NAMEI
);
1687 * Set a vnode attr's supported bits according to the given bitmap
1690 nfs_vattr_set_supported(uint32_t *bitmap
, struct vnode_attr
*vap
)
1692 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TYPE
)) {
1693 VATTR_SET_SUPPORTED(vap
, va_type
);
1695 // if (NFS_BITMAP_ISSET(bitmap, NFS_FATTR_CHANGE))
1696 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_SIZE
)) {
1697 VATTR_SET_SUPPORTED(vap
, va_data_size
);
1699 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_FSID
)) {
1700 VATTR_SET_SUPPORTED(vap
, va_fsid
);
1702 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_ACL
)) {
1703 VATTR_SET_SUPPORTED(vap
, va_acl
);
1705 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_ARCHIVE
)) {
1706 VATTR_SET_SUPPORTED(vap
, va_flags
);
1708 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_FILEID
)) {
1709 VATTR_SET_SUPPORTED(vap
, va_fileid
);
1711 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_HIDDEN
)) {
1712 VATTR_SET_SUPPORTED(vap
, va_flags
);
1714 // if (NFS_BITMAP_ISSET(bitmap, NFS_FATTR_MIMETYPE))
1715 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_MODE
)) {
1716 VATTR_SET_SUPPORTED(vap
, va_mode
);
1718 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_NUMLINKS
)) {
1719 VATTR_SET_SUPPORTED(vap
, va_nlink
);
1721 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_OWNER
)) {
1722 VATTR_SET_SUPPORTED(vap
, va_uid
);
1723 VATTR_SET_SUPPORTED(vap
, va_uuuid
);
1725 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_OWNER_GROUP
)) {
1726 VATTR_SET_SUPPORTED(vap
, va_gid
);
1727 VATTR_SET_SUPPORTED(vap
, va_guuid
);
1729 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_RAWDEV
)) {
1730 VATTR_SET_SUPPORTED(vap
, va_rdev
);
1732 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_SPACE_USED
)) {
1733 VATTR_SET_SUPPORTED(vap
, va_total_alloc
);
1735 // if (NFS_BITMAP_ISSET(bitmap, NFS_FATTR_SYSTEM))
1736 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_ACCESS
)) {
1737 VATTR_SET_SUPPORTED(vap
, va_access_time
);
1739 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_BACKUP
)) {
1740 VATTR_SET_SUPPORTED(vap
, va_backup_time
);
1742 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_CREATE
)) {
1743 VATTR_SET_SUPPORTED(vap
, va_create_time
);
1745 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_METADATA
)) {
1746 VATTR_SET_SUPPORTED(vap
, va_change_time
);
1748 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_MODIFY
)) {
1749 VATTR_SET_SUPPORTED(vap
, va_modify_time
);
1754 * Parse the attributes that are in the mbuf list and store them in
1755 * the given structures.
1759 struct nfsm_chain
*nmc
,
1760 struct nfs_fsattr
*nfsap
,
1761 struct nfs_vattr
*nvap
,
1764 struct nfs_fs_locations
*nfslsp
)
1766 int error
= 0, error2
, rderror
= 0, attrbytes
;
1767 uint32_t val
, val2
, val3
, i
;
1768 uint32_t bitmap
[NFS_ATTR_BITMAP_LEN
], len
;
1771 struct nfs_fsattr nfsa_dummy
;
1772 struct nfs_vattr nva_dummy
;
1773 struct dqblk dqb_dummy
;
1774 kauth_acl_t acl
= NULL
;
1775 uint32_t ace_type
, ace_flags
, ace_mask
;
1776 struct nfs_fs_locations nfsls_dummy
;
1777 struct sockaddr_storage ss
;
1779 /* if not interested in some values... throw 'em into a local dummy variable */
1781 nfsap
= &nfsa_dummy
;
1790 nfslsp
= &nfsls_dummy
;
1792 bzero(nfslsp
, sizeof(*nfslsp
));
1794 attrbytes
= val
= val2
= val3
= 0;
1796 slen
= sizeof(sbuf
);
1799 len
= NFS_ATTR_BITMAP_LEN
;
1800 nfsm_chain_get_bitmap(error
, nmc
, bitmap
, len
);
1801 /* add bits to object/fs attr bitmaps */
1802 for (i
= 0; i
< NFS_ATTR_BITMAP_LEN
; i
++) {
1803 nvap
->nva_bitmap
[i
] |= bitmap
[i
] & nfs_object_attr_bitmap
[i
];
1804 nfsap
->nfsa_bitmap
[i
] |= bitmap
[i
] & nfs_fs_attr_bitmap
[i
];
1807 nfsm_chain_get_32(error
, nmc
, attrbytes
);
1810 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_SUPPORTED_ATTRS
)) {
1811 len
= NFS_ATTR_BITMAP_LEN
;
1812 nfsm_chain_get_bitmap(error
, nmc
, nfsap
->nfsa_supp_attr
, len
);
1813 attrbytes
-= (len
+ 1) * NFSX_UNSIGNED
;
1815 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TYPE
)) {
1816 nfsm_chain_get_32(error
, nmc
, val
);
1817 nvap
->nva_type
= nfstov_type(val
, NFS_VER4
);
1818 if ((val
== NFATTRDIR
) || (val
== NFNAMEDATTR
)) {
1819 nvap
->nva_flags
|= NFS_FFLAG_IS_ATTR
;
1821 nvap
->nva_flags
&= ~NFS_FFLAG_IS_ATTR
;
1823 attrbytes
-= NFSX_UNSIGNED
;
1825 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_FH_EXPIRE_TYPE
)) {
1826 nfsm_chain_get_32(error
, nmc
, val
);
1828 nfsap
->nfsa_flags
&= ~NFS_FSFLAG_FHTYPE_MASK
;
1829 nfsap
->nfsa_flags
|= val
<< NFS_FSFLAG_FHTYPE_SHIFT
;
1831 printf("nfs: warning unknown fh type: 0x%x\n", val
);
1833 attrbytes
-= NFSX_UNSIGNED
;
1835 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_CHANGE
)) {
1836 nfsm_chain_get_64(error
, nmc
, nvap
->nva_change
);
1837 attrbytes
-= 2 * NFSX_UNSIGNED
;
1839 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_SIZE
)) {
1840 nfsm_chain_get_64(error
, nmc
, nvap
->nva_size
);
1841 attrbytes
-= 2 * NFSX_UNSIGNED
;
1843 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_LINK_SUPPORT
)) {
1844 nfsm_chain_get_32(error
, nmc
, val
);
1846 nfsap
->nfsa_flags
|= NFS_FSFLAG_LINK
;
1848 nfsap
->nfsa_flags
&= ~NFS_FSFLAG_LINK
;
1850 attrbytes
-= NFSX_UNSIGNED
;
1852 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_SYMLINK_SUPPORT
)) {
1853 nfsm_chain_get_32(error
, nmc
, val
);
1855 nfsap
->nfsa_flags
|= NFS_FSFLAG_SYMLINK
;
1857 nfsap
->nfsa_flags
&= ~NFS_FSFLAG_SYMLINK
;
1859 attrbytes
-= NFSX_UNSIGNED
;
1861 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_NAMED_ATTR
)) {
1862 nfsm_chain_get_32(error
, nmc
, val
);
1864 nvap
->nva_flags
|= NFS_FFLAG_HAS_NAMED_ATTRS
;
1866 nvap
->nva_flags
&= ~NFS_FFLAG_HAS_NAMED_ATTRS
;
1868 attrbytes
-= NFSX_UNSIGNED
;
1870 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_FSID
)) {
1871 nfsm_chain_get_64(error
, nmc
, nvap
->nva_fsid
.major
);
1872 nfsm_chain_get_64(error
, nmc
, nvap
->nva_fsid
.minor
);
1873 attrbytes
-= 4 * NFSX_UNSIGNED
;
1875 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_UNIQUE_HANDLES
)) {
1876 nfsm_chain_get_32(error
, nmc
, val
);
1878 nfsap
->nfsa_flags
|= NFS_FSFLAG_UNIQUE_FH
;
1880 nfsap
->nfsa_flags
&= ~NFS_FSFLAG_UNIQUE_FH
;
1882 attrbytes
-= NFSX_UNSIGNED
;
1884 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_LEASE_TIME
)) {
1885 nfsm_chain_get_32(error
, nmc
, nfsap
->nfsa_lease
);
1886 attrbytes
-= NFSX_UNSIGNED
;
1888 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_RDATTR_ERROR
)) {
1889 nfsm_chain_get_32(error
, nmc
, rderror
);
1890 attrbytes
-= NFSX_UNSIGNED
;
1891 if (!rderror
) { /* no error */
1892 NFS_BITMAP_CLR(bitmap
, NFS_FATTR_RDATTR_ERROR
);
1893 NFS_BITMAP_CLR(nvap
->nva_bitmap
, NFS_FATTR_RDATTR_ERROR
);
1896 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_ACL
)) {
1898 ace_type
= ace_flags
= ace_mask
= 0;
1899 nfsm_chain_get_32(error
, nmc
, val
); /* ACE count */
1900 if (!error
&& (val
> KAUTH_ACL_MAX_ENTRIES
)) {
1903 if (!error
&& !((acl
= kauth_acl_alloc(val
)))) {
1906 if (!error
&& acl
) {
1907 acl
->acl_entrycount
= val
;
1910 attrbytes
-= NFSX_UNSIGNED
;
1911 nfsm_assert(error
, (attrbytes
>= 0), EBADRPC
);
1912 for (i
= 0; !error
&& (i
< val
); i
++) {
1913 nfsm_chain_get_32(error
, nmc
, ace_type
);
1914 nfsm_chain_get_32(error
, nmc
, ace_flags
);
1915 nfsm_chain_get_32(error
, nmc
, ace_mask
);
1916 nfsm_chain_get_32(error
, nmc
, len
);
1917 if (!error
&& len
>= NFS_MAX_WHO
) {
1920 acl
->acl_ace
[i
].ace_flags
= nfs4_ace_nfstype_to_vfstype(ace_type
, &error
);
1921 acl
->acl_ace
[i
].ace_flags
|= nfs4_ace_nfsflags_to_vfsflags(ace_flags
);
1922 acl
->acl_ace
[i
].ace_rights
= nfs4_ace_nfsmask_to_vfsrights(ace_mask
);
1923 if (!error
&& !error2
&& (len
>= slen
)) {
1927 slen
= sizeof(sbuf
);
1929 /* Let's add a bit more if we can to the allocation as to try and avoid future allocations */
1930 MALLOC(s
, char*, (len
+ 16 < NFS_MAX_WHO
) ? len
+ 16 : NFS_MAX_WHO
, M_TEMP
, M_WAITOK
);
1932 slen
= (len
+ 16 < NFS_MAX_WHO
) ? len
+ 16 : NFS_MAX_WHO
;
1938 nfsm_chain_adv(error
, nmc
, nfsm_rndup(len
));
1940 nfsm_chain_get_opaque(error
, nmc
, len
, s
);
1942 if (!error
&& !error2
) {
1944 error2
= nfs4_id2guid(s
, &acl
->acl_ace
[i
].ace_applicable
,
1945 (ace_flags
& NFS_ACE_IDENTIFIER_GROUP
));
1946 if (error2
&& (nfs_idmap_ctrl
& NFS_IDMAP_CTRL_LOG_FAILED_MAPPINGS
)) {
1947 printf("nfs4_parsefattr: ACE WHO %s is no one, no guid?, error %d\n", s
, error2
);
1950 attrbytes
-= 4 * NFSX_UNSIGNED
+ nfsm_rndup(len
);
1951 nfsm_assert(error
, (attrbytes
>= 0), EBADRPC
);
1954 if ((nvap
!= &nva_dummy
) && !error2
) {
1955 nvap
->nva_acl
= acl
;
1959 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_ACLSUPPORT
)) {
1961 * Support ACLs if: the server supports DENY/ALLOC ACEs and
1962 * (just to be safe) FATTR_ACL is in the supported list too.
1964 nfsm_chain_get_32(error
, nmc
, val
);
1965 if ((val
& (NFS_ACL_SUPPORT_ALLOW_ACL
| NFS_ACL_SUPPORT_DENY_ACL
)) &&
1966 NFS_BITMAP_ISSET(nfsap
->nfsa_supp_attr
, NFS_FATTR_ACL
)) {
1967 nfsap
->nfsa_flags
|= NFS_FSFLAG_ACL
;
1969 nfsap
->nfsa_flags
&= ~NFS_FSFLAG_ACL
;
1971 attrbytes
-= NFSX_UNSIGNED
;
1973 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_ARCHIVE
)) { /* SF_ARCHIVED */
1974 nfsm_chain_get_32(error
, nmc
, val
);
1976 nvap
->nva_flags
|= NFS_FFLAG_ARCHIVED
;
1978 nvap
->nva_flags
&= ~NFS_FFLAG_ARCHIVED
;
1980 attrbytes
-= NFSX_UNSIGNED
;
1982 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_CANSETTIME
)) {
1983 nfsm_chain_get_32(error
, nmc
, val
);
1985 nfsap
->nfsa_flags
|= NFS_FSFLAG_SET_TIME
;
1987 nfsap
->nfsa_flags
&= ~NFS_FSFLAG_SET_TIME
;
1989 attrbytes
-= NFSX_UNSIGNED
;
1991 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_CASE_INSENSITIVE
)) {
1992 nfsm_chain_get_32(error
, nmc
, val
);
1994 nfsap
->nfsa_flags
|= NFS_FSFLAG_CASE_INSENSITIVE
;
1996 nfsap
->nfsa_flags
&= ~NFS_FSFLAG_CASE_INSENSITIVE
;
1998 attrbytes
-= NFSX_UNSIGNED
;
2000 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_CASE_PRESERVING
)) {
2001 nfsm_chain_get_32(error
, nmc
, val
);
2003 nfsap
->nfsa_flags
|= NFS_FSFLAG_CASE_PRESERVING
;
2005 nfsap
->nfsa_flags
&= ~NFS_FSFLAG_CASE_PRESERVING
;
2007 attrbytes
-= NFSX_UNSIGNED
;
2009 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_CHOWN_RESTRICTED
)) {
2010 nfsm_chain_get_32(error
, nmc
, val
);
2012 nfsap
->nfsa_flags
|= NFS_FSFLAG_CHOWN_RESTRICTED
;
2014 nfsap
->nfsa_flags
&= ~NFS_FSFLAG_CHOWN_RESTRICTED
;
2016 attrbytes
-= NFSX_UNSIGNED
;
2018 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_FILEHANDLE
)) {
2019 nfsm_chain_get_32(error
, nmc
, val
);
2020 if (error
== 0 && val
> NFS_MAX_FH_SIZE
) {
2026 nfsm_chain_get_opaque(error
, nmc
, nfsm_rndup(val
), fhp
->fh_data
);
2028 nfsm_chain_adv(error
, nmc
, nfsm_rndup(val
));
2030 attrbytes
-= NFSX_UNSIGNED
+ nfsm_rndup(val
);
2032 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_FILEID
)) {
2033 nfsm_chain_get_64(error
, nmc
, nvap
->nva_fileid
);
2034 attrbytes
-= 2 * NFSX_UNSIGNED
;
2036 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_FILES_AVAIL
)) {
2037 nfsm_chain_get_64(error
, nmc
, nfsap
->nfsa_files_avail
);
2038 attrbytes
-= 2 * NFSX_UNSIGNED
;
2040 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_FILES_FREE
)) {
2041 nfsm_chain_get_64(error
, nmc
, nfsap
->nfsa_files_free
);
2042 attrbytes
-= 2 * NFSX_UNSIGNED
;
2044 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_FILES_TOTAL
)) {
2045 nfsm_chain_get_64(error
, nmc
, nfsap
->nfsa_files_total
);
2046 attrbytes
-= 2 * NFSX_UNSIGNED
;
2048 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_FS_LOCATIONS
)) {
2049 uint32_t loc
, serv
, comp
;
2050 struct nfs_fs_location
*fsl
;
2051 struct nfs_fs_server
*fss
;
2052 struct nfs_fs_path
*fsp
;
2054 /* get root pathname */
2055 fsp
= &nfslsp
->nl_root
;
2056 nfsm_chain_get_32(error
, nmc
, fsp
->np_compcount
); /* component count */
2057 attrbytes
-= NFSX_UNSIGNED
;
2058 /* sanity check component count */
2059 if (!error
&& (fsp
->np_compcount
> MAXPATHLEN
)) {
2063 if (fsp
->np_compcount
) {
2064 MALLOC(fsp
->np_components
, char **, fsp
->np_compcount
* sizeof(char*), M_TEMP
, M_WAITOK
| M_ZERO
);
2065 if (!fsp
->np_components
) {
2069 for (comp
= 0; comp
< fsp
->np_compcount
; comp
++) {
2070 nfsm_chain_get_32(error
, nmc
, val
); /* component length */
2071 /* sanity check component length */
2072 if (!error
&& (val
== 0)) {
2074 * Apparently some people think a path with zero components should
2075 * be encoded with one zero-length component. So, just ignore any
2076 * zero length components.
2079 fsp
->np_compcount
--;
2080 if (fsp
->np_compcount
== 0) {
2081 FREE(fsp
->np_components
, M_TEMP
);
2082 fsp
->np_components
= NULL
;
2084 attrbytes
-= NFSX_UNSIGNED
;
2087 if (!error
&& ((val
< 1) || (val
> MAXPATHLEN
))) {
2091 MALLOC(fsp
->np_components
[comp
], char *, val
+ 1, M_TEMP
, M_WAITOK
| M_ZERO
);
2092 if (!fsp
->np_components
[comp
]) {
2096 nfsm_chain_get_opaque(error
, nmc
, val
, fsp
->np_components
[comp
]); /* component */
2097 attrbytes
-= NFSX_UNSIGNED
+ nfsm_rndup(val
);
2099 nfsm_chain_get_32(error
, nmc
, nfslsp
->nl_numlocs
); /* fs location count */
2100 attrbytes
-= NFSX_UNSIGNED
;
2101 /* sanity check location count */
2102 if (!error
&& (nfslsp
->nl_numlocs
> 256)) {
2106 if (nfslsp
->nl_numlocs
> 0) {
2107 MALLOC(nfslsp
->nl_locations
, struct nfs_fs_location
**, nfslsp
->nl_numlocs
* sizeof(struct nfs_fs_location
*), M_TEMP
, M_WAITOK
| M_ZERO
);
2108 if (!nfslsp
->nl_locations
) {
2113 for (loc
= 0; loc
< nfslsp
->nl_numlocs
; loc
++) {
2115 MALLOC(fsl
, struct nfs_fs_location
*, sizeof(struct nfs_fs_location
), M_TEMP
, M_WAITOK
| M_ZERO
);
2119 nfslsp
->nl_locations
[loc
] = fsl
;
2120 nfsm_chain_get_32(error
, nmc
, fsl
->nl_servcount
); /* server count */
2121 attrbytes
-= NFSX_UNSIGNED
;
2122 /* sanity check server count */
2123 if (!error
&& ((fsl
->nl_servcount
< 1) || (fsl
->nl_servcount
> 256))) {
2127 MALLOC(fsl
->nl_servers
, struct nfs_fs_server
**, fsl
->nl_servcount
* sizeof(struct nfs_fs_server
*), M_TEMP
, M_WAITOK
| M_ZERO
);
2128 if (!fsl
->nl_servers
) {
2131 for (serv
= 0; serv
< fsl
->nl_servcount
; serv
++) {
2133 MALLOC(fss
, struct nfs_fs_server
*, sizeof(struct nfs_fs_server
), M_TEMP
, M_WAITOK
| M_ZERO
);
2137 fsl
->nl_servers
[serv
] = fss
;
2138 nfsm_chain_get_32(error
, nmc
, val
); /* server name length */
2139 /* sanity check server name length */
2140 if (!error
&& ((val
< 1) || (val
> MAXPATHLEN
))) {
2144 MALLOC(fss
->ns_name
, char *, val
+ 1, M_TEMP
, M_WAITOK
| M_ZERO
);
2145 if (!fss
->ns_name
) {
2148 nfsm_chain_get_opaque(error
, nmc
, val
, fss
->ns_name
); /* server name */
2149 attrbytes
-= NFSX_UNSIGNED
+ nfsm_rndup(val
);
2151 /* copy name to address if it converts to a sockaddr */
2152 if (nfs_uaddr2sockaddr(fss
->ns_name
, (struct sockaddr
*)&ss
)) {
2153 fss
->ns_addrcount
= 1;
2154 MALLOC(fss
->ns_addresses
, char **, sizeof(char *), M_TEMP
, M_WAITOK
| M_ZERO
);
2155 if (!fss
->ns_addresses
) {
2159 MALLOC(fss
->ns_addresses
[0], char *, val
+ 1, M_TEMP
, M_WAITOK
| M_ZERO
);
2160 if (!fss
->ns_addresses
[0]) {
2164 strlcpy(fss
->ns_addresses
[0], fss
->ns_name
, val
+ 1);
2168 fsp
= &fsl
->nl_path
;
2169 nfsm_chain_get_32(error
, nmc
, fsp
->np_compcount
); /* component count */
2170 attrbytes
-= NFSX_UNSIGNED
;
2171 /* sanity check component count */
2172 if (!error
&& (fsp
->np_compcount
> MAXPATHLEN
)) {
2176 if (fsp
->np_compcount
) {
2177 MALLOC(fsp
->np_components
, char **, fsp
->np_compcount
* sizeof(char*), M_TEMP
, M_WAITOK
| M_ZERO
);
2178 if (!fsp
->np_components
) {
2182 for (comp
= 0; comp
< fsp
->np_compcount
; comp
++) {
2183 nfsm_chain_get_32(error
, nmc
, val
); /* component length */
2184 /* sanity check component length */
2185 if (!error
&& (val
== 0)) {
2187 * Apparently some people think a path with zero components should
2188 * be encoded with one zero-length component. So, just ignore any
2189 * zero length components.
2192 fsp
->np_compcount
--;
2193 if (fsp
->np_compcount
== 0) {
2194 FREE(fsp
->np_components
, M_TEMP
);
2195 fsp
->np_components
= NULL
;
2197 attrbytes
-= NFSX_UNSIGNED
;
2200 if (!error
&& ((val
< 1) || (val
> MAXPATHLEN
))) {
2204 MALLOC(fsp
->np_components
[comp
], char *, val
+ 1, M_TEMP
, M_WAITOK
| M_ZERO
);
2205 if (!fsp
->np_components
[comp
]) {
2208 nfsm_chain_get_opaque(error
, nmc
, val
, fsp
->np_components
[comp
]); /* component */
2209 attrbytes
-= NFSX_UNSIGNED
+ nfsm_rndup(val
);
2212 nfsm_assert(error
, (attrbytes
>= 0), EBADRPC
);
2214 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_HIDDEN
)) { /* UF_HIDDEN */
2215 nfsm_chain_get_32(error
, nmc
, val
);
2217 nvap
->nva_flags
|= NFS_FFLAG_HIDDEN
;
2219 nvap
->nva_flags
&= ~NFS_FFLAG_HIDDEN
;
2221 attrbytes
-= NFSX_UNSIGNED
;
2223 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_HOMOGENEOUS
)) {
2224 /* XXX If NOT homogeneous, we may need to clear flags on the mount */
2225 nfsm_chain_get_32(error
, nmc
, val
);
2227 nfsap
->nfsa_flags
|= NFS_FSFLAG_HOMOGENEOUS
;
2229 nfsap
->nfsa_flags
&= ~NFS_FSFLAG_HOMOGENEOUS
;
2231 attrbytes
-= NFSX_UNSIGNED
;
2233 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_MAXFILESIZE
)) {
2234 nfsm_chain_get_64(error
, nmc
, nfsap
->nfsa_maxfilesize
);
2235 attrbytes
-= 2 * NFSX_UNSIGNED
;
2237 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_MAXLINK
)) {
2238 nfsm_chain_get_32(error
, nmc
, nvap
->nva_maxlink
);
2239 if (!error
&& (nfsap
->nfsa_maxlink
> INT32_MAX
)) {
2240 nfsap
->nfsa_maxlink
= INT32_MAX
;
2242 attrbytes
-= NFSX_UNSIGNED
;
2244 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_MAXNAME
)) {
2245 nfsm_chain_get_32(error
, nmc
, nfsap
->nfsa_maxname
);
2246 if (!error
&& (nfsap
->nfsa_maxname
> INT32_MAX
)) {
2247 nfsap
->nfsa_maxname
= INT32_MAX
;
2249 attrbytes
-= NFSX_UNSIGNED
;
2251 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_MAXREAD
)) {
2252 nfsm_chain_get_64(error
, nmc
, nfsap
->nfsa_maxread
);
2253 attrbytes
-= 2 * NFSX_UNSIGNED
;
2255 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_MAXWRITE
)) {
2256 nfsm_chain_get_64(error
, nmc
, nfsap
->nfsa_maxwrite
);
2257 attrbytes
-= 2 * NFSX_UNSIGNED
;
2259 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_MIMETYPE
)) {
2260 nfsm_chain_get_32(error
, nmc
, val
);
2261 nfsm_chain_adv(error
, nmc
, nfsm_rndup(val
));
2262 attrbytes
-= NFSX_UNSIGNED
+ nfsm_rndup(val
);
2264 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_MODE
)) {
2265 nfsm_chain_get_32(error
, nmc
, nvap
->nva_mode
);
2266 attrbytes
-= NFSX_UNSIGNED
;
2268 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_NO_TRUNC
)) {
2269 nfsm_chain_get_32(error
, nmc
, val
);
2271 nfsap
->nfsa_flags
|= NFS_FSFLAG_NO_TRUNC
;
2273 nfsap
->nfsa_flags
&= ~NFS_FSFLAG_NO_TRUNC
;
2275 attrbytes
-= NFSX_UNSIGNED
;
2277 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_NUMLINKS
)) {
2278 nfsm_chain_get_32(error
, nmc
, val
);
2279 nvap
->nva_nlink
= val
;
2280 attrbytes
-= NFSX_UNSIGNED
;
2282 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_OWNER
)) {
2283 nfsm_chain_get_32(error
, nmc
, len
);
2284 if (!error
&& len
>= NFS_MAX_WHO
) {
2287 if (!error
&& (len
>= slen
)) {
2291 slen
= sizeof(sbuf
);
2293 /* Let's add a bit more if we can to the allocation as to try and avoid future allocations */
2294 MALLOC(s
, char*, (len
+ 16 < NFS_MAX_WHO
) ? len
+ 16 : NFS_MAX_WHO
, M_TEMP
, M_WAITOK
);
2296 slen
= (len
+ 16 < NFS_MAX_WHO
) ? len
+ 16 : NFS_MAX_WHO
;
2301 nfsm_chain_get_opaque(error
, nmc
, len
, s
);
2304 error
= nfs4_id2guid(s
, &nvap
->nva_uuuid
, 0);
2306 error
= kauth_cred_guid2uid(&nvap
->nva_uuuid
, &nvap
->nva_uid
);
2309 /* unable to get either GUID or UID, set to default */
2310 nvap
->nva_uid
= (uid_t
)(-2);
2311 if (nfs_idmap_ctrl
& NFS_IDMAP_CTRL_LOG_FAILED_MAPPINGS
) {
2312 printf("nfs4_parsefattr: owner %s is no one, no %s?, error %d\n", s
,
2313 kauth_guid_equal(&nvap
->nva_uuuid
, &kauth_null_guid
) ? "guid" : "uid",
2319 attrbytes
-= NFSX_UNSIGNED
+ nfsm_rndup(len
);
2321 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_OWNER_GROUP
)) {
2322 nfsm_chain_get_32(error
, nmc
, len
);
2323 if (!error
&& len
>= NFS_MAX_WHO
) {
2326 if (!error
&& (len
>= slen
)) {
2330 slen
= sizeof(sbuf
);
2332 /* Let's add a bit more if we can to the allocation as to try and avoid future allocations */
2333 MALLOC(s
, char*, (len
+ 16 < NFS_MAX_WHO
) ? len
+ 16 : NFS_MAX_WHO
, M_TEMP
, M_WAITOK
);
2335 slen
= (len
+ 16 < NFS_MAX_WHO
) ? len
+ 16 : NFS_MAX_WHO
;
2340 nfsm_chain_get_opaque(error
, nmc
, len
, s
);
2343 error
= nfs4_id2guid(s
, &nvap
->nva_guuid
, 1);
2345 error
= kauth_cred_guid2gid(&nvap
->nva_guuid
, &nvap
->nva_gid
);
2348 /* unable to get either GUID or GID, set to default */
2349 nvap
->nva_gid
= (gid_t
)(-2);
2350 if (nfs_idmap_ctrl
& NFS_IDMAP_CTRL_LOG_FAILED_MAPPINGS
) {
2351 printf("nfs4_parsefattr: group %s is no one, no %s?, error %d\n", s
,
2352 kauth_guid_equal(&nvap
->nva_guuid
, &kauth_null_guid
) ? "guid" : "gid",
2358 attrbytes
-= NFSX_UNSIGNED
+ nfsm_rndup(len
);
2360 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_QUOTA_AVAIL_HARD
)) {
2361 nfsm_chain_get_64(error
, nmc
, dqbp
->dqb_bhardlimit
);
2362 attrbytes
-= 2 * NFSX_UNSIGNED
;
2364 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_QUOTA_AVAIL_SOFT
)) {
2365 nfsm_chain_get_64(error
, nmc
, dqbp
->dqb_bsoftlimit
);
2366 attrbytes
-= 2 * NFSX_UNSIGNED
;
2368 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_QUOTA_USED
)) {
2369 nfsm_chain_get_64(error
, nmc
, dqbp
->dqb_curbytes
);
2370 attrbytes
-= 2 * NFSX_UNSIGNED
;
2372 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_RAWDEV
)) {
2373 nfsm_chain_get_32(error
, nmc
, nvap
->nva_rawdev
.specdata1
);
2374 nfsm_chain_get_32(error
, nmc
, nvap
->nva_rawdev
.specdata2
);
2375 attrbytes
-= 2 * NFSX_UNSIGNED
;
2377 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_SPACE_AVAIL
)) {
2378 nfsm_chain_get_64(error
, nmc
, nfsap
->nfsa_space_avail
);
2379 attrbytes
-= 2 * NFSX_UNSIGNED
;
2381 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_SPACE_FREE
)) {
2382 nfsm_chain_get_64(error
, nmc
, nfsap
->nfsa_space_free
);
2383 attrbytes
-= 2 * NFSX_UNSIGNED
;
2385 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_SPACE_TOTAL
)) {
2386 nfsm_chain_get_64(error
, nmc
, nfsap
->nfsa_space_total
);
2387 attrbytes
-= 2 * NFSX_UNSIGNED
;
2389 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_SPACE_USED
)) {
2390 nfsm_chain_get_64(error
, nmc
, nvap
->nva_bytes
);
2391 attrbytes
-= 2 * NFSX_UNSIGNED
;
2393 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_SYSTEM
)) {
2394 /* we'd support this if we had a flag to map it to... */
2395 nfsm_chain_adv(error
, nmc
, NFSX_UNSIGNED
);
2396 attrbytes
-= NFSX_UNSIGNED
;
2398 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_ACCESS
)) {
2399 nfsm_chain_get_64(error
, nmc
, nvap
->nva_timesec
[NFSTIME_ACCESS
]);
2400 nfsm_chain_get_32(error
, nmc
, nvap
->nva_timensec
[NFSTIME_ACCESS
]);
2401 attrbytes
-= 3 * NFSX_UNSIGNED
;
2403 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_ACCESS_SET
)) {
2404 nfsm_chain_adv(error
, nmc
, 4 * NFSX_UNSIGNED
); /* just skip it */
2405 attrbytes
-= 4 * NFSX_UNSIGNED
;
2407 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_BACKUP
)) {
2408 nfsm_chain_get_64(error
, nmc
, nvap
->nva_timesec
[NFSTIME_BACKUP
]);
2409 nfsm_chain_get_32(error
, nmc
, nvap
->nva_timensec
[NFSTIME_BACKUP
]);
2410 attrbytes
-= 3 * NFSX_UNSIGNED
;
2412 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_CREATE
)) {
2413 nfsm_chain_get_64(error
, nmc
, nvap
->nva_timesec
[NFSTIME_CREATE
]);
2414 nfsm_chain_get_32(error
, nmc
, nvap
->nva_timensec
[NFSTIME_CREATE
]);
2415 attrbytes
-= 3 * NFSX_UNSIGNED
;
2417 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_DELTA
)) { /* skip for now */
2418 nfsm_chain_adv(error
, nmc
, 3 * NFSX_UNSIGNED
);
2419 attrbytes
-= 3 * NFSX_UNSIGNED
;
2421 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_METADATA
)) {
2422 nfsm_chain_get_64(error
, nmc
, nvap
->nva_timesec
[NFSTIME_CHANGE
]);
2423 nfsm_chain_get_32(error
, nmc
, nvap
->nva_timensec
[NFSTIME_CHANGE
]);
2424 attrbytes
-= 3 * NFSX_UNSIGNED
;
2426 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_MODIFY
)) {
2427 nfsm_chain_get_64(error
, nmc
, nvap
->nva_timesec
[NFSTIME_MODIFY
]);
2428 nfsm_chain_get_32(error
, nmc
, nvap
->nva_timensec
[NFSTIME_MODIFY
]);
2429 attrbytes
-= 3 * NFSX_UNSIGNED
;
2431 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_MODIFY_SET
)) {
2432 nfsm_chain_adv(error
, nmc
, 4 * NFSX_UNSIGNED
); /* just skip it */
2433 attrbytes
-= 4 * NFSX_UNSIGNED
;
2435 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_MOUNTED_ON_FILEID
)) {
2437 /* we prefer the mounted on file ID, so just replace the fileid */
2438 nfsm_chain_get_64(error
, nmc
, nvap
->nva_fileid
);
2440 nfsm_chain_adv(error
, nmc
, 2 * NFSX_UNSIGNED
);
2442 attrbytes
-= 2 * NFSX_UNSIGNED
;
2444 /* advance over any leftover attrbytes */
2445 nfsm_assert(error
, (attrbytes
>= 0), EBADRPC
);
2446 nfsm_chain_adv(error
, nmc
, nfsm_rndup(attrbytes
));
2449 nfs_fs_locations_cleanup(nfslsp
);
2451 if (!error
&& rderror
) {
2454 /* free up temporary resources */
2455 if (s
&& (s
!= sbuf
)) {
2459 kauth_acl_free(acl
);
2461 if (error
&& nvap
->nva_acl
) {
2462 kauth_acl_free(nvap
->nva_acl
);
2463 nvap
->nva_acl
= NULL
;
2469 * Add an NFSv4 "sattr" structure to an mbuf chain
2472 nfsm_chain_add_fattr4_f(struct nfsm_chain
*nmc
, struct vnode_attr
*vap
, struct nfsmount
*nmp
)
2474 int error
= 0, attrbytes
, i
, isgroup
;
2476 uint32_t *pattrbytes
, val
, acecount
;;
2477 uint32_t bitmap
[NFS_ATTR_BITMAP_LEN
];
2483 slen
= sizeof(sbuf
);
2485 /* First calculate the bitmap... */
2486 nfs_vattr_set_bitmap(nmp
, bitmap
, vap
);
2489 * Now pack it all together:
2490 * BITMAP, #BYTES, ATTRS
2491 * Keep a pointer to the length so we can set it later.
2493 nfsm_chain_add_bitmap(error
, nmc
, bitmap
, NFS_ATTR_BITMAP_LEN
);
2495 nfsm_chain_add_32(error
, nmc
, attrbytes
);
2496 pattrbytes
= (uint32_t*)(nmc
->nmc_ptr
- NFSX_UNSIGNED
);
2498 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_SIZE
)) {
2499 nfsm_chain_add_64(error
, nmc
, vap
->va_data_size
);
2500 attrbytes
+= 2 * NFSX_UNSIGNED
;
2502 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_ACL
)) {
2504 if (!acl
|| (acl
->acl_entrycount
== KAUTH_FILESEC_NOACL
)) {
2507 acecount
= acl
->acl_entrycount
;
2509 nfsm_chain_add_32(error
, nmc
, acecount
);
2510 attrbytes
+= NFSX_UNSIGNED
;
2511 for (i
= 0; !error
&& (i
< (int)acecount
); i
++) {
2512 val
= (acl
->acl_ace
[i
].ace_flags
& KAUTH_ACE_KINDMASK
);
2513 val
= nfs4_ace_vfstype_to_nfstype(val
, &error
);
2514 nfsm_chain_add_32(error
, nmc
, val
);
2515 val
= nfs4_ace_vfsflags_to_nfsflags(acl
->acl_ace
[i
].ace_flags
);
2516 isgroup
= (kauth_cred_guid2gid(&acl
->acl_ace
[i
].ace_applicable
, &gid
) == 0);
2517 val
|= (isgroup
) ? NFS_ACE_IDENTIFIER_GROUP
: 0;
2518 nfsm_chain_add_32(error
, nmc
, val
);
2519 val
= nfs4_ace_vfsrights_to_nfsmask(acl
->acl_ace
[i
].ace_rights
);
2520 nfsm_chain_add_32(error
, nmc
, val
);
2522 error
= nfs4_guid2id(&acl
->acl_ace
[i
].ace_applicable
, s
, &len
, isgroup
);
2523 if (error
== ENOSPC
) {
2529 MALLOC(s
, char*, len
, M_TEMP
, M_WAITOK
);
2532 error
= nfs4_guid2id(&acl
->acl_ace
[i
].ace_applicable
, s
, &len
, isgroup
);
2537 nfsm_chain_add_name(error
, nmc
, s
, len
, nmp
);
2538 attrbytes
+= 4 * NFSX_UNSIGNED
+ nfsm_rndup(len
);
2541 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_ARCHIVE
)) {
2542 nfsm_chain_add_32(error
, nmc
, (vap
->va_flags
& SF_ARCHIVED
) ? 1 : 0);
2543 attrbytes
+= NFSX_UNSIGNED
;
2545 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_HIDDEN
)) {
2546 nfsm_chain_add_32(error
, nmc
, (vap
->va_flags
& UF_HIDDEN
) ? 1 : 0);
2547 attrbytes
+= NFSX_UNSIGNED
;
2549 // NFS_BITMAP_ISSET(bitmap, NFS_FATTR_MIMETYPE)
2550 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_MODE
)) {
2551 nfsm_chain_add_32(error
, nmc
, vap
->va_mode
);
2552 attrbytes
+= NFSX_UNSIGNED
;
2554 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_OWNER
)) {
2556 /* if we have va_uuuid use it, otherwise use uid */
2557 if (!VATTR_IS_ACTIVE(vap
, va_uuuid
)) {
2558 error
= kauth_cred_uid2guid(vap
->va_uid
, &vap
->va_uuuid
);
2562 error
= nfs4_guid2id(&vap
->va_uuuid
, s
, &len
, 0);
2563 if (error
== ENOSPC
) {
2569 MALLOC(s
, char*, len
, M_TEMP
, M_WAITOK
);
2572 error
= nfs4_guid2id(&vap
->va_uuuid
, s
, &len
, 0);
2577 nfsm_chain_add_name(error
, nmc
, s
, len
, nmp
);
2578 attrbytes
+= NFSX_UNSIGNED
+ nfsm_rndup(len
);
2580 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_OWNER_GROUP
)) {
2582 /* if we have va_guuid use it, otherwise use gid */
2583 if (!VATTR_IS_ACTIVE(vap
, va_guuid
)) {
2584 error
= kauth_cred_gid2guid(vap
->va_gid
, &vap
->va_guuid
);
2588 error
= nfs4_guid2id(&vap
->va_guuid
, s
, &len
, 1);
2589 if (error
== ENOSPC
) {
2595 MALLOC(s
, char*, len
, M_TEMP
, M_WAITOK
);
2598 error
= nfs4_guid2id(&vap
->va_guuid
, s
, &len
, 1);
2603 nfsm_chain_add_name(error
, nmc
, s
, len
, nmp
);
2604 attrbytes
+= NFSX_UNSIGNED
+ nfsm_rndup(len
);
2606 // NFS_BITMAP_SET(bitmap, NFS_FATTR_SYSTEM)
2607 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_ACCESS_SET
)) {
2608 if (vap
->va_vaflags
& VA_UTIMES_NULL
) {
2609 nfsm_chain_add_32(error
, nmc
, NFS4_TIME_SET_TO_SERVER
);
2610 attrbytes
+= NFSX_UNSIGNED
;
2612 nfsm_chain_add_32(error
, nmc
, NFS4_TIME_SET_TO_CLIENT
);
2613 nfsm_chain_add_64(error
, nmc
, vap
->va_access_time
.tv_sec
);
2614 nfsm_chain_add_32(error
, nmc
, vap
->va_access_time
.tv_nsec
);
2615 attrbytes
+= 4 * NFSX_UNSIGNED
;
2618 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_BACKUP
)) {
2619 nfsm_chain_add_64(error
, nmc
, vap
->va_backup_time
.tv_sec
);
2620 nfsm_chain_add_32(error
, nmc
, vap
->va_backup_time
.tv_nsec
);
2621 attrbytes
+= 3 * NFSX_UNSIGNED
;
2623 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_CREATE
)) {
2624 nfsm_chain_add_64(error
, nmc
, vap
->va_create_time
.tv_sec
);
2625 nfsm_chain_add_32(error
, nmc
, vap
->va_create_time
.tv_nsec
);
2626 attrbytes
+= 3 * NFSX_UNSIGNED
;
2628 if (NFS_BITMAP_ISSET(bitmap
, NFS_FATTR_TIME_MODIFY_SET
)) {
2629 if (vap
->va_vaflags
& VA_UTIMES_NULL
) {
2630 nfsm_chain_add_32(error
, nmc
, NFS4_TIME_SET_TO_SERVER
);
2631 attrbytes
+= NFSX_UNSIGNED
;
2633 nfsm_chain_add_32(error
, nmc
, NFS4_TIME_SET_TO_CLIENT
);
2634 nfsm_chain_add_64(error
, nmc
, vap
->va_modify_time
.tv_sec
);
2635 nfsm_chain_add_32(error
, nmc
, vap
->va_modify_time
.tv_nsec
);
2636 attrbytes
+= 4 * NFSX_UNSIGNED
;
2640 /* Now, set the attribute data length */
2641 *pattrbytes
= txdr_unsigned(attrbytes
);
2643 if (s
&& (s
!= sbuf
)) {
2648 #endif /* CONFIG_NFS4 */
2651 * Got the given error and need to start recovery (if not already started).
2652 * Note: nmp must be locked!
2655 nfs_need_recover(struct nfsmount
*nmp
, int error
)
2657 int wake
= !(nmp
->nm_state
& NFSSTA_RECOVER
);
2659 nmp
->nm_state
|= NFSSTA_RECOVER
;
2660 if ((error
== NFSERR_ADMIN_REVOKED
) ||
2661 (error
== NFSERR_EXPIRED
) ||
2662 (error
== NFSERR_STALE_CLIENTID
)) {
2663 nmp
->nm_state
|= NFSSTA_RECOVER_EXPIRED
;
2666 nfs_mount_sock_thread_wake(nmp
);
2672 * After recovery due to state expiry, check each node and
2673 * drop any lingering delegation we thought we had.
2675 * If a node has an open that is not lost and is not marked
2676 * for reopen, then we hold onto any delegation because it is
2677 * likely newly-granted.
2680 nfs4_expired_check_delegation(nfsnode_t np
, vfs_context_t ctx
)
2682 struct nfsmount
*nmp
= NFSTONMP(np
);
2683 struct nfs_open_file
*nofp
;
2686 if ((np
->n_flag
& NREVOKE
) || !(np
->n_openflags
& N_DELEG_MASK
)) {
2690 lck_mtx_lock(&np
->n_openlock
);
2692 TAILQ_FOREACH(nofp
, &np
->n_opens
, nof_link
) {
2693 if (!nofp
->nof_opencnt
) {
2696 if (nofp
->nof_flags
& NFS_OPEN_FILE_LOST
) {
2699 if (nofp
->nof_flags
& NFS_OPEN_FILE_REOPEN
) {
2702 /* we have an open that is not lost and not marked for reopen */
2703 // XXX print out what's keeping this node from dropping the delegation.
2704 NP(nofp
->nof_np
, "nfs4_expired_check_delegation: !drop: opencnt %d flags 0x%x access %d %d mmap %d %d",
2705 nofp
->nof_opencnt
, nofp
->nof_flags
,
2706 nofp
->nof_access
, nofp
->nof_deny
,
2707 nofp
->nof_mmap_access
, nofp
->nof_mmap_deny
);
2713 /* need to drop a delegation */
2714 if (np
->n_dreturn
.tqe_next
!= NFSNOLIST
) {
2715 /* remove this node from the delegation return list */
2716 lck_mtx_lock(&nmp
->nm_lock
);
2717 if (np
->n_dreturn
.tqe_next
!= NFSNOLIST
) {
2718 TAILQ_REMOVE(&nmp
->nm_dreturnq
, np
, n_dreturn
);
2719 np
->n_dreturn
.tqe_next
= NFSNOLIST
;
2721 lck_mtx_unlock(&nmp
->nm_lock
);
2723 if (np
->n_openflags
& N_DELEG_MASK
) {
2724 np
->n_openflags
&= ~N_DELEG_MASK
;
2725 lck_mtx_lock(&nmp
->nm_lock
);
2726 if (np
->n_dlink
.tqe_next
!= NFSNOLIST
) {
2727 TAILQ_REMOVE(&nmp
->nm_delegations
, np
, n_dlink
);
2728 np
->n_dlink
.tqe_next
= NFSNOLIST
;
2730 lck_mtx_unlock(&nmp
->nm_lock
);
2731 nfs4_delegreturn_rpc(nmp
, np
->n_fhp
, np
->n_fhsize
, &np
->n_dstateid
,
2732 0, vfs_context_thread(ctx
), vfs_context_ucred(ctx
));
2736 lck_mtx_unlock(&np
->n_openlock
);
2738 #endif /* CONFIG_NFS4*/
2741 * Recover state for an NFS mount.
2743 * Iterates over all open files, reclaiming opens and lock state.
2746 nfs_recover(struct nfsmount
*nmp
)
2748 struct timespec ts
= { .tv_sec
= 1, .tv_nsec
= 0 };
2749 int error
, lost
, reopen
;
2750 struct nfs_open_owner
*noop
;
2751 struct nfs_open_file
*nofp
;
2752 struct nfs_file_lock
*nflp
, *nextnflp
;
2753 struct nfs_lock_owner
*nlop
;
2754 thread_t thd
= current_thread();
2756 nfsnode_t np
, nextnp
;
2762 lck_mtx_lock(&nmp
->nm_lock
);
2764 * First, wait for the state inuse count to go to zero so
2765 * we know there are no state operations in progress.
2768 if ((error
= nfs_sigintr(nmp
, NULL
, NULL
, 1))) {
2771 if (!(nmp
->nm_sockflags
& NMSOCK_READY
)) {
2774 if (nmp
->nm_state
& (NFSSTA_FORCE
| NFSSTA_DEAD
)) {
2777 if (nmp
->nm_sockflags
& NMSOCK_UNMOUNT
) {
2783 if (nmp
->nm_stateinuse
) {
2784 msleep(&nmp
->nm_stateinuse
, &nmp
->nm_lock
, (PZERO
- 1), "nfsrecoverstartwait", &ts
);
2786 } while (nmp
->nm_stateinuse
);
2788 if (error
== EPIPE
) {
2789 printf("nfs recovery reconnecting for %s, 0x%x\n", vfs_statfs(nmp
->nm_mountp
)->f_mntfromname
, nmp
->nm_stategenid
);
2791 printf("nfs recovery aborted for %s, 0x%x\n", vfs_statfs(nmp
->nm_mountp
)->f_mntfromname
, nmp
->nm_stategenid
);
2793 lck_mtx_unlock(&nmp
->nm_lock
);
2798 if (now
.tv_sec
== nmp
->nm_recover_start
) {
2799 printf("nfs recovery throttled for %s, 0x%x\n", vfs_statfs(nmp
->nm_mountp
)->f_mntfromname
, nmp
->nm_stategenid
);
2800 lck_mtx_unlock(&nmp
->nm_lock
);
2801 tsleep(nfs_recover
, (PZERO
- 1), "nfsrecoverrestart", hz
);
2804 nmp
->nm_recover_start
= now
.tv_sec
;
2805 if (++nmp
->nm_stategenid
== 0) {
2806 ++nmp
->nm_stategenid
;
2808 printf("nfs recovery started for %s, 0x%x\n", vfs_statfs(nmp
->nm_mountp
)->f_mntfromname
, nmp
->nm_stategenid
);
2809 lck_mtx_unlock(&nmp
->nm_lock
);
2811 /* for each open owner... */
2812 TAILQ_FOREACH(noop
, &nmp
->nm_open_owners
, noo_link
) {
2813 /* for each of its opens... */
2814 TAILQ_FOREACH(nofp
, &noop
->noo_opens
, nof_oolink
) {
2815 if (!nofp
->nof_access
|| (nofp
->nof_flags
& NFS_OPEN_FILE_LOST
) || (nofp
->nof_np
->n_flag
& NREVOKE
)) {
2819 /* for NFSv2/v3, just skip straight to lock reclaim */
2820 if (nmp
->nm_vers
< NFS_VER4
) {
2824 if (nofp
->nof_rw_drw
) {
2825 error
= nfs4_open_reclaim_rpc(nofp
, NFS_OPEN_SHARE_ACCESS_BOTH
, NFS_OPEN_SHARE_DENY_BOTH
);
2827 if (!error
&& nofp
->nof_w_drw
) {
2828 error
= nfs4_open_reclaim_rpc(nofp
, NFS_OPEN_SHARE_ACCESS_WRITE
, NFS_OPEN_SHARE_DENY_BOTH
);
2830 if (!error
&& nofp
->nof_r_drw
) {
2831 error
= nfs4_open_reclaim_rpc(nofp
, NFS_OPEN_SHARE_ACCESS_READ
, NFS_OPEN_SHARE_DENY_BOTH
);
2833 if (!error
&& nofp
->nof_rw_dw
) {
2834 error
= nfs4_open_reclaim_rpc(nofp
, NFS_OPEN_SHARE_ACCESS_BOTH
, NFS_OPEN_SHARE_DENY_WRITE
);
2836 if (!error
&& nofp
->nof_w_dw
) {
2837 error
= nfs4_open_reclaim_rpc(nofp
, NFS_OPEN_SHARE_ACCESS_WRITE
, NFS_OPEN_SHARE_DENY_WRITE
);
2839 if (!error
&& nofp
->nof_r_dw
) {
2840 error
= nfs4_open_reclaim_rpc(nofp
, NFS_OPEN_SHARE_ACCESS_READ
, NFS_OPEN_SHARE_DENY_WRITE
);
2843 * deny-none opens with no locks can just be reopened (later) if reclaim fails.
2845 if (!error
&& nofp
->nof_rw
) {
2846 error
= nfs4_open_reclaim_rpc(nofp
, NFS_OPEN_SHARE_ACCESS_BOTH
, NFS_OPEN_SHARE_DENY_NONE
);
2847 if ((error
== NFSERR_ADMIN_REVOKED
) || (error
== NFSERR_EXPIRED
) || (error
== NFSERR_NO_GRACE
)) {
2852 if (!error
&& !reopen
&& nofp
->nof_w
) {
2853 error
= nfs4_open_reclaim_rpc(nofp
, NFS_OPEN_SHARE_ACCESS_WRITE
, NFS_OPEN_SHARE_DENY_NONE
);
2854 if ((error
== NFSERR_ADMIN_REVOKED
) || (error
== NFSERR_EXPIRED
) || (error
== NFSERR_NO_GRACE
)) {
2859 if (!error
&& !reopen
&& nofp
->nof_r
) {
2860 error
= nfs4_open_reclaim_rpc(nofp
, NFS_OPEN_SHARE_ACCESS_READ
, NFS_OPEN_SHARE_DENY_NONE
);
2861 if ((error
== NFSERR_ADMIN_REVOKED
) || (error
== NFSERR_EXPIRED
) || (error
== NFSERR_NO_GRACE
)) {
2868 * If we hold delegated state but we don't have any non-delegated opens,
2869 * then we should attempt to claim that state now (but don't return the
2870 * delegation unless asked to).
2872 if ((nofp
->nof_d_rw_drw
|| nofp
->nof_d_w_drw
|| nofp
->nof_d_r_drw
||
2873 nofp
->nof_d_rw_dw
|| nofp
->nof_d_w_dw
|| nofp
->nof_d_r_dw
||
2874 nofp
->nof_d_rw
|| nofp
->nof_d_w
|| nofp
->nof_d_r
) &&
2875 (!nofp
->nof_rw_drw
&& !nofp
->nof_w_drw
&& !nofp
->nof_r_drw
&&
2876 !nofp
->nof_rw_dw
&& !nofp
->nof_w_dw
&& !nofp
->nof_r_dw
&&
2877 !nofp
->nof_rw
&& !nofp
->nof_w
&& !nofp
->nof_r
)) {
2878 if (!error
&& !nfs_open_state_set_busy(nofp
->nof_np
, NULL
)) {
2879 error
= nfs4_claim_delegated_state_for_node(nofp
->nof_np
, R_RECOVER
);
2880 if (!error
&& (nofp
->nof_flags
& NFS_OPEN_FILE_REOPEN
)) {
2883 nfs_open_state_clear_busy(nofp
->nof_np
);
2884 /* if claim didn't go well, we may need to return delegation now */
2885 if (nofp
->nof_np
->n_openflags
& N_DELEG_RETURN
) {
2886 nfs4_delegation_return(nofp
->nof_np
, R_RECOVER
, thd
, noop
->noo_cred
);
2887 if (!(nmp
->nm_sockflags
& NMSOCK_READY
)) {
2888 error
= ETIMEDOUT
; /* looks like we need a reconnect */
2895 * Handle any issue claiming open state.
2896 * Potential reopens need to first confirm that there are no locks.
2898 if (error
|| reopen
) {
2899 /* restart recovery? */
2900 if ((error
== ETIMEDOUT
) || nfs_mount_state_error_should_restart(error
)) {
2901 if (error
== ETIMEDOUT
) {
2902 nfs_need_reconnect(nmp
);
2904 tsleep(nfs_recover
, (PZERO
- 1), "nfsrecoverrestart", hz
);
2905 printf("nfs recovery restarting for %s, 0x%x, error %d\n",
2906 vfs_statfs(nmp
->nm_mountp
)->f_mntfromname
, nmp
->nm_stategenid
, error
);
2909 if (reopen
&& (nfs_check_for_locks(noop
, nofp
) == 0)) {
2910 /* just reopen the file on next access */
2911 NP(nofp
->nof_np
, "nfs_recover: %d, need reopen for %d %p 0x%x", reopen
,
2912 kauth_cred_getuid(noop
->noo_cred
), nofp
->nof_np
, nofp
->nof_np
->n_flag
);
2913 lck_mtx_lock(&nofp
->nof_lock
);
2914 nofp
->nof_flags
|= NFS_OPEN_FILE_REOPEN
;
2915 lck_mtx_unlock(&nofp
->nof_lock
);
2917 /* open file state lost */
2919 NP(nofp
->nof_np
, "nfs_recover: %d, can't reopen because of locks %d %p", reopen
,
2920 kauth_cred_getuid(noop
->noo_cred
), nofp
->nof_np
);
2927 /* no error, so make sure the reopen flag isn't set */
2928 lck_mtx_lock(&nofp
->nof_lock
);
2929 nofp
->nof_flags
&= ~NFS_OPEN_FILE_REOPEN
;
2930 lck_mtx_unlock(&nofp
->nof_lock
);
2932 #endif /* CONFIG_NFS4 */
2934 * Scan this node's lock owner list for entries with this open owner,
2935 * then walk the lock owner's held lock list recovering each lock.
2938 TAILQ_FOREACH(nlop
, &nofp
->nof_np
->n_lock_owners
, nlo_link
) {
2939 if (lost
|| reopen
) {
2942 if (nlop
->nlo_open_owner
!= noop
) {
2945 TAILQ_FOREACH_SAFE(nflp
, &nlop
->nlo_locks
, nfl_lolink
, nextnflp
) {
2946 /* skip dead & blocked lock requests (shouldn't be any in the held lock list) */
2947 if (nflp
->nfl_flags
& (NFS_FILE_LOCK_DEAD
| NFS_FILE_LOCK_BLOCKED
)) {
2950 /* skip delegated locks */
2951 if (nflp
->nfl_flags
& NFS_FILE_LOCK_DELEGATED
) {
2954 error
= nmp
->nm_funcs
->nf_setlock_rpc(nofp
->nof_np
, nofp
, nflp
, 1, R_RECOVER
, thd
, noop
->noo_cred
);
2956 NP(nofp
->nof_np
, "nfs: lock reclaim (0x%llx, 0x%llx) %s %d",
2957 nflp
->nfl_start
, nflp
->nfl_end
,
2958 error
? "failed" : "succeeded", error
);
2963 /* restart recovery? */
2964 if ((error
== ETIMEDOUT
) || nfs_mount_state_error_should_restart(error
)) {
2965 if (error
== ETIMEDOUT
) {
2966 nfs_need_reconnect(nmp
);
2968 tsleep(nfs_recover
, (PZERO
- 1), "nfsrecoverrestart", hz
);
2969 printf("nfs recovery restarting for %s, 0x%x, error %d\n",
2970 vfs_statfs(nmp
->nm_mountp
)->f_mntfromname
, nmp
->nm_stategenid
, error
);
2973 /* lock state lost - attempt to close file */
2981 * If we've determined that we need to reopen the file then we probably
2982 * didn't receive any delegation we think we hold. We should attempt to
2983 * return that delegation (and claim any delegated state).
2985 * If we hold a delegation that is marked for return, then we should
2988 if ((nofp
->nof_np
->n_openflags
& N_DELEG_RETURN
) ||
2989 (reopen
&& (nofp
->nof_np
->n_openflags
& N_DELEG_MASK
))) {
2990 nfs4_delegation_return(nofp
->nof_np
, R_RECOVER
, thd
, noop
->noo_cred
);
2991 if (!(nmp
->nm_sockflags
& NMSOCK_READY
)) {
2992 /* looks like we need a reconnect */
2993 tsleep(nfs_recover
, (PZERO
- 1), "nfsrecoverrestart", hz
);
2994 printf("nfs recovery restarting for %s, 0x%x, error %d\n",
2995 vfs_statfs(nmp
->nm_mountp
)->f_mntfromname
, nmp
->nm_stategenid
, error
);
3001 /* revoke open file state */
3002 NP(nofp
->nof_np
, "nfs_recover: state lost for %d %p 0x%x",
3003 kauth_cred_getuid(noop
->noo_cred
), nofp
->nof_np
, nofp
->nof_np
->n_flag
);
3004 nfs_revoke_open_state_for_node(nofp
->nof_np
);
3010 /* If state expired, make sure we're not holding onto any stale delegations */
3011 lck_mtx_lock(&nmp
->nm_lock
);
3013 if ((nmp
->nm_vers
>= NFS_VER4
) && (nmp
->nm_state
& NFSSTA_RECOVER_EXPIRED
)) {
3015 TAILQ_FOREACH_SAFE(np
, &nmp
->nm_delegations
, n_dlink
, nextnp
) {
3016 lck_mtx_unlock(&nmp
->nm_lock
);
3017 nfs4_expired_check_delegation(np
, vfs_context_kernel());
3018 lck_mtx_lock(&nmp
->nm_lock
);
3019 if (nextnp
== NFSNOLIST
) {
3025 nmp
->nm_state
&= ~(NFSSTA_RECOVER
| NFSSTA_RECOVER_EXPIRED
);
3026 wakeup(&nmp
->nm_state
);
3027 printf("nfs recovery completed for %s, 0x%x\n",
3028 vfs_statfs(nmp
->nm_mountp
)->f_mntfromname
, nmp
->nm_stategenid
);
3029 lck_mtx_unlock(&nmp
->nm_lock
);
3031 printf("nfs recovery failed for %s, 0x%x, error %d\n",
3032 vfs_statfs(nmp
->nm_mountp
)->f_mntfromname
, nmp
->nm_stategenid
, error
);