c7e845a85551c1d79cb8e937ae767e2a3c4ecc52
[dragonfly.git] / sys / vfs / smbfs / smbfs_vfsops.c
1 /*
2  * Copyright (c) 2000-2001, 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/fs/smbfs/smbfs_vfsops.c,v 1.2.2.5 2003/01/17 08:20:26 tjr Exp $
33  * $DragonFly: src/sys/vfs/smbfs/smbfs_vfsops.c,v 1.17 2005/02/02 21:34:18 joerg Exp $
34  */
35 #include "opt_netsmb.h"
36 #ifndef NETSMB
37 #error "SMBFS requires option NETSMB"
38 #endif
39
40 #include <sys/param.h>
41 #include <sys/systm.h>
42 #include <sys/proc.h>
43 #include <sys/kernel.h>
44 #include <sys/sysctl.h>
45 #include <sys/vnode.h>
46 #include <sys/mount.h>
47 #include <sys/stat.h>
48 #include <sys/malloc.h>
49 #include <sys/module.h>
50
51
52 #include <netproto/smb/smb.h>
53 #include <netproto/smb/smb_conn.h>
54 #include <netproto/smb/smb_subr.h>
55 #include <netproto/smb/smb_dev.h>
56
57 #include "smbfs.h"
58 #include "smbfs_node.h"
59 #include "smbfs_subr.h"
60
61 #include <sys/buf.h>
62
63 extern struct vnodeopv_entry_desc smbfs_vnodeop_entries[];
64
65 int smbfs_debuglevel = 0;
66
67 static int smbfs_version = SMBFS_VERSION;
68
69 #ifdef SMBFS_USEZONE
70 #include <vm/vm.h>
71 #include <vm/vm_extern.h>
72 #include <vm/vm_zone.h>
73
74 vm_zone_t smbfsmount_zone;
75 #endif
76
77 SYSCTL_NODE(_vfs, OID_AUTO, smbfs, CTLFLAG_RW, 0, "SMB/CIFS file system");
78 SYSCTL_INT(_vfs_smbfs, OID_AUTO, version, CTLFLAG_RD, &smbfs_version, 0, "");
79 SYSCTL_INT(_vfs_smbfs, OID_AUTO, debuglevel, CTLFLAG_RW, &smbfs_debuglevel, 0, "");
80
81 static MALLOC_DEFINE(M_SMBFSHASH, "SMBFS hash", "SMBFS hash table");
82
83
84 static int smbfs_mount(struct mount *, char *, caddr_t, struct thread *);
85 static int smbfs_quotactl(struct mount *, int, uid_t, caddr_t, struct thread *);
86 static int smbfs_root(struct mount *, struct vnode **);
87 static int smbfs_start(struct mount *, int, struct thread *);
88 static int smbfs_statfs(struct mount *, struct statfs *, struct thread *);
89 static int smbfs_sync(struct mount *, int, struct thread *);
90 static int smbfs_unmount(struct mount *, int, struct thread *);
91 static int smbfs_init(struct vfsconf *vfsp);
92 static int smbfs_uninit(struct vfsconf *vfsp);
93
94 #if defined(__FreeBSD__) && __FreeBSD_version < 400009
95 static int smbfs_vget(struct mount *mp, ino_t ino, struct vnode **vpp);
96 static int smbfs_fhtovp(struct mount *, struct fid *,
97                         struct sockaddr *, struct vnode **, int *,
98                         struct ucred **);
99 static int smbfs_vptofh(struct vnode *, struct fid *);
100 #endif
101
102 static struct vfsops smbfs_vfsops = {
103         smbfs_mount,
104         smbfs_start,
105         smbfs_unmount,
106         smbfs_root,
107         smbfs_quotactl,
108         smbfs_statfs,
109         smbfs_sync,
110 #if defined(__DragonFly__) || __FreeBSD_version > 400008
111         vfs_stdvget,
112         vfs_stdfhtovp,          /* shouldn't happen */
113         vfs_stdcheckexp,
114         vfs_stdvptofh,          /* shouldn't happen */
115 #else
116         smbfs_vget,
117         smbfs_fhtovp,
118         smbfs_vptofh,
119 #endif
120         smbfs_init,
121         smbfs_uninit,
122         vfs_stdextattrctl
123 };
124
125
126 VFS_SET(smbfs_vfsops, smbfs, VFCF_NETWORK);
127
128 MODULE_DEPEND(smbfs, netsmb, NSMB_VERSION, NSMB_VERSION, NSMB_VERSION);
129 MODULE_DEPEND(smbfs, libiconv, 1, 1, 1);
130 MODULE_DEPEND(smbfs, libmchain, 1, 1, 1);
131
132 int smbfs_pbuf_freecnt = -1;    /* start out unlimited */
133
134 static int
135 smbfs_mount(struct mount *mp, char *path, caddr_t data, struct thread *td)
136 {
137         struct smbfs_args args;           /* will hold data from mount request */
138         struct smbmount *smp = NULL;
139         struct smb_vc *vcp;
140         struct smb_share *ssp = NULL;
141         struct vnode *vp;
142         struct smb_cred scred;
143         struct ucred *cred;
144         size_t size;
145         int error;
146         char *pc, *pe;
147
148         KKASSERT(td->td_proc);
149         cred = td->td_proc->p_ucred;
150
151         if (data == NULL) {
152                 printf("missing data argument\n");
153                 return EINVAL;
154         }
155         if (mp->mnt_flag & MNT_UPDATE) {
156                 printf("MNT_UPDATE not implemented");
157                 return EOPNOTSUPP;
158         }
159         error = copyin(data, (caddr_t)&args, sizeof(struct smbfs_args));
160         if (error)
161                 return error;
162         if (args.version != SMBFS_VERSION) {
163                 printf("mount version mismatch: kernel=%d, mount=%d\n",
164                     SMBFS_VERSION, args.version);
165                 return EINVAL;
166         }
167         smb_makescred(&scred, td, cred);
168         error = smb_dev2share(args.dev, SMBM_EXEC, &scred, &ssp);
169         if (error) {
170                 printf("invalid device handle %d (%d)\n", args.dev, error);
171                 return error;
172         }
173         vcp = SSTOVC(ssp);
174         smb_share_unlock(ssp, 0, td);
175         mp->mnt_stat.f_iosize = SSTOVC(ssp)->vc_txmax;
176
177 #ifdef SMBFS_USEZONE
178         smp = zalloc(smbfsmount_zone);
179 #else
180         MALLOC(smp, struct smbmount*, sizeof(*smp), M_SMBFSDATA, M_WAITOK|M_USE_RESERVE);
181 #endif
182         if (smp == NULL) {
183                 printf("could not alloc smbmount\n");
184                 error = ENOMEM;
185                 goto bad;
186         }
187         bzero(smp, sizeof(*smp));
188         mp->mnt_data = (qaddr_t)smp;
189         smp->sm_hash = hashinit(desiredvnodes, M_SMBFSHASH, &smp->sm_hashlen);
190         if (smp->sm_hash == NULL)
191                 goto bad;
192         lockinit(&smp->sm_hashlock, 0, "smbfsh", 0, 0);
193         smp->sm_share = ssp;
194         smp->sm_root = NULL;
195         smp->sm_args = args;
196         smp->sm_caseopt = args.caseopt;
197         smp->sm_args.file_mode = (smp->sm_args.file_mode &
198                             (S_IRWXU|S_IRWXG|S_IRWXO)) | S_IFREG;
199         smp->sm_args.dir_mode  = (smp->sm_args.dir_mode &
200                             (S_IRWXU|S_IRWXG|S_IRWXO)) | S_IFDIR;
201
202 /*      simple_lock_init(&smp->sm_npslock);*/
203         pc = mp->mnt_stat.f_mntfromname;
204         pe = pc + sizeof(mp->mnt_stat.f_mntfromname);
205         bzero(pc, MNAMELEN);
206         *pc++ = '/';
207         *pc++ = '/';
208         pc=index(strncpy(pc, vcp->vc_username, pe - pc - 2), 0);
209         if (pc < pe-1) {
210                 *(pc++) = '@';
211                 pc = index(strncpy(pc, vcp->vc_srvname, pe - pc - 2), 0);
212                 if (pc < pe - 1) {
213                         *(pc++) = '/';
214                         strncpy(pc, ssp->ss_name, pe - pc - 2);
215                 }
216         }
217         /* protect against invalid mount points */
218         smp->sm_args.mount_point[sizeof(smp->sm_args.mount_point) - 1] = '\0';
219         vfs_getnewfsid(mp);
220
221         vfs_add_vnodeops(mp, &mp->mnt_vn_norm_ops, smbfs_vnodeop_entries);
222
223         error = smbfs_root(mp, &vp);
224         if (error)
225                 goto bad;
226         VOP_UNLOCK(vp, 0, td);
227         SMBVDEBUG("root.v_usecount = %d\n", vp->v_usecount);
228
229 #ifdef DIAGNOSTICS
230         SMBERROR("mp=%p\n", mp);
231 #endif
232         return error;
233 bad:
234         if (smp) {
235                 if (smp->sm_hash)
236                         free(smp->sm_hash, M_SMBFSHASH);
237                 lockdestroy(&smp->sm_hashlock);
238 #ifdef SMBFS_USEZONE
239                 zfree(smbfsmount_zone, smp);
240 #else
241                 free(smp, M_SMBFSDATA);
242 #endif
243         }
244         if (ssp)
245                 smb_share_put(ssp, &scred);
246         return error;
247 }
248
249 /* Unmount the filesystem described by mp. */
250 static int
251 smbfs_unmount(struct mount *mp, int mntflags, struct thread *td)
252 {
253         struct smbmount *smp = VFSTOSMBFS(mp);
254         struct smb_cred scred;
255         struct ucred *cred;
256         int error, flags;
257
258         KKASSERT(td->td_proc);
259         cred = td->td_proc->p_ucred;
260
261         SMBVDEBUG("smbfs_unmount: flags=%04x\n", mntflags);
262         flags = 0;
263         if (mntflags & MNT_FORCE)
264                 flags |= FORCECLOSE;
265         /*
266          * Keep trying to flush the vnode list for the mount while 
267          * some are still busy and we are making progress towards
268          * making them not busy. This is needed because smbfs vnodes
269          * reference their parent directory but may appear after their
270          * parent in the list; one pass over the vnode list is not
271          * sufficient in this case.
272          */
273         do {
274                 smp->sm_didrele = 0;
275                 /* There is 1 extra root vnode reference from smbfs_mount(). */
276                 error = vflush(mp, 1, flags);
277         } while (error == EBUSY && smp->sm_didrele != 0);
278         if (error)
279                 return error;
280         smb_makescred(&scred, td, cred);
281         smb_share_put(smp->sm_share, &scred);
282         mp->mnt_data = (qaddr_t)0;
283
284         if (smp->sm_hash)
285                 free(smp->sm_hash, M_SMBFSHASH);
286         lockdestroy(&smp->sm_hashlock);
287 #ifdef SMBFS_USEZONE
288         zfree(smbfsmount_zone, smp);
289 #else
290         free(smp, M_SMBFSDATA);
291 #endif
292         mp->mnt_flag &= ~MNT_LOCAL;
293         return error;
294 }
295
296 /* 
297  * Return locked root vnode of a filesystem
298  */
299 static int
300 smbfs_root(struct mount *mp, struct vnode **vpp)
301 {
302         struct thread *td = curthread;  /* XXX */
303         struct smbmount *smp = VFSTOSMBFS(mp);
304         struct vnode *vp;
305         struct smbnode *np;
306         struct smbfattr fattr;
307         struct ucred *cred;
308         struct smb_cred scred;
309         int error;
310
311         KKASSERT(td->td_proc);
312         cred = td->td_proc->p_ucred;
313
314         if (smp == NULL) {
315                 SMBERROR("smp == NULL (bug in umount)\n");
316                 return EINVAL;
317         }
318         if (smp->sm_root) {
319                 *vpp = SMBTOV(smp->sm_root);
320                 return vget(*vpp, LK_EXCLUSIVE | LK_RETRY, td);
321         }
322         smb_makescred(&scred, td, cred);
323         error = smbfs_smb_lookup(NULL, NULL, 0, &fattr, &scred);
324         if (error)
325                 return error;
326         error = smbfs_nget(mp, NULL, "TheRooT", 7, &fattr, &vp);
327         if (error)
328                 return error;
329         vp->v_flag |= VROOT;
330         np = VTOSMB(vp);
331         smp->sm_root = np;
332         *vpp = vp;
333         return 0;
334 }
335
336 /*
337  * Vfs start routine, a no-op.
338  */
339 /* ARGSUSED */
340 static int
341 smbfs_start(struct mount *mp, int flags, struct thread *td)
342 {
343         SMBVDEBUG("flags=%04x\n", flags);
344         return 0;
345 }
346
347 /*
348  * Do operations associated with quotas, not supported
349  */
350 /* ARGSUSED */
351 static int
352 smbfs_quotactl(struct mount *mp, int cmd, uid_t uid, caddr_t arg,
353                 struct thread *td)
354 {
355         SMBVDEBUG("return EOPNOTSUPP\n");
356         return EOPNOTSUPP;
357 }
358
359 /*ARGSUSED*/
360 int
361 smbfs_init(struct vfsconf *vfsp)
362 {
363 #ifdef SMBFS_USEZONE
364         smbfsmount_zone = zinit("SMBFSMOUNT", sizeof(struct smbmount), 0, 0, 1);
365 #endif
366         smbfs_pbuf_freecnt = nswbuf / 2 + 1;
367         SMBVDEBUG("done.\n");
368         return 0;
369 }
370
371 /*ARGSUSED*/
372 int
373 smbfs_uninit(struct vfsconf *vfsp)
374 {
375         SMBVDEBUG("done.\n");
376         return 0;
377 }
378
379 /*
380  * smbfs_statfs call
381  */
382 int
383 smbfs_statfs(struct mount *mp, struct statfs *sbp, struct thread *td)
384 {
385         struct smbmount *smp = VFSTOSMBFS(mp);
386         struct smbnode *np = smp->sm_root;
387         struct smb_share *ssp = smp->sm_share;
388         struct smb_cred scred;
389         struct ucred *cred;
390         int error = 0;
391
392         KKASSERT(td->td_proc);
393         cred = td->td_proc->p_ucred;
394
395         if (np == NULL)
396                 return EINVAL;
397         
398         sbp->f_iosize = SSTOVC(ssp)->vc_txmax;          /* optimal transfer block size */
399         sbp->f_spare2 = 0;                      /* placeholder */
400         smb_makescred(&scred, td, cred);
401
402         if (SMB_DIALECT(SSTOVC(ssp)) >= SMB_DIALECT_LANMAN2_0)
403                 error = smbfs_smb_statfs2(ssp, sbp, &scred);
404         else
405                 error = smbfs_smb_statfs(ssp, sbp, &scred);
406         if (error)
407                 return error;
408         sbp->f_flags = 0;               /* copy of mount exported flags */
409         if (sbp != &mp->mnt_stat) {
410                 sbp->f_fsid = mp->mnt_stat.f_fsid;      /* file system id */
411                 sbp->f_owner = mp->mnt_stat.f_owner;    /* user that mounted the filesystem */
412                 sbp->f_type = mp->mnt_vfc->vfc_typenum; /* type of filesystem */
413                 bcopy(mp->mnt_stat.f_mntfromname, sbp->f_mntfromname, MNAMELEN);
414         }
415         strncpy(sbp->f_fstypename, mp->mnt_vfc->vfc_name, MFSNAMELEN);
416         return 0;
417 }
418
419 /*
420  * Flush out the buffer cache
421  */
422 /* ARGSUSED */
423 static int
424 smbfs_sync(struct mount *mp, int waitfor, struct thread *td)
425 {
426         struct vnode *vp;
427         int error, allerror = 0;
428         /*
429          * Force stale buffer cache information to be flushed.
430          */
431 loop:
432         for (vp = TAILQ_FIRST(&mp->mnt_nvnodelist);
433              vp != NULL;
434              vp = TAILQ_NEXT(vp, v_nmntvnodes)) {
435                 if (vp->v_flag & VPLACEMARKER)  /* ZZZ */
436                         continue;
437                 /*
438                  * If the vnode that we are about to sync is no longer
439                  * associated with this mount point, start over.
440                  */
441                 if (vp->v_mount != mp)
442                         goto loop;
443                 if (VOP_ISLOCKED(vp, NULL) || TAILQ_EMPTY(&vp->v_dirtyblkhd) ||
444                     waitfor == MNT_LAZY)
445                         continue;
446                 if (vget(vp, LK_EXCLUSIVE, td))
447                         goto loop;
448                 error = VOP_FSYNC(vp, waitfor, td);
449                 if (error)
450                         allerror = error;
451                 vput(vp);
452         }
453         return (allerror);
454 }
455
456 #if defined(__FreeBSD__) && __FreeBSD_version < 400009
457 /*
458  * smbfs flat namespace lookup. Unsupported.
459  */
460 /* ARGSUSED */
461 static int smbfs_vget(struct mount *mp, ino_t ino, struct vnode **vpp)
462 {
463         return (EOPNOTSUPP);
464 }
465
466 /* ARGSUSED */
467 static int smbfs_fhtovp(struct mount *mp, struct fid *fhp,
468                         struct sockaddr *nam, struct vnode **vpp,
469                         int *exflagsp, struct ucred **credanonp)
470 {
471         return (EINVAL);
472 }
473
474 /*
475  * Vnode pointer to File handle, should never happen either
476  */
477 /* ARGSUSED */
478 static int
479 smbfs_vptofh(struct vnode *vp, struct fid *fhp)
480 {
481         return (EINVAL);
482 }
483
484 #endif /* __FreeBSD_version < 400009 */