udf support

This commit is contained in:
pooka 2007-08-14 13:56:58 +00:00
parent 243a4686b8
commit ea312e5c20
4 changed files with 115 additions and 2 deletions

View File

@ -1,9 +1,9 @@
# $NetBSD: Makefile.rumpfs,v 1.5 2007/08/09 09:19:30 pooka Exp $
# $NetBSD: Makefile.rumpfs,v 1.6 2007/08/14 13:56:58 pooka Exp $
#
.include <bsd.own.mk>
RUMPFSLIST= cd9660fs efs ext2fs ffs hfs lfs msdosfs ntfs tmpfs
RUMPFSLIST= cd9660fs efs ext2fs ffs hfs lfs msdosfs ntfs tmpfs udf
RUMPFSALL= ${RUMPFSLIST} p2k ufs
RUMPFSLIBDIR?= ${NETBSDSRCDIR}/sys/rump/fs/lib

View File

@ -0,0 +1,9 @@
# $NetBSD: Makefile,v 1.1 2007/08/14 13:56:59 pooka Exp $
#
PROG= udf
LDADD+= ${RUMPFSLD_UDF}
DPADD+= ${RUMPFSDP_UDF}
.include <bsd.prog.mk>

89
sys/rump/fs/bin/udf/udf.c Normal file
View File

@ -0,0 +1,89 @@
/* $NetBSD: udf.c,v 1.1 2007/08/14 13:56:59 pooka Exp $ */
/*
* Copyright (c) 2007 Antti Kantee. All Rights Reserved.
*
* Development of this software was supported by Google Summer of Code.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <sys/types.h>
#include <sys/mount.h>
#include <fs/udf/udf_mount.h>
#include <err.h>
#include <puffs.h>
#include <stdlib.h>
#include <unistd.h>
#include "p2k.h"
static void
usage(void)
{
errx(1, "usage: %s [-o opts] dev mountpath", getprogname());
}
int
main(int argc, char *argv[])
{
extern struct vfsops udf_vfsops;
struct udf_args args;
mntoptparse_t mp;
int mntflags, pflags;
int rv, ch;
setprogname(argv[0]);
mntflags = pflags = 0;
while ((ch = getopt(argc, argv, "o:")) != -1) {
switch (ch) {
case 'o':
mp = getmntopts(optarg, puffsmopts, &mntflags, &pflags);
if (mp == NULL)
err(1, "getmntops");
freemntopts(mp);
break;
default:
usage();
/* NOTREACHED */
}
}
argc -= optind;
argv += optind;
if (argc != 2)
usage();
memset(&args, 0, sizeof(args));
args.version = UDFMNT_VERSION;
args.fspec = argv[0];
rv = p2k_run_fs(&udf_vfsops, argv[0], argv[1], mntflags | MNT_RDONLY,
&args, sizeof(args), pflags);
if (rv)
err(1, "mount");
return 0;
}

View File

@ -0,0 +1,15 @@
# $NetBSD: Makefile,v 1.1 2007/08/14 13:56:58 pooka Exp $
#
.include <bsd.own.mk>
LIB= udf
.PATH: ${NETBSDSRCDIR}/sys/fs/udf
SRCS= udf_osta.c udf_subr.c udf_vfsops.c udf_vnops.c
CFLAGS+= -Wno-pointer-sign
.include <bsd.lib.mk>
.include <bsd.klinks.mk>