2 * Copyright (c) 1992, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley
6 * by Pace Willisson (pace@blitz.com). The Rock Ridge Extension
7 * Support code is derived from software contributed to Berkeley
8 * by Atsushi Murai (amurai@spec.co.jp).
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the University of
21 * California, Berkeley and its contributors.
22 * 4. Neither the name of the University nor the names of its contributors
23 * may be used to endorse or promote products derived from this software
24 * without specific prior written permission.
26 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 * @(#)mount_cd9660.c 8.7 (Berkeley) 5/1/95
40 * @(#) Copyright (c) 1992, 1993, 1994 The Regents of the University of California. All rights reserved.
41 * @(#)mount_cd9660.c 8.7 (Berkeley) 5/1/95
42 * $FreeBSD: src/sbin/mount_cd9660/mount_cd9660.c,v 1.15.2.3 2001/03/14 12:05:01 bp Exp $
43 * $DragonFly: src/sbin/mount_cd9660/mount_cd9660.c,v 1.5 2005/04/02 21:43:15 dillon Exp $
48 #include <sys/param.h>
49 #include <sys/mount.h>
50 #include <sys/../vfs/isofs/cd9660/cd9660_mount.h>
62 struct mntopt mopts
[] = {
65 { "extatt", 0, ISOFSMNT_EXTATT
, 1 },
66 { "gens", 0, ISOFSMNT_GENS
, 1 },
67 { "rrip", 1, ISOFSMNT_NORRIP
, 1 },
68 { "joliet", 1, ISOFSMNT_NOJOLIET
, 1 },
69 { "strictjoliet", 1, ISOFSMNT_BROKENJOLIET
, 1 },
73 static int get_ssector(const char *dev
);
74 static void usage(void);
77 main(int argc
, char **argv
)
80 int ch
, mntflags
, opts
;
81 char *dev
, *dir
, mntpath
[MAXPATHLEN
];
85 mntflags
= opts
= verbose
= 0;
86 memset(&args
, 0, sizeof args
);
88 while ((ch
= getopt(argc
, argv
, "begjo:rs:v")) != -1)
91 opts
|= ISOFSMNT_BROKENJOLIET
;
94 opts
|= ISOFSMNT_EXTATT
;
97 opts
|= ISOFSMNT_GENS
;
100 opts
|= ISOFSMNT_NOJOLIET
;
103 getmntopts(optarg
, mopts
, &mntflags
, &opts
);
106 opts
|= ISOFSMNT_NORRIP
;
109 args
.ssector
= atoi(optarg
);
128 * Resolve the mountpoint with realpath(3) and remove unnecessary
129 * slashes from the devicename if there are any.
131 checkpath(dir
, mntpath
);
134 #define DEFAULT_ROOTUID -2
136 * ISO 9660 filesystems are not writeable.
138 mntflags
|= MNT_RDONLY
;
139 args
.export
.ex_flags
= MNT_EXRDONLY
;
141 args
.export
.ex_root
= DEFAULT_ROOTUID
;
144 if (args
.ssector
== -1) {
146 * The start of the session has not been specified on
147 * the command line. If we can successfully read the
148 * TOC of a CD-ROM, use the last data track we find.
149 * Otherwise, just use 0, in order to mount the very
150 * first session. This is compatible with the
151 * historic behaviour of mount_cd9660(8). If the user
152 * has specified -s <ssector> above, we don't get here
153 * and leave the user's will.
155 if ((args
.ssector
= get_ssector(dev
)) == -1) {
157 printf("could not determine starting sector, "
158 "using very first session\n");
161 printf("using starting sector %d\n", args
.ssector
);
164 error
= getvfsbyname("cd9660", &vfc
);
165 if (error
&& vfsisloadable("cd9660")) {
166 if (vfsload("cd9660"))
167 err(EX_OSERR
, "vfsload(cd9660)");
168 endvfsent(); /* flush cache */
169 error
= getvfsbyname("cd9660", &vfc
);
172 errx(1, "cd9660 filesystem is not available");
174 if (mount(vfc
.vfc_name
, mntpath
, mntflags
, &args
) < 0)
175 err(1, "%s", args
.fspec
);
183 "usage: mount_cd9660 [-egrv] [-o options] [-s startsector] special node\n");
188 get_ssector(const char *dev
)
190 struct ioc_toc_header h
;
191 struct ioc_read_toc_entry t
;
192 struct cd_toc_entry toc_buffer
[100];
193 int fd
, ntocentries
, i
;
195 if ((fd
= open(dev
, O_RDONLY
)) == -1)
197 if (ioctl(fd
, CDIOREADTOCHEADER
, &h
) == -1) {
202 ntocentries
= h
.ending_track
- h
.starting_track
+ 1;
203 if (ntocentries
> 100) {
204 /* unreasonable, only 100 allowed */
208 t
.address_format
= CD_LBA_FORMAT
;
209 t
.starting_track
= 0;
210 t
.data_len
= ntocentries
* sizeof(struct cd_toc_entry
);
213 if (ioctl(fd
, CDIOREADTOCENTRYS
, (char *) &t
) == -1) {
219 for (i
= ntocentries
- 1; i
>= 0; i
--)
220 if ((toc_buffer
[i
].control
& 4) != 0)
221 /* found a data track */
226 return ntohl(toc_buffer
[i
].addr
.lba
);