1 1.246 msaitoh /* $NetBSD: nfs_vfsops.c,v 1.246 2024/05/13 00:11:22 msaitoh Exp $ */ 2 1.26 cgd 3 1.1 cgd /* 4 1.43 fvdl * Copyright (c) 1989, 1993, 1995 5 1.21 mycroft * The Regents of the University of California. All rights reserved. 6 1.1 cgd * 7 1.1 cgd * This code is derived from software contributed to Berkeley by 8 1.1 cgd * Rick Macklem at The University of Guelph. 9 1.1 cgd * 10 1.1 cgd * Redistribution and use in source and binary forms, with or without 11 1.1 cgd * modification, are permitted provided that the following conditions 12 1.1 cgd * are met: 13 1.1 cgd * 1. Redistributions of source code must retain the above copyright 14 1.1 cgd * notice, this list of conditions and the following disclaimer. 15 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright 16 1.1 cgd * notice, this list of conditions and the following disclaimer in the 17 1.1 cgd * documentation and/or other materials provided with the distribution. 18 1.132 agc * 3. Neither the name of the University nor the names of its contributors 19 1.1 cgd * may be used to endorse or promote products derived from this software 20 1.1 cgd * without specific prior written permission. 21 1.1 cgd * 22 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 23 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 24 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 25 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 26 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 27 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 28 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 29 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 30 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 31 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 32 1.1 cgd * SUCH DAMAGE. 33 1.1 cgd * 34 1.43 fvdl * @(#)nfs_vfsops.c 8.12 (Berkeley) 5/20/95 35 1.1 cgd */ 36 1.111 lukem 37 1.111 lukem #include <sys/cdefs.h> 38 1.246 msaitoh __KERNEL_RCSID(0, "$NetBSD: nfs_vfsops.c,v 1.246 2024/05/13 00:11:22 msaitoh Exp $"); 39 1.76 jonathan 40 1.103 mrg #if defined(_KERNEL_OPT) 41 1.95 bjh21 #include "opt_nfs.h" 42 1.76 jonathan #endif 43 1.74 sommerfe 44 1.9 mycroft #include <sys/param.h> 45 1.9 mycroft #include <sys/ioctl.h> 46 1.9 mycroft #include <sys/signal.h> 47 1.9 mycroft #include <sys/proc.h> 48 1.9 mycroft #include <sys/namei.h> 49 1.56 thorpej #include <sys/device.h> 50 1.9 mycroft #include <sys/vnode.h> 51 1.21 mycroft #include <sys/kernel.h> 52 1.9 mycroft #include <sys/mount.h> 53 1.9 mycroft #include <sys/buf.h> 54 1.9 mycroft #include <sys/mbuf.h> 55 1.136 christos #include <sys/dirent.h> 56 1.9 mycroft #include <sys/socket.h> 57 1.41 christos #include <sys/socketvar.h> 58 1.89 tsarna #include <sys/sysctl.h> 59 1.9 mycroft #include <sys/systm.h> 60 1.157 kardel #include <sys/timetc.h> 61 1.155 elad #include <sys/kauth.h> 62 1.200 rumble #include <sys/module.h> 63 1.1 cgd 64 1.9 mycroft #include <net/if.h> 65 1.9 mycroft #include <net/route.h> 66 1.9 mycroft #include <netinet/in.h> 67 1.9 mycroft 68 1.21 mycroft #include <nfs/rpcv2.h> 69 1.43 fvdl #include <nfs/nfsproto.h> 70 1.9 mycroft #include <nfs/nfsnode.h> 71 1.43 fvdl #include <nfs/nfs.h> 72 1.9 mycroft #include <nfs/nfsmount.h> 73 1.9 mycroft #include <nfs/xdr_subs.h> 74 1.9 mycroft #include <nfs/nfsm_subs.h> 75 1.9 mycroft #include <nfs/nfsdiskless.h> 76 1.41 christos #include <nfs/nfs_var.h> 77 1.1 cgd 78 1.200 rumble MODULE(MODULE_CLASS_VFS, nfs, NULL); 79 1.200 rumble 80 1.54 thorpej extern struct nfsstats nfsstats; 81 1.43 fvdl extern int nfs_ticks; 82 1.121 thorpej 83 1.153 blymn /* 84 1.246 msaitoh * keep a count of the nfs mounts to generate fictitious drive names 85 1.153 blymn * for the per drive stats. 86 1.153 blymn */ 87 1.153 blymn unsigned int nfs_mount_count = 0; 88 1.153 blymn 89 1.211 pooka int nfs_commitsize; 90 1.211 pooka 91 1.1 cgd /* 92 1.1 cgd * nfs vfs operations. 93 1.1 cgd */ 94 1.68 thorpej 95 1.99 jdolecek extern const struct vnodeopv_desc nfsv2_vnodeop_opv_desc; 96 1.99 jdolecek extern const struct vnodeopv_desc spec_nfsv2nodeop_opv_desc; 97 1.99 jdolecek extern const struct vnodeopv_desc fifo_nfsv2nodeop_opv_desc; 98 1.68 thorpej 99 1.99 jdolecek const struct vnodeopv_desc * const nfs_vnodeopv_descs[] = { 100 1.68 thorpej &nfsv2_vnodeop_opv_desc, 101 1.68 thorpej &spec_nfsv2nodeop_opv_desc, 102 1.68 thorpej &fifo_nfsv2nodeop_opv_desc, 103 1.68 thorpej NULL, 104 1.68 thorpej }; 105 1.68 thorpej 106 1.1 cgd struct vfsops nfs_vfsops = { 107 1.226 hannken .vfs_name = MOUNT_NFS, 108 1.226 hannken .vfs_min_mount_data = sizeof (struct nfs_args), 109 1.226 hannken .vfs_mount = nfs_mount, 110 1.226 hannken .vfs_start = nfs_start, 111 1.226 hannken .vfs_unmount = nfs_unmount, 112 1.226 hannken .vfs_root = nfs_root, 113 1.226 hannken .vfs_quotactl = (void *)eopnotsupp, 114 1.226 hannken .vfs_statvfs = nfs_statvfs, 115 1.226 hannken .vfs_sync = nfs_sync, 116 1.229 hannken .vfs_loadvnode = nfs_loadvnode, 117 1.226 hannken .vfs_vget = nfs_vget, 118 1.226 hannken .vfs_fhtovp = nfs_fhtovp, 119 1.226 hannken .vfs_vptofh = nfs_vptofh, 120 1.226 hannken .vfs_init = nfs_vfs_init, 121 1.226 hannken .vfs_done = nfs_vfs_done, 122 1.226 hannken .vfs_mountroot = nfs_mountroot, 123 1.226 hannken .vfs_snapshot = (void *)eopnotsupp, 124 1.226 hannken .vfs_extattrctl = vfs_stdextattrctl, 125 1.232 hannken .vfs_suspendctl = genfs_suspendctl, 126 1.226 hannken .vfs_renamelock_enter = genfs_renamelock_enter, 127 1.226 hannken .vfs_renamelock_exit = genfs_renamelock_exit, 128 1.226 hannken .vfs_fsync = (void *)eopnotsupp, 129 1.226 hannken .vfs_opv_descs = nfs_vnodeopv_descs 130 1.1 cgd }; 131 1.200 rumble 132 1.205 ad extern u_int32_t nfs_procids[NFS_NPROCS]; 133 1.205 ad extern u_int32_t nfs_prog, nfs_vers; 134 1.205 ad 135 1.207 dsl static int nfs_mount_diskless(struct nfs_dlmount *, const char *, 136 1.207 dsl struct mount **, struct vnode **, struct lwp *); 137 1.205 ad 138 1.200 rumble static int 139 1.200 rumble nfs_modcmd(modcmd_t cmd, void *arg) 140 1.200 rumble { 141 1.205 ad int error; 142 1.200 rumble 143 1.200 rumble switch (cmd) { 144 1.200 rumble case MODULE_CMD_INIT: 145 1.205 ad error = vfs_attach(&nfs_vfsops); 146 1.205 ad return error; 147 1.200 rumble case MODULE_CMD_FINI: 148 1.205 ad error = vfs_detach(&nfs_vfsops); 149 1.205 ad return error; 150 1.200 rumble default: 151 1.200 rumble return ENOTTY; 152 1.200 rumble } 153 1.200 rumble } 154 1.1 cgd 155 1.1 cgd /* 156 1.136 christos * nfs statvfs call 157 1.1 cgd */ 158 1.21 mycroft int 159 1.208 dsl nfs_statvfs(struct mount *mp, struct statvfs *sbp) 160 1.1 cgd { 161 1.188 pooka struct lwp *l = curlwp; 162 1.88 augustss struct vnode *vp; 163 1.88 augustss struct nfs_statfs *sfp; 164 1.174 christos char *cp; 165 1.88 augustss u_int32_t *tl; 166 1.88 augustss int32_t t1, t2; 167 1.174 christos char *bpos, *dpos, *cp2; 168 1.43 fvdl struct nfsmount *nmp = VFSTONFS(mp); 169 1.95 bjh21 int error = 0, retattr; 170 1.95 bjh21 #ifdef NFS_V2_ONLY 171 1.95 bjh21 const int v3 = 0; 172 1.95 bjh21 #else 173 1.95 bjh21 int v3 = (nmp->nm_flag & NFSMNT_NFSV3); 174 1.95 bjh21 #endif 175 1.122 matt struct mbuf *mreq, *mrep = NULL, *md, *mb; 176 1.155 elad kauth_cred_t cred; 177 1.43 fvdl u_quad_t tquad; 178 1.126 drochner struct nfsnode *np; 179 1.1 cgd 180 1.43 fvdl #ifndef nolint 181 1.43 fvdl sfp = (struct nfs_statfs *)0; 182 1.43 fvdl #endif 183 1.101 fvdl vp = nmp->nm_vnode; 184 1.126 drochner np = VTONFS(vp); 185 1.155 elad cred = kauth_cred_alloc(); 186 1.112 christos #ifndef NFS_V2_ONLY 187 1.65 fvdl if (v3 && (nmp->nm_iflag & NFSMNT_GOTFSINFO) == 0) 188 1.151 christos (void)nfs_fsinfo(nmp, vp, cred, l); 189 1.112 christos #endif 190 1.43 fvdl nfsstats.rpccnt[NFSPROC_FSSTAT]++; 191 1.126 drochner nfsm_reqhead(np, NFSPROC_FSSTAT, NFSX_FH(v3)); 192 1.126 drochner nfsm_fhtom(np, v3); 193 1.151 christos nfsm_request(np, NFSPROC_FSSTAT, l, cred); 194 1.43 fvdl if (v3) 195 1.119 yamt nfsm_postop_attr(vp, retattr, 0); 196 1.46 fvdl if (error) { 197 1.133 itojun if (mrep != NULL) { 198 1.133 itojun if (mrep->m_next != NULL) 199 1.136 christos printf("nfs_vfsops: nfs_statvfs would lose buffers\n"); 200 1.133 itojun m_freem(mrep); 201 1.133 itojun } 202 1.46 fvdl goto nfsmout; 203 1.46 fvdl } 204 1.46 fvdl nfsm_dissect(sfp, struct nfs_statfs *, NFSX_STATFS(v3)); 205 1.136 christos sbp->f_flag = nmp->nm_flag; 206 1.237 riastrad sbp->f_iosize = uimin(nmp->nm_rsize, nmp->nm_wsize); 207 1.43 fvdl if (v3) { 208 1.136 christos sbp->f_frsize = sbp->f_bsize = NFS_FABLKSIZE; 209 1.83 fair tquad = fxdr_hyper(&sfp->sf_tbytes); 210 1.136 christos sbp->f_blocks = ((quad_t)tquad / (quad_t)NFS_FABLKSIZE); 211 1.83 fair tquad = fxdr_hyper(&sfp->sf_fbytes); 212 1.136 christos sbp->f_bfree = ((quad_t)tquad / (quad_t)NFS_FABLKSIZE); 213 1.83 fair tquad = fxdr_hyper(&sfp->sf_abytes); 214 1.136 christos tquad = ((quad_t)tquad / (quad_t)NFS_FABLKSIZE); 215 1.136 christos sbp->f_bresvd = sbp->f_bfree - tquad; 216 1.136 christos sbp->f_bavail = tquad; 217 1.136 christos /* Handle older NFS servers returning negative values */ 218 1.136 christos if ((quad_t)sbp->f_bavail < 0) 219 1.136 christos sbp->f_bavail = 0; 220 1.83 fair tquad = fxdr_hyper(&sfp->sf_tfiles); 221 1.136 christos sbp->f_files = tquad; 222 1.83 fair tquad = fxdr_hyper(&sfp->sf_ffiles); 223 1.136 christos sbp->f_ffree = tquad; 224 1.136 christos sbp->f_favail = tquad; 225 1.136 christos sbp->f_fresvd = 0; 226 1.21 mycroft } else { 227 1.136 christos sbp->f_bsize = NFS_FABLKSIZE; 228 1.136 christos sbp->f_frsize = fxdr_unsigned(int32_t, sfp->sf_bsize); 229 1.43 fvdl sbp->f_blocks = fxdr_unsigned(int32_t, sfp->sf_blocks); 230 1.43 fvdl sbp->f_bfree = fxdr_unsigned(int32_t, sfp->sf_bfree); 231 1.43 fvdl sbp->f_bavail = fxdr_unsigned(int32_t, sfp->sf_bavail); 232 1.136 christos sbp->f_fresvd = 0; 233 1.21 mycroft sbp->f_files = 0; 234 1.21 mycroft sbp->f_ffree = 0; 235 1.136 christos sbp->f_favail = 0; 236 1.136 christos sbp->f_fresvd = 0; 237 1.21 mycroft } 238 1.136 christos copy_statvfs_info(sbp, mp); 239 1.1 cgd nfsm_reqdone; 240 1.155 elad kauth_cred_free(cred); 241 1.1 cgd return (error); 242 1.1 cgd } 243 1.1 cgd 244 1.95 bjh21 #ifndef NFS_V2_ONLY 245 1.1 cgd /* 246 1.43 fvdl * nfs version 3 fsinfo rpc call 247 1.43 fvdl */ 248 1.43 fvdl int 249 1.208 dsl nfs_fsinfo(struct nfsmount *nmp, struct vnode *vp, kauth_cred_t cred, struct lwp *l) 250 1.43 fvdl { 251 1.88 augustss struct nfsv3_fsinfo *fsp; 252 1.174 christos char *cp; 253 1.88 augustss int32_t t1, t2; 254 1.147 christos u_int32_t *tl, pref, xmax; 255 1.174 christos char *bpos, *dpos, *cp2; 256 1.43 fvdl int error = 0, retattr; 257 1.122 matt struct mbuf *mreq, *mrep, *md, *mb; 258 1.61 fvdl u_int64_t maxfsize; 259 1.126 drochner struct nfsnode *np = VTONFS(vp); 260 1.43 fvdl 261 1.43 fvdl nfsstats.rpccnt[NFSPROC_FSINFO]++; 262 1.126 drochner nfsm_reqhead(np, NFSPROC_FSINFO, NFSX_FH(1)); 263 1.126 drochner nfsm_fhtom(np, 1); 264 1.151 christos nfsm_request(np, NFSPROC_FSINFO, l, cred); 265 1.119 yamt nfsm_postop_attr(vp, retattr, 0); 266 1.43 fvdl if (!error) { 267 1.43 fvdl nfsm_dissect(fsp, struct nfsv3_fsinfo *, NFSX_V3FSINFO); 268 1.43 fvdl pref = fxdr_unsigned(u_int32_t, fsp->fs_wtpref); 269 1.123 yamt if ((nmp->nm_flag & NFSMNT_WSIZE) == 0 && 270 1.123 yamt pref < nmp->nm_wsize && pref >= NFS_FABLKSIZE) 271 1.43 fvdl nmp->nm_wsize = (pref + NFS_FABLKSIZE - 1) & 272 1.43 fvdl ~(NFS_FABLKSIZE - 1); 273 1.147 christos xmax = fxdr_unsigned(u_int32_t, fsp->fs_wtmax); 274 1.147 christos if (xmax < nmp->nm_wsize && xmax > 0) { 275 1.147 christos nmp->nm_wsize = xmax & ~(NFS_FABLKSIZE - 1); 276 1.43 fvdl if (nmp->nm_wsize == 0) 277 1.147 christos nmp->nm_wsize = xmax; 278 1.43 fvdl } 279 1.43 fvdl pref = fxdr_unsigned(u_int32_t, fsp->fs_rtpref); 280 1.123 yamt if ((nmp->nm_flag & NFSMNT_RSIZE) == 0 && 281 1.123 yamt pref < nmp->nm_rsize && pref >= NFS_FABLKSIZE) 282 1.43 fvdl nmp->nm_rsize = (pref + NFS_FABLKSIZE - 1) & 283 1.43 fvdl ~(NFS_FABLKSIZE - 1); 284 1.147 christos xmax = fxdr_unsigned(u_int32_t, fsp->fs_rtmax); 285 1.147 christos if (xmax < nmp->nm_rsize && xmax > 0) { 286 1.147 christos nmp->nm_rsize = xmax & ~(NFS_FABLKSIZE - 1); 287 1.43 fvdl if (nmp->nm_rsize == 0) 288 1.147 christos nmp->nm_rsize = xmax; 289 1.43 fvdl } 290 1.43 fvdl pref = fxdr_unsigned(u_int32_t, fsp->fs_dtpref); 291 1.65 fvdl if (pref < nmp->nm_readdirsize && pref >= NFS_DIRFRAGSIZ) 292 1.65 fvdl nmp->nm_readdirsize = (pref + NFS_DIRFRAGSIZ - 1) & 293 1.65 fvdl ~(NFS_DIRFRAGSIZ - 1); 294 1.147 christos if (xmax < nmp->nm_readdirsize && xmax > 0) { 295 1.147 christos nmp->nm_readdirsize = xmax & ~(NFS_DIRFRAGSIZ - 1); 296 1.43 fvdl if (nmp->nm_readdirsize == 0) 297 1.147 christos nmp->nm_readdirsize = xmax; 298 1.43 fvdl } 299 1.243 mlelstv nmp->nm_maxfilesize = 0xffffffffffffffffull; 300 1.83 fair maxfsize = fxdr_hyper(&fsp->fs_maxfilesize); 301 1.61 fvdl if (maxfsize > 0 && maxfsize < nmp->nm_maxfilesize) 302 1.61 fvdl nmp->nm_maxfilesize = maxfsize; 303 1.142 yamt nmp->nm_mountp->mnt_fs_bshift = 304 1.142 yamt ffs(MIN(nmp->nm_rsize, nmp->nm_wsize)) - 1; 305 1.65 fvdl nmp->nm_iflag |= NFSMNT_GOTFSINFO; 306 1.43 fvdl } 307 1.43 fvdl nfsm_reqdone; 308 1.43 fvdl return (error); 309 1.43 fvdl } 310 1.95 bjh21 #endif 311 1.43 fvdl 312 1.43 fvdl /* 313 1.22 gwr * Mount a remote root fs via. NFS. It goes like this: 314 1.22 gwr * - Call nfs_boot_init() to fill in the nfs_diskless struct 315 1.59 gwr * - build the rootfs mount point and call mountnfs() to do the rest. 316 1.1 cgd */ 317 1.21 mycroft int 318 1.210 cegger nfs_mountroot(void) 319 1.1 cgd { 320 1.157 kardel struct timespec ts; 321 1.63 gwr struct nfs_diskless *nd; 322 1.22 gwr struct vattr attr; 323 1.22 gwr struct mount *mp; 324 1.1 cgd struct vnode *vp; 325 1.151 christos struct lwp *l; 326 1.245 christos time_t n; 327 1.22 gwr int error; 328 1.22 gwr 329 1.151 christos l = curlwp; /* XXX */ 330 1.22 gwr 331 1.152 thorpej if (device_class(root_device) != DV_IFNET) 332 1.56 thorpej return (ENODEV); 333 1.56 thorpej 334 1.22 gwr /* 335 1.23 gwr * XXX time must be non-zero when we init the interface or else 336 1.23 gwr * the arp code will wedge. [Fixed now in if_ether.c] 337 1.157 kardel * However, the NFS attribute cache gives false "hits" when the 338 1.187 yamt * current time < nfs_attrtimeo(nmp, np) so keep this in for now. 339 1.23 gwr */ 340 1.157 kardel if (time_second < NFS_MAXATTRTIMO) { 341 1.157 kardel ts.tv_sec = NFS_MAXATTRTIMO; 342 1.157 kardel ts.tv_nsec = 0; 343 1.157 kardel tc_setclock(&ts); 344 1.157 kardel } 345 1.23 gwr 346 1.23 gwr /* 347 1.22 gwr * Call nfs_boot_init() to fill in the nfs_diskless struct. 348 1.22 gwr * Side effect: Finds and configures a network interface. 349 1.22 gwr */ 350 1.195 yamt nd = kmem_zalloc(sizeof(*nd), KM_SLEEP); 351 1.151 christos error = nfs_boot_init(nd, l); 352 1.80 drochner if (error) { 353 1.190 yamt kmem_free(nd, sizeof(*nd)); 354 1.80 drochner return (error); 355 1.80 drochner } 356 1.1 cgd 357 1.1 cgd /* 358 1.22 gwr * Create the root mount point. 359 1.1 cgd */ 360 1.151 christos error = nfs_mount_diskless(&nd->nd_root, "/", &mp, &vp, l); 361 1.59 gwr if (error) 362 1.63 gwr goto out; 363 1.63 gwr printf("root on %s\n", nd->nd_root.ndm_host); 364 1.22 gwr 365 1.22 gwr /* 366 1.22 gwr * Link it into the mount list. 367 1.22 gwr */ 368 1.223 christos mountlist_append(mp); 369 1.43 fvdl rootvp = vp; 370 1.22 gwr mp->mnt_vnodecovered = NULLVP; 371 1.235 hannken vfs_unbusy(mp); 372 1.22 gwr 373 1.22 gwr /* Get root attributes (for the time). */ 374 1.220 hannken vn_lock(vp, LK_SHARED | LK_RETRY); 375 1.188 pooka error = VOP_GETATTR(vp, &attr, l->l_cred); 376 1.220 hannken VOP_UNLOCK(vp); 377 1.59 gwr if (error) 378 1.59 gwr panic("nfs_mountroot: getattr for root"); 379 1.78 drochner n = attr.va_atime.tv_sec; 380 1.23 gwr #ifdef DEBUG 381 1.245 christos printf("root time: 0x%jx\n", (intmax_t)n); 382 1.23 gwr #endif 383 1.141 pk setrootfstime(n); 384 1.15 glass 385 1.80 drochner out: 386 1.24 pk if (error) 387 1.151 christos nfs_boot_cleanup(nd, l); 388 1.190 yamt kmem_free(nd, sizeof(*nd)); 389 1.63 gwr return (error); 390 1.1 cgd } 391 1.1 cgd 392 1.21 mycroft /* 393 1.21 mycroft * Internal version of mount system call for diskless setup. 394 1.63 gwr * Separate function because we used to call it twice. 395 1.63 gwr * (once for root and once for swap) 396 1.21 mycroft */ 397 1.59 gwr static int 398 1.209 dsl nfs_mount_diskless(struct nfs_dlmount *ndmntp, const char *mntname, struct mount **mpp, struct vnode **vpp, struct lwp *l) 399 1.209 dsl /* mntname: mount point name */ 400 1.21 mycroft { 401 1.22 gwr struct mount *mp; 402 1.22 gwr struct mbuf *m; 403 1.22 gwr int error; 404 1.21 mycroft 405 1.147 christos vfs_rootmountalloc(MOUNT_NFS, mntname, &mp); 406 1.69 fvdl 407 1.21 mycroft mp->mnt_op = &nfs_vfsops; 408 1.71 thorpej 409 1.71 thorpej /* 410 1.71 thorpej * Historical practice expects NFS root file systems to 411 1.71 thorpej * be initially mounted r/w. 412 1.71 thorpej */ 413 1.71 thorpej mp->mnt_flag &= ~MNT_RDONLY; 414 1.21 mycroft 415 1.22 gwr /* Get mbuf for server sockaddr. */ 416 1.30 gwr m = m_get(M_WAIT, MT_SONAME); 417 1.52 fvdl if (m == NULL) 418 1.52 fvdl panic("nfs_mountroot: mget soname for %s", mntname); 419 1.122 matt MCLAIM(m, &nfs_mowner); 420 1.174 christos memcpy(mtod(m, void *), (void *)ndmntp->ndm_args.addr, 421 1.52 fvdl (m->m_len = ndmntp->ndm_args.addr->sa_len)); 422 1.22 gwr 423 1.52 fvdl error = mountnfs(&ndmntp->ndm_args, mp, m, mntname, 424 1.151 christos ndmntp->ndm_args.hostname, vpp, l); 425 1.59 gwr if (error) { 426 1.235 hannken vfs_unbusy(mp); 427 1.234 hannken vfs_rele(mp); 428 1.59 gwr printf("nfs_mountroot: mount %s failed: %d\n", 429 1.59 gwr mntname, error); 430 1.59 gwr } else 431 1.59 gwr *mpp = mp; 432 1.21 mycroft 433 1.59 gwr return (error); 434 1.21 mycroft } 435 1.21 mycroft 436 1.21 mycroft void 437 1.208 dsl nfs_decode_args(struct nfsmount *nmp, struct nfs_args *argp, struct lwp *l) 438 1.21 mycroft { 439 1.21 mycroft int s; 440 1.32 pk int adjsock; 441 1.43 fvdl int maxio; 442 1.21 mycroft 443 1.38 mycroft s = splsoftnet(); 444 1.58 fvdl 445 1.58 fvdl /* 446 1.58 fvdl * Silently clear NFSMNT_NOCONN if it's a TCP mount, it makes 447 1.58 fvdl * no sense in that context. 448 1.58 fvdl */ 449 1.58 fvdl if (argp->sotype == SOCK_STREAM) 450 1.58 fvdl argp->flags &= ~NFSMNT_NOCONN; 451 1.32 pk 452 1.66 fvdl /* 453 1.66 fvdl * Cookie translation is not needed for v2, silently ignore it. 454 1.66 fvdl */ 455 1.66 fvdl if ((argp->flags & (NFSMNT_XLATECOOKIE|NFSMNT_NFSV3)) == 456 1.66 fvdl NFSMNT_XLATECOOKIE) 457 1.66 fvdl argp->flags &= ~NFSMNT_XLATECOOKIE; 458 1.66 fvdl 459 1.32 pk /* Re-bind if rsrvd port requested and wasn't on one */ 460 1.32 pk adjsock = !(nmp->nm_flag & NFSMNT_RESVPORT) 461 1.32 pk && (argp->flags & NFSMNT_RESVPORT); 462 1.57 fvdl /* Also re-bind if we're switching to/from a connected UDP socket */ 463 1.57 fvdl adjsock |= ((nmp->nm_flag & NFSMNT_NOCONN) != 464 1.57 fvdl (argp->flags & NFSMNT_NOCONN)); 465 1.32 pk 466 1.94 enami /* Update flags. */ 467 1.94 enami nmp->nm_flag = argp->flags; 468 1.8 pk splx(s); 469 1.6 pk 470 1.6 pk if ((argp->flags & NFSMNT_TIMEO) && argp->timeo > 0) { 471 1.21 mycroft nmp->nm_timeo = (argp->timeo * NFS_HZ + 5) / 10; 472 1.21 mycroft if (nmp->nm_timeo < NFS_MINTIMEO) 473 1.21 mycroft nmp->nm_timeo = NFS_MINTIMEO; 474 1.21 mycroft else if (nmp->nm_timeo > NFS_MAXTIMEO) 475 1.21 mycroft nmp->nm_timeo = NFS_MAXTIMEO; 476 1.6 pk } 477 1.6 pk 478 1.6 pk if ((argp->flags & NFSMNT_RETRANS) && argp->retrans > 1) { 479 1.6 pk nmp->nm_retry = argp->retrans; 480 1.6 pk if (nmp->nm_retry > NFS_MAXREXMIT) 481 1.6 pk nmp->nm_retry = NFS_MAXREXMIT; 482 1.6 pk } 483 1.6 pk 484 1.95 bjh21 #ifndef NFS_V2_ONLY 485 1.43 fvdl if (argp->flags & NFSMNT_NFSV3) { 486 1.43 fvdl if (argp->sotype == SOCK_DGRAM) 487 1.43 fvdl maxio = NFS_MAXDGRAMDATA; 488 1.43 fvdl else 489 1.43 fvdl maxio = NFS_MAXDATA; 490 1.43 fvdl } else 491 1.95 bjh21 #endif 492 1.43 fvdl maxio = NFS_V2MAXDATA; 493 1.43 fvdl 494 1.6 pk if ((argp->flags & NFSMNT_WSIZE) && argp->wsize > 0) { 495 1.32 pk int osize = nmp->nm_wsize; 496 1.6 pk nmp->nm_wsize = argp->wsize; 497 1.6 pk /* Round down to multiple of blocksize */ 498 1.43 fvdl nmp->nm_wsize &= ~(NFS_FABLKSIZE - 1); 499 1.6 pk if (nmp->nm_wsize <= 0) 500 1.43 fvdl nmp->nm_wsize = NFS_FABLKSIZE; 501 1.32 pk adjsock |= (nmp->nm_wsize != osize); 502 1.6 pk } 503 1.43 fvdl if (nmp->nm_wsize > maxio) 504 1.43 fvdl nmp->nm_wsize = maxio; 505 1.6 pk if (nmp->nm_wsize > MAXBSIZE) 506 1.6 pk nmp->nm_wsize = MAXBSIZE; 507 1.6 pk 508 1.6 pk if ((argp->flags & NFSMNT_RSIZE) && argp->rsize > 0) { 509 1.32 pk int osize = nmp->nm_rsize; 510 1.6 pk nmp->nm_rsize = argp->rsize; 511 1.6 pk /* Round down to multiple of blocksize */ 512 1.43 fvdl nmp->nm_rsize &= ~(NFS_FABLKSIZE - 1); 513 1.6 pk if (nmp->nm_rsize <= 0) 514 1.43 fvdl nmp->nm_rsize = NFS_FABLKSIZE; 515 1.32 pk adjsock |= (nmp->nm_rsize != osize); 516 1.6 pk } 517 1.43 fvdl if (nmp->nm_rsize > maxio) 518 1.43 fvdl nmp->nm_rsize = maxio; 519 1.6 pk if (nmp->nm_rsize > MAXBSIZE) 520 1.6 pk nmp->nm_rsize = MAXBSIZE; 521 1.21 mycroft 522 1.43 fvdl if ((argp->flags & NFSMNT_READDIRSIZE) && argp->readdirsize > 0) { 523 1.43 fvdl nmp->nm_readdirsize = argp->readdirsize; 524 1.65 fvdl /* Round down to multiple of minimum blocksize */ 525 1.65 fvdl nmp->nm_readdirsize &= ~(NFS_DIRFRAGSIZ - 1); 526 1.65 fvdl if (nmp->nm_readdirsize < NFS_DIRFRAGSIZ) 527 1.65 fvdl nmp->nm_readdirsize = NFS_DIRFRAGSIZ; 528 1.65 fvdl /* Bigger than buffer size makes no sense */ 529 1.65 fvdl if (nmp->nm_readdirsize > NFS_DIRBLKSIZ) 530 1.43 fvdl nmp->nm_readdirsize = NFS_DIRBLKSIZ; 531 1.44 fvdl } else if (argp->flags & NFSMNT_RSIZE) 532 1.44 fvdl nmp->nm_readdirsize = nmp->nm_rsize; 533 1.44 fvdl 534 1.43 fvdl if (nmp->nm_readdirsize > maxio) 535 1.43 fvdl nmp->nm_readdirsize = maxio; 536 1.43 fvdl 537 1.21 mycroft if ((argp->flags & NFSMNT_MAXGRPS) && argp->maxgrouplist >= 0 && 538 1.21 mycroft argp->maxgrouplist <= NFS_MAXGRPS) 539 1.21 mycroft nmp->nm_numgrps = argp->maxgrouplist; 540 1.21 mycroft if ((argp->flags & NFSMNT_READAHEAD) && argp->readahead >= 0 && 541 1.21 mycroft argp->readahead <= NFS_MAXRAHEAD) 542 1.21 mycroft nmp->nm_readahead = argp->readahead; 543 1.21 mycroft if ((argp->flags & NFSMNT_DEADTHRESH) && argp->deadthresh >= 1 && 544 1.169 yamt argp->deadthresh <= NFS_NEVERDEAD) 545 1.21 mycroft nmp->nm_deadthresh = argp->deadthresh; 546 1.32 pk 547 1.52 fvdl adjsock |= ((nmp->nm_sotype != argp->sotype) || 548 1.52 fvdl (nmp->nm_soproto != argp->proto)); 549 1.52 fvdl nmp->nm_sotype = argp->sotype; 550 1.52 fvdl nmp->nm_soproto = argp->proto; 551 1.52 fvdl 552 1.32 pk if (nmp->nm_so && adjsock) { 553 1.72 fvdl nfs_safedisconnect(nmp); 554 1.32 pk if (nmp->nm_sotype == SOCK_DGRAM) 555 1.151 christos while (nfs_connect(nmp, (struct nfsreq *)0, l)) { 556 1.51 christos printf("nfs_args: retrying connect\n"); 557 1.183 yamt kpause("nfscn3", false, hz, NULL); 558 1.32 pk } 559 1.32 pk } 560 1.6 pk } 561 1.6 pk 562 1.1 cgd /* 563 1.1 cgd * VFS Operations. 564 1.1 cgd * 565 1.1 cgd * mount system call 566 1.1 cgd * It seems a bit dumb to copyinstr() the host and path here and then 567 1.77 perry * memcpy() them in mountnfs(), but I wanted to detect errors before 568 1.1 cgd * doing the sockargs() call because sockargs() allocates an mbuf and 569 1.1 cgd * an error after that means that I have to release the mbuf. 570 1.1 cgd */ 571 1.1 cgd /* ARGSUSED */ 572 1.21 mycroft int 573 1.188 pooka nfs_mount(struct mount *mp, const char *path, void *data, size_t *data_len) 574 1.1 cgd { 575 1.188 pooka struct lwp *l = curlwp; 576 1.1 cgd int error; 577 1.178 dsl struct nfs_args *args = data; 578 1.1 cgd struct mbuf *nam; 579 1.118 enami struct nfsmount *nmp = VFSTONFS(mp); 580 1.118 enami struct sockaddr *sa; 581 1.1 cgd struct vnode *vp; 582 1.114 enami char *pth, *hst; 583 1.34 mycroft size_t len; 584 1.114 enami u_char *nfh; 585 1.116 christos 586 1.227 maxv if (args == NULL) 587 1.227 maxv return EINVAL; 588 1.178 dsl if (*data_len < sizeof *args) 589 1.178 dsl return EINVAL; 590 1.118 enami 591 1.116 christos if (mp->mnt_flag & MNT_GETARGS) { 592 1.118 enami 593 1.116 christos if (nmp == NULL) 594 1.118 enami return (EIO); 595 1.178 dsl if (args->addr != NULL) { 596 1.118 enami sa = mtod(nmp->nm_nam, struct sockaddr *); 597 1.178 dsl error = copyout(sa, args->addr, sa->sa_len); 598 1.118 enami if (error) 599 1.118 enami return (error); 600 1.178 dsl args->addrlen = sa->sa_len; 601 1.120 scw } else 602 1.178 dsl args->addrlen = 0; 603 1.120 scw 604 1.178 dsl args->version = NFS_ARGSVERSION; 605 1.178 dsl args->sotype = nmp->nm_sotype; 606 1.178 dsl args->proto = nmp->nm_soproto; 607 1.178 dsl args->fh = NULL; 608 1.178 dsl args->fhsize = 0; 609 1.178 dsl args->flags = nmp->nm_flag; 610 1.178 dsl args->wsize = nmp->nm_wsize; 611 1.178 dsl args->rsize = nmp->nm_rsize; 612 1.178 dsl args->readdirsize = nmp->nm_readdirsize; 613 1.178 dsl args->timeo = nmp->nm_timeo; 614 1.178 dsl args->retrans = nmp->nm_retry; 615 1.178 dsl args->maxgrouplist = nmp->nm_numgrps; 616 1.178 dsl args->readahead = nmp->nm_readahead; 617 1.178 dsl args->leaseterm = 0; /* dummy */ 618 1.178 dsl args->deadthresh = nmp->nm_deadthresh; 619 1.178 dsl args->hostname = NULL; 620 1.178 dsl *data_len = sizeof *args; 621 1.178 dsl return 0; 622 1.116 christos } 623 1.1 cgd 624 1.178 dsl if (args->version != NFS_ARGSVERSION) 625 1.43 fvdl return (EPROGMISMATCH); 626 1.178 dsl if (args->flags & (NFSMNT_NQNFS|NFSMNT_KERB)) 627 1.170 yamt return (EPROGUNAVAIL); 628 1.95 bjh21 #ifdef NFS_V2_ONLY 629 1.178 dsl if (args->flags & NFSMNT_NFSV3) 630 1.102 bjh21 return (EPROGMISMATCH); 631 1.95 bjh21 #endif 632 1.6 pk if (mp->mnt_flag & MNT_UPDATE) { 633 1.6 pk if (nmp == NULL) 634 1.21 mycroft return (EIO); 635 1.47 fvdl /* 636 1.47 fvdl * When doing an update, we can't change from or to 637 1.170 yamt * v3, or change cookie translation 638 1.47 fvdl */ 639 1.178 dsl args->flags = (args->flags & ~(NFSMNT_NFSV3|NFSMNT_XLATECOOKIE)) | 640 1.170 yamt (nmp->nm_flag & (NFSMNT_NFSV3|NFSMNT_XLATECOOKIE)); 641 1.178 dsl nfs_decode_args(nmp, args, l); 642 1.6 pk return (0); 643 1.6 pk } 644 1.178 dsl if (args->fhsize < 0 || args->fhsize > NFSX_V3FHMAX) 645 1.105 fvdl return (EINVAL); 646 1.206 cegger nfh = malloc(NFSX_V3FHMAX, M_TEMP, M_WAITOK); 647 1.178 dsl error = copyin(args->fh, nfh, args->fhsize); 648 1.41 christos if (error) 649 1.185 rmind goto free_nfh; 650 1.206 cegger pth = malloc(MNAMELEN, M_TEMP, M_WAITOK); 651 1.114 enami error = copyinstr(path, pth, MNAMELEN - 1, &len); 652 1.43 fvdl if (error) 653 1.185 rmind goto free_pth; 654 1.77 perry memset(&pth[len], 0, MNAMELEN - len); 655 1.206 cegger hst = malloc(MNAMELEN, M_TEMP, M_WAITOK); 656 1.178 dsl error = copyinstr(args->hostname, hst, MNAMELEN - 1, &len); 657 1.43 fvdl if (error) 658 1.185 rmind goto free_hst; 659 1.77 perry memset(&hst[len], 0, MNAMELEN - len); 660 1.114 enami /* sockargs() call must be after above copyin() calls */ 661 1.236 christos error = sockargs(&nam, args->addr, args->addrlen, UIO_USERSPACE, 662 1.236 christos MT_SONAME); 663 1.114 enami if (error) 664 1.114 enami goto free_hst; 665 1.122 matt MCLAIM(nam, &nfs_mowner); 666 1.178 dsl args->fh = nfh; 667 1.178 dsl error = mountnfs(args, mp, nam, pth, hst, &vp, l); 668 1.113 jdolecek 669 1.114 enami free_hst: 670 1.206 cegger free(hst, M_TEMP); 671 1.114 enami free_pth: 672 1.206 cegger free(pth, M_TEMP); 673 1.114 enami free_nfh: 674 1.206 cegger free(nfh, M_TEMP); 675 1.113 jdolecek 676 1.1 cgd return (error); 677 1.1 cgd } 678 1.1 cgd 679 1.1 cgd /* 680 1.1 cgd * Common code for mount and mountroot 681 1.1 cgd */ 682 1.21 mycroft int 683 1.209 dsl mountnfs(struct nfs_args *argp, struct mount *mp, struct mbuf *nam, const char *pth, const char *hst, struct vnode **vpp, struct lwp *l) 684 1.1 cgd { 685 1.88 augustss struct nfsmount *nmp; 686 1.1 cgd struct nfsnode *np; 687 1.201 pooka struct vnode *vp; 688 1.1 cgd int error; 689 1.113 jdolecek struct vattr *attrs; 690 1.155 elad kauth_cred_t cr; 691 1.160 christos char iosname[IOSTATNAMELEN]; 692 1.5 cgd 693 1.145 perry /* 694 1.90 tsarna * If the number of nfs iothreads to use has never 695 1.90 tsarna * been set, create a reasonable number of them. 696 1.90 tsarna */ 697 1.90 tsarna 698 1.90 tsarna if (nfs_niothreads < 0) { 699 1.184 yamt nfs_set_niothreads(NFS_DEFAULT_NIOTHREADS); 700 1.90 tsarna } 701 1.145 perry 702 1.21 mycroft if (mp->mnt_flag & MNT_UPDATE) { 703 1.21 mycroft nmp = VFSTONFS(mp); 704 1.21 mycroft /* update paths, file handles, etc, here XXX */ 705 1.21 mycroft m_freem(nam); 706 1.242 christos return 0; 707 1.21 mycroft } 708 1.242 christos nmp = kmem_zalloc(sizeof(*nmp), KM_SLEEP); 709 1.242 christos TAILQ_INIT(&nmp->nm_uidlruhead); 710 1.242 christos TAILQ_INIT(&nmp->nm_bufq); 711 1.242 christos rw_init(&nmp->nm_writeverflock); 712 1.242 christos mutex_init(&nmp->nm_lock, MUTEX_DEFAULT, IPL_NONE); 713 1.242 christos cv_init(&nmp->nm_rcvcv, "nfsrcv"); 714 1.242 christos cv_init(&nmp->nm_sndcv, "nfssnd"); 715 1.242 christos cv_init(&nmp->nm_aiocv, "nfsaio"); 716 1.242 christos cv_init(&nmp->nm_disconcv, "nfsdis"); 717 1.242 christos 718 1.242 christos mp->mnt_data = nmp; 719 1.242 christos mp->mnt_stat.f_namemax = NFS_MAXNAMLEN; 720 1.91 assar vfs_getnewfsid(mp); 721 1.1 cgd nmp->nm_mountp = mp; 722 1.61 fvdl 723 1.95 bjh21 #ifndef NFS_V2_ONLY 724 1.62 christos if ((argp->flags & NFSMNT_NFSV3) == 0) 725 1.95 bjh21 #endif 726 1.156 yamt { 727 1.156 yamt if (argp->fhsize != NFSX_V2FH) { 728 1.156 yamt return EINVAL; 729 1.156 yamt } 730 1.156 yamt } 731 1.61 fvdl 732 1.196 yamt /* 733 1.196 yamt * V2 can only handle 32 bit filesizes. For v3, nfs_fsinfo 734 1.196 yamt * will overwrite this. 735 1.196 yamt */ 736 1.196 yamt nmp->nm_maxfilesize = 0xffffffffLL; 737 1.196 yamt 738 1.21 mycroft nmp->nm_timeo = NFS_TIMEO; 739 1.1 cgd nmp->nm_retry = NFS_RETRANS; 740 1.1 cgd nmp->nm_wsize = NFS_WSIZE; 741 1.1 cgd nmp->nm_rsize = NFS_RSIZE; 742 1.43 fvdl nmp->nm_readdirsize = NFS_READDIRSIZE; 743 1.21 mycroft nmp->nm_numgrps = NFS_MAXGRPS; 744 1.21 mycroft nmp->nm_readahead = NFS_DEFRAHEAD; 745 1.169 yamt nmp->nm_deadthresh = NFS_DEFDEADTHRESH; 746 1.179 pooka error = set_statvfs_info(pth, UIO_SYSSPACE, hst, UIO_SYSSPACE, 747 1.179 pooka mp->mnt_op->vfs_name, mp, l); 748 1.125 christos if (error) 749 1.125 christos goto bad; 750 1.1 cgd nmp->nm_nam = nam; 751 1.1 cgd 752 1.1 cgd /* Set up the sockets and per-host congestion */ 753 1.1 cgd nmp->nm_sotype = argp->sotype; 754 1.1 cgd nmp->nm_soproto = argp->proto; 755 1.52 fvdl 756 1.151 christos nfs_decode_args(nmp, argp, l); 757 1.109 chs 758 1.109 chs mp->mnt_fs_bshift = ffs(MIN(nmp->nm_rsize, nmp->nm_wsize)) - 1; 759 1.109 chs mp->mnt_dev_bshift = DEV_BSHIFT; 760 1.21 mycroft 761 1.21 mycroft /* 762 1.21 mycroft * For Connection based sockets (TCP,...) defer the connect until 763 1.21 mycroft * the first request, in case the server is not responding. 764 1.21 mycroft */ 765 1.21 mycroft if (nmp->nm_sotype == SOCK_DGRAM && 766 1.151 christos (error = nfs_connect(nmp, (struct nfsreq *)0, l))) 767 1.1 cgd goto bad; 768 1.1 cgd 769 1.21 mycroft /* 770 1.21 mycroft * This is silly, but it has to be set so that vinifod() works. 771 1.136 christos * We do not want to do an nfs_statvfs() here since we can get 772 1.21 mycroft * stuck on a dead server and we are holding a lock on the mount 773 1.21 mycroft * point. 774 1.21 mycroft */ 775 1.21 mycroft mp->mnt_stat.f_iosize = NFS_MAXDGRAMDATA; 776 1.131 fvdl error = nfs_nget(mp, (nfsfh_t *)argp->fh, argp->fhsize, &np); 777 1.43 fvdl if (error) 778 1.1 cgd goto bad; 779 1.201 pooka vp = NFSTOV(np); 780 1.206 cegger attrs = malloc(sizeof(struct vattr), M_TEMP, M_WAITOK); 781 1.201 pooka VOP_GETATTR(vp, attrs, l->l_cred); 782 1.201 pooka if ((nmp->nm_flag & NFSMNT_NFSV3) && (vp->v_type == VDIR)) { 783 1.155 elad cr = kauth_cred_alloc(); 784 1.155 elad kauth_cred_setuid(cr, attrs->va_uid); 785 1.155 elad kauth_cred_seteuid(cr, attrs->va_uid); 786 1.155 elad kauth_cred_setsvuid(cr, attrs->va_uid); 787 1.155 elad kauth_cred_setgid(cr, attrs->va_gid); 788 1.155 elad kauth_cred_setegid(cr, attrs->va_gid); 789 1.155 elad kauth_cred_setsvgid(cr, attrs->va_gid); 790 1.201 pooka nfs_cookieheuristic(vp, &nmp->nm_iflag, l, cr); 791 1.155 elad kauth_cred_free(cr); 792 1.65 fvdl } 793 1.206 cegger free(attrs, M_TEMP); 794 1.1 cgd 795 1.100 fvdl /* 796 1.100 fvdl * A reference count is needed on the nfsnode representing the 797 1.100 fvdl * remote root. If this object is not persistent, then backward 798 1.100 fvdl * traversals of the mount point (i.e. "..") will not work if 799 1.100 fvdl * the nfsnode gets flushed out of the cache. Ufs does not have 800 1.100 fvdl * this problem, because one can identify root inodes by their 801 1.221 dholland * number == UFS_ROOTINO (2). So, just unlock, but no rele. 802 1.100 fvdl */ 803 1.100 fvdl 804 1.201 pooka nmp->nm_vnode = vp; 805 1.201 pooka if (vp->v_type == VNON) 806 1.201 pooka vp->v_type = VDIR; 807 1.201 pooka vp->v_vflag |= VV_ROOT; 808 1.214 hannken VOP_UNLOCK(vp); 809 1.201 pooka *vpp = vp; 810 1.100 fvdl 811 1.160 christos snprintf(iosname, sizeof(iosname), "nfs%u", nfs_mount_count++); 812 1.160 christos nmp->nm_stats = iostat_alloc(IOSTAT_NFS, nmp, iosname); 813 1.153 blymn 814 1.1 cgd return (0); 815 1.1 cgd bad: 816 1.1 cgd nfs_disconnect(nmp); 817 1.172 yamt rw_destroy(&nmp->nm_writeverflock); 818 1.177 yamt mutex_destroy(&nmp->nm_lock); 819 1.177 yamt cv_destroy(&nmp->nm_rcvcv); 820 1.177 yamt cv_destroy(&nmp->nm_sndcv); 821 1.177 yamt cv_destroy(&nmp->nm_aiocv); 822 1.177 yamt cv_destroy(&nmp->nm_disconcv); 823 1.190 yamt kmem_free(nmp, sizeof(*nmp)); 824 1.1 cgd m_freem(nam); 825 1.1 cgd return (error); 826 1.1 cgd } 827 1.1 cgd 828 1.1 cgd /* 829 1.1 cgd * unmount system call 830 1.1 cgd */ 831 1.21 mycroft int 832 1.188 pooka nfs_unmount(struct mount *mp, int mntflags) 833 1.1 cgd { 834 1.230 manu struct nfsmount *nmp = VFSTONFS(mp); 835 1.1 cgd struct vnode *vp; 836 1.1 cgd int error, flags = 0; 837 1.1 cgd 838 1.230 manu if (mntflags & MNT_FORCE) { 839 1.230 manu mutex_enter(&nmp->nm_lock); 840 1.1 cgd flags |= FORCECLOSE; 841 1.230 manu nmp->nm_iflag |= NFSMNT_DISMNTFORCE; 842 1.230 manu mutex_exit(&nmp->nm_lock); 843 1.230 manu 844 1.230 manu } 845 1.230 manu 846 1.1 cgd /* 847 1.1 cgd * Goes something like this.. 848 1.1 cgd * - Check for activity on the root vnode (other than ourselves). 849 1.1 cgd * - Call vflush() to clear out vnodes for this file system, 850 1.1 cgd * except for the root vnode. 851 1.1 cgd * - Decrement reference on the vnode representing remote root. 852 1.1 cgd * - Close the socket 853 1.1 cgd * - Free up the data structures 854 1.1 cgd */ 855 1.1 cgd /* 856 1.1 cgd * We need to decrement the ref. count on the nfsnode representing 857 1.215 hannken * the remote root. See comment in mountnfs(). 858 1.1 cgd */ 859 1.101 fvdl vp = nmp->nm_vnode; 860 1.215 hannken error = vn_lock(vp, LK_EXCLUSIVE | LK_RETRY); 861 1.101 fvdl if (error != 0) 862 1.230 manu goto err; 863 1.101 fvdl 864 1.241 ad if ((mntflags & MNT_FORCE) == 0 && vrefcnt(vp) > 1) { 865 1.215 hannken VOP_UNLOCK(vp); 866 1.230 manu error = EBUSY; 867 1.230 manu goto err; 868 1.1 cgd } 869 1.21 mycroft 870 1.43 fvdl error = vflush(mp, vp, flags); 871 1.43 fvdl if (error) { 872 1.215 hannken VOP_UNLOCK(vp); 873 1.230 manu goto err; 874 1.1 cgd } 875 1.21 mycroft 876 1.21 mycroft /* 877 1.84 sommerfe * We are now committed to the unmount; mark the mount structure 878 1.84 sommerfe * as doomed so that any sleepers kicked awake by nfs_disconnect 879 1.84 sommerfe * will go away cleanly. 880 1.21 mycroft */ 881 1.84 sommerfe nmp->nm_iflag |= NFSMNT_DISMNT; 882 1.21 mycroft 883 1.1 cgd /* 884 1.230 manu * No new async I/O will be added, but await for pending 885 1.230 manu * ones to drain. 886 1.230 manu */ 887 1.230 manu while (nfs_iodbusy(nmp)) 888 1.230 manu kpause("nfsumnt", false, hz, NULL); 889 1.230 manu 890 1.230 manu /* 891 1.153 blymn * Clean up the stats... note that we carefully avoid decrementing 892 1.153 blymn * nfs_mount_count here for good reason - we may not be unmounting 893 1.153 blymn * the last thing mounted. 894 1.153 blymn */ 895 1.153 blymn iostat_free(nmp->nm_stats); 896 1.153 blymn 897 1.153 blymn /* 898 1.215 hannken * There is one reference count to get rid of here 899 1.100 fvdl * (see comment in mountnfs()). 900 1.1 cgd */ 901 1.215 hannken VOP_UNLOCK(vp); 902 1.13 cgd vgone(vp); 903 1.1 cgd nfs_disconnect(nmp); 904 1.1 cgd m_freem(nmp->nm_nam); 905 1.21 mycroft 906 1.172 yamt rw_destroy(&nmp->nm_writeverflock); 907 1.177 yamt mutex_destroy(&nmp->nm_lock); 908 1.177 yamt cv_destroy(&nmp->nm_rcvcv); 909 1.177 yamt cv_destroy(&nmp->nm_sndcv); 910 1.177 yamt cv_destroy(&nmp->nm_aiocv); 911 1.177 yamt cv_destroy(&nmp->nm_disconcv); 912 1.190 yamt kmem_free(nmp, sizeof(*nmp)); 913 1.1 cgd return (0); 914 1.230 manu 915 1.230 manu err: 916 1.230 manu if (mntflags & MNT_FORCE) { 917 1.230 manu mutex_enter(&nmp->nm_lock); 918 1.230 manu nmp->nm_iflag &= ~NFSMNT_DISMNTFORCE; 919 1.230 manu mutex_exit(&nmp->nm_lock); 920 1.230 manu } 921 1.230 manu 922 1.230 manu return error; 923 1.1 cgd } 924 1.1 cgd 925 1.1 cgd /* 926 1.1 cgd * Return root of a filesystem 927 1.1 cgd */ 928 1.21 mycroft int 929 1.238 ad nfs_root(struct mount *mp, int lktype, struct vnode **vpp) 930 1.1 cgd { 931 1.88 augustss struct vnode *vp; 932 1.1 cgd struct nfsmount *nmp; 933 1.1 cgd int error; 934 1.1 cgd 935 1.1 cgd nmp = VFSTONFS(mp); 936 1.101 fvdl vp = nmp->nm_vnode; 937 1.215 hannken vref(vp); 938 1.238 ad error = vn_lock(vp, lktype | LK_RETRY); 939 1.215 hannken if (error != 0) { 940 1.215 hannken vrele(vp); 941 1.101 fvdl return error; 942 1.215 hannken } 943 1.1 cgd *vpp = vp; 944 1.1 cgd return (0); 945 1.1 cgd } 946 1.1 cgd 947 1.21 mycroft extern int syncprt; 948 1.21 mycroft 949 1.228 christos static bool 950 1.228 christos nfs_sync_selector(void *cl, struct vnode *vp) 951 1.228 christos { 952 1.228 christos 953 1.233 riastrad KASSERT(mutex_owned(vp->v_interlock)); 954 1.233 riastrad 955 1.239 ad return !LIST_EMPTY(&vp->v_dirtyblkhd) || 956 1.239 ad (vp->v_iflag & VI_ONWORKLST) != 0; 957 1.228 christos } 958 1.228 christos 959 1.1 cgd /* 960 1.1 cgd * Flush out the buffer cache 961 1.1 cgd */ 962 1.1 cgd /* ARGSUSED */ 963 1.21 mycroft int 964 1.208 dsl nfs_sync(struct mount *mp, int waitfor, kauth_cred_t cred) 965 1.1 cgd { 966 1.225 hannken struct vnode *vp; 967 1.225 hannken struct vnode_iterator *marker; 968 1.21 mycroft int error, allerror = 0; 969 1.21 mycroft 970 1.1 cgd /* 971 1.1 cgd * Force stale buffer cache information to be flushed. 972 1.1 cgd */ 973 1.225 hannken vfs_vnode_iterator_init(mp, &marker); 974 1.228 christos while ((vp = vfs_vnode_iterator_next(marker, nfs_sync_selector, 975 1.228 christos NULL))) 976 1.228 christos { 977 1.225 hannken error = vn_lock(vp, LK_EXCLUSIVE); 978 1.225 hannken if (error) { 979 1.225 hannken vrele(vp); 980 1.189 ad continue; 981 1.225 hannken } 982 1.73 kleink error = VOP_FSYNC(vp, cred, 983 1.188 pooka waitfor == MNT_WAIT ? FSYNC_WAIT : 0, 0, 0); 984 1.43 fvdl if (error) 985 1.21 mycroft allerror = error; 986 1.21 mycroft vput(vp); 987 1.21 mycroft } 988 1.225 hannken vfs_vnode_iterator_destroy(marker); 989 1.225 hannken return allerror; 990 1.21 mycroft } 991 1.21 mycroft 992 1.21 mycroft /* 993 1.21 mycroft * NFS flat namespace lookup. 994 1.21 mycroft * Currently unsupported. 995 1.21 mycroft */ 996 1.21 mycroft /* ARGSUSED */ 997 1.21 mycroft int 998 1.238 ad nfs_vget(struct mount *mp, ino_t ino, int lktype, struct vnode **vpp) 999 1.21 mycroft { 1000 1.21 mycroft 1001 1.21 mycroft return (EOPNOTSUPP); 1002 1.1 cgd } 1003 1.43 fvdl 1004 1.43 fvdl /* 1005 1.43 fvdl * Do that sysctl thang... 1006 1.43 fvdl */ 1007 1.134 atatat static int 1008 1.134 atatat sysctl_vfs_nfs_iothreads(SYSCTLFN_ARGS) 1009 1.43 fvdl { 1010 1.184 yamt struct sysctlnode node; 1011 1.184 yamt int val; 1012 1.134 atatat int error; 1013 1.43 fvdl 1014 1.184 yamt val = nfs_niothreads; 1015 1.184 yamt node = *rnode; 1016 1.184 yamt node.sysctl_data = &val; 1017 1.184 yamt error = sysctl_lookup(SYSCTLFN_CALL(&node)); 1018 1.134 atatat if (error || newp == NULL) 1019 1.184 yamt return error; 1020 1.43 fvdl 1021 1.184 yamt return nfs_set_niothreads(val); 1022 1.134 atatat } 1023 1.43 fvdl 1024 1.240 pgoyette SYSCTL_SETUP(nfs_sysctl_init, "nfs sysctl") 1025 1.134 atatat { 1026 1.43 fvdl 1027 1.240 pgoyette sysctl_createv(clog, 0, NULL, NULL, 1028 1.135 atatat CTLFLAG_PERMANENT, 1029 1.139 atatat CTLTYPE_NODE, "nfs", 1030 1.139 atatat SYSCTL_DESCR("NFS vfs options"), 1031 1.134 atatat NULL, 0, NULL, 0, 1032 1.134 atatat CTL_VFS, 2, CTL_EOL); 1033 1.134 atatat /* 1034 1.134 atatat * XXX the "2" above could be dynamic, thereby eliminating one 1035 1.134 atatat * more instance of the "number to vfs" mapping problem, but 1036 1.134 atatat * "2" is the order as taken from sys/mount.h 1037 1.134 atatat */ 1038 1.134 atatat 1039 1.240 pgoyette sysctl_createv(clog, 0, NULL, NULL, 1040 1.135 atatat CTLFLAG_PERMANENT|CTLFLAG_READWRITE, 1041 1.139 atatat CTLTYPE_STRUCT, "nfsstats", 1042 1.139 atatat SYSCTL_DESCR("NFS operation statistics"), 1043 1.145 perry NULL, 0, &nfsstats, sizeof(nfsstats), 1044 1.134 atatat CTL_VFS, 2, NFS_NFSSTATS, CTL_EOL); 1045 1.240 pgoyette sysctl_createv(clog, 0, NULL, NULL, 1046 1.135 atatat CTLFLAG_PERMANENT|CTLFLAG_READWRITE, 1047 1.139 atatat CTLTYPE_INT, "iothreads", 1048 1.139 atatat SYSCTL_DESCR("Number of NFS client processes desired"), 1049 1.184 yamt sysctl_vfs_nfs_iothreads, 0, NULL, 0, 1050 1.134 atatat CTL_VFS, 2, NFS_IOTHREADS, CTL_EOL); 1051 1.43 fvdl } 1052 1.1 cgd 1053 1.1 cgd /* ARGSUSED */ 1054 1.21 mycroft int 1055 1.238 ad nfs_fhtovp(struct mount *mp, struct fid *fid, int lktype, struct vnode **vpp) 1056 1.81 wrstuden { 1057 1.163 yamt size_t fidsize; 1058 1.163 yamt size_t fhsize; 1059 1.163 yamt struct nfsnode *np; 1060 1.163 yamt int error; 1061 1.164 yamt struct vattr va; 1062 1.81 wrstuden 1063 1.163 yamt fidsize = fid->fid_len; 1064 1.163 yamt if (fidsize < sizeof(*fid)) { 1065 1.163 yamt return EINVAL; 1066 1.163 yamt } 1067 1.163 yamt fhsize = fidsize - sizeof(*fid); 1068 1.163 yamt if ((fhsize % NFSX_UNSIGNED) != 0) { 1069 1.163 yamt return EINVAL; 1070 1.163 yamt } 1071 1.163 yamt if ((VFSTONFS(mp)->nm_flag & NFSMNT_NFSV3) != 0) { 1072 1.163 yamt if (fhsize > NFSX_V3FHMAX || fhsize == 0) { 1073 1.163 yamt return EINVAL; 1074 1.163 yamt } 1075 1.163 yamt } else { 1076 1.163 yamt if (fhsize != NFSX_V2FH) { 1077 1.163 yamt return EINVAL; 1078 1.163 yamt } 1079 1.163 yamt } 1080 1.238 ad /* XXX lktype ignored */ 1081 1.163 yamt error = nfs_nget(mp, (void *)fid->fid_data, fhsize, &np); 1082 1.163 yamt if (error) { 1083 1.163 yamt return error; 1084 1.163 yamt } 1085 1.163 yamt *vpp = NFSTOV(np); 1086 1.188 pooka error = VOP_GETATTR(*vpp, &va, kauth_cred_get()); 1087 1.164 yamt if (error != 0) { 1088 1.164 yamt vput(*vpp); 1089 1.217 pooka *vpp = NULLVP; 1090 1.164 yamt } 1091 1.164 yamt return error; 1092 1.81 wrstuden } 1093 1.81 wrstuden 1094 1.1 cgd /* ARGSUSED */ 1095 1.21 mycroft int 1096 1.163 yamt nfs_vptofh(struct vnode *vp, struct fid *buf, size_t *bufsize) 1097 1.1 cgd { 1098 1.163 yamt struct nfsnode *np; 1099 1.163 yamt struct fid *fid; 1100 1.163 yamt size_t fidsize; 1101 1.163 yamt int error = 0; 1102 1.1 cgd 1103 1.163 yamt np = VTONFS(vp); 1104 1.163 yamt fidsize = sizeof(*fid) + np->n_fhsize; 1105 1.163 yamt if (*bufsize < fidsize) { 1106 1.163 yamt error = E2BIG; 1107 1.163 yamt } 1108 1.163 yamt *bufsize = fidsize; 1109 1.163 yamt if (error == 0) { 1110 1.163 yamt struct fid fid_store; 1111 1.163 yamt 1112 1.163 yamt fid = &fid_store; 1113 1.163 yamt memset(fid, 0, sizeof(*fid)); 1114 1.163 yamt fid->fid_len = fidsize; 1115 1.163 yamt memcpy(buf, fid, sizeof(*fid)); 1116 1.163 yamt memcpy(buf->fid_data, np->n_fhp, np->n_fhsize); 1117 1.163 yamt } 1118 1.163 yamt return error; 1119 1.1 cgd } 1120 1.1 cgd 1121 1.1 cgd /* 1122 1.1 cgd * Vfs start routine, a no-op. 1123 1.1 cgd */ 1124 1.1 cgd /* ARGSUSED */ 1125 1.21 mycroft int 1126 1.188 pooka nfs_start(struct mount *mp, int flags) 1127 1.1 cgd { 1128 1.1 cgd 1129 1.1 cgd return (0); 1130 1.1 cgd } 1131 1.211 pooka 1132 1.211 pooka /* 1133 1.211 pooka * Called once at VFS init to initialize client-specific data structures. 1134 1.211 pooka */ 1135 1.211 pooka void 1136 1.211 pooka nfs_vfs_init(void) 1137 1.211 pooka { 1138 1.244 mlelstv unsigned scale; 1139 1.211 pooka 1140 1.211 pooka /* Initialize NFS server / client shared data. */ 1141 1.211 pooka nfs_init(); 1142 1.211 pooka nfs_node_init(); 1143 1.211 pooka 1144 1.211 pooka /* Initialize the kqueue structures */ 1145 1.211 pooka nfs_kqinit(); 1146 1.211 pooka /* Initialize the iod structures */ 1147 1.211 pooka nfs_iodinit(); 1148 1.211 pooka 1149 1.244 mlelstv scale = PAGE_SHIFT - 4; 1150 1.244 mlelstv nfs_commitsize = uimin(uvmexp.npages, INT_MAX >> scale) << scale; 1151 1.211 pooka } 1152 1.211 pooka 1153 1.211 pooka void 1154 1.211 pooka nfs_vfs_done(void) 1155 1.211 pooka { 1156 1.211 pooka 1157 1.211 pooka nfs_node_done(); 1158 1.211 pooka nfs_kqfini(); 1159 1.211 pooka nfs_iodfini(); 1160 1.231 pgoyette nfs_fini(); 1161 1.211 pooka } 1162