2 * Copyright (c) 1999, 2000 Boris Popov
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by Boris Popov.
16 * 4. Neither the name of the author nor the names of any co-contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * $FreeBSD: src/sys/nwfs/nwfs_vfsops.c,v 1.6.2.6 2001/10/25 19:18:54 dillon Exp $
36 #error "NWFS requires NCP protocol"
39 #include <sys/param.h>
40 #include <sys/systm.h>
42 #include <sys/kernel.h>
43 #include <sys/sysctl.h>
44 #include <sys/vnode.h>
45 #include <sys/mount.h>
47 #include <sys/malloc.h>
50 #include <netncp/ncp.h>
51 #include <netncp/ncp_conn.h>
52 #include <netncp/ncp_subr.h>
53 #include <netncp/ncp_ncp.h>
54 #include <netncp/ncp_nls.h>
56 #include <nwfs/nwfs.h>
57 #include <nwfs/nwfs_node.h>
58 #include <nwfs/nwfs_subr.h>
60 int nwfs_debuglevel = 0;
62 static int nwfs_version = NWFS_VERSION;
64 SYSCTL_DECL(_vfs_nwfs);
65 SYSCTL_NODE(_vfs, OID_AUTO, nwfs, CTLFLAG_RW, 0, "Netware file system");
66 SYSCTL_INT(_vfs_nwfs, OID_AUTO, version, CTLFLAG_RD, &nwfs_version, 0, "");
67 SYSCTL_INT(_vfs_nwfs, OID_AUTO, debuglevel, CTLFLAG_RW, &nwfs_debuglevel, 0, "");
69 static int nwfs_mount(struct mount *, char *, caddr_t,
70 struct nameidata *, struct proc *);
71 static int nwfs_quotactl(struct mount *, int, uid_t, caddr_t, struct proc *);
72 static int nwfs_root(struct mount *, struct vnode **);
73 static int nwfs_start(struct mount *, int, struct proc *);
74 static int nwfs_statfs(struct mount *, struct statfs *, struct proc *);
75 static int nwfs_sync(struct mount *, int, struct ucred *, struct proc *);
76 static int nwfs_unmount(struct mount *, int, struct proc *);
77 static int nwfs_init(struct vfsconf *vfsp);
78 static int nwfs_uninit(struct vfsconf *vfsp);
80 static struct vfsops nwfs_vfsops = {
89 vfs_stdfhtovp, /* shouldn't happen */
91 vfs_stdvptofh, /* shouldn't happen */
98 VFS_SET(nwfs_vfsops, nwfs, VFCF_NETWORK);
100 int nwfs_pbuf_freecnt = -1; /* start out unlimited */
101 static int nwfsid = 1;
104 nwfs_initnls(struct nwmount *nmp) {
107 #define COPY_TABLE(t,d) { \
109 error = copyin((t), pc, 256); \
113 (t) = pc; pc += 256; \
116 nmp->m.nls.opt |= NWHP_NLS | NWHP_DOS;
117 if ((nmp->m.flags & NWFS_MOUNT_HAVE_NLS) == 0) {
118 nmp->m.nls.to_lower = ncp_defnls.to_lower;
119 nmp->m.nls.to_upper = ncp_defnls.to_upper;
120 nmp->m.nls.n2u = ncp_defnls.n2u;
121 nmp->m.nls.u2n = ncp_defnls.u2n;
124 MALLOC(pe, char *, 256 * 4, M_NWFSDATA, M_WAITOK);
127 COPY_TABLE(nmp->m.nls.to_lower, ncp_defnls.to_lower);
128 COPY_TABLE(nmp->m.nls.to_upper, ncp_defnls.to_upper);
129 COPY_TABLE(nmp->m.nls.n2u, ncp_defnls.n2u);
130 COPY_TABLE(nmp->m.nls.u2n, ncp_defnls.u2n);
133 free(pe, M_NWFSDATA);
139 * mp - path - addr in user space of mount point (ie /usr or whatever)
140 * data - addr in user space of mount params
142 static int nwfs_mount(struct mount *mp, char *path, caddr_t data,
143 struct nameidata *ndp, struct proc *p)
145 struct nwfs_args args; /* will hold data from mount request */
148 struct nwmount *nmp = NULL;
149 struct ncp_conn *conn = NULL;
150 struct ncp_handle *handle = NULL;
155 nwfs_printf("missing data argument\n");
158 if (mp->mnt_flag & MNT_UPDATE) {
159 nwfs_printf("MNT_UPDATE not implemented");
162 error = copyin(data, (caddr_t)&args, sizeof(struct nwfs_args));
165 if (args.version != NWFS_VERSION) {
166 nwfs_printf("mount version mismatch: kernel=%d, mount=%d\n",NWFS_VERSION,args.version);
169 error = ncp_conn_getbyref(args.connRef,p,p->p_ucred,NCPM_EXECUTE,&conn);
171 nwfs_printf("invalid connection refernce %d\n",args.connRef);
174 error = ncp_conn_gethandle(conn, NULL, &handle);
176 nwfs_printf("can't get connection handle\n");
179 ncp_conn_unlock(conn,p); /* we keep the ref */
180 mp->mnt_stat.f_iosize = conn->buffer_size;
181 /* We must malloc our own mount info */
182 MALLOC(nmp,struct nwmount *,sizeof(struct nwmount),M_NWFSDATA,M_USE_RESERVE | M_ZERO);
184 nwfs_printf("could not alloc nwmount\n");
188 mp->mnt_data = (qaddr_t)nmp;
191 nmp->n_id = nwfsid++;
193 nmp->m.file_mode = (nmp->m.file_mode &
194 (S_IRWXU|S_IRWXG|S_IRWXO)) | S_IFREG;
195 nmp->m.dir_mode = (nmp->m.dir_mode &
196 (S_IRWXU|S_IRWXG|S_IRWXO)) | S_IFDIR;
197 if ((error = nwfs_initnls(nmp)) != 0) goto bad;
198 (void) copyinstr(path, mp->mnt_stat.f_mntonname, MNAMELEN - 1, &size);
199 bzero(mp->mnt_stat.f_mntonname + size, MNAMELEN - size);
200 pc = mp->mnt_stat.f_mntfromname;
201 pe = pc+sizeof(mp->mnt_stat.f_mntfromname);
204 pc = index(strncpy(pc, conn->li.server, pe-pc-2),0);
207 pc=index(strncpy(pc, conn->li.user, pe-pc-2),0);
210 strncpy(pc, nmp->m.mounted_vol, pe-pc-2);
213 /* protect against invalid mount points */
214 nmp->m.mount_point[sizeof(nmp->m.mount_point)-1] = '\0';
216 error = nwfs_root(mp, &vp);
220 * Lose the lock but keep the ref.
222 VOP_UNLOCK(vp, 0, curproc);
223 NCPVODEBUG("rootvp.vrefcnt=%d\n",vp->v_usecount);
227 free(nmp, M_NWFSDATA);
229 ncp_conn_puthandle(handle, NULL, 0);
233 /* Unmount the filesystem described by mp. */
235 nwfs_unmount(struct mount *mp, int mntflags, struct proc *p)
237 struct nwmount *nmp = VFSTONWFS(mp);
238 struct ncp_conn *conn;
241 NCPVODEBUG("nwfs_unmount: flags=%04x\n",mntflags);
243 if (mntflags & MNT_FORCE)
245 /* There is 1 extra root vnode reference from nwfs_mount(). */
246 error = vflush(mp, 1, flags);
249 conn = NWFSTOCONN(nmp);
250 ncp_conn_puthandle(nmp->connh,NULL,0);
251 if (ncp_conn_lock(conn,p,p->p_ucred,NCPM_WRITE | NCPM_EXECUTE) == 0) {
252 if(ncp_disconnect(conn))
253 ncp_conn_unlock(conn,p);
255 mp->mnt_data = (qaddr_t)0;
256 if (nmp->m.flags & NWFS_MOUNT_HAVE_NLS)
257 free(nmp->m.nls.to_lower, M_NWFSDATA);
258 free(nmp, M_NWFSDATA);
259 mp->mnt_flag &= ~MNT_LOCAL;
263 /* Return locked vnode to root of a filesystem */
265 nwfs_root(struct mount *mp, struct vnode **vpp) {
269 struct ncp_conn *conn;
270 struct nw_entry_info fattr;
271 struct proc *p = curproc;
272 struct ucred *cred = p->p_ucred;
277 conn = NWFSTOCONN(nmp);
279 *vpp = NWTOV(nmp->n_root);
280 while (vget(*vpp, LK_EXCLUSIVE, curproc) != 0)
284 error = ncp_lookup_volume(conn, nmp->m.mounted_vol, &vol,
285 &nmp->n_rootent.f_id, p, cred);
289 error = ncp_get_namespaces(conn, vol, &nsf, p, cred);
292 if (nsf & NW_NSB_OS2) {
293 NCPVODEBUG("volume %s has os2 namespace\n",nmp->m.mounted_vol);
294 if ((nmp->m.flags & NWFS_MOUNT_NO_OS2) == 0) {
295 nmp->name_space = NW_NS_OS2;
296 nmp->m.nls.opt &= ~NWHP_DOS;
299 opt = nmp->m.nls.opt;
300 nsf = opt & (NWHP_UPPER | NWHP_LOWER);
301 if (opt & NWHP_DOS) {
302 if (nsf == (NWHP_UPPER | NWHP_LOWER)) {
303 nmp->m.nls.opt &= ~(NWHP_LOWER | NWHP_UPPER);
304 } else if (nsf == 0) {
305 nmp->m.nls.opt |= NWHP_LOWER;
308 if (nsf == (NWHP_UPPER | NWHP_LOWER)) {
309 nmp->m.nls.opt &= ~(NWHP_LOWER | NWHP_UPPER);
312 if (nmp->m.root_path[0]) {
313 nmp->m.root_path[0]--;
314 error = ncp_obtain_info(nmp, nmp->n_rootent.f_id,
315 -nmp->m.root_path[0], nmp->m.root_path, &fattr, p, cred);
317 NCPFATAL("Invalid root path specified\n");
320 nmp->n_rootent.f_parent = fattr.dirEntNum;
321 nmp->m.root_path[0]++;
322 error = ncp_obtain_info(nmp, nmp->n_rootent.f_id,
323 -nmp->m.root_path[0], nmp->m.root_path, &fattr, p, cred);
325 NCPFATAL("Invalid root path specified\n");
328 nmp->n_rootent.f_id = fattr.dirEntNum;
330 error = ncp_obtain_info(nmp, nmp->n_rootent.f_id,
331 0, NULL, &fattr, p, cred);
333 NCPFATAL("Can't obtain volume info\n");
336 fattr.nameLen = strlen(strcpy(fattr.entryName, NWFS_ROOTVOL));
337 nmp->n_rootent.f_parent = nmp->n_rootent.f_id;
339 error = nwfs_nget(mp, nmp->n_rootent, &fattr, NULL, &vp);
344 if (nmp->m.root_path[0] == 0)
345 np->n_flag |= NVOLUME;
347 /* error = VOP_GETATTR(vp, &vattr, cred, p);
350 NCPFATAL("Can't get root directory entry\n");
358 * Vfs start routine, a no-op.
362 nwfs_start(mp, flags, p)
367 NCPVODEBUG("flags=%04x\n",flags);
372 * Do operations associated with quotas, not supported
376 nwfs_quotactl(mp, cmd, uid, arg, p)
383 NCPVODEBUG("return EOPNOTSUPP\n");
389 nwfs_init(struct vfsconf *vfsp)
393 int olen, ncpu, plen, error;
397 error = kernel_sysctl(curproc, name, 2, &ncpu, &olen, NULL, 0, &plen);
398 if (error == 0 && ncpu > 1)
399 printf("warning: nwfs module compiled without SMP support.");
402 nwfs_pbuf_freecnt = nswbuf / 2 + 1;
403 NCPVODEBUG("always happy to load!\n");
409 nwfs_uninit(struct vfsconf *vfsp)
413 NCPVODEBUG("unloaded\n");
421 nwfs_statfs(mp, sbp, p)
426 struct nwmount *nmp = VFSTONWFS(mp);
427 int error = 0, secsize;
428 struct nwnode *np = nmp->n_root;
429 struct ncp_volume_info vi;
431 if (np == NULL) return EINVAL;
432 error = ncp_get_volume_info_with_number(NWFSTOCONN(nmp), nmp->n_volume, &vi,p,p->p_ucred);
433 if (error) return error;
434 secsize = 512; /* XXX how to get real value ??? */
435 sbp->f_spare2=0; /* placeholder */
436 /* fundamental file system block size */
437 sbp->f_bsize = vi.sectors_per_block*secsize;
438 /* optimal transfer block size */
439 sbp->f_iosize = NWFSTOCONN(nmp)->buffer_size;
440 /* total data blocks in file system */
441 sbp->f_blocks= vi.total_blocks;
442 /* free blocks in fs */
443 sbp->f_bfree = vi.free_blocks + vi.purgeable_blocks;
444 /* free blocks avail to non-superuser */
445 sbp->f_bavail= vi.free_blocks+vi.purgeable_blocks;
446 /* total file nodes in file system */
447 sbp->f_files = vi.total_dir_entries;
448 /* free file nodes in fs */
449 sbp->f_ffree = vi.available_dir_entries;
450 sbp->f_flags = 0; /* copy of mount exported flags */
451 if (sbp != &mp->mnt_stat) {
452 sbp->f_fsid = mp->mnt_stat.f_fsid; /* file system id */
453 sbp->f_owner = mp->mnt_stat.f_owner; /* user that mounted the filesystem */
454 sbp->f_type = mp->mnt_vfc->vfc_typenum; /* type of filesystem */
455 bcopy(mp->mnt_stat.f_mntonname, sbp->f_mntonname, MNAMELEN);
456 bcopy(mp->mnt_stat.f_mntfromname, sbp->f_mntfromname, MNAMELEN);
458 strncpy(sbp->f_fstypename, mp->mnt_vfc->vfc_name, MFSNAMELEN);
463 * Flush out the buffer cache
467 nwfs_sync(mp, waitfor, cred, p)
474 int error, allerror = 0;
476 * Force stale buffer cache information to be flushed.
479 for (vp = TAILQ_FIRST(&mp->mnt_nvnodelist);
481 vp = TAILQ_NEXT(vp, v_nmntvnodes)) {
483 * If the vnode that we are about to sync is no longer
484 * associated with this mount point, start over.
486 if (vp->v_mount != mp)
488 if (VOP_ISLOCKED(vp, NULL) || TAILQ_EMPTY(&vp->v_dirtyblkhd) ||
491 if (vget(vp, LK_EXCLUSIVE, p))
493 error = VOP_FSYNC(vp, cred, waitfor, p);