udf_vfsops.c revision 1.21 1 /* $NetBSD: udf_vfsops.c,v 1.21 2007/01/19 14:49:10 hannken Exp $ */
2
3 /*
4 * Copyright (c) 2006 Reinoud Zandijk
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed for the
18 * NetBSD Project. See http://www.NetBSD.org/ for
19 * information about NetBSD.
20 * 4. The name of the author may not be used to endorse or promote products
21 * derived from this software without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
24 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
27 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 *
34 */
35
36
37 #include <sys/cdefs.h>
38 #ifndef lint
39 __RCSID("$NetBSD: udf_vfsops.c,v 1.21 2007/01/19 14:49:10 hannken Exp $");
40 #endif /* not lint */
41
42
43 #if defined(_KERNEL_OPT)
44 #include "opt_quota.h"
45 #include "opt_compat_netbsd.h"
46 #endif
47
48 #include <sys/param.h>
49 #include <sys/systm.h>
50 #include <sys/sysctl.h>
51 #include <sys/namei.h>
52 #include <sys/proc.h>
53 #include <sys/kernel.h>
54 #include <sys/vnode.h>
55 #include <miscfs/specfs/specdev.h>
56 #include <sys/mount.h>
57 #include <sys/buf.h>
58 #include <sys/file.h>
59 #include <sys/device.h>
60 #include <sys/disklabel.h>
61 #include <sys/ioctl.h>
62 #include <sys/malloc.h>
63 #include <sys/dirent.h>
64 #include <sys/stat.h>
65 #include <sys/conf.h>
66 #include <sys/sysctl.h>
67 #include <sys/kauth.h>
68
69 #include <fs/udf/ecma167-udf.h>
70 #include <fs/udf/udf_mount.h>
71
72 #include "udf.h"
73 #include "udf_subr.h"
74 #include "udf_bswap.h"
75
76
77 /* verbose levels of the udf filingsystem */
78 int udf_verbose = UDF_DEBUGGING;
79
80 /* malloc regions */
81 MALLOC_DEFINE(M_UDFMNT, "UDF mount", "UDF mount structures");
82 MALLOC_DEFINE(M_UDFVOLD, "UDF volspace", "UDF volume space descriptors");
83 MALLOC_DEFINE(M_UDFTEMP, "UDF temp", "UDF scrap space");
84 struct pool udf_node_pool;
85
86 /* supported functions predefined */
87 int udf_mountroot(void);
88 int udf_mount(struct mount *, const char *, void *, struct nameidata *, struct lwp *);
89 int udf_start(struct mount *, int, struct lwp *);
90 int udf_unmount(struct mount *, int, struct lwp *);
91 int udf_root(struct mount *, struct vnode **);
92 int udf_quotactl(struct mount *, int, uid_t, void *, struct lwp *);
93 int udf_statvfs(struct mount *, struct statvfs *, struct lwp *);
94 int udf_sync(struct mount *, int, kauth_cred_t, struct lwp *);
95 int udf_vget(struct mount *, ino_t, struct vnode **);
96 int udf_fhtovp(struct mount *, struct fid *, struct vnode **);
97 int udf_checkexp(struct mount *, struct mbuf *, int *, kauth_cred_t *);
98 int udf_vptofh(struct vnode *, struct fid *, size_t *);
99 int udf_snapshot(struct mount *, struct vnode *, struct timespec *);
100
101 void udf_init(void);
102 void udf_reinit(void);
103 void udf_done(void);
104
105
106 /* internal functions */
107 static int udf_mountfs(struct vnode *, struct mount *, struct lwp *, struct udf_args *);
108 #if 0
109 static int update_mp(struct mount *, struct udf_args *);
110 #endif
111
112
113 /* handies */
114 #define VFSTOUDF(mp) ((struct udf_mount *)mp->mnt_data)
115
116
117 /* --------------------------------------------------------------------- */
118
119 /* predefine vnode-op list descriptor */
120 extern const struct vnodeopv_desc udf_vnodeop_opv_desc;
121
122 const struct vnodeopv_desc * const udf_vnodeopv_descs[] = {
123 &udf_vnodeop_opv_desc,
124 NULL,
125 };
126
127
128 /* vfsops descriptor linked in as anchor point for the filingsystem */
129 struct vfsops udf_vfsops = {
130 MOUNT_UDF, /* vfs_name */
131 udf_mount,
132 udf_start,
133 udf_unmount,
134 udf_root,
135 udf_quotactl,
136 udf_statvfs,
137 udf_sync,
138 udf_vget,
139 udf_fhtovp,
140 udf_vptofh,
141 udf_init,
142 udf_reinit,
143 udf_done,
144 udf_mountroot,
145 udf_snapshot,
146 vfs_stdextattrctl,
147 vfs_stdsuspendctl,
148 udf_vnodeopv_descs,
149 0, /* int vfs_refcount */
150 { NULL, NULL, }, /* LIST_ENTRY(vfsops) */
151 };
152 VFS_ATTACH(udf_vfsops);
153
154
155 /* --------------------------------------------------------------------- */
156
157 /* file system starts here */
158 void
159 udf_init(void)
160 {
161 size_t size;
162
163 #ifdef _LKM
164 malloc_type_attach(M_UDFMNT);
165 malloc_type_attach(M_UDFVOLD);
166 malloc_type_attach(M_UDFTEMP);
167 #endif
168
169 /* init hashtables and pools */
170 size = sizeof(struct udf_node);
171 pool_init(&udf_node_pool, size, 0, 0, 0, "udf_node_pool", NULL);
172 }
173
174 /* --------------------------------------------------------------------- */
175
176 void
177 udf_reinit(void)
178 {
179 /* recreate hashtables */
180 /* reinit pool? */
181 }
182
183 /* --------------------------------------------------------------------- */
184
185 void
186 udf_done(void)
187 {
188 /* remove hashtables and pools */
189 pool_destroy(&udf_node_pool);
190
191 #ifdef _LKM
192 malloc_type_detach(M_UDFMNT);
193 malloc_type_detach(M_UDFVOLD);
194 malloc_type_detach(M_UDFTEMP);
195 #endif
196 }
197
198 /* --------------------------------------------------------------------- */
199
200 int
201 udf_mountroot(void)
202 {
203 return EOPNOTSUPP;
204 }
205
206 /* --------------------------------------------------------------------- */
207
208 #define MPFREE(a, lst) \
209 if ((a)) free((a), lst);
210 static void
211 free_udf_mountinfo(struct mount *mp)
212 {
213 struct udf_mount *ump;
214 int i;
215
216 if (!mp)
217 return;
218
219 ump = VFSTOUDF(mp);
220 if (ump) {
221 /* dereference all system nodes */
222 if (ump->metadata_file)
223 vrele(ump->metadata_file->vnode);
224 if (ump->metadatamirror_file)
225 vrele(ump->metadatamirror_file->vnode);
226 if (ump->metadatabitmap_file)
227 vrele(ump->metadatabitmap_file->vnode);
228
229 /* vflush all (system) nodes if any */
230 (void) vflush(mp, NULLVP, FORCECLOSE);
231
232 /* dispose of our descriptor pool */
233 if (ump->desc_pool) {
234 pool_destroy(ump->desc_pool);
235 free(ump->desc_pool, M_UDFMNT);
236 }
237
238 /* clear our data */
239 for (i = 0; i < UDF_ANCHORS; i++)
240 MPFREE(ump->anchors[i], M_UDFVOLD);
241 MPFREE(ump->primary_vol, M_UDFVOLD);
242 MPFREE(ump->logical_vol, M_UDFVOLD);
243 MPFREE(ump->unallocated, M_UDFVOLD);
244 MPFREE(ump->implementation, M_UDFVOLD);
245 MPFREE(ump->logvol_integrity, M_UDFVOLD);
246 for (i = 0; i < UDF_PARTITIONS; i++)
247 MPFREE(ump->partitions[i], M_UDFVOLD);
248 MPFREE(ump->fileset_desc, M_UDFVOLD);
249 MPFREE(ump->vat_table, M_UDFVOLD);
250 MPFREE(ump->sparing_table, M_UDFVOLD);
251
252 free(ump, M_UDFMNT);
253 }
254 }
255 #undef MPFREE
256
257 /* --------------------------------------------------------------------- */
258
259 int
260 udf_mount(struct mount *mp, const char *path,
261 void *data, struct nameidata *ndp, struct lwp *l)
262 {
263 struct udf_args args;
264 struct udf_mount *ump;
265 struct vnode *devvp;
266 int openflags, accessmode, error;
267
268 DPRINTF(CALL, ("udf_mount called\n"));
269
270 if (mp->mnt_flag & MNT_GETARGS) {
271 /* request for the mount arguments */
272 ump = VFSTOUDF(mp);
273 if (ump == NULL)
274 return EINVAL;
275 return copyout(&ump->mount_args, data, sizeof(args));
276 }
277
278 /* handle request for updating mount parameters */
279 /* TODO can't update my mountpoint yet */
280 if (mp->mnt_flag & MNT_UPDATE) {
281 return EOPNOTSUPP;
282 }
283
284 /* OK, so we are asked to mount the device */
285 error = copyin(data, &args, sizeof(struct udf_args));
286 if (error)
287 return error;
288
289 /* check/translate struct version */
290 /* TODO sanity checking other mount arguments */
291 if (args.version != 1) {
292 printf("mount_udf: unrecognized argument structure version\n");
293 return EINVAL;
294 }
295
296 /* lookup name to get its vnode */
297 NDINIT(ndp, LOOKUP, FOLLOW, UIO_USERSPACE, args.fspec, l);
298 error = namei(ndp);
299 if (error)
300 return error;
301 devvp = ndp->ni_vp;
302
303 #ifdef DEBUG
304 if (udf_verbose & UDF_DEBUG_VOLUMES)
305 vprint("UDF mount, trying to mount \n", devvp);
306 #endif
307
308 /* check if its a block device specified */
309 if (devvp->v_type != VBLK) {
310 vrele(devvp);
311 return ENOTBLK;
312 }
313 if (bdevsw_lookup(devvp->v_rdev) == NULL) {
314 vrele(devvp);
315 return ENXIO;
316 }
317
318 /* force read-only for now */
319 mp->mnt_flag |= MNT_RDONLY;
320
321 /*
322 * If mount by non-root, then verify that user has necessary
323 * permissions on the device.
324 */
325 if (kauth_authorize_generic(l->l_cred, KAUTH_GENERIC_ISSUSER, NULL)) {
326 accessmode = VREAD;
327 if ((mp->mnt_flag & MNT_RDONLY) == 0)
328 accessmode |= VWRITE;
329 vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
330 error = VOP_ACCESS(devvp, accessmode, l->l_cred, l);
331 VOP_UNLOCK(devvp, 0);
332 if (error) {
333 vrele(devvp);
334 return error;
335 }
336 }
337
338 /*
339 * Disallow multiple mounts of the same device. Disallow mounting of
340 * a device that is currently in use (except for root, which might
341 * share swap device for miniroot).
342 */
343 error = vfs_mountedon(devvp);
344 if (error) {
345 vrele(devvp);
346 return error;
347 }
348 if ((vcount(devvp) > 1) && (devvp != rootvp)) {
349 vrele(devvp);
350 return EBUSY;
351 }
352
353 /*
354 * Open device and try to mount it!
355 */
356 if (mp->mnt_flag & MNT_RDONLY) {
357 openflags = FREAD;
358 } else {
359 openflags = FREAD | FWRITE;
360 }
361 error = VOP_OPEN(devvp, openflags, FSCRED, l);
362 if (error == 0) {
363 /* opened ok, try mounting */
364 error = udf_mountfs(devvp, mp, l, &args);
365 if (error) {
366 free_udf_mountinfo(mp);
367 vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
368 (void) VOP_CLOSE(devvp, openflags, NOCRED, l);
369 VOP_UNLOCK(devvp, 0);
370 }
371 }
372 if (error) {
373 /* devvp is still locked */
374 vrele(devvp);
375 return error;
376 }
377
378 /* register our mountpoint being on this device */
379 devvp->v_specmountpoint = mp;
380
381 /* successfully mounted */
382 DPRINTF(VOLUMES, ("udf_mount() successfull\n"));
383
384 return set_statvfs_info(path, UIO_USERSPACE, args.fspec, UIO_USERSPACE,
385 mp, l);
386 }
387
388 /* --------------------------------------------------------------------- */
389
390 #ifdef DEBUG
391 static void
392 udf_unmount_sanity_check(struct mount *mp)
393 {
394 struct vnode *vp;
395
396 printf("On unmount, i found the following nodes:\n");
397 TAILQ_FOREACH(vp, &mp->mnt_vnodelist, v_mntvnodes) {
398 vprint("", vp);
399 if (VOP_ISLOCKED(vp) == LK_EXCLUSIVE) {
400 printf(" is locked\n");
401 }
402 if (vp->v_usecount > 1)
403 printf(" more than one usecount %d\n", vp->v_usecount);
404 }
405 }
406 #endif
407
408
409 int
410 udf_unmount(struct mount *mp, int mntflags, struct lwp *l)
411 {
412 struct udf_mount *ump;
413 int error, flags, closeflags;
414
415 DPRINTF(CALL, ("udf_umount called\n"));
416
417 ump = VFSTOUDF(mp);
418 if (!ump)
419 panic("UDF unmount: empty ump\n");
420
421 flags = (mntflags & MNT_FORCE) ? FORCECLOSE : 0;
422 /* TODO remove these paranoid functions */
423 #ifdef DEBUG
424 if (udf_verbose & UDF_DEBUG_LOCKING)
425 udf_unmount_sanity_check(mp);
426 #endif
427
428 /*
429 * By specifying SKIPSYSTEM we can skip vnodes marked with VSYSTEM.
430 * This hardly documented feature allows us to exempt certain files
431 * from being flushed.
432 */
433 if ((error = vflush(mp, NULLVP, flags | VSYSTEM)) != 0)
434 return error;
435
436 #ifdef DEBUG
437 if (udf_verbose & UDF_DEBUG_LOCKING)
438 udf_unmount_sanity_check(mp);
439 #endif
440
441 DPRINTF(VOLUMES, ("flush OK\n"));
442
443 /*
444 * TODO close logical volume and close session if requested.
445 */
446
447 /* close device */
448 DPRINTF(VOLUMES, ("closing device\n"));
449 if (mp->mnt_flag & MNT_RDONLY) {
450 closeflags = FREAD;
451 } else {
452 closeflags = FREAD | FWRITE;
453 }
454
455 /* devvp is still locked by us */
456 vn_lock(ump->devvp, LK_EXCLUSIVE | LK_RETRY);
457 error = VOP_CLOSE(ump->devvp, closeflags, NOCRED, l);
458 if (error)
459 printf("Error during closure of device! error %d, "
460 "device might stay locked\n", error);
461 DPRINTF(VOLUMES, ("device close ok\n"));
462
463 /* clear our mount reference and release device node */
464 ump->devvp->v_specmountpoint = NULL;
465 vput(ump->devvp);
466
467 /* free up umt structure */
468 free_udf_mountinfo(mp);
469
470 /* free ump struct reference */
471 mp->mnt_data = NULL;
472 mp->mnt_flag &= ~MNT_LOCAL;
473
474 DPRINTF(VOLUMES, ("Fin unmount\n"));
475 return error;
476 }
477
478 /* --------------------------------------------------------------------- */
479
480 /*
481 * Helper function of udf_mount() that actually mounts the disc.
482 */
483
484 static int
485 udf_mountfs(struct vnode *devvp, struct mount *mp,
486 struct lwp *l, struct udf_args *args)
487 {
488 struct udf_mount *ump;
489 uint32_t sector_size, lb_size, bshift;
490 int num_anchors, error, lst;
491
492 /* flush out any old buffers remaining from a previous use. */
493 if ((error = vinvalbuf(devvp, V_SAVE, l->l_cred, l, 0, 0)))
494 return error;
495
496 /* allocate udf part of mount structure; malloc allways succeeds */
497 ump = malloc(sizeof(struct udf_mount), M_UDFMNT, M_WAITOK);
498 memset(ump, 0, sizeof(struct udf_mount));
499
500 /* init locks */
501 simple_lock_init(&ump->ihash_slock);
502 lockinit(&ump->get_node_lock, PINOD, "udf_getnode", 0, 0);
503
504 /* init `ino_t' to udf_node hash table */
505 for (lst = 0; lst < UDF_INODE_HASHSIZE; lst++) {
506 LIST_INIT(&ump->udf_nodes[lst]);
507 }
508
509 /* set up linkage */
510 mp->mnt_data = ump;
511 ump->vfs_mountp = mp;
512
513 /* set up arguments and device */
514 ump->mount_args = *args;
515 ump->devvp = devvp;
516 if ((error = udf_update_discinfo(ump))) {
517 printf("UDF mount: error inspecting fs node\n");
518 return error;
519 }
520
521 /* inspect sector size */
522 sector_size = ump->discinfo.sector_size;
523 bshift = 1;
524 while ((1 << bshift) < sector_size)
525 bshift++;
526 if ((1 << bshift) != sector_size) {
527 printf("UDF mount: "
528 "hit NetBSD implementation fence on sector size\n");
529 return EIO;
530 }
531
532 /* read all anchors to get volume descriptor sequence */
533 num_anchors = udf_read_anchors(ump, args);
534 if (num_anchors == 0)
535 return ENOENT;
536
537 DPRINTF(VOLUMES, ("Read %d anchors on this disc, session %d\n",
538 num_anchors, args->sessionnr));
539
540 /* read in volume descriptor sequence */
541 if ((error = udf_read_vds_space(ump))) {
542 printf("UDF mount: error reading volume space\n");
543 return error;
544 }
545
546 /* check consistency and completeness */
547 if ((error = udf_process_vds(ump, args))) {
548 printf( "UDF mount: disc not properly formatted"
549 "(bad VDS)\n");
550 return error;
551 }
552
553 /*
554 * Initialise pool for descriptors associated with nodes. This is done
555 * in lb_size units though currently lb_size is dictated to be
556 * sector_size.
557 */
558 lb_size = udf_rw32(ump->logical_vol->lb_size);
559 ump->desc_pool = malloc(sizeof(struct pool), M_UDFMNT, M_WAITOK);
560 memset(ump->desc_pool, 0, sizeof(struct pool));
561 pool_init(ump->desc_pool, lb_size, 0, 0, 0, "udf_desc_pool", NULL);
562
563 /* read vds support tables like VAT, sparable etc. */
564 if ((error = udf_read_vds_tables(ump, args))) {
565 printf( "UDF mount: error in format or damaged disc "
566 "(VDS tables failing)\n");
567 return error;
568 }
569
570 if ((error = udf_read_rootdirs(ump, args))) {
571 printf( "UDF mount: "
572 "disc not properly formatted or damaged disc "
573 "(rootdirs failing)\n");
574 return error;
575 }
576
577 /* setup rest of mount information */
578 mp->mnt_data = ump;
579 mp->mnt_stat.f_fsidx.__fsid_val[0] = (uint32_t) devvp->v_rdev;
580 mp->mnt_stat.f_fsidx.__fsid_val[1] = makefstype(MOUNT_UDF);
581 mp->mnt_stat.f_fsid = mp->mnt_stat.f_fsidx.__fsid_val[0];
582 mp->mnt_stat.f_namemax = UDF_MAX_NAMELEN;
583 mp->mnt_flag |= MNT_LOCAL;
584
585 /* bshift is allways equal to disc sector size */
586 mp->mnt_dev_bshift = bshift;
587 mp->mnt_fs_bshift = bshift;
588
589 /* do we have to set this? */
590 devvp->v_specmountpoint = mp;
591
592 /* success! */
593 return 0;
594 }
595
596 /* --------------------------------------------------------------------- */
597
598 int
599 udf_start(struct mount *mp, int flags, struct lwp *l)
600 {
601 /* do we have to do something here? */
602 return 0;
603 }
604
605 /* --------------------------------------------------------------------- */
606
607 int
608 udf_root(struct mount *mp, struct vnode **vpp)
609 {
610 struct vnode *vp;
611 struct long_ad *dir_loc;
612 struct udf_mount *ump = VFSTOUDF(mp);
613 struct udf_node *root_dir;
614 int error;
615
616 DPRINTF(CALL, ("udf_root called\n"));
617
618 dir_loc = &ump->fileset_desc->rootdir_icb;
619 error = udf_get_node(ump, dir_loc, &root_dir);
620
621 if (!root_dir)
622 error = ENOENT;
623 if (error)
624 return error;
625
626 vp = root_dir->vnode;
627 simple_lock(&vp->v_interlock);
628 root_dir->vnode->v_flag |= VROOT;
629 simple_unlock(&vp->v_interlock);
630
631 *vpp = vp;
632 return 0;
633 }
634
635 /* --------------------------------------------------------------------- */
636
637 int
638 udf_quotactl(struct mount *mp, int cmds, uid_t uid,
639 void *arg, struct lwp *l)
640 {
641 DPRINTF(NOTIMPL, ("udf_quotactl called\n"));
642 return EOPNOTSUPP;
643 }
644
645 /* --------------------------------------------------------------------- */
646
647 int
648 udf_statvfs(struct mount *mp, struct statvfs *sbp, struct lwp *l)
649 {
650 struct udf_mount *ump = VFSTOUDF(mp);
651 struct logvol_int_desc *lvid;
652 struct udf_logvol_info *impl;
653 uint64_t freeblks, sizeblks;
654 uint32_t *pos1, *pos2;
655 int part, num_part;
656
657 DPRINTF(CALL, ("udf_statvfs called\n"));
658 sbp->f_flag = mp->mnt_flag;
659 sbp->f_bsize = ump->discinfo.sector_size;
660 sbp->f_frsize = ump->discinfo.sector_size;
661 sbp->f_iosize = ump->discinfo.sector_size;
662
663 /* TODO integrity locking */
664 /* free and used space for mountpoint based on logvol integrity */
665 lvid = ump->logvol_integrity;
666 if (lvid) {
667 num_part = udf_rw32(lvid->num_part);
668 impl = (struct udf_logvol_info *) (lvid->tables + 2*num_part);
669
670 freeblks = sizeblks = 0;
671 for (part=0; part < num_part; part++) {
672 pos1 = &lvid->tables[0] + part;
673 pos2 = &lvid->tables[0] + num_part + part;
674 if (udf_rw32(*pos1) != (uint32_t) -1) {
675 freeblks += udf_rw32(*pos1);
676 sizeblks += udf_rw32(*pos2);
677 }
678 }
679 sbp->f_blocks = sizeblks;
680 sbp->f_bfree = freeblks;
681 sbp->f_files = udf_rw32(impl->num_files);
682 sbp->f_files += udf_rw32(impl->num_directories);
683
684 /* XXX read only for now XXX */
685 sbp->f_bavail = 0;
686 sbp->f_bresvd = 0;
687
688 /* tricky, next only aplies to ffs i think, so set to zero */
689 sbp->f_ffree = 0;
690 sbp->f_favail = 0;
691 sbp->f_fresvd = 0;
692 }
693
694 copy_statvfs_info(sbp, mp);
695 return 0;
696 }
697
698 /* --------------------------------------------------------------------- */
699
700 int
701 udf_sync(struct mount *mp, int waitfor,
702 kauth_cred_t cred, struct lwp *p)
703 {
704 DPRINTF(CALL, ("udf_sync called\n"));
705 /* nothing to be done as upto now read-only */
706 return 0;
707 }
708
709 /* --------------------------------------------------------------------- */
710
711 /*
712 * Get vnode for the file system type specific file id ino for the fs. Its
713 * used for reference to files by unique ID and for NFSv3.
714 * (optional) TODO lookup why some sources state NFSv3
715 */
716 int
717 udf_vget(struct mount *mp, ino_t ino,
718 struct vnode **vpp)
719 {
720 DPRINTF(NOTIMPL, ("udf_vget called\n"));
721 return EOPNOTSUPP;
722 }
723
724 /* --------------------------------------------------------------------- */
725
726 /*
727 * Lookup vnode for file handle specified
728 */
729 int
730 udf_fhtovp(struct mount *mp, struct fid *fhp,
731 struct vnode **vpp)
732 {
733 DPRINTF(NOTIMPL, ("udf_fhtovp called\n"));
734 return EOPNOTSUPP;
735 }
736
737 /* --------------------------------------------------------------------- */
738
739 /*
740 * Create an unique file handle. Its structure is opaque and won't be used by
741 * other subsystems. It should uniquely identify the file in the filingsystem
742 * and enough information to know if a file has been removed and/or resources
743 * have been recycled.
744 */
745 int
746 udf_vptofh(struct vnode *vp, struct fid *fid,
747 size_t *fh_size)
748 {
749 DPRINTF(NOTIMPL, ("udf_vptofh called\n"));
750 return EOPNOTSUPP;
751 }
752
753 /* --------------------------------------------------------------------- */
754
755 /*
756 * Create a filingsystem snapshot at the specified timestamp. Could be
757 * implemented by explicitly creating a new session or with spare room in the
758 * integrity descriptor space
759 */
760 int
761 udf_snapshot(struct mount *mp, struct vnode *vp,
762 struct timespec *tm)
763 {
764 DPRINTF(NOTIMPL, ("udf_snapshot called\n"));
765 return EOPNOTSUPP;
766 }
767
768 /* --------------------------------------------------------------------- */
769
770 /*
771 * If running a DEBUG kernel, provide an easy way to set the debug flags when
772 * running into a problem.
773 */
774
775 #ifdef DEBUG
776 #define UDF_VERBOSE_SYSCTLOPT 1
777
778 SYSCTL_SETUP(sysctl_vfs_udf_setup, "sysctl vfs.udf subtree setup")
779 {
780 /*
781 * XXX the "24" below could be dynamic, thereby eliminating one
782 * more instance of the "number to vfs" mapping problem, but
783 * "24" is the order as taken from sys/mount.h
784 */
785
786 sysctl_createv(clog, 0, NULL, NULL,
787 CTLFLAG_PERMANENT,
788 CTLTYPE_NODE, "vfs", NULL,
789 NULL, 0, NULL, 0,
790 CTL_VFS, CTL_EOL);
791 sysctl_createv(clog, 0, NULL, NULL,
792 CTLFLAG_PERMANENT,
793 CTLTYPE_NODE, "udf",
794 SYSCTL_DESCR("OSTA Universal File System"),
795 NULL, 0, NULL, 0,
796 CTL_VFS, 24, CTL_EOL);
797
798 sysctl_createv(clog, 0, NULL, NULL,
799 CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
800 CTLTYPE_INT, "verbose",
801 SYSCTL_DESCR("Bitmask for filesystem debugging"),
802 NULL, 0, &udf_verbose, 0,
803 CTL_VFS, 24, UDF_VERBOSE_SYSCTLOPT, CTL_EOL);
804 }
805
806 #endif /* DEBUG */
807
808