xref: /freebsd/sys/fs/cd9660/cd9660_node.c (revision 77a0943ded95b9e6438f7db70c4a28e4d93946d4)
1 /*-
2  * Copyright (c) 1982, 1986, 1989, 1994, 1995
3  *	The Regents of the University of California.  All rights reserved.
4  *
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).
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
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.
25  *
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
36  * SUCH DAMAGE.
37  *
38  *	@(#)cd9660_node.c	8.2 (Berkeley) 1/23/94
39  * $FreeBSD$
40  */
41 
42 #include <sys/param.h>
43 #include <sys/systm.h>
44 #include <sys/mount.h>
45 #include <sys/bio.h>
46 #include <sys/buf.h>
47 #include <sys/vnode.h>
48 #include <sys/malloc.h>
49 #include <sys/stat.h>
50 
51 #include <machine/mutex.h>
52 
53 #include <isofs/cd9660/iso.h>
54 #include <isofs/cd9660/cd9660_node.h>
55 #include <isofs/cd9660/cd9660_mount.h>
56 
57 /*
58  * Structures associated with iso_node caching.
59  */
60 static struct iso_node **isohashtbl;
61 static u_long isohash;
62 #define	INOHASH(device, inum)	((minor(device) + ((inum)>>12)) & isohash)
63 #ifndef NULL_SIMPLELOCKS
64 static struct simplelock cd9660_ihash_slock;
65 #endif
66 
67 static void cd9660_ihashrem __P((struct iso_node *));
68 static unsigned	cd9660_chars2ui __P((unsigned char *begin, int len));
69 
70 /*
71  * Initialize hash links for inodes and dnodes.
72  */
73 int
74 cd9660_init(vfsp)
75 	struct vfsconf *vfsp;
76 {
77 
78 	isohashtbl = hashinit(desiredvnodes, M_ISOFSMNT, &isohash);
79 	simple_lock_init(&cd9660_ihash_slock);
80 	return (0);
81 }
82 
83 int
84 cd9660_uninit(vfsp)
85 	struct vfsconf *vfsp;
86 {
87 
88 	if (isohashtbl != NULL)
89 		free(isohashtbl, M_ISOFSMNT);
90 	return (0);
91 }
92 
93 
94 /*
95  * Use the device/inum pair to find the incore inode, and return a pointer
96  * to it. If it is in core, but locked, wait for it.
97  */
98 struct vnode *
99 cd9660_ihashget(dev, inum)
100 	dev_t dev;
101 	ino_t inum;
102 {
103 	struct proc *p = curproc;		/* XXX */
104 	struct iso_node *ip;
105 	struct vnode *vp;
106 
107 loop:
108 	simple_lock(&cd9660_ihash_slock);
109 	for (ip = isohashtbl[INOHASH(dev, inum)]; ip; ip = ip->i_next) {
110 		if (inum == ip->i_number && dev == ip->i_dev) {
111 			vp = ITOV(ip);
112 			mtx_enter(&vp->v_interlock, MTX_DEF);
113 			simple_unlock(&cd9660_ihash_slock);
114 			if (vget(vp, LK_EXCLUSIVE | LK_INTERLOCK, p))
115 				goto loop;
116 			return (vp);
117 		}
118 	}
119 	simple_unlock(&cd9660_ihash_slock);
120 	return (NULL);
121 }
122 
123 /*
124  * Insert the inode into the hash table, and return it locked.
125  */
126 void
127 cd9660_ihashins(ip)
128 	struct iso_node *ip;
129 {
130 	struct proc *p = curproc;		/* XXX */
131 	struct iso_node **ipp, *iq;
132 
133 	simple_lock(&cd9660_ihash_slock);
134 	ipp = &isohashtbl[INOHASH(ip->i_dev, ip->i_number)];
135 	if ((iq = *ipp) != NULL)
136 		iq->i_prev = &ip->i_next;
137 	ip->i_next = iq;
138 	ip->i_prev = ipp;
139 	*ipp = ip;
140 	simple_unlock(&cd9660_ihash_slock);
141 
142 	lockmgr(&ip->i_vnode->v_lock, LK_EXCLUSIVE, (struct mtx *)0, p);
143 }
144 
145 /*
146  * Remove the inode from the hash table.
147  */
148 static void
149 cd9660_ihashrem(ip)
150 	register struct iso_node *ip;
151 {
152 	register struct iso_node *iq;
153 
154 	simple_lock(&cd9660_ihash_slock);
155 	if ((iq = ip->i_next) != NULL)
156 		iq->i_prev = ip->i_prev;
157 	*ip->i_prev = iq;
158 #ifdef DIAGNOSTIC
159 	ip->i_next = NULL;
160 	ip->i_prev = NULL;
161 #endif
162 	simple_unlock(&cd9660_ihash_slock);
163 }
164 
165 /*
166  * Last reference to an inode, write the inode out and if necessary,
167  * truncate and deallocate the file.
168  */
169 int
170 cd9660_inactive(ap)
171 	struct vop_inactive_args /* {
172 		struct vnode *a_vp;
173 		struct proc *a_p;
174 	} */ *ap;
175 {
176 	struct vnode *vp = ap->a_vp;
177 	struct proc *p = ap->a_p;
178 	register struct iso_node *ip = VTOI(vp);
179 	int error = 0;
180 
181 	if (prtactive && vp->v_usecount != 0)
182 		vprint("cd9660_inactive: pushing active", vp);
183 
184 	ip->i_flag = 0;
185 	VOP_UNLOCK(vp, 0, p);
186 	/*
187 	 * If we are done with the inode, reclaim it
188 	 * so that it can be reused immediately.
189 	 */
190 	if (ip->inode.iso_mode == 0)
191 		vrecycle(vp, (struct simplelock *)0, p);
192 	return error;
193 }
194 
195 /*
196  * Reclaim an inode so that it can be used for other purposes.
197  */
198 int
199 cd9660_reclaim(ap)
200 	struct vop_reclaim_args /* {
201 		struct vnode *a_vp;
202 		struct proc *a_p;
203 	} */ *ap;
204 {
205 	register struct vnode *vp = ap->a_vp;
206 	register struct iso_node *ip = VTOI(vp);
207 
208 	if (prtactive && vp->v_usecount != 0)
209 		vprint("cd9660_reclaim: pushing active", vp);
210 	/*
211 	 * Remove the inode from its hash chain.
212 	 */
213 	cd9660_ihashrem(ip);
214 	/*
215 	 * Purge old data structures associated with the inode.
216 	 */
217 	cache_purge(vp);
218 	if (ip->i_devvp) {
219 		vrele(ip->i_devvp);
220 		ip->i_devvp = 0;
221 	}
222 	lockdestroy(&ip->i_vnode->v_lock);
223 	FREE(vp->v_data, M_ISOFSNODE);
224 	vp->v_data = NULL;
225 	return (0);
226 }
227 
228 /*
229  * File attributes
230  */
231 void
232 cd9660_defattr(isodir, inop, bp, ftype)
233 	struct iso_directory_record *isodir;
234 	struct iso_node *inop;
235 	struct buf *bp;
236 	enum ISO_FTYPE ftype;
237 {
238 	struct buf *bp2 = NULL;
239 	struct iso_mnt *imp;
240 	struct iso_extended_attributes *ap = NULL;
241 	int off;
242 
243 	/* high sierra does not have timezone data, flag is one byte ahead */
244 	if (isonum_711(ftype == ISO_FTYPE_HIGH_SIERRA?
245 		       &isodir->date[6]: isodir->flags)&2) {
246 		inop->inode.iso_mode = S_IFDIR;
247 		/*
248 		 * If we return 2, fts() will assume there are no subdirectories
249 		 * (just links for the path and .), so instead we return 1.
250 		 */
251 		inop->inode.iso_links = 1;
252 	} else {
253 		inop->inode.iso_mode = S_IFREG;
254 		inop->inode.iso_links = 1;
255 	}
256 	if (!bp
257 	    && ((imp = inop->i_mnt)->im_flags & ISOFSMNT_EXTATT)
258 	    && (off = isonum_711(isodir->ext_attr_length))) {
259 		cd9660_blkatoff(ITOV(inop), (off_t)-(off << imp->im_bshift), NULL,
260 			     &bp2);
261 		bp = bp2;
262 	}
263 	if (bp) {
264 		ap = (struct iso_extended_attributes *)bp->b_data;
265 
266 		if (isonum_711(ap->version) == 1) {
267 			if (!(ap->perm[0]&0x40))
268 				inop->inode.iso_mode |= VEXEC >> 6;
269 			if (!(ap->perm[0]&0x10))
270 				inop->inode.iso_mode |= VREAD >> 6;
271 			if (!(ap->perm[0]&4))
272 				inop->inode.iso_mode |= VEXEC >> 3;
273 			if (!(ap->perm[0]&1))
274 				inop->inode.iso_mode |= VREAD >> 3;
275 			if (!(ap->perm[1]&0x40))
276 				inop->inode.iso_mode |= VEXEC;
277 			if (!(ap->perm[1]&0x10))
278 				inop->inode.iso_mode |= VREAD;
279 			inop->inode.iso_uid = isonum_723(ap->owner); /* what about 0? */
280 			inop->inode.iso_gid = isonum_723(ap->group); /* what about 0? */
281 		} else
282 			ap = NULL;
283 	}
284 	if (!ap) {
285 		inop->inode.iso_mode |= VREAD|VEXEC|(VREAD|VEXEC)>>3|(VREAD|VEXEC)>>6;
286 		inop->inode.iso_uid = (uid_t)0;
287 		inop->inode.iso_gid = (gid_t)0;
288 	}
289 	if (bp2)
290 		brelse(bp2);
291 }
292 
293 /*
294  * Time stamps
295  */
296 void
297 cd9660_deftstamp(isodir,inop,bp,ftype)
298 	struct iso_directory_record *isodir;
299 	struct iso_node *inop;
300 	struct buf *bp;
301 	enum ISO_FTYPE ftype;
302 {
303 	struct buf *bp2 = NULL;
304 	struct iso_mnt *imp;
305 	struct iso_extended_attributes *ap = NULL;
306 	int off;
307 
308 	if (!bp
309 	    && ((imp = inop->i_mnt)->im_flags & ISOFSMNT_EXTATT)
310 	    && (off = isonum_711(isodir->ext_attr_length))) {
311 		cd9660_blkatoff(ITOV(inop), (off_t)-(off << imp->im_bshift), NULL,
312 			     &bp2);
313 		bp = bp2;
314 	}
315 	if (bp) {
316 		ap = (struct iso_extended_attributes *)bp->b_data;
317 
318 		if (ftype != ISO_FTYPE_HIGH_SIERRA
319 		    && isonum_711(ap->version) == 1) {
320 			if (!cd9660_tstamp_conv17(ap->ftime,&inop->inode.iso_atime))
321 				cd9660_tstamp_conv17(ap->ctime,&inop->inode.iso_atime);
322 			if (!cd9660_tstamp_conv17(ap->ctime,&inop->inode.iso_ctime))
323 				inop->inode.iso_ctime = inop->inode.iso_atime;
324 			if (!cd9660_tstamp_conv17(ap->mtime,&inop->inode.iso_mtime))
325 				inop->inode.iso_mtime = inop->inode.iso_ctime;
326 		} else
327 			ap = NULL;
328 	}
329 	if (!ap) {
330 		cd9660_tstamp_conv7(isodir->date,&inop->inode.iso_ctime,ftype);
331 		inop->inode.iso_atime = inop->inode.iso_ctime;
332 		inop->inode.iso_mtime = inop->inode.iso_ctime;
333 	}
334 	if (bp2)
335 		brelse(bp2);
336 }
337 
338 int
339 cd9660_tstamp_conv7(pi,pu,ftype)
340 	u_char *pi;
341 	struct timespec *pu;
342 	enum ISO_FTYPE ftype;
343 {
344 	int crtime, days;
345 	int y, m, d, hour, minute, second, tz;
346 
347 	y = pi[0] + 1900;
348 	m = pi[1];
349 	d = pi[2];
350 	hour = pi[3];
351 	minute = pi[4];
352 	second = pi[5];
353 	if(ftype != ISO_FTYPE_HIGH_SIERRA)
354 		tz = pi[6];
355 	else
356 		/* original high sierra misses timezone data */
357 		tz = 0;
358 
359 	if (y < 1970) {
360 		pu->tv_sec  = 0;
361 		pu->tv_nsec = 0;
362 		return 0;
363 	} else {
364 #ifdef	ORIGINAL
365 		/* computes day number relative to Sept. 19th,1989 */
366 		/* don't even *THINK* about changing formula. It works! */
367 		days = 367*(y-1980)-7*(y+(m+9)/12)/4-3*((y+(m-9)/7)/100+1)/4+275*m/9+d-100;
368 #else
369 		/*
370 		 * Changed :-) to make it relative to Jan. 1st, 1970
371 		 * and to disambiguate negative division
372 		 */
373 		days = 367*(y-1960)-7*(y+(m+9)/12)/4-3*((y+(m+9)/12-1)/100+1)/4+275*m/9+d-239;
374 #endif
375 		crtime = ((((days * 24) + hour) * 60 + minute) * 60) + second;
376 
377 		/* timezone offset is unreliable on some disks */
378 		if (-48 <= tz && tz <= 52)
379 			crtime -= tz * 15 * 60;
380 	}
381 	pu->tv_sec  = crtime;
382 	pu->tv_nsec = 0;
383 	return 1;
384 }
385 
386 static u_int
387 cd9660_chars2ui(begin,len)
388 	u_char *begin;
389 	int len;
390 {
391 	u_int rc;
392 
393 	for (rc = 0; --len >= 0;) {
394 		rc *= 10;
395 		rc += *begin++ - '0';
396 	}
397 	return rc;
398 }
399 
400 int
401 cd9660_tstamp_conv17(pi,pu)
402 	u_char *pi;
403 	struct timespec *pu;
404 {
405 	u_char buf[7];
406 
407 	/* year:"0001"-"9999" -> -1900  */
408 	buf[0] = cd9660_chars2ui(pi,4) - 1900;
409 
410 	/* month: " 1"-"12"   -> 1 - 12 */
411 	buf[1] = cd9660_chars2ui(pi + 4,2);
412 
413 	/* day:	  " 1"-"31"   -> 1 - 31 */
414 	buf[2] = cd9660_chars2ui(pi + 6,2);
415 
416 	/* hour:  " 0"-"23"   -> 0 - 23 */
417 	buf[3] = cd9660_chars2ui(pi + 8,2);
418 
419 	/* minute:" 0"-"59"   -> 0 - 59 */
420 	buf[4] = cd9660_chars2ui(pi + 10,2);
421 
422 	/* second:" 0"-"59"   -> 0 - 59 */
423 	buf[5] = cd9660_chars2ui(pi + 12,2);
424 
425 	/* difference of GMT */
426 	buf[6] = pi[16];
427 
428 	return cd9660_tstamp_conv7(buf, pu, ISO_FTYPE_DEFAULT);
429 }
430 
431 ino_t
432 isodirino(isodir, imp)
433 	struct iso_directory_record *isodir;
434 	struct iso_mnt *imp;
435 {
436 	ino_t ino;
437 
438 	ino = (isonum_733(isodir->extent) + isonum_711(isodir->ext_attr_length))
439 	      << imp->im_bshift;
440 	return (ino);
441 }
442