mount_udf.c revision 101270
1/*
2 * Copyright (c) 1992, 1993, 1994
3 *      The Regents of the University of California.  All rights reserved.
4 * Copyright (c) 2002 Scott Long
5 *
6 * This code is derived from software contributed to Berkeley
7 * by Pace Willisson (pace@blitz.com).  The Rock Ridge Extension
8 * Support code is derived from software contributed to Berkeley
9 * by Atsushi Murai (amurai@spec.co.jp).
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 *    notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 *    notice, this list of conditions and the following disclaimer in the
18 *    documentation and/or other materials provided with the distribution.
19 * 3. All advertising materials mentioning features or use of this software
20 *    must display the following acknowledgement:
21 *	This product includes software developed by the University of
22 *	California, Berkeley and its contributors.
23 * 4. Neither the name of the University nor the names of its contributors
24 *    may be used to endorse or promote products derived from this software
25 *    without specific prior written permission.
26 *
27 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
38 *
39 * $FreeBSD: head/sbin/mount_udf/mount_udf.c 101270 2002-08-03 16:03:21Z mux $
40 */
41
42/*
43 * This is just a rip-off of mount_iso9660.c.  It's been vastly simplified
44 * because UDF doesn't take any options at this time.
45 */
46
47#include <sys/cdio.h>
48#include <sys/file.h>
49#include <sys/param.h>
50#include <sys/mount.h>
51
52#include <err.h>
53#include <errno.h>
54#include <stdlib.h>
55#include <stdio.h>
56#include <string.h>
57#include <sysexits.h>
58#include <unistd.h>
59
60#include "mntopts.h"
61
62struct mntopt mopts[] = {
63	MOPT_STDOPTS,
64	MOPT_UPDATE,
65	{ NULL, 0, 0, 0 }
66};
67
68void	usage(void);
69
70int
71main(int argc, char **argv)
72{
73	struct iovec iov[6];
74	int ch, mntflags, opts;
75	char *dev, *dir, mntpath[MAXPATHLEN];
76	int verbose;
77
78	mntflags = opts = verbose = 0;
79	while ((ch = getopt(argc, argv, "o:v")) != -1)
80		switch (ch) {
81		case 'o':
82			getmntopts(optarg, mopts, &mntflags, &opts);
83			break;
84		case 'v':
85			verbose++;
86			break;
87		case '?':
88		default:
89			usage();
90		}
91	argc -= optind;
92	argv += optind;
93
94	if (argc != 2)
95		usage();
96
97	dev = argv[0];
98	dir = argv[1];
99
100	/*
101	 * Resolve the mountpoint with realpath(3) and remove unnecessary
102	 * slashes from the devicename if there are any.
103	 */
104	(void)checkpath(dir, mntpath);
105	(void)rmslashes(dev, dev);
106
107	/*
108	 * UDF filesystems are not writeable.
109	 */
110	mntflags |= MNT_RDONLY;
111
112	iov[0].iov_base = "fstype";
113	iov[0].iov_len = sizeof("fstype");
114	iov[1].iov_base = "udf";
115	iov[1].iov_len = strlen(iov[1].iov_base) + 1;
116	iov[2].iov_base = "fspath";
117	iov[2].iov_len = sizeof("fspath");
118	iov[3].iov_base = mntpath;
119	iov[3].iov_len = strlen(mntpath) + 1;
120	iov[4].iov_base = "from";
121	iov[4].iov_len = sizeof("from");
122	iov[5].iov_base = dev;
123	iov[5].iov_len = strlen(dev) + 1;
124	if (nmount(iov, 6, mntflags) < 0)
125		err(1, "%s", dev);
126	exit(0);
127}
128
129void
130usage(void)
131{
132	(void)fprintf(stderr,
133		"usage: mount_udf [-v] [-o options] special node\n");
134	exit(EX_USAGE);
135}
136