kernel - remove bounds on buffer cache nbuf count for 64-bit
[dragonfly.git] / sys / vfs / nwfs / nwfs_vfsops.c
1 /*
2  * Copyright (c) 1999, 2000 Boris Popov
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
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.
19  *
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
30  * SUCH DAMAGE.
31  *
32  * $FreeBSD: src/sys/nwfs/nwfs_vfsops.c,v 1.6.2.6 2001/10/25 19:18:54 dillon Exp $
33  */
34
35 #ifndef KLD_MODULE
36 #include "opt_ncp.h"
37 #ifndef NCP
38 #error "NWFS requires NCP protocol"
39 #endif
40 #endif
41
42 #include <sys/param.h>
43 #include <sys/systm.h>
44 #include <sys/proc.h>
45 #include <sys/kernel.h>
46 #include <sys/sysctl.h>
47 #include <sys/vnode.h>
48 #include <sys/mount.h>
49 #include <sys/stat.h>
50 #include <sys/malloc.h>
51 #include <sys/buf.h>
52
53 #include <netproto/ncp/ncp.h>
54 #include <netproto/ncp/ncp_conn.h>
55 #include <netproto/ncp/ncp_subr.h>
56 #include <netproto/ncp/ncp_ncp.h>
57 #include <netproto/ncp/ncp_nls.h>
58
59 #include "nwfs.h"
60 #include "nwfs_node.h"
61 #include "nwfs_subr.h"
62
63 extern struct vop_ops nwfs_vnode_vops;
64
65 int nwfs_debuglevel = 0;
66
67 static int nwfs_version = NWFS_VERSION;
68
69 SYSCTL_DECL(_vfs_nwfs);
70 SYSCTL_NODE(_vfs, OID_AUTO, nwfs, CTLFLAG_RW, 0, "Netware file system");
71 SYSCTL_INT(_vfs_nwfs, OID_AUTO, version, CTLFLAG_RD, &nwfs_version, 0, "");
72 SYSCTL_INT(_vfs_nwfs, OID_AUTO, debuglevel, CTLFLAG_RW, &nwfs_debuglevel, 0, "");
73
74 static int nwfs_mount(struct mount *, char *, caddr_t, struct ucred *);
75 static int nwfs_root(struct mount *, struct vnode **);
76 static int nwfs_statfs(struct mount *, struct statfs *, struct ucred *);
77 static int nwfs_sync(struct mount *, int);
78 static int nwfs_unmount(struct mount *, int);
79 static int nwfs_init(struct vfsconf *vfsp);
80 static int nwfs_uninit(struct vfsconf *vfsp);
81
82 static struct vfsops nwfs_vfsops = {
83         .vfs_mount =            nwfs_mount,
84         .vfs_unmount =          nwfs_unmount,
85         .vfs_root =             nwfs_root,
86         .vfs_statfs =           nwfs_statfs,
87         .vfs_sync =             nwfs_sync,
88         .vfs_init =             nwfs_init,
89         .vfs_uninit =           nwfs_uninit
90 };
91
92
93 VFS_SET(nwfs_vfsops, nwfs, VFCF_NETWORK);
94 MODULE_VERSION(nwfs, 1);
95 MODULE_DEPEND(nwfs, ncp, 1, 1, 1);
96
97 long nwfs_pbuf_freecnt = -1;    /* start out unlimited */
98 static int nwfsid = 1;
99
100 static int
101 nwfs_initnls(struct nwmount *nmp) {
102         char    *pc, *pe;
103         int     error = 0;
104 #define COPY_TABLE(t,d) { \
105                 if (t) { \
106                         error = copyin((t), pc, 256); \
107                         if (error) break; \
108                 } else \
109                         bcopy(d, pc, 256); \
110                 (t) = pc; pc += 256; \
111         }
112
113         nmp->m.nls.opt |= NWHP_NLS | NWHP_DOS;
114         if ((nmp->m.flags & NWFS_MOUNT_HAVE_NLS) == 0) {
115                 nmp->m.nls.to_lower = ncp_defnls.to_lower;
116                 nmp->m.nls.to_upper = ncp_defnls.to_upper;
117                 nmp->m.nls.n2u = ncp_defnls.n2u;
118                 nmp->m.nls.u2n = ncp_defnls.u2n;
119                 return 0;
120         }
121         pe = kmalloc(256 * 4, M_NWFSDATA, M_WAITOK);
122         pc = pe;
123         do {
124                 COPY_TABLE(nmp->m.nls.to_lower, ncp_defnls.to_lower);
125                 COPY_TABLE(nmp->m.nls.to_upper, ncp_defnls.to_upper);
126                 COPY_TABLE(nmp->m.nls.n2u, ncp_defnls.n2u);
127                 COPY_TABLE(nmp->m.nls.u2n, ncp_defnls.u2n);
128         } while(0);
129         if (error) {
130                 kfree(pe, M_NWFSDATA);
131                 return error;
132         }
133         return 0;
134 }
135 /*
136  * mp - path - addr in user space of mount point (ie /usr or whatever)
137  * data - addr in user space of mount params 
138  */
139 static int
140 nwfs_mount(struct mount *mp, char *path, caddr_t data, struct ucred *cred)
141 {
142         struct nwfs_args args;    /* will hold data from mount request */
143         int error;
144         struct nwmount *nmp = NULL;
145         struct ncp_conn *conn = NULL;
146         struct ncp_handle *handle = NULL;
147         struct vnode *vp;
148         char *pc,*pe;
149
150         if (data == NULL) {
151                 nwfs_printf("missing data argument\n");
152                 return 1;
153         }
154         if (mp->mnt_flag & MNT_UPDATE) {
155                 nwfs_printf("MNT_UPDATE not implemented");
156                 return (EOPNOTSUPP);
157         }
158         error = copyin(data, (caddr_t)&args, sizeof(struct nwfs_args));
159         if (error)
160                 return (error);
161         if (args.version != NWFS_VERSION) {
162                 nwfs_printf("mount version mismatch: kernel=%d, mount=%d\n",NWFS_VERSION,args.version);
163                 return (1);
164         }
165         error = ncp_conn_getbyref(args.connRef,curthread,cred,NCPM_EXECUTE,&conn);
166         if (error) {
167                 nwfs_printf("invalid connection reference %d\n",args.connRef);
168                 return (error);
169         }
170         error = ncp_conn_gethandle(conn, NULL, &handle);
171         if (error) {
172                 nwfs_printf("can't get connection handle\n");
173                 return (error);
174         }
175         ncp_conn_unlock(conn,curthread);        /* we keep the ref */
176         mp->mnt_stat.f_iosize = conn->buffer_size;
177         /* We must malloc our own mount info */
178         nmp = kmalloc(sizeof(struct nwmount), M_NWFSDATA,
179                       M_WAITOK | M_USE_RESERVE | M_ZERO);
180         mp->mnt_data = (qaddr_t)nmp;
181         nmp->connh = handle;
182         nmp->n_root = NULL;
183         nmp->n_id = nwfsid++;
184         nmp->m = args;
185         nmp->m.file_mode = (nmp->m.file_mode &
186                             (S_IRWXU|S_IRWXG|S_IRWXO)) | S_IFREG;
187         nmp->m.dir_mode  = (nmp->m.dir_mode &
188                             (S_IRWXU|S_IRWXG|S_IRWXO)) | S_IFDIR;
189         if ((error = nwfs_initnls(nmp)) != 0) goto bad;
190         pc = mp->mnt_stat.f_mntfromname;
191         pe = pc+sizeof(mp->mnt_stat.f_mntfromname);
192         bzero(pc, MNAMELEN);
193         *(pc++) = '/';
194         pc = index(strncpy(pc, conn->li.server, pe-pc-2),0);
195         if (pc < pe-1) {
196                 *(pc++) = ':';
197                 pc=index(strncpy(pc, conn->li.user, pe-pc-2),0);
198                 if (pc < pe-1) {
199                         *(pc++) = '/';
200                         strncpy(pc, nmp->m.mounted_vol, pe-pc-2);
201                 }
202         }
203         /* protect against invalid mount points */
204         nmp->m.mount_point[sizeof(nmp->m.mount_point)-1] = '\0';
205
206         vfs_add_vnodeops(mp, &nwfs_vnode_vops, &mp->mnt_vn_norm_ops);
207
208         vfs_getnewfsid(mp);
209         error = nwfs_root(mp, &vp);
210         if (error)
211                 goto bad;
212         /*
213          * Lose the lock but keep the ref.
214          */
215         vn_unlock(vp);
216         NCPVODEBUG("rootvp.vrefcnt=%d\n",vp->v_sysref.refcnt);
217         return error;
218 bad:
219         if (nmp)
220                 kfree(nmp, M_NWFSDATA);
221         if (handle)
222                 ncp_conn_puthandle(handle, NULL, 0);
223         return error;
224 }
225
226 /* Unmount the filesystem described by mp. */
227 static int
228 nwfs_unmount(struct mount *mp, int mntflags)
229 {
230         struct nwmount *nmp = VFSTONWFS(mp);
231         struct ncp_conn *conn;
232         int error, flags;
233
234         NCPVODEBUG("nwfs_unmount: flags=%04x\n",mntflags);
235         flags = 0;
236         if (mntflags & MNT_FORCE)
237                 flags |= FORCECLOSE;
238         /* There is 1 extra root vnode reference from nwfs_mount(). */
239         error = vflush(mp, 1, flags);
240         if (error)
241                 return (error);
242         conn = NWFSTOCONN(nmp);
243         ncp_conn_puthandle(nmp->connh,NULL,0);
244         if (ncp_conn_lock(conn, curthread, proc0.p_ucred, NCPM_WRITE | NCPM_EXECUTE) == 0) {
245                 if(ncp_disconnect(conn))
246                         ncp_conn_unlock(conn, curthread);
247         }
248         mp->mnt_data = (qaddr_t)0;
249         if (nmp->m.flags & NWFS_MOUNT_HAVE_NLS)
250                 kfree(nmp->m.nls.to_lower, M_NWFSDATA);
251         kfree(nmp, M_NWFSDATA);
252         mp->mnt_flag &= ~MNT_LOCAL;
253         return (error);
254 }
255
256 /*  Return locked vnode to root of a filesystem */
257 static int
258 nwfs_root(struct mount *mp, struct vnode **vpp)
259 {
260         struct vnode *vp;
261         struct nwmount *nmp;
262         struct nwnode *np;
263         struct ncp_conn *conn;
264         struct nw_entry_info fattr;
265         struct thread *td = curthread;  /* XXX */
266         struct ucred *cred;
267         int error, nsf, opt;
268         u_char vol;
269
270         KKASSERT(td->td_proc);
271         cred = td->td_proc->p_ucred;
272
273         nmp = VFSTONWFS(mp);
274         conn = NWFSTOCONN(nmp);
275         if (nmp->n_root) {
276                 *vpp = NWTOV(nmp->n_root);
277                 while (vget(*vpp, LK_EXCLUSIVE) != 0) /* XXX */
278                         ;
279                 return 0;
280         }
281         error = ncp_lookup_volume(conn, nmp->m.mounted_vol, &vol, 
282                 &nmp->n_rootent.f_id, td, cred);
283         if (error)
284                 return ENOENT;
285         nmp->n_volume = vol;
286         error = ncp_get_namespaces(conn, vol, &nsf, td, cred);
287         if (error)
288                 return ENOENT;
289         if (nsf & NW_NSB_OS2) {
290                 NCPVODEBUG("volume %s has os2 namespace\n",nmp->m.mounted_vol);
291                 if ((nmp->m.flags & NWFS_MOUNT_NO_OS2) == 0) {
292                         nmp->name_space = NW_NS_OS2;
293                         nmp->m.nls.opt &= ~NWHP_DOS;
294                 }
295         }
296         opt = nmp->m.nls.opt;
297         nsf = opt & (NWHP_UPPER | NWHP_LOWER);
298         if (opt & NWHP_DOS) {
299                 if (nsf == (NWHP_UPPER | NWHP_LOWER)) {
300                         nmp->m.nls.opt &= ~(NWHP_LOWER | NWHP_UPPER);
301                 } else if (nsf == 0) {
302                         nmp->m.nls.opt |= NWHP_LOWER;
303                 }
304         } else {
305                 if (nsf == (NWHP_UPPER | NWHP_LOWER)) {
306                         nmp->m.nls.opt &= ~(NWHP_LOWER | NWHP_UPPER);
307                 }
308         }
309         if (nmp->m.root_path[0]) {
310                 nmp->m.root_path[0]--;
311                 error = ncp_obtain_info(nmp, nmp->n_rootent.f_id,
312                     -nmp->m.root_path[0], nmp->m.root_path, &fattr, td, cred);
313                 if (error) {
314                         NCPFATAL("Invalid root path specified\n");
315                         return ENOENT;
316                 }
317                 nmp->n_rootent.f_parent = fattr.dirEntNum;
318                 nmp->m.root_path[0]++;
319                 error = ncp_obtain_info(nmp, nmp->n_rootent.f_id,
320                     -nmp->m.root_path[0], nmp->m.root_path, &fattr, td, cred);
321                 if (error) {
322                         NCPFATAL("Invalid root path specified\n");
323                         return ENOENT;
324                 }
325                 nmp->n_rootent.f_id = fattr.dirEntNum;
326         } else {
327                 error = ncp_obtain_info(nmp, nmp->n_rootent.f_id,
328                     0, NULL, &fattr, td, cred);
329                 if (error) {
330                         NCPFATAL("Can't obtain volume info\n");
331                         return ENOENT;
332                 }
333                 fattr.nameLen = strlen(strcpy(fattr.entryName, NWFS_ROOTVOL));
334                 nmp->n_rootent.f_parent = nmp->n_rootent.f_id;
335         }
336         error = nwfs_nget(mp, nmp->n_rootent, &fattr, NULL, &vp);
337         if (error)
338                 return (error);
339         vsetflags(vp, VROOT);
340         np = VTONW(vp);
341         if (nmp->m.root_path[0] == 0)
342                 np->n_flag |= NVOLUME;
343         nmp->n_root = np;
344 /*      error = VOP_GETATTR(vp, &vattr);
345         if (error) {
346                 vput(vp);
347                 NCPFATAL("Can't get root directory entry\n");
348                 return error;
349         }*/
350         *vpp = vp;
351         return (0);
352 }
353
354 /*ARGSUSED*/
355 int
356 nwfs_init(struct vfsconf *vfsp)
357 {
358 #ifndef SMP
359         if (ncpus > 1)
360                 kprintf("warning: nwfs module compiled without SMP support.");
361 #endif
362         nwfs_hash_init();
363         nwfs_pbuf_freecnt = nswbuf / 2 + 1;
364         NCPVODEBUG("always happy to load!\n");
365         return (0);
366 }
367
368 /*ARGSUSED*/
369 int
370 nwfs_uninit(struct vfsconf *vfsp)
371 {
372
373         nwfs_hash_free();
374         NCPVODEBUG("unloaded\n");
375         return (0);
376 }
377
378 /*
379  * nwfs_statfs call
380  */
381 int
382 nwfs_statfs(struct mount *mp, struct statfs *sbp, struct ucred *cred)
383 {
384         struct nwmount *nmp = VFSTONWFS(mp);
385         int error = 0, secsize;
386         struct nwnode *np = nmp->n_root;
387         struct ncp_volume_info vi;
388
389         if (np == NULL) return EINVAL;
390         error = ncp_get_volume_info_with_number(NWFSTOCONN(nmp), nmp->n_volume,
391                                                 &vi, curthread, cred);
392         if (error) return error;
393         secsize = 512;                  /* XXX how to get real value ??? */
394         sbp->f_spare2=0;                /* placeholder */
395         /* fundamental file system block size */
396         sbp->f_bsize = vi.sectors_per_block*secsize;
397         /* optimal transfer block size */
398         sbp->f_iosize = NWFSTOCONN(nmp)->buffer_size;
399         /* total data blocks in file system */
400         sbp->f_blocks= vi.total_blocks;
401         /* free blocks in fs */
402         sbp->f_bfree = vi.free_blocks + vi.purgeable_blocks;
403         /* free blocks avail to non-superuser */
404         sbp->f_bavail= vi.free_blocks+vi.purgeable_blocks;
405         /* total file nodes in file system */
406         sbp->f_files = vi.total_dir_entries;
407         /* free file nodes in fs */
408         sbp->f_ffree = vi.available_dir_entries;
409         sbp->f_flags = 0;               /* copy of mount exported flags */
410         if (sbp != &mp->mnt_stat) {
411                 sbp->f_fsid = mp->mnt_stat.f_fsid;      /* file system id */
412                 sbp->f_owner = mp->mnt_stat.f_owner;    /* user that mounted the filesystem */
413                 sbp->f_type = mp->mnt_vfc->vfc_typenum; /* type of filesystem */
414                 bcopy(mp->mnt_stat.f_mntfromname, sbp->f_mntfromname, MNAMELEN);
415         }
416         strncpy(sbp->f_fstypename, mp->mnt_vfc->vfc_name, MFSNAMELEN);
417         return 0;
418 }
419
420 /*
421  * Flush out the buffer cache
422  */
423 /* ARGSUSED */
424 static int
425 nwfs_sync(struct mount *mp, int waitfor)
426 {
427         struct vnode *vp;
428         int error, allerror = 0;
429         /*
430          * Force stale buffer cache information to be flushed.
431          */
432 loop:
433         for (vp = TAILQ_FIRST(&mp->mnt_nvnodelist);
434              vp != NULL;
435              vp = TAILQ_NEXT(vp, v_nmntvnodes)) {
436                 /*
437                  * If the vnode that we are about to sync is no longer
438                  * associated with this mount point, start over.
439                  */
440                 if (vp->v_mount != mp)
441                         goto loop;
442                 if (vn_islocked(vp) || RB_EMPTY(&vp->v_rbdirty_tree) ||
443                     (waitfor & MNT_LAZY))
444                         continue;
445                 if (vget(vp, LK_EXCLUSIVE))
446                         goto loop;
447                 /* XXX vp may not be retained */
448                 error = VOP_FSYNC(vp, waitfor, 0);
449                 if (error)
450                         allerror = error;
451                 vput(vp);
452         }
453         return (allerror);
454 }