]> git.saurik.com Git - apple/xnu.git/blob - bsd/nfs/nfs_vnops.c
xnu-7195.50.7.100.1.tar.gz
[apple/xnu.git] / bsd / nfs / nfs_vnops.c
1 /*
2 * Copyright (c) 2000-2020 Apple Inc. All rights reserved.
3 *
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5 *
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.
14 *
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
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.
25 *
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27 */
28 /* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */
29 /*
30 * Copyright (c) 1989, 1993
31 * The Regents of the University of California. All rights reserved.
32 *
33 * This code is derived from software contributed to Berkeley by
34 * Rick Macklem at The University of Guelph.
35 *
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions
38 * are met:
39 * 1. Redistributions of source code must retain the above copyright
40 * notice, this list of conditions and the following disclaimer.
41 * 2. Redistributions in binary form must reproduce the above copyright
42 * notice, this list of conditions and the following disclaimer in the
43 * documentation and/or other materials provided with the distribution.
44 * 3. All advertising materials mentioning features or use of this software
45 * must display the following acknowledgement:
46 * This product includes software developed by the University of
47 * California, Berkeley and its contributors.
48 * 4. Neither the name of the University nor the names of its contributors
49 * may be used to endorse or promote products derived from this software
50 * without specific prior written permission.
51 *
52 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
53 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
54 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
55 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
56 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
57 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
58 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
59 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
60 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
61 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
62 * SUCH DAMAGE.
63 *
64 * @(#)nfs_vnops.c 8.16 (Berkeley) 5/27/95
65 * FreeBSD-Id: nfs_vnops.c,v 1.72 1997/11/07 09:20:48 phk Exp $
66 */
67
68 #include <nfs/nfs_conf.h>
69 #if CONFIG_NFS_CLIENT
70
71 /*
72 * vnode op calls for Sun NFS version 2 and 3
73 */
74 #include <sys/param.h>
75 #include <sys/kernel.h>
76 #include <sys/systm.h>
77 #include <sys/resourcevar.h>
78 #include <sys/proc_internal.h>
79 #include <sys/kauth.h>
80 #include <sys/mount_internal.h>
81 #include <sys/malloc.h>
82 #include <sys/kpi_mbuf.h>
83 #include <sys/conf.h>
84 #include <sys/vnode_internal.h>
85 #include <sys/dirent.h>
86 #include <sys/fcntl.h>
87 #include <sys/lockf.h>
88 #include <sys/ubc_internal.h>
89 #include <sys/attr.h>
90 #include <sys/signalvar.h>
91 #include <sys/uio_internal.h>
92 #include <sys/xattr.h>
93
94 #include <vfs/vfs_support.h>
95
96 #include <sys/vm.h>
97
98 #include <sys/time.h>
99 #include <kern/clock.h>
100 #include <libkern/OSAtomic.h>
101
102 #include <miscfs/fifofs/fifo.h>
103 #include <miscfs/specfs/specdev.h>
104
105 #include <nfs/rpcv2.h>
106 #include <nfs/nfsproto.h>
107 #include <nfs/nfs.h>
108 #include <nfs/nfsnode.h>
109 #include <nfs/nfs_gss.h>
110 #include <nfs/nfsmount.h>
111 #include <nfs/nfs_lock.h>
112 #include <nfs/xdr_subs.h>
113 #include <nfs/nfsm_subs.h>
114
115 #include <net/if.h>
116 #include <netinet/in.h>
117 #include <netinet/in_var.h>
118
119 #include <vm/vm_kern.h>
120 #include <vm/vm_pageout.h>
121
122 #include <kern/task.h>
123 #include <kern/sched_prim.h>
124
125 #define NFS_VNOP_DBG(...) NFS_DBG(NFS_FAC_VNOP, 7, ## __VA_ARGS__)
126 #define DEFAULT_READLINK_NOCACHE 0
127
128 /*
129 * NFS vnode ops
130 */
131 int nfs_vnop_lookup(struct vnop_lookup_args *);
132 int nfsspec_vnop_read(struct vnop_read_args *);
133 int nfsspec_vnop_write(struct vnop_write_args *);
134 int nfsspec_vnop_close(struct vnop_close_args *);
135 #if FIFO
136 int nfsfifo_vnop_read(struct vnop_read_args *);
137 int nfsfifo_vnop_write(struct vnop_write_args *);
138 int nfsfifo_vnop_close(struct vnop_close_args *);
139 #endif
140 int nfs_vnop_ioctl(struct vnop_ioctl_args *);
141 int nfs_vnop_select(struct vnop_select_args *);
142 int nfs_vnop_setattr(struct vnop_setattr_args *);
143 int nfs_vnop_fsync(struct vnop_fsync_args *);
144 int nfs_vnop_rename(struct vnop_rename_args *);
145 int nfs_vnop_readdir(struct vnop_readdir_args *);
146 int nfs_vnop_readlink(struct vnop_readlink_args *);
147 int nfs_vnop_pathconf(struct vnop_pathconf_args *);
148 int nfs_vnop_pagein(struct vnop_pagein_args *);
149 int nfs_vnop_pageout(struct vnop_pageout_args *);
150 int nfs_vnop_blktooff(struct vnop_blktooff_args *);
151 int nfs_vnop_offtoblk(struct vnop_offtoblk_args *);
152 int nfs_vnop_blockmap(struct vnop_blockmap_args *);
153 int nfs_vnop_monitor(struct vnop_monitor_args *);
154
155 int nfs3_vnop_create(struct vnop_create_args *);
156 int nfs3_vnop_mknod(struct vnop_mknod_args *);
157 int nfs3_vnop_getattr(struct vnop_getattr_args *);
158 int nfs3_vnop_link(struct vnop_link_args *);
159 int nfs3_vnop_mkdir(struct vnop_mkdir_args *);
160 int nfs3_vnop_rmdir(struct vnop_rmdir_args *);
161 int nfs3_vnop_symlink(struct vnop_symlink_args *);
162
163
164 vnop_t **nfsv2_vnodeop_p;
165 static const struct vnodeopv_entry_desc nfsv2_vnodeop_entries[] = {
166 { .opve_op = &vnop_default_desc, .opve_impl = (vnop_t *)vn_default_error },
167 { .opve_op = &vnop_lookup_desc, .opve_impl = (vnop_t *)nfs_vnop_lookup }, /* lookup */
168 { .opve_op = &vnop_create_desc, .opve_impl = (vnop_t *)nfs3_vnop_create }, /* create */
169 { .opve_op = &vnop_mknod_desc, .opve_impl = (vnop_t *)nfs3_vnop_mknod }, /* mknod */
170 { .opve_op = &vnop_open_desc, .opve_impl = (vnop_t *)nfs_vnop_open }, /* open */
171 { .opve_op = &vnop_close_desc, .opve_impl = (vnop_t *)nfs_vnop_close }, /* close */
172 { .opve_op = &vnop_access_desc, .opve_impl = (vnop_t *)nfs_vnop_access }, /* access */
173 { .opve_op = &vnop_getattr_desc, .opve_impl = (vnop_t *)nfs3_vnop_getattr }, /* getattr */
174 { .opve_op = &vnop_setattr_desc, .opve_impl = (vnop_t *)nfs_vnop_setattr }, /* setattr */
175 { .opve_op = &vnop_read_desc, .opve_impl = (vnop_t *)nfs_vnop_read }, /* read */
176 { .opve_op = &vnop_write_desc, .opve_impl = (vnop_t *)nfs_vnop_write }, /* write */
177 { .opve_op = &vnop_ioctl_desc, .opve_impl = (vnop_t *)nfs_vnop_ioctl }, /* ioctl */
178 { .opve_op = &vnop_select_desc, .opve_impl = (vnop_t *)nfs_vnop_select }, /* select */
179 { .opve_op = &vnop_revoke_desc, .opve_impl = (vnop_t *)nfs_vnop_revoke }, /* revoke */
180 { .opve_op = &vnop_mmap_desc, .opve_impl = (vnop_t *)nfs_vnop_mmap }, /* mmap */
181 { .opve_op = &vnop_mmap_check_desc, .opve_impl = (vnop_t *)nfs_vnop_mmap_check }, /* mmap_check */
182 { .opve_op = &vnop_mnomap_desc, .opve_impl = (vnop_t *)nfs_vnop_mnomap }, /* mnomap */
183 { .opve_op = &vnop_fsync_desc, .opve_impl = (vnop_t *)nfs_vnop_fsync }, /* fsync */
184 { .opve_op = &vnop_remove_desc, .opve_impl = (vnop_t *)nfs_vnop_remove }, /* remove */
185 { .opve_op = &vnop_link_desc, .opve_impl = (vnop_t *)nfs3_vnop_link }, /* link */
186 { .opve_op = &vnop_rename_desc, .opve_impl = (vnop_t *)nfs_vnop_rename }, /* rename */
187 { .opve_op = &vnop_mkdir_desc, .opve_impl = (vnop_t *)nfs3_vnop_mkdir }, /* mkdir */
188 { .opve_op = &vnop_rmdir_desc, .opve_impl = (vnop_t *)nfs3_vnop_rmdir }, /* rmdir */
189 { .opve_op = &vnop_symlink_desc, .opve_impl = (vnop_t *)nfs3_vnop_symlink }, /* symlink */
190 { .opve_op = &vnop_readdir_desc, .opve_impl = (vnop_t *)nfs_vnop_readdir }, /* readdir */
191 { .opve_op = &vnop_readlink_desc, .opve_impl = (vnop_t *)nfs_vnop_readlink }, /* readlink */
192 { .opve_op = &vnop_inactive_desc, .opve_impl = (vnop_t *)nfs_vnop_inactive }, /* inactive */
193 { .opve_op = &vnop_reclaim_desc, .opve_impl = (vnop_t *)nfs_vnop_reclaim }, /* reclaim */
194 { .opve_op = &vnop_strategy_desc, .opve_impl = (vnop_t *)err_strategy }, /* strategy */
195 { .opve_op = &vnop_pathconf_desc, .opve_impl = (vnop_t *)nfs_vnop_pathconf }, /* pathconf */
196 { .opve_op = &vnop_advlock_desc, .opve_impl = (vnop_t *)nfs_vnop_advlock }, /* advlock */
197 { .opve_op = &vnop_bwrite_desc, .opve_impl = (vnop_t *)err_bwrite }, /* bwrite */
198 { .opve_op = &vnop_pagein_desc, .opve_impl = (vnop_t *)nfs_vnop_pagein }, /* Pagein */
199 { .opve_op = &vnop_pageout_desc, .opve_impl = (vnop_t *)nfs_vnop_pageout }, /* Pageout */
200 { .opve_op = &vnop_copyfile_desc, .opve_impl = (vnop_t *)err_copyfile }, /* Copyfile */
201 { .opve_op = &vnop_blktooff_desc, .opve_impl = (vnop_t *)nfs_vnop_blktooff }, /* blktooff */
202 { .opve_op = &vnop_offtoblk_desc, .opve_impl = (vnop_t *)nfs_vnop_offtoblk }, /* offtoblk */
203 { .opve_op = &vnop_blockmap_desc, .opve_impl = (vnop_t *)nfs_vnop_blockmap }, /* blockmap */
204 { .opve_op = &vnop_monitor_desc, .opve_impl = (vnop_t *)nfs_vnop_monitor }, /* monitor */
205 { .opve_op = NULL, .opve_impl = NULL }
206 };
207 const struct vnodeopv_desc nfsv2_vnodeop_opv_desc =
208 { &nfsv2_vnodeop_p, nfsv2_vnodeop_entries };
209
210
211 #if CONFIG_NFS4
212 vnop_t **nfsv4_vnodeop_p;
213 static const struct vnodeopv_entry_desc nfsv4_vnodeop_entries[] = {
214 { &vnop_default_desc, (vnop_t *)vn_default_error },
215 { &vnop_lookup_desc, (vnop_t *)nfs_vnop_lookup }, /* lookup */
216 { &vnop_create_desc, (vnop_t *)nfs4_vnop_create }, /* create */
217 { &vnop_mknod_desc, (vnop_t *)nfs4_vnop_mknod }, /* mknod */
218 { &vnop_open_desc, (vnop_t *)nfs_vnop_open }, /* open */
219 { &vnop_close_desc, (vnop_t *)nfs_vnop_close }, /* close */
220 { &vnop_access_desc, (vnop_t *)nfs_vnop_access }, /* access */
221 { &vnop_getattr_desc, (vnop_t *)nfs4_vnop_getattr }, /* getattr */
222 { &vnop_setattr_desc, (vnop_t *)nfs_vnop_setattr }, /* setattr */
223 { &vnop_read_desc, (vnop_t *)nfs_vnop_read }, /* read */
224 { &vnop_write_desc, (vnop_t *)nfs_vnop_write }, /* write */
225 { &vnop_ioctl_desc, (vnop_t *)nfs_vnop_ioctl }, /* ioctl */
226 { &vnop_select_desc, (vnop_t *)nfs_vnop_select }, /* select */
227 { &vnop_revoke_desc, (vnop_t *)nfs_vnop_revoke }, /* revoke */
228 { &vnop_mmap_desc, (vnop_t *)nfs_vnop_mmap }, /* mmap */
229 { &vnop_mmap_check_desc, (vnop_t *)nfs_vnop_mmap_check }, /* mmap_check */
230 { &vnop_mnomap_desc, (vnop_t *)nfs_vnop_mnomap }, /* mnomap */
231 { &vnop_fsync_desc, (vnop_t *)nfs_vnop_fsync }, /* fsync */
232 { &vnop_remove_desc, (vnop_t *)nfs_vnop_remove }, /* remove */
233 { &vnop_link_desc, (vnop_t *)nfs4_vnop_link }, /* link */
234 { &vnop_rename_desc, (vnop_t *)nfs_vnop_rename }, /* rename */
235 { &vnop_mkdir_desc, (vnop_t *)nfs4_vnop_mkdir }, /* mkdir */
236 { &vnop_rmdir_desc, (vnop_t *)nfs4_vnop_rmdir }, /* rmdir */
237 { &vnop_symlink_desc, (vnop_t *)nfs4_vnop_symlink }, /* symlink */
238 { &vnop_readdir_desc, (vnop_t *)nfs_vnop_readdir }, /* readdir */
239 { &vnop_readlink_desc, (vnop_t *)nfs_vnop_readlink }, /* readlink */
240 { &vnop_inactive_desc, (vnop_t *)nfs_vnop_inactive }, /* inactive */
241 { &vnop_reclaim_desc, (vnop_t *)nfs_vnop_reclaim }, /* reclaim */
242 { &vnop_strategy_desc, (vnop_t *)err_strategy }, /* strategy */
243 { &vnop_pathconf_desc, (vnop_t *)nfs_vnop_pathconf }, /* pathconf */
244 { &vnop_advlock_desc, (vnop_t *)nfs_vnop_advlock }, /* advlock */
245 { &vnop_bwrite_desc, (vnop_t *)err_bwrite }, /* bwrite */
246 { &vnop_pagein_desc, (vnop_t *)nfs_vnop_pagein }, /* Pagein */
247 { &vnop_pageout_desc, (vnop_t *)nfs_vnop_pageout }, /* Pageout */
248 { &vnop_copyfile_desc, (vnop_t *)err_copyfile }, /* Copyfile */
249 { &vnop_blktooff_desc, (vnop_t *)nfs_vnop_blktooff }, /* blktooff */
250 { &vnop_offtoblk_desc, (vnop_t *)nfs_vnop_offtoblk }, /* offtoblk */
251 { &vnop_blockmap_desc, (vnop_t *)nfs_vnop_blockmap }, /* blockmap */
252 { &vnop_getxattr_desc, (vnop_t *)nfs4_vnop_getxattr }, /* getxattr */
253 { &vnop_setxattr_desc, (vnop_t *)nfs4_vnop_setxattr }, /* setxattr */
254 { &vnop_removexattr_desc, (vnop_t *)nfs4_vnop_removexattr }, /* removexattr */
255 { &vnop_listxattr_desc, (vnop_t *)nfs4_vnop_listxattr }, /* listxattr */
256 #if NAMEDSTREAMS
257 { &vnop_getnamedstream_desc, (vnop_t *)nfs4_vnop_getnamedstream }, /* getnamedstream */
258 { &vnop_makenamedstream_desc, (vnop_t *)nfs4_vnop_makenamedstream }, /* makenamedstream */
259 { &vnop_removenamedstream_desc, (vnop_t *)nfs4_vnop_removenamedstream }, /* removenamedstream */
260 #endif
261 { &vnop_monitor_desc, (vnop_t *)nfs_vnop_monitor }, /* monitor */
262 { NULL, NULL }
263 };
264 const struct vnodeopv_desc nfsv4_vnodeop_opv_desc =
265 { &nfsv4_vnodeop_p, nfsv4_vnodeop_entries };
266 #endif
267
268 /*
269 * Special device vnode ops
270 */
271 vnop_t **spec_nfsv2nodeop_p;
272 static const struct vnodeopv_entry_desc spec_nfsv2nodeop_entries[] = {
273 { &vnop_default_desc, (vnop_t *)vn_default_error },
274 { &vnop_lookup_desc, (vnop_t *)spec_lookup }, /* lookup */
275 { &vnop_create_desc, (vnop_t *)spec_create }, /* create */
276 { &vnop_mknod_desc, (vnop_t *)spec_mknod }, /* mknod */
277 { &vnop_open_desc, (vnop_t *)spec_open }, /* open */
278 { &vnop_close_desc, (vnop_t *)nfsspec_vnop_close }, /* close */
279 { &vnop_getattr_desc, (vnop_t *)nfs3_vnop_getattr }, /* getattr */
280 { &vnop_setattr_desc, (vnop_t *)nfs_vnop_setattr }, /* setattr */
281 { &vnop_read_desc, (vnop_t *)nfsspec_vnop_read }, /* read */
282 { &vnop_write_desc, (vnop_t *)nfsspec_vnop_write }, /* write */
283 { &vnop_ioctl_desc, (vnop_t *)spec_ioctl }, /* ioctl */
284 { &vnop_select_desc, (vnop_t *)spec_select }, /* select */
285 { &vnop_revoke_desc, (vnop_t *)spec_revoke }, /* revoke */
286 { &vnop_mmap_desc, (vnop_t *)spec_mmap }, /* mmap */
287 { &vnop_fsync_desc, (vnop_t *)nfs_vnop_fsync }, /* fsync */
288 { &vnop_remove_desc, (vnop_t *)spec_remove }, /* remove */
289 { &vnop_link_desc, (vnop_t *)spec_link }, /* link */
290 { &vnop_rename_desc, (vnop_t *)spec_rename }, /* rename */
291 { &vnop_mkdir_desc, (vnop_t *)spec_mkdir }, /* mkdir */
292 { &vnop_rmdir_desc, (vnop_t *)spec_rmdir }, /* rmdir */
293 { &vnop_symlink_desc, (vnop_t *)spec_symlink }, /* symlink */
294 { &vnop_readdir_desc, (vnop_t *)spec_readdir }, /* readdir */
295 { &vnop_readlink_desc, (vnop_t *)spec_readlink }, /* readlink */
296 { &vnop_inactive_desc, (vnop_t *)nfs_vnop_inactive }, /* inactive */
297 { &vnop_reclaim_desc, (vnop_t *)nfs_vnop_reclaim }, /* reclaim */
298 { &vnop_strategy_desc, (vnop_t *)spec_strategy }, /* strategy */
299 { &vnop_pathconf_desc, (vnop_t *)spec_pathconf }, /* pathconf */
300 { &vnop_advlock_desc, (vnop_t *)spec_advlock }, /* advlock */
301 { &vnop_bwrite_desc, (vnop_t *)vn_bwrite }, /* bwrite */
302 { &vnop_pagein_desc, (vnop_t *)nfs_vnop_pagein }, /* Pagein */
303 { &vnop_pageout_desc, (vnop_t *)nfs_vnop_pageout }, /* Pageout */
304 { &vnop_blktooff_desc, (vnop_t *)nfs_vnop_blktooff }, /* blktooff */
305 { &vnop_offtoblk_desc, (vnop_t *)nfs_vnop_offtoblk }, /* offtoblk */
306 { &vnop_blockmap_desc, (vnop_t *)nfs_vnop_blockmap }, /* blockmap */
307 { &vnop_monitor_desc, (vnop_t *)nfs_vnop_monitor }, /* monitor */
308 { NULL, NULL }
309 };
310 const struct vnodeopv_desc spec_nfsv2nodeop_opv_desc =
311 { &spec_nfsv2nodeop_p, spec_nfsv2nodeop_entries };
312 #if CONFIG_NFS4
313 vnop_t **spec_nfsv4nodeop_p;
314 static const struct vnodeopv_entry_desc spec_nfsv4nodeop_entries[] = {
315 { &vnop_default_desc, (vnop_t *)vn_default_error },
316 { &vnop_lookup_desc, (vnop_t *)spec_lookup }, /* lookup */
317 { &vnop_create_desc, (vnop_t *)spec_create }, /* create */
318 { &vnop_mknod_desc, (vnop_t *)spec_mknod }, /* mknod */
319 { &vnop_open_desc, (vnop_t *)spec_open }, /* open */
320 { &vnop_close_desc, (vnop_t *)nfsspec_vnop_close }, /* close */
321 { &vnop_getattr_desc, (vnop_t *)nfs4_vnop_getattr }, /* getattr */
322 { &vnop_setattr_desc, (vnop_t *)nfs_vnop_setattr }, /* setattr */
323 { &vnop_read_desc, (vnop_t *)nfsspec_vnop_read }, /* read */
324 { &vnop_write_desc, (vnop_t *)nfsspec_vnop_write }, /* write */
325 { &vnop_ioctl_desc, (vnop_t *)spec_ioctl }, /* ioctl */
326 { &vnop_select_desc, (vnop_t *)spec_select }, /* select */
327 { &vnop_revoke_desc, (vnop_t *)spec_revoke }, /* revoke */
328 { &vnop_mmap_desc, (vnop_t *)spec_mmap }, /* mmap */
329 { &vnop_fsync_desc, (vnop_t *)nfs_vnop_fsync }, /* fsync */
330 { &vnop_remove_desc, (vnop_t *)spec_remove }, /* remove */
331 { &vnop_link_desc, (vnop_t *)spec_link }, /* link */
332 { &vnop_rename_desc, (vnop_t *)spec_rename }, /* rename */
333 { &vnop_mkdir_desc, (vnop_t *)spec_mkdir }, /* mkdir */
334 { &vnop_rmdir_desc, (vnop_t *)spec_rmdir }, /* rmdir */
335 { &vnop_symlink_desc, (vnop_t *)spec_symlink }, /* symlink */
336 { &vnop_readdir_desc, (vnop_t *)spec_readdir }, /* readdir */
337 { &vnop_readlink_desc, (vnop_t *)spec_readlink }, /* readlink */
338 { &vnop_inactive_desc, (vnop_t *)nfs_vnop_inactive }, /* inactive */
339 { &vnop_reclaim_desc, (vnop_t *)nfs_vnop_reclaim }, /* reclaim */
340 { &vnop_strategy_desc, (vnop_t *)spec_strategy }, /* strategy */
341 { &vnop_pathconf_desc, (vnop_t *)spec_pathconf }, /* pathconf */
342 { &vnop_advlock_desc, (vnop_t *)spec_advlock }, /* advlock */
343 { &vnop_bwrite_desc, (vnop_t *)vn_bwrite }, /* bwrite */
344 { &vnop_pagein_desc, (vnop_t *)nfs_vnop_pagein }, /* Pagein */
345 { &vnop_pageout_desc, (vnop_t *)nfs_vnop_pageout }, /* Pageout */
346 { &vnop_blktooff_desc, (vnop_t *)nfs_vnop_blktooff }, /* blktooff */
347 { &vnop_offtoblk_desc, (vnop_t *)nfs_vnop_offtoblk }, /* offtoblk */
348 { &vnop_blockmap_desc, (vnop_t *)nfs_vnop_blockmap }, /* blockmap */
349 { &vnop_getxattr_desc, (vnop_t *)nfs4_vnop_getxattr }, /* getxattr */
350 { &vnop_setxattr_desc, (vnop_t *)nfs4_vnop_setxattr }, /* setxattr */
351 { &vnop_removexattr_desc, (vnop_t *)nfs4_vnop_removexattr },/* removexattr */
352 { &vnop_listxattr_desc, (vnop_t *)nfs4_vnop_listxattr },/* listxattr */
353 #if NAMEDSTREAMS
354 { &vnop_getnamedstream_desc, (vnop_t *)nfs4_vnop_getnamedstream }, /* getnamedstream */
355 { &vnop_makenamedstream_desc, (vnop_t *)nfs4_vnop_makenamedstream }, /* makenamedstream */
356 { &vnop_removenamedstream_desc, (vnop_t *)nfs4_vnop_removenamedstream },/* removenamedstream */
357 #endif
358 { &vnop_monitor_desc, (vnop_t *)nfs_vnop_monitor }, /* monitor */
359 { NULL, NULL }
360 };
361 const struct vnodeopv_desc spec_nfsv4nodeop_opv_desc =
362 { &spec_nfsv4nodeop_p, spec_nfsv4nodeop_entries };
363 #endif /* CONFIG_NFS4 */
364
365 #if FIFO
366 vnop_t **fifo_nfsv2nodeop_p;
367 static const struct vnodeopv_entry_desc fifo_nfsv2nodeop_entries[] = {
368 { &vnop_default_desc, (vnop_t *)vn_default_error },
369 { &vnop_lookup_desc, (vnop_t *)fifo_lookup }, /* lookup */
370 { &vnop_create_desc, (vnop_t *)fifo_create }, /* create */
371 { &vnop_mknod_desc, (vnop_t *)fifo_mknod }, /* mknod */
372 { &vnop_open_desc, (vnop_t *)fifo_open }, /* open */
373 { &vnop_close_desc, (vnop_t *)nfsfifo_vnop_close }, /* close */
374 { &vnop_getattr_desc, (vnop_t *)nfs3_vnop_getattr }, /* getattr */
375 { &vnop_setattr_desc, (vnop_t *)nfs_vnop_setattr }, /* setattr */
376 { &vnop_read_desc, (vnop_t *)nfsfifo_vnop_read }, /* read */
377 { &vnop_write_desc, (vnop_t *)nfsfifo_vnop_write }, /* write */
378 { &vnop_ioctl_desc, (vnop_t *)fifo_ioctl }, /* ioctl */
379 { &vnop_select_desc, (vnop_t *)fifo_select }, /* select */
380 { &vnop_revoke_desc, (vnop_t *)fifo_revoke }, /* revoke */
381 { &vnop_mmap_desc, (vnop_t *)fifo_mmap }, /* mmap */
382 { &vnop_fsync_desc, (vnop_t *)nfs_vnop_fsync }, /* fsync */
383 { &vnop_remove_desc, (vnop_t *)fifo_remove }, /* remove */
384 { &vnop_link_desc, (vnop_t *)fifo_link }, /* link */
385 { &vnop_rename_desc, (vnop_t *)fifo_rename }, /* rename */
386 { &vnop_mkdir_desc, (vnop_t *)fifo_mkdir }, /* mkdir */
387 { &vnop_rmdir_desc, (vnop_t *)fifo_rmdir }, /* rmdir */
388 { &vnop_symlink_desc, (vnop_t *)fifo_symlink }, /* symlink */
389 { &vnop_readdir_desc, (vnop_t *)fifo_readdir }, /* readdir */
390 { &vnop_readlink_desc, (vnop_t *)fifo_readlink }, /* readlink */
391 { &vnop_inactive_desc, (vnop_t *)nfs_vnop_inactive }, /* inactive */
392 { &vnop_reclaim_desc, (vnop_t *)nfs_vnop_reclaim }, /* reclaim */
393 { &vnop_strategy_desc, (vnop_t *)fifo_strategy }, /* strategy */
394 { &vnop_pathconf_desc, (vnop_t *)fifo_pathconf }, /* pathconf */
395 { &vnop_advlock_desc, (vnop_t *)fifo_advlock }, /* advlock */
396 { &vnop_bwrite_desc, (vnop_t *)vn_bwrite }, /* bwrite */
397 { &vnop_pagein_desc, (vnop_t *)nfs_vnop_pagein }, /* Pagein */
398 { &vnop_pageout_desc, (vnop_t *)nfs_vnop_pageout }, /* Pageout */
399 { &vnop_blktooff_desc, (vnop_t *)nfs_vnop_blktooff }, /* blktooff */
400 { &vnop_offtoblk_desc, (vnop_t *)nfs_vnop_offtoblk }, /* offtoblk */
401 { &vnop_blockmap_desc, (vnop_t *)nfs_vnop_blockmap }, /* blockmap */
402 { &vnop_monitor_desc, (vnop_t *)nfs_vnop_monitor }, /* monitor */
403 { NULL, NULL }
404 };
405 const struct vnodeopv_desc fifo_nfsv2nodeop_opv_desc =
406 { &fifo_nfsv2nodeop_p, fifo_nfsv2nodeop_entries };
407 #endif
408
409 #if CONFIG_NFS4
410 #if FIFO
411 vnop_t **fifo_nfsv4nodeop_p;
412 static const struct vnodeopv_entry_desc fifo_nfsv4nodeop_entries[] = {
413 { &vnop_default_desc, (vnop_t *)vn_default_error },
414 { &vnop_lookup_desc, (vnop_t *)fifo_lookup }, /* lookup */
415 { &vnop_create_desc, (vnop_t *)fifo_create }, /* create */
416 { &vnop_mknod_desc, (vnop_t *)fifo_mknod }, /* mknod */
417 { &vnop_open_desc, (vnop_t *)fifo_open }, /* open */
418 { &vnop_close_desc, (vnop_t *)nfsfifo_vnop_close }, /* close */
419 { &vnop_getattr_desc, (vnop_t *)nfs4_vnop_getattr }, /* getattr */
420 { &vnop_setattr_desc, (vnop_t *)nfs_vnop_setattr }, /* setattr */
421 { &vnop_read_desc, (vnop_t *)nfsfifo_vnop_read }, /* read */
422 { &vnop_write_desc, (vnop_t *)nfsfifo_vnop_write }, /* write */
423 { &vnop_ioctl_desc, (vnop_t *)fifo_ioctl }, /* ioctl */
424 { &vnop_select_desc, (vnop_t *)fifo_select }, /* select */
425 { &vnop_revoke_desc, (vnop_t *)fifo_revoke }, /* revoke */
426 { &vnop_mmap_desc, (vnop_t *)fifo_mmap }, /* mmap */
427 { &vnop_fsync_desc, (vnop_t *)nfs_vnop_fsync }, /* fsync */
428 { &vnop_remove_desc, (vnop_t *)fifo_remove }, /* remove */
429 { &vnop_link_desc, (vnop_t *)fifo_link }, /* link */
430 { &vnop_rename_desc, (vnop_t *)fifo_rename }, /* rename */
431 { &vnop_mkdir_desc, (vnop_t *)fifo_mkdir }, /* mkdir */
432 { &vnop_rmdir_desc, (vnop_t *)fifo_rmdir }, /* rmdir */
433 { &vnop_symlink_desc, (vnop_t *)fifo_symlink }, /* symlink */
434 { &vnop_readdir_desc, (vnop_t *)fifo_readdir }, /* readdir */
435 { &vnop_readlink_desc, (vnop_t *)fifo_readlink }, /* readlink */
436 { &vnop_inactive_desc, (vnop_t *)nfs_vnop_inactive }, /* inactive */
437 { &vnop_reclaim_desc, (vnop_t *)nfs_vnop_reclaim }, /* reclaim */
438 { &vnop_strategy_desc, (vnop_t *)fifo_strategy }, /* strategy */
439 { &vnop_pathconf_desc, (vnop_t *)fifo_pathconf }, /* pathconf */
440 { &vnop_advlock_desc, (vnop_t *)fifo_advlock }, /* advlock */
441 { &vnop_bwrite_desc, (vnop_t *)vn_bwrite }, /* bwrite */
442 { &vnop_pagein_desc, (vnop_t *)nfs_vnop_pagein }, /* Pagein */
443 { &vnop_pageout_desc, (vnop_t *)nfs_vnop_pageout }, /* Pageout */
444 { &vnop_blktooff_desc, (vnop_t *)nfs_vnop_blktooff }, /* blktooff */
445 { &vnop_offtoblk_desc, (vnop_t *)nfs_vnop_offtoblk }, /* offtoblk */
446 { &vnop_blockmap_desc, (vnop_t *)nfs_vnop_blockmap }, /* blockmap */
447 { &vnop_getxattr_desc, (vnop_t *)nfs4_vnop_getxattr }, /* getxattr */
448 { &vnop_setxattr_desc, (vnop_t *)nfs4_vnop_setxattr }, /* setxattr */
449 { &vnop_removexattr_desc, (vnop_t *)nfs4_vnop_removexattr },/* removexattr */
450 { &vnop_listxattr_desc, (vnop_t *)nfs4_vnop_listxattr },/* listxattr */
451 #if NAMEDSTREAMS
452 { &vnop_getnamedstream_desc, (vnop_t *)nfs4_vnop_getnamedstream }, /* getnamedstream */
453 { &vnop_makenamedstream_desc, (vnop_t *)nfs4_vnop_makenamedstream }, /* makenamedstream */
454 { &vnop_removenamedstream_desc, (vnop_t *)nfs4_vnop_removenamedstream },/* removenamedstream */
455 #endif
456 { &vnop_monitor_desc, (vnop_t *)nfs_vnop_monitor }, /* monitor */
457 { NULL, NULL }
458 };
459 const struct vnodeopv_desc fifo_nfsv4nodeop_opv_desc =
460 { &fifo_nfsv4nodeop_p, fifo_nfsv4nodeop_entries };
461 #endif /* FIFO */
462 #endif /* CONFIG_NFS4 */
463
464 int nfs_sillyrename(nfsnode_t, nfsnode_t, struct componentname *, vfs_context_t);
465 int nfs_getattr_internal(nfsnode_t, struct nfs_vattr *, vfs_context_t, int);
466 int nfs_refresh_fh(nfsnode_t, vfs_context_t);
467
468
469 ZONE_VIEW_DEFINE(ZV_NFSDIROFF, "NFSV3 diroff",
470 KHEAP_ID_DATA_BUFFERS, sizeof(struct nfsdmap));
471
472 static void
473 nfs_dir_buf_cache_lookup_boundaries(struct nfsbuf *bp, int *sof, int *eof)
474 {
475 if (bp) {
476 struct nfs_dir_buf_header *ndbhp = (struct nfs_dir_buf_header*)bp->nb_data;
477 if (sof && bp->nb_lblkno == 0) {
478 *sof = 1;
479 }
480 if (eof && ISSET(ndbhp->ndbh_flags, NDB_EOF)) {
481 *eof = 1;
482 }
483 }
484 }
485
486 /*
487 * Update nfsnode attributes to avoid extra getattr calls for each direntry.
488 * This function should be called only if RDIRPLUS flag is enabled.
489 */
490 void
491 nfs_rdirplus_update_node_attrs(nfsnode_t dnp, struct direntry *dp, fhandle_t *fhp, struct nfs_vattr *nvattrp, uint64_t *savedxidp)
492 {
493 nfsnode_t np;
494 struct componentname cn;
495 int isdot = (dp->d_namlen == 1) && (dp->d_name[0] == '.');
496 int isdotdot = (dp->d_namlen == 2) && (dp->d_name[0] == '.') && (dp->d_name[1] == '.');
497 int should_update_fileid = nvattrp->nva_flags & NFS_FFLAG_FILEID_CONTAINS_XID;
498 uint64_t xid = 0;
499
500 if (isdot || isdotdot) {
501 return;
502 }
503
504 np = NULL;
505 bzero(&cn, sizeof(cn));
506 cn.cn_nameptr = dp->d_name;
507 cn.cn_namelen = dp->d_namlen;
508 cn.cn_nameiop = LOOKUP;
509
510 /* xid might be stashed in nva_fileid is rdirplus is enabled */
511 if (should_update_fileid) {
512 xid = nvattrp->nva_fileid;
513 nvattrp->nva_fileid = dp->d_fileno;
514 }
515 nfs_nget(NFSTOMP(dnp), dnp, &cn, fhp->fh_data, fhp->fh_len, nvattrp, savedxidp, RPCAUTH_UNKNOWN, NG_NOCREATE, &np);
516 if (should_update_fileid) {
517 nvattrp->nva_fileid = xid;
518 }
519 if (np) {
520 nfs_node_unlock(np);
521 vnode_put(NFSTOV(np));
522 }
523 }
524
525 /*
526 * Find the slot in the access cache for this UID.
527 * If adding and no existing slot is found, reuse slots in FIFO order.
528 * The index of the next slot to use is kept in the last entry of the n_access array.
529 */
530 int
531 nfs_node_access_slot(nfsnode_t np, uid_t uid, int add)
532 {
533 int slot;
534
535 for (slot = 0; slot < NFS_ACCESS_CACHE_SIZE; slot++) {
536 if (np->n_accessuid[slot] == uid) {
537 break;
538 }
539 }
540 if (slot == NFS_ACCESS_CACHE_SIZE) {
541 if (!add) {
542 return -1;
543 }
544 slot = np->n_access[NFS_ACCESS_CACHE_SIZE];
545 np->n_access[NFS_ACCESS_CACHE_SIZE] = (slot + 1) % NFS_ACCESS_CACHE_SIZE;
546 }
547 return slot;
548 }
549
550 int
551 nfs3_access_rpc(nfsnode_t np, u_int32_t *access, int rpcflags, vfs_context_t ctx)
552 {
553 int error = 0, lockerror = ENOENT, status = 0, slot;
554 uint32_t access_result = 0;
555 u_int64_t xid;
556 struct nfsm_chain nmreq, nmrep;
557 struct nfsmount *nmp;
558 struct timeval now;
559 uid_t uid;
560
561 nfsm_chain_null(&nmreq);
562 nfsm_chain_null(&nmrep);
563
564 nfsm_chain_build_alloc_init(error, &nmreq, NFSX_FH(NFS_VER3) + NFSX_UNSIGNED);
565 nfsm_chain_add_fh(error, &nmreq, NFS_VER3, np->n_fhp, np->n_fhsize);
566 nfsm_chain_add_32(error, &nmreq, *access);
567 nfsm_chain_build_done(error, &nmreq);
568 nfsmout_if(error);
569 error = nfs_request2(np, NULL, &nmreq, NFSPROC_ACCESS,
570 vfs_context_thread(ctx), vfs_context_ucred(ctx),
571 NULL, rpcflags, &nmrep, &xid, &status);
572 if ((lockerror = nfs_node_lock(np))) {
573 error = lockerror;
574 }
575 nfsm_chain_postop_attr_update(error, &nmrep, np, &xid);
576 if (!error) {
577 error = status;
578 }
579 nfsm_chain_get_32(error, &nmrep, access_result);
580 nfsmout_if(error);
581
582 /* XXXab do we really need mount here, also why are we doing access cache management here? */
583 nmp = NFSTONMP(np);
584 if (nfs_mount_gone(nmp)) {
585 error = ENXIO;
586 }
587 nfsmout_if(error);
588
589 #if CONFIG_NFS_GSS
590 if (auth_is_kerberized(np->n_auth) || auth_is_kerberized(nmp->nm_auth)) {
591 uid = nfs_cred_getasid2uid(vfs_context_ucred(ctx));
592 } else {
593 uid = kauth_cred_getuid(vfs_context_ucred(ctx));
594 }
595 #else
596 uid = kauth_cred_getuid(vfs_context_ucred(ctx));
597 #endif /* CONFIG_NFS_GSS */
598 slot = nfs_node_access_slot(np, uid, 1);
599 np->n_accessuid[slot] = uid;
600 microuptime(&now);
601 np->n_accessstamp[slot] = now.tv_sec;
602 np->n_access[slot] = access_result;
603
604 /*
605 * If we asked for DELETE but didn't get it, the server
606 * may simply not support returning that bit (possible
607 * on UNIX systems). So, we'll assume that it is OK,
608 * and just let any subsequent delete action fail if it
609 * really isn't deletable.
610 */
611 if ((*access & NFS_ACCESS_DELETE) &&
612 !(np->n_access[slot] & NFS_ACCESS_DELETE)) {
613 np->n_access[slot] |= NFS_ACCESS_DELETE;
614 }
615 /* ".zfs" subdirectories may erroneously give a denied answer for add/remove */
616 if (nfs_access_dotzfs && (np->n_flag & NISDOTZFSCHILD)) {
617 np->n_access[slot] |= (NFS_ACCESS_MODIFY | NFS_ACCESS_EXTEND | NFS_ACCESS_DELETE);
618 }
619 /* pass back the access returned with this request */
620 *access = np->n_access[slot];
621 nfsmout:
622 if (!lockerror) {
623 nfs_node_unlock(np);
624 }
625 nfsm_chain_cleanup(&nmreq);
626 nfsm_chain_cleanup(&nmrep);
627 return error;
628 }
629
630
631 /*
632 * NFS access vnode op.
633 * For NFS version 2, just return ok. File accesses may fail later.
634 * For NFS version 3+, use the access RPC to check accessibility. If file
635 * permissions are changed on the server, accesses might still fail later.
636 */
637 int
638 nfs_vnop_access(
639 struct vnop_access_args /* {
640 * struct vnodeop_desc *a_desc;
641 * vnode_t a_vp;
642 * int a_action;
643 * vfs_context_t a_context;
644 * } */*ap)
645 {
646 vfs_context_t ctx = ap->a_context;
647 vnode_t vp = ap->a_vp;
648 int error = 0, slot, dorpc, rpcflags = 0;
649 u_int32_t access, waccess;
650 nfsnode_t np = VTONFS(vp);
651 struct nfsmount *nmp;
652 int nfsvers;
653 struct timeval now;
654 uid_t uid;
655
656 nmp = VTONMP(vp);
657 if (nfs_mount_gone(nmp)) {
658 return ENXIO;
659 }
660 nfsvers = nmp->nm_vers;
661
662
663 if (nfsvers == NFS_VER2 || NMFLAG(nmp, NOOPAQUE_AUTH)) {
664 if ((ap->a_action & KAUTH_VNODE_WRITE_RIGHTS) &&
665 vfs_isrdonly(vnode_mount(vp))) {
666 return EROFS;
667 }
668 return 0;
669 }
670
671 /*
672 * For NFS v3, do an access rpc, otherwise you are stuck emulating
673 * ufs_access() locally using the vattr. This may not be correct,
674 * since the server may apply other access criteria such as
675 * client uid-->server uid mapping that we do not know about, but
676 * this is better than just returning anything that is lying about
677 * in the cache.
678 */
679
680 /*
681 * Convert KAUTH primitives to NFS access rights.
682 */
683 access = 0;
684 if (vnode_isdir(vp)) {
685 /* directory */
686 if (ap->a_action &
687 (KAUTH_VNODE_LIST_DIRECTORY |
688 KAUTH_VNODE_READ_EXTATTRIBUTES)) {
689 access |= NFS_ACCESS_READ;
690 }
691 if (ap->a_action & KAUTH_VNODE_SEARCH) {
692 access |= NFS_ACCESS_LOOKUP;
693 }
694 if (ap->a_action &
695 (KAUTH_VNODE_ADD_FILE |
696 KAUTH_VNODE_ADD_SUBDIRECTORY)) {
697 access |= NFS_ACCESS_MODIFY | NFS_ACCESS_EXTEND;
698 }
699 if (ap->a_action & KAUTH_VNODE_DELETE_CHILD) {
700 access |= NFS_ACCESS_MODIFY;
701 }
702 } else {
703 /* file */
704 if (ap->a_action &
705 (KAUTH_VNODE_READ_DATA |
706 KAUTH_VNODE_READ_EXTATTRIBUTES)) {
707 access |= NFS_ACCESS_READ;
708 }
709 if (ap->a_action & KAUTH_VNODE_WRITE_DATA) {
710 access |= NFS_ACCESS_MODIFY | NFS_ACCESS_EXTEND;
711 }
712 if (ap->a_action & KAUTH_VNODE_APPEND_DATA) {
713 access |= NFS_ACCESS_EXTEND;
714 }
715 if (ap->a_action & KAUTH_VNODE_EXECUTE) {
716 access |= NFS_ACCESS_EXECUTE;
717 }
718 }
719 /* common */
720 if (ap->a_action & KAUTH_VNODE_DELETE) {
721 access |= NFS_ACCESS_DELETE;
722 }
723 if (ap->a_action &
724 (KAUTH_VNODE_WRITE_ATTRIBUTES |
725 KAUTH_VNODE_WRITE_EXTATTRIBUTES |
726 KAUTH_VNODE_WRITE_SECURITY)) {
727 access |= NFS_ACCESS_MODIFY;
728 }
729 /* XXX this is pretty dubious */
730 if (ap->a_action & KAUTH_VNODE_CHANGE_OWNER) {
731 access |= NFS_ACCESS_MODIFY;
732 }
733
734 /* if caching, always ask for every right */
735 if (nfs_access_cache_timeout > 0) {
736 waccess = NFS_ACCESS_READ | NFS_ACCESS_MODIFY |
737 NFS_ACCESS_EXTEND | NFS_ACCESS_EXECUTE |
738 NFS_ACCESS_DELETE | NFS_ACCESS_LOOKUP;
739 } else {
740 waccess = access;
741 }
742
743 if ((error = nfs_node_lock(np))) {
744 return error;
745 }
746
747 /*
748 * Does our cached result allow us to give a definite yes to
749 * this request?
750 */
751 #if CONFIG_NFS_GSS
752 if (auth_is_kerberized(np->n_auth) || auth_is_kerberized(nmp->nm_auth)) {
753 uid = nfs_cred_getasid2uid(vfs_context_ucred(ctx));
754 } else {
755 uid = kauth_cred_getuid(vfs_context_ucred(ctx));
756 }
757 #else
758 uid = kauth_cred_getuid(vfs_context_ucred(ctx));
759 #endif /* CONFIG_NFS_GSS */
760 slot = nfs_node_access_slot(np, uid, 0);
761 dorpc = 1;
762 if (access == 0) {
763 /* not asking for any rights understood by NFS, so don't bother doing an RPC */
764 /* OSAddAtomic(1, &nfsstats.accesscache_hits); */
765 dorpc = 0;
766 waccess = 0;
767 } else if (NACCESSVALID(np, slot)) {
768 microuptime(&now);
769 if (((now.tv_sec < (np->n_accessstamp[slot] + nfs_access_cache_timeout)) &&
770 ((np->n_access[slot] & access) == access)) || nfs_use_cache(nmp)) {
771 /* OSAddAtomic(1, &nfsstats.accesscache_hits); */
772 dorpc = 0;
773 waccess = np->n_access[slot];
774 }
775 }
776 nfs_node_unlock(np);
777 if (dorpc) {
778 /* Either a no, or a don't know. Go to the wire. */
779 /* OSAddAtomic(1, &nfsstats.accesscache_misses); */
780
781 /*
782 * Allow an access call to timeout if we have it cached
783 * so we won't hang if the server isn't responding.
784 */
785 if (NACCESSVALID(np, slot)) {
786 rpcflags |= R_SOFT;
787 }
788
789 error = nmp->nm_funcs->nf_access_rpc(np, &waccess, rpcflags, ctx);
790
791 /*
792 * If the server didn't respond return the cached access.
793 */
794 if ((error == ETIMEDOUT) && (rpcflags & R_SOFT)) {
795 error = 0;
796 waccess = np->n_access[slot];
797 }
798 }
799 if (!error && ((waccess & access) != access)) {
800 error = EACCES;
801 }
802
803 return error;
804 }
805
806
807 /*
808 * NFS open vnode op
809 *
810 * Perform various update/invalidation checks and then add the
811 * open to the node. Regular files will have an open file structure
812 * on the node and, for NFSv4, perform an OPEN request on the server.
813 */
814 int
815 nfs_vnop_open(
816 struct vnop_open_args /* {
817 * struct vnodeop_desc *a_desc;
818 * vnode_t a_vp;
819 * int a_mode;
820 * vfs_context_t a_context;
821 * } */*ap)
822 {
823 vfs_context_t ctx = ap->a_context;
824 vnode_t vp = ap->a_vp;
825 nfsnode_t np = VTONFS(vp);
826 struct nfsmount *nmp;
827 int error, accessMode, denyMode, opened = 0;
828 struct nfs_open_owner *noop = NULL;
829 struct nfs_open_file *nofp = NULL;
830 enum vtype vtype;
831
832 if (!(ap->a_mode & (FREAD | FWRITE))) {
833 return EINVAL;
834 }
835
836 nmp = VTONMP(vp);
837 if (nfs_mount_gone(nmp)) {
838 return ENXIO;
839 }
840 if (np->n_flag & NREVOKE) {
841 return EIO;
842 }
843
844 vtype = vnode_vtype(vp);
845 if ((vtype != VREG) && (vtype != VDIR) && (vtype != VLNK)) {
846 return EACCES;
847 }
848
849 /* First, check if we need to update/invalidate */
850 if (ISSET(np->n_flag, NUPDATESIZE)) {
851 nfs_data_update_size(np, 0);
852 }
853 if ((error = nfs_node_lock(np))) {
854 return error;
855 }
856 if (np->n_flag & NNEEDINVALIDATE) {
857 np->n_flag &= ~NNEEDINVALIDATE;
858 if (vtype == VDIR) {
859 nfs_invaldir(np);
860 }
861 nfs_node_unlock(np);
862 nfs_vinvalbuf(vp, V_SAVE | V_IGNORE_WRITEERR, ctx, 1);
863 if ((error = nfs_node_lock(np))) {
864 return error;
865 }
866 }
867 if (vtype == VREG) {
868 np->n_lastrahead = -1;
869 }
870 if (np->n_flag & NMODIFIED) {
871 if (vtype == VDIR) {
872 nfs_invaldir(np);
873 }
874 nfs_node_unlock(np);
875 if ((error = nfs_vinvalbuf(vp, V_SAVE | V_IGNORE_WRITEERR, ctx, 1))) {
876 return error;
877 }
878 } else {
879 nfs_node_unlock(np);
880 }
881
882 /* nfs_getattr() will check changed and purge caches */
883 if ((error = nfs_getattr(np, NULL, ctx, NGA_UNCACHED))) {
884 return error;
885 }
886
887 if (vtype != VREG) {
888 /* Just mark that it was opened */
889 lck_mtx_lock(&np->n_openlock);
890 np->n_openrefcnt++;
891 lck_mtx_unlock(&np->n_openlock);
892 return 0;
893 }
894
895 /* mode contains some combination of: FREAD, FWRITE, O_SHLOCK, O_EXLOCK */
896 accessMode = 0;
897 if (ap->a_mode & FREAD) {
898 accessMode |= NFS_OPEN_SHARE_ACCESS_READ;
899 }
900 if (ap->a_mode & FWRITE) {
901 accessMode |= NFS_OPEN_SHARE_ACCESS_WRITE;
902 }
903 if (ap->a_mode & O_EXLOCK) {
904 denyMode = NFS_OPEN_SHARE_DENY_BOTH;
905 } else if (ap->a_mode & O_SHLOCK) {
906 denyMode = NFS_OPEN_SHARE_DENY_WRITE;
907 } else {
908 denyMode = NFS_OPEN_SHARE_DENY_NONE;
909 }
910 // XXX don't do deny modes just yet (and never do it for !v4)
911 denyMode = NFS_OPEN_SHARE_DENY_NONE;
912
913 noop = nfs_open_owner_find(nmp, vfs_context_ucred(ctx), 1);
914 if (!noop) {
915 return ENOMEM;
916 }
917
918 restart:
919 error = nfs_mount_state_in_use_start(nmp, vfs_context_thread(ctx));
920 if (error) {
921 nfs_open_owner_rele(noop);
922 return error;
923 }
924 if (np->n_flag & NREVOKE) {
925 error = EIO;
926 nfs_mount_state_in_use_end(nmp, 0);
927 nfs_open_owner_rele(noop);
928 return error;
929 }
930
931 error = nfs_open_file_find(np, noop, &nofp, accessMode, denyMode, 1);
932 if (!error && (nofp->nof_flags & NFS_OPEN_FILE_LOST)) {
933 NP(np, "nfs_vnop_open: LOST %d", kauth_cred_getuid(nofp->nof_owner->noo_cred));
934 error = EIO;
935 }
936 #if CONFIG_NFS4
937 if (!error && (nofp->nof_flags & NFS_OPEN_FILE_REOPEN)) {
938 error = nfs4_reopen(nofp, vfs_context_thread(ctx));
939 nofp = NULL;
940 if (!error) {
941 nfs_mount_state_in_use_end(nmp, 0);
942 goto restart;
943 }
944 }
945 #endif
946 if (!error) {
947 error = nfs_open_file_set_busy(nofp, vfs_context_thread(ctx));
948 }
949 if (error) {
950 nofp = NULL;
951 goto out;
952 }
953
954 if (nmp->nm_vers < NFS_VER4) {
955 /*
956 * NFS v2/v3 opens are always allowed - so just add it.
957 */
958 nfs_open_file_add_open(nofp, accessMode, denyMode, 0);
959 goto out;
960 }
961
962 /*
963 * If we just created the file and the modes match, then we simply use
964 * the open performed in the create. Otherwise, send the request.
965 */
966 if ((nofp->nof_flags & NFS_OPEN_FILE_CREATE) &&
967 (nofp->nof_creator == current_thread()) &&
968 (accessMode == NFS_OPEN_SHARE_ACCESS_BOTH) &&
969 (denyMode == NFS_OPEN_SHARE_DENY_NONE)) {
970 nofp->nof_flags &= ~NFS_OPEN_FILE_CREATE;
971 nofp->nof_creator = NULL;
972 } else {
973 #if CONFIG_NFS4
974 if (!opened) {
975 error = nfs4_open(np, nofp, accessMode, denyMode, ctx);
976 }
977 #endif
978 if ((error == EACCES) && (nofp->nof_flags & NFS_OPEN_FILE_CREATE) &&
979 (nofp->nof_creator == current_thread())) {
980 /*
981 * Ugh. This can happen if we just created the file with read-only
982 * perms and we're trying to open it for real with different modes
983 * (e.g. write-only or with a deny mode) and the server decides to
984 * not allow the second open because of the read-only perms.
985 * The best we can do is to just use the create's open.
986 * We may have access we don't need or we may not have a requested
987 * deny mode. We may log complaints later, but we'll try to avoid it.
988 */
989 if (denyMode != NFS_OPEN_SHARE_DENY_NONE) {
990 NP(np, "nfs_vnop_open: deny mode foregone on create, %d", kauth_cred_getuid(nofp->nof_owner->noo_cred));
991 }
992 nofp->nof_creator = NULL;
993 error = 0;
994 }
995 if (error) {
996 goto out;
997 }
998 opened = 1;
999 /*
1000 * If we had just created the file, we already had it open.
1001 * If the actual open mode is less than what we grabbed at
1002 * create time, then we'll downgrade the open here.
1003 */
1004 if ((nofp->nof_flags & NFS_OPEN_FILE_CREATE) &&
1005 (nofp->nof_creator == current_thread())) {
1006 error = nfs_close(np, nofp, NFS_OPEN_SHARE_ACCESS_BOTH, NFS_OPEN_SHARE_DENY_NONE, ctx);
1007 if (error) {
1008 NP(np, "nfs_vnop_open: create close error %d, %d", error, kauth_cred_getuid(nofp->nof_owner->noo_cred));
1009 }
1010 if (!nfs_mount_state_error_should_restart(error)) {
1011 error = 0;
1012 nofp->nof_flags &= ~NFS_OPEN_FILE_CREATE;
1013 }
1014 }
1015 }
1016
1017 out:
1018 if (nofp) {
1019 nfs_open_file_clear_busy(nofp);
1020 }
1021 if (nfs_mount_state_in_use_end(nmp, error)) {
1022 nofp = NULL;
1023 goto restart;
1024 }
1025 if (error) {
1026 NP(np, "nfs_vnop_open: error %d, %d", error, kauth_cred_getuid(noop->noo_cred));
1027 }
1028 if (noop) {
1029 nfs_open_owner_rele(noop);
1030 }
1031 if (!error && vtype == VREG && (ap->a_mode & FWRITE)) {
1032 lck_mtx_lock(&nmp->nm_lock);
1033 nmp->nm_state &= ~NFSSTA_SQUISHY;
1034 nmp->nm_curdeadtimeout = nmp->nm_deadtimeout;
1035 if (nmp->nm_curdeadtimeout <= 0) {
1036 nmp->nm_deadto_start = 0;
1037 }
1038 nmp->nm_writers++;
1039 lck_mtx_unlock(&nmp->nm_lock);
1040 }
1041
1042 return error;
1043 }
1044
1045 static uint32_t
1046 nfs_no_of_open_file_writers(nfsnode_t np)
1047 {
1048 uint32_t writers = 0;
1049 struct nfs_open_file *nofp;
1050
1051 TAILQ_FOREACH(nofp, &np->n_opens, nof_link) {
1052 writers += nofp->nof_w + nofp->nof_rw + nofp->nof_w_dw + nofp->nof_rw_dw +
1053 nofp->nof_w_drw + nofp->nof_rw_drw + nofp->nof_d_w_dw +
1054 nofp->nof_d_rw_dw + nofp->nof_d_w_drw + nofp->nof_d_rw_drw +
1055 nofp->nof_d_w + nofp->nof_d_rw;
1056 }
1057
1058 return writers;
1059 }
1060
1061 /*
1062 * NFS close vnode op
1063 *
1064 * What an NFS client should do upon close after writing is a debatable issue.
1065 * Most NFS clients push delayed writes to the server upon close, basically for
1066 * two reasons:
1067 * 1 - So that any write errors may be reported back to the client process
1068 * doing the close system call. By far the two most likely errors are
1069 * NFSERR_NOSPC and NFSERR_DQUOT to indicate space allocation failure.
1070 * 2 - To put a worst case upper bound on cache inconsistency between
1071 * multiple clients for the file.
1072 * There is also a consistency problem for Version 2 of the protocol w.r.t.
1073 * not being able to tell if other clients are writing a file concurrently,
1074 * since there is no way of knowing if the changed modify time in the reply
1075 * is only due to the write for this client.
1076 * (NFS Version 3 provides weak cache consistency data in the reply that
1077 * should be sufficient to detect and handle this case.)
1078 *
1079 * The current code does the following:
1080 * for NFS Version 2 - play it safe and flush/invalidate all dirty buffers
1081 * for NFS Version 3 - flush dirty buffers to the server but don't invalidate them.
1082 * for NFS Version 4 - basically the same as NFSv3
1083 */
1084 int
1085 nfs_vnop_close(
1086 struct vnop_close_args /* {
1087 * struct vnodeop_desc *a_desc;
1088 * vnode_t a_vp;
1089 * int a_fflag;
1090 * vfs_context_t a_context;
1091 * } */*ap)
1092 {
1093 vfs_context_t ctx = ap->a_context;
1094 vnode_t vp = ap->a_vp;
1095 nfsnode_t np = VTONFS(vp);
1096 struct nfsmount *nmp;
1097 int error = 0, error1, nfsvers;
1098 int fflag = ap->a_fflag;
1099 enum vtype vtype;
1100 int accessMode, denyMode;
1101 struct nfs_open_owner *noop = NULL;
1102 struct nfs_open_file *nofp = NULL;
1103
1104 nmp = VTONMP(vp);
1105 if (!nmp) {
1106 return ENXIO;
1107 }
1108 nfsvers = nmp->nm_vers;
1109 vtype = vnode_vtype(vp);
1110
1111 /* First, check if we need to update/flush/invalidate */
1112 if (ISSET(np->n_flag, NUPDATESIZE)) {
1113 nfs_data_update_size(np, 0);
1114 }
1115 nfs_node_lock_force(np);
1116 if (np->n_flag & NNEEDINVALIDATE) {
1117 np->n_flag &= ~NNEEDINVALIDATE;
1118 nfs_node_unlock(np);
1119 nfs_vinvalbuf(vp, V_SAVE | V_IGNORE_WRITEERR, ctx, 1);
1120 nfs_node_lock_force(np);
1121 }
1122 if ((vtype == VREG) && (np->n_flag & NMODIFIED) && (fflag & FWRITE)) {
1123 /* we're closing an open for write and the file is modified, so flush it */
1124 nfs_node_unlock(np);
1125 if (nfsvers != NFS_VER2) {
1126 error = nfs_flush(np, MNT_WAIT, vfs_context_thread(ctx), 0);
1127 } else {
1128 error = nfs_vinvalbuf(vp, V_SAVE, ctx, 1);
1129 }
1130 nfs_node_lock_force(np);
1131 NATTRINVALIDATE(np);
1132 }
1133 if (np->n_flag & NWRITEERR) {
1134 np->n_flag &= ~NWRITEERR;
1135 error = np->n_error;
1136 }
1137 nfs_node_unlock(np);
1138
1139 if (vtype != VREG) {
1140 /* Just mark that it was closed */
1141 lck_mtx_lock(&np->n_openlock);
1142 if (np->n_openrefcnt == 0) {
1143 if (fflag & (FREAD | FWRITE)) {
1144 NP(np, "nfs_vnop_close: open reference underrun");
1145 error = EINVAL;
1146 }
1147 } else if (fflag & (FREAD | FWRITE)) {
1148 np->n_openrefcnt--;
1149 } else {
1150 /* No FREAD/FWRITE set - probably the final close */
1151 np->n_openrefcnt = 0;
1152 }
1153 lck_mtx_unlock(&np->n_openlock);
1154 return error;
1155 }
1156 error1 = error;
1157
1158 /* fflag should contain some combination of: FREAD, FWRITE */
1159 accessMode = 0;
1160 if (fflag & FREAD) {
1161 accessMode |= NFS_OPEN_SHARE_ACCESS_READ;
1162 }
1163 if (fflag & FWRITE) {
1164 accessMode |= NFS_OPEN_SHARE_ACCESS_WRITE;
1165 }
1166 // XXX It would be nice if we still had the O_EXLOCK/O_SHLOCK flags that were on the open
1167 // if (fflag & O_EXLOCK)
1168 // denyMode = NFS_OPEN_SHARE_DENY_BOTH;
1169 // else if (fflag & O_SHLOCK)
1170 // denyMode = NFS_OPEN_SHARE_DENY_WRITE;
1171 // else
1172 // denyMode = NFS_OPEN_SHARE_DENY_NONE;
1173 // XXX don't do deny modes just yet (and never do it for !v4)
1174 denyMode = NFS_OPEN_SHARE_DENY_NONE;
1175
1176 if (!accessMode) {
1177 /*
1178 * No mode given to close?
1179 * Guess this is the final close.
1180 * We should unlock all locks and close all opens.
1181 */
1182 uint32_t writers;
1183 mount_t mp = vnode_mount(vp);
1184 int force = (!mp || vfs_isforce(mp));
1185
1186 writers = nfs_no_of_open_file_writers(np);
1187 nfs_release_open_state_for_node(np, force);
1188 if (writers) {
1189 lck_mtx_lock(&nmp->nm_lock);
1190 if (writers > nmp->nm_writers) {
1191 NP(np, "nfs_vnop_close: number of write opens for mount underrun. Node has %d"
1192 " opens for write. Mount has total of %d opens for write\n",
1193 writers, nmp->nm_writers);
1194 nmp->nm_writers = 0;
1195 } else {
1196 nmp->nm_writers -= writers;
1197 }
1198 lck_mtx_unlock(&nmp->nm_lock);
1199 }
1200
1201 return error;
1202 } else if (fflag & FWRITE) {
1203 lck_mtx_lock(&nmp->nm_lock);
1204 if (nmp->nm_writers == 0) {
1205 NP(np, "nfs_vnop_close: removing open writer from mount, but mount has no files open for writing");
1206 } else {
1207 nmp->nm_writers--;
1208 }
1209 lck_mtx_unlock(&nmp->nm_lock);
1210 }
1211
1212
1213 noop = nfs_open_owner_find(nmp, vfs_context_ucred(ctx), 0);
1214 if (!noop) {
1215 // printf("nfs_vnop_close: can't get open owner!\n");
1216 return EIO;
1217 }
1218
1219 restart:
1220 error = nfs_mount_state_in_use_start(nmp, NULL);
1221 if (error) {
1222 nfs_open_owner_rele(noop);
1223 return error;
1224 }
1225
1226 error = nfs_open_file_find(np, noop, &nofp, 0, 0, 0);
1227 #if CONFIG_NFS4
1228 if (!error && (nofp->nof_flags & NFS_OPEN_FILE_REOPEN)) {
1229 error = nfs4_reopen(nofp, NULL);
1230 nofp = NULL;
1231 if (!error) {
1232 nfs_mount_state_in_use_end(nmp, 0);
1233 goto restart;
1234 }
1235 }
1236 #endif
1237 if (error) {
1238 NP(np, "nfs_vnop_close: no open file for owner, error %d, %d", error, kauth_cred_getuid(noop->noo_cred));
1239 error = EBADF;
1240 goto out;
1241 }
1242 error = nfs_open_file_set_busy(nofp, NULL);
1243 if (error) {
1244 nofp = NULL;
1245 goto out;
1246 }
1247
1248 error = nfs_close(np, nofp, accessMode, denyMode, ctx);
1249 if (error) {
1250 NP(np, "nfs_vnop_close: close error %d, %d", error, kauth_cred_getuid(noop->noo_cred));
1251 }
1252
1253 out:
1254 if (nofp) {
1255 nfs_open_file_clear_busy(nofp);
1256 }
1257 if (nfs_mount_state_in_use_end(nmp, error)) {
1258 nofp = NULL;
1259 goto restart;
1260 }
1261 if (!error) {
1262 error = error1;
1263 }
1264 if (error) {
1265 NP(np, "nfs_vnop_close: error %d, %d", error, kauth_cred_getuid(noop->noo_cred));
1266 }
1267 if (noop) {
1268 nfs_open_owner_rele(noop);
1269 }
1270 return error;
1271 }
1272
1273 /*
1274 * nfs_close(): common function that does all the heavy lifting of file closure
1275 *
1276 * Takes an open file structure and a set of access/deny modes and figures out how
1277 * to update the open file structure (and the state on the server) appropriately.
1278 */
1279 int
1280 nfs_close(
1281 nfsnode_t np,
1282 struct nfs_open_file *nofp,
1283 uint32_t accessMode,
1284 uint32_t denyMode,
1285 __unused vfs_context_t ctx)
1286 {
1287 #if CONFIG_NFS4
1288 struct nfs_lock_owner *nlop;
1289 #endif
1290 int error = 0, changed = 0, delegated = 0, closed = 0, downgrade = 0;
1291 uint8_t newAccessMode, newDenyMode;
1292
1293 /* warn if modes don't match current state */
1294 if (((accessMode & nofp->nof_access) != accessMode) || ((denyMode & nofp->nof_deny) != denyMode)) {
1295 NP(np, "nfs_close: mode mismatch %d %d, current %d %d, %d",
1296 accessMode, denyMode, nofp->nof_access, nofp->nof_deny,
1297 kauth_cred_getuid(nofp->nof_owner->noo_cred));
1298 }
1299
1300 /*
1301 * If we're closing a write-only open, we may not have a write-only count
1302 * if we also grabbed read access. So, check the read-write count.
1303 */
1304 if (denyMode == NFS_OPEN_SHARE_DENY_NONE) {
1305 if ((accessMode == NFS_OPEN_SHARE_ACCESS_WRITE) &&
1306 (nofp->nof_w == 0) && (nofp->nof_d_w == 0) &&
1307 (nofp->nof_rw || nofp->nof_d_rw)) {
1308 accessMode = NFS_OPEN_SHARE_ACCESS_BOTH;
1309 }
1310 } else if (denyMode == NFS_OPEN_SHARE_DENY_WRITE) {
1311 if ((accessMode == NFS_OPEN_SHARE_ACCESS_WRITE) &&
1312 (nofp->nof_w_dw == 0) && (nofp->nof_d_w_dw == 0) &&
1313 (nofp->nof_rw_dw || nofp->nof_d_rw_dw)) {
1314 accessMode = NFS_OPEN_SHARE_ACCESS_BOTH;
1315 }
1316 } else { /* NFS_OPEN_SHARE_DENY_BOTH */
1317 if ((accessMode == NFS_OPEN_SHARE_ACCESS_WRITE) &&
1318 (nofp->nof_w_drw == 0) && (nofp->nof_d_w_drw == 0) &&
1319 (nofp->nof_rw_drw || nofp->nof_d_rw_drw)) {
1320 accessMode = NFS_OPEN_SHARE_ACCESS_BOTH;
1321 }
1322 }
1323
1324 nfs_open_file_remove_open_find(nofp, accessMode, denyMode, &newAccessMode, &newDenyMode, &delegated);
1325 if ((newAccessMode != nofp->nof_access) || (newDenyMode != nofp->nof_deny)) {
1326 changed = 1;
1327 } else {
1328 changed = 0;
1329 }
1330
1331 if (NFSTONMP(np)->nm_vers < NFS_VER4) {
1332 /* NFS v2/v3 closes simply need to remove the open. */
1333 goto v3close;
1334 }
1335 #if CONFIG_NFS4
1336 if ((newAccessMode == 0) || (nofp->nof_opencnt == 1)) {
1337 /*
1338 * No more access after this close, so clean up and close it.
1339 * Don't send a close RPC if we're closing a delegated open.
1340 */
1341 nfs_wait_bufs(np);
1342 closed = 1;
1343 if (!delegated && !(nofp->nof_flags & NFS_OPEN_FILE_LOST)) {
1344 error = nfs4_close_rpc(np, nofp, vfs_context_thread(ctx), vfs_context_ucred(ctx), 0);
1345 }
1346 if (error == NFSERR_LOCKS_HELD) {
1347 /*
1348 * Hmm... the server says we have locks we need to release first
1349 * Find the lock owner and try to unlock everything.
1350 */
1351 nlop = nfs_lock_owner_find(np, vfs_context_proc(ctx), 0);
1352 if (nlop) {
1353 nfs4_unlock_rpc(np, nlop, F_WRLCK, 0, UINT64_MAX,
1354 0, vfs_context_thread(ctx), vfs_context_ucred(ctx));
1355 nfs_lock_owner_rele(nlop);
1356 }
1357 error = nfs4_close_rpc(np, nofp, vfs_context_thread(ctx), vfs_context_ucred(ctx), 0);
1358 }
1359 } else if (changed) {
1360 /*
1361 * File is still open but with less access, so downgrade the open.
1362 * Don't send a downgrade RPC if we're closing a delegated open.
1363 */
1364 if (!delegated && !(nofp->nof_flags & NFS_OPEN_FILE_LOST)) {
1365 downgrade = 1;
1366 /*
1367 * If we have delegated opens, we should probably claim them before sending
1368 * the downgrade because the server may not know the open we are downgrading to.
1369 */
1370 if (nofp->nof_d_rw_drw || nofp->nof_d_w_drw || nofp->nof_d_r_drw ||
1371 nofp->nof_d_rw_dw || nofp->nof_d_w_dw || nofp->nof_d_r_dw ||
1372 nofp->nof_d_rw || nofp->nof_d_w || nofp->nof_d_r) {
1373 nfs4_claim_delegated_state_for_open_file(nofp, 0);
1374 }
1375 /* need to remove the open before sending the downgrade */
1376 nfs_open_file_remove_open(nofp, accessMode, denyMode);
1377 error = nfs4_open_downgrade_rpc(np, nofp, ctx);
1378 if (error) { /* Hmm.. that didn't work. Add the open back in. */
1379 nfs_open_file_add_open(nofp, accessMode, denyMode, delegated);
1380 }
1381 }
1382 }
1383 #endif
1384 v3close:
1385 if (error) {
1386 NP(np, "nfs_close: error %d, %d", error, kauth_cred_getuid(nofp->nof_owner->noo_cred));
1387 return error;
1388 }
1389
1390 if (!downgrade) {
1391 nfs_open_file_remove_open(nofp, accessMode, denyMode);
1392 }
1393
1394 if (closed) {
1395 lck_mtx_lock(&nofp->nof_lock);
1396 if (nofp->nof_r || nofp->nof_d_r || nofp->nof_w || nofp->nof_d_w || nofp->nof_d_rw ||
1397 (nofp->nof_rw && !((nofp->nof_flags & NFS_OPEN_FILE_CREATE) && !nofp->nof_creator && (nofp->nof_rw == 1))) ||
1398 nofp->nof_r_dw || nofp->nof_d_r_dw || nofp->nof_w_dw || nofp->nof_d_w_dw ||
1399 nofp->nof_rw_dw || nofp->nof_d_rw_dw || nofp->nof_r_drw || nofp->nof_d_r_drw ||
1400 nofp->nof_w_drw || nofp->nof_d_w_drw || nofp->nof_rw_drw || nofp->nof_d_rw_drw) {
1401 NP(np, "nfs_close: unexpected count: %u.%u %u.%u %u.%u dw %u.%u %u.%u %u.%u drw %u.%u %u.%u %u.%u flags 0x%x, %d",
1402 nofp->nof_r, nofp->nof_d_r, nofp->nof_w, nofp->nof_d_w,
1403 nofp->nof_rw, nofp->nof_d_rw, nofp->nof_r_dw, nofp->nof_d_r_dw,
1404 nofp->nof_w_dw, nofp->nof_d_w_dw, nofp->nof_rw_dw, nofp->nof_d_rw_dw,
1405 nofp->nof_r_drw, nofp->nof_d_r_drw, nofp->nof_w_drw, nofp->nof_d_w_drw,
1406 nofp->nof_rw_drw, nofp->nof_d_rw_drw, nofp->nof_flags,
1407 kauth_cred_getuid(nofp->nof_owner->noo_cred));
1408 }
1409 /* clear out all open info, just to be safe */
1410 nofp->nof_access = nofp->nof_deny = 0;
1411 nofp->nof_mmap_access = nofp->nof_mmap_deny = 0;
1412 nofp->nof_r = nofp->nof_d_r = 0;
1413 nofp->nof_w = nofp->nof_d_w = 0;
1414 nofp->nof_rw = nofp->nof_d_rw = 0;
1415 nofp->nof_r_dw = nofp->nof_d_r_dw = 0;
1416 nofp->nof_w_dw = nofp->nof_d_w_dw = 0;
1417 nofp->nof_rw_dw = nofp->nof_d_rw_dw = 0;
1418 nofp->nof_r_drw = nofp->nof_d_r_drw = 0;
1419 nofp->nof_w_drw = nofp->nof_d_w_drw = 0;
1420 nofp->nof_rw_drw = nofp->nof_d_rw_drw = 0;
1421 nofp->nof_flags &= ~NFS_OPEN_FILE_CREATE;
1422 lck_mtx_unlock(&nofp->nof_lock);
1423 /* XXX we may potentially want to clean up idle/unused open file structures */
1424 }
1425 if (nofp->nof_flags & NFS_OPEN_FILE_LOST) {
1426 error = EIO;
1427 NP(np, "nfs_close: LOST%s, %d", !nofp->nof_opencnt ? " (last)" : "",
1428 kauth_cred_getuid(nofp->nof_owner->noo_cred));
1429 }
1430
1431 return error;
1432 }
1433
1434
1435 int
1436 nfs3_getattr_rpc(
1437 nfsnode_t np,
1438 mount_t mp,
1439 u_char *fhp,
1440 size_t fhsize,
1441 int flags,
1442 vfs_context_t ctx,
1443 struct nfs_vattr *nvap,
1444 u_int64_t *xidp)
1445 {
1446 struct nfsmount *nmp = mp ? VFSTONFS(mp) : NFSTONMP(np);
1447 int error = 0, status = 0, nfsvers, rpcflags = 0;
1448 struct nfsm_chain nmreq, nmrep;
1449
1450 if (nfs_mount_gone(nmp)) {
1451 return ENXIO;
1452 }
1453 nfsvers = nmp->nm_vers;
1454
1455 if (flags & NGA_MONITOR) { /* vnode monitor requests should be soft */
1456 rpcflags = R_RECOVER;
1457 }
1458
1459 if (flags & NGA_SOFT) { /* Return ETIMEDOUT if server not responding */
1460 rpcflags |= R_SOFT;
1461 }
1462
1463 nfsm_chain_null(&nmreq);
1464 nfsm_chain_null(&nmrep);
1465
1466 nfsm_chain_build_alloc_init(error, &nmreq, NFSX_FH(nfsvers));
1467 if (nfsvers != NFS_VER2) {
1468 nfsm_chain_add_32(error, &nmreq, fhsize);
1469 }
1470 nfsm_chain_add_opaque(error, &nmreq, fhp, fhsize);
1471 nfsm_chain_build_done(error, &nmreq);
1472 nfsmout_if(error);
1473 error = nfs_request2(np, mp, &nmreq, NFSPROC_GETATTR,
1474 vfs_context_thread(ctx), vfs_context_ucred(ctx),
1475 NULL, rpcflags, &nmrep, xidp, &status);
1476 if (!error) {
1477 error = status;
1478 }
1479 nfsmout_if(error);
1480 error = nfs_parsefattr(nmp, &nmrep, nfsvers, nvap);
1481 nfsmout:
1482 nfsm_chain_cleanup(&nmreq);
1483 nfsm_chain_cleanup(&nmrep);
1484 return error;
1485 }
1486
1487 /*
1488 * nfs_refresh_fh will attempt to update the file handle for the node.
1489 *
1490 * It only does this for symbolic links and regular files that are not currently opened.
1491 *
1492 * On Success returns 0 and the nodes file handle is updated, or ESTALE on failure.
1493 */
1494 int
1495 nfs_refresh_fh(nfsnode_t np, vfs_context_t ctx)
1496 {
1497 vnode_t dvp, vp = NFSTOV(np);
1498 nfsnode_t dnp;
1499 const char *v_name = vnode_getname(vp);
1500 char *name;
1501 int namelen, refreshed;
1502 uint32_t fhsize;
1503 int error, wanted = 0;
1504 uint8_t *fhp;
1505 struct timespec ts = {.tv_sec = 2, .tv_nsec = 0};
1506
1507 NFS_VNOP_DBG("vnode is %d\n", vnode_vtype(vp));
1508
1509 dvp = vnode_parent(vp);
1510 if ((vnode_vtype(vp) != VREG && vnode_vtype(vp) != VLNK) ||
1511 v_name == NULL || *v_name == '\0' || dvp == NULL) {
1512 if (v_name != NULL) {
1513 vnode_putname(v_name);
1514 }
1515 return ESTALE;
1516 }
1517 dnp = VTONFS(dvp);
1518
1519 namelen = NFS_STRLEN_INT(v_name);
1520 MALLOC(name, char *, namelen + 1, M_TEMP, M_WAITOK);
1521 if (name == NULL) {
1522 vnode_putname(v_name);
1523 return ESTALE;
1524 }
1525 bcopy(v_name, name, namelen + 1);
1526 NFS_VNOP_DBG("Trying to refresh %s : %s\n", v_name, name);
1527 vnode_putname(v_name);
1528
1529 /* Allocate the maximum size file handle */
1530 MALLOC(fhp, uint8_t *, NFS4_FHSIZE, M_FHANDLE, M_WAITOK);
1531 if (fhp == NULL) {
1532 FREE(name, M_TEMP);
1533 return ESTALE;
1534 }
1535
1536 if ((error = nfs_node_lock(np))) {
1537 FREE(name, M_TEMP);
1538 FREE(fhp, M_FHANDLE);
1539 return ESTALE;
1540 }
1541
1542 fhsize = np->n_fhsize;
1543 bcopy(np->n_fhp, fhp, fhsize);
1544 while (ISSET(np->n_flag, NREFRESH)) {
1545 SET(np->n_flag, NREFRESHWANT);
1546 NFS_VNOP_DBG("Waiting for refresh of %s\n", name);
1547 msleep(np, &np->n_lock, PZERO - 1, "nfsrefreshwant", &ts);
1548 if ((error = nfs_sigintr(NFSTONMP(np), NULL, vfs_context_thread(ctx), 0))) {
1549 break;
1550 }
1551 }
1552 refreshed = error ? 0 : !NFS_CMPFH(np, fhp, fhsize);
1553 SET(np->n_flag, NREFRESH);
1554 nfs_node_unlock(np);
1555
1556 NFS_VNOP_DBG("error = %d, refreshed = %d\n", error, refreshed);
1557 if (error || refreshed) {
1558 goto nfsmout;
1559 }
1560
1561 /* Check that there are no open references for this file */
1562 lck_mtx_lock(&np->n_openlock);
1563 if (np->n_openrefcnt || !TAILQ_EMPTY(&np->n_opens) || !TAILQ_EMPTY(&np->n_lock_owners)) {
1564 int cnt = 0;
1565 struct nfs_open_file *ofp;
1566
1567 TAILQ_FOREACH(ofp, &np->n_opens, nof_link) {
1568 cnt += ofp->nof_opencnt;
1569 }
1570 if (cnt) {
1571 lck_mtx_unlock(&np->n_openlock);
1572 NFS_VNOP_DBG("Can not refresh file handle for %s with open state\n", name);
1573 NFS_VNOP_DBG("\topenrefcnt = %d, opens = %d lock_owners = %d\n",
1574 np->n_openrefcnt, cnt, !TAILQ_EMPTY(&np->n_lock_owners));
1575 error = ESTALE;
1576 goto nfsmout;
1577 }
1578 }
1579 lck_mtx_unlock(&np->n_openlock);
1580 /*
1581 * Since the FH is currently stale we should not be able to
1582 * establish any open state until the FH is refreshed.
1583 */
1584
1585 error = nfs_node_lock(np);
1586 nfsmout_if(error);
1587 /*
1588 * Symlinks should never need invalidations and are holding
1589 * the one and only nfsbuf in an uncached acquired state
1590 * trying to do a readlink. So we will hang if we invalidate
1591 * in that case. Only in in the VREG case do we need to
1592 * invalidate.
1593 */
1594 if (vnode_vtype(vp) == VREG) {
1595 np->n_flag &= ~NNEEDINVALIDATE;
1596 nfs_node_unlock(np);
1597 error = nfs_vinvalbuf(vp, V_IGNORE_WRITEERR, ctx, 1);
1598 if (error) {
1599 NFS_VNOP_DBG("nfs_vinvalbuf returned %d\n", error);
1600 }
1601 nfsmout_if(error);
1602 } else {
1603 nfs_node_unlock(np);
1604 }
1605
1606 NFS_VNOP_DBG("Looking up %s\n", name);
1607 error = nfs_lookitup(dnp, name, namelen, ctx, &np);
1608 if (error) {
1609 NFS_VNOP_DBG("nfs_lookitup returned %d\n", error);
1610 }
1611
1612 nfsmout:
1613 nfs_node_lock_force(np);
1614 wanted = ISSET(np->n_flag, NREFRESHWANT);
1615 CLR(np->n_flag, NREFRESH | NREFRESHWANT);
1616 nfs_node_unlock(np);
1617 if (wanted) {
1618 wakeup(np);
1619 }
1620
1621 if (error == 0) {
1622 NFS_VNOP_DBG("%s refreshed file handle\n", name);
1623 }
1624
1625 FREE(name, M_TEMP);
1626 FREE(fhp, M_FHANDLE);
1627
1628 return error ? ESTALE : 0;
1629 }
1630
1631 int
1632 nfs_getattr(nfsnode_t np, struct nfs_vattr *nvap, vfs_context_t ctx, int flags)
1633 {
1634 int error;
1635
1636 retry:
1637 error = nfs_getattr_internal(np, nvap, ctx, flags);
1638 if (error == ESTALE) {
1639 error = nfs_refresh_fh(np, ctx);
1640 if (!error) {
1641 goto retry;
1642 }
1643 }
1644 return error;
1645 }
1646
1647 int
1648 nfs_getattr_internal(nfsnode_t np, struct nfs_vattr *nvap, vfs_context_t ctx, int flags)
1649 {
1650 struct nfsmount *nmp;
1651 int error = 0, nfsvers, inprogset = 0, wanted = 0, avoidfloods = 0;
1652 struct nfs_vattr *nvattr = NULL;
1653 struct timespec ts = { .tv_sec = 2, .tv_nsec = 0 };
1654 u_int64_t xid = 0;
1655
1656 FSDBG_TOP(513, np->n_size, np, np->n_vattr.nva_size, np->n_flag);
1657
1658 nmp = NFSTONMP(np);
1659
1660 if (nfs_mount_gone(nmp)) {
1661 return ENXIO;
1662 }
1663 nfsvers = nmp->nm_vers;
1664
1665 if (!nvap) {
1666 MALLOC(nvattr, struct nfs_vattr *, sizeof(*nvattr), M_TEMP, M_WAITOK);
1667 nvap = nvattr;
1668 }
1669 NVATTR_INIT(nvap);
1670
1671 /* Update local times for special files. */
1672 if (np->n_flag & (NACC | NUPD)) {
1673 nfs_node_lock_force(np);
1674 np->n_flag |= NCHG;
1675 nfs_node_unlock(np);
1676 }
1677 /* Update size, if necessary */
1678 if (ISSET(np->n_flag, NUPDATESIZE)) {
1679 nfs_data_update_size(np, 0);
1680 }
1681
1682 error = nfs_node_lock(np);
1683 nfsmout_if(error);
1684 if (!(flags & (NGA_UNCACHED | NGA_MONITOR)) || ((nfsvers >= NFS_VER4) && (np->n_openflags & N_DELEG_MASK))) {
1685 /*
1686 * Use the cache or wait for any getattr in progress if:
1687 * - it's a cached request, or
1688 * - we have a delegation, or
1689 * - the server isn't responding
1690 */
1691 while (1) {
1692 error = nfs_getattrcache(np, nvap, flags);
1693 if (!error || (error != ENOENT)) {
1694 nfs_node_unlock(np);
1695 goto nfsmout;
1696 }
1697 error = 0;
1698 if (!ISSET(np->n_flag, NGETATTRINPROG)) {
1699 break;
1700 }
1701 if (flags & NGA_MONITOR) {
1702 /* no need to wait if a request is pending */
1703 error = EINPROGRESS;
1704 nfs_node_unlock(np);
1705 goto nfsmout;
1706 }
1707 SET(np->n_flag, NGETATTRWANT);
1708 msleep(np, &np->n_lock, PZERO - 1, "nfsgetattrwant", &ts);
1709 if ((error = nfs_sigintr(NFSTONMP(np), NULL, vfs_context_thread(ctx), 0))) {
1710 nfs_node_unlock(np);
1711 goto nfsmout;
1712 }
1713 }
1714 SET(np->n_flag, NGETATTRINPROG);
1715 inprogset = 1;
1716 } else if (!ISSET(np->n_flag, NGETATTRINPROG)) {
1717 SET(np->n_flag, NGETATTRINPROG);
1718 inprogset = 1;
1719 } else if (flags & NGA_MONITOR) {
1720 /* no need to make a request if one is pending */
1721 error = EINPROGRESS;
1722 }
1723 nfs_node_unlock(np);
1724
1725 nmp = NFSTONMP(np);
1726 if (nfs_mount_gone(nmp)) {
1727 error = ENXIO;
1728 }
1729 if (error) {
1730 goto nfsmout;
1731 }
1732
1733 /*
1734 * Return cached attributes if they are valid,
1735 * if the server doesn't respond, and this is
1736 * some softened up style of mount.
1737 */
1738 if (NATTRVALID(np) && nfs_use_cache(nmp)) {
1739 flags |= NGA_SOFT;
1740 }
1741
1742 /*
1743 * We might want to try to get both the attributes and access info by
1744 * making an ACCESS call and seeing if it returns updated attributes.
1745 * But don't bother if we aren't caching access info or if the
1746 * attributes returned wouldn't be cached.
1747 */
1748 if (!(flags & NGA_ACL) && (nfsvers != NFS_VER2) && nfs_access_for_getattr && (nfs_access_cache_timeout > 0)) {
1749 if (nfs_attrcachetimeout(np) > 0) {
1750 /* OSAddAtomic(1, &nfsstats.accesscache_misses); */
1751 u_int32_t access = NFS_ACCESS_ALL;
1752 int rpcflags = 0;
1753
1754 /* Return cached attrs if server doesn't respond */
1755 if (flags & NGA_SOFT) {
1756 rpcflags |= R_SOFT;
1757 }
1758
1759 error = nmp->nm_funcs->nf_access_rpc(np, &access, rpcflags, ctx);
1760
1761 if (error == ETIMEDOUT) {
1762 goto returncached;
1763 }
1764
1765 if (error) {
1766 goto nfsmout;
1767 }
1768 nfs_node_lock_force(np);
1769 error = nfs_getattrcache(np, nvap, flags);
1770 nfs_node_unlock(np);
1771 if (!error || (error != ENOENT)) {
1772 goto nfsmout;
1773 }
1774 /* Well, that didn't work... just do a getattr... */
1775 error = 0;
1776 }
1777 }
1778
1779 avoidfloods = 0;
1780
1781 tryagain:
1782 error = nmp->nm_funcs->nf_getattr_rpc(np, NULL, np->n_fhp, np->n_fhsize, flags, ctx, nvap, &xid);
1783 if (!error) {
1784 nfs_node_lock_force(np);
1785 error = nfs_loadattrcache(np, nvap, &xid, 0);
1786 nfs_node_unlock(np);
1787 }
1788
1789 /*
1790 * If the server didn't respond, return cached attributes.
1791 */
1792 returncached:
1793 if ((flags & NGA_SOFT) && (error == ETIMEDOUT)) {
1794 nfs_node_lock_force(np);
1795 error = nfs_getattrcache(np, nvap, flags);
1796 if (!error || (error != ENOENT)) {
1797 nfs_node_unlock(np);
1798 goto nfsmout;
1799 }
1800 nfs_node_unlock(np);
1801 }
1802 nfsmout_if(error);
1803
1804 if (!xid) { /* out-of-order rpc - attributes were dropped */
1805 FSDBG(513, -1, np, np->n_xid >> 32, np->n_xid);
1806 if (avoidfloods++ < 20) {
1807 goto tryagain;
1808 }
1809 /* avoidfloods>1 is bizarre. at 20 pull the plug */
1810 /* just return the last attributes we got */
1811 }
1812 nfsmout:
1813 nfs_node_lock_force(np);
1814 if (inprogset) {
1815 wanted = ISSET(np->n_flag, NGETATTRWANT);
1816 CLR(np->n_flag, (NGETATTRINPROG | NGETATTRWANT));
1817 }
1818 if (!error) {
1819 /* check if the node changed on us */
1820 vnode_t vp = NFSTOV(np);
1821 enum vtype vtype = vnode_vtype(vp);
1822 if ((vtype == VDIR) && NFS_CHANGED_NC(nfsvers, np, nvap)) {
1823 FSDBG(513, -1, np, 0, np);
1824 np->n_flag &= ~NNEGNCENTRIES;
1825 cache_purge(vp);
1826 np->n_ncgen++;
1827 NFS_CHANGED_UPDATE_NC(nfsvers, np, nvap);
1828 NFS_VNOP_DBG("Purge directory 0x%llx\n",
1829 (uint64_t)VM_KERNEL_ADDRPERM(vp));
1830 }
1831 if (NFS_CHANGED(nfsvers, np, nvap)) {
1832 FSDBG(513, -1, np, -1, np);
1833 if (vtype == VDIR) {
1834 NFS_VNOP_DBG("Invalidate directory 0x%llx\n",
1835 (uint64_t)VM_KERNEL_ADDRPERM(vp));
1836 nfs_invaldir(np);
1837 }
1838 nfs_node_unlock(np);
1839 if (wanted) {
1840 wakeup(np);
1841 }
1842 error = nfs_vinvalbuf(vp, V_SAVE, ctx, 1);
1843 FSDBG(513, -1, np, -2, error);
1844 if (!error) {
1845 nfs_node_lock_force(np);
1846 NFS_CHANGED_UPDATE(nfsvers, np, nvap);
1847 nfs_node_unlock(np);
1848 }
1849 } else {
1850 nfs_node_unlock(np);
1851 if (wanted) {
1852 wakeup(np);
1853 }
1854 }
1855 } else {
1856 nfs_node_unlock(np);
1857 if (wanted) {
1858 wakeup(np);
1859 }
1860 }
1861
1862 if (nvattr != NULL) {
1863 NVATTR_CLEANUP(nvap);
1864 FREE(nvattr, M_TEMP);
1865 } else if (!(flags & NGA_ACL)) {
1866 /* make sure we don't return an ACL if it wasn't asked for */
1867 NFS_BITMAP_CLR(nvap->nva_bitmap, NFS_FATTR_ACL);
1868 if (nvap->nva_acl) {
1869 kauth_acl_free(nvap->nva_acl);
1870 nvap->nva_acl = NULL;
1871 }
1872 }
1873 FSDBG_BOT(513, np->n_size, error, np->n_vattr.nva_size, np->n_flag);
1874 return error;
1875 }
1876
1877
1878 /*
1879 * NFS getattr call from vfs.
1880 */
1881
1882 /*
1883 * The attributes we support over the wire.
1884 * We also get fsid but the vfs layer gets it out of the mount
1885 * structure after this calling us so there's no need to return it,
1886 * and Finder expects to call getattrlist just looking for the FSID
1887 * with out hanging on a non responsive server.
1888 */
1889 #define NFS3_SUPPORTED_VATTRS \
1890 (VNODE_ATTR_va_rdev | \
1891 VNODE_ATTR_va_nlink | \
1892 VNODE_ATTR_va_data_size | \
1893 VNODE_ATTR_va_data_alloc | \
1894 VNODE_ATTR_va_uid | \
1895 VNODE_ATTR_va_gid | \
1896 VNODE_ATTR_va_mode | \
1897 VNODE_ATTR_va_modify_time | \
1898 VNODE_ATTR_va_change_time | \
1899 VNODE_ATTR_va_access_time | \
1900 VNODE_ATTR_va_fileid | \
1901 VNODE_ATTR_va_type)
1902
1903
1904 int
1905 nfs3_vnop_getattr(
1906 struct vnop_getattr_args /* {
1907 * struct vnodeop_desc *a_desc;
1908 * vnode_t a_vp;
1909 * struct vnode_attr *a_vap;
1910 * vfs_context_t a_context;
1911 * } */*ap)
1912 {
1913 int error;
1914 nfsnode_t np;
1915 uint64_t supported_attrs;
1916 struct nfs_vattr *nva;
1917 struct vnode_attr *vap = ap->a_vap;
1918 struct nfsmount *nmp;
1919 dev_t rdev;
1920
1921 nmp = VTONMP(ap->a_vp);
1922
1923 /*
1924 * Lets don't go over the wire if we don't support any of the attributes.
1925 * Just fall through at the VFS layer and let it cons up what it needs.
1926 */
1927 /* Return the io size no matter what, since we don't go over the wire for this */
1928 VATTR_RETURN(vap, va_iosize, nfs_iosize);
1929
1930 supported_attrs = NFS3_SUPPORTED_VATTRS;
1931
1932 if ((vap->va_active & supported_attrs) == 0) {
1933 return 0;
1934 }
1935
1936 if (VATTR_IS_ACTIVE(ap->a_vap, va_name)) {
1937 NFS_VNOP_DBG("Getting attrs for 0x%llx, vname is %s\n",
1938 (uint64_t)VM_KERNEL_ADDRPERM(ap->a_vp),
1939 ap->a_vp->v_name ? ap->a_vp->v_name : "empty");
1940 }
1941
1942 /*
1943 * We should not go over the wire if only fileid was requested and has ever been populated.
1944 */
1945 if ((vap->va_active & supported_attrs) == VNODE_ATTR_va_fileid) {
1946 np = VTONFS(ap->a_vp);
1947 if (np->n_attrstamp) {
1948 VATTR_RETURN(vap, va_fileid, np->n_vattr.nva_fileid);
1949 return 0;
1950 }
1951 }
1952
1953 MALLOC(nva, struct nfs_vattr *, sizeof(*nva), M_TEMP, M_WAITOK);
1954 error = nfs_getattr(VTONFS(ap->a_vp), nva, ap->a_context, NGA_CACHED);
1955 if (error) {
1956 goto out;
1957 }
1958
1959 /* copy nva to *a_vap */
1960 VATTR_RETURN(vap, va_type, nva->nva_type);
1961 VATTR_RETURN(vap, va_mode, nva->nva_mode);
1962 rdev = makedev(nva->nva_rawdev.specdata1, nva->nva_rawdev.specdata2);
1963 VATTR_RETURN(vap, va_rdev, rdev);
1964 VATTR_RETURN(vap, va_uid, nva->nva_uid);
1965 VATTR_RETURN(vap, va_gid, nva->nva_gid);
1966 VATTR_RETURN(vap, va_nlink, nva->nva_nlink);
1967 VATTR_RETURN(vap, va_fileid, nva->nva_fileid);
1968 VATTR_RETURN(vap, va_data_size, nva->nva_size);
1969 VATTR_RETURN(vap, va_data_alloc, nva->nva_bytes);
1970 vap->va_access_time.tv_sec = nva->nva_timesec[NFSTIME_ACCESS];
1971 vap->va_access_time.tv_nsec = nva->nva_timensec[NFSTIME_ACCESS];
1972 VATTR_SET_SUPPORTED(vap, va_access_time);
1973 vap->va_modify_time.tv_sec = nva->nva_timesec[NFSTIME_MODIFY];
1974 vap->va_modify_time.tv_nsec = nva->nva_timensec[NFSTIME_MODIFY];
1975 VATTR_SET_SUPPORTED(vap, va_modify_time);
1976 vap->va_change_time.tv_sec = nva->nva_timesec[NFSTIME_CHANGE];
1977 vap->va_change_time.tv_nsec = nva->nva_timensec[NFSTIME_CHANGE];
1978 VATTR_SET_SUPPORTED(vap, va_change_time);
1979
1980
1981 // VATTR_RETURN(vap, va_encoding, 0xffff /* kTextEncodingUnknown */);
1982 out:
1983 FREE(nva, M_TEMP);
1984 return error;
1985 }
1986
1987 /*
1988 * NFS setattr call.
1989 */
1990 int
1991 nfs_vnop_setattr(
1992 struct vnop_setattr_args /* {
1993 * struct vnodeop_desc *a_desc;
1994 * vnode_t a_vp;
1995 * struct vnode_attr *a_vap;
1996 * vfs_context_t a_context;
1997 * } */*ap)
1998 {
1999 vfs_context_t ctx = ap->a_context;
2000 vnode_t vp = ap->a_vp;
2001 nfsnode_t np = VTONFS(vp);
2002 struct nfsmount *nmp;
2003 struct vnode_attr *vap = ap->a_vap;
2004 int error = 0;
2005 int biosize, nfsvers, namedattrs;
2006 u_quad_t origsize, vapsize;
2007 struct nfs_dulookup *dul;
2008 nfsnode_t dnp = NULL;
2009 int dul_in_progress = 0;
2010 vnode_t dvp = NULL;
2011 const char *vname = NULL;
2012 #if CONFIG_NFS4
2013 struct nfs_open_owner *noop = NULL;
2014 struct nfs_open_file *nofp = NULL;
2015 #endif
2016 nmp = VTONMP(vp);
2017 if (nfs_mount_gone(nmp)) {
2018 return ENXIO;
2019 }
2020 nfsvers = nmp->nm_vers;
2021 namedattrs = (nmp->nm_fsattr.nfsa_flags & NFS_FSFLAG_NAMED_ATTR);
2022 biosize = nmp->nm_biosize;
2023
2024 /* Disallow write attempts if the filesystem is mounted read-only. */
2025 if (vnode_vfsisrdonly(vp)) {
2026 return EROFS;
2027 }
2028
2029 origsize = np->n_size;
2030 if (VATTR_IS_ACTIVE(vap, va_data_size)) {
2031 switch (vnode_vtype(vp)) {
2032 case VDIR:
2033 return EISDIR;
2034 case VCHR:
2035 case VBLK:
2036 case VSOCK:
2037 case VFIFO:
2038 if (!VATTR_IS_ACTIVE(vap, va_modify_time) &&
2039 !VATTR_IS_ACTIVE(vap, va_access_time) &&
2040 !VATTR_IS_ACTIVE(vap, va_mode) &&
2041 !VATTR_IS_ACTIVE(vap, va_uid) &&
2042 !VATTR_IS_ACTIVE(vap, va_gid)) {
2043 return 0;
2044 }
2045 VATTR_CLEAR_ACTIVE(vap, va_data_size);
2046 break;
2047 default:
2048 /*
2049 * Disallow write attempts if the filesystem is
2050 * mounted read-only.
2051 */
2052 if (vnode_vfsisrdonly(vp)) {
2053 return EROFS;
2054 }
2055 FSDBG_TOP(512, np->n_size, vap->va_data_size,
2056 np->n_vattr.nva_size, np->n_flag);
2057 /* clear NNEEDINVALIDATE, if set */
2058 if ((error = nfs_node_lock(np))) {
2059 return error;
2060 }
2061 if (np->n_flag & NNEEDINVALIDATE) {
2062 np->n_flag &= ~NNEEDINVALIDATE;
2063 }
2064 nfs_node_unlock(np);
2065 /* flush everything */
2066 error = nfs_vinvalbuf(vp, (vap->va_data_size ? V_SAVE : 0), ctx, 1);
2067 if (error) {
2068 NP(np, "nfs_setattr: nfs_vinvalbuf %d", error);
2069 FSDBG_BOT(512, np->n_size, vap->va_data_size, np->n_vattr.nva_size, -1);
2070 return error;
2071 }
2072 #if CONFIG_NFS4
2073 if (nfsvers >= NFS_VER4) {
2074 /* setting file size requires having the file open for write access */
2075 if (np->n_flag & NREVOKE) {
2076 return EIO;
2077 }
2078 noop = nfs_open_owner_find(nmp, vfs_context_ucred(ctx), 1);
2079 if (!noop) {
2080 return ENOMEM;
2081 }
2082 restart:
2083 error = nfs_mount_state_in_use_start(nmp, vfs_context_thread(ctx));
2084 if (error) {
2085 return error;
2086 }
2087 if (np->n_flag & NREVOKE) {
2088 nfs_mount_state_in_use_end(nmp, 0);
2089 return EIO;
2090 }
2091 error = nfs_open_file_find(np, noop, &nofp, 0, 0, 1);
2092 if (!error && (nofp->nof_flags & NFS_OPEN_FILE_LOST)) {
2093 error = EIO;
2094 }
2095 if (!error && (nofp->nof_flags & NFS_OPEN_FILE_REOPEN)) {
2096 error = nfs4_reopen(nofp, vfs_context_thread(ctx));
2097 nofp = NULL;
2098 if (!error) {
2099 nfs_mount_state_in_use_end(nmp, 0);
2100 goto restart;
2101 }
2102 }
2103 if (!error) {
2104 error = nfs_open_file_set_busy(nofp, vfs_context_thread(ctx));
2105 }
2106 if (error) {
2107 nfs_mount_state_in_use_end(nmp, 0);
2108 nfs_open_owner_rele(noop);
2109 return error;
2110 }
2111 if (!(nofp->nof_access & NFS_OPEN_SHARE_ACCESS_WRITE)) {
2112 /* we don't have the file open for write access, so open it */
2113 error = nfs4_open(np, nofp, NFS_OPEN_SHARE_ACCESS_WRITE, NFS_OPEN_SHARE_DENY_NONE, ctx);
2114 if (!error) {
2115 nofp->nof_flags |= NFS_OPEN_FILE_SETATTR;
2116 }
2117 if (nfs_mount_state_error_should_restart(error)) {
2118 nfs_open_file_clear_busy(nofp);
2119 nofp = NULL;
2120 nfs_mount_state_in_use_end(nmp, error);
2121 goto restart;
2122 }
2123 }
2124 }
2125 #endif
2126 nfs_data_lock(np, NFS_DATA_LOCK_EXCLUSIVE);
2127 if (np->n_size > vap->va_data_size) { /* shrinking? */
2128 daddr64_t obn, bn;
2129 int mustwrite;
2130 off_t neweofoff;
2131 struct nfsbuf *bp;
2132 nfsbufpgs pagemask;
2133
2134 obn = (np->n_size - 1) / biosize;
2135 bn = vap->va_data_size / biosize;
2136 for (; obn >= bn; obn--) {
2137 if (!nfs_buf_is_incore(np, obn)) {
2138 continue;
2139 }
2140 error = nfs_buf_get(np, obn, biosize, NULL, NBLK_READ, &bp);
2141 if (error) {
2142 continue;
2143 }
2144 if (obn != bn) {
2145 FSDBG(512, bp, bp->nb_flags, 0, obn);
2146 SET(bp->nb_flags, NB_INVAL);
2147 nfs_buf_release(bp, 1);
2148 continue;
2149 }
2150 mustwrite = 0;
2151 neweofoff = vap->va_data_size - NBOFF(bp);
2152 /* check for any dirty data before the new EOF */
2153 if ((bp->nb_dirtyend > 0) && (bp->nb_dirtyoff < neweofoff)) {
2154 /* clip dirty range to EOF */
2155 if (bp->nb_dirtyend > neweofoff) {
2156 bp->nb_dirtyend = neweofoff;
2157 if (bp->nb_dirtyoff >= bp->nb_dirtyend) {
2158 bp->nb_dirtyoff = bp->nb_dirtyend = 0;
2159 }
2160 }
2161 if ((bp->nb_dirtyend > 0) && (bp->nb_dirtyoff < neweofoff)) {
2162 mustwrite++;
2163 }
2164 }
2165 nfs_buf_pgs_get_page_mask(&pagemask, round_page_64(neweofoff) / PAGE_SIZE);
2166 nfs_buf_pgs_bit_and(&bp->nb_dirty, &pagemask, &bp->nb_dirty);
2167 if (nfs_buf_pgs_is_set(&bp->nb_dirty)) {
2168 mustwrite++;
2169 }
2170 if (!mustwrite) {
2171 FSDBG(512, bp, bp->nb_flags, 0, obn);
2172 SET(bp->nb_flags, NB_INVAL);
2173 nfs_buf_release(bp, 1);
2174 continue;
2175 }
2176 /* gotta write out dirty data before invalidating */
2177 /* (NB_STABLE indicates that data writes should be FILESYNC) */
2178 /* (NB_NOCACHE indicates buffer should be discarded) */
2179 CLR(bp->nb_flags, (NB_DONE | NB_ERROR | NB_INVAL | NB_ASYNC | NB_READ));
2180 SET(bp->nb_flags, NB_STABLE | NB_NOCACHE);
2181 if (!IS_VALID_CRED(bp->nb_wcred)) {
2182 kauth_cred_t cred = vfs_context_ucred(ctx);
2183 kauth_cred_ref(cred);
2184 bp->nb_wcred = cred;
2185 }
2186 error = nfs_buf_write(bp);
2187 // Note: bp has been released
2188 if (error) {
2189 FSDBG(512, bp, 0xd00dee, 0xbad, error);
2190 nfs_node_lock_force(np);
2191 np->n_error = error;
2192 np->n_flag |= NWRITEERR;
2193 /*
2194 * There was a write error and we need to
2195 * invalidate attrs and flush buffers in
2196 * order to sync up with the server.
2197 * (if this write was extending the file,
2198 * we may no longer know the correct size)
2199 */
2200 NATTRINVALIDATE(np);
2201 nfs_node_unlock(np);
2202 nfs_data_unlock(np);
2203 nfs_vinvalbuf(vp, V_SAVE | V_IGNORE_WRITEERR, ctx, 1);
2204 nfs_data_lock(np, NFS_DATA_LOCK_EXCLUSIVE);
2205 error = 0;
2206 }
2207 }
2208 }
2209 if (vap->va_data_size != np->n_size) {
2210 ubc_setsize(vp, (off_t)vap->va_data_size); /* XXX error? */
2211 }
2212 origsize = np->n_size;
2213 np->n_size = np->n_vattr.nva_size = vap->va_data_size;
2214 nfs_node_lock_force(np);
2215 CLR(np->n_flag, NUPDATESIZE);
2216 nfs_node_unlock(np);
2217 FSDBG(512, np, np->n_size, np->n_vattr.nva_size, 0xf00d0001);
2218 }
2219 } else if (VATTR_IS_ACTIVE(vap, va_modify_time) ||
2220 VATTR_IS_ACTIVE(vap, va_access_time) ||
2221 (vap->va_vaflags & VA_UTIMES_NULL)) {
2222 if ((error = nfs_node_lock(np))) {
2223 #if CONFIG_NFS4
2224 if (nfsvers >= NFS_VER4) {
2225 nfs_mount_state_in_use_end(nmp, 0);
2226 }
2227 #endif
2228 return error;
2229 }
2230 if ((np->n_flag & NMODIFIED) && (vnode_vtype(vp) == VREG)) {
2231 nfs_node_unlock(np);
2232 error = nfs_vinvalbuf(vp, V_SAVE, ctx, 1);
2233 if (error == EINTR) {
2234 #if CONFIG_NFS4
2235 if (nfsvers >= NFS_VER4) {
2236 nfs_mount_state_in_use_end(nmp, 0);
2237 }
2238 #endif
2239 return error;
2240 }
2241 } else {
2242 nfs_node_unlock(np);
2243 }
2244 }
2245
2246 MALLOC(dul, struct nfs_dulookup *, sizeof(*dul), M_TEMP, M_WAITOK);
2247
2248 if ((VATTR_IS_ACTIVE(vap, va_mode) || VATTR_IS_ACTIVE(vap, va_uid) || VATTR_IS_ACTIVE(vap, va_gid) ||
2249 VATTR_IS_ACTIVE(vap, va_acl) || VATTR_IS_ACTIVE(vap, va_uuuid) || VATTR_IS_ACTIVE(vap, va_guuid)) &&
2250 !(error = nfs_node_lock(np))) {
2251 NACCESSINVALIDATE(np);
2252 nfs_node_unlock(np);
2253 if (!namedattrs) {
2254 dvp = vnode_getparent(vp);
2255 vname = vnode_getname(vp);
2256 dnp = (dvp && vname) ? VTONFS(dvp) : NULL;
2257 if (dnp) {
2258 if (nfs_node_set_busy(dnp, vfs_context_thread(ctx))) {
2259 vnode_put(dvp);
2260 vnode_putname(vname);
2261 } else {
2262 nfs_dulookup_init(dul, dnp, vname, NFS_STRLEN_INT(vname), ctx);
2263 nfs_dulookup_start(dul, dnp, ctx);
2264 dul_in_progress = 1;
2265 }
2266 } else {
2267 if (dvp) {
2268 vnode_put(dvp);
2269 }
2270 if (vname) {
2271 vnode_putname(vname);
2272 }
2273 }
2274 }
2275 }
2276
2277 if (!error) {
2278 error = nmp->nm_funcs->nf_setattr_rpc(np, vap, ctx);
2279 }
2280
2281 if (dul_in_progress) {
2282 nfs_dulookup_finish(dul, dnp, ctx);
2283 nfs_node_clear_busy(dnp);
2284 vnode_put(dvp);
2285 vnode_putname(vname);
2286 }
2287
2288 FREE(dul, M_TEMP);
2289 FSDBG_BOT(512, np->n_size, vap->va_data_size, np->n_vattr.nva_size, error);
2290 if (VATTR_IS_ACTIVE(vap, va_data_size)) {
2291 if (error && (origsize != np->n_size) &&
2292 ((nfsvers < NFS_VER4) || !nfs_mount_state_error_should_restart(error))) {
2293 /* make every effort to resync file size w/ server... */
2294 /* (don't bother if we'll be restarting the operation) */
2295 int err; /* preserve "error" for return */
2296 np->n_size = np->n_vattr.nva_size = origsize;
2297 nfs_node_lock_force(np);
2298 CLR(np->n_flag, NUPDATESIZE);
2299 nfs_node_unlock(np);
2300 FSDBG(512, np, np->n_size, np->n_vattr.nva_size, 0xf00d0002);
2301 ubc_setsize(vp, (off_t)np->n_size); /* XXX check error */
2302 vapsize = vap->va_data_size;
2303 vap->va_data_size = origsize;
2304 err = nmp->nm_funcs->nf_setattr_rpc(np, vap, ctx);
2305 if (err) {
2306 NP(np, "nfs_vnop_setattr: nfs%d_setattr_rpc %d %d", nfsvers, error, err);
2307 }
2308 vap->va_data_size = vapsize;
2309 }
2310 nfs_node_lock_force(np);
2311 /*
2312 * The size was just set. If the size is already marked for update, don't
2313 * trust the newsize (it may have been set while the setattr was in progress).
2314 * Clear the update flag and make sure we fetch new attributes so we are sure
2315 * we have the latest size.
2316 */
2317 if (ISSET(np->n_flag, NUPDATESIZE)) {
2318 CLR(np->n_flag, NUPDATESIZE);
2319 NATTRINVALIDATE(np);
2320 nfs_node_unlock(np);
2321 nfs_getattr(np, NULL, ctx, NGA_UNCACHED);
2322 } else {
2323 nfs_node_unlock(np);
2324 }
2325 nfs_data_unlock(np);
2326 #if CONFIG_NFS4
2327 if (nfsvers >= NFS_VER4) {
2328 if (nofp) {
2329 /* don't close our setattr open if we'll be restarting... */
2330 if (!nfs_mount_state_error_should_restart(error) &&
2331 (nofp->nof_flags & NFS_OPEN_FILE_SETATTR)) {
2332 int err = nfs_close(np, nofp, NFS_OPEN_SHARE_ACCESS_WRITE, NFS_OPEN_SHARE_DENY_NONE, ctx);
2333 if (err) {
2334 NP(np, "nfs_vnop_setattr: close error: %d", err);
2335 }
2336 nofp->nof_flags &= ~NFS_OPEN_FILE_SETATTR;
2337 }
2338 nfs_open_file_clear_busy(nofp);
2339 nofp = NULL;
2340 }
2341 if (nfs_mount_state_in_use_end(nmp, error)) {
2342 goto restart;
2343 }
2344 nfs_open_owner_rele(noop);
2345 }
2346 #endif
2347 }
2348 return error;
2349 }
2350
2351 /*
2352 * Do an NFS setattr RPC.
2353 */
2354 int
2355 nfs3_setattr_rpc(
2356 nfsnode_t np,
2357 struct vnode_attr *vap,
2358 vfs_context_t ctx)
2359 {
2360 struct nfsmount *nmp = NFSTONMP(np);
2361 int error = 0, lockerror = ENOENT, status = 0, wccpostattr = 0, nfsvers;
2362 u_int64_t xid, nextxid;
2363 struct nfsm_chain nmreq, nmrep;
2364
2365 if (nfs_mount_gone(nmp)) {
2366 return ENXIO;
2367 }
2368 nfsvers = nmp->nm_vers;
2369
2370 VATTR_SET_SUPPORTED(vap, va_mode);
2371 VATTR_SET_SUPPORTED(vap, va_uid);
2372 VATTR_SET_SUPPORTED(vap, va_gid);
2373 VATTR_SET_SUPPORTED(vap, va_data_size);
2374 VATTR_SET_SUPPORTED(vap, va_access_time);
2375 VATTR_SET_SUPPORTED(vap, va_modify_time);
2376
2377
2378 if (VATTR_IS_ACTIVE(vap, va_flags)
2379 ) {
2380 if (vap->va_flags) { /* we don't support setting flags */
2381 if (vap->va_active & ~VNODE_ATTR_va_flags) {
2382 return EINVAL; /* return EINVAL if other attributes also set */
2383 } else {
2384 return ENOTSUP; /* return ENOTSUP for chflags(2) */
2385 }
2386 }
2387 /* no flags set, so we'll just ignore it */
2388 if (!(vap->va_active & ~VNODE_ATTR_va_flags)) {
2389 return 0; /* no (other) attributes to set, so nothing to do */
2390 }
2391 }
2392
2393 nfsm_chain_null(&nmreq);
2394 nfsm_chain_null(&nmrep);
2395
2396 nfsm_chain_build_alloc_init(error, &nmreq,
2397 NFSX_FH(nfsvers) + NFSX_SATTR(nfsvers));
2398 nfsm_chain_add_fh(error, &nmreq, nfsvers, np->n_fhp, np->n_fhsize);
2399 if (nfsvers == NFS_VER3) {
2400 if (VATTR_IS_ACTIVE(vap, va_mode)) {
2401 nfsm_chain_add_32(error, &nmreq, TRUE);
2402 nfsm_chain_add_32(error, &nmreq, vap->va_mode);
2403 } else {
2404 nfsm_chain_add_32(error, &nmreq, FALSE);
2405 }
2406 if (VATTR_IS_ACTIVE(vap, va_uid)) {
2407 nfsm_chain_add_32(error, &nmreq, TRUE);
2408 nfsm_chain_add_32(error, &nmreq, vap->va_uid);
2409 } else {
2410 nfsm_chain_add_32(error, &nmreq, FALSE);
2411 }
2412 if (VATTR_IS_ACTIVE(vap, va_gid)) {
2413 nfsm_chain_add_32(error, &nmreq, TRUE);
2414 nfsm_chain_add_32(error, &nmreq, vap->va_gid);
2415 } else {
2416 nfsm_chain_add_32(error, &nmreq, FALSE);
2417 }
2418 if (VATTR_IS_ACTIVE(vap, va_data_size)) {
2419 nfsm_chain_add_32(error, &nmreq, TRUE);
2420 nfsm_chain_add_64(error, &nmreq, vap->va_data_size);
2421 } else {
2422 nfsm_chain_add_32(error, &nmreq, FALSE);
2423 }
2424 if (vap->va_vaflags & VA_UTIMES_NULL) {
2425 nfsm_chain_add_32(error, &nmreq, NFS_TIME_SET_TO_SERVER);
2426 nfsm_chain_add_32(error, &nmreq, NFS_TIME_SET_TO_SERVER);
2427 } else {
2428 if (VATTR_IS_ACTIVE(vap, va_access_time)) {
2429 nfsm_chain_add_32(error, &nmreq, NFS_TIME_SET_TO_CLIENT);
2430 nfsm_chain_add_32(error, &nmreq, vap->va_access_time.tv_sec);
2431 nfsm_chain_add_32(error, &nmreq, vap->va_access_time.tv_nsec);
2432 } else {
2433 nfsm_chain_add_32(error, &nmreq, NFS_TIME_DONT_CHANGE);
2434 }
2435 if (VATTR_IS_ACTIVE(vap, va_modify_time)) {
2436 nfsm_chain_add_32(error, &nmreq, NFS_TIME_SET_TO_CLIENT);
2437 nfsm_chain_add_32(error, &nmreq, vap->va_modify_time.tv_sec);
2438 nfsm_chain_add_32(error, &nmreq, vap->va_modify_time.tv_nsec);
2439 } else {
2440 nfsm_chain_add_32(error, &nmreq, NFS_TIME_DONT_CHANGE);
2441 }
2442 }
2443 nfsm_chain_add_32(error, &nmreq, FALSE);
2444 } else {
2445 nfsm_chain_add_32(error, &nmreq, VATTR_IS_ACTIVE(vap, va_mode) ?
2446 vtonfsv2_mode(vnode_vtype(NFSTOV(np)), vap->va_mode) : -1);
2447 nfsm_chain_add_32(error, &nmreq, VATTR_IS_ACTIVE(vap, va_uid) ?
2448 vap->va_uid : (uint32_t)-1);
2449 nfsm_chain_add_32(error, &nmreq, VATTR_IS_ACTIVE(vap, va_gid) ?
2450 vap->va_gid : (uint32_t)-1);
2451 nfsm_chain_add_32(error, &nmreq, VATTR_IS_ACTIVE(vap, va_data_size) ?
2452 vap->va_data_size : (uint32_t)-1);
2453 if (VATTR_IS_ACTIVE(vap, va_access_time)) {
2454 nfsm_chain_add_32(error, &nmreq, vap->va_access_time.tv_sec);
2455 nfsm_chain_add_32(error, &nmreq, (vap->va_access_time.tv_nsec != -1) ?
2456 ((uint32_t)vap->va_access_time.tv_nsec / 1000) : 0xffffffff);
2457 } else {
2458 nfsm_chain_add_32(error, &nmreq, -1);
2459 nfsm_chain_add_32(error, &nmreq, -1);
2460 }
2461 if (VATTR_IS_ACTIVE(vap, va_modify_time)) {
2462 nfsm_chain_add_32(error, &nmreq, vap->va_modify_time.tv_sec);
2463 nfsm_chain_add_32(error, &nmreq, (vap->va_modify_time.tv_nsec != -1) ?
2464 ((uint32_t)vap->va_modify_time.tv_nsec / 1000) : 0xffffffff);
2465 } else {
2466 nfsm_chain_add_32(error, &nmreq, -1);
2467 nfsm_chain_add_32(error, &nmreq, -1);
2468 }
2469 }
2470 nfsm_chain_build_done(error, &nmreq);
2471 nfsmout_if(error);
2472 error = nfs_request(np, NULL, &nmreq, NFSPROC_SETATTR, ctx, NULL, &nmrep, &xid, &status);
2473 if ((lockerror = nfs_node_lock(np))) {
2474 error = lockerror;
2475 }
2476 if (nfsvers == NFS_VER3) {
2477 struct timespec premtime = { .tv_sec = 0, .tv_nsec = 0 };
2478 nfsm_chain_get_wcc_data(error, &nmrep, np, &premtime, &wccpostattr, &xid);
2479 nfsmout_if(error);
2480 /* if file hadn't changed, update cached mtime */
2481 if (nfstimespeccmp(&np->n_mtime, &premtime, ==)) {
2482 NFS_CHANGED_UPDATE(nfsvers, np, &np->n_vattr);
2483 }
2484 /* if directory hadn't changed, update namecache mtime */
2485 if ((vnode_vtype(NFSTOV(np)) == VDIR) &&
2486 nfstimespeccmp(&np->n_ncmtime, &premtime, ==)) {
2487 NFS_CHANGED_UPDATE_NC(nfsvers, np, &np->n_vattr);
2488 }
2489 if (!wccpostattr) {
2490 NATTRINVALIDATE(np);
2491 }
2492 error = status;
2493 } else {
2494 if (!error) {
2495 error = status;
2496 }
2497 nfsm_chain_loadattr(error, &nmrep, np, nfsvers, &xid);
2498 }
2499 /*
2500 * We just changed the attributes and we want to make sure that we
2501 * see the latest attributes. Get the next XID. If it's not the
2502 * next XID after the SETATTR XID, then it's possible that another
2503 * RPC was in flight at the same time and it might put stale attributes
2504 * in the cache. In that case, we invalidate the attributes and set
2505 * the attribute cache XID to guarantee that newer attributes will
2506 * get loaded next.
2507 */
2508 nextxid = 0;
2509 nfs_get_xid(&nextxid);
2510 if (nextxid != (xid + 1)) {
2511 np->n_xid = nextxid;
2512 NATTRINVALIDATE(np);
2513 }
2514 nfsmout:
2515 if (!lockerror) {
2516 nfs_node_unlock(np);
2517 }
2518 nfsm_chain_cleanup(&nmreq);
2519 nfsm_chain_cleanup(&nmrep);
2520 return error;
2521 }
2522
2523 /*
2524 * NFS lookup call, one step at a time...
2525 * First look in cache
2526 * If not found, unlock the directory nfsnode and do the RPC
2527 */
2528 int
2529 nfs_vnop_lookup(
2530 struct vnop_lookup_args /* {
2531 * struct vnodeop_desc *a_desc;
2532 * vnode_t a_dvp;
2533 * vnode_t *a_vpp;
2534 * struct componentname *a_cnp;
2535 * vfs_context_t a_context;
2536 * } */*ap)
2537 {
2538 vfs_context_t ctx = ap->a_context;
2539 struct componentname *cnp = ap->a_cnp;
2540 vnode_t dvp = ap->a_dvp;
2541 vnode_t *vpp = ap->a_vpp;
2542 int flags = cnp->cn_flags;
2543 vnode_t newvp;
2544 nfsnode_t dnp, np;
2545 struct nfsmount *nmp;
2546 mount_t mp;
2547 int nfsvers, error, busyerror = ENOENT, isdot, isdotdot, negnamecache;
2548 u_int64_t xid = 0;
2549 struct nfs_vattr *nvattr;
2550 int ngflags, skipdu = 0;
2551 struct vnop_access_args naa;
2552 fhandle_t *fh;
2553 struct nfsreq *req;
2554
2555 *vpp = NULLVP;
2556
2557 dnp = VTONFS(dvp);
2558
2559 fh = zalloc(nfs_fhandle_zone);
2560 req = zalloc_flags(nfs_req_zone, Z_WAITOK);
2561 MALLOC(nvattr, struct nfs_vattr *, sizeof(*nvattr), M_TEMP, M_WAITOK);
2562 NVATTR_INIT(nvattr);
2563
2564 mp = vnode_mount(dvp);
2565 nmp = VFSTONFS(mp);
2566 if (nfs_mount_gone(nmp)) {
2567 error = ENXIO;
2568 goto error_return;
2569 }
2570 nfsvers = nmp->nm_vers;
2571 negnamecache = !NMFLAG(nmp, NONEGNAMECACHE);
2572
2573 if ((error = busyerror = nfs_node_set_busy(dnp, vfs_context_thread(ctx)))) {
2574 goto error_return;
2575 }
2576 /* nfs_getattr() will check changed and purge caches */
2577 if ((error = nfs_getattr(dnp, NULL, ctx, NGA_CACHED))) {
2578 goto error_return;
2579 }
2580
2581 error = cache_lookup(dvp, vpp, cnp);
2582 switch (error) {
2583 case ENOENT:
2584 /* negative cache entry */
2585 goto error_return;
2586 case 0:
2587 /* cache miss */
2588 if ((nfsvers > NFS_VER2) && NMFLAG(nmp, RDIRPLUS)) {
2589 /* if rdirplus, try dir buf cache lookup */
2590 error = nfs_dir_buf_cache_lookup(dnp, &np, cnp, ctx, 0, &skipdu);
2591 if (!error && np) {
2592 /* dir buf cache hit */
2593 *vpp = NFSTOV(np);
2594 error = -1;
2595 } else if (skipdu) {
2596 /* Skip lookup for du files */
2597 error = ENOENT;
2598 goto error_return;
2599 }
2600 }
2601 if (error != -1) { /* cache miss */
2602 break;
2603 }
2604 OS_FALLTHROUGH;
2605 case -1:
2606 /* cache hit, not really an error */
2607 OSAddAtomic64(1, &nfsstats.lookupcache_hits);
2608
2609 nfs_node_clear_busy(dnp);
2610 busyerror = ENOENT;
2611
2612 /* check for directory access */
2613 naa.a_desc = &vnop_access_desc;
2614 naa.a_vp = dvp;
2615 naa.a_action = KAUTH_VNODE_SEARCH;
2616 naa.a_context = ctx;
2617
2618 /* compute actual success/failure based on accessibility */
2619 error = nfs_vnop_access(&naa);
2620 OS_FALLTHROUGH;
2621 default:
2622 /* unexpected error from cache_lookup */
2623 goto error_return;
2624 }
2625
2626 /* skip lookup, if we know who we are: "." or ".." */
2627 isdot = isdotdot = 0;
2628 if (cnp->cn_nameptr[0] == '.') {
2629 if (cnp->cn_namelen == 1) {
2630 isdot = 1;
2631 }
2632 if ((cnp->cn_namelen == 2) && (cnp->cn_nameptr[1] == '.')) {
2633 isdotdot = 1;
2634 }
2635 }
2636 if (isdotdot || isdot) {
2637 fh->fh_len = 0;
2638 goto found;
2639 }
2640 #if CONFIG_NFS4
2641 if ((nfsvers >= NFS_VER4) && (dnp->n_vattr.nva_flags & NFS_FFLAG_TRIGGER)) {
2642 /* we should never be looking things up in a trigger directory, return nothing */
2643 error = ENOENT;
2644 goto error_return;
2645 }
2646 #endif
2647
2648 /* do we know this name is too long? */
2649 nmp = VTONMP(dvp);
2650 if (nfs_mount_gone(nmp)) {
2651 error = ENXIO;
2652 goto error_return;
2653 }
2654 if (NFS_BITMAP_ISSET(nmp->nm_fsattr.nfsa_bitmap, NFS_FATTR_MAXNAME) &&
2655 (cnp->cn_namelen > nmp->nm_fsattr.nfsa_maxname)) {
2656 error = ENAMETOOLONG;
2657 goto error_return;
2658 }
2659
2660 error = 0;
2661 newvp = NULLVP;
2662
2663 OSAddAtomic64(1, &nfsstats.lookupcache_misses);
2664
2665 error = nmp->nm_funcs->nf_lookup_rpc_async(dnp, cnp->cn_nameptr, cnp->cn_namelen, ctx, &req);
2666 nfsmout_if(error);
2667 error = nmp->nm_funcs->nf_lookup_rpc_async_finish(dnp, cnp->cn_nameptr, cnp->cn_namelen, ctx, req, &xid, fh, nvattr);
2668 nfsmout_if(error);
2669
2670 /* is the file handle the same as this directory's file handle? */
2671 isdot = NFS_CMPFH(dnp, fh->fh_data, fh->fh_len);
2672
2673 found:
2674 if (flags & ISLASTCN) {
2675 switch (cnp->cn_nameiop) {
2676 case DELETE:
2677 cnp->cn_flags &= ~MAKEENTRY;
2678 break;
2679 case RENAME:
2680 cnp->cn_flags &= ~MAKEENTRY;
2681 if (isdot) {
2682 error = EISDIR;
2683 goto error_return;
2684 }
2685 break;
2686 }
2687 }
2688
2689 if (isdotdot) {
2690 newvp = vnode_getparent(dvp);
2691 if (!newvp) {
2692 error = ENOENT;
2693 goto error_return;
2694 }
2695 } else if (isdot) {
2696 error = vnode_get(dvp);
2697 if (error) {
2698 goto error_return;
2699 }
2700 newvp = dvp;
2701 nfs_node_lock_force(dnp);
2702 if (fh->fh_len && (dnp->n_xid <= xid)) {
2703 nfs_loadattrcache(dnp, nvattr, &xid, 0);
2704 }
2705 nfs_node_unlock(dnp);
2706 } else {
2707 ngflags = (cnp->cn_flags & MAKEENTRY) ? NG_MAKEENTRY : 0;
2708 error = nfs_nget(mp, dnp, cnp, fh->fh_data, fh->fh_len, nvattr, &xid, req->r_auth, ngflags, &np);
2709 if (error) {
2710 goto error_return;
2711 }
2712 newvp = NFSTOV(np);
2713 nfs_node_unlock(np);
2714 }
2715 *vpp = newvp;
2716
2717 nfsmout:
2718 if (error) {
2719 if (((cnp->cn_nameiop == CREATE) || (cnp->cn_nameiop == RENAME)) &&
2720 (flags & ISLASTCN) && (error == ENOENT)) {
2721 if (vnode_mount(dvp) && vnode_vfsisrdonly(dvp)) {
2722 error = EROFS;
2723 } else {
2724 error = EJUSTRETURN;
2725 }
2726 }
2727 }
2728 if ((error == ENOENT) && (cnp->cn_flags & MAKEENTRY) &&
2729 (cnp->cn_nameiop != CREATE) && negnamecache) {
2730 /* add a negative entry in the name cache */
2731 nfs_node_lock_force(dnp);
2732 cache_enter(dvp, NULL, cnp);
2733 dnp->n_flag |= NNEGNCENTRIES;
2734 nfs_node_unlock(dnp);
2735 }
2736 error_return:
2737 NVATTR_CLEANUP(nvattr);
2738 NFS_ZFREE(nfs_fhandle_zone, fh);
2739 NFS_ZFREE(nfs_req_zone, req);
2740 FREE(nvattr, M_TEMP);
2741 if (!busyerror) {
2742 nfs_node_clear_busy(dnp);
2743 }
2744 if (error && *vpp) {
2745 vnode_put(*vpp);
2746 *vpp = NULLVP;
2747 }
2748 return error;
2749 }
2750
2751 int nfs_readlink_nocache = DEFAULT_READLINK_NOCACHE;
2752
2753 /*
2754 * NFS readlink call
2755 */
2756 int
2757 nfs_vnop_readlink(
2758 struct vnop_readlink_args /* {
2759 * struct vnodeop_desc *a_desc;
2760 * vnode_t a_vp;
2761 * struct uio *a_uio;
2762 * vfs_context_t a_context;
2763 * } */*ap)
2764 {
2765 vfs_context_t ctx = ap->a_context;
2766 nfsnode_t np = VTONFS(ap->a_vp);
2767 struct nfsmount *nmp;
2768 int error = 0, nfsvers;
2769 size_t buflen;
2770 uio_t uio = ap->a_uio;
2771 struct nfsbuf *bp = NULL;
2772 struct timespec ts = { .tv_sec = 0, .tv_nsec = 0 };
2773 long timeo = 0;
2774
2775 if (vnode_vtype(ap->a_vp) != VLNK) {
2776 return EPERM;
2777 }
2778
2779 if (uio_resid(uio) == 0) {
2780 return 0;
2781 }
2782 if (uio_offset(uio) < 0) {
2783 return EINVAL;
2784 }
2785
2786 nmp = VTONMP(ap->a_vp);
2787 if (nfs_mount_gone(nmp)) {
2788 return ENXIO;
2789 }
2790 nfsvers = nmp->nm_vers;
2791
2792
2793 /* nfs_getattr() will check changed and purge caches */
2794 if ((error = nfs_getattr(np, NULL, ctx, nfs_readlink_nocache ? NGA_UNCACHED : NGA_CACHED))) {
2795 FSDBG(531, np, 0xd1e0001, 0, error);
2796 return error;
2797 }
2798
2799 if (nfs_readlink_nocache) {
2800 timeo = nfs_attrcachetimeout(np);
2801 nanouptime(&ts);
2802 }
2803
2804 retry:
2805 OSAddAtomic64(1, &nfsstats.biocache_readlinks);
2806 error = nfs_buf_get(np, 0, NFS_MAXPATHLEN, vfs_context_thread(ctx), NBLK_META, &bp);
2807 if (error) {
2808 FSDBG(531, np, 0xd1e0002, 0, error);
2809 return error;
2810 }
2811
2812 if (nfs_readlink_nocache) {
2813 NFS_VNOP_DBG("timeo = %ld ts.tv_sec = %ld need refresh = %d cached = %d\n", timeo, ts.tv_sec,
2814 (np->n_rltim.tv_sec + timeo) < ts.tv_sec || nfs_readlink_nocache > 1,
2815 ISSET(bp->nb_flags, NB_CACHE) == NB_CACHE);
2816 /* n_rltim is synchronized by the associated nfs buf */
2817 if (ISSET(bp->nb_flags, NB_CACHE) && ((nfs_readlink_nocache > 1) || ((np->n_rltim.tv_sec + timeo) < ts.tv_sec))) {
2818 SET(bp->nb_flags, NB_INVAL);
2819 nfs_buf_release(bp, 0);
2820 goto retry;
2821 }
2822 }
2823 if (!ISSET(bp->nb_flags, NB_CACHE)) {
2824 readagain:
2825 OSAddAtomic64(1, &nfsstats.readlink_bios);
2826 buflen = bp->nb_bufsize;
2827 error = nmp->nm_funcs->nf_readlink_rpc(np, bp->nb_data, &buflen, ctx);
2828 if (error) {
2829 if (error == ESTALE) {
2830 NFS_VNOP_DBG("Stale FH from readlink rpc\n");
2831 error = nfs_refresh_fh(np, ctx);
2832 if (error == 0) {
2833 goto readagain;
2834 }
2835 }
2836 SET(bp->nb_flags, NB_ERROR);
2837 bp->nb_error = error;
2838 NFS_VNOP_DBG("readlink failed %d\n", error);
2839 } else {
2840 bp->nb_validoff = 0;
2841 bp->nb_validend = buflen;
2842 np->n_rltim = ts;
2843 NFS_VNOP_DBG("readlink of %.*s\n", (int32_t)bp->nb_validend, (char *)bp->nb_data);
2844 }
2845 } else {
2846 NFS_VNOP_DBG("got cached link of %.*s\n", (int32_t)bp->nb_validend, (char *)bp->nb_data);
2847 }
2848
2849 if (!error && (bp->nb_validend > 0)) {
2850 int validend32 = bp->nb_validend > INT_MAX ? INT_MAX : (int)bp->nb_validend;
2851 error = uiomove(bp->nb_data, validend32, uio);
2852 if (!error && bp->nb_validend > validend32) {
2853 error = uiomove(bp->nb_data + validend32, (int)(bp->nb_validend - validend32), uio);
2854 }
2855 }
2856 FSDBG(531, np, bp->nb_validend, 0, error);
2857 nfs_buf_release(bp, 1);
2858 return error;
2859 }
2860
2861 /*
2862 * Do a readlink RPC.
2863 */
2864 int
2865 nfs3_readlink_rpc(nfsnode_t np, char *buf, size_t *buflenp, vfs_context_t ctx)
2866 {
2867 struct nfsmount *nmp;
2868 int error = 0, lockerror = ENOENT, nfsvers, status;
2869 size_t len;
2870 u_int64_t xid;
2871 struct nfsm_chain nmreq, nmrep;
2872
2873 nmp = NFSTONMP(np);
2874 if (nfs_mount_gone(nmp)) {
2875 return ENXIO;
2876 }
2877 nfsvers = nmp->nm_vers;
2878 nfsm_chain_null(&nmreq);
2879 nfsm_chain_null(&nmrep);
2880
2881 nfsm_chain_build_alloc_init(error, &nmreq, NFSX_FH(nfsvers));
2882 nfsm_chain_add_fh(error, &nmreq, nfsvers, np->n_fhp, np->n_fhsize);
2883 nfsm_chain_build_done(error, &nmreq);
2884 nfsmout_if(error);
2885 error = nfs_request(np, NULL, &nmreq, NFSPROC_READLINK, ctx, NULL, &nmrep, &xid, &status);
2886 if ((lockerror = nfs_node_lock(np))) {
2887 error = lockerror;
2888 }
2889 if (nfsvers == NFS_VER3) {
2890 nfsm_chain_postop_attr_update(error, &nmrep, np, &xid);
2891 }
2892 if (!error) {
2893 error = status;
2894 }
2895 nfsm_chain_get_32(error, &nmrep, len);
2896 nfsmout_if(error);
2897 if ((nfsvers == NFS_VER2) && (len > *buflenp)) {
2898 error = EBADRPC;
2899 goto nfsmout;
2900 }
2901 if (len >= *buflenp) {
2902 if (np->n_size && (np->n_size < *buflenp)) {
2903 len = (size_t)np->n_size;
2904 } else {
2905 len = *buflenp - 1;
2906 }
2907 }
2908 nfsm_chain_get_opaque(error, &nmrep, len, buf);
2909 if (!error) {
2910 *buflenp = len;
2911 }
2912 nfsmout:
2913 if (!lockerror) {
2914 nfs_node_unlock(np);
2915 }
2916 nfsm_chain_cleanup(&nmreq);
2917 nfsm_chain_cleanup(&nmrep);
2918 return error;
2919 }
2920
2921 /*
2922 * NFS read RPC call
2923 * Ditto above
2924 */
2925 int
2926 nfs_read_rpc(nfsnode_t np, uio_t uio, vfs_context_t ctx)
2927 {
2928 struct nfsmount *nmp;
2929 int error = 0, nfsvers, eof = 0;
2930 size_t nmrsize, len, retlen;
2931 user_ssize_t tsiz;
2932 off_t txoffset;
2933 struct nfsreq *req;
2934 #if CONFIG_NFS4
2935 uint32_t stategenid = 0, restart = 0;
2936 #endif
2937 FSDBG_TOP(536, np, uio_offset(uio), uio_resid(uio), 0);
2938 nmp = NFSTONMP(np);
2939 if (nfs_mount_gone(nmp)) {
2940 return ENXIO;
2941 }
2942 nfsvers = nmp->nm_vers;
2943 nmrsize = nmp->nm_rsize;
2944
2945 txoffset = uio_offset(uio);
2946 tsiz = uio_resid(uio);
2947 if ((nfsvers == NFS_VER2) && ((uint64_t)(txoffset + tsiz) > 0xffffffffULL)) {
2948 FSDBG_BOT(536, np, uio_offset(uio), uio_resid(uio), EFBIG);
2949 return EFBIG;
2950 }
2951
2952 req = zalloc_flags(nfs_req_zone, Z_WAITOK);
2953 while (tsiz > 0) {
2954 len = retlen = (tsiz > (user_ssize_t)nmrsize) ? nmrsize : (size_t)tsiz;
2955 FSDBG(536, np, txoffset, len, 0);
2956 if (np->n_flag & NREVOKE) {
2957 error = EIO;
2958 break;
2959 }
2960 #if CONFIG_NFS4
2961 if (nmp->nm_vers >= NFS_VER4) {
2962 stategenid = nmp->nm_stategenid;
2963 }
2964 #endif
2965 error = nmp->nm_funcs->nf_read_rpc_async(np, txoffset, len,
2966 vfs_context_thread(ctx), vfs_context_ucred(ctx), NULL, &req);
2967 if (!error) {
2968 error = nmp->nm_funcs->nf_read_rpc_async_finish(np, req, uio, &retlen, &eof);
2969 }
2970 #if CONFIG_NFS4
2971 if ((nmp->nm_vers >= NFS_VER4) && nfs_mount_state_error_should_restart(error) &&
2972 (++restart <= nfs_mount_state_max_restarts(nmp))) { /* guard against no progress */
2973 lck_mtx_lock(&nmp->nm_lock);
2974 if ((error != NFSERR_GRACE) && (stategenid == nmp->nm_stategenid)) {
2975 NP(np, "nfs_read_rpc: error %d, initiating recovery", error);
2976 nfs_need_recover(nmp, error);
2977 }
2978 lck_mtx_unlock(&nmp->nm_lock);
2979 if (np->n_flag & NREVOKE) {
2980 error = EIO;
2981 } else {
2982 if (error == NFSERR_GRACE) {
2983 tsleep(&nmp->nm_state, (PZERO - 1), "nfsgrace", 2 * hz);
2984 }
2985 if (!(error = nfs_mount_state_wait_for_recovery(nmp))) {
2986 continue;
2987 }
2988 }
2989 }
2990 #endif
2991 if (error) {
2992 break;
2993 }
2994 txoffset += retlen;
2995 tsiz -= retlen;
2996 if (nfsvers != NFS_VER2) {
2997 if (eof || (retlen == 0)) {
2998 tsiz = 0;
2999 }
3000 } else if (retlen < len) {
3001 tsiz = 0;
3002 }
3003 }
3004
3005 NFS_ZFREE(nfs_req_zone, req);
3006 FSDBG_BOT(536, np, eof, uio_resid(uio), error);
3007 return error;
3008 }
3009
3010 int
3011 nfs3_read_rpc_async(
3012 nfsnode_t np,
3013 off_t offset,
3014 size_t len,
3015 thread_t thd,
3016 kauth_cred_t cred,
3017 struct nfsreq_cbinfo *cb,
3018 struct nfsreq **reqp)
3019 {
3020 struct nfsmount *nmp;
3021 int error = 0, nfsvers;
3022 struct nfsm_chain nmreq;
3023
3024 nmp = NFSTONMP(np);
3025 if (nfs_mount_gone(nmp)) {
3026 return ENXIO;
3027 }
3028 nfsvers = nmp->nm_vers;
3029
3030 nfsm_chain_null(&nmreq);
3031 nfsm_chain_build_alloc_init(error, &nmreq, NFSX_FH(nfsvers) + 3 * NFSX_UNSIGNED);
3032 nfsm_chain_add_fh(error, &nmreq, nfsvers, np->n_fhp, np->n_fhsize);
3033 if (nfsvers == NFS_VER3) {
3034 nfsm_chain_add_64(error, &nmreq, offset);
3035 nfsm_chain_add_32(error, &nmreq, len);
3036 } else {
3037 nfsm_chain_add_32(error, &nmreq, offset);
3038 nfsm_chain_add_32(error, &nmreq, len);
3039 nfsm_chain_add_32(error, &nmreq, 0);
3040 }
3041 nfsm_chain_build_done(error, &nmreq);
3042 nfsmout_if(error);
3043 error = nfs_request_async(np, NULL, &nmreq, NFSPROC_READ, thd, cred, NULL, 0, cb, reqp);
3044 nfsmout:
3045 nfsm_chain_cleanup(&nmreq);
3046 return error;
3047 }
3048
3049 int
3050 nfs3_read_rpc_async_finish(
3051 nfsnode_t np,
3052 struct nfsreq *req,
3053 uio_t uio,
3054 size_t *lenp,
3055 int *eofp)
3056 {
3057 int error = 0, lockerror, nfsvers, status = 0, eof = 0;
3058 uint32_t retlen = 0;
3059 uint64_t xid;
3060 struct nfsmount *nmp;
3061 struct nfsm_chain nmrep;
3062
3063 nmp = NFSTONMP(np);
3064 if (nfs_mount_gone(nmp)) {
3065 nfs_request_async_cancel(req);
3066 return ENXIO;
3067 }
3068 nfsvers = nmp->nm_vers;
3069
3070 nfsm_chain_null(&nmrep);
3071
3072 error = nfs_request_async_finish(req, &nmrep, &xid, &status);
3073 if (error == EINPROGRESS) { /* async request restarted */
3074 return error;
3075 }
3076
3077 if ((lockerror = nfs_node_lock(np))) {
3078 error = lockerror;
3079 }
3080 if (nfsvers == NFS_VER3) {
3081 nfsm_chain_postop_attr_update(error, &nmrep, np, &xid);
3082 }
3083 if (!error) {
3084 error = status;
3085 }
3086 if (nfsvers == NFS_VER3) {
3087 nfsm_chain_adv(error, &nmrep, NFSX_UNSIGNED);
3088 nfsm_chain_get_32(error, &nmrep, eof);
3089 } else {
3090 nfsm_chain_loadattr(error, &nmrep, np, nfsvers, &xid);
3091 }
3092 if (!lockerror) {
3093 nfs_node_unlock(np);
3094 }
3095 nfsm_chain_get_32(error, &nmrep, retlen);
3096 if ((nfsvers == NFS_VER2) && (retlen > *lenp)) {
3097 error = EBADRPC;
3098 }
3099 nfsmout_if(error);
3100 error = nfsm_chain_get_uio(&nmrep, MIN(retlen, *lenp), uio);
3101 if (eofp) {
3102 if (nfsvers == NFS_VER3) {
3103 if (!eof && !retlen) {
3104 eof = 1;
3105 }
3106 } else if (retlen < *lenp) {
3107 eof = 1;
3108 }
3109 *eofp = eof;
3110 }
3111 *lenp = MIN(retlen, *lenp);
3112 nfsmout:
3113 nfsm_chain_cleanup(&nmrep);
3114 return error;
3115 }
3116
3117 /*
3118 * NFS write call
3119 */
3120 int
3121 nfs_vnop_write(
3122 struct vnop_write_args /* {
3123 * struct vnodeop_desc *a_desc;
3124 * vnode_t a_vp;
3125 * struct uio *a_uio;
3126 * int a_ioflag;
3127 * vfs_context_t a_context;
3128 * } */*ap)
3129 {
3130 vfs_context_t ctx = ap->a_context;
3131 uio_t uio = ap->a_uio;
3132 vnode_t vp = ap->a_vp;
3133 nfsnode_t np = VTONFS(vp);
3134 int ioflag = ap->a_ioflag;
3135 struct nfsbuf *bp;
3136 struct nfsmount *nmp = VTONMP(vp);
3137 daddr64_t lbn;
3138 uint32_t biosize;
3139 int error = 0;
3140 off_t n, on;
3141 int n32;
3142 off_t boff, start, end;
3143 uio_t auio;
3144 char auio_buf[UIO_SIZEOF(1)];
3145 thread_t thd;
3146 kauth_cred_t cred;
3147
3148 FSDBG_TOP(515, np, uio_offset(uio), uio_resid(uio), ioflag);
3149
3150 if (vnode_vtype(vp) != VREG) {
3151 FSDBG_BOT(515, np, uio_offset(uio), uio_resid(uio), EIO);
3152 return EIO;
3153 }
3154
3155 thd = vfs_context_thread(ctx);
3156 cred = vfs_context_ucred(ctx);
3157
3158 nfs_data_lock(np, NFS_DATA_LOCK_SHARED);
3159
3160 if ((error = nfs_node_lock(np))) {
3161 nfs_data_unlock(np);
3162 FSDBG_BOT(515, np, uio_offset(uio), uio_resid(uio), error);
3163 return error;
3164 }
3165 np->n_wrbusy++;
3166
3167 if (np->n_flag & NWRITEERR) {
3168 error = np->n_error;
3169 np->n_flag &= ~NWRITEERR;
3170 }
3171 if (np->n_flag & NNEEDINVALIDATE) {
3172 np->n_flag &= ~NNEEDINVALIDATE;
3173 nfs_node_unlock(np);
3174 nfs_data_unlock(np);
3175 nfs_vinvalbuf(vp, V_SAVE | V_IGNORE_WRITEERR, ctx, 1);
3176 nfs_data_lock(np, NFS_DATA_LOCK_SHARED);
3177 } else {
3178 nfs_node_unlock(np);
3179 }
3180 if (error) {
3181 goto out;
3182 }
3183
3184 biosize = nmp->nm_biosize;
3185
3186 if (ioflag & (IO_APPEND | IO_SYNC)) {
3187 nfs_node_lock_force(np);
3188 if (np->n_flag & NMODIFIED) {
3189 NATTRINVALIDATE(np);
3190 nfs_node_unlock(np);
3191 nfs_data_unlock(np);
3192 error = nfs_vinvalbuf(vp, V_SAVE, ctx, 1);
3193 nfs_data_lock(np, NFS_DATA_LOCK_SHARED);
3194 if (error) {
3195 FSDBG(515, np, uio_offset(uio), 0x10bad01, error);
3196 goto out;
3197 }
3198 } else {
3199 nfs_node_unlock(np);
3200 }
3201 if (ioflag & IO_APPEND) {
3202 nfs_data_unlock(np);
3203 /* nfs_getattr() will check changed and purge caches */
3204 error = nfs_getattr(np, NULL, ctx, NGA_UNCACHED);
3205 /* we'll be extending the file, so take the data lock exclusive */
3206 nfs_data_lock(np, NFS_DATA_LOCK_EXCLUSIVE);
3207 if (error) {
3208 FSDBG(515, np, uio_offset(uio), 0x10bad02, error);
3209 goto out;
3210 }
3211 uio_setoffset(uio, np->n_size);
3212 }
3213 }
3214 if (uio_offset(uio) < 0) {
3215 error = EINVAL;
3216 FSDBG_BOT(515, np, uio_offset(uio), 0xbad0ff, error);
3217 goto out;
3218 }
3219 if (uio_resid(uio) == 0) {
3220 goto out;
3221 }
3222
3223 if (((uio_offset(uio) + uio_resid(uio)) > (off_t)np->n_size) && !(ioflag & IO_APPEND)) {
3224 /*
3225 * It looks like we'll be extending the file, so take the data lock exclusive.
3226 */
3227 nfs_data_unlock(np);
3228 nfs_data_lock(np, NFS_DATA_LOCK_EXCLUSIVE);
3229
3230 /*
3231 * Also, if the write begins after the previous EOF buffer, make sure to zero
3232 * and validate the new bytes in that buffer.
3233 */
3234 struct nfsbuf *eofbp = NULL;
3235 daddr64_t eofbn = np->n_size / biosize;
3236 uint32_t eofoff = np->n_size % biosize;
3237 lbn = uio_offset(uio) / biosize;
3238
3239 if (eofoff && (eofbn < lbn)) {
3240 if ((error = nfs_buf_get(np, eofbn, biosize, thd, NBLK_WRITE | NBLK_ONLYVALID, &eofbp))) {
3241 goto out;
3242 }
3243 np->n_size += (biosize - eofoff);
3244 nfs_node_lock_force(np);
3245 CLR(np->n_flag, NUPDATESIZE);
3246 np->n_flag |= NMODIFIED;
3247 nfs_node_unlock(np);
3248 FSDBG(516, np, np->n_size, np->n_vattr.nva_size, 0xf00d0001);
3249 ubc_setsize(vp, (off_t)np->n_size); /* XXX errors */
3250 if (eofbp) {
3251 /*
3252 * For the old last page, don't zero bytes if there
3253 * are invalid bytes in that page (i.e. the page isn't
3254 * currently valid).
3255 * For pages after the old last page, zero them and
3256 * mark them as valid.
3257 */
3258 char *d;
3259 int i;
3260 if (ioflag & IO_NOCACHE) {
3261 SET(eofbp->nb_flags, NB_NOCACHE);
3262 }
3263 NFS_BUF_MAP(eofbp);
3264 FSDBG(516, eofbp, eofoff, biosize - eofoff, 0xe0fff01e);
3265 d = eofbp->nb_data;
3266 i = eofoff / PAGE_SIZE;
3267 while (eofoff < biosize) {
3268 int poff = eofoff & PAGE_MASK;
3269 if (!poff || NBPGVALID(eofbp, i)) {
3270 bzero(d + eofoff, PAGE_SIZE - poff);
3271 NBPGVALID_SET(eofbp, i);
3272 }
3273 eofoff += PAGE_SIZE - poff;
3274 i++;
3275 }
3276 nfs_buf_release(eofbp, 1);
3277 }
3278 }
3279 }
3280
3281 do {
3282 OSAddAtomic64(1, &nfsstats.biocache_writes);
3283 lbn = uio_offset(uio) / biosize;
3284 on = uio_offset(uio) % biosize;
3285 n = biosize - on;
3286 if (uio_resid(uio) < n) {
3287 n = uio_resid(uio);
3288 }
3289 again:
3290 /*
3291 * Get a cache block for writing. The range to be written is
3292 * (off..off+n) within the block. We ensure that the block
3293 * either has no dirty region or that the given range is
3294 * contiguous with the existing dirty region.
3295 */
3296 error = nfs_buf_get(np, lbn, biosize, thd, NBLK_WRITE, &bp);
3297 if (error) {
3298 goto out;
3299 }
3300 /* map the block because we know we're going to write to it */
3301 NFS_BUF_MAP(bp);
3302
3303 if (ioflag & IO_NOCACHE) {
3304 SET(bp->nb_flags, NB_NOCACHE);
3305 }
3306
3307 if (!IS_VALID_CRED(bp->nb_wcred)) {
3308 kauth_cred_ref(cred);
3309 bp->nb_wcred = cred;
3310 }
3311
3312 /*
3313 * If there's already a dirty range AND dirty pages in this block we
3314 * need to send a commit AND write the dirty pages before continuing.
3315 *
3316 * If there's already a dirty range OR dirty pages in this block
3317 * and the new write range is not contiguous with the existing range,
3318 * then force the buffer to be written out now.
3319 * (We used to just extend the dirty range to cover the valid,
3320 * but unwritten, data in between also. But writing ranges
3321 * of data that weren't actually written by an application
3322 * risks overwriting some other client's data with stale data
3323 * that's just masquerading as new written data.)
3324 */
3325 if (bp->nb_dirtyend > 0) {
3326 if (on > bp->nb_dirtyend || (on + n) < bp->nb_dirtyoff || nfs_buf_pgs_is_set(&bp->nb_dirty)) {
3327 FSDBG(515, np, uio_offset(uio), bp, 0xd15c001);
3328 /* write/commit buffer "synchronously" */
3329 /* (NB_STABLE indicates that data writes should be FILESYNC) */
3330 CLR(bp->nb_flags, (NB_DONE | NB_ERROR | NB_INVAL));
3331 SET(bp->nb_flags, (NB_ASYNC | NB_STABLE));
3332 error = nfs_buf_write(bp);
3333 if (error) {
3334 goto out;
3335 }
3336 goto again;
3337 }
3338 } else if (nfs_buf_pgs_is_set(&bp->nb_dirty)) {
3339 off_t firstpg = 0, lastpg = 0;
3340 nfsbufpgs pagemask, pagemaskand;
3341 /* calculate write range pagemask */
3342 if (n > 0) {
3343 firstpg = on / PAGE_SIZE;
3344 lastpg = (on + n - 1) / PAGE_SIZE;
3345 nfs_buf_pgs_set_pages_between(&pagemask, firstpg, lastpg + 1);
3346 } else {
3347 NBPGS_ERASE(&pagemask);
3348 }
3349 /* check if there are dirty pages outside the write range */
3350 nfs_buf_pgs_bit_not(&pagemask);
3351 nfs_buf_pgs_bit_and(&bp->nb_dirty, &pagemask, &pagemaskand);
3352 if (nfs_buf_pgs_is_set(&pagemaskand)) {
3353 FSDBG(515, np, uio_offset(uio), bp, 0xd15c002);
3354 /* write/commit buffer "synchronously" */
3355 /* (NB_STABLE indicates that data writes should be FILESYNC) */
3356 CLR(bp->nb_flags, (NB_DONE | NB_ERROR | NB_INVAL));
3357 SET(bp->nb_flags, (NB_ASYNC | NB_STABLE));
3358 error = nfs_buf_write(bp);
3359 if (error) {
3360 goto out;
3361 }
3362 goto again;
3363 }
3364 /* if the first or last pages are already dirty */
3365 /* make sure that the dirty range encompasses those pages */
3366 if (NBPGDIRTY(bp, firstpg) || NBPGDIRTY(bp, lastpg)) {
3367 FSDBG(515, np, uio_offset(uio), bp, 0xd15c003);
3368 bp->nb_dirtyoff = MIN(on, firstpg * PAGE_SIZE);
3369 if (NBPGDIRTY(bp, lastpg)) {
3370 bp->nb_dirtyend = (lastpg + 1) * PAGE_SIZE;
3371 /* clip to EOF */
3372 if (NBOFF(bp) + bp->nb_dirtyend > (off_t)np->n_size) {
3373 bp->nb_dirtyend = np->n_size - NBOFF(bp);
3374 if (bp->nb_dirtyoff >= bp->nb_dirtyend) {
3375 bp->nb_dirtyoff = bp->nb_dirtyend = 0;
3376 }
3377 }
3378 } else {
3379 bp->nb_dirtyend = on + n;
3380 }
3381 }
3382 }
3383
3384 /*
3385 * Are we extending the size of the file with this write?
3386 * If so, update file size now that we have the block.
3387 * If there was a partial buf at the old eof, validate
3388 * and zero the new bytes.
3389 */
3390 if ((uio_offset(uio) + n) > (off_t)np->n_size) {
3391 daddr64_t eofbn = np->n_size / biosize;
3392 int neweofoff = (uio_offset(uio) + n) % biosize;
3393
3394 FSDBG(515, 0xb1ffa000, uio_offset(uio) + n, eofoff, neweofoff);
3395
3396 /* if we're extending within the same last block */
3397 /* and the block is flagged as being cached... */
3398 if ((lbn == eofbn) && ISSET(bp->nb_flags, NB_CACHE)) {
3399 /* ...check that all pages in buffer are valid */
3400 int endpg = ((neweofoff ? neweofoff : biosize) - 1) / PAGE_SIZE;
3401 nfsbufpgs pagemask, pagemaskand;
3402 /* pagemask only has to extend to last page being written to */
3403 nfs_buf_pgs_get_page_mask(&pagemask, endpg + 1);
3404 FSDBG(515, 0xb1ffa001, bp->nb_valid, pagemask, 0);
3405 nfs_buf_pgs_bit_and(&bp->nb_valid, &pagemask, &pagemaskand);
3406 if (!NBPGS_IS_EQUAL(&pagemaskand, &pagemask)) {
3407 /* zerofill any hole */
3408 if (on > bp->nb_validend) {
3409 for (off_t i = bp->nb_validend / PAGE_SIZE; i <= (on - 1) / PAGE_SIZE; i++) {
3410 NBPGVALID_SET(bp, i);
3411 }
3412 NFS_BUF_MAP(bp);
3413 FSDBG(516, bp, bp->nb_validend, on - bp->nb_validend, 0xf01e);
3414 NFS_BZERO((char *)bp->nb_data + bp->nb_validend, on - bp->nb_validend);
3415 }
3416 /* zerofill any trailing data in the last page */
3417 if (neweofoff) {
3418 NFS_BUF_MAP(bp);
3419 FSDBG(516, bp, neweofoff, PAGE_SIZE - (neweofoff & PAGE_MASK), 0xe0f);
3420 bzero((char *)bp->nb_data + neweofoff,
3421 PAGE_SIZE - (neweofoff & PAGE_MASK));
3422 }
3423 }
3424 }
3425 np->n_size = uio_offset(uio) + n;
3426 nfs_node_lock_force(np);
3427 CLR(np->n_flag, NUPDATESIZE);
3428 np->n_flag |= NMODIFIED;
3429 nfs_node_unlock(np);
3430 FSDBG(516, np, np->n_size, np->n_vattr.nva_size, 0xf00d0001);
3431 ubc_setsize(vp, (off_t)np->n_size); /* XXX errors */
3432 }
3433 /*
3434 * If dirtyend exceeds file size, chop it down. This should
3435 * not occur unless there is a race.
3436 */
3437 if (NBOFF(bp) + bp->nb_dirtyend > (off_t)np->n_size) {
3438 bp->nb_dirtyend = np->n_size - NBOFF(bp);
3439 if (bp->nb_dirtyoff >= bp->nb_dirtyend) {
3440 bp->nb_dirtyoff = bp->nb_dirtyend = 0;
3441 }
3442 }
3443 /*
3444 * UBC doesn't handle partial pages, so we need to make sure
3445 * that any pages left in the page cache are completely valid.
3446 *
3447 * Writes that are smaller than a block are delayed if they
3448 * don't extend to the end of the block.
3449 *
3450 * If the block isn't (completely) cached, we may need to read
3451 * in some parts of pages that aren't covered by the write.
3452 * If the write offset (on) isn't page aligned, we'll need to
3453 * read the start of the first page being written to. Likewise,
3454 * if the offset of the end of the write (on+n) isn't page aligned,
3455 * we'll need to read the end of the last page being written to.
3456 *
3457 * Notes:
3458 * We don't want to read anything we're just going to write over.
3459 * We don't want to read anything we're just going drop when the
3460 * I/O is complete (i.e. don't do reads for NOCACHE requests).
3461 * We don't want to issue multiple I/Os if we don't have to
3462 * (because they're synchronous rpcs).
3463 * We don't want to read anything we already have modified in the
3464 * page cache.
3465 */
3466 if (!ISSET(bp->nb_flags, NB_CACHE) && (n < biosize)) {
3467 off_t firstpgoff, lastpgoff, firstpg, lastpg, dirtypg;
3468 start = end = -1;
3469 firstpg = on / PAGE_SIZE;
3470 firstpgoff = on & PAGE_MASK;
3471 lastpg = (on + n - 1) / PAGE_SIZE;
3472 lastpgoff = (on + n) & PAGE_MASK;
3473 if (firstpgoff && !NBPGVALID(bp, firstpg)) {
3474 /* need to read start of first page */
3475 start = firstpg * PAGE_SIZE;
3476 end = start + firstpgoff;
3477 }
3478 if (lastpgoff && !NBPGVALID(bp, lastpg)) {
3479 /* need to read end of last page */
3480 if (start < 0) {
3481 start = (lastpg * PAGE_SIZE) + lastpgoff;
3482 }
3483 end = (lastpg + 1) * PAGE_SIZE;
3484 }
3485 if (ISSET(bp->nb_flags, NB_NOCACHE)) {
3486 /*
3487 * For nocache writes, if there is any partial page at the
3488 * start or end of the write range, then we do the write
3489 * synchronously to make sure that we can drop the data
3490 * from the cache as soon as the WRITE finishes. Normally,
3491 * we would do an unstable write and not drop the data until
3492 * it was committed. But doing that here would risk allowing
3493 * invalid data to be read from the cache between the WRITE
3494 * and the COMMIT.
3495 * (NB_STABLE indicates that data writes should be FILESYNC)
3496 */
3497 if (end > start) {
3498 SET(bp->nb_flags, NB_STABLE);
3499 }
3500 goto skipread;
3501 }
3502 if (end > start) {
3503 /* need to read the data in range: start...end-1 */
3504
3505 /* first, check for dirty pages in between */
3506 /* if there are, we'll have to do two reads because */
3507 /* we don't want to overwrite the dirty pages. */
3508 for (dirtypg = start / PAGE_SIZE; dirtypg <= (end - 1) / PAGE_SIZE; dirtypg++) {
3509 if (NBPGDIRTY(bp, dirtypg)) {
3510 break;
3511 }
3512 }
3513
3514 /* if start is at beginning of page, try */
3515 /* to get any preceeding pages as well. */
3516 if (!(start & PAGE_MASK)) {
3517 /* stop at next dirty/valid page or start of block */
3518 for (; start > 0; start -= PAGE_SIZE) {
3519 if (NBPGVALID(bp, ((start - 1) / PAGE_SIZE))) {
3520 break;
3521 }
3522 }
3523 }
3524
3525 NFS_BUF_MAP(bp);
3526 /* setup uio for read(s) */
3527 boff = NBOFF(bp);
3528 auio = uio_createwithbuffer(1, 0, UIO_SYSSPACE, UIO_READ,
3529 &auio_buf, sizeof(auio_buf));
3530
3531 if (dirtypg <= (end - 1) / PAGE_SIZE) {
3532 /* there's a dirty page in the way, so just do two reads */
3533 /* we'll read the preceding data here */
3534 uio_reset(auio, boff + start, UIO_SYSSPACE, UIO_READ);
3535 NFS_UIO_ADDIOV(auio, CAST_USER_ADDR_T(bp->nb_data + start), on - start);
3536 error = nfs_read_rpc(np, auio, ctx);
3537 if (error) {
3538 /* couldn't read the data, so treat buffer as synchronous NOCACHE */
3539 SET(bp->nb_flags, (NB_NOCACHE | NB_STABLE));
3540 goto skipread;
3541 }
3542 if (uio_resid(auio) > 0) {
3543 FSDBG(516, bp, (caddr_t)uio_curriovbase(auio) - bp->nb_data, uio_resid(auio), 0xd00dee01);
3544 bzero(CAST_DOWN(caddr_t, uio_curriovbase(auio)), uio_resid(auio));
3545 }
3546 if (!error) {
3547 /* update validoff/validend if necessary */
3548 if ((bp->nb_validoff < 0) || (bp->nb_validoff > start)) {
3549 bp->nb_validoff = start;
3550 }
3551 if ((bp->nb_validend < 0) || (bp->nb_validend < on)) {
3552 bp->nb_validend = on;
3553 }
3554 if ((off_t)np->n_size > boff + bp->nb_validend) {
3555 bp->nb_validend = MIN(np->n_size - (boff + start), biosize);
3556 }
3557 /* validate any pages before the write offset */
3558 for (; start < on / PAGE_SIZE; start += PAGE_SIZE) {
3559 NBPGVALID_SET(bp, start / PAGE_SIZE);
3560 }
3561 }
3562 /* adjust start to read any trailing data */
3563 start = on + n;
3564 }
3565
3566 /* if end is at end of page, try to */
3567 /* get any following pages as well. */
3568 if (!(end & PAGE_MASK)) {
3569 /* stop at next valid page or end of block */
3570 for (; end < biosize; end += PAGE_SIZE) {
3571 if (NBPGVALID(bp, end / PAGE_SIZE)) {
3572 break;
3573 }
3574 }
3575 }
3576
3577 if (((boff + start) >= (off_t)np->n_size) ||
3578 ((start >= on) && ((boff + on + n) >= (off_t)np->n_size))) {
3579 /*
3580 * Either this entire read is beyond the current EOF
3581 * or the range that we won't be modifying (on+n...end)
3582 * is all beyond the current EOF.
3583 * No need to make a trip across the network to
3584 * read nothing. So, just zero the buffer instead.
3585 */
3586 FSDBG(516, bp, start, end - start, 0xd00dee00);
3587 NFS_BZERO(bp->nb_data + start, end - start);
3588 error = 0;
3589 } else {
3590 /* now we'll read the (rest of the) data */
3591 uio_reset(auio, boff + start, UIO_SYSSPACE, UIO_READ);
3592 NFS_UIO_ADDIOV(auio, CAST_USER_ADDR_T(bp->nb_data + start), end - start);
3593 error = nfs_read_rpc(np, auio, ctx);
3594 if (error) {
3595 /* couldn't read the data, so treat buffer as synchronous NOCACHE */
3596 SET(bp->nb_flags, (NB_NOCACHE | NB_STABLE));
3597 goto skipread;
3598 }
3599 if (uio_resid(auio) > 0) {
3600 FSDBG(516, bp, (caddr_t)uio_curriovbase(auio) - bp->nb_data, uio_resid(auio), 0xd00dee02);
3601 bzero(CAST_DOWN(caddr_t, uio_curriovbase(auio)), uio_resid(auio));
3602 }
3603 }
3604 if (!error) {
3605 /* update validoff/validend if necessary */
3606 if ((bp->nb_validoff < 0) || (bp->nb_validoff > start)) {
3607 bp->nb_validoff = start;
3608 }
3609 if ((bp->nb_validend < 0) || (bp->nb_validend < end)) {
3610 bp->nb_validend = end;
3611 }
3612 if ((off_t)np->n_size > boff + bp->nb_validend) {
3613 bp->nb_validend = MIN(np->n_size - (boff + start), biosize);
3614 }
3615 /* validate any pages before the write offset's page */
3616 for (; start < (off_t)trunc_page_64(on); start += PAGE_SIZE) {
3617 NBPGVALID_SET(bp, start / PAGE_SIZE);
3618 }
3619 /* validate any pages after the range of pages being written to */
3620 for (; (end - 1) > (off_t)round_page_64(on + n - 1); end -= PAGE_SIZE) {
3621 NBPGVALID_SET(bp, (end - 1) / PAGE_SIZE);
3622 }
3623 }
3624 /* Note: pages being written to will be validated when written */
3625 }
3626 }
3627 skipread:
3628
3629 if (ISSET(bp->nb_flags, NB_ERROR)) {
3630 error = bp->nb_error;
3631 nfs_buf_release(bp, 1);
3632 goto out;
3633 }
3634
3635 nfs_node_lock_force(np);
3636 np->n_flag |= NMODIFIED;
3637 nfs_node_unlock(np);
3638
3639 NFS_BUF_MAP(bp);
3640 if (n < 0) {
3641 error = EINVAL;
3642 } else {
3643 n32 = n > INT_MAX ? INT_MAX : (int)n;
3644 error = uiomove(bp->nb_data + on, n32, uio);
3645 if (!error && n > n32) {
3646 error = uiomove(bp->nb_data + on + n32, (int)(n - n32), uio);
3647 }
3648 }
3649 if (error) {
3650 SET(bp->nb_flags, NB_ERROR);
3651 nfs_buf_release(bp, 1);
3652 goto out;
3653 }
3654
3655 /* validate any pages written to */
3656 start = on & ~PAGE_MASK;
3657 for (; start < on + n; start += PAGE_SIZE) {
3658 NBPGVALID_SET(bp, start / PAGE_SIZE);
3659 /*
3660 * This may seem a little weird, but we don't actually set the
3661 * dirty bits for writes. This is because we keep the dirty range
3662 * in the nb_dirtyoff/nb_dirtyend fields. Also, particularly for
3663 * delayed writes, when we give the pages back to the VM we don't
3664 * want to keep them marked dirty, because when we later write the
3665 * buffer we won't be able to tell which pages were written dirty
3666 * and which pages were mmapped and dirtied.
3667 */
3668 }
3669 if (bp->nb_dirtyend > 0) {
3670 bp->nb_dirtyoff = MIN(on, bp->nb_dirtyoff);
3671 bp->nb_dirtyend = MAX((on + n), bp->nb_dirtyend);
3672 } else {
3673 bp->nb_dirtyoff = on;
3674 bp->nb_dirtyend = on + n;
3675 }
3676 if (bp->nb_validend <= 0 || bp->nb_validend < bp->nb_dirtyoff ||
3677 bp->nb_validoff > bp->nb_dirtyend) {
3678 bp->nb_validoff = bp->nb_dirtyoff;
3679 bp->nb_validend = bp->nb_dirtyend;
3680 } else {
3681 bp->nb_validoff = MIN(bp->nb_validoff, bp->nb_dirtyoff);
3682 bp->nb_validend = MAX(bp->nb_validend, bp->nb_dirtyend);
3683 }
3684 if (!ISSET(bp->nb_flags, NB_CACHE)) {
3685 nfs_buf_normalize_valid_range(np, bp);
3686 }
3687
3688 /*
3689 * Since this block is being modified, it must be written
3690 * again and not just committed.
3691 */
3692 if (ISSET(bp->nb_flags, NB_NEEDCOMMIT)) {
3693 nfs_node_lock_force(np);
3694 if (ISSET(bp->nb_flags, NB_NEEDCOMMIT)) {
3695 np->n_needcommitcnt--;
3696 CHECK_NEEDCOMMITCNT(np);
3697 }
3698 CLR(bp->nb_flags, NB_NEEDCOMMIT);
3699 nfs_node_unlock(np);
3700 }
3701
3702 if (ioflag & IO_SYNC) {
3703 error = nfs_buf_write(bp);
3704 if (error) {
3705 goto out;
3706 }
3707 if (np->n_needcommitcnt >= NFS_A_LOT_OF_NEEDCOMMITS) {
3708 nfs_flushcommits(np, 1);
3709 }
3710 } else if (((n + on) == biosize) || (ioflag & IO_APPEND) ||
3711 (ioflag & IO_NOCACHE) || ISSET(bp->nb_flags, NB_NOCACHE)) {
3712 SET(bp->nb_flags, NB_ASYNC);
3713 error = nfs_buf_write(bp);
3714 if (error) {
3715 goto out;
3716 }
3717 } else {
3718 /* If the block wasn't already delayed: charge for the write */
3719 if (!ISSET(bp->nb_flags, NB_DELWRI)) {
3720 proc_t p = vfs_context_proc(ctx);
3721 if (p && p->p_stats) {
3722 OSIncrementAtomicLong(&p->p_stats->p_ru.ru_oublock);
3723 }
3724 }
3725 nfs_buf_write_delayed(bp);
3726 }
3727
3728 } while (uio_resid(uio) > 0 && n > 0);
3729
3730 out:
3731 nfs_node_lock_force(np);
3732 np->n_wrbusy--;
3733 if ((ioflag & IO_SYNC) && !np->n_wrbusy && !np->n_numoutput) {
3734 np->n_flag &= ~NMODIFIED;
3735 }
3736 nfs_node_unlock(np);
3737 nfs_data_unlock(np);
3738 FSDBG_BOT(515, np, uio_offset(uio), uio_resid(uio), error);
3739 return error;
3740 }
3741
3742
3743 /*
3744 * NFS write call
3745 */
3746 int
3747 nfs_write_rpc(
3748 nfsnode_t np,
3749 uio_t uio,
3750 vfs_context_t ctx,
3751 int *iomodep,
3752 uint64_t *wverfp)
3753 {
3754 return nfs_write_rpc2(np, uio, vfs_context_thread(ctx), vfs_context_ucred(ctx), iomodep, wverfp);
3755 }
3756
3757 int
3758 nfs_write_rpc2(
3759 nfsnode_t np,
3760 uio_t uio,
3761 thread_t thd,
3762 kauth_cred_t cred,
3763 int *iomodep,
3764 uint64_t *wverfp)
3765 {
3766 struct nfsmount *nmp;
3767 int error = 0, nfsvers;
3768 int wverfset, commit = 0, committed;
3769 uint64_t wverf = 0, wverf2 = 0;
3770 size_t nmwsize, totalsize, tsiz, len, rlen = 0;
3771 struct nfsreq *req;
3772 #if CONFIG_NFS4
3773 uint32_t stategenid = 0, restart = 0;
3774 #endif
3775 uint32_t vrestart = 0;
3776 uio_t uio_save = NULL;
3777
3778 #if DIAGNOSTIC
3779 /* XXX limitation based on need to back up uio on short write */
3780 if (uio_iovcnt(uio) != 1) {
3781 panic("nfs3_write_rpc: iovcnt > 1");
3782 }
3783 #endif
3784 FSDBG_TOP(537, np, uio_offset(uio), uio_resid(uio), *iomodep);
3785 nmp = NFSTONMP(np);
3786 if (nfs_mount_gone(nmp)) {
3787 return ENXIO;
3788 }
3789 nfsvers = nmp->nm_vers;
3790 nmwsize = nmp->nm_wsize;
3791
3792 wverfset = 0;
3793 committed = NFS_WRITE_FILESYNC;
3794
3795 totalsize = tsiz = uio_resid(uio);
3796 if ((nfsvers == NFS_VER2) && ((uint64_t)(uio_offset(uio) + tsiz) > 0xffffffffULL)) {
3797 FSDBG_BOT(537, np, uio_offset(uio), uio_resid(uio), EFBIG);
3798 return EFBIG;
3799 }
3800
3801 uio_save = uio_duplicate(uio);
3802 if (uio_save == NULL) {
3803 return EIO;
3804 }
3805
3806 req = zalloc_flags(nfs_req_zone, Z_WAITOK);
3807 while (tsiz > 0) {
3808 len = (tsiz > nmwsize) ? nmwsize : tsiz;
3809 FSDBG(537, np, uio_offset(uio), len, 0);
3810 if (np->n_flag & NREVOKE) {
3811 error = EIO;
3812 break;
3813 }
3814 #if CONFIG_NFS4
3815 if (nmp->nm_vers >= NFS_VER4) {
3816 stategenid = nmp->nm_stategenid;
3817 }
3818 #endif
3819 error = nmp->nm_funcs->nf_write_rpc_async(np, uio, len, thd, cred, *iomodep, NULL, &req);
3820 if (!error) {
3821 error = nmp->nm_funcs->nf_write_rpc_async_finish(np, req, &commit, &rlen, &wverf2);
3822 }
3823 nmp = NFSTONMP(np);
3824 if (nfs_mount_gone(nmp)) {
3825 error = ENXIO;
3826 }
3827 #if CONFIG_NFS4
3828 if ((nmp->nm_vers >= NFS_VER4) && nfs_mount_state_error_should_restart(error) &&
3829 (++restart <= nfs_mount_state_max_restarts(nmp))) { /* guard against no progress */
3830 lck_mtx_lock(&nmp->nm_lock);
3831 if ((error != NFSERR_GRACE) && (stategenid == nmp->nm_stategenid)) {
3832 NP(np, "nfs_write_rpc: error %d, initiating recovery", error);
3833 nfs_need_recover(nmp, error);
3834 }
3835 lck_mtx_unlock(&nmp->nm_lock);
3836 if (np->n_flag & NREVOKE) {
3837 error = EIO;
3838 } else {
3839 if (error == NFSERR_GRACE) {
3840 tsleep(&nmp->nm_state, (PZERO - 1), "nfsgrace", 2 * hz);
3841 }
3842 if (!(error = nfs_mount_state_wait_for_recovery(nmp))) {
3843 continue;
3844 }
3845 }
3846 }
3847 #endif
3848 if (error) {
3849 break;
3850 }
3851 if (nfsvers == NFS_VER2) {
3852 tsiz -= len;
3853 continue;
3854 }
3855
3856 /* check for a short write */
3857 if (rlen < len) {
3858 /* Reset the uio to reflect the actual transfer */
3859 *uio = *uio_save;
3860 uio_update(uio, totalsize - (tsiz - rlen));
3861 len = rlen;
3862 }
3863
3864 /* return lowest commit level returned */
3865 if (commit < committed) {
3866 committed = commit;
3867 }
3868
3869 tsiz -= len;
3870
3871 /* check write verifier */
3872 if (!wverfset) {
3873 wverf = wverf2;
3874 wverfset = 1;
3875 } else if (wverf != wverf2) {
3876 /* verifier changed, so we need to restart all the writes */
3877 if (++vrestart > 100) {
3878 /* give up after too many restarts */
3879 error = EIO;
3880 break;
3881 }
3882 *uio = *uio_save; // Reset the uio back to the start
3883 committed = NFS_WRITE_FILESYNC;
3884 wverfset = 0;
3885 tsiz = totalsize;
3886 }
3887 }
3888 if (uio_save) {
3889 uio_free(uio_save);
3890 }
3891 if (wverfset && wverfp) {
3892 *wverfp = wverf;
3893 }
3894 *iomodep = committed;
3895 if (error) {
3896 uio_setresid(uio, tsiz);
3897 }
3898 NFS_ZFREE(nfs_req_zone, req);
3899 FSDBG_BOT(537, np, committed, uio_resid(uio), error);
3900 return error;
3901 }
3902
3903 int
3904 nfs3_write_rpc_async(
3905 nfsnode_t np,
3906 uio_t uio,
3907 size_t len,
3908 thread_t thd,
3909 kauth_cred_t cred,
3910 int iomode,
3911 struct nfsreq_cbinfo *cb,
3912 struct nfsreq **reqp)
3913 {
3914 struct nfsmount *nmp;
3915 mount_t mp;
3916 int error = 0, nfsvers;
3917 struct nfsm_chain nmreq;
3918
3919 nmp = NFSTONMP(np);
3920 if (nfs_mount_gone(nmp)) {
3921 return ENXIO;
3922 }
3923 nfsvers = nmp->nm_vers;
3924
3925 /* for async mounts, don't bother sending sync write requests */
3926 if ((iomode != NFS_WRITE_UNSTABLE) && nfs_allow_async &&
3927 ((mp = NFSTOMP(np))) && (vfs_flags(mp) & MNT_ASYNC)) {
3928 iomode = NFS_WRITE_UNSTABLE;
3929 }
3930
3931 nfsm_chain_null(&nmreq);
3932 nfsm_chain_build_alloc_init(error, &nmreq,
3933 NFSX_FH(nfsvers) + 5 * NFSX_UNSIGNED + nfsm_rndup(len));
3934 nfsm_chain_add_fh(error, &nmreq, nfsvers, np->n_fhp, np->n_fhsize);
3935 if (nfsvers == NFS_VER3) {
3936 nfsm_chain_add_64(error, &nmreq, uio_offset(uio));
3937 nfsm_chain_add_32(error, &nmreq, len);
3938 nfsm_chain_add_32(error, &nmreq, iomode);
3939 } else {
3940 nfsm_chain_add_32(error, &nmreq, 0);
3941 nfsm_chain_add_32(error, &nmreq, uio_offset(uio));
3942 nfsm_chain_add_32(error, &nmreq, 0);
3943 }
3944 nfsm_chain_add_32(error, &nmreq, len);
3945 nfsmout_if(error);
3946 error = nfsm_chain_add_uio(&nmreq, uio, len);
3947 nfsm_chain_build_done(error, &nmreq);
3948 nfsmout_if(error);
3949 error = nfs_request_async(np, NULL, &nmreq, NFSPROC_WRITE, thd, cred, NULL, 0, cb, reqp);
3950 nfsmout:
3951 nfsm_chain_cleanup(&nmreq);
3952 return error;
3953 }
3954
3955 int
3956 nfs3_write_rpc_async_finish(
3957 nfsnode_t np,
3958 struct nfsreq *req,
3959 int *iomodep,
3960 size_t *rlenp,
3961 uint64_t *wverfp)
3962 {
3963 struct nfsmount *nmp;
3964 int error = 0, lockerror = ENOENT, nfsvers, status;
3965 int updatemtime = 0, wccpostattr = 0, rlen, committed = NFS_WRITE_FILESYNC;
3966 u_int64_t xid, wverf;
3967 mount_t mp;
3968 struct nfsm_chain nmrep;
3969
3970 nmp = NFSTONMP(np);
3971 if (nfs_mount_gone(nmp)) {
3972 nfs_request_async_cancel(req);
3973 return ENXIO;
3974 }
3975 nfsvers = nmp->nm_vers;
3976
3977 nfsm_chain_null(&nmrep);
3978
3979 error = nfs_request_async_finish(req, &nmrep, &xid, &status);
3980 if (error == EINPROGRESS) { /* async request restarted */
3981 return error;
3982 }
3983 nmp = NFSTONMP(np);
3984 if (nfs_mount_gone(nmp)) {
3985 error = ENXIO;
3986 }
3987 if (!error && (lockerror = nfs_node_lock(np))) {
3988 error = lockerror;
3989 }
3990 if (nfsvers == NFS_VER3) {
3991 struct timespec premtime = { .tv_sec = 0, .tv_nsec = 0 };
3992 nfsm_chain_get_wcc_data(error, &nmrep, np, &premtime, &wccpostattr, &xid);
3993 if (nfstimespeccmp(&np->n_mtime, &premtime, ==)) {
3994 updatemtime = 1;
3995 }
3996 if (!error) {
3997 error = status;
3998 }
3999 nfsm_chain_get_32(error, &nmrep, rlen);
4000 nfsmout_if(error);
4001 *rlenp = rlen;
4002 if (rlen <= 0) {
4003 error = NFSERR_IO;
4004 }
4005 nfsm_chain_get_32(error, &nmrep, committed);
4006 nfsm_chain_get_64(error, &nmrep, wverf);
4007 nfsmout_if(error);
4008 if (wverfp) {
4009 *wverfp = wverf;
4010 }
4011 lck_mtx_lock(&nmp->nm_lock);
4012 if (!(nmp->nm_state & NFSSTA_HASWRITEVERF)) {
4013 nmp->nm_verf = wverf;
4014 nmp->nm_state |= NFSSTA_HASWRITEVERF;
4015 } else if (nmp->nm_verf != wverf) {
4016 nmp->nm_verf = wverf;
4017 }
4018 lck_mtx_unlock(&nmp->nm_lock);
4019 } else {
4020 if (!error) {
4021 error = status;
4022 }
4023 nfsm_chain_loadattr(error, &nmrep, np, nfsvers, &xid);
4024 nfsmout_if(error);
4025 }
4026 if (updatemtime) {
4027 NFS_CHANGED_UPDATE(nfsvers, np, &np->n_vattr);
4028 }
4029 nfsmout:
4030 if (!lockerror) {
4031 nfs_node_unlock(np);
4032 }
4033 nfsm_chain_cleanup(&nmrep);
4034 if ((committed != NFS_WRITE_FILESYNC) && nfs_allow_async &&
4035 ((mp = NFSTOMP(np))) && (vfs_flags(mp) & MNT_ASYNC)) {
4036 committed = NFS_WRITE_FILESYNC;
4037 }
4038 *iomodep = committed;
4039 return error;
4040 }
4041
4042 /*
4043 * NFS mknod vnode op
4044 *
4045 * For NFS v2 this is a kludge. Use a create RPC but with the IFMT bits of the
4046 * mode set to specify the file type and the size field for rdev.
4047 */
4048 int
4049 nfs3_vnop_mknod(
4050 struct vnop_mknod_args /* {
4051 * struct vnodeop_desc *a_desc;
4052 * vnode_t a_dvp;
4053 * vnode_t *a_vpp;
4054 * struct componentname *a_cnp;
4055 * struct vnode_attr *a_vap;
4056 * vfs_context_t a_context;
4057 * } */*ap)
4058 {
4059 vnode_t dvp = ap->a_dvp;
4060 vnode_t *vpp = ap->a_vpp;
4061 struct componentname *cnp = ap->a_cnp;
4062 struct vnode_attr *vap = ap->a_vap;
4063 vfs_context_t ctx = ap->a_context;
4064 vnode_t newvp = NULL;
4065 nfsnode_t np = NULL;
4066 struct nfsmount *nmp;
4067 nfsnode_t dnp = VTONFS(dvp);
4068 struct nfs_vattr *nvattr;
4069 fhandle_t *fh;
4070 int error = 0, lockerror = ENOENT, busyerror = ENOENT, status = 0, wccpostattr = 0;
4071 struct timespec premtime = { .tv_sec = 0, .tv_nsec = 0 };
4072 u_int32_t rdev;
4073 u_int64_t xid = 0, dxid;
4074 int nfsvers, gotuid, gotgid;
4075 struct nfsm_chain nmreq, nmrep;
4076 struct nfsreq *req;
4077
4078 nmp = VTONMP(dvp);
4079 if (nfs_mount_gone(nmp)) {
4080 return ENXIO;
4081 }
4082 nfsvers = nmp->nm_vers;
4083
4084 if (!VATTR_IS_ACTIVE(vap, va_type)) {
4085 return EINVAL;
4086 }
4087 if (vap->va_type == VCHR || vap->va_type == VBLK) {
4088 if (!VATTR_IS_ACTIVE(vap, va_rdev)) {
4089 return EINVAL;
4090 }
4091 rdev = vap->va_rdev;
4092 } else if (vap->va_type == VFIFO || vap->va_type == VSOCK) {
4093 rdev = 0xffffffff;
4094 } else {
4095 return ENOTSUP;
4096 }
4097 if ((nfsvers == NFS_VER2) && (cnp->cn_namelen > NFS_MAXNAMLEN)) {
4098 return ENAMETOOLONG;
4099 }
4100
4101 nfs_avoid_needless_id_setting_on_create(dnp, vap, ctx);
4102
4103 VATTR_SET_SUPPORTED(vap, va_mode);
4104 VATTR_SET_SUPPORTED(vap, va_uid);
4105 VATTR_SET_SUPPORTED(vap, va_gid);
4106 VATTR_SET_SUPPORTED(vap, va_data_size);
4107 VATTR_SET_SUPPORTED(vap, va_access_time);
4108 VATTR_SET_SUPPORTED(vap, va_modify_time);
4109 gotuid = VATTR_IS_ACTIVE(vap, va_uid);
4110 gotgid = VATTR_IS_ACTIVE(vap, va_gid);
4111
4112 nfsm_chain_null(&nmreq);
4113 nfsm_chain_null(&nmrep);
4114
4115 fh = zalloc(nfs_fhandle_zone);
4116 req = zalloc_flags(nfs_req_zone, Z_WAITOK);
4117 MALLOC(nvattr, struct nfs_vattr *, sizeof(*nvattr), M_TEMP, M_WAITOK);
4118
4119 nfsm_chain_build_alloc_init(error, &nmreq,
4120 NFSX_FH(nfsvers) + 4 * NFSX_UNSIGNED +
4121 nfsm_rndup(cnp->cn_namelen) + NFSX_SATTR(nfsvers));
4122 nfsm_chain_add_fh(error, &nmreq, nfsvers, dnp->n_fhp, dnp->n_fhsize);
4123 nfsm_chain_add_name(error, &nmreq, cnp->cn_nameptr, cnp->cn_namelen, nmp);
4124 if (nfsvers == NFS_VER3) {
4125 nfsm_chain_add_32(error, &nmreq, vtonfs_type(vap->va_type, nfsvers));
4126 nfsm_chain_add_v3sattr(nmp, error, &nmreq, vap);
4127 if (vap->va_type == VCHR || vap->va_type == VBLK) {
4128 nfsm_chain_add_32(error, &nmreq, major(vap->va_rdev));
4129 nfsm_chain_add_32(error, &nmreq, minor(vap->va_rdev));
4130 }
4131 } else {
4132 nfsm_chain_add_v2sattr(error, &nmreq, vap, rdev);
4133 }
4134 nfsm_chain_build_done(error, &nmreq);
4135 if (!error) {
4136 error = busyerror = nfs_node_set_busy(dnp, vfs_context_thread(ctx));
4137 }
4138 nfsmout_if(error);
4139
4140 error = nfs_request_async(dnp, NULL, &nmreq, NFSPROC_MKNOD,
4141 vfs_context_thread(ctx), vfs_context_ucred(ctx), NULL, 0, NULL, &req);
4142 if (!error) {
4143 error = nfs_request_async_finish(req, &nmrep, &xid, &status);
4144 }
4145
4146 if ((lockerror = nfs_node_lock(dnp))) {
4147 error = lockerror;
4148 }
4149 /* XXX no EEXIST kludge here? */
4150 dxid = xid;
4151 if (!error && !status) {
4152 if (dnp->n_flag & NNEGNCENTRIES) {
4153 dnp->n_flag &= ~NNEGNCENTRIES;
4154 cache_purge_negatives(dvp);
4155 }
4156 error = nfsm_chain_get_fh_attr(nmp, &nmrep, dnp, ctx, nfsvers, &xid, fh, nvattr);
4157 }
4158 if (nfsvers == NFS_VER3) {
4159 nfsm_chain_get_wcc_data(error, &nmrep, dnp, &premtime, &wccpostattr, &dxid);
4160 }
4161 if (!error) {
4162 error = status;
4163 }
4164 nfsmout:
4165 nfsm_chain_cleanup(&nmreq);
4166 nfsm_chain_cleanup(&nmrep);
4167
4168 if (!lockerror) {
4169 dnp->n_flag |= NMODIFIED;
4170 /* if directory hadn't changed, update namecache mtime */
4171 if (nfstimespeccmp(&dnp->n_ncmtime, &premtime, ==)) {
4172 NFS_CHANGED_UPDATE_NC(nfsvers, dnp, &dnp->n_vattr);
4173 }
4174 nfs_node_unlock(dnp);
4175 /* nfs_getattr() will check changed and purge caches */
4176 nfs_getattr(dnp, NULL, ctx, wccpostattr ? NGA_CACHED : NGA_UNCACHED);
4177 }
4178
4179 if (!error && fh->fh_len) {
4180 error = nfs_nget(NFSTOMP(dnp), dnp, cnp, fh->fh_data, fh->fh_len, nvattr, &xid, req->r_auth, NG_MAKEENTRY, &np);
4181 }
4182 if (!error && !np) {
4183 error = nfs_lookitup(dnp, cnp->cn_nameptr, cnp->cn_namelen, ctx, &np);
4184 }
4185 if (!error && np) {
4186 newvp = NFSTOV(np);
4187 }
4188 if (!busyerror) {
4189 nfs_node_clear_busy(dnp);
4190 }
4191
4192 if (!error && (gotuid || gotgid) &&
4193 (!newvp || nfs_getattrcache(np, nvattr, 0) ||
4194 (gotuid && (nvattr->nva_uid != vap->va_uid)) ||
4195 (gotgid && (nvattr->nva_gid != vap->va_gid)))) {
4196 /* clear ID bits if server didn't use them (or we can't tell) */
4197 VATTR_CLEAR_SUPPORTED(vap, va_uid);
4198 VATTR_CLEAR_SUPPORTED(vap, va_gid);
4199 }
4200 if (error) {
4201 if (newvp) {
4202 nfs_node_unlock(np);
4203 vnode_put(newvp);
4204 }
4205 } else {
4206 *vpp = newvp;
4207 nfs_node_unlock(np);
4208 }
4209 NFS_ZFREE(nfs_fhandle_zone, fh);
4210 NFS_ZFREE(nfs_req_zone, req);
4211 FREE(nvattr, M_TEMP);
4212 return error;
4213 }
4214
4215 static uint32_t create_verf;
4216 /*
4217 * NFS file create call
4218 */
4219 int
4220 nfs3_vnop_create(
4221 struct vnop_create_args /* {
4222 * struct vnodeop_desc *a_desc;
4223 * vnode_t a_dvp;
4224 * vnode_t *a_vpp;
4225 * struct componentname *a_cnp;
4226 * struct vnode_attr *a_vap;
4227 * vfs_context_t a_context;
4228 * } */*ap)
4229 {
4230 vfs_context_t ctx = ap->a_context;
4231 vnode_t dvp = ap->a_dvp;
4232 struct vnode_attr *vap = ap->a_vap;
4233 struct componentname *cnp = ap->a_cnp;
4234 struct nfs_vattr *nvattr;
4235 fhandle_t *fh;
4236 nfsnode_t np = NULL;
4237 struct nfsmount *nmp;
4238 nfsnode_t dnp = VTONFS(dvp);
4239 vnode_t newvp = NULL;
4240 int error = 0, lockerror = ENOENT, busyerror = ENOENT, status = 0, wccpostattr = 0, fmode = 0;
4241 struct timespec premtime = { .tv_sec = 0, .tv_nsec = 0 };
4242 int nfsvers, gotuid, gotgid;
4243 u_int64_t xid = 0, dxid;
4244 uint32_t val;
4245 struct nfsm_chain nmreq, nmrep;
4246 struct nfsreq *req;
4247 struct nfs_dulookup *dul;
4248 int dul_in_progress = 0;
4249 int namedattrs;
4250
4251 nmp = VTONMP(dvp);
4252 if (nfs_mount_gone(nmp)) {
4253 return ENXIO;
4254 }
4255 nfsvers = nmp->nm_vers;
4256 namedattrs = (nmp->nm_fsattr.nfsa_flags & NFS_FSFLAG_NAMED_ATTR);
4257
4258 if ((nfsvers == NFS_VER2) && (cnp->cn_namelen > NFS_MAXNAMLEN)) {
4259 return ENAMETOOLONG;
4260 }
4261
4262 nfs_avoid_needless_id_setting_on_create(dnp, vap, ctx);
4263
4264 VATTR_SET_SUPPORTED(vap, va_mode);
4265 VATTR_SET_SUPPORTED(vap, va_uid);
4266 VATTR_SET_SUPPORTED(vap, va_gid);
4267 VATTR_SET_SUPPORTED(vap, va_data_size);
4268 VATTR_SET_SUPPORTED(vap, va_access_time);
4269 VATTR_SET_SUPPORTED(vap, va_modify_time);
4270 gotuid = VATTR_IS_ACTIVE(vap, va_uid);
4271 gotgid = VATTR_IS_ACTIVE(vap, va_gid);
4272
4273 if ((vap->va_vaflags & VA_EXCLUSIVE)
4274 ) {
4275 fmode |= O_EXCL;
4276 if (!VATTR_IS_ACTIVE(vap, va_access_time) || !VATTR_IS_ACTIVE(vap, va_modify_time)) {
4277 vap->va_vaflags |= VA_UTIMES_NULL;
4278 }
4279 }
4280
4281 fh = zalloc(nfs_fhandle_zone);
4282 req = zalloc_flags(nfs_req_zone, Z_WAITOK);
4283 MALLOC(dul, struct nfs_dulookup *, sizeof(*dul), M_TEMP, M_WAITOK);
4284 MALLOC(nvattr, struct nfs_vattr *, sizeof(*nvattr), M_TEMP, M_WAITOK);
4285
4286 again:
4287 error = busyerror = nfs_node_set_busy(dnp, vfs_context_thread(ctx));
4288 if (!namedattrs) {
4289 nfs_dulookup_init(dul, dnp, cnp->cn_nameptr, cnp->cn_namelen, ctx);
4290 }
4291
4292 nfsm_chain_null(&nmreq);
4293 nfsm_chain_null(&nmrep);
4294
4295 nfsm_chain_build_alloc_init(error, &nmreq,
4296 NFSX_FH(nfsvers) + 2 * NFSX_UNSIGNED +
4297 nfsm_rndup(cnp->cn_namelen) + NFSX_SATTR(nfsvers));
4298 nfsm_chain_add_fh(error, &nmreq, nfsvers, dnp->n_fhp, dnp->n_fhsize);
4299 nfsm_chain_add_name(error, &nmreq, cnp->cn_nameptr, cnp->cn_namelen, nmp);
4300 if (nfsvers == NFS_VER3) {
4301 if (fmode & O_EXCL) {
4302 nfsm_chain_add_32(error, &nmreq, NFS_CREATE_EXCLUSIVE);
4303 lck_rw_lock_shared(in_ifaddr_rwlock);
4304 if (!TAILQ_EMPTY(&in_ifaddrhead)) {
4305 val = IA_SIN(in_ifaddrhead.tqh_first)->sin_addr.s_addr;
4306 } else {
4307 val = create_verf;
4308 }
4309 lck_rw_done(in_ifaddr_rwlock);
4310 nfsm_chain_add_32(error, &nmreq, val);
4311 ++create_verf;
4312 nfsm_chain_add_32(error, &nmreq, create_verf);
4313 } else {
4314 nfsm_chain_add_32(error, &nmreq, NFS_CREATE_UNCHECKED);
4315 nfsm_chain_add_v3sattr(nmp, error, &nmreq, vap);
4316 }
4317 } else {
4318 nfsm_chain_add_v2sattr(error, &nmreq, vap, 0);
4319 }
4320 nfsm_chain_build_done(error, &nmreq);
4321 nfsmout_if(error);
4322
4323 error = nfs_request_async(dnp, NULL, &nmreq, NFSPROC_CREATE,
4324 vfs_context_thread(ctx), vfs_context_ucred(ctx), NULL, 0, NULL, &req);
4325 if (!error) {
4326 if (!namedattrs) {
4327 nfs_dulookup_start(dul, dnp, ctx);
4328 dul_in_progress = 1;
4329 }
4330 error = nfs_request_async_finish(req, &nmrep, &xid, &status);
4331 }
4332
4333 if ((lockerror = nfs_node_lock(dnp))) {
4334 error = lockerror;
4335 }
4336 dxid = xid;
4337 if (!error && !status) {
4338 if (dnp->n_flag & NNEGNCENTRIES) {
4339 dnp->n_flag &= ~NNEGNCENTRIES;
4340 cache_purge_negatives(dvp);
4341 }
4342 error = nfsm_chain_get_fh_attr(nmp, &nmrep, dnp, ctx, nfsvers, &xid, fh, nvattr);
4343 }
4344 if (nfsvers == NFS_VER3) {
4345 nfsm_chain_get_wcc_data(error, &nmrep, dnp, &premtime, &wccpostattr, &dxid);
4346 }
4347 if (!error) {
4348 error = status;
4349 }
4350 nfsmout:
4351 nfsm_chain_cleanup(&nmreq);
4352 nfsm_chain_cleanup(&nmrep);
4353
4354 if (!lockerror) {
4355 dnp->n_flag |= NMODIFIED;
4356 /* if directory hadn't changed, update namecache mtime */
4357 if (nfstimespeccmp(&dnp->n_ncmtime, &premtime, ==)) {
4358 NFS_CHANGED_UPDATE_NC(nfsvers, dnp, &dnp->n_vattr);
4359 }
4360 nfs_node_unlock(dnp);
4361 /* nfs_getattr() will check changed and purge caches */
4362 nfs_getattr(dnp, NULL, ctx, wccpostattr ? NGA_CACHED : NGA_UNCACHED);
4363 }
4364
4365 if (!error && fh->fh_len) {
4366 error = nfs_nget(NFSTOMP(dnp), dnp, cnp, fh->fh_data, fh->fh_len, nvattr, &xid, req->r_auth, NG_MAKEENTRY, &np);
4367 }
4368 if (!error && !np) {
4369 error = nfs_lookitup(dnp, cnp->cn_nameptr, cnp->cn_namelen, ctx, &np);
4370 }
4371 if (!error && np) {
4372 newvp = NFSTOV(np);
4373 }
4374
4375 if (dul_in_progress) {
4376 nfs_dulookup_finish(dul, dnp, ctx);
4377 }
4378 if (!busyerror) {
4379 nfs_node_clear_busy(dnp);
4380 }
4381
4382 if (error) {
4383 if ((nfsvers == NFS_VER3) && (fmode & O_EXCL) && (error == NFSERR_NOTSUPP)) {
4384 fmode &= ~O_EXCL;
4385 goto again;
4386 }
4387 if (newvp) {
4388 nfs_node_unlock(np);
4389 vnode_put(newvp);
4390 }
4391 } else if ((nfsvers == NFS_VER3) && (fmode & O_EXCL)) {
4392 nfs_node_unlock(np);
4393 error = nfs3_setattr_rpc(np, vap, ctx);
4394 if (error && (gotuid || gotgid)) {
4395 /* it's possible the server didn't like our attempt to set IDs. */
4396 /* so, let's try it again without those */
4397 VATTR_CLEAR_ACTIVE(vap, va_uid);
4398 VATTR_CLEAR_ACTIVE(vap, va_gid);
4399 error = nfs3_setattr_rpc(np, vap, ctx);
4400 }
4401 if (error) {
4402 vnode_put(newvp);
4403 } else {
4404 nfs_node_lock_force(np);
4405 }
4406 }
4407 if (!error) {
4408 *ap->a_vpp = newvp;
4409 }
4410 if (!error && (gotuid || gotgid) &&
4411 (!newvp || nfs_getattrcache(np, nvattr, 0) ||
4412 (gotuid && (nvattr->nva_uid != vap->va_uid)) ||
4413 (gotgid && (nvattr->nva_gid != vap->va_gid)))) {
4414 /* clear ID bits if server didn't use them (or we can't tell) */
4415 VATTR_CLEAR_SUPPORTED(vap, va_uid);
4416 VATTR_CLEAR_SUPPORTED(vap, va_gid);
4417 }
4418 if (!error) {
4419 nfs_node_unlock(np);
4420 }
4421 NFS_ZFREE(nfs_fhandle_zone, fh);
4422 NFS_ZFREE(nfs_req_zone, req);
4423 FREE(dul, M_TEMP);
4424 FREE(nvattr, M_TEMP);
4425 return error;
4426 }
4427
4428 /*
4429 * NFS file remove call
4430 * To try and make NFS semantics closer to UFS semantics, a file that has
4431 * other processes using the vnode is renamed instead of removed and then
4432 * removed later on the last close.
4433 * - If vnode_isinuse()
4434 * If a rename is not already in the works
4435 * call nfs_sillyrename() to set it up
4436 * else
4437 * do the remove RPC
4438 */
4439 int
4440 nfs_vnop_remove(
4441 struct vnop_remove_args /* {
4442 * struct vnodeop_desc *a_desc;
4443 * vnode_t a_dvp;
4444 * vnode_t a_vp;
4445 * struct componentname *a_cnp;
4446 * int a_flags;
4447 * vfs_context_t a_context;
4448 * } */*ap)
4449 {
4450 vfs_context_t ctx = ap->a_context;
4451 vnode_t vp = ap->a_vp;
4452 vnode_t dvp = ap->a_dvp;
4453 struct componentname *cnp = ap->a_cnp;
4454 nfsnode_t dnp = VTONFS(dvp);
4455 nfsnode_t np = VTONFS(vp);
4456 int error = 0, nfsvers, namedattrs, inuse, gotattr = 0, flushed = 0, setsize = 0;
4457 struct nfs_vattr *nvattr;
4458 struct nfsmount *nmp;
4459 struct nfs_dulookup *dul;
4460
4461 /* XXX prevent removing a sillyrenamed file? */
4462
4463 nmp = NFSTONMP(dnp);
4464 if (nfs_mount_gone(nmp)) {
4465 return ENXIO;
4466 }
4467
4468 if (vnode_isdir(vp)) {
4469 return EPERM;
4470 }
4471
4472 nfsvers = nmp->nm_vers;
4473 namedattrs = (nmp->nm_fsattr.nfsa_flags & NFS_FSFLAG_NAMED_ATTR);
4474 MALLOC(dul, struct nfs_dulookup *, sizeof(*dul), M_TEMP, M_WAITOK);
4475 MALLOC(nvattr, struct nfs_vattr *, sizeof(*nvattr), M_TEMP, M_WAITOK);
4476
4477 again_relock:
4478 error = nfs_node_set_busy2(dnp, np, vfs_context_thread(ctx));
4479 if (error) {
4480 goto out_free;
4481 }
4482
4483 /* lock the node while we remove the file */
4484 lck_mtx_lock(nfs_node_hash_mutex);
4485 while (np->n_hflag & NHLOCKED) {
4486 np->n_hflag |= NHLOCKWANT;
4487 msleep(np, nfs_node_hash_mutex, PINOD, "nfs_remove", NULL);
4488 }
4489 np->n_hflag |= NHLOCKED;
4490 lck_mtx_unlock(nfs_node_hash_mutex);
4491
4492 if (!namedattrs) {
4493 nfs_dulookup_init(dul, dnp, cnp->cn_nameptr, cnp->cn_namelen, ctx);
4494 }
4495
4496 again:
4497 inuse = vnode_isinuse(vp, 0);
4498 if ((ap->a_flags & VNODE_REMOVE_NODELETEBUSY) && inuse) {
4499 /* Caller requested Carbon delete semantics, but file is busy */
4500 error = EBUSY;
4501 goto out;
4502 }
4503 if (inuse && !gotattr) {
4504 if (nfs_getattr(np, nvattr, ctx, NGA_CACHED)) {
4505 nvattr->nva_nlink = 1;
4506 }
4507 gotattr = 1;
4508 goto again;
4509 }
4510 if (!inuse || (np->n_sillyrename && (nvattr->nva_nlink > 1))) {
4511 if (!inuse && !flushed) { /* flush all the buffers first */
4512 /* unlock the node */
4513 lck_mtx_lock(nfs_node_hash_mutex);
4514 np->n_hflag &= ~NHLOCKED;
4515 if (np->n_hflag & NHLOCKWANT) {
4516 np->n_hflag &= ~NHLOCKWANT;
4517 wakeup(np);
4518 }
4519 lck_mtx_unlock(nfs_node_hash_mutex);
4520 nfs_node_clear_busy2(dnp, np);
4521 error = nfs_vinvalbuf(vp, V_SAVE, ctx, 1);
4522 FSDBG(260, np, np->n_size, np->n_vattr.nva_size, 0xf00d0011);
4523 flushed = 1;
4524 if (error == EINTR) {
4525 nfs_node_lock_force(np);
4526 NATTRINVALIDATE(np);
4527 nfs_node_unlock(np);
4528 goto out_free;
4529 }
4530 if (!namedattrs) {
4531 nfs_dulookup_finish(dul, dnp, ctx);
4532 }
4533 goto again_relock;
4534 }
4535 #if CONFIG_NFS4
4536 if ((nmp->nm_vers >= NFS_VER4) && (np->n_openflags & N_DELEG_MASK)) {
4537 nfs4_delegation_return(np, 0, vfs_context_thread(ctx), vfs_context_ucred(ctx));
4538 }
4539 #endif
4540 /*
4541 * Purge the name cache so that the chance of a lookup for
4542 * the name succeeding while the remove is in progress is
4543 * minimized.
4544 */
4545 nfs_name_cache_purge(dnp, np, cnp, ctx);
4546
4547 if (!namedattrs) {
4548 nfs_dulookup_start(dul, dnp, ctx);
4549 }
4550
4551 /* Do the rpc */
4552 error = nmp->nm_funcs->nf_remove_rpc(dnp, cnp->cn_nameptr, cnp->cn_namelen,
4553 vfs_context_thread(ctx), vfs_context_ucred(ctx));
4554
4555 /*
4556 * Kludge City: If the first reply to the remove rpc is lost..
4557 * the reply to the retransmitted request will be ENOENT
4558 * since the file was in fact removed
4559 * Therefore, we cheat and return success.
4560 */
4561 if (error == ENOENT) {
4562 error = 0;
4563 }
4564
4565 if (!error && !inuse && !np->n_sillyrename) {
4566 /*
4567 * removal succeeded, it's not in use, and not silly renamed so
4568 * remove nfsnode from hash now so we can't accidentally find it
4569 * again if another object gets created with the same filehandle
4570 * before this vnode gets reclaimed
4571 */
4572 lck_mtx_lock(nfs_node_hash_mutex);
4573 if (np->n_hflag & NHHASHED) {
4574 LIST_REMOVE(np, n_hash);
4575 np->n_hflag &= ~NHHASHED;
4576 FSDBG(266, 0, np, np->n_flag, 0xb1eb1e);
4577 }
4578 lck_mtx_unlock(nfs_node_hash_mutex);
4579 /* clear flags now: won't get nfs_vnop_inactive for recycled vnode */
4580 /* clear all flags other than these */
4581 nfs_node_lock_force(np);
4582 np->n_flag &= (NMODIFIED);
4583 NATTRINVALIDATE(np);
4584 nfs_node_unlock(np);
4585 vnode_recycle(vp);
4586 setsize = 1;
4587 } else {
4588 nfs_node_lock_force(np);
4589 NATTRINVALIDATE(np);
4590 nfs_node_unlock(np);
4591 }
4592 } else if (!np->n_sillyrename) {
4593 if (!namedattrs) {
4594 nfs_dulookup_start(dul, dnp, ctx);
4595 }
4596 error = nfs_sillyrename(dnp, np, cnp, ctx);
4597 nfs_node_lock_force(np);
4598 NATTRINVALIDATE(np);
4599 nfs_node_unlock(np);
4600 } else {
4601 nfs_node_lock_force(np);
4602 NATTRINVALIDATE(np);
4603 nfs_node_unlock(np);
4604 if (!namedattrs) {
4605 nfs_dulookup_start(dul, dnp, ctx);
4606 }
4607 }
4608
4609 /* nfs_getattr() will check changed and purge caches */
4610 nfs_getattr(dnp, NULL, ctx, NGA_CACHED);
4611 if (!namedattrs) {
4612 nfs_dulookup_finish(dul, dnp, ctx);
4613 }
4614 out:
4615 /* unlock the node */
4616 lck_mtx_lock(nfs_node_hash_mutex);
4617 np->n_hflag &= ~NHLOCKED;
4618 if (np->n_hflag & NHLOCKWANT) {
4619 np->n_hflag &= ~NHLOCKWANT;
4620 wakeup(np);
4621 }
4622 lck_mtx_unlock(nfs_node_hash_mutex);
4623 nfs_node_clear_busy2(dnp, np);
4624 if (setsize) {
4625 ubc_setsize(vp, 0);
4626 }
4627 out_free:
4628 FREE(dul, M_TEMP);
4629 FREE(nvattr, M_TEMP);
4630 return error;
4631 }
4632
4633 /*
4634 * NFS silly-renamed file removal function called from nfs_vnop_inactive
4635 */
4636 int
4637 nfs_removeit(struct nfs_sillyrename *nsp)
4638 {
4639 struct nfsmount *nmp = NFSTONMP(nsp->nsr_dnp);
4640 if (nfs_mount_gone(nmp)) {
4641 return ENXIO;
4642 }
4643 return nmp->nm_funcs->nf_remove_rpc(nsp->nsr_dnp, nsp->nsr_name, nsp->nsr_namlen, NULL, nsp->nsr_cred);
4644 }
4645
4646 /*
4647 * NFS remove rpc, called from nfs_remove() and nfs_removeit().
4648 */
4649 int
4650 nfs3_remove_rpc(
4651 nfsnode_t dnp,
4652 char *name,
4653 int namelen,
4654 thread_t thd,
4655 kauth_cred_t cred)
4656 {
4657 int error = 0, lockerror = ENOENT, status = 0, wccpostattr = 0;
4658 struct timespec premtime = { .tv_sec = 0, .tv_nsec = 0 };
4659 struct nfsmount *nmp;
4660 int nfsvers;
4661 u_int64_t xid;
4662 struct nfsm_chain nmreq, nmrep;
4663
4664 nmp = NFSTONMP(dnp);
4665 if (nfs_mount_gone(nmp)) {
4666 return ENXIO;
4667 }
4668 nfsvers = nmp->nm_vers;
4669 if ((nfsvers == NFS_VER2) && (namelen > NFS_MAXNAMLEN)) {
4670 return ENAMETOOLONG;
4671 }
4672
4673 nfsm_chain_null(&nmreq);
4674 nfsm_chain_null(&nmrep);
4675
4676 nfsm_chain_build_alloc_init(error, &nmreq,
4677 NFSX_FH(nfsvers) + NFSX_UNSIGNED + nfsm_rndup(namelen));
4678 nfsm_chain_add_fh(error, &nmreq, nfsvers, dnp->n_fhp, dnp->n_fhsize);
4679 nfsm_chain_add_name(error, &nmreq, name, namelen, nmp);
4680 nfsm_chain_build_done(error, &nmreq);
4681 nfsmout_if(error);
4682
4683 error = nfs_request2(dnp, NULL, &nmreq, NFSPROC_REMOVE, thd, cred, NULL, 0, &nmrep, &xid, &status);
4684
4685 if ((lockerror = nfs_node_lock(dnp))) {
4686 error = lockerror;
4687 }
4688 if (nfsvers == NFS_VER3) {
4689 nfsm_chain_get_wcc_data(error, &nmrep, dnp, &premtime, &wccpostattr, &xid);
4690 }
4691 nfsmout_if(error);
4692 dnp->n_flag |= NMODIFIED;
4693 /* if directory hadn't changed, update namecache mtime */
4694 if (nfstimespeccmp(&dnp->n_ncmtime, &premtime, ==)) {
4695 NFS_CHANGED_UPDATE_NC(nfsvers, dnp, &dnp->n_vattr);
4696 }
4697 if (!wccpostattr) {
4698 NATTRINVALIDATE(dnp);
4699 }
4700 if (!error) {
4701 error = status;
4702 }
4703 nfsmout:
4704 if (!lockerror) {
4705 nfs_node_unlock(dnp);
4706 }
4707 nfsm_chain_cleanup(&nmreq);
4708 nfsm_chain_cleanup(&nmrep);
4709 return error;
4710 }
4711
4712 /*
4713 * NFS file rename call
4714 */
4715 int
4716 nfs_vnop_rename(
4717 struct vnop_rename_args /* {
4718 * struct vnodeop_desc *a_desc;
4719 * vnode_t a_fdvp;
4720 * vnode_t a_fvp;
4721 * struct componentname *a_fcnp;
4722 * vnode_t a_tdvp;
4723 * vnode_t a_tvp;
4724 * struct componentname *a_tcnp;
4725 * vfs_context_t a_context;
4726 * } */*ap)
4727 {
4728 vfs_context_t ctx = ap->a_context;
4729 vnode_t fdvp = ap->a_fdvp;
4730 vnode_t fvp = ap->a_fvp;
4731 vnode_t tdvp = ap->a_tdvp;
4732 vnode_t tvp = ap->a_tvp;
4733 nfsnode_t fdnp, fnp, tdnp, tnp;
4734 struct componentname *tcnp = ap->a_tcnp;
4735 struct componentname *fcnp = ap->a_fcnp;
4736 int error, nfsvers, inuse = 0, tvprecycle = 0, locked = 0;
4737 mount_t fmp, tdmp, tmp;
4738 struct nfs_vattr *nvattr;
4739 struct nfsmount *nmp;
4740
4741 fdnp = VTONFS(fdvp);
4742 fnp = VTONFS(fvp);
4743 tdnp = VTONFS(tdvp);
4744 tnp = tvp ? VTONFS(tvp) : NULL;
4745
4746 nmp = NFSTONMP(fdnp);
4747 if (nfs_mount_gone(nmp)) {
4748 return ENXIO;
4749 }
4750 nfsvers = nmp->nm_vers;
4751
4752 error = nfs_node_set_busy4(fdnp, fnp, tdnp, tnp, vfs_context_thread(ctx));
4753 if (error) {
4754 return error;
4755 }
4756
4757 MALLOC(nvattr, struct nfs_vattr *, sizeof(*nvattr), M_TEMP, M_WAITOK);
4758
4759 if (tvp && (tvp != fvp)) {
4760 /* lock the node while we rename over the existing file */
4761 lck_mtx_lock(nfs_node_hash_mutex);
4762 while (tnp->n_hflag & NHLOCKED) {
4763 tnp->n_hflag |= NHLOCKWANT;
4764 msleep(tnp, nfs_node_hash_mutex, PINOD, "nfs_rename", NULL);
4765 }
4766 tnp->n_hflag |= NHLOCKED;
4767 lck_mtx_unlock(nfs_node_hash_mutex);
4768 locked = 1;
4769 }
4770
4771 /* Check for cross-device rename */
4772 fmp = vnode_mount(fvp);
4773 tmp = tvp ? vnode_mount(tvp) : NULL;
4774 tdmp = vnode_mount(tdvp);
4775 if ((fmp != tdmp) || (tvp && (fmp != tmp))) {
4776 error = EXDEV;
4777 goto out;
4778 }
4779
4780 /* XXX prevent renaming from/over a sillyrenamed file? */
4781
4782 /*
4783 * If the tvp exists and is in use, sillyrename it before doing the
4784 * rename of the new file over it.
4785 * XXX Can't sillyrename a directory.
4786 * Don't sillyrename if source and target are same vnode (hard
4787 * links or case-variants)
4788 */
4789 if (tvp && (tvp != fvp)) {
4790 inuse = vnode_isinuse(tvp, 0);
4791 }
4792 if (inuse && !tnp->n_sillyrename && (vnode_vtype(tvp) != VDIR)) {
4793 error = nfs_sillyrename(tdnp, tnp, tcnp, ctx);
4794 if (error) {
4795 /* sillyrename failed. Instead of pressing on, return error */
4796 goto out; /* should not be ENOENT. */
4797 } else {
4798 /* sillyrename succeeded.*/
4799 tvp = NULL;
4800 }
4801 }
4802 #if CONFIG_NFS4
4803 else if (tvp && (nmp->nm_vers >= NFS_VER4) && (tnp->n_openflags & N_DELEG_MASK)) {
4804 nfs4_delegation_return(tnp, 0, vfs_context_thread(ctx), vfs_context_ucred(ctx));
4805 }
4806 #endif
4807 error = nmp->nm_funcs->nf_rename_rpc(fdnp, fcnp->cn_nameptr, fcnp->cn_namelen,
4808 tdnp, tcnp->cn_nameptr, tcnp->cn_namelen, ctx);
4809
4810 /*
4811 * Kludge: Map ENOENT => 0 assuming that it is a reply to a retry.
4812 */
4813 if (error == ENOENT) {
4814 error = 0;
4815 }
4816
4817 if (tvp && (tvp != fvp) && !tnp->n_sillyrename) {
4818 nfs_node_lock_force(tnp);
4819 tvprecycle = (!error && !vnode_isinuse(tvp, 0) &&
4820 (nfs_getattrcache(tnp, nvattr, 0) || (nvattr->nva_nlink == 1)));
4821 nfs_node_unlock(tnp);
4822 lck_mtx_lock(nfs_node_hash_mutex);
4823 if (tvprecycle && (tnp->n_hflag & NHHASHED)) {
4824 /*
4825 * remove nfsnode from hash now so we can't accidentally find it
4826 * again if another object gets created with the same filehandle
4827 * before this vnode gets reclaimed
4828 */
4829 LIST_REMOVE(tnp, n_hash);
4830 tnp->n_hflag &= ~NHHASHED;
4831 FSDBG(266, 0, tnp, tnp->n_flag, 0xb1eb1e);
4832 }
4833 lck_mtx_unlock(nfs_node_hash_mutex);
4834 }
4835
4836 /* purge the old name cache entries and enter the new one */
4837 nfs_name_cache_purge(fdnp, fnp, fcnp, ctx);
4838 if (tvp) {
4839 nfs_name_cache_purge(tdnp, tnp, tcnp, ctx);
4840 if (tvprecycle) {
4841 /* clear flags now: won't get nfs_vnop_inactive for recycled vnode */
4842 /* clear all flags other than these */
4843 nfs_node_lock_force(tnp);
4844 tnp->n_flag &= (NMODIFIED);
4845 nfs_node_unlock(tnp);
4846 vnode_recycle(tvp);
4847 }
4848 }
4849 if (!error) {
4850 nfs_node_lock_force(tdnp);
4851 if (tdnp->n_flag & NNEGNCENTRIES) {
4852 tdnp->n_flag &= ~NNEGNCENTRIES;
4853 cache_purge_negatives(tdvp);
4854 }
4855 nfs_node_unlock(tdnp);
4856 nfs_node_lock_force(fnp);
4857 cache_enter(tdvp, fvp, tcnp);
4858 if (tdvp != fdvp) { /* update parent pointer */
4859 if (fnp->n_parent && !vnode_get(fnp->n_parent)) {
4860 /* remove ref from old parent */
4861 vnode_rele(fnp->n_parent);
4862 vnode_put(fnp->n_parent);
4863 }
4864 fnp->n_parent = tdvp;
4865 if (tdvp && !vnode_get(tdvp)) {
4866 /* add ref to new parent */
4867 vnode_ref(tdvp);
4868 vnode_put(tdvp);
4869 } else {
4870 fnp->n_parent = NULL;
4871 }
4872 }
4873 nfs_node_unlock(fnp);
4874 }
4875 out:
4876 /* nfs_getattr() will check changed and purge caches */
4877 nfs_getattr(fdnp, NULL, ctx, NGA_CACHED);
4878 nfs_getattr(tdnp, NULL, ctx, NGA_CACHED);
4879 if (locked) {
4880 /* unlock node */
4881 lck_mtx_lock(nfs_node_hash_mutex);
4882 tnp->n_hflag &= ~NHLOCKED;
4883 if (tnp->n_hflag & NHLOCKWANT) {
4884 tnp->n_hflag &= ~NHLOCKWANT;
4885 wakeup(tnp);
4886 }
4887 lck_mtx_unlock(nfs_node_hash_mutex);
4888 }
4889 nfs_node_clear_busy4(fdnp, fnp, tdnp, tnp);
4890 FREE(nvattr, M_TEMP);
4891 return error;
4892 }
4893
4894 /*
4895 * Do an NFS rename rpc. Called from nfs_vnop_rename() and nfs_sillyrename().
4896 */
4897 int
4898 nfs3_rename_rpc(
4899 nfsnode_t fdnp,
4900 char *fnameptr,
4901 int fnamelen,
4902 nfsnode_t tdnp,
4903 char *tnameptr,
4904 int tnamelen,
4905 vfs_context_t ctx)
4906 {
4907 int error = 0, lockerror = ENOENT, status = 0, fwccpostattr = 0, twccpostattr = 0;
4908 struct timespec fpremtime = { .tv_sec = 0, .tv_nsec = 0 }, tpremtime = { .tv_sec = 0, .tv_nsec = 0 };
4909 struct nfsmount *nmp;
4910 int nfsvers;
4911 u_int64_t xid, txid;
4912 struct nfsm_chain nmreq, nmrep;
4913
4914 nmp = NFSTONMP(fdnp);
4915 if (nfs_mount_gone(nmp)) {
4916 return ENXIO;
4917 }
4918 nfsvers = nmp->nm_vers;
4919 if ((nfsvers == NFS_VER2) &&
4920 ((fnamelen > NFS_MAXNAMLEN) || (tnamelen > NFS_MAXNAMLEN))) {
4921 return ENAMETOOLONG;
4922 }
4923
4924 nfsm_chain_null(&nmreq);
4925 nfsm_chain_null(&nmrep);
4926
4927 nfsm_chain_build_alloc_init(error, &nmreq,
4928 (NFSX_FH(nfsvers) + NFSX_UNSIGNED) * 2 +
4929 nfsm_rndup(fnamelen) + nfsm_rndup(tnamelen));
4930 nfsm_chain_add_fh(error, &nmreq, nfsvers, fdnp->n_fhp, fdnp->n_fhsize);
4931 nfsm_chain_add_name(error, &nmreq, fnameptr, fnamelen, nmp);
4932 nfsm_chain_add_fh(error, &nmreq, nfsvers, tdnp->n_fhp, tdnp->n_fhsize);
4933 nfsm_chain_add_name(error, &nmreq, tnameptr, tnamelen, nmp);
4934 nfsm_chain_build_done(error, &nmreq);
4935 nfsmout_if(error);
4936
4937 error = nfs_request(fdnp, NULL, &nmreq, NFSPROC_RENAME, ctx, NULL, &nmrep, &xid, &status);
4938
4939 if ((lockerror = nfs_node_lock2(fdnp, tdnp))) {
4940 error = lockerror;
4941 }
4942 if (nfsvers == NFS_VER3) {
4943 txid = xid;
4944 nfsm_chain_get_wcc_data(error, &nmrep, fdnp, &fpremtime, &fwccpostattr, &xid);
4945 nfsm_chain_get_wcc_data(error, &nmrep, tdnp, &tpremtime, &twccpostattr, &txid);
4946 }
4947 if (!error) {
4948 error = status;
4949 }
4950 nfsmout:
4951 nfsm_chain_cleanup(&nmreq);
4952 nfsm_chain_cleanup(&nmrep);
4953 if (!lockerror) {
4954 fdnp->n_flag |= NMODIFIED;
4955 /* if directory hadn't changed, update namecache mtime */
4956 if (nfstimespeccmp(&fdnp->n_ncmtime, &fpremtime, ==)) {
4957 NFS_CHANGED_UPDATE_NC(nfsvers, fdnp, &fdnp->n_vattr);
4958 }
4959 if (!fwccpostattr) {
4960 NATTRINVALIDATE(fdnp);
4961 }
4962 tdnp->n_flag |= NMODIFIED;
4963 /* if directory hadn't changed, update namecache mtime */
4964 if (nfstimespeccmp(&tdnp->n_ncmtime, &tpremtime, ==)) {
4965 NFS_CHANGED_UPDATE_NC(nfsvers, tdnp, &tdnp->n_vattr);
4966 }
4967 if (!twccpostattr) {
4968 NATTRINVALIDATE(tdnp);
4969 }
4970 nfs_node_unlock2(fdnp, tdnp);
4971 }
4972 return error;
4973 }
4974
4975 /*
4976 * NFS hard link create call
4977 */
4978 int
4979 nfs3_vnop_link(
4980 struct vnop_link_args /* {
4981 * struct vnodeop_desc *a_desc;
4982 * vnode_t a_vp;
4983 * vnode_t a_tdvp;
4984 * struct componentname *a_cnp;
4985 * vfs_context_t a_context;
4986 * } */*ap)
4987 {
4988 vfs_context_t ctx = ap->a_context;
4989 vnode_t vp = ap->a_vp;
4990 vnode_t tdvp = ap->a_tdvp;
4991 struct componentname *cnp = ap->a_cnp;
4992 int error = 0, lockerror = ENOENT, status = 0, wccpostattr = 0, attrflag = 0;
4993 struct timespec premtime = { .tv_sec = 0, .tv_nsec = 0 };
4994 struct nfsmount *nmp;
4995 nfsnode_t np = VTONFS(vp);
4996 nfsnode_t tdnp = VTONFS(tdvp);
4997 int nfsvers;
4998 u_int64_t xid, txid;
4999 struct nfsm_chain nmreq, nmrep;
5000
5001 if (vnode_mount(vp) != vnode_mount(tdvp)) {
5002 return EXDEV;
5003 }
5004
5005 nmp = VTONMP(vp);
5006 if (nfs_mount_gone(nmp)) {
5007 return ENXIO;
5008 }
5009 nfsvers = nmp->nm_vers;
5010 if ((nfsvers == NFS_VER2) && (cnp->cn_namelen > NFS_MAXNAMLEN)) {
5011 return ENAMETOOLONG;
5012 }
5013
5014 /*
5015 * Push all writes to the server, so that the attribute cache
5016 * doesn't get "out of sync" with the server.
5017 * XXX There should be a better way!
5018 */
5019 nfs_flush(np, MNT_WAIT, vfs_context_thread(ctx), V_IGNORE_WRITEERR);
5020
5021 error = nfs_node_set_busy2(tdnp, np, vfs_context_thread(ctx));
5022 if (error) {
5023 return error;
5024 }
5025
5026 nfsm_chain_null(&nmreq);
5027 nfsm_chain_null(&nmrep);
5028
5029 nfsm_chain_build_alloc_init(error, &nmreq,
5030 NFSX_FH(nfsvers) * 2 + NFSX_UNSIGNED + nfsm_rndup(cnp->cn_namelen));
5031 nfsm_chain_add_fh(error, &nmreq, nfsvers, np->n_fhp, np->n_fhsize);
5032 nfsm_chain_add_fh(error, &nmreq, nfsvers, tdnp->n_fhp, tdnp->n_fhsize);
5033 nfsm_chain_add_name(error, &nmreq, cnp->cn_nameptr, cnp->cn_namelen, nmp);
5034 nfsm_chain_build_done(error, &nmreq);
5035 nfsmout_if(error);
5036 error = nfs_request(np, NULL, &nmreq, NFSPROC_LINK, ctx, NULL, &nmrep, &xid, &status);
5037
5038 if ((lockerror = nfs_node_lock2(tdnp, np))) {
5039 error = lockerror;
5040 goto nfsmout;
5041 }
5042 if (nfsvers == NFS_VER3) {
5043 txid = xid;
5044 nfsm_chain_postop_attr_update_flag(error, &nmrep, np, attrflag, &xid);
5045 nfsm_chain_get_wcc_data(error, &nmrep, tdnp, &premtime, &wccpostattr, &txid);
5046 }
5047 if (!error) {
5048 error = status;
5049 }
5050 nfsmout:
5051 nfsm_chain_cleanup(&nmreq);
5052 nfsm_chain_cleanup(&nmrep);
5053 if (!lockerror) {
5054 if (!attrflag) {
5055 NATTRINVALIDATE(np);
5056 }
5057 tdnp->n_flag |= NMODIFIED;
5058 /* if directory hadn't changed, update namecache mtime */
5059 if (nfstimespeccmp(&tdnp->n_ncmtime, &premtime, ==)) {
5060 NFS_CHANGED_UPDATE_NC(nfsvers, tdnp, &tdnp->n_vattr);
5061 }
5062 if (!wccpostattr) {
5063 NATTRINVALIDATE(tdnp);
5064 }
5065 if (!error && (tdnp->n_flag & NNEGNCENTRIES)) {
5066 tdnp->n_flag &= ~NNEGNCENTRIES;
5067 cache_purge_negatives(tdvp);
5068 }
5069 nfs_node_unlock2(tdnp, np);
5070 }
5071 nfs_node_clear_busy2(tdnp, np);
5072 /*
5073 * Kludge: Map EEXIST => 0 assuming that it is a reply to a retry.
5074 */
5075 if (error == EEXIST) {
5076 error = 0;
5077 }
5078 return error;
5079 }
5080
5081 /*
5082 * NFS symbolic link create call
5083 */
5084 int
5085 nfs3_vnop_symlink(
5086 struct vnop_symlink_args /* {
5087 * struct vnodeop_desc *a_desc;
5088 * vnode_t a_dvp;
5089 * vnode_t *a_vpp;
5090 * struct componentname *a_cnp;
5091 * struct vnode_attr *a_vap;
5092 * char *a_target;
5093 * vfs_context_t a_context;
5094 * } */*ap)
5095 {
5096 vfs_context_t ctx = ap->a_context;
5097 vnode_t dvp = ap->a_dvp;
5098 struct vnode_attr *vap = ap->a_vap;
5099 struct componentname *cnp = ap->a_cnp;
5100 struct nfs_vattr *nvattr;
5101 fhandle_t *fh;
5102 int error = 0, lockerror = ENOENT, busyerror = ENOENT, status = 0, wccpostattr = 0;
5103 size_t slen;
5104 struct timespec premtime = { .tv_sec = 0, .tv_nsec = 0 };
5105 vnode_t newvp = NULL;
5106 int nfsvers, gotuid, gotgid;
5107 u_int64_t xid = 0, dxid;
5108 nfsnode_t np = NULL;
5109 nfsnode_t dnp = VTONFS(dvp);
5110 struct nfsmount *nmp;
5111 struct nfsm_chain nmreq, nmrep;
5112 struct nfsreq *req;
5113 struct nfs_dulookup *dul;
5114 int namedattrs;
5115 int dul_in_progress = 0;
5116
5117 nmp = VTONMP(dvp);
5118 if (nfs_mount_gone(nmp)) {
5119 return ENXIO;
5120 }
5121 nfsvers = nmp->nm_vers;
5122 namedattrs = (nmp->nm_fsattr.nfsa_flags & NFS_FSFLAG_NAMED_ATTR);
5123
5124 slen = strlen(ap->a_target);
5125 if ((nfsvers == NFS_VER2) &&
5126 ((cnp->cn_namelen > NFS_MAXNAMLEN) || (slen > NFS_MAXPATHLEN))) {
5127 return ENAMETOOLONG;
5128 }
5129
5130 nfs_avoid_needless_id_setting_on_create(dnp, vap, ctx);
5131
5132 VATTR_SET_SUPPORTED(vap, va_mode);
5133 VATTR_SET_SUPPORTED(vap, va_uid);
5134 VATTR_SET_SUPPORTED(vap, va_gid);
5135 VATTR_SET_SUPPORTED(vap, va_data_size);
5136 VATTR_SET_SUPPORTED(vap, va_access_time);
5137 VATTR_SET_SUPPORTED(vap, va_modify_time);
5138 gotuid = VATTR_IS_ACTIVE(vap, va_uid);
5139 gotgid = VATTR_IS_ACTIVE(vap, va_gid);
5140
5141 fh = zalloc(nfs_fhandle_zone);
5142 req = zalloc_flags(nfs_req_zone, Z_WAITOK);
5143 MALLOC(dul, struct nfs_dulookup *, sizeof(*dul), M_TEMP, M_WAITOK);
5144 MALLOC(nvattr, struct nfs_vattr *, sizeof(*nvattr), M_TEMP, M_WAITOK);
5145
5146 error = busyerror = nfs_node_set_busy(dnp, vfs_context_thread(ctx));
5147 if (!namedattrs) {
5148 nfs_dulookup_init(dul, dnp, cnp->cn_nameptr, cnp->cn_namelen, ctx);
5149 }
5150
5151 nfsm_chain_null(&nmreq);
5152 nfsm_chain_null(&nmrep);
5153
5154 nfsm_chain_build_alloc_init(error, &nmreq,
5155 NFSX_FH(nfsvers) + 2 * NFSX_UNSIGNED +
5156 nfsm_rndup(cnp->cn_namelen) + nfsm_rndup(slen) + NFSX_SATTR(nfsvers));
5157 nfsm_chain_add_fh(error, &nmreq, nfsvers, dnp->n_fhp, dnp->n_fhsize);
5158 nfsm_chain_add_name(error, &nmreq, cnp->cn_nameptr, cnp->cn_namelen, nmp);
5159 if (nfsvers == NFS_VER3) {
5160 nfsm_chain_add_v3sattr(nmp, error, &nmreq, vap);
5161 }
5162 nfsm_chain_add_name(error, &nmreq, ap->a_target, slen, nmp);
5163 if (nfsvers == NFS_VER2) {
5164 nfsm_chain_add_v2sattr(error, &nmreq, vap, -1);
5165 }
5166 nfsm_chain_build_done(error, &nmreq);
5167 nfsmout_if(error);
5168
5169 error = nfs_request_async(dnp, NULL, &nmreq, NFSPROC_SYMLINK,
5170 vfs_context_thread(ctx), vfs_context_ucred(ctx), NULL, 0, NULL, &req);
5171 if (!error) {
5172 if (!namedattrs) {
5173 nfs_dulookup_start(dul, dnp, ctx);
5174 dul_in_progress = 1;
5175 }
5176 error = nfs_request_async_finish(req, &nmrep, &xid, &status);
5177 }
5178
5179 if ((lockerror = nfs_node_lock(dnp))) {
5180 error = lockerror;
5181 }
5182 dxid = xid;
5183 if (!error && !status) {
5184 if (dnp->n_flag & NNEGNCENTRIES) {
5185 dnp->n_flag &= ~NNEGNCENTRIES;
5186 cache_purge_negatives(dvp);
5187 }
5188 if (nfsvers == NFS_VER3) {
5189 error = nfsm_chain_get_fh_attr(nmp, &nmrep, dnp, ctx, nfsvers, &xid, fh, nvattr);
5190 } else {
5191 fh->fh_len = 0;
5192 }
5193 }
5194 if (nfsvers == NFS_VER3) {
5195 nfsm_chain_get_wcc_data(error, &nmrep, dnp, &premtime, &wccpostattr, &dxid);
5196 }
5197 if (!error) {
5198 error = status;
5199 }
5200 nfsmout:
5201 nfsm_chain_cleanup(&nmreq);
5202 nfsm_chain_cleanup(&nmrep);
5203
5204 if (!lockerror) {
5205 dnp->n_flag |= NMODIFIED;
5206 /* if directory hadn't changed, update namecache mtime */
5207 if (nfstimespeccmp(&dnp->n_ncmtime, &premtime, ==)) {
5208 NFS_CHANGED_UPDATE_NC(nfsvers, dnp, &dnp->n_vattr);
5209 }
5210 nfs_node_unlock(dnp);
5211 /* nfs_getattr() will check changed and purge caches */
5212 nfs_getattr(dnp, NULL, ctx, wccpostattr ? NGA_CACHED : NGA_UNCACHED);
5213 }
5214
5215 if (!error && fh->fh_len) {
5216 error = nfs_nget(NFSTOMP(dnp), dnp, cnp, fh->fh_data, fh->fh_len, nvattr, &xid, req->r_auth, NG_MAKEENTRY, &np);
5217 }
5218 if (!error && np) {
5219 newvp = NFSTOV(np);
5220 }
5221
5222 if (dul_in_progress) {
5223 nfs_dulookup_finish(dul, dnp, ctx);
5224 }
5225
5226 /*
5227 * Kludge: Map EEXIST => 0 assuming that you have a reply to a retry
5228 * if we can succeed in looking up the symlink.
5229 */
5230 if ((error == EEXIST) || (!error && !newvp)) {
5231 if (newvp) {
5232 nfs_node_unlock(np);
5233 vnode_put(newvp);
5234 newvp = NULL;
5235 }
5236 error = nfs_lookitup(dnp, cnp->cn_nameptr, cnp->cn_namelen, ctx, &np);
5237 if (!error) {
5238 newvp = NFSTOV(np);
5239 if (vnode_vtype(newvp) != VLNK) {
5240 error = EEXIST;
5241 }
5242 }
5243 }
5244 if (!busyerror) {
5245 nfs_node_clear_busy(dnp);
5246 }
5247 if (!error && (gotuid || gotgid) &&
5248 (!newvp || nfs_getattrcache(np, nvattr, 0) ||
5249 (gotuid && (nvattr->nva_uid != vap->va_uid)) ||
5250 (gotgid && (nvattr->nva_gid != vap->va_gid)))) {
5251 /* clear ID bits if server didn't use them (or we can't tell) */
5252 VATTR_CLEAR_SUPPORTED(vap, va_uid);
5253 VATTR_CLEAR_SUPPORTED(vap, va_gid);
5254 }
5255 if (error) {
5256 if (newvp) {
5257 nfs_node_unlock(np);
5258 vnode_put(newvp);
5259 }
5260 } else {
5261 nfs_node_unlock(np);
5262 *ap->a_vpp = newvp;
5263 }
5264 NFS_ZFREE(nfs_fhandle_zone, fh);
5265 NFS_ZFREE(nfs_req_zone, req);
5266 FREE(dul, M_TEMP);
5267 FREE(nvattr, M_TEMP);
5268 return error;
5269 }
5270
5271 /*
5272 * NFS make dir call
5273 */
5274 int
5275 nfs3_vnop_mkdir(
5276 struct vnop_mkdir_args /* {
5277 * struct vnodeop_desc *a_desc;
5278 * vnode_t a_dvp;
5279 * vnode_t *a_vpp;
5280 * struct componentname *a_cnp;
5281 * struct vnode_attr *a_vap;
5282 * vfs_context_t a_context;
5283 * } */*ap)
5284 {
5285 vfs_context_t ctx = ap->a_context;
5286 vnode_t dvp = ap->a_dvp;
5287 struct vnode_attr *vap = ap->a_vap;
5288 struct componentname *cnp = ap->a_cnp;
5289 struct nfs_vattr *nvattr;
5290 nfsnode_t np = NULL;
5291 struct nfsmount *nmp;
5292 nfsnode_t dnp = VTONFS(dvp);
5293 vnode_t newvp = NULL;
5294 int error = 0, lockerror = ENOENT, busyerror = ENOENT, status = 0, wccpostattr = 0;
5295 struct timespec premtime = { .tv_sec = 0, .tv_nsec = 0 };
5296 int nfsvers, gotuid, gotgid;
5297 u_int64_t xid = 0, dxid;
5298 fhandle_t *fh;
5299 struct nfsm_chain nmreq, nmrep;
5300 struct nfsreq *req;
5301 struct nfs_dulookup *dul;
5302 int namedattrs;
5303 int dul_in_progress = 0;
5304
5305 nmp = VTONMP(dvp);
5306 if (nfs_mount_gone(nmp)) {
5307 return ENXIO;
5308 }
5309 nfsvers = nmp->nm_vers;
5310 namedattrs = (nmp->nm_fsattr.nfsa_flags & NFS_FSFLAG_NAMED_ATTR);
5311
5312 if ((nfsvers == NFS_VER2) && (cnp->cn_namelen > NFS_MAXNAMLEN)) {
5313 return ENAMETOOLONG;
5314 }
5315
5316 nfs_avoid_needless_id_setting_on_create(dnp, vap, ctx);
5317
5318 VATTR_SET_SUPPORTED(vap, va_mode);
5319 VATTR_SET_SUPPORTED(vap, va_uid);
5320 VATTR_SET_SUPPORTED(vap, va_gid);
5321 VATTR_SET_SUPPORTED(vap, va_data_size);
5322 VATTR_SET_SUPPORTED(vap, va_access_time);
5323 VATTR_SET_SUPPORTED(vap, va_modify_time);
5324 gotuid = VATTR_IS_ACTIVE(vap, va_uid);
5325 gotgid = VATTR_IS_ACTIVE(vap, va_gid);
5326
5327 fh = zalloc(nfs_fhandle_zone);
5328 req = zalloc_flags(nfs_req_zone, Z_WAITOK);
5329 MALLOC(dul, struct nfs_dulookup *, sizeof(*dul), M_TEMP, M_WAITOK);
5330 MALLOC(nvattr, struct nfs_vattr *, sizeof(*nvattr), M_TEMP, M_WAITOK);
5331
5332 error = busyerror = nfs_node_set_busy(dnp, vfs_context_thread(ctx));
5333 if (!namedattrs) {
5334 nfs_dulookup_init(dul, dnp, cnp->cn_nameptr, cnp->cn_namelen, ctx);
5335 }
5336
5337 nfsm_chain_null(&nmreq);
5338 nfsm_chain_null(&nmrep);
5339
5340 nfsm_chain_build_alloc_init(error, &nmreq,
5341 NFSX_FH(nfsvers) + NFSX_UNSIGNED +
5342 nfsm_rndup(cnp->cn_namelen) + NFSX_SATTR(nfsvers));
5343 nfsm_chain_add_fh(error, &nmreq, nfsvers, dnp->n_fhp, dnp->n_fhsize);
5344 nfsm_chain_add_name(error, &nmreq, cnp->cn_nameptr, cnp->cn_namelen, nmp);
5345 if (nfsvers == NFS_VER3) {
5346 nfsm_chain_add_v3sattr(nmp, error, &nmreq, vap);
5347 } else {
5348 nfsm_chain_add_v2sattr(error, &nmreq, vap, -1);
5349 }
5350 nfsm_chain_build_done(error, &nmreq);
5351 nfsmout_if(error);
5352
5353 error = nfs_request_async(dnp, NULL, &nmreq, NFSPROC_MKDIR,
5354 vfs_context_thread(ctx), vfs_context_ucred(ctx), NULL, 0, NULL, &req);
5355 if (!error) {
5356 if (!namedattrs) {
5357 nfs_dulookup_start(dul, dnp, ctx);
5358 dul_in_progress = 1;
5359 }
5360 error = nfs_request_async_finish(req, &nmrep, &xid, &status);
5361 }
5362
5363 if ((lockerror = nfs_node_lock(dnp))) {
5364 error = lockerror;
5365 }
5366 dxid = xid;
5367 if (!error && !status) {
5368 if (dnp->n_flag & NNEGNCENTRIES) {
5369 dnp->n_flag &= ~NNEGNCENTRIES;
5370 cache_purge_negatives(dvp);
5371 }
5372 error = nfsm_chain_get_fh_attr(nmp, &nmrep, dnp, ctx, nfsvers, &xid, fh, nvattr);
5373 }
5374 if (nfsvers == NFS_VER3) {
5375 nfsm_chain_get_wcc_data(error, &nmrep, dnp, &premtime, &wccpostattr, &dxid);
5376 }
5377 if (!error) {
5378 error = status;
5379 }
5380 nfsmout:
5381 nfsm_chain_cleanup(&nmreq);
5382 nfsm_chain_cleanup(&nmrep);
5383
5384 if (!lockerror) {
5385 dnp->n_flag |= NMODIFIED;
5386 /* if directory hadn't changed, update namecache mtime */
5387 if (nfstimespeccmp(&dnp->n_ncmtime, &premtime, ==)) {
5388 NFS_CHANGED_UPDATE_NC(nfsvers, dnp, &dnp->n_vattr);
5389 }
5390 nfs_node_unlock(dnp);
5391 /* nfs_getattr() will check changed and purge caches */
5392 nfs_getattr(dnp, NULL, ctx, wccpostattr ? NGA_CACHED : NGA_UNCACHED);
5393 }
5394
5395 if (!error && fh->fh_len) {
5396 error = nfs_nget(NFSTOMP(dnp), dnp, cnp, fh->fh_data, fh->fh_len, nvattr, &xid, req->r_auth, NG_MAKEENTRY, &np);
5397 }
5398 if (!error && np) {
5399 newvp = NFSTOV(np);
5400 }
5401
5402 if (dul_in_progress) {
5403 nfs_dulookup_finish(dul, dnp, ctx);
5404 }
5405
5406 /*
5407 * Kludge: Map EEXIST => 0 assuming that you have a reply to a retry
5408 * if we can succeed in looking up the directory.
5409 */
5410 if ((error == EEXIST) || (!error && !newvp)) {
5411 if (newvp) {
5412 nfs_node_unlock(np);
5413 vnode_put(newvp);
5414 newvp = NULL;
5415 }
5416 error = nfs_lookitup(dnp, cnp->cn_nameptr, cnp->cn_namelen, ctx, &np);
5417 if (!error) {
5418 newvp = NFSTOV(np);
5419 if (vnode_vtype(newvp) != VDIR) {
5420 error = EEXIST;
5421 }
5422 }
5423 }
5424 if (!busyerror) {
5425 nfs_node_clear_busy(dnp);
5426 }
5427 if (!error && (gotuid || gotgid) &&
5428 (!newvp || nfs_getattrcache(np, nvattr, 0) ||
5429 (gotuid && (nvattr->nva_uid != vap->va_uid)) ||
5430 (gotgid && (nvattr->nva_gid != vap->va_gid)))) {
5431 /* clear ID bits if server didn't use them (or we can't tell) */
5432 VATTR_CLEAR_SUPPORTED(vap, va_uid);
5433 VATTR_CLEAR_SUPPORTED(vap, va_gid);
5434 }
5435 if (error) {
5436 if (newvp) {
5437 nfs_node_unlock(np);
5438 vnode_put(newvp);
5439 }
5440 } else {
5441 nfs_node_unlock(np);
5442 *ap->a_vpp = newvp;
5443 }
5444 NFS_ZFREE(nfs_fhandle_zone, fh);
5445 NFS_ZFREE(nfs_req_zone, req);
5446 FREE(dul, M_TEMP);
5447 FREE(nvattr, M_TEMP);
5448 return error;
5449 }
5450
5451 /*
5452 * NFS remove directory call
5453 */
5454 int
5455 nfs3_vnop_rmdir(
5456 struct vnop_rmdir_args /* {
5457 * struct vnodeop_desc *a_desc;
5458 * vnode_t a_dvp;
5459 * vnode_t a_vp;
5460 * struct componentname *a_cnp;
5461 * vfs_context_t a_context;
5462 * } */*ap)
5463 {
5464 vfs_context_t ctx = ap->a_context;
5465 vnode_t vp = ap->a_vp;
5466 vnode_t dvp = ap->a_dvp;
5467 struct componentname *cnp = ap->a_cnp;
5468 int error = 0, lockerror = ENOENT, status = 0, wccpostattr = 0;
5469 struct timespec premtime = { .tv_sec = 0, .tv_nsec = 0 };
5470 struct nfsmount *nmp;
5471 nfsnode_t np = VTONFS(vp);
5472 nfsnode_t dnp = VTONFS(dvp);
5473 int nfsvers;
5474 u_int64_t xid;
5475 struct nfsm_chain nmreq, nmrep;
5476 struct nfsreq *req;
5477 struct nfs_dulookup *dul;
5478 int namedattrs;
5479 int dul_in_progress = 0;
5480
5481 nmp = VTONMP(vp);
5482 if (nfs_mount_gone(nmp)) {
5483 return ENXIO;
5484 }
5485 nfsvers = nmp->nm_vers;
5486 namedattrs = (nmp->nm_fsattr.nfsa_flags & NFS_FSFLAG_NAMED_ATTR);
5487
5488 if ((nfsvers == NFS_VER2) && (cnp->cn_namelen > NFS_MAXNAMLEN)) {
5489 return ENAMETOOLONG;
5490 }
5491
5492 if ((error = nfs_node_set_busy2(dnp, np, vfs_context_thread(ctx)))) {
5493 return error;
5494 }
5495
5496 req = zalloc_flags(nfs_req_zone, Z_WAITOK);
5497 MALLOC(dul, struct nfs_dulookup *, sizeof(*dul), M_TEMP, M_WAITOK);
5498
5499 if (!namedattrs) {
5500 nfs_dulookup_init(dul, dnp, cnp->cn_nameptr, cnp->cn_namelen, ctx);
5501 }
5502
5503 nfsm_chain_null(&nmreq);
5504 nfsm_chain_null(&nmrep);
5505
5506 nfsm_chain_build_alloc_init(error, &nmreq,
5507 NFSX_FH(nfsvers) + NFSX_UNSIGNED + nfsm_rndup(cnp->cn_namelen));
5508 nfsm_chain_add_fh(error, &nmreq, nfsvers, dnp->n_fhp, dnp->n_fhsize);
5509 nfsm_chain_add_name(error, &nmreq, cnp->cn_nameptr, cnp->cn_namelen, nmp);
5510 nfsm_chain_build_done(error, &nmreq);
5511 nfsmout_if(error);
5512
5513 error = nfs_request_async(dnp, NULL, &nmreq, NFSPROC_RMDIR,
5514 vfs_context_thread(ctx), vfs_context_ucred(ctx), NULL, 0, NULL, &req);
5515 if (!error) {
5516 if (!namedattrs) {
5517 nfs_dulookup_start(dul, dnp, ctx);
5518 dul_in_progress = 1;
5519 }
5520 error = nfs_request_async_finish(req, &nmrep, &xid, &status);
5521 }
5522
5523 if ((lockerror = nfs_node_lock(dnp))) {
5524 error = lockerror;
5525 }
5526 if (nfsvers == NFS_VER3) {
5527 nfsm_chain_get_wcc_data(error, &nmrep, dnp, &premtime, &wccpostattr, &xid);
5528 }
5529 if (!error) {
5530 error = status;
5531 }
5532 nfsmout:
5533 nfsm_chain_cleanup(&nmreq);
5534 nfsm_chain_cleanup(&nmrep);
5535
5536 if (!lockerror) {
5537 dnp->n_flag |= NMODIFIED;
5538 /* if directory hadn't changed, update namecache mtime */
5539 if (nfstimespeccmp(&dnp->n_ncmtime, &premtime, ==)) {
5540 NFS_CHANGED_UPDATE_NC(nfsvers, dnp, &dnp->n_vattr);
5541 }
5542 nfs_node_unlock(dnp);
5543 nfs_name_cache_purge(dnp, np, cnp, ctx);
5544 /* nfs_getattr() will check changed and purge caches */
5545 nfs_getattr(dnp, NULL, ctx, wccpostattr ? NGA_CACHED : NGA_UNCACHED);
5546 }
5547 if (dul_in_progress) {
5548 nfs_dulookup_finish(dul, dnp, ctx);
5549 }
5550 nfs_node_clear_busy2(dnp, np);
5551
5552 /*
5553 * Kludge: Map ENOENT => 0 assuming that you have a reply to a retry.
5554 */
5555 if (error == ENOENT) {
5556 error = 0;
5557 }
5558 if (!error) {
5559 /*
5560 * remove nfsnode from hash now so we can't accidentally find it
5561 * again if another object gets created with the same filehandle
5562 * before this vnode gets reclaimed
5563 */
5564 lck_mtx_lock(nfs_node_hash_mutex);
5565 if (np->n_hflag & NHHASHED) {
5566 LIST_REMOVE(np, n_hash);
5567 np->n_hflag &= ~NHHASHED;
5568 FSDBG(266, 0, np, np->n_flag, 0xb1eb1e);
5569 }
5570 lck_mtx_unlock(nfs_node_hash_mutex);
5571 }
5572 NFS_ZFREE(nfs_req_zone, req);
5573 FREE(dul, M_TEMP);
5574 return error;
5575 }
5576
5577 /*
5578 * NFS readdir call
5579 *
5580 * The incoming "offset" is a directory cookie indicating where in the
5581 * directory entries should be read from. A zero cookie means start at
5582 * the beginning of the directory. Any other cookie will be a cookie
5583 * returned from the server.
5584 *
5585 * Using that cookie, determine which buffer (and where in that buffer)
5586 * to start returning entries from. Buffer logical block numbers are
5587 * the cookies they start at. If a buffer is found that is not full,
5588 * call into the bio/RPC code to fill it. The RPC code will probably
5589 * fill several buffers (dropping the first, requiring a re-get).
5590 *
5591 * When done copying entries to the buffer, set the offset to the current
5592 * entry's cookie and enter that cookie in the cookie cache.
5593 *
5594 * Note: because the getdirentries(2) API returns a long-typed offset,
5595 * the incoming offset is a potentially truncated cookie (ptc).
5596 * The cookie matching code is aware of this and will fall back to
5597 * matching only 32 bits of the cookie.
5598 */
5599 int
5600 nfs_vnop_readdir(
5601 struct vnop_readdir_args /* {
5602 * struct vnodeop_desc *a_desc;
5603 * vnode_t a_vp;
5604 * struct uio *a_uio;
5605 * int a_flags;
5606 * int *a_eofflag;
5607 * int *a_numdirent;
5608 * vfs_context_t a_context;
5609 * } */*ap)
5610 {
5611 vfs_context_t ctx = ap->a_context;
5612 vnode_t dvp = ap->a_vp;
5613 nfsnode_t dnp = VTONFS(dvp);
5614 struct nfsmount *nmp;
5615 uio_t uio = ap->a_uio;
5616 int error, nfsvers, extended, numdirent, bigcookies, ptc, done;
5617 long attrcachetimeout;
5618 uint16_t i, iptc, rlen, nlen;
5619 uint64_t cookie, nextcookie, lbn = 0;
5620 struct nfsbuf *bp = NULL;
5621 struct nfs_dir_buf_header *ndbhp;
5622 struct direntry *dp, *dpptc;
5623 struct dirent dent;
5624 char *cp = NULL;
5625 struct timeval now;
5626 thread_t thd;
5627
5628 nmp = VTONMP(dvp);
5629 if (nfs_mount_gone(nmp)) {
5630 return ENXIO;
5631 }
5632 nfsvers = nmp->nm_vers;
5633 bigcookies = (nmp->nm_state & NFSSTA_BIGCOOKIES);
5634 extended = (ap->a_flags & VNODE_READDIR_EXTENDED);
5635
5636 if (vnode_vtype(dvp) != VDIR) {
5637 return EPERM;
5638 }
5639
5640 if (ap->a_eofflag) {
5641 *ap->a_eofflag = 0;
5642 }
5643
5644 if (uio_resid(uio) == 0) {
5645 return 0;
5646 }
5647 #if CONFIG_NFS4
5648 if ((nfsvers >= NFS_VER4) && (dnp->n_vattr.nva_flags & NFS_FFLAG_TRIGGER)) {
5649 /* trigger directories should never be read, return nothing */
5650 return 0;
5651 }
5652 #endif
5653 thd = vfs_context_thread(ctx);
5654 numdirent = done = 0;
5655 nextcookie = uio_offset(uio);
5656 ptc = bigcookies && NFS_DIR_COOKIE_POTENTIALLY_TRUNCATED(nextcookie);
5657
5658 if ((error = nfs_node_lock(dnp))) {
5659 goto out;
5660 }
5661
5662 if (dnp->n_flag & NNEEDINVALIDATE) {
5663 dnp->n_flag &= ~NNEEDINVALIDATE;
5664 nfs_invaldir(dnp);
5665 nfs_node_unlock(dnp);
5666 error = nfs_vinvalbuf(dvp, 0, ctx, 1);
5667 if (!error) {
5668 error = nfs_node_lock(dnp);
5669 }
5670 if (error) {
5671 goto out;
5672 }
5673 }
5674
5675 if (dnp->n_rdirplusstamp_eof && dnp->n_rdirplusstamp_sof) {
5676 attrcachetimeout = nfs_attrcachetimeout(dnp);
5677 microuptime(&now);
5678 if (attrcachetimeout && (now.tv_sec - dnp->n_rdirplusstamp_sof > attrcachetimeout - 1)) {
5679 dnp->n_rdirplusstamp_eof = dnp->n_rdirplusstamp_sof = 0;
5680 nfs_invaldir(dnp);
5681 nfs_node_unlock(dnp);
5682 error = nfs_vinvalbuf(dvp, 0, ctx, 1);
5683 if (!error) {
5684 error = nfs_node_lock(dnp);
5685 }
5686 if (error) {
5687 goto out;
5688 }
5689 }
5690 }
5691
5692 /*
5693 * check for need to invalidate when (re)starting at beginning
5694 */
5695 if (!nextcookie) {
5696 if (dnp->n_flag & NMODIFIED) {
5697 nfs_invaldir(dnp);
5698 nfs_node_unlock(dnp);
5699 if ((error = nfs_vinvalbuf(dvp, 0, ctx, 1))) {
5700 goto out;
5701 }
5702 } else {
5703 nfs_node_unlock(dnp);
5704 }
5705 /* nfs_getattr() will check changed and purge caches */
5706 if ((error = nfs_getattr(dnp, NULL, ctx, NGA_UNCACHED))) {
5707 goto out;
5708 }
5709 } else {
5710 nfs_node_unlock(dnp);
5711 }
5712
5713 error = nfs_dir_cookie_to_lbn(dnp, nextcookie, &ptc, &lbn);
5714 if (error) {
5715 if (error < 0) { /* just hit EOF cookie */
5716 done = 1;
5717 error = 0;
5718 }
5719 if (ap->a_eofflag) {
5720 *ap->a_eofflag = 1;
5721 }
5722 }
5723
5724 while (!error && !done) {
5725 OSAddAtomic64(1, &nfsstats.biocache_readdirs);
5726 cookie = nextcookie;
5727 getbuffer:
5728 error = nfs_buf_get(dnp, lbn, NFS_DIRBLKSIZ, thd, NBLK_READ, &bp);
5729 if (error) {
5730 goto out;
5731 }
5732 ndbhp = (struct nfs_dir_buf_header*)bp->nb_data;
5733 if (!ISSET(bp->nb_flags, NB_CACHE) || !ISSET(ndbhp->ndbh_flags, NDB_FULL)) {
5734 if (!ISSET(bp->nb_flags, NB_CACHE)) { /* initialize the buffer */
5735 ndbhp->ndbh_flags = 0;
5736 ndbhp->ndbh_count = 0;
5737 ndbhp->ndbh_entry_end = sizeof(*ndbhp);
5738 ndbhp->ndbh_ncgen = dnp->n_ncgen;
5739 }
5740 error = nfs_buf_readdir(bp, ctx);
5741 if (error == NFSERR_DIRBUFDROPPED) {
5742 goto getbuffer;
5743 }
5744 if (error) {
5745 nfs_buf_release(bp, 1);
5746 }
5747 if (error && (error != ENXIO) && (error != ETIMEDOUT) && (error != EINTR) && (error != ERESTART)) {
5748 if (!nfs_node_lock(dnp)) {
5749 nfs_invaldir(dnp);
5750 nfs_node_unlock(dnp);
5751 }
5752 nfs_vinvalbuf(dvp, 0, ctx, 1);
5753 if (error == NFSERR_BAD_COOKIE) {
5754 error = ENOENT;
5755 }
5756 }
5757 if (error) {
5758 goto out;
5759 }
5760 }
5761
5762 /* find next entry to return */
5763 dp = NFS_DIR_BUF_FIRST_DIRENTRY(bp);
5764 i = 0;
5765 if ((lbn != cookie) && !(ptc && NFS_DIR_COOKIE_SAME32(lbn, cookie))) {
5766 dpptc = NULL;
5767 iptc = 0;
5768 for (; (i < ndbhp->ndbh_count) && (cookie != dp->d_seekoff); i++) {
5769 if (ptc && !dpptc && NFS_DIR_COOKIE_SAME32(cookie, dp->d_seekoff)) {
5770 iptc = i;
5771 dpptc = dp;
5772 }
5773 nextcookie = dp->d_seekoff;
5774 dp = NFS_DIRENTRY_NEXT(dp);
5775 }
5776 if ((i == ndbhp->ndbh_count) && dpptc) {
5777 i = iptc;
5778 dp = dpptc;
5779 }
5780 if (i < ndbhp->ndbh_count) {
5781 nextcookie = dp->d_seekoff;
5782 dp = NFS_DIRENTRY_NEXT(dp);
5783 i++;
5784 }
5785 }
5786 ptc = 0; /* only have to deal with ptc on first cookie */
5787
5788 /* return as many entries as we can */
5789 for (; i < ndbhp->ndbh_count; i++) {
5790 if (extended) {
5791 rlen = dp->d_reclen;
5792 cp = (char*)dp;
5793 } else {
5794 if (!cp) {
5795 cp = (char*)&dent;
5796 bzero(cp, sizeof(dent));
5797 }
5798 if (dp->d_namlen > (sizeof(dent.d_name) - 1)) {
5799 nlen = sizeof(dent.d_name) - 1;
5800 } else {
5801 nlen = dp->d_namlen;
5802 }
5803 rlen = NFS_DIRENT_LEN(nlen);
5804 dent.d_reclen = rlen;
5805 dent.d_ino = (ino_t)dp->d_ino;
5806 dent.d_type = dp->d_type;
5807 dent.d_namlen = (uint8_t)nlen;
5808 strlcpy(dent.d_name, dp->d_name, nlen + 1);
5809 }
5810 /* check that the record fits */
5811 if (rlen > uio_resid(uio)) {
5812 done = 1;
5813 break;
5814 }
5815 if ((error = uiomove(cp, rlen, uio))) {
5816 break;
5817 }
5818 numdirent++;
5819 nextcookie = dp->d_seekoff;
5820 dp = NFS_DIRENTRY_NEXT(dp);
5821 }
5822
5823 if (i == ndbhp->ndbh_count) {
5824 /* hit end of buffer, move to next buffer */
5825 lbn = nextcookie;
5826 /* if we also hit EOF, we're done */
5827 if (ISSET(ndbhp->ndbh_flags, NDB_EOF)) {
5828 done = 1;
5829 if (ap->a_eofflag) {
5830 *ap->a_eofflag = 1;
5831 }
5832 }
5833 }
5834 if (!error) {
5835 uio_setoffset(uio, nextcookie);
5836 }
5837 if (!error && !done && (nextcookie == cookie)) {
5838 printf("nfs readdir cookie didn't change 0x%llx, %d/%d\n", cookie, i, ndbhp->ndbh_count);
5839 error = EIO;
5840 }
5841 nfs_buf_release(bp, 1);
5842 }
5843
5844 if (!error) {
5845 nfs_dir_cookie_cache(dnp, nextcookie, lbn);
5846 }
5847
5848 if (ap->a_numdirent) {
5849 *ap->a_numdirent = numdirent;
5850 }
5851 out:
5852 return error;
5853 }
5854
5855
5856 /*
5857 * Invalidate cached directory information, except for the actual directory
5858 * blocks (which are invalidated separately).
5859 */
5860 void
5861 nfs_invaldir(nfsnode_t dnp)
5862 {
5863 if (vnode_vtype(NFSTOV(dnp)) != VDIR) {
5864 return;
5865 }
5866 dnp->n_eofcookie = 0;
5867 dnp->n_cookieverf = 0;
5868 if (!dnp->n_cookiecache) {
5869 return;
5870 }
5871 dnp->n_cookiecache->free = 0;
5872 dnp->n_cookiecache->mru = -1;
5873 memset(dnp->n_cookiecache->next, -1, NFSNUMCOOKIES);
5874 }
5875
5876 /*
5877 * calculate how much space is available for additional directory entries.
5878 */
5879 uint64_t
5880 nfs_dir_buf_freespace(struct nfsbuf *bp, int rdirplus)
5881 {
5882 struct nfs_dir_buf_header *ndbhp = (struct nfs_dir_buf_header*)bp->nb_data;
5883 uint64_t space;
5884
5885 if (!ndbhp) {
5886 return 0;
5887 }
5888 space = bp->nb_bufsize - ndbhp->ndbh_entry_end;
5889 if (rdirplus) {
5890 space -= ndbhp->ndbh_count * sizeof(struct nfs_vattr);
5891 }
5892 return space;
5893 }
5894
5895 /*
5896 * add/update a cookie->lbn entry in the directory cookie cache
5897 */
5898 void
5899 nfs_dir_cookie_cache(nfsnode_t dnp, uint64_t cookie, uint64_t lbn)
5900 {
5901 struct nfsdmap *ndcc;
5902 int8_t i, prev;
5903
5904 if (!cookie) {
5905 return;
5906 }
5907
5908 if (nfs_node_lock(dnp)) {
5909 return;
5910 }
5911
5912 if (cookie == dnp->n_eofcookie) { /* EOF cookie */
5913 nfs_node_unlock(dnp);
5914 return;
5915 }
5916
5917 ndcc = dnp->n_cookiecache;
5918 if (!ndcc) {
5919 /* allocate the cookie cache structure */
5920 ndcc = dnp->n_cookiecache = zalloc(ZV_NFSDIROFF);
5921 ndcc->free = 0;
5922 ndcc->mru = -1;
5923 memset(ndcc->next, -1, NFSNUMCOOKIES);
5924 }
5925
5926 /*
5927 * Search the list for this cookie.
5928 * Keep track of previous and last entries.
5929 */
5930 prev = -1;
5931 i = ndcc->mru;
5932 while ((i != -1) && (cookie != ndcc->cookies[i].key)) {
5933 if (ndcc->next[i] == -1) { /* stop on last entry so we can reuse */
5934 break;
5935 }
5936 prev = i;
5937 i = ndcc->next[i];
5938 }
5939 if ((i != -1) && (cookie == ndcc->cookies[i].key)) {
5940 /* found it, remove from list */
5941 if (prev != -1) {
5942 ndcc->next[prev] = ndcc->next[i];
5943 } else {
5944 ndcc->mru = ndcc->next[i];
5945 }
5946 } else {
5947 /* not found, use next free entry or reuse last entry */
5948 if (ndcc->free != NFSNUMCOOKIES) {
5949 i = ndcc->free++;
5950 } else {
5951 ndcc->next[prev] = -1;
5952 }
5953 ndcc->cookies[i].key = cookie;
5954 ndcc->cookies[i].lbn = lbn;
5955 }
5956 /* insert cookie at head of MRU list */
5957 ndcc->next[i] = ndcc->mru;
5958 ndcc->mru = i;
5959 nfs_node_unlock(dnp);
5960 }
5961
5962 /*
5963 * Try to map the given directory cookie to a directory buffer (return lbn).
5964 * If we have a possibly truncated cookie (ptc), check for 32-bit matches too.
5965 */
5966 int
5967 nfs_dir_cookie_to_lbn(nfsnode_t dnp, uint64_t cookie, int *ptc, uint64_t *lbnp)
5968 {
5969 struct nfsdmap *ndcc = dnp->n_cookiecache;
5970 int8_t eofptc, found;
5971 int i, iptc;
5972 struct nfsmount *nmp;
5973 struct nfsbuf *bp, *lastbp;
5974 struct nfsbuflists blist;
5975 struct direntry *dp, *dpptc;
5976 struct nfs_dir_buf_header *ndbhp;
5977
5978 if (!cookie) { /* initial cookie */
5979 *lbnp = 0;
5980 *ptc = 0;
5981 return 0;
5982 }
5983
5984 if (nfs_node_lock(dnp)) {
5985 return ENOENT;
5986 }
5987
5988 if (cookie == dnp->n_eofcookie) { /* EOF cookie */
5989 nfs_node_unlock(dnp);
5990 OSAddAtomic64(1, &nfsstats.direofcache_hits);
5991 *ptc = 0;
5992 return -1;
5993 }
5994 /* note if cookie is a 32-bit match with the EOF cookie */
5995 eofptc = *ptc ? NFS_DIR_COOKIE_SAME32(cookie, dnp->n_eofcookie) : 0;
5996 iptc = -1;
5997
5998 /* search the list for the cookie */
5999 for (i = ndcc ? ndcc->mru : -1; i >= 0; i = ndcc->next[i]) {
6000 if (ndcc->cookies[i].key == cookie) {
6001 /* found a match for this cookie */
6002 *lbnp = ndcc->cookies[i].lbn;
6003 nfs_node_unlock(dnp);
6004 OSAddAtomic64(1, &nfsstats.direofcache_hits);
6005 *ptc = 0;
6006 return 0;
6007 }
6008 /* check for 32-bit match */
6009 if (*ptc && (iptc == -1) && NFS_DIR_COOKIE_SAME32(ndcc->cookies[i].key, cookie)) {
6010 iptc = i;
6011 }
6012 }
6013 /* exact match not found */
6014 if (eofptc) {
6015 /* but 32-bit match hit the EOF cookie */
6016 nfs_node_unlock(dnp);
6017 OSAddAtomic64(1, &nfsstats.direofcache_hits);
6018 return -1;
6019 }
6020 if (iptc >= 0) {
6021 /* but 32-bit match got a hit */
6022 *lbnp = ndcc->cookies[iptc].lbn;
6023 nfs_node_unlock(dnp);
6024 OSAddAtomic64(1, &nfsstats.direofcache_hits);
6025 return 0;
6026 }
6027 nfs_node_unlock(dnp);
6028
6029 /*
6030 * No match found in the cookie cache... hmm...
6031 * Let's search the directory's buffers for the cookie.
6032 */
6033 nmp = NFSTONMP(dnp);
6034 if (nfs_mount_gone(nmp)) {
6035 return ENXIO;
6036 }
6037 dpptc = NULL;
6038 found = 0;
6039
6040 lck_mtx_lock(nfs_buf_mutex);
6041 /*
6042 * Scan the list of buffers, keeping them in order.
6043 * Note that itercomplete inserts each of the remaining buffers
6044 * into the head of list (thus reversing the elements). So, we
6045 * make sure to iterate through all buffers, inserting them after
6046 * each other, to keep them in order.
6047 * Also note: the LIST_INSERT_AFTER(lastbp) is only safe because
6048 * we don't drop nfs_buf_mutex.
6049 */
6050 if (!nfs_buf_iterprepare(dnp, &blist, NBI_CLEAN)) {
6051 lastbp = NULL;
6052 while ((bp = LIST_FIRST(&blist))) {
6053 LIST_REMOVE(bp, nb_vnbufs);
6054 if (!lastbp) {
6055 LIST_INSERT_HEAD(&dnp->n_cleanblkhd, bp, nb_vnbufs);
6056 } else {
6057 LIST_INSERT_AFTER(lastbp, bp, nb_vnbufs);
6058 }
6059 lastbp = bp;
6060 if (found) {
6061 continue;
6062 }
6063 nfs_buf_refget(bp);
6064 if (nfs_buf_acquire(bp, NBAC_NOWAIT, 0, 0)) {
6065 /* just skip this buffer */
6066 nfs_buf_refrele(bp);
6067 continue;
6068 }
6069 nfs_buf_refrele(bp);
6070
6071 /* scan the buffer for the cookie */
6072 ndbhp = (struct nfs_dir_buf_header*)bp->nb_data;
6073 dp = NFS_DIR_BUF_FIRST_DIRENTRY(bp);
6074 dpptc = NULL;
6075 for (i = 0; (i < ndbhp->ndbh_count) && (cookie != dp->d_seekoff); i++) {
6076 if (*ptc && !dpptc && NFS_DIR_COOKIE_SAME32(cookie, dp->d_seekoff)) {
6077 dpptc = dp;
6078 iptc = i;
6079 }
6080 dp = NFS_DIRENTRY_NEXT(dp);
6081 }
6082 if ((i == ndbhp->ndbh_count) && dpptc) {
6083 /* found only a PTC match */
6084 dp = dpptc;
6085 i = iptc;
6086 } else if (i < ndbhp->ndbh_count) {
6087 *ptc = 0;
6088 }
6089 if (i < (ndbhp->ndbh_count - 1)) {
6090 /* next entry is *in* this buffer: return this block */
6091 *lbnp = bp->nb_lblkno;
6092 found = 1;
6093 } else if (i == (ndbhp->ndbh_count - 1)) {
6094 /* next entry refers to *next* buffer: return next block */
6095 *lbnp = dp->d_seekoff;
6096 found = 1;
6097 }
6098 nfs_buf_drop(bp);
6099 }
6100 nfs_buf_itercomplete(dnp, &blist, NBI_CLEAN);
6101 }
6102 lck_mtx_unlock(nfs_buf_mutex);
6103 if (found) {
6104 OSAddAtomic64(1, &nfsstats.direofcache_hits);
6105 return 0;
6106 }
6107
6108 /* still not found... oh well, just start a new block */
6109 *lbnp = cookie;
6110 OSAddAtomic64(1, &nfsstats.direofcache_misses);
6111 return 0;
6112 }
6113
6114 /*
6115 * scan a directory buffer for the given name
6116 * Returns: ESRCH if not found, ENOENT if found invalid, 0 if found
6117 * Note: should only be called with RDIRPLUS directory buffers
6118 */
6119
6120 #define NDBS_PURGE 1
6121 #define NDBS_UPDATE 2
6122
6123 int
6124 nfs_dir_buf_search(
6125 struct nfsbuf *bp,
6126 struct componentname *cnp,
6127 fhandle_t *fhp,
6128 struct nfs_vattr *nvap,
6129 uint64_t *xidp,
6130 time_t *attrstampp,
6131 daddr64_t *nextlbnp,
6132 int flags)
6133 {
6134 struct direntry *dp;
6135 struct nfs_dir_buf_header *ndbhp;
6136 struct nfs_vattr *nvattrp;
6137 daddr64_t nextlbn = 0;
6138 int i, error = ESRCH;
6139 uint32_t fhlen;
6140
6141 /* scan the buffer for the name */
6142 ndbhp = (struct nfs_dir_buf_header*)bp->nb_data;
6143 dp = NFS_DIR_BUF_FIRST_DIRENTRY(bp);
6144 for (i = 0; i < ndbhp->ndbh_count; i++) {
6145 nextlbn = dp->d_seekoff;
6146 if ((cnp->cn_namelen == dp->d_namlen) && !strcmp(cnp->cn_nameptr, dp->d_name)) {
6147 fhlen = (uint8_t)dp->d_name[dp->d_namlen + 1];
6148 nvattrp = NFS_DIR_BUF_NVATTR(bp, i);
6149 if ((ndbhp->ndbh_ncgen != bp->nb_np->n_ncgen) || (fhlen == 0) ||
6150 (nvattrp->nva_type == VNON) || (nvattrp->nva_fileid == 0)) {
6151 /* entry is not valid */
6152 error = ENOENT;
6153 break;
6154 }
6155 if (flags == NDBS_PURGE) {
6156 dp->d_fileno = 0;
6157 bzero(nvattrp, sizeof(*nvattrp));
6158 error = ENOENT;
6159 break;
6160 }
6161 if (flags == NDBS_UPDATE) {
6162 /* update direntry's attrs if fh matches */
6163 if ((fhp->fh_len == fhlen) && !bcmp(&dp->d_name[dp->d_namlen + 2], fhp->fh_data, fhlen)) {
6164 bcopy(nvap, nvattrp, sizeof(*nvap));
6165 dp->d_fileno = nvattrp->nva_fileid;
6166 nvattrp->nva_fileid = *xidp;
6167 nvap->nva_flags |= NFS_FFLAG_FILEID_CONTAINS_XID;
6168 *(time_t*)(&dp->d_name[dp->d_namlen + 2 + fhp->fh_len]) = *attrstampp;
6169 }
6170 error = 0;
6171 break;
6172 }
6173 /* copy out fh, attrs, attrstamp, and xid */
6174 fhp->fh_len = fhlen;
6175 bcopy(&dp->d_name[dp->d_namlen + 2], fhp->fh_data, MAX(fhp->fh_len, (int)sizeof(fhp->fh_data)));
6176 *attrstampp = *(time_t*)(&dp->d_name[dp->d_namlen + 2 + fhp->fh_len]);
6177 bcopy(nvattrp, nvap, sizeof(*nvap));
6178 *xidp = nvap->nva_fileid;
6179 nvap->nva_fileid = dp->d_fileno;
6180 nvap->nva_flags &= ~NFS_FFLAG_FILEID_CONTAINS_XID;
6181 error = 0;
6182 break;
6183 }
6184 dp = NFS_DIRENTRY_NEXT(dp);
6185 }
6186 if (nextlbnp) {
6187 *nextlbnp = nextlbn;
6188 }
6189 return error;
6190 }
6191
6192 /*
6193 * Look up a name in a directory's buffers.
6194 * Note: should only be called with RDIRPLUS directory buffers
6195 */
6196 int
6197 nfs_dir_buf_cache_lookup(nfsnode_t dnp, nfsnode_t *npp, struct componentname *cnp, vfs_context_t ctx, int purge, int *skipdu)
6198 {
6199 nfsnode_t newnp;
6200 struct nfsmount *nmp;
6201 int error = 0, i, found = 0, count = 0;
6202 u_int64_t xid;
6203 struct nfs_vattr *nvattr;
6204 fhandle_t *fh;
6205 time_t attrstamp = 0;
6206 thread_t thd = vfs_context_thread(ctx);
6207 struct nfsbuf *bp, *lastbp, *foundbp;
6208 struct nfsbuflists blist;
6209 daddr64_t lbn, nextlbn;
6210 int dotunder = (cnp->cn_namelen > 2) && (cnp->cn_nameptr[0] == '.') && (cnp->cn_nameptr[1] == '_');
6211 int isdot = (cnp->cn_namelen == 1) && (cnp->cn_nameptr[0] == '.');
6212 int isdotdot = (cnp->cn_namelen == 2) && (cnp->cn_nameptr[0] == '.') && (cnp->cn_nameptr[1] == '.');
6213 int eof = 0, sof = 0, skipped = 0;
6214
6215 nmp = NFSTONMP(dnp);
6216 if (nfs_mount_gone(nmp)) {
6217 return ENXIO;
6218 }
6219 if (!purge) {
6220 *npp = NULL;
6221 }
6222
6223 if (isdot || isdotdot) {
6224 return 0;
6225 }
6226
6227 fh = zalloc(nfs_fhandle_zone);
6228 MALLOC(nvattr, struct nfs_vattr *, sizeof(*nvattr), M_TEMP, M_WAITOK);
6229
6230 /* first check most recent buffer (and next one too) */
6231 lbn = dnp->n_lastdbl;
6232 for (i = 0; i < 2; i++) {
6233 if ((error = nfs_buf_get(dnp, lbn, NFS_DIRBLKSIZ, thd, NBLK_READ | NBLK_ONLYVALID, &bp))) {
6234 goto out;
6235 }
6236 if (!bp) {
6237 skipped = 1;
6238 break;
6239 }
6240 count++;
6241 nfs_dir_buf_cache_lookup_boundaries(bp, &sof, &eof);
6242 error = nfs_dir_buf_search(bp, cnp, fh, nvattr, &xid, &attrstamp, &nextlbn, purge ? NDBS_PURGE : 0);
6243 nfs_buf_release(bp, 0);
6244 if (error == ESRCH) {
6245 error = 0;
6246 } else {
6247 found = 1;
6248 break;
6249 }
6250 lbn = nextlbn;
6251 }
6252
6253 lck_mtx_lock(nfs_buf_mutex);
6254 if (found) {
6255 dnp->n_lastdbl = lbn;
6256 goto done;
6257 }
6258
6259 /* If we detect that we fetched full directory listing we should avoid sending lookups for ._ files */
6260 if (dotunder && !found && !error && eof && sof && !skipped && skipdu) {
6261 *skipdu = 1;
6262 }
6263
6264 /*
6265 * Scan the list of buffers, keeping them in order.
6266 * Note that itercomplete inserts each of the remaining buffers
6267 * into the head of list (thus reversing the elements). So, we
6268 * make sure to iterate through all buffers, inserting them after
6269 * each other, to keep them in order.
6270 * Also note: the LIST_INSERT_AFTER(lastbp) is only safe because
6271 * we don't drop nfs_buf_mutex.
6272 */
6273 eof = sof = skipped = 0;
6274 if (!nfs_buf_iterprepare(dnp, &blist, NBI_CLEAN)) {
6275 lastbp = foundbp = NULL;
6276 while ((bp = LIST_FIRST(&blist))) {
6277 LIST_REMOVE(bp, nb_vnbufs);
6278 if (!lastbp) {
6279 LIST_INSERT_HEAD(&dnp->n_cleanblkhd, bp, nb_vnbufs);
6280 } else {
6281 LIST_INSERT_AFTER(lastbp, bp, nb_vnbufs);
6282 }
6283 lastbp = bp;
6284 if (error || found) {
6285 skipped = 1;
6286 continue;
6287 }
6288 if (!purge && dotunder && (count > 100)) { /* don't waste too much time looking for ._ files */
6289 skipped = 1;
6290 continue;
6291 }
6292 nfs_buf_refget(bp);
6293 lbn = bp->nb_lblkno;
6294 if (nfs_buf_acquire(bp, NBAC_NOWAIT, 0, 0)) {
6295 /* just skip this buffer */
6296 nfs_buf_refrele(bp);
6297 skipped = 1;
6298 continue;
6299 }
6300 nfs_buf_refrele(bp);
6301 count++;
6302 nfs_dir_buf_cache_lookup_boundaries(bp, &sof, &eof);
6303 error = nfs_dir_buf_search(bp, cnp, fh, nvattr, &xid, &attrstamp, NULL, purge ? NDBS_PURGE : 0);
6304 if (error == ESRCH) {
6305 error = 0;
6306 } else {
6307 found = 1;
6308 foundbp = bp;
6309 }
6310 nfs_buf_drop(bp);
6311 }
6312 if (found) {
6313 LIST_REMOVE(foundbp, nb_vnbufs);
6314 LIST_INSERT_HEAD(&dnp->n_cleanblkhd, foundbp, nb_vnbufs);
6315 dnp->n_lastdbl = foundbp->nb_lblkno;
6316 }
6317 nfs_buf_itercomplete(dnp, &blist, NBI_CLEAN);
6318 }
6319
6320 /* If we detect that we fetched full directory listing we should avoid sending lookups for ._ files */
6321 if (dotunder && !found && !error && eof && sof && !skipped && skipdu) {
6322 *skipdu = 1;
6323 }
6324
6325 done:
6326 lck_mtx_unlock(nfs_buf_mutex);
6327
6328 if (!error && found && !purge) {
6329 error = nfs_nget(NFSTOMP(dnp), dnp, cnp, fh->fh_data,
6330 fh->fh_len, nvattr, &xid, dnp->n_auth, NG_MAKEENTRY,
6331 &newnp);
6332 if (error) {
6333 goto out;
6334 }
6335 newnp->n_attrstamp = attrstamp;
6336 *npp = newnp;
6337 nfs_node_unlock(newnp);
6338 /* check if the dir buffer's attrs are out of date */
6339 if (!nfs_getattr(newnp, nvattr, ctx, NGA_CACHED) &&
6340 (newnp->n_attrstamp != attrstamp)) {
6341 /* they are, so update them */
6342 error = nfs_buf_get(dnp, lbn, NFS_DIRBLKSIZ, thd, NBLK_READ | NBLK_ONLYVALID, &bp);
6343 if (!error && bp) {
6344 attrstamp = newnp->n_attrstamp;
6345 xid = newnp->n_xid;
6346 nfs_dir_buf_search(bp, cnp, fh, nvattr, &xid, &attrstamp, NULL, NDBS_UPDATE);
6347 nfs_buf_release(bp, 0);
6348 }
6349 error = 0;
6350 }
6351 }
6352
6353 out:
6354 NFS_ZFREE(nfs_fhandle_zone, fh);
6355 FREE(nvattr, M_TEMP);
6356 return error;
6357 }
6358
6359 /*
6360 * Purge name cache entries for the given node.
6361 * For RDIRPLUS, also invalidate the entry in the directory's buffers.
6362 */
6363 void
6364 nfs_name_cache_purge(nfsnode_t dnp, nfsnode_t np, struct componentname *cnp, vfs_context_t ctx)
6365 {
6366 struct nfsmount *nmp = NFSTONMP(dnp);
6367
6368 cache_purge(NFSTOV(np));
6369 if (nmp && (nmp->nm_vers > NFS_VER2) && NMFLAG(nmp, RDIRPLUS)) {
6370 nfs_dir_buf_cache_lookup(dnp, NULL, cnp, ctx, 1, NULL);
6371 }
6372 }
6373
6374 /*
6375 * NFS V3 readdir (plus) RPC.
6376 */
6377 int
6378 nfs3_readdir_rpc(nfsnode_t dnp, struct nfsbuf *bp, vfs_context_t ctx)
6379 {
6380 struct nfsmount *nmp;
6381 int error = 0, lockerror, nfsvers, rdirplus, bigcookies;
6382 int i, status = 0, attrflag, fhflag, more_entries = 1, eof, bp_dropped = 0;
6383 uint32_t nmreaddirsize, nmrsize;
6384 uint32_t namlen, skiplen, fhlen, xlen, attrlen;
6385 uint64_t cookie, lastcookie, xid, savedxid, fileno, space_free, space_needed;
6386 struct nfsm_chain nmreq, nmrep, nmrepsave;
6387 fhandle_t *fh;
6388 struct nfs_vattr *nvattrp;
6389 struct nfs_dir_buf_header *ndbhp;
6390 struct direntry *dp;
6391 char *padstart;
6392 struct timeval now;
6393 uint16_t reclen;
6394 size_t padlen;
6395
6396 nmp = NFSTONMP(dnp);
6397 if (nfs_mount_gone(nmp)) {
6398 return ENXIO;
6399 }
6400 nfsvers = nmp->nm_vers;
6401 nmreaddirsize = nmp->nm_readdirsize;
6402 nmrsize = nmp->nm_rsize;
6403 bigcookies = nmp->nm_state & NFSSTA_BIGCOOKIES;
6404 fh = zalloc(nfs_fhandle_zone);
6405 noplus:
6406 rdirplus = ((nfsvers > NFS_VER2) && NMFLAG(nmp, RDIRPLUS)) ? 1 : 0;
6407
6408 if ((lockerror = nfs_node_lock(dnp))) {
6409 NFS_ZFREE(nfs_fhandle_zone, fh);
6410 return lockerror;
6411 }
6412
6413 /* determine cookie to use, and move dp to the right offset */
6414 ndbhp = (struct nfs_dir_buf_header*)bp->nb_data;
6415 dp = NFS_DIR_BUF_FIRST_DIRENTRY(bp);
6416 if (ndbhp->ndbh_count) {
6417 for (i = 0; i < ndbhp->ndbh_count - 1; i++) {
6418 dp = NFS_DIRENTRY_NEXT(dp);
6419 }
6420 cookie = dp->d_seekoff;
6421 dp = NFS_DIRENTRY_NEXT(dp);
6422 } else {
6423 cookie = bp->nb_lblkno;
6424 /* increment with every buffer read */
6425 OSAddAtomic64(1, &nfsstats.readdir_bios);
6426 }
6427 lastcookie = cookie;
6428
6429 /*
6430 * Loop around doing readdir(plus) RPCs of size nm_readdirsize until
6431 * the buffer is full (or we hit EOF). Then put the remainder of the
6432 * results in the next buffer(s).
6433 */
6434 nfsm_chain_null(&nmreq);
6435 nfsm_chain_null(&nmrep);
6436 while (nfs_dir_buf_freespace(bp, rdirplus) && !(ndbhp->ndbh_flags & NDB_FULL)) {
6437 nfsm_chain_build_alloc_init(error, &nmreq,
6438 NFSX_FH(nfsvers) + NFSX_READDIR(nfsvers) + NFSX_UNSIGNED);
6439 nfsm_chain_add_fh(error, &nmreq, nfsvers, dnp->n_fhp, dnp->n_fhsize);
6440 if (nfsvers == NFS_VER3) {
6441 /* opaque values don't need swapping, but as long */
6442 /* as we are consistent about it, it should be ok */
6443 nfsm_chain_add_64(error, &nmreq, cookie);
6444 nfsm_chain_add_64(error, &nmreq, dnp->n_cookieverf);
6445 } else {
6446 nfsm_chain_add_32(error, &nmreq, cookie);
6447 }
6448 nfsm_chain_add_32(error, &nmreq, nmreaddirsize);
6449 if (rdirplus) {
6450 nfsm_chain_add_32(error, &nmreq, nmrsize);
6451 }
6452 nfsm_chain_build_done(error, &nmreq);
6453 nfs_node_unlock(dnp);
6454 lockerror = ENOENT;
6455 nfsmout_if(error);
6456
6457 error = nfs_request(dnp, NULL, &nmreq,
6458 rdirplus ? NFSPROC_READDIRPLUS : NFSPROC_READDIR,
6459 ctx, NULL, &nmrep, &xid, &status);
6460
6461 if ((lockerror = nfs_node_lock(dnp))) {
6462 error = lockerror;
6463 }
6464
6465 savedxid = xid;
6466 if (nfsvers == NFS_VER3) {
6467 nfsm_chain_postop_attr_update(error, &nmrep, dnp, &xid);
6468 }
6469 if (!error) {
6470 error = status;
6471 }
6472 if (nfsvers == NFS_VER3) {
6473 nfsm_chain_get_64(error, &nmrep, dnp->n_cookieverf);
6474 }
6475 nfsm_chain_get_32(error, &nmrep, more_entries);
6476
6477 if (!lockerror) {
6478 nfs_node_unlock(dnp);
6479 lockerror = ENOENT;
6480 }
6481 if (error == NFSERR_NOTSUPP) {
6482 /* oops... it doesn't look like readdirplus is supported */
6483 lck_mtx_lock(&nmp->nm_lock);
6484 NFS_BITMAP_CLR(nmp->nm_flags, NFS_MFLAG_RDIRPLUS);
6485 lck_mtx_unlock(&nmp->nm_lock);
6486 goto noplus;
6487 }
6488 nfsmout_if(error);
6489
6490 if (rdirplus) {
6491 microuptime(&now);
6492 if (lastcookie == 0) {
6493 dnp->n_rdirplusstamp_sof = now.tv_sec;
6494 dnp->n_rdirplusstamp_eof = 0;
6495 }
6496 }
6497
6498 /* loop through the entries packing them into the buffer */
6499 while (more_entries) {
6500 if (nfsvers == NFS_VER3) {
6501 nfsm_chain_get_64(error, &nmrep, fileno);
6502 } else {
6503 nfsm_chain_get_32(error, &nmrep, fileno);
6504 }
6505 nfsm_chain_get_32(error, &nmrep, namlen);
6506 nfsmout_if(error);
6507 /* just truncate names that don't fit in direntry.d_name */
6508 if (namlen <= 0) {
6509 error = EBADRPC;
6510 goto nfsmout;
6511 }
6512 if (namlen > (sizeof(dp->d_name) - 1)) {
6513 skiplen = namlen - sizeof(dp->d_name) + 1;
6514 namlen = sizeof(dp->d_name) - 1;
6515 } else {
6516 skiplen = 0;
6517 }
6518 /* guess that fh size will be same as parent */
6519 fhlen = rdirplus ? (1 + dnp->n_fhsize) : 0;
6520 xlen = rdirplus ? (fhlen + sizeof(time_t)) : 0;
6521 attrlen = rdirplus ? sizeof(struct nfs_vattr) : 0;
6522 reclen = NFS_DIRENTRY_LEN_16(namlen + xlen);
6523 space_needed = reclen + attrlen;
6524 space_free = nfs_dir_buf_freespace(bp, rdirplus);
6525 if (space_needed > space_free) {
6526 /*
6527 * We still have entries to pack, but we've
6528 * run out of room in the current buffer.
6529 * So we need to move to the next buffer.
6530 * The block# for the next buffer is the
6531 * last cookie in the current buffer.
6532 */
6533 nextbuffer:
6534 ndbhp->ndbh_flags |= NDB_FULL;
6535 nfs_buf_release(bp, 0);
6536 bp_dropped = 1;
6537 bp = NULL;
6538 error = nfs_buf_get(dnp, lastcookie, NFS_DIRBLKSIZ, vfs_context_thread(ctx), NBLK_READ, &bp);
6539 nfsmout_if(error);
6540 /* initialize buffer */
6541 ndbhp = (struct nfs_dir_buf_header*)bp->nb_data;
6542 ndbhp->ndbh_flags = 0;
6543 ndbhp->ndbh_count = 0;
6544 ndbhp->ndbh_entry_end = sizeof(*ndbhp);
6545 ndbhp->ndbh_ncgen = dnp->n_ncgen;
6546 space_free = nfs_dir_buf_freespace(bp, rdirplus);
6547 dp = NFS_DIR_BUF_FIRST_DIRENTRY(bp);
6548 /* increment with every buffer read */
6549 OSAddAtomic64(1, &nfsstats.readdir_bios);
6550 }
6551 nmrepsave = nmrep;
6552 dp->d_fileno = fileno;
6553 dp->d_namlen = (uint16_t)namlen;
6554 dp->d_reclen = reclen;
6555 dp->d_type = DT_UNKNOWN;
6556 nfsm_chain_get_opaque(error, &nmrep, namlen, dp->d_name);
6557 nfsmout_if(error);
6558 dp->d_name[namlen] = '\0';
6559 if (skiplen) {
6560 nfsm_chain_adv(error, &nmrep,
6561 nfsm_rndup(namlen + skiplen) - nfsm_rndup(namlen));
6562 }
6563 if (nfsvers == NFS_VER3) {
6564 nfsm_chain_get_64(error, &nmrep, cookie);
6565 } else {
6566 nfsm_chain_get_32(error, &nmrep, cookie);
6567 }
6568 nfsmout_if(error);
6569 dp->d_seekoff = cookie;
6570 if (!bigcookies && (cookie >> 32) && (nmp == NFSTONMP(dnp))) {
6571 /* we've got a big cookie, make sure flag is set */
6572 lck_mtx_lock(&nmp->nm_lock);
6573 nmp->nm_state |= NFSSTA_BIGCOOKIES;
6574 lck_mtx_unlock(&nmp->nm_lock);
6575 bigcookies = 1;
6576 }
6577 if (rdirplus) {
6578 nvattrp = NFS_DIR_BUF_NVATTR(bp, ndbhp->ndbh_count);
6579 /* check for attributes */
6580 nfsm_chain_get_32(error, &nmrep, attrflag);
6581 nfsmout_if(error);
6582 if (attrflag) {
6583 /* grab attributes */
6584 error = nfs_parsefattr(nmp, &nmrep, NFS_VER3, nvattrp);
6585 nfsmout_if(error);
6586 dp->d_type = IFTODT(VTTOIF(nvattrp->nva_type));
6587 /* fileid is already in d_fileno, so stash xid in attrs */
6588 nvattrp->nva_fileid = savedxid;
6589 nvattrp->nva_flags |= NFS_FFLAG_FILEID_CONTAINS_XID;
6590 } else {
6591 /* mark the attributes invalid */
6592 bzero(nvattrp, sizeof(struct nfs_vattr));
6593 }
6594 /* check for file handle */
6595 nfsm_chain_get_32(error, &nmrep, fhflag);
6596 nfsmout_if(error);
6597 if (fhflag) {
6598 nfsm_chain_get_fh(error, &nmrep, NFS_VER3, fh);
6599 nfsmout_if(error);
6600 fhlen = fh->fh_len + 1;
6601 xlen = fhlen + sizeof(time_t);
6602 reclen = NFS_DIRENTRY_LEN_16(namlen + xlen);
6603 space_needed = reclen + attrlen;
6604 if (space_needed > space_free) {
6605 /* didn't actually have the room... move on to next buffer */
6606 nmrep = nmrepsave;
6607 goto nextbuffer;
6608 }
6609 /* pack the file handle into the record */
6610 dp->d_name[dp->d_namlen + 1] = (unsigned char)fh->fh_len; /* No truncation because fh_len's value is checked during nfsm_chain_get_fh() */
6611 bcopy(fh->fh_data, &dp->d_name[dp->d_namlen + 2], fh->fh_len);
6612 } else {
6613 /* mark the file handle invalid */
6614 fh->fh_len = 0;
6615 fhlen = fh->fh_len + 1;
6616 xlen = fhlen + sizeof(time_t);
6617 reclen = NFS_DIRENTRY_LEN_16(namlen + xlen);
6618 bzero(&dp->d_name[dp->d_namlen + 1], fhlen);
6619 }
6620 *(time_t*)(&dp->d_name[dp->d_namlen + 1 + fhlen]) = now.tv_sec;
6621 dp->d_reclen = reclen;
6622 nfs_rdirplus_update_node_attrs(dnp, dp, fh, nvattrp, &savedxid);
6623 }
6624 padstart = dp->d_name + dp->d_namlen + 1 + xlen;
6625 ndbhp->ndbh_count++;
6626 lastcookie = cookie;
6627 /* advance to next direntry in buffer */
6628 dp = NFS_DIRENTRY_NEXT(dp);
6629 ndbhp->ndbh_entry_end = (char*)dp - bp->nb_data;
6630 /* zero out the pad bytes */
6631 padlen = (char*)dp - padstart;
6632 if (padlen > 0) {
6633 bzero(padstart, padlen);
6634 }
6635 /* check for more entries */
6636 nfsm_chain_get_32(error, &nmrep, more_entries);
6637 nfsmout_if(error);
6638 }
6639 /* Finally, get the eof boolean */
6640 nfsm_chain_get_32(error, &nmrep, eof);
6641 nfsmout_if(error);
6642 if (eof) {
6643 ndbhp->ndbh_flags |= (NDB_FULL | NDB_EOF);
6644 nfs_node_lock_force(dnp);
6645 dnp->n_eofcookie = lastcookie;
6646 if (rdirplus) {
6647 dnp->n_rdirplusstamp_eof = now.tv_sec;
6648 }
6649 nfs_node_unlock(dnp);
6650 } else {
6651 more_entries = 1;
6652 }
6653 if (bp_dropped) {
6654 nfs_buf_release(bp, 0);
6655 bp = NULL;
6656 break;
6657 }
6658 if ((lockerror = nfs_node_lock(dnp))) {
6659 error = lockerror;
6660 }
6661 nfsmout_if(error);
6662 nfsm_chain_cleanup(&nmrep);
6663 nfsm_chain_null(&nmreq);
6664 }
6665 nfsmout:
6666 if (bp_dropped && bp) {
6667 nfs_buf_release(bp, 0);
6668 }
6669 if (!lockerror) {
6670 nfs_node_unlock(dnp);
6671 }
6672 nfsm_chain_cleanup(&nmreq);
6673 nfsm_chain_cleanup(&nmrep);
6674 NFS_ZFREE(nfs_fhandle_zone, fh);
6675 return bp_dropped ? NFSERR_DIRBUFDROPPED : error;
6676 }
6677
6678 /*
6679 * Silly rename. To make the NFS filesystem that is stateless look a little
6680 * more like the "ufs" a remove of an active vnode is translated to a rename
6681 * to a funny looking filename that is removed by nfs_vnop_inactive on the
6682 * nfsnode. There is the potential for another process on a different client
6683 * to create the same funny name between when the lookitup() fails and the
6684 * rename() completes, but...
6685 */
6686
6687 /* format of "random" silly names - includes a number and pid */
6688 /* (note: shouldn't exceed size of nfs_sillyrename.nsr_name) */
6689 #define NFS_SILLYNAME_FORMAT ".nfs.%08x.%04x"
6690 /* starting from zero isn't silly enough */
6691 static uint32_t nfs_sillyrename_number = 0x20051025;
6692
6693 int
6694 nfs_sillyrename(
6695 nfsnode_t dnp,
6696 nfsnode_t np,
6697 struct componentname *cnp,
6698 vfs_context_t ctx)
6699 {
6700 struct nfs_sillyrename *nsp;
6701 int error;
6702 pid_t pid;
6703 kauth_cred_t cred;
6704 uint32_t num;
6705 struct nfsmount *nmp;
6706
6707 nmp = NFSTONMP(dnp);
6708 if (nfs_mount_gone(nmp)) {
6709 return ENXIO;
6710 }
6711
6712 nfs_name_cache_purge(dnp, np, cnp, ctx);
6713
6714 MALLOC(nsp, struct nfs_sillyrename *,
6715 sizeof(struct nfs_sillyrename), M_TEMP, M_WAITOK);
6716 if (!nsp) {
6717 return ENOMEM;
6718 }
6719 cred = vfs_context_ucred(ctx);
6720 kauth_cred_ref(cred);
6721 nsp->nsr_cred = cred;
6722 nsp->nsr_dnp = dnp;
6723 error = vnode_ref(NFSTOV(dnp));
6724 if (error) {
6725 goto bad_norele;
6726 }
6727
6728 /* Fudge together a funny name */
6729 pid = vfs_context_pid(ctx);
6730 num = OSAddAtomic(1, &nfs_sillyrename_number);
6731 nsp->nsr_namlen = snprintf(nsp->nsr_name, sizeof(nsp->nsr_name),
6732 NFS_SILLYNAME_FORMAT, num, (pid & 0xffff));
6733 if (nsp->nsr_namlen >= (int)sizeof(nsp->nsr_name)) {
6734 nsp->nsr_namlen = sizeof(nsp->nsr_name) - 1;
6735 }
6736
6737 /* Try lookitups until we get one that isn't there */
6738 while (nfs_lookitup(dnp, nsp->nsr_name, nsp->nsr_namlen, ctx, NULL) == 0) {
6739 num = OSAddAtomic(1, &nfs_sillyrename_number);
6740 nsp->nsr_namlen = snprintf(nsp->nsr_name, sizeof(nsp->nsr_name),
6741 NFS_SILLYNAME_FORMAT, num, (pid & 0xffff));
6742 if (nsp->nsr_namlen >= (int)sizeof(nsp->nsr_name)) {
6743 nsp->nsr_namlen = sizeof(nsp->nsr_name) - 1;
6744 }
6745 }
6746
6747 /* now, do the rename */
6748 error = nmp->nm_funcs->nf_rename_rpc(dnp, cnp->cn_nameptr, cnp->cn_namelen,
6749 dnp, nsp->nsr_name, nsp->nsr_namlen, ctx);
6750
6751 /* Kludge: Map ENOENT => 0 assuming that it is a reply to a retry. */
6752 if (error == ENOENT) {
6753 error = 0;
6754 }
6755 if (!error) {
6756 nfs_node_lock_force(dnp);
6757 if (dnp->n_flag & NNEGNCENTRIES) {
6758 dnp->n_flag &= ~NNEGNCENTRIES;
6759 cache_purge_negatives(NFSTOV(dnp));
6760 }
6761 nfs_node_unlock(dnp);
6762 }
6763 FSDBG(267, dnp, np, num, error);
6764 if (error) {
6765 goto bad;
6766 }
6767 error = nfs_lookitup(dnp, nsp->nsr_name, nsp->nsr_namlen, ctx, &np);
6768 nfs_node_lock_force(np);
6769 np->n_sillyrename = nsp;
6770 nfs_node_unlock(np);
6771 return 0;
6772 bad:
6773 vnode_rele(NFSTOV(dnp));
6774 bad_norele:
6775 nsp->nsr_cred = NOCRED;
6776 kauth_cred_unref(&cred);
6777 FREE(nsp, M_TEMP);
6778 return error;
6779 }
6780
6781 int
6782 nfs3_lookup_rpc_async(
6783 nfsnode_t dnp,
6784 char *name,
6785 int namelen,
6786 vfs_context_t ctx,
6787 struct nfsreq **reqp)
6788 {
6789 struct nfsmount *nmp;
6790 struct nfsm_chain nmreq;
6791 int error = 0, nfsvers;
6792
6793 nmp = NFSTONMP(dnp);
6794 if (nfs_mount_gone(nmp)) {
6795 return ENXIO;
6796 }
6797 nfsvers = nmp->nm_vers;
6798
6799 nfsm_chain_null(&nmreq);
6800
6801 nfsm_chain_build_alloc_init(error, &nmreq,
6802 NFSX_FH(nfsvers) + NFSX_UNSIGNED + nfsm_rndup(namelen));
6803 nfsm_chain_add_fh(error, &nmreq, nfsvers, dnp->n_fhp, dnp->n_fhsize);
6804 nfsm_chain_add_name(error, &nmreq, name, namelen, nmp);
6805 nfsm_chain_build_done(error, &nmreq);
6806 nfsmout_if(error);
6807 error = nfs_request_async(dnp, NULL, &nmreq, NFSPROC_LOOKUP,
6808 vfs_context_thread(ctx), vfs_context_ucred(ctx), NULL, 0, NULL, reqp);
6809 nfsmout:
6810 nfsm_chain_cleanup(&nmreq);
6811 return error;
6812 }
6813
6814 int
6815 nfs3_lookup_rpc_async_finish(
6816 nfsnode_t dnp,
6817 __unused char *name,
6818 __unused int namelen,
6819 vfs_context_t ctx,
6820 struct nfsreq *req,
6821 u_int64_t *xidp,
6822 fhandle_t *fhp,
6823 struct nfs_vattr *nvap)
6824 {
6825 int error = 0, lockerror = ENOENT, status = 0, nfsvers, attrflag;
6826 u_int64_t xid;
6827 struct nfsmount *nmp;
6828 struct nfsm_chain nmrep;
6829
6830 nmp = NFSTONMP(dnp);
6831 if (nmp == NULL) {
6832 return ENXIO;
6833 }
6834 nfsvers = nmp->nm_vers;
6835
6836 nfsm_chain_null(&nmrep);
6837
6838 error = nfs_request_async_finish(req, &nmrep, xidp, &status);
6839
6840 if ((lockerror = nfs_node_lock(dnp))) {
6841 error = lockerror;
6842 }
6843 xid = *xidp;
6844 if (error || status) {
6845 if (nfsvers == NFS_VER3) {
6846 nfsm_chain_postop_attr_update(error, &nmrep, dnp, &xid);
6847 }
6848 if (!error) {
6849 error = status;
6850 }
6851 goto nfsmout;
6852 }
6853
6854 nfsmout_if(error || !fhp || !nvap);
6855
6856 /* get the file handle */
6857 nfsm_chain_get_fh(error, &nmrep, nfsvers, fhp);
6858
6859 /* get the attributes */
6860 if (nfsvers == NFS_VER3) {
6861 nfsm_chain_postop_attr_get(nmp, error, &nmrep, attrflag, nvap);
6862 nfsm_chain_postop_attr_update(error, &nmrep, dnp, &xid);
6863 if (!error && !attrflag) {
6864 error = nfs3_getattr_rpc(NULL, NFSTOMP(dnp), fhp->fh_data, fhp->fh_len, 0, ctx, nvap, xidp);
6865 }
6866 } else {
6867 error = nfs_parsefattr(nmp, &nmrep, nfsvers, nvap);
6868 }
6869 nfsmout:
6870 if (!lockerror) {
6871 nfs_node_unlock(dnp);
6872 }
6873 nfsm_chain_cleanup(&nmrep);
6874 return error;
6875 }
6876
6877 /*
6878 * Look up a file name and optionally either update the file handle or
6879 * allocate an nfsnode, depending on the value of npp.
6880 * npp == NULL --> just do the lookup
6881 * *npp == NULL --> allocate a new nfsnode and make sure attributes are
6882 * handled too
6883 * *npp != NULL --> update the file handle in the vnode
6884 */
6885 int
6886 nfs_lookitup(
6887 nfsnode_t dnp,
6888 char *name,
6889 int namelen,
6890 vfs_context_t ctx,
6891 nfsnode_t *npp)
6892 {
6893 int error = 0;
6894 nfsnode_t np, newnp = NULL;
6895 u_int64_t xid;
6896 fhandle_t *fh;
6897 struct nfsmount *nmp;
6898 struct nfs_vattr *nvattr;
6899 struct nfsreq *req;
6900
6901 nmp = NFSTONMP(dnp);
6902 if (nfs_mount_gone(nmp)) {
6903 return ENXIO;
6904 }
6905
6906 if (NFS_BITMAP_ISSET(nmp->nm_fsattr.nfsa_bitmap, NFS_FATTR_MAXNAME) &&
6907 (namelen > nmp->nm_fsattr.nfsa_maxname)) {
6908 return ENAMETOOLONG;
6909 }
6910
6911 fh = zalloc(nfs_fhandle_zone);
6912 req = zalloc_flags(nfs_req_zone, Z_WAITOK);
6913 MALLOC(nvattr, struct nfs_vattr *, sizeof(*nvattr), M_TEMP, M_WAITOK);
6914 NVATTR_INIT(nvattr);
6915
6916 /* check for lookup of "." */
6917 if ((name[0] == '.') && (namelen == 1)) {
6918 /* skip lookup, we know who we are */
6919 fh->fh_len = 0;
6920 newnp = dnp;
6921 goto nfsmout;
6922 }
6923
6924 error = nmp->nm_funcs->nf_lookup_rpc_async(dnp, name, namelen, ctx, &req);
6925 nfsmout_if(error);
6926 error = nmp->nm_funcs->nf_lookup_rpc_async_finish(dnp, name, namelen, ctx, req, &xid, fh, nvattr);
6927 nfsmout_if(!npp || error);
6928
6929 if (*npp) {
6930 np = *npp;
6931 if (fh->fh_len != np->n_fhsize) {
6932 u_char *oldbuf = (np->n_fhsize > NFS_SMALLFH) ? np->n_fhp : NULL;
6933 if (fh->fh_len > NFS_SMALLFH) {
6934 MALLOC(np->n_fhp, u_char *, fh->fh_len, M_NFSBIGFH, M_WAITOK);
6935 if (!np->n_fhp) {
6936 np->n_fhp = oldbuf;
6937 error = ENOMEM;
6938 goto nfsmout;
6939 }
6940 } else {
6941 np->n_fhp = &np->n_fh[0];
6942 }
6943 if (oldbuf) {
6944 FREE(oldbuf, M_NFSBIGFH);
6945 }
6946 }
6947 bcopy(fh->fh_data, np->n_fhp, fh->fh_len);
6948 np->n_fhsize = fh->fh_len;
6949 nfs_node_lock_force(np);
6950 error = nfs_loadattrcache(np, nvattr, &xid, 0);
6951 nfs_node_unlock(np);
6952 nfsmout_if(error);
6953 newnp = np;
6954 } else if (NFS_CMPFH(dnp, fh->fh_data, fh->fh_len)) {
6955 nfs_node_lock_force(dnp);
6956 if (dnp->n_xid <= xid) {
6957 error = nfs_loadattrcache(dnp, nvattr, &xid, 0);
6958 }
6959 nfs_node_unlock(dnp);
6960 nfsmout_if(error);
6961 newnp = dnp;
6962 } else {
6963 struct componentname cn, *cnp = &cn;
6964 bzero(cnp, sizeof(*cnp));
6965 cnp->cn_nameptr = name;
6966 cnp->cn_namelen = namelen;
6967 error = nfs_nget(NFSTOMP(dnp), dnp, cnp, fh->fh_data, fh->fh_len,
6968 nvattr, &xid, req->r_auth, NG_MAKEENTRY, &np);
6969 nfsmout_if(error);
6970 newnp = np;
6971 }
6972
6973 nfsmout:
6974 if (npp && !*npp && !error) {
6975 *npp = newnp;
6976 }
6977 NVATTR_CLEANUP(nvattr);
6978 NFS_ZFREE(nfs_fhandle_zone, fh);
6979 NFS_ZFREE(nfs_req_zone, req);
6980 FREE(nvattr, M_TEMP);
6981 return error;
6982 }
6983
6984 /*
6985 * set up and initialize a "._" file lookup structure used for
6986 * performing async lookups.
6987 */
6988 void
6989 nfs_dulookup_init(struct nfs_dulookup *dulp, nfsnode_t dnp, const char *name, int namelen, vfs_context_t ctx)
6990 {
6991 int error, du_namelen;
6992 vnode_t du_vp;
6993 struct nfsmount *nmp = NFSTONMP(dnp);
6994
6995 /* check for ._ file in name cache */
6996 dulp->du_flags = 0;
6997 bzero(&dulp->du_cn, sizeof(dulp->du_cn));
6998 du_namelen = namelen + 2;
6999 if (!nmp || NMFLAG(nmp, NONEGNAMECACHE)) {
7000 return;
7001 }
7002 if ((namelen >= 2) && (name[0] == '.') && (name[1] == '_')) {
7003 return;
7004 }
7005 if (du_namelen >= (int)sizeof(dulp->du_smallname)) {
7006 MALLOC(dulp->du_cn.cn_nameptr, char *, du_namelen + 1, M_TEMP, M_WAITOK);
7007 } else {
7008 dulp->du_cn.cn_nameptr = dulp->du_smallname;
7009 }
7010 if (!dulp->du_cn.cn_nameptr) {
7011 return;
7012 }
7013 dulp->du_cn.cn_namelen = du_namelen;
7014 snprintf(dulp->du_cn.cn_nameptr, du_namelen + 1, "._%s", name);
7015 dulp->du_cn.cn_nameptr[du_namelen] = '\0';
7016 dulp->du_cn.cn_nameiop = LOOKUP;
7017 dulp->du_cn.cn_flags = MAKEENTRY;
7018
7019 error = cache_lookup(NFSTOV(dnp), &du_vp, &dulp->du_cn);
7020 if (error == -1) {
7021 vnode_put(du_vp);
7022 } else if (!error) {
7023 nmp = NFSTONMP(dnp);
7024 if (nmp && (nmp->nm_vers > NFS_VER2) && NMFLAG(nmp, RDIRPLUS)) {
7025 /* if rdirplus, try dir buf cache lookup */
7026 nfsnode_t du_np = NULL;
7027 if (!nfs_dir_buf_cache_lookup(dnp, &du_np, &dulp->du_cn, ctx, 0, NULL) && du_np) {
7028 /* dir buf cache hit */
7029 du_vp = NFSTOV(du_np);
7030 vnode_put(du_vp);
7031 error = -1;
7032 }
7033 }
7034 if (!error) {
7035 dulp->du_flags |= NFS_DULOOKUP_DOIT;
7036 }
7037 }
7038 }
7039
7040 /*
7041 * start an async "._" file lookup request
7042 */
7043 void
7044 nfs_dulookup_start(struct nfs_dulookup *dulp, nfsnode_t dnp, vfs_context_t ctx)
7045 {
7046 struct nfsmount *nmp = NFSTONMP(dnp);
7047 struct nfsreq *req = &dulp->du_req;
7048
7049 if (!nmp || !(dulp->du_flags & NFS_DULOOKUP_DOIT) || (dulp->du_flags & NFS_DULOOKUP_INPROG)) {
7050 return;
7051 }
7052 if (!nmp->nm_funcs->nf_lookup_rpc_async(dnp, dulp->du_cn.cn_nameptr,
7053 dulp->du_cn.cn_namelen, ctx, &req)) {
7054 dulp->du_flags |= NFS_DULOOKUP_INPROG;
7055 }
7056 }
7057
7058 /*
7059 * finish an async "._" file lookup request and clean up the structure
7060 */
7061 void
7062 nfs_dulookup_finish(struct nfs_dulookup *dulp, nfsnode_t dnp, vfs_context_t ctx)
7063 {
7064 struct nfsmount *nmp = NFSTONMP(dnp);
7065 int error;
7066 nfsnode_t du_np;
7067 u_int64_t xid;
7068 fhandle_t *fh;
7069 struct nfs_vattr *nvattr;
7070
7071 if (!nmp || !(dulp->du_flags & NFS_DULOOKUP_INPROG)) {
7072 goto out;
7073 }
7074
7075 fh = zalloc(nfs_fhandle_zone);
7076 MALLOC(nvattr, struct nfs_vattr *, sizeof(*nvattr), M_TEMP, M_WAITOK);
7077 NVATTR_INIT(nvattr);
7078 error = nmp->nm_funcs->nf_lookup_rpc_async_finish(dnp, dulp->du_cn.cn_nameptr,
7079 dulp->du_cn.cn_namelen, ctx, &dulp->du_req, &xid, fh, nvattr);
7080 dulp->du_flags &= ~NFS_DULOOKUP_INPROG;
7081 if (error == ENOENT) {
7082 /* add a negative entry in the name cache */
7083 nfs_node_lock_force(dnp);
7084 cache_enter(NFSTOV(dnp), NULL, &dulp->du_cn);
7085 dnp->n_flag |= NNEGNCENTRIES;
7086 nfs_node_unlock(dnp);
7087 } else if (!error) {
7088 error = nfs_nget(NFSTOMP(dnp), dnp, &dulp->du_cn, fh->fh_data, fh->fh_len,
7089 nvattr, &xid, dulp->du_req.r_auth, NG_MAKEENTRY, &du_np);
7090 if (!error) {
7091 nfs_node_unlock(du_np);
7092 vnode_put(NFSTOV(du_np));
7093 }
7094 }
7095 NVATTR_CLEANUP(nvattr);
7096 NFS_ZFREE(nfs_fhandle_zone, fh);
7097 FREE(nvattr, M_TEMP);
7098 out:
7099 if (dulp->du_flags & NFS_DULOOKUP_INPROG) {
7100 nfs_request_async_cancel(&dulp->du_req);
7101 }
7102 if (dulp->du_cn.cn_nameptr && (dulp->du_cn.cn_nameptr != dulp->du_smallname)) {
7103 FREE(dulp->du_cn.cn_nameptr, M_TEMP);
7104 }
7105 }
7106
7107
7108 /*
7109 * NFS Version 3 commit RPC
7110 */
7111 int
7112 nfs3_commit_rpc(
7113 nfsnode_t np,
7114 uint64_t offset,
7115 uint64_t count,
7116 kauth_cred_t cred,
7117 uint64_t wverf)
7118 {
7119 struct nfsmount *nmp;
7120 int error = 0, lockerror, status = 0, wccpostattr = 0, nfsvers;
7121 struct timespec premtime = { .tv_sec = 0, .tv_nsec = 0 };
7122 u_int64_t xid, newwverf;
7123 uint32_t count32;
7124 struct nfsm_chain nmreq, nmrep;
7125
7126 nmp = NFSTONMP(np);
7127 FSDBG(521, np, offset, count, nmp ? nmp->nm_state : 0);
7128 if (nfs_mount_gone(nmp)) {
7129 return ENXIO;
7130 }
7131 if (!(nmp->nm_state & NFSSTA_HASWRITEVERF)) {
7132 return 0;
7133 }
7134 nfsvers = nmp->nm_vers;
7135 count32 = count > UINT32_MAX ? 0 : (uint32_t)count;
7136
7137 nfsm_chain_null(&nmreq);
7138 nfsm_chain_null(&nmrep);
7139
7140 nfsm_chain_build_alloc_init(error, &nmreq, NFSX_FH(NFS_VER3));
7141 nfsm_chain_add_fh(error, &nmreq, nfsvers, np->n_fhp, np->n_fhsize);
7142 nfsm_chain_add_64(error, &nmreq, offset);
7143 nfsm_chain_add_32(error, &nmreq, count32);
7144 nfsm_chain_build_done(error, &nmreq);
7145 nfsmout_if(error);
7146 error = nfs_request2(np, NULL, &nmreq, NFSPROC_COMMIT,
7147 current_thread(), cred, NULL, 0, &nmrep, &xid, &status);
7148 if ((lockerror = nfs_node_lock(np))) {
7149 error = lockerror;
7150 }
7151 /* can we do anything useful with the wcc info? */
7152 nfsm_chain_get_wcc_data(error, &nmrep, np, &premtime, &wccpostattr, &xid);
7153 if (!lockerror) {
7154 nfs_node_unlock(np);
7155 }
7156 if (!error) {
7157 error = status;
7158 }
7159 nfsm_chain_get_64(error, &nmrep, newwverf);
7160 nfsmout_if(error);
7161 lck_mtx_lock(&nmp->nm_lock);
7162 if (nmp->nm_verf != newwverf) {
7163 nmp->nm_verf = newwverf;
7164 }
7165 if (wverf != newwverf) {
7166 error = NFSERR_STALEWRITEVERF;
7167 }
7168 lck_mtx_unlock(&nmp->nm_lock);
7169 nfsmout:
7170 nfsm_chain_cleanup(&nmreq);
7171 nfsm_chain_cleanup(&nmrep);
7172 return error;
7173 }
7174
7175
7176 int
7177 nfs_vnop_blockmap(
7178 __unused struct vnop_blockmap_args /* {
7179 * struct vnodeop_desc *a_desc;
7180 * vnode_t a_vp;
7181 * off_t a_foffset;
7182 * size_t a_size;
7183 * daddr64_t *a_bpn;
7184 * size_t *a_run;
7185 * void *a_poff;
7186 * int a_flags;
7187 * } */*ap)
7188 {
7189 return ENOTSUP;
7190 }
7191
7192
7193 /*
7194 * fsync vnode op. Just call nfs_flush().
7195 */
7196 /* ARGSUSED */
7197 int
7198 nfs_vnop_fsync(
7199 struct vnop_fsync_args /* {
7200 * struct vnodeop_desc *a_desc;
7201 * vnode_t a_vp;
7202 * int a_waitfor;
7203 * vfs_context_t a_context;
7204 * } */*ap)
7205 {
7206 return nfs_flush(VTONFS(ap->a_vp), ap->a_waitfor, vfs_context_thread(ap->a_context), 0);
7207 }
7208
7209
7210 /*
7211 * Do an NFS pathconf RPC.
7212 */
7213 int
7214 nfs3_pathconf_rpc(
7215 nfsnode_t np,
7216 struct nfs_fsattr *nfsap,
7217 vfs_context_t ctx)
7218 {
7219 u_int64_t xid;
7220 int error = 0, lockerror, status = 0, nfsvers;
7221 struct nfsm_chain nmreq, nmrep;
7222 struct nfsmount *nmp = NFSTONMP(np);
7223 uint32_t val = 0;
7224
7225 if (nfs_mount_gone(nmp)) {
7226 return ENXIO;
7227 }
7228 nfsvers = nmp->nm_vers;
7229
7230 nfsm_chain_null(&nmreq);
7231 nfsm_chain_null(&nmrep);
7232
7233 /* fetch pathconf info from server */
7234 nfsm_chain_build_alloc_init(error, &nmreq, NFSX_FH(NFS_VER3));
7235 nfsm_chain_add_fh(error, &nmreq, nfsvers, np->n_fhp, np->n_fhsize);
7236 nfsm_chain_build_done(error, &nmreq);
7237 nfsmout_if(error);
7238 error = nfs_request(np, NULL, &nmreq, NFSPROC_PATHCONF, ctx, NULL, &nmrep, &xid, &status);
7239 if ((lockerror = nfs_node_lock(np))) {
7240 error = lockerror;
7241 }
7242 nfsm_chain_postop_attr_update(error, &nmrep, np, &xid);
7243 if (!lockerror) {
7244 nfs_node_unlock(np);
7245 }
7246 if (!error) {
7247 error = status;
7248 }
7249 nfsm_chain_get_32(error, &nmrep, nfsap->nfsa_maxlink);
7250 nfsm_chain_get_32(error, &nmrep, nfsap->nfsa_maxname);
7251 nfsap->nfsa_flags &= ~(NFS_FSFLAG_NO_TRUNC | NFS_FSFLAG_CHOWN_RESTRICTED | NFS_FSFLAG_CASE_INSENSITIVE | NFS_FSFLAG_CASE_PRESERVING);
7252 nfsm_chain_get_32(error, &nmrep, val);
7253 if (val) {
7254 nfsap->nfsa_flags |= NFS_FSFLAG_NO_TRUNC;
7255 }
7256 nfsm_chain_get_32(error, &nmrep, val);
7257 if (val) {
7258 nfsap->nfsa_flags |= NFS_FSFLAG_CHOWN_RESTRICTED;
7259 }
7260 nfsm_chain_get_32(error, &nmrep, val);
7261 if (val) {
7262 nfsap->nfsa_flags |= NFS_FSFLAG_CASE_INSENSITIVE;
7263 }
7264 nfsm_chain_get_32(error, &nmrep, val);
7265 if (val) {
7266 nfsap->nfsa_flags |= NFS_FSFLAG_CASE_PRESERVING;
7267 }
7268 NFS_BITMAP_SET(nfsap->nfsa_bitmap, NFS_FATTR_MAXLINK);
7269 NFS_BITMAP_SET(nfsap->nfsa_bitmap, NFS_FATTR_MAXNAME);
7270 NFS_BITMAP_SET(nfsap->nfsa_bitmap, NFS_FATTR_NO_TRUNC);
7271 NFS_BITMAP_SET(nfsap->nfsa_bitmap, NFS_FATTR_CHOWN_RESTRICTED);
7272 NFS_BITMAP_SET(nfsap->nfsa_bitmap, NFS_FATTR_CASE_INSENSITIVE);
7273 NFS_BITMAP_SET(nfsap->nfsa_bitmap, NFS_FATTR_CASE_PRESERVING);
7274 nfsmout:
7275 nfsm_chain_cleanup(&nmreq);
7276 nfsm_chain_cleanup(&nmrep);
7277 return error;
7278 }
7279
7280 /* save pathconf info for NFSv3 mount */
7281 void
7282 nfs3_pathconf_cache(struct nfsmount *nmp, struct nfs_fsattr *nfsap)
7283 {
7284 nmp->nm_fsattr.nfsa_maxlink = nfsap->nfsa_maxlink;
7285 nmp->nm_fsattr.nfsa_maxname = nfsap->nfsa_maxname;
7286 nmp->nm_fsattr.nfsa_flags &= ~(NFS_FSFLAG_NO_TRUNC | NFS_FSFLAG_CHOWN_RESTRICTED | NFS_FSFLAG_CASE_INSENSITIVE | NFS_FSFLAG_CASE_PRESERVING);
7287 nmp->nm_fsattr.nfsa_flags |= nfsap->nfsa_flags & NFS_FSFLAG_NO_TRUNC;
7288 nmp->nm_fsattr.nfsa_flags |= nfsap->nfsa_flags & NFS_FSFLAG_CHOWN_RESTRICTED;
7289 nmp->nm_fsattr.nfsa_flags |= nfsap->nfsa_flags & NFS_FSFLAG_CASE_INSENSITIVE;
7290 nmp->nm_fsattr.nfsa_flags |= nfsap->nfsa_flags & NFS_FSFLAG_CASE_PRESERVING;
7291 NFS_BITMAP_SET(nmp->nm_fsattr.nfsa_bitmap, NFS_FATTR_MAXLINK);
7292 NFS_BITMAP_SET(nmp->nm_fsattr.nfsa_bitmap, NFS_FATTR_MAXNAME);
7293 NFS_BITMAP_SET(nmp->nm_fsattr.nfsa_bitmap, NFS_FATTR_NO_TRUNC);
7294 NFS_BITMAP_SET(nmp->nm_fsattr.nfsa_bitmap, NFS_FATTR_CHOWN_RESTRICTED);
7295 NFS_BITMAP_SET(nmp->nm_fsattr.nfsa_bitmap, NFS_FATTR_CASE_INSENSITIVE);
7296 NFS_BITMAP_SET(nmp->nm_fsattr.nfsa_bitmap, NFS_FATTR_CASE_PRESERVING);
7297 nmp->nm_state |= NFSSTA_GOTPATHCONF;
7298 }
7299
7300 /*
7301 * Return POSIX pathconf information applicable to nfs.
7302 *
7303 * The NFS V2 protocol doesn't support this, so just return EINVAL
7304 * for V2.
7305 */
7306 /* ARGSUSED */
7307 int
7308 nfs_vnop_pathconf(
7309 struct vnop_pathconf_args /* {
7310 * struct vnodeop_desc *a_desc;
7311 * vnode_t a_vp;
7312 * int a_name;
7313 * int32_t *a_retval;
7314 * vfs_context_t a_context;
7315 * } */*ap)
7316 {
7317 vnode_t vp = ap->a_vp;
7318 nfsnode_t np = VTONFS(vp);
7319 struct nfsmount *nmp;
7320 struct nfs_fsattr nfsa, *nfsap;
7321 int error = 0;
7322 uint64_t maxFileSize;
7323 uint nbits;
7324
7325 nmp = VTONMP(vp);
7326 if (nfs_mount_gone(nmp)) {
7327 return ENXIO;
7328 }
7329
7330 switch (ap->a_name) {
7331 case _PC_LINK_MAX:
7332 case _PC_NAME_MAX:
7333 case _PC_CHOWN_RESTRICTED:
7334 case _PC_NO_TRUNC:
7335 case _PC_CASE_SENSITIVE:
7336 case _PC_CASE_PRESERVING:
7337 break;
7338 case _PC_FILESIZEBITS:
7339 if (nmp->nm_vers == NFS_VER2) {
7340 *ap->a_retval = 32;
7341 return 0;
7342 }
7343 break;
7344 case _PC_XATTR_SIZE_BITS:
7345 /* Do we support xattrs natively? */
7346 if (nmp->nm_fsattr.nfsa_flags & NFS_FSFLAG_NAMED_ATTR) {
7347 break; /* Yes */
7348 }
7349 /* No... so just return an error */
7350 return EINVAL;
7351 default:
7352 /* don't bother contacting the server if we know the answer */
7353 return EINVAL;
7354 }
7355
7356 if (nmp->nm_vers == NFS_VER2) {
7357 return EINVAL;
7358 }
7359
7360 lck_mtx_lock(&nmp->nm_lock);
7361 if (nmp->nm_vers == NFS_VER3) {
7362 if (!(nmp->nm_state & NFSSTA_GOTPATHCONF) || (!(nmp->nm_fsattr.nfsa_flags & NFS_FSFLAG_HOMOGENEOUS) && nmp->nm_dnp != np)) {
7363 /* no pathconf info cached OR we were asked for non-root pathconf and filesystem does not support FSF_HOMOGENEOUS */
7364 lck_mtx_unlock(&nmp->nm_lock);
7365 NFS_CLEAR_ATTRIBUTES(nfsa.nfsa_bitmap);
7366 error = nfs3_pathconf_rpc(np, &nfsa, ap->a_context);
7367 if (error) {
7368 return error;
7369 }
7370 nmp = VTONMP(vp);
7371 if (nfs_mount_gone(nmp)) {
7372 return ENXIO;
7373 }
7374 lck_mtx_lock(&nmp->nm_lock);
7375 if (nmp->nm_fsattr.nfsa_flags & NFS_FSFLAG_HOMOGENEOUS) {
7376 /* all files have the same pathconf info, */
7377 /* so cache a copy of the results */
7378 nfs3_pathconf_cache(nmp, &nfsa);
7379 }
7380 nfsap = &nfsa;
7381 } else {
7382 nfsap = &nmp->nm_fsattr;
7383 }
7384 }
7385 #if CONFIG_NFS4
7386 else if (!(nmp->nm_fsattr.nfsa_flags & NFS_FSFLAG_HOMOGENEOUS)) {
7387 /* no pathconf info cached */
7388 lck_mtx_unlock(&nmp->nm_lock);
7389 NFS_CLEAR_ATTRIBUTES(nfsa.nfsa_bitmap);
7390 error = nfs4_pathconf_rpc(np, &nfsa, ap->a_context);
7391 if (error) {
7392 return error;
7393 }
7394 nmp = VTONMP(vp);
7395 if (nfs_mount_gone(nmp)) {
7396 return ENXIO;
7397 }
7398 lck_mtx_lock(&nmp->nm_lock);
7399 nfsap = &nfsa;
7400 }
7401 #endif
7402 else {
7403 nfsap = &nmp->nm_fsattr;
7404 }
7405 switch (ap->a_name) {
7406 case _PC_LINK_MAX:
7407 if (NFS_BITMAP_ISSET(nfsap->nfsa_bitmap, NFS_FATTR_MAXLINK)) {
7408 *ap->a_retval = nfsap->nfsa_maxlink;
7409 #if CONFIG_NFS4
7410 } else if ((nmp->nm_vers == NFS_VER4) && NFS_BITMAP_ISSET(np->n_vattr.nva_bitmap, NFS_FATTR_MAXLINK)) {
7411 *ap->a_retval = np->n_vattr.nva_maxlink;
7412 #endif
7413 } else {
7414 error = EINVAL;
7415 }
7416 break;
7417 case _PC_NAME_MAX:
7418 if (NFS_BITMAP_ISSET(nfsap->nfsa_bitmap, NFS_FATTR_MAXNAME)) {
7419 *ap->a_retval = nfsap->nfsa_maxname;
7420 } else {
7421 error = EINVAL;
7422 }
7423 break;
7424 case _PC_CHOWN_RESTRICTED:
7425 if (NFS_BITMAP_ISSET(nfsap->nfsa_bitmap, NFS_FATTR_CHOWN_RESTRICTED)) {
7426 *ap->a_retval = (nfsap->nfsa_flags & NFS_FSFLAG_CHOWN_RESTRICTED) ? 200112 /* _POSIX_CHOWN_RESTRICTED */ : 0;
7427 } else {
7428 error = EINVAL;
7429 }
7430 break;
7431 case _PC_NO_TRUNC:
7432 if (NFS_BITMAP_ISSET(nfsap->nfsa_bitmap, NFS_FATTR_NO_TRUNC)) {
7433 *ap->a_retval = (nfsap->nfsa_flags & NFS_FSFLAG_NO_TRUNC) ? 200112 /* _POSIX_NO_TRUNC */ : 0;
7434 } else {
7435 error = EINVAL;
7436 }
7437 break;
7438 case _PC_CASE_SENSITIVE:
7439 if (NFS_BITMAP_ISSET(nfsap->nfsa_bitmap, NFS_FATTR_CASE_INSENSITIVE)) {
7440 *ap->a_retval = (nfsap->nfsa_flags & NFS_FSFLAG_CASE_INSENSITIVE) ? 0 : 1;
7441 } else {
7442 error = EINVAL;
7443 }
7444 break;
7445 case _PC_CASE_PRESERVING:
7446 if (NFS_BITMAP_ISSET(nfsap->nfsa_bitmap, NFS_FATTR_CASE_PRESERVING)) {
7447 *ap->a_retval = (nfsap->nfsa_flags & NFS_FSFLAG_CASE_PRESERVING) ? 1 : 0;
7448 } else {
7449 error = EINVAL;
7450 }
7451 break;
7452 case _PC_XATTR_SIZE_BITS: /* same as file size bits if named attrs supported */
7453 case _PC_FILESIZEBITS:
7454 if (!NFS_BITMAP_ISSET(nfsap->nfsa_bitmap, NFS_FATTR_MAXFILESIZE)) {
7455 *ap->a_retval = 64;
7456 error = 0;
7457 break;
7458 }
7459 maxFileSize = nfsap->nfsa_maxfilesize;
7460 nbits = 1;
7461 if (maxFileSize & 0xffffffff00000000ULL) {
7462 nbits += 32;
7463 maxFileSize >>= 32;
7464 }
7465 if (maxFileSize & 0xffff0000) {
7466 nbits += 16;
7467 maxFileSize >>= 16;
7468 }
7469 if (maxFileSize & 0xff00) {
7470 nbits += 8;
7471 maxFileSize >>= 8;
7472 }
7473 if (maxFileSize & 0xf0) {
7474 nbits += 4;
7475 maxFileSize >>= 4;
7476 }
7477 if (maxFileSize & 0xc) {
7478 nbits += 2;
7479 maxFileSize >>= 2;
7480 }
7481 if (maxFileSize & 0x2) {
7482 nbits += 1;
7483 }
7484 *ap->a_retval = nbits;
7485 break;
7486 default:
7487 error = EINVAL;
7488 }
7489
7490 lck_mtx_unlock(&nmp->nm_lock);
7491
7492 return error;
7493 }
7494
7495 /*
7496 * Read wrapper for special devices.
7497 */
7498 int
7499 nfsspec_vnop_read(
7500 struct vnop_read_args /* {
7501 * struct vnodeop_desc *a_desc;
7502 * vnode_t a_vp;
7503 * struct uio *a_uio;
7504 * int a_ioflag;
7505 * vfs_context_t a_context;
7506 * } */*ap)
7507 {
7508 nfsnode_t np = VTONFS(ap->a_vp);
7509 struct timespec now;
7510 int error;
7511
7512 /*
7513 * Set access flag.
7514 */
7515 if ((error = nfs_node_lock(np))) {
7516 return error;
7517 }
7518 np->n_flag |= NACC;
7519 nanotime(&now);
7520 np->n_atim.tv_sec = now.tv_sec;
7521 np->n_atim.tv_nsec = now.tv_nsec;
7522 nfs_node_unlock(np);
7523 return VOCALL(spec_vnodeop_p, VOFFSET(vnop_read), ap);
7524 }
7525
7526 /*
7527 * Write wrapper for special devices.
7528 */
7529 int
7530 nfsspec_vnop_write(
7531 struct vnop_write_args /* {
7532 * struct vnodeop_desc *a_desc;
7533 * vnode_t a_vp;
7534 * struct uio *a_uio;
7535 * int a_ioflag;
7536 * vfs_context_t a_context;
7537 * } */*ap)
7538 {
7539 nfsnode_t np = VTONFS(ap->a_vp);
7540 struct timespec now;
7541 int error;
7542
7543 /*
7544 * Set update flag.
7545 */
7546 if ((error = nfs_node_lock(np))) {
7547 return error;
7548 }
7549 np->n_flag |= NUPD;
7550 nanotime(&now);
7551 np->n_mtim.tv_sec = now.tv_sec;
7552 np->n_mtim.tv_nsec = now.tv_nsec;
7553 nfs_node_unlock(np);
7554 return VOCALL(spec_vnodeop_p, VOFFSET(vnop_write), ap);
7555 }
7556
7557 /*
7558 * Close wrapper for special devices.
7559 *
7560 * Update the times on the nfsnode then do device close.
7561 */
7562 int
7563 nfsspec_vnop_close(
7564 struct vnop_close_args /* {
7565 * struct vnodeop_desc *a_desc;
7566 * vnode_t a_vp;
7567 * int a_fflag;
7568 * vfs_context_t a_context;
7569 * } */*ap)
7570 {
7571 vnode_t vp = ap->a_vp;
7572 nfsnode_t np = VTONFS(vp);
7573 struct vnode_attr vattr;
7574 mount_t mp;
7575 int error;
7576
7577 if ((error = nfs_node_lock(np))) {
7578 return error;
7579 }
7580 if (np->n_flag & (NACC | NUPD)) {
7581 np->n_flag |= NCHG;
7582 if (!vnode_isinuse(vp, 0) && (mp = vnode_mount(vp)) && !vfs_isrdonly(mp)) {
7583 VATTR_INIT(&vattr);
7584 if (np->n_flag & NACC) {
7585 vattr.va_access_time = np->n_atim;
7586 VATTR_SET_ACTIVE(&vattr, va_access_time);
7587 }
7588 if (np->n_flag & NUPD) {
7589 vattr.va_modify_time = np->n_mtim;
7590 VATTR_SET_ACTIVE(&vattr, va_modify_time);
7591 }
7592 nfs_node_unlock(np);
7593 vnode_setattr(vp, &vattr, ap->a_context);
7594 } else {
7595 nfs_node_unlock(np);
7596 }
7597 } else {
7598 nfs_node_unlock(np);
7599 }
7600 return VOCALL(spec_vnodeop_p, VOFFSET(vnop_close), ap);
7601 }
7602
7603 #if FIFO
7604 extern vnop_t **fifo_vnodeop_p;
7605
7606 /*
7607 * Read wrapper for fifos.
7608 */
7609 int
7610 nfsfifo_vnop_read(
7611 struct vnop_read_args /* {
7612 * struct vnodeop_desc *a_desc;
7613 * vnode_t a_vp;
7614 * struct uio *a_uio;
7615 * int a_ioflag;
7616 * vfs_context_t a_context;
7617 * } */*ap)
7618 {
7619 nfsnode_t np = VTONFS(ap->a_vp);
7620 struct timespec now;
7621 int error;
7622
7623 /*
7624 * Set access flag.
7625 */
7626 if ((error = nfs_node_lock(np))) {
7627 return error;
7628 }
7629 np->n_flag |= NACC;
7630 nanotime(&now);
7631 np->n_atim.tv_sec = now.tv_sec;
7632 np->n_atim.tv_nsec = now.tv_nsec;
7633 nfs_node_unlock(np);
7634 return VOCALL(fifo_vnodeop_p, VOFFSET(vnop_read), ap);
7635 }
7636
7637 /*
7638 * Write wrapper for fifos.
7639 */
7640 int
7641 nfsfifo_vnop_write(
7642 struct vnop_write_args /* {
7643 * struct vnodeop_desc *a_desc;
7644 * vnode_t a_vp;
7645 * struct uio *a_uio;
7646 * int a_ioflag;
7647 * vfs_context_t a_context;
7648 * } */*ap)
7649 {
7650 nfsnode_t np = VTONFS(ap->a_vp);
7651 struct timespec now;
7652 int error;
7653
7654 /*
7655 * Set update flag.
7656 */
7657 if ((error = nfs_node_lock(np))) {
7658 return error;
7659 }
7660 np->n_flag |= NUPD;
7661 nanotime(&now);
7662 np->n_mtim.tv_sec = now.tv_sec;
7663 np->n_mtim.tv_nsec = now.tv_nsec;
7664 nfs_node_unlock(np);
7665 return VOCALL(fifo_vnodeop_p, VOFFSET(vnop_write), ap);
7666 }
7667
7668 /*
7669 * Close wrapper for fifos.
7670 *
7671 * Update the times on the nfsnode then do fifo close.
7672 */
7673 int
7674 nfsfifo_vnop_close(
7675 struct vnop_close_args /* {
7676 * struct vnodeop_desc *a_desc;
7677 * vnode_t a_vp;
7678 * int a_fflag;
7679 * vfs_context_t a_context;
7680 * } */*ap)
7681 {
7682 vnode_t vp = ap->a_vp;
7683 nfsnode_t np = VTONFS(vp);
7684 struct vnode_attr vattr;
7685 struct timespec now;
7686 mount_t mp;
7687 int error;
7688
7689 if ((error = nfs_node_lock(np))) {
7690 return error;
7691 }
7692 if (np->n_flag & (NACC | NUPD)) {
7693 nanotime(&now);
7694 if (np->n_flag & NACC) {
7695 np->n_atim.tv_sec = now.tv_sec;
7696 np->n_atim.tv_nsec = now.tv_nsec;
7697 }
7698 if (np->n_flag & NUPD) {
7699 np->n_mtim.tv_sec = now.tv_sec;
7700 np->n_mtim.tv_nsec = now.tv_nsec;
7701 }
7702 np->n_flag |= NCHG;
7703 if (!vnode_isinuse(vp, 1) && (mp = vnode_mount(vp)) && !vfs_isrdonly(mp)) {
7704 VATTR_INIT(&vattr);
7705 if (np->n_flag & NACC) {
7706 vattr.va_access_time = np->n_atim;
7707 VATTR_SET_ACTIVE(&vattr, va_access_time);
7708 }
7709 if (np->n_flag & NUPD) {
7710 vattr.va_modify_time = np->n_mtim;
7711 VATTR_SET_ACTIVE(&vattr, va_modify_time);
7712 }
7713 nfs_node_unlock(np);
7714 vnode_setattr(vp, &vattr, ap->a_context);
7715 } else {
7716 nfs_node_unlock(np);
7717 }
7718 } else {
7719 nfs_node_unlock(np);
7720 }
7721 return VOCALL(fifo_vnodeop_p, VOFFSET(vnop_close), ap);
7722 }
7723 #endif /* FIFO */
7724
7725 /*ARGSUSED*/
7726 int
7727 nfs_vnop_ioctl(
7728 struct vnop_ioctl_args /* {
7729 * struct vnodeop_desc *a_desc;
7730 * vnode_t a_vp;
7731 * u_int32_t a_command;
7732 * caddr_t a_data;
7733 * int a_fflag;
7734 * vfs_context_t a_context;
7735 * } */*ap)
7736 {
7737 vfs_context_t ctx = ap->a_context;
7738 vnode_t vp = ap->a_vp;
7739 struct nfsmount *mp = VTONMP(vp);
7740 int error = ENOTTY;
7741 #if CONFIG_NFS_GSS
7742 struct user_nfs_gss_principal gprinc = {};
7743 size_t len;
7744 #endif
7745
7746 if (mp == NULL) {
7747 return ENXIO;
7748 }
7749 switch (ap->a_command) {
7750 case F_FULLFSYNC:
7751 if (vnode_vfsisrdonly(vp)) {
7752 return EROFS;
7753 }
7754 error = nfs_flush(VTONFS(vp), MNT_WAIT, vfs_context_thread(ctx), 0);
7755 break;
7756 #if CONFIG_NFS_GSS
7757 case NFS_IOC_DESTROY_CRED:
7758 if (!auth_is_kerberized(mp->nm_auth)) {
7759 return ENOTSUP;
7760 }
7761 error = nfs_gss_clnt_ctx_remove(mp, vfs_context_ucred(ctx));
7762 break;
7763 case NFS_IOC_SET_CRED:
7764 case NFS_IOC_SET_CRED64:
7765 if (!auth_is_kerberized(mp->nm_auth)) {
7766 return ENOTSUP;
7767 }
7768 if ((ap->a_command == NFS_IOC_SET_CRED && vfs_context_is64bit(ctx)) ||
7769 (ap->a_command == NFS_IOC_SET_CRED64 && !vfs_context_is64bit(ctx))) {
7770 return EINVAL;
7771 }
7772 if (vfs_context_is64bit(ctx)) {
7773 gprinc = *(struct user_nfs_gss_principal *)ap->a_data;
7774 } else {
7775 struct nfs_gss_principal *tp;
7776 tp = (struct nfs_gss_principal *)ap->a_data;
7777 gprinc.princlen = tp->princlen;
7778 gprinc.nametype = tp->nametype;
7779 gprinc.principal = CAST_USER_ADDR_T(tp->principal);
7780 }
7781 NFS_DBG(NFS_FAC_GSS, 7, "Enter NFS_FSCTL_SET_CRED (64-bit=%d): principal length %zu name type %d usr pointer 0x%llx\n", vfs_context_is64bit(ctx), gprinc.princlen, gprinc.nametype, gprinc.principal);
7782 if (gprinc.princlen > MAXPATHLEN) {
7783 return EINVAL;
7784 }
7785 uint8_t *p;
7786 MALLOC(p, uint8_t *, gprinc.princlen + 1, M_TEMP, M_WAITOK | M_ZERO);
7787 if (p == NULL) {
7788 return ENOMEM;
7789 }
7790 assert((user_addr_t)gprinc.principal == gprinc.principal);
7791 error = copyin((user_addr_t)gprinc.principal, p, gprinc.princlen);
7792 if (error) {
7793 NFS_DBG(NFS_FAC_GSS, 7, "NFS_FSCTL_SET_CRED could not copy in princiapl data of len %zu: %d\n",
7794 gprinc.princlen, error);
7795 FREE(p, M_TEMP);
7796 return error;
7797 }
7798 NFS_DBG(NFS_FAC_GSS, 7, "Seting credential to principal %s\n", p);
7799 error = nfs_gss_clnt_ctx_set_principal(mp, ctx, p, gprinc.princlen, gprinc.nametype);
7800 NFS_DBG(NFS_FAC_GSS, 7, "Seting credential to principal %s returned %d\n", p, error);
7801 FREE(p, M_TEMP);
7802 break;
7803 case NFS_IOC_GET_CRED:
7804 case NFS_IOC_GET_CRED64:
7805 if (!auth_is_kerberized(mp->nm_auth)) {
7806 return ENOTSUP;
7807 }
7808 if ((ap->a_command == NFS_IOC_GET_CRED && vfs_context_is64bit(ctx)) ||
7809 (ap->a_command == NFS_IOC_GET_CRED64 && !vfs_context_is64bit(ctx))) {
7810 return EINVAL;
7811 }
7812 error = nfs_gss_clnt_ctx_get_principal(mp, ctx, &gprinc);
7813 if (error) {
7814 break;
7815 }
7816 if (vfs_context_is64bit(ctx)) {
7817 struct user_nfs_gss_principal *upp = (struct user_nfs_gss_principal *)ap->a_data;
7818 len = upp->princlen;
7819 if (gprinc.princlen < len) {
7820 len = gprinc.princlen;
7821 }
7822 upp->princlen = gprinc.princlen;
7823 upp->nametype = gprinc.nametype;
7824 upp->flags = gprinc.flags;
7825 if (gprinc.principal) {
7826 assert((user_addr_t)upp->principal == upp->principal);
7827 error = copyout((void *)gprinc.principal, (user_addr_t)upp->principal, len);
7828 } else {
7829 upp->principal = USER_ADDR_NULL;
7830 }
7831 } else {
7832 struct nfs_gss_principal *u32pp = (struct nfs_gss_principal *)ap->a_data;
7833 len = u32pp->princlen;
7834 if (gprinc.princlen < len) {
7835 len = gprinc.princlen;
7836 }
7837 u32pp->princlen = gprinc.princlen;
7838 u32pp->nametype = gprinc.nametype;
7839 u32pp->flags = gprinc.flags;
7840 if (gprinc.principal) {
7841 error = copyout((void *)gprinc.principal, u32pp->principal, len);
7842 } else {
7843 u32pp->principal = (user32_addr_t)0;
7844 }
7845 }
7846 if (error) {
7847 NFS_DBG(NFS_FAC_GSS, 7, "NFS_FSCTL_GET_CRED could not copy out princiapl data of len %zu: %d\n",
7848 gprinc.princlen, error);
7849 }
7850 if (gprinc.principal) {
7851 void *ptr = (void *)gprinc.principal;
7852 gprinc.principal = 0;
7853 FREE(ptr, M_TEMP);
7854 }
7855 #endif /* CONFIG_NFS_GSS */
7856 }
7857
7858 return error;
7859 }
7860
7861 /*ARGSUSED*/
7862 int
7863 nfs_vnop_select(
7864 __unused struct vnop_select_args /* {
7865 * struct vnodeop_desc *a_desc;
7866 * vnode_t a_vp;
7867 * int a_which;
7868 * int a_fflags;
7869 * void *a_wql;
7870 * vfs_context_t a_context;
7871 * } */*ap)
7872 {
7873 /*
7874 * We were once bogusly seltrue() which returns 1. Is this right?
7875 */
7876 return 1;
7877 }
7878
7879 /*
7880 * vnode OP for pagein using UPL
7881 *
7882 * No buffer I/O, just RPCs straight into the mapped pages.
7883 */
7884 int
7885 nfs_vnop_pagein(
7886 struct vnop_pagein_args /* {
7887 * struct vnodeop_desc *a_desc;
7888 * vnode_t a_vp;
7889 * upl_t a_pl;
7890 * vm_offset_t a_pl_offset;
7891 * off_t a_f_offset;
7892 * size_t a_size;
7893 * int a_flags;
7894 * vfs_context_t a_context;
7895 * } */*ap)
7896 {
7897 vnode_t vp = ap->a_vp;
7898 upl_t pl = ap->a_pl;
7899 upl_size_t size = (upl_size_t)ap->a_size;
7900 off_t f_offset = ap->a_f_offset;
7901 upl_offset_t pl_offset = ap->a_pl_offset;
7902 int flags = ap->a_flags;
7903 thread_t thd;
7904 kauth_cred_t cred;
7905 nfsnode_t np = VTONFS(vp);
7906 size_t nmrsize, iosize, txsize, rxsize, retsize;
7907 off_t txoffset;
7908 struct nfsmount *nmp;
7909 int error = 0;
7910 vm_offset_t ioaddr, rxaddr;
7911 uio_t uio;
7912 char uio_buf[UIO_SIZEOF(1)];
7913 int nofreeupl = flags & UPL_NOCOMMIT;
7914 upl_page_info_t *plinfo;
7915 #define MAXPAGINGREQS 16 /* max outstanding RPCs for pagein/pageout */
7916 struct nfsreq *req[MAXPAGINGREQS];
7917 int nextsend, nextwait;
7918 #if CONFIG_NFS4
7919 uint32_t stategenid = 0;
7920 #endif
7921 uint32_t restart = 0;
7922 kern_return_t kret;
7923
7924 FSDBG(322, np, f_offset, size, flags);
7925 if (pl == (upl_t)NULL) {
7926 panic("nfs_pagein: no upl");
7927 }
7928
7929 if (size <= 0) {
7930 printf("nfs_pagein: invalid size %u", size);
7931 if (!nofreeupl) {
7932 (void) ubc_upl_abort_range(pl, pl_offset, size, 0);
7933 }
7934 return EINVAL;
7935 }
7936 if (f_offset < 0 || f_offset >= (off_t)np->n_size || (f_offset & PAGE_MASK_64)) {
7937 if (!nofreeupl) {
7938 ubc_upl_abort_range(pl, pl_offset, size,
7939 UPL_ABORT_ERROR | UPL_ABORT_FREE_ON_EMPTY);
7940 }
7941 return EINVAL;
7942 }
7943
7944 thd = vfs_context_thread(ap->a_context);
7945 cred = ubc_getcred(vp);
7946 if (!IS_VALID_CRED(cred)) {
7947 cred = vfs_context_ucred(ap->a_context);
7948 }
7949
7950 uio = uio_createwithbuffer(1, f_offset, UIO_SYSSPACE, UIO_READ,
7951 &uio_buf, sizeof(uio_buf));
7952
7953 nmp = VTONMP(vp);
7954 if (nfs_mount_gone(nmp)) {
7955 if (!nofreeupl) {
7956 ubc_upl_abort_range(pl, pl_offset, size,
7957 UPL_ABORT_ERROR | UPL_ABORT_FREE_ON_EMPTY);
7958 }
7959 return ENXIO;
7960 }
7961 nmrsize = nmp->nm_rsize;
7962
7963 plinfo = ubc_upl_pageinfo(pl);
7964 kret = ubc_upl_map(pl, &ioaddr);
7965 if (kret != KERN_SUCCESS) {
7966 panic("nfs_vnop_pagein: ubc_upl_map() failed with (%d)", kret);
7967 }
7968 ioaddr += pl_offset;
7969
7970 tryagain:
7971 #if CONFIG_NFS4
7972 if (nmp->nm_vers >= NFS_VER4) {
7973 stategenid = nmp->nm_stategenid;
7974 }
7975 #endif
7976 txsize = rxsize = size;
7977 txoffset = f_offset;
7978 rxaddr = ioaddr;
7979
7980 bzero(req, sizeof(req));
7981 nextsend = nextwait = 0;
7982 do {
7983 if (np->n_flag & NREVOKE) {
7984 error = EIO;
7985 break;
7986 }
7987 /* send requests while we need to and have available slots */
7988 while ((txsize > 0) && (req[nextsend] == NULL)) {
7989 iosize = MIN(nmrsize, txsize);
7990 if ((error = nmp->nm_funcs->nf_read_rpc_async(np, txoffset, iosize, thd, cred, NULL, &req[nextsend]))) {
7991 req[nextsend] = NULL;
7992 break;
7993 }
7994 txoffset += iosize;
7995 txsize -= iosize;
7996 nextsend = (nextsend + 1) % MAXPAGINGREQS;
7997 }
7998 /* wait while we need to and break out if more requests to send */
7999 while ((rxsize > 0) && req[nextwait]) {
8000 iosize = retsize = MIN(nmrsize, rxsize);
8001 uio_reset(uio, uio_offset(uio), UIO_SYSSPACE, UIO_READ);
8002 uio_addiov(uio, CAST_USER_ADDR_T(rxaddr), iosize);
8003 FSDBG(322, uio_offset(uio), uio_resid(uio), rxaddr, rxsize);
8004 #if UPL_DEBUG
8005 upl_ubc_alias_set(pl, (uintptr_t) current_thread(), (uintptr_t) 2);
8006 #endif /* UPL_DEBUG */
8007 OSAddAtomic64(1, &nfsstats.pageins);
8008 error = nmp->nm_funcs->nf_read_rpc_async_finish(np, req[nextwait], uio, &retsize, NULL);
8009 req[nextwait] = NULL;
8010 nextwait = (nextwait + 1) % MAXPAGINGREQS;
8011 #if CONFIG_NFS4
8012 if ((nmp->nm_vers >= NFS_VER4) && nfs_mount_state_error_should_restart(error)) {
8013 lck_mtx_lock(&nmp->nm_lock);
8014 if ((error != NFSERR_GRACE) && (stategenid == nmp->nm_stategenid)) {
8015 NP(np, "nfs_vnop_pagein: error %d, initiating recovery", error);
8016 nfs_need_recover(nmp, error);
8017 }
8018 lck_mtx_unlock(&nmp->nm_lock);
8019 restart++;
8020 goto cancel;
8021 }
8022 #endif
8023 if (error) {
8024 FSDBG(322, uio_offset(uio), uio_resid(uio), error, -1);
8025 break;
8026 }
8027 if (retsize < iosize) {
8028 /* Just zero fill the rest of the valid area. */
8029 size_t zcnt = iosize - retsize;
8030 bzero((char *)rxaddr + retsize, zcnt);
8031 FSDBG(324, uio_offset(uio), retsize, zcnt, rxaddr);
8032 uio_update(uio, zcnt);
8033 }
8034 rxaddr += iosize;
8035 rxsize -= iosize;
8036 if (txsize) {
8037 break;
8038 }
8039 }
8040 } while (!error && (txsize || rxsize));
8041
8042 restart = 0;
8043
8044 if (error) {
8045 #if CONFIG_NFS4
8046 cancel:
8047 #endif
8048 /* cancel any outstanding requests */
8049 while (req[nextwait]) {
8050 nfs_request_async_cancel(req[nextwait]);
8051 req[nextwait] = NULL;
8052 nextwait = (nextwait + 1) % MAXPAGINGREQS;
8053 }
8054 if (np->n_flag & NREVOKE) {
8055 error = EIO;
8056 } else if (restart) {
8057 if (restart <= nfs_mount_state_max_restarts(nmp)) { /* guard against no progress */
8058 if (error == NFSERR_GRACE) {
8059 tsleep(&nmp->nm_state, (PZERO - 1), "nfsgrace", 2 * hz);
8060 }
8061 if (!(error = nfs_mount_state_wait_for_recovery(nmp))) {
8062 goto tryagain;
8063 }
8064 } else {
8065 NP(np, "nfs_pagein: too many restarts, aborting");
8066 }
8067 }
8068 }
8069
8070 ubc_upl_unmap(pl);
8071
8072 if (!nofreeupl) {
8073 if (error) {
8074 /*
8075 * See comment in vnode_pagein() on handling EAGAIN, even though UPL_NOCOMMIT flag
8076 * is not set, we will not abort this upl, since VM subsystem will handle it.
8077 */
8078 if (error != EAGAIN && error != EPERM) {
8079 ubc_upl_abort_range(pl, pl_offset, size,
8080 UPL_ABORT_ERROR |
8081 UPL_ABORT_FREE_ON_EMPTY);
8082 }
8083 } else {
8084 ubc_upl_commit_range(pl, pl_offset, size,
8085 UPL_COMMIT_CLEAR_DIRTY |
8086 UPL_COMMIT_FREE_ON_EMPTY);
8087 }
8088 }
8089 return error;
8090 }
8091
8092
8093 /*
8094 * the following are needed only by nfs_pageout to know how to handle errors
8095 * see nfs_pageout comments on explanation of actions.
8096 * the errors here are copied from errno.h and errors returned by servers
8097 * are expected to match the same numbers here. If not, our actions maybe
8098 * erroneous.
8099 */
8100 char nfs_pageouterrorhandler(int);
8101 enum actiontype {NOACTION, DUMP, DUMPANDLOG, RETRY, SEVER};
8102 #define NFS_ELAST 88
8103 static u_char errorcount[NFS_ELAST + 1]; /* better be zeros when initialized */
8104 static const char errortooutcome[NFS_ELAST + 1] = {
8105 NOACTION,
8106 DUMP, /* EPERM 1 Operation not permitted */
8107 DUMP, /* ENOENT 2 No such file or directory */
8108 DUMPANDLOG, /* ESRCH 3 No such process */
8109 RETRY, /* EINTR 4 Interrupted system call */
8110 DUMP, /* EIO 5 Input/output error */
8111 DUMP, /* ENXIO 6 Device not configured */
8112 DUMPANDLOG, /* E2BIG 7 Argument list too long */
8113 DUMPANDLOG, /* ENOEXEC 8 Exec format error */
8114 DUMPANDLOG, /* EBADF 9 Bad file descriptor */
8115 DUMPANDLOG, /* ECHILD 10 No child processes */
8116 DUMPANDLOG, /* EDEADLK 11 Resource deadlock avoided - was EAGAIN */
8117 RETRY, /* ENOMEM 12 Cannot allocate memory */
8118 DUMP, /* EACCES 13 Permission denied */
8119 DUMPANDLOG, /* EFAULT 14 Bad address */
8120 DUMPANDLOG, /* ENOTBLK 15 POSIX - Block device required */
8121 RETRY, /* EBUSY 16 Device busy */
8122 DUMP, /* EEXIST 17 File exists */
8123 DUMP, /* EXDEV 18 Cross-device link */
8124 DUMP, /* ENODEV 19 Operation not supported by device */
8125 DUMP, /* ENOTDIR 20 Not a directory */
8126 DUMP, /* EISDIR 21 Is a directory */
8127 DUMP, /* EINVAL 22 Invalid argument */
8128 DUMPANDLOG, /* ENFILE 23 Too many open files in system */
8129 DUMPANDLOG, /* EMFILE 24 Too many open files */
8130 DUMPANDLOG, /* ENOTTY 25 Inappropriate ioctl for device */
8131 DUMPANDLOG, /* ETXTBSY 26 Text file busy - POSIX */
8132 DUMP, /* EFBIG 27 File too large */
8133 DUMP, /* ENOSPC 28 No space left on device */
8134 DUMPANDLOG, /* ESPIPE 29 Illegal seek */
8135 DUMP, /* EROFS 30 Read-only file system */
8136 DUMP, /* EMLINK 31 Too many links */
8137 RETRY, /* EPIPE 32 Broken pipe */
8138 /* math software */
8139 DUMPANDLOG, /* EDOM 33 Numerical argument out of domain */
8140 DUMPANDLOG, /* ERANGE 34 Result too large */
8141 RETRY, /* EAGAIN/EWOULDBLOCK 35 Resource temporarily unavailable */
8142 DUMPANDLOG, /* EINPROGRESS 36 Operation now in progress */
8143 DUMPANDLOG, /* EALREADY 37 Operation already in progress */
8144 /* ipc/network software -- argument errors */
8145 DUMPANDLOG, /* ENOTSOC 38 Socket operation on non-socket */
8146 DUMPANDLOG, /* EDESTADDRREQ 39 Destination address required */
8147 DUMPANDLOG, /* EMSGSIZE 40 Message too long */
8148 DUMPANDLOG, /* EPROTOTYPE 41 Protocol wrong type for socket */
8149 DUMPANDLOG, /* ENOPROTOOPT 42 Protocol not available */
8150 DUMPANDLOG, /* EPROTONOSUPPORT 43 Protocol not supported */
8151 DUMPANDLOG, /* ESOCKTNOSUPPORT 44 Socket type not supported */
8152 DUMPANDLOG, /* ENOTSUP 45 Operation not supported */
8153 DUMPANDLOG, /* EPFNOSUPPORT 46 Protocol family not supported */
8154 DUMPANDLOG, /* EAFNOSUPPORT 47 Address family not supported by protocol family */
8155 DUMPANDLOG, /* EADDRINUSE 48 Address already in use */
8156 DUMPANDLOG, /* EADDRNOTAVAIL 49 Can't assign requested address */
8157 /* ipc/network software -- operational errors */
8158 RETRY, /* ENETDOWN 50 Network is down */
8159 RETRY, /* ENETUNREACH 51 Network is unreachable */
8160 RETRY, /* ENETRESET 52 Network dropped connection on reset */
8161 RETRY, /* ECONNABORTED 53 Software caused connection abort */
8162 RETRY, /* ECONNRESET 54 Connection reset by peer */
8163 RETRY, /* ENOBUFS 55 No buffer space available */
8164 RETRY, /* EISCONN 56 Socket is already connected */
8165 RETRY, /* ENOTCONN 57 Socket is not connected */
8166 RETRY, /* ESHUTDOWN 58 Can't send after socket shutdown */
8167 RETRY, /* ETOOMANYREFS 59 Too many references: can't splice */
8168 RETRY, /* ETIMEDOUT 60 Operation timed out */
8169 RETRY, /* ECONNREFUSED 61 Connection refused */
8170
8171 DUMPANDLOG, /* ELOOP 62 Too many levels of symbolic links */
8172 DUMP, /* ENAMETOOLONG 63 File name too long */
8173 RETRY, /* EHOSTDOWN 64 Host is down */
8174 RETRY, /* EHOSTUNREACH 65 No route to host */
8175 DUMP, /* ENOTEMPTY 66 Directory not empty */
8176 /* quotas & mush */
8177 DUMPANDLOG, /* PROCLIM 67 Too many processes */
8178 DUMPANDLOG, /* EUSERS 68 Too many users */
8179 DUMPANDLOG, /* EDQUOT 69 Disc quota exceeded */
8180 /* Network File System */
8181 DUMP, /* ESTALE 70 Stale NFS file handle */
8182 DUMP, /* EREMOTE 71 Too many levels of remote in path */
8183 DUMPANDLOG, /* EBADRPC 72 RPC struct is bad */
8184 DUMPANDLOG, /* ERPCMISMATCH 73 RPC version wrong */
8185 DUMPANDLOG, /* EPROGUNAVAIL 74 RPC prog. not avail */
8186 DUMPANDLOG, /* EPROGMISMATCH 75 Program version wrong */
8187 DUMPANDLOG, /* EPROCUNAVAIL 76 Bad procedure for program */
8188
8189 DUMPANDLOG, /* ENOLCK 77 No locks available */
8190 DUMPANDLOG, /* ENOSYS 78 Function not implemented */
8191 DUMPANDLOG, /* EFTYPE 79 Inappropriate file type or format */
8192 DUMPANDLOG, /* EAUTH 80 Authentication error */
8193 DUMPANDLOG, /* ENEEDAUTH 81 Need authenticator */
8194 /* Intelligent device errors */
8195 DUMPANDLOG, /* EPWROFF 82 Device power is off */
8196 DUMPANDLOG, /* EDEVERR 83 Device error, e.g. paper out */
8197 DUMPANDLOG, /* EOVERFLOW 84 Value too large to be stored in data type */
8198 /* Program loading errors */
8199 DUMPANDLOG, /* EBADEXEC 85 Bad executable */
8200 DUMPANDLOG, /* EBADARCH 86 Bad CPU type in executable */
8201 DUMPANDLOG, /* ESHLIBVERS 87 Shared library version mismatch */
8202 DUMPANDLOG, /* EBADMACHO 88 Malformed Macho file */
8203 };
8204
8205 char
8206 nfs_pageouterrorhandler(int error)
8207 {
8208 if (error > NFS_ELAST) {
8209 return DUMP;
8210 } else {
8211 return errortooutcome[error];
8212 }
8213 }
8214
8215
8216 /*
8217 * vnode OP for pageout using UPL
8218 *
8219 * No buffer I/O, just RPCs straight from the mapped pages.
8220 * File size changes are not permitted in pageout.
8221 */
8222 int
8223 nfs_vnop_pageout(
8224 struct vnop_pageout_args /* {
8225 * struct vnodeop_desc *a_desc;
8226 * vnode_t a_vp;
8227 * upl_t a_pl;
8228 * vm_offset_t a_pl_offset;
8229 * off_t a_f_offset;
8230 * size_t a_size;
8231 * int a_flags;
8232 * vfs_context_t a_context;
8233 * } */*ap)
8234 {
8235 vnode_t vp = ap->a_vp;
8236 upl_t pl = ap->a_pl;
8237 upl_size_t size = (upl_size_t)ap->a_size;
8238 off_t f_offset = ap->a_f_offset;
8239 upl_offset_t pl_offset = ap->a_pl_offset;
8240 upl_offset_t pgsize;
8241 int flags = ap->a_flags;
8242 nfsnode_t np = VTONFS(vp);
8243 thread_t thd;
8244 kauth_cred_t cred;
8245 struct nfsbuf *bp;
8246 struct nfsmount *nmp = VTONMP(vp);
8247 daddr64_t lbn;
8248 int error = 0, iomode;
8249 off_t off, txoffset, rxoffset;
8250 vm_offset_t ioaddr, txaddr, rxaddr;
8251 uio_t auio;
8252 char uio_buf[UIO_SIZEOF(1)];
8253 int nofreeupl = flags & UPL_NOCOMMIT;
8254 size_t nmwsize, biosize, iosize, remsize;
8255 struct nfsreq *req[MAXPAGINGREQS];
8256 int nextsend, nextwait, wverfset, commit;
8257 uint64_t wverf, wverf2, xsize, txsize, rxsize;
8258 #if CONFIG_NFS4
8259 uint32_t stategenid = 0;
8260 #endif
8261 uint32_t vrestart = 0, restart = 0, vrestarts = 0, restarts = 0;
8262 kern_return_t kret;
8263
8264 FSDBG(323, f_offset, size, pl, pl_offset);
8265
8266 if (pl == (upl_t)NULL) {
8267 panic("nfs_pageout: no upl");
8268 }
8269
8270 if (size <= 0) {
8271 printf("nfs_pageout: invalid size %u", size);
8272 if (!nofreeupl) {
8273 ubc_upl_abort_range(pl, pl_offset, size, 0);
8274 }
8275 return EINVAL;
8276 }
8277
8278 if (!nmp) {
8279 if (!nofreeupl) {
8280 ubc_upl_abort(pl, UPL_ABORT_DUMP_PAGES | UPL_ABORT_FREE_ON_EMPTY);
8281 }
8282 return ENXIO;
8283 }
8284 biosize = nmp->nm_biosize;
8285 nmwsize = nmp->nm_wsize;
8286
8287 nfs_data_lock_noupdate(np, NFS_DATA_LOCK_SHARED);
8288
8289 /*
8290 * Check to see whether the buffer is incore.
8291 * If incore and not busy, invalidate it from the cache.
8292 */
8293 for (iosize = 0; iosize < size; iosize += xsize) {
8294 off = f_offset + iosize;
8295 /* need make sure we do things on block boundaries */
8296 xsize = biosize - (off % biosize);
8297 if (off + (off_t)xsize > f_offset + (off_t)size) {
8298 xsize = f_offset + size - off;
8299 }
8300 lbn = (daddr64_t)(off / biosize);
8301 lck_mtx_lock(nfs_buf_mutex);
8302 if ((bp = nfs_buf_incore(np, lbn))) {
8303 FSDBG(323, off, bp, bp->nb_lflags, bp->nb_flags);
8304 if (nfs_buf_acquire(bp, NBAC_NOWAIT, 0, 0)) {
8305 lck_mtx_unlock(nfs_buf_mutex);
8306 nfs_data_unlock_noupdate(np);
8307 /* no panic. just tell vm we are busy */
8308 if (!nofreeupl) {
8309 ubc_upl_abort_range(pl, pl_offset, size, 0);
8310 }
8311 return EBUSY;
8312 }
8313 if (bp->nb_dirtyend > 0) {
8314 /*
8315 * if there's a dirty range in the buffer, check
8316 * to see if it extends beyond the pageout region
8317 *
8318 * if the dirty region lies completely within the
8319 * pageout region, we just invalidate the buffer
8320 * because it's all being written out now anyway.
8321 *
8322 * if any of the dirty region lies outside the
8323 * pageout region, we'll try to clip the dirty
8324 * region to eliminate the portion that's being
8325 * paged out. If that's not possible, because
8326 * the dirty region extends before and after the
8327 * pageout region, then we'll just return EBUSY.
8328 */
8329 off_t boff, start, end;
8330 boff = NBOFF(bp);
8331 start = off;
8332 end = off + xsize;
8333 /* clip end to EOF */
8334 if (end > (off_t)np->n_size) {
8335 end = np->n_size;
8336 }
8337 start -= boff;
8338 end -= boff;
8339 if ((bp->nb_dirtyoff < start) &&
8340 (bp->nb_dirtyend > end)) {
8341 /*
8342 * not gonna be able to clip the dirty region
8343 *
8344 * But before returning the bad news, move the
8345 * buffer to the start of the delwri list and
8346 * give the list a push to try to flush the
8347 * buffer out.
8348 */
8349 FSDBG(323, np, bp, 0xd00deebc, EBUSY);
8350 nfs_buf_remfree(bp);
8351 TAILQ_INSERT_HEAD(&nfsbufdelwri, bp, nb_free);
8352 nfsbufdelwricnt++;
8353 nfs_buf_drop(bp);
8354 nfs_buf_delwri_push(1);
8355 lck_mtx_unlock(nfs_buf_mutex);
8356 nfs_data_unlock_noupdate(np);
8357 if (!nofreeupl) {
8358 ubc_upl_abort_range(pl, pl_offset, size, 0);
8359 }
8360 return EBUSY;
8361 }
8362 if ((bp->nb_dirtyoff < start) ||
8363 (bp->nb_dirtyend > end)) {
8364 /* clip dirty region, if necessary */
8365 if (bp->nb_dirtyoff < start) {
8366 bp->nb_dirtyend = MIN(bp->nb_dirtyend, start);
8367 }
8368 if (bp->nb_dirtyend > end) {
8369 bp->nb_dirtyoff = MAX(bp->nb_dirtyoff, end);
8370 }
8371 FSDBG(323, bp, bp->nb_dirtyoff, bp->nb_dirtyend, 0xd00dee00);
8372 /* we're leaving this block dirty */
8373 nfs_buf_drop(bp);
8374 lck_mtx_unlock(nfs_buf_mutex);
8375 continue;
8376 }
8377 }
8378 nfs_buf_remfree(bp);
8379 lck_mtx_unlock(nfs_buf_mutex);
8380 SET(bp->nb_flags, NB_INVAL);
8381 nfs_node_lock_force(np);
8382 if (ISSET(bp->nb_flags, NB_NEEDCOMMIT)) {
8383 CLR(bp->nb_flags, NB_NEEDCOMMIT);
8384 np->n_needcommitcnt--;
8385 CHECK_NEEDCOMMITCNT(np);
8386 }
8387 nfs_node_unlock(np);
8388 nfs_buf_release(bp, 1);
8389 } else {
8390 lck_mtx_unlock(nfs_buf_mutex);
8391 }
8392 }
8393
8394 thd = vfs_context_thread(ap->a_context);
8395 cred = ubc_getcred(vp);
8396 if (!IS_VALID_CRED(cred)) {
8397 cred = vfs_context_ucred(ap->a_context);
8398 }
8399
8400 nfs_node_lock_force(np);
8401 if (np->n_flag & NWRITEERR) {
8402 error = np->n_error;
8403 nfs_node_unlock(np);
8404 nfs_data_unlock_noupdate(np);
8405 if (!nofreeupl) {
8406 ubc_upl_abort_range(pl, pl_offset, size,
8407 UPL_ABORT_FREE_ON_EMPTY);
8408 }
8409 return error;
8410 }
8411 nfs_node_unlock(np);
8412
8413 if (f_offset < 0 || f_offset >= (off_t)np->n_size ||
8414 f_offset & PAGE_MASK_64 || size & PAGE_MASK_64) {
8415 nfs_data_unlock_noupdate(np);
8416 if (!nofreeupl) {
8417 ubc_upl_abort_range(pl, pl_offset, size,
8418 UPL_ABORT_FREE_ON_EMPTY);
8419 }
8420 return EINVAL;
8421 }
8422
8423 kret = ubc_upl_map(pl, &ioaddr);
8424 if (kret != KERN_SUCCESS) {
8425 panic("nfs_vnop_pageout: ubc_upl_map() failed with (%d)", kret);
8426 }
8427 ioaddr += pl_offset;
8428
8429 if ((u_quad_t)f_offset + size > np->n_size) {
8430 xsize = np->n_size - f_offset;
8431 } else {
8432 xsize = size;
8433 }
8434
8435 pgsize = (upl_offset_t)round_page_64(xsize);
8436 if ((size > pgsize) && !nofreeupl) {
8437 ubc_upl_abort_range(pl, pl_offset + pgsize, size - pgsize,
8438 UPL_ABORT_FREE_ON_EMPTY);
8439 }
8440
8441 /*
8442 * check for partial page and clear the
8443 * contents past end of the file before
8444 * releasing it in the VM page cache
8445 */
8446 if ((u_quad_t)f_offset < np->n_size && (u_quad_t)f_offset + size > np->n_size) {
8447 uint64_t io = np->n_size - f_offset;
8448 NFS_BZERO((caddr_t)(ioaddr + io), size - io);
8449 FSDBG(321, np->n_size, f_offset, f_offset + io, size - io);
8450 }
8451 nfs_data_unlock_noupdate(np);
8452
8453 auio = uio_createwithbuffer(1, 0, UIO_SYSSPACE, UIO_WRITE,
8454 &uio_buf, sizeof(uio_buf));
8455
8456 tryagain:
8457 #if CONFIG_NFS4
8458 if (nmp->nm_vers >= NFS_VER4) {
8459 stategenid = nmp->nm_stategenid;
8460 }
8461 #endif
8462 wverf = wverf2 = wverfset = 0;
8463 txsize = rxsize = xsize;
8464 txoffset = rxoffset = f_offset;
8465 txaddr = rxaddr = ioaddr;
8466 commit = NFS_WRITE_FILESYNC;
8467
8468 bzero(req, sizeof(req));
8469 nextsend = nextwait = 0;
8470 do {
8471 if (np->n_flag & NREVOKE) {
8472 error = EIO;
8473 break;
8474 }
8475 /* send requests while we need to and have available slots */
8476 while ((txsize > 0) && (req[nextsend] == NULL)) {
8477 iosize = (size_t)MIN(nmwsize, txsize);
8478 uio_reset(auio, txoffset, UIO_SYSSPACE, UIO_WRITE);
8479 uio_addiov(auio, CAST_USER_ADDR_T(txaddr), iosize);
8480 FSDBG(323, uio_offset(auio), iosize, txaddr, txsize);
8481 OSAddAtomic64(1, &nfsstats.pageouts);
8482 nfs_node_lock_force(np);
8483 np->n_numoutput++;
8484 nfs_node_unlock(np);
8485 vnode_startwrite(vp);
8486 iomode = NFS_WRITE_UNSTABLE;
8487 if ((error = nmp->nm_funcs->nf_write_rpc_async(np, auio, iosize, thd, cred, iomode, NULL, &req[nextsend]))) {
8488 req[nextsend] = NULL;
8489 vnode_writedone(vp);
8490 nfs_node_lock_force(np);
8491 np->n_numoutput--;
8492 nfs_node_unlock(np);
8493 break;
8494 }
8495 txaddr += iosize;
8496 txoffset += iosize;
8497 txsize -= iosize;
8498 nextsend = (nextsend + 1) % MAXPAGINGREQS;
8499 }
8500 /* wait while we need to and break out if more requests to send */
8501 while ((rxsize > 0) && req[nextwait]) {
8502 iosize = remsize = (size_t)MIN(nmwsize, rxsize);
8503 error = nmp->nm_funcs->nf_write_rpc_async_finish(np, req[nextwait], &iomode, &iosize, &wverf2);
8504 req[nextwait] = NULL;
8505 nextwait = (nextwait + 1) % MAXPAGINGREQS;
8506 vnode_writedone(vp);
8507 nfs_node_lock_force(np);
8508 np->n_numoutput--;
8509 nfs_node_unlock(np);
8510 #if CONFIG_NFS4
8511 if ((nmp->nm_vers >= NFS_VER4) && nfs_mount_state_error_should_restart(error)) {
8512 lck_mtx_lock(&nmp->nm_lock);
8513 if ((error != NFSERR_GRACE) && (stategenid == nmp->nm_stategenid)) {
8514 NP(np, "nfs_vnop_pageout: error %d, initiating recovery", error);
8515 nfs_need_recover(nmp, error);
8516 }
8517 lck_mtx_unlock(&nmp->nm_lock);
8518 restart = 1;
8519 goto cancel;
8520 }
8521 #endif
8522 if (error) {
8523 FSDBG(323, rxoffset, rxsize, error, -1);
8524 break;
8525 }
8526 if (!wverfset) {
8527 wverf = wverf2;
8528 wverfset = 1;
8529 } else if (wverf != wverf2) {
8530 /* verifier changed, so we need to restart all the writes */
8531 vrestart = 1;
8532 goto cancel;
8533 }
8534 /* Retain the lowest commitment level returned. */
8535 if (iomode < commit) {
8536 commit = iomode;
8537 }
8538 rxaddr += iosize;
8539 rxoffset += iosize;
8540 rxsize -= iosize;
8541 remsize -= iosize;
8542 if (remsize > 0) {
8543 /* need to try sending the remainder */
8544 iosize = remsize;
8545 uio_reset(auio, rxoffset, UIO_SYSSPACE, UIO_WRITE);
8546 uio_addiov(auio, CAST_USER_ADDR_T(rxaddr), remsize);
8547 iomode = NFS_WRITE_UNSTABLE;
8548 error = nfs_write_rpc2(np, auio, thd, cred, &iomode, &wverf2);
8549 #if CONFIG_NFS4
8550 if ((nmp->nm_vers >= NFS_VER4) && nfs_mount_state_error_should_restart(error)) {
8551 NP(np, "nfs_vnop_pageout: restart: error %d", error);
8552 lck_mtx_lock(&nmp->nm_lock);
8553 if ((error != NFSERR_GRACE) && (stategenid == nmp->nm_stategenid)) {
8554 NP(np, "nfs_vnop_pageout: error %d, initiating recovery", error);
8555 nfs_need_recover(nmp, error);
8556 }
8557 lck_mtx_unlock(&nmp->nm_lock);
8558 restart = 1;
8559 goto cancel;
8560 }
8561 #endif
8562 if (error) {
8563 FSDBG(323, rxoffset, rxsize, error, -1);
8564 break;
8565 }
8566 if (wverf != wverf2) {
8567 /* verifier changed, so we need to restart all the writes */
8568 vrestart = 1;
8569 goto cancel;
8570 }
8571 if (iomode < commit) {
8572 commit = iomode;
8573 }
8574 rxaddr += iosize;
8575 rxoffset += iosize;
8576 rxsize -= iosize;
8577 }
8578 if (txsize) {
8579 break;
8580 }
8581 }
8582 } while (!error && (txsize || rxsize));
8583
8584 vrestart = 0;
8585
8586 if (!error && (commit != NFS_WRITE_FILESYNC)) {
8587 error = nmp->nm_funcs->nf_commit_rpc(np, f_offset, xsize, cred, wverf);
8588 if (error == NFSERR_STALEWRITEVERF) {
8589 vrestart = 1;
8590 error = EIO;
8591 }
8592 }
8593
8594 if (error) {
8595 cancel:
8596 /* cancel any outstanding requests */
8597 while (req[nextwait]) {
8598 nfs_request_async_cancel(req[nextwait]);
8599 req[nextwait] = NULL;
8600 nextwait = (nextwait + 1) % MAXPAGINGREQS;
8601 vnode_writedone(vp);
8602 nfs_node_lock_force(np);
8603 np->n_numoutput--;
8604 nfs_node_unlock(np);
8605 }
8606 if (np->n_flag & NREVOKE) {
8607 error = EIO;
8608 } else {
8609 if (vrestart) {
8610 if (++vrestarts <= 100) { /* guard against no progress */
8611 goto tryagain;
8612 }
8613 NP(np, "nfs_pageout: too many restarts, aborting");
8614 FSDBG(323, f_offset, xsize, ERESTART, -1);
8615 }
8616 if (restart) {
8617 if (restarts <= nfs_mount_state_max_restarts(nmp)) { /* guard against no progress */
8618 if (error == NFSERR_GRACE) {
8619 tsleep(&nmp->nm_state, (PZERO - 1), "nfsgrace", 2 * hz);
8620 }
8621 if (!(error = nfs_mount_state_wait_for_recovery(nmp))) {
8622 goto tryagain;
8623 }
8624 } else {
8625 NP(np, "nfs_pageout: too many restarts, aborting");
8626 FSDBG(323, f_offset, xsize, ERESTART, -1);
8627 }
8628 }
8629 }
8630 }
8631
8632 ubc_upl_unmap(pl);
8633
8634 /*
8635 * We've had several different solutions on what to do when the pageout
8636 * gets an error. If we don't handle it, and return an error to the
8637 * caller, vm, it will retry . This can end in endless looping
8638 * between vm and here doing retries of the same page. Doing a dump
8639 * back to vm, will get it out of vm's knowledge and we lose whatever
8640 * data existed. This is risky, but in some cases necessary. For
8641 * example, the initial fix here was to do that for ESTALE. In that case
8642 * the server is telling us that the file is no longer the same. We
8643 * would not want to keep paging out to that. We also saw some 151
8644 * errors from Auspex server and NFSv3 can return errors higher than
8645 * ELAST. Those along with NFS known server errors we will "dump" from
8646 * vm. Errors we don't expect to occur, we dump and log for further
8647 * analysis. Errors that could be transient, networking ones,
8648 * we let vm "retry". Lastly, errors that we retry, but may have potential
8649 * to storm the network, we "retrywithsleep". "sever" will be used in
8650 * in the future to dump all pages of object for cases like ESTALE.
8651 * All this is the basis for the states returned and first guesses on
8652 * error handling. Tweaking expected as more statistics are gathered.
8653 * Note, in the long run we may need another more robust solution to
8654 * have some kind of persistant store when the vm cannot dump nor keep
8655 * retrying as a solution, but this would be a file architectural change
8656 */
8657 if (!nofreeupl) { /* otherwise stacked file system has to handle this */
8658 if (error) {
8659 int abortflags = 0;
8660 char action = nfs_pageouterrorhandler(error);
8661
8662 switch (action) {
8663 case DUMP:
8664 abortflags = UPL_ABORT_DUMP_PAGES | UPL_ABORT_FREE_ON_EMPTY;
8665 break;
8666 case DUMPANDLOG:
8667 abortflags = UPL_ABORT_DUMP_PAGES | UPL_ABORT_FREE_ON_EMPTY;
8668 if (error <= NFS_ELAST) {
8669 if ((errorcount[error] % 100) == 0) {
8670 NP(np, "nfs_pageout: unexpected error %d. dumping vm page", error);
8671 }
8672 errorcount[error]++;
8673 }
8674 break;
8675 case RETRY:
8676 abortflags = UPL_ABORT_FREE_ON_EMPTY;
8677 break;
8678 case SEVER: /* not implemented */
8679 default:
8680 NP(np, "nfs_pageout: action %d not expected", action);
8681 break;
8682 }
8683
8684 ubc_upl_abort_range(pl, pl_offset, pgsize, abortflags);
8685 /* return error in all cases above */
8686 } else {
8687 ubc_upl_commit_range(pl, pl_offset, pgsize,
8688 UPL_COMMIT_CLEAR_DIRTY |
8689 UPL_COMMIT_FREE_ON_EMPTY);
8690 }
8691 }
8692 return error;
8693 }
8694
8695 /* Blktooff derives file offset given a logical block number */
8696 int
8697 nfs_vnop_blktooff(
8698 struct vnop_blktooff_args /* {
8699 * struct vnodeop_desc *a_desc;
8700 * vnode_t a_vp;
8701 * daddr64_t a_lblkno;
8702 * off_t *a_offset;
8703 * } */*ap)
8704 {
8705 int biosize;
8706 vnode_t vp = ap->a_vp;
8707 struct nfsmount *nmp = VTONMP(vp);
8708
8709 if (nfs_mount_gone(nmp)) {
8710 return ENXIO;
8711 }
8712 biosize = nmp->nm_biosize;
8713
8714 *ap->a_offset = (off_t)(ap->a_lblkno * biosize);
8715
8716 return 0;
8717 }
8718
8719 int
8720 nfs_vnop_offtoblk(
8721 struct vnop_offtoblk_args /* {
8722 * struct vnodeop_desc *a_desc;
8723 * vnode_t a_vp;
8724 * off_t a_offset;
8725 * daddr64_t *a_lblkno;
8726 * } */*ap)
8727 {
8728 int biosize;
8729 vnode_t vp = ap->a_vp;
8730 struct nfsmount *nmp = VTONMP(vp);
8731
8732 if (nfs_mount_gone(nmp)) {
8733 return ENXIO;
8734 }
8735 biosize = nmp->nm_biosize;
8736
8737 *ap->a_lblkno = (daddr64_t)(ap->a_offset / biosize);
8738
8739 return 0;
8740 }
8741
8742 /*
8743 * vnode change monitoring
8744 */
8745 int
8746 nfs_vnop_monitor(
8747 struct vnop_monitor_args /* {
8748 * struct vnodeop_desc *a_desc;
8749 * vnode_t a_vp;
8750 * uint32_t a_events;
8751 * uint32_t a_flags;
8752 * void *a_handle;
8753 * vfs_context_t a_context;
8754 * } */*ap)
8755 {
8756 nfsnode_t np = VTONFS(ap->a_vp);
8757 struct nfsmount *nmp = VTONMP(ap->a_vp);
8758 int error = 0;
8759
8760 if (nfs_mount_gone(nmp)) {
8761 return ENXIO;
8762 }
8763
8764 /* make sure that the vnode's monitoring status is up to date */
8765 lck_mtx_lock(&nmp->nm_lock);
8766 if (vnode_ismonitored(ap->a_vp)) {
8767 /* This vnode is currently being monitored, make sure we're tracking it. */
8768 if (np->n_monlink.le_next == NFSNOLIST) {
8769 LIST_INSERT_HEAD(&nmp->nm_monlist, np, n_monlink);
8770 nfs_mount_sock_thread_wake(nmp);
8771 }
8772 } else {
8773 /* This vnode is no longer being monitored, make sure we're not tracking it. */
8774 /* Wait for any in-progress getattr to complete first. */
8775 while (np->n_mflag & NMMONSCANINPROG) {
8776 struct timespec ts = { .tv_sec = 1, .tv_nsec = 0 };
8777 np->n_mflag |= NMMONSCANWANT;
8778 msleep(&np->n_mflag, &nmp->nm_lock, PZERO - 1, "nfswaitmonscan", &ts);
8779 }
8780 if (np->n_monlink.le_next != NFSNOLIST) {
8781 LIST_REMOVE(np, n_monlink);
8782 np->n_monlink.le_next = NFSNOLIST;
8783 }
8784 }
8785 lck_mtx_unlock(&nmp->nm_lock);
8786
8787 return error;
8788 }
8789
8790 /*
8791 * Send a vnode notification for the given events.
8792 */
8793 void
8794 nfs_vnode_notify(nfsnode_t np, uint32_t events)
8795 {
8796 struct nfsmount *nmp = NFSTONMP(np);
8797 struct nfs_vattr *nvattr;
8798 struct vnode_attr vattr, *vap = NULL;
8799 struct timeval now;
8800
8801 microuptime(&now);
8802 if ((np->n_evtstamp == now.tv_sec) || !nmp) {
8803 /* delay sending this notify */
8804 np->n_events |= events;
8805 return;
8806 }
8807 events |= np->n_events;
8808 np->n_events = 0;
8809 np->n_evtstamp = now.tv_sec;
8810 MALLOC(nvattr, struct nfs_vattr *, sizeof(*nvattr), M_TEMP, M_WAITOK);
8811
8812 vfs_get_notify_attributes(&vattr);
8813 if (!nfs_getattrcache(np, nvattr, 0)) {
8814 vap = &vattr;
8815 VATTR_INIT(vap);
8816
8817 VATTR_RETURN(vap, va_fsid, vfs_statfs(nmp->nm_mountp)->f_fsid.val[0]);
8818 VATTR_RETURN(vap, va_fileid, nvattr->nva_fileid);
8819 VATTR_RETURN(vap, va_mode, nvattr->nva_mode);
8820 VATTR_RETURN(vap, va_uid, nvattr->nva_uid);
8821 VATTR_RETURN(vap, va_gid, nvattr->nva_gid);
8822 VATTR_RETURN(vap, va_nlink, nvattr->nva_nlink);
8823 }
8824 vnode_notify(NFSTOV(np), events, vap);
8825 FREE(nvattr, M_TEMP);
8826 }
8827
8828 #endif /* CONFIG_NFS_CLIENT */