2 * linux/fs/isofs/rock.c
4 * (C) 1992, 1993 Eric Youngdale
6 * Rock Ridge Extensions to iso9660
9 #include <linux/slab.h>
10 #include <linux/pagemap.h>
11 #include <linux/smp_lock.h>
17 * These functions are designed to read the system areas of a directory record
18 * and extract relevant information. There are different functions provided
19 * depending upon what information we need at the time. One function fills
20 * out an inode structure, a second one extracts a filename, a third one
21 * returns a symbolic link name, and a fourth one returns the extent number
25 #define SIG(A,B) ((A) | ((B) << 8)) /* isonum_721() */
38 * This is a way of ensuring that we have something in the system
39 * use fields that is compatible with Rock Ridge. Return zero on success.
42 static int check_sp(struct rock_ridge
*rr
, struct inode
*inode
)
44 if (rr
->u
.SP
.magic
[0] != 0xbe)
46 if (rr
->u
.SP
.magic
[1] != 0xef)
48 ISOFS_SB(inode
->i_sb
)->s_rock_offset
= rr
->u
.SP
.skip
;
52 static void setup_rock_ridge(struct iso_directory_record
*de
,
53 struct inode
*inode
, struct rock_state
*rs
)
55 rs
->len
= sizeof(struct iso_directory_record
) + de
->name_len
[0];
58 rs
->chr
= (unsigned char *)de
+ rs
->len
;
59 rs
->len
= *((unsigned char *)de
) - rs
->len
;
63 if (ISOFS_SB(inode
->i_sb
)->s_rock_offset
!= -1) {
64 rs
->len
-= ISOFS_SB(inode
->i_sb
)->s_rock_offset
;
65 rs
->chr
+= ISOFS_SB(inode
->i_sb
)->s_rock_offset
;
71 static void init_rock_state(struct rock_state
*rs
, struct inode
*inode
)
73 memset(rs
, 0, sizeof(*rs
));
78 * Returns 0 if the caller should continue scanning, 1 if the scan must end
81 static int rock_continue(struct rock_state
*rs
)
84 int blocksize
= 1 << rs
->inode
->i_blkbits
;
85 const int min_de_size
= offsetof(struct rock_ridge
, u
);
90 if ((unsigned)rs
->cont_offset
> blocksize
- min_de_size
||
91 (unsigned)rs
->cont_size
> blocksize
||
92 (unsigned)(rs
->cont_offset
+ rs
->cont_size
) > blocksize
) {
93 printk(KERN_NOTICE
"rock: corrupted directory entry. "
94 "extent=%d, offset=%d, size=%d\n",
95 rs
->cont_extent
, rs
->cont_offset
, rs
->cont_size
);
100 if (rs
->cont_extent
) {
101 struct buffer_head
*bh
;
103 rs
->buffer
= kmalloc(rs
->cont_size
, GFP_KERNEL
);
109 bh
= sb_bread(rs
->inode
->i_sb
, rs
->cont_extent
);
111 memcpy(rs
->buffer
, bh
->b_data
+ rs
->cont_offset
,
114 rs
->chr
= rs
->buffer
;
115 rs
->len
= rs
->cont_size
;
121 printk("Unable to read rock-ridge attributes\n");
130 * We think there's a record of type `sig' at rs->chr. Parse the signature
131 * and make sure that there's really room for a record of that type.
133 static int rock_check_overflow(struct rock_state
*rs
, int sig
)
139 len
= sizeof(struct SU_SP_s
);
142 len
= sizeof(struct SU_CE_s
);
145 len
= sizeof(struct SU_ER_s
);
148 len
= sizeof(struct RR_RR_s
);
151 len
= sizeof(struct RR_PX_s
);
154 len
= sizeof(struct RR_PN_s
);
157 len
= sizeof(struct RR_SL_s
);
160 len
= sizeof(struct RR_NM_s
);
163 len
= sizeof(struct RR_CL_s
);
166 len
= sizeof(struct RR_PL_s
);
169 len
= sizeof(struct RR_TF_s
);
172 len
= sizeof(struct RR_ZF_s
);
178 len
+= offsetof(struct rock_ridge
, u
);
180 printk(KERN_NOTICE
"rock: directory entry would overflow "
182 printk(KERN_NOTICE
"rock: sig=0x%02x, size=%d, remaining=%d\n",
190 * return length of name field; 0: not found, -1: to be ignored
192 int get_rock_ridge_filename(struct iso_directory_record
*de
,
193 char *retname
, struct inode
*inode
)
195 struct rock_state rs
;
196 struct rock_ridge
*rr
;
202 if (!ISOFS_SB(inode
->i_sb
)->s_rock
)
206 init_rock_state(&rs
, inode
);
207 setup_rock_ridge(de
, inode
, &rs
);
210 while (rs
.len
> 2) { /* There may be one byte for padding somewhere */
211 rr
= (struct rock_ridge
*)rs
.chr
;
213 * Ignore rock ridge info if rr->len is out of range, but
214 * don't return -EIO because that would make the file
218 goto out
; /* Something got screwed up here */
219 sig
= isonum_721(rs
.chr
);
220 if (rock_check_overflow(&rs
, sig
))
225 * As above, just ignore the rock ridge info if rr->len
229 goto out
; /* Something got screwed up here */
233 if ((rr
->u
.RR
.flags
[0] & RR_NM
) == 0)
237 if (check_sp(rr
, inode
))
241 rs
.cont_extent
= isonum_733(rr
->u
.CE
.extent
);
242 rs
.cont_offset
= isonum_733(rr
->u
.CE
.offset
);
243 rs
.cont_size
= isonum_733(rr
->u
.CE
.size
);
251 * If the flags are 2 or 4, this indicates '.' or '..'.
252 * We don't want to do anything with this, because it
253 * screws up the code that calls us. We don't really
254 * care anyways, since we can just use the non-RR
257 if (rr
->u
.NM
.flags
& 6)
260 if (rr
->u
.NM
.flags
& ~1) {
261 printk("Unsupported NM flag settings (%d)\n",
265 if ((strlen(retname
) + rr
->len
- 5) >= 254) {
269 strncat(retname
, rr
->u
.NM
.name
, rr
->len
- 5);
270 retnamlen
+= rr
->len
- 5;
279 ret
= rock_continue(&rs
);
283 return retnamlen
; /* If 0, this file did not have a NM field */
293 parse_rock_ridge_inode_internal(struct iso_directory_record
*de
,
294 struct inode
*inode
, int regard_xa
)
299 struct rock_ridge
*rr
;
301 struct rock_state rs
;
304 if (!ISOFS_SB(inode
->i_sb
)->s_rock
)
307 init_rock_state(&rs
, inode
);
308 setup_rock_ridge(de
, inode
, &rs
);
317 while (rs
.len
> 2) { /* There may be one byte for padding somewhere */
318 rr
= (struct rock_ridge
*)rs
.chr
;
320 * Ignore rock ridge info if rr->len is out of range, but
321 * don't return -EIO because that would make the file
325 goto out
; /* Something got screwed up here */
326 sig
= isonum_721(rs
.chr
);
327 if (rock_check_overflow(&rs
, sig
))
332 * As above, just ignore the rock ridge info if rr->len
336 goto out
; /* Something got screwed up here */
339 #ifndef CONFIG_ZISOFS /* No flag for SF or ZF */
341 if ((rr
->u
.RR
.flags
[0] &
342 (RR_PX
| RR_TF
| RR_SL
| RR_CL
)) == 0)
347 if (check_sp(rr
, inode
))
351 rs
.cont_extent
= isonum_733(rr
->u
.CE
.extent
);
352 rs
.cont_offset
= isonum_733(rr
->u
.CE
.offset
);
353 rs
.cont_size
= isonum_733(rr
->u
.CE
.size
);
356 ISOFS_SB(inode
->i_sb
)->s_rock
= 1;
357 printk(KERN_DEBUG
"ISO 9660 Extensions: ");
360 for (p
= 0; p
< rr
->u
.ER
.len_id
; p
++)
361 printk("%c", rr
->u
.ER
.data
[p
]);
366 inode
->i_mode
= isonum_733(rr
->u
.PX
.mode
);
367 inode
->i_nlink
= isonum_733(rr
->u
.PX
.n_links
);
368 inode
->i_uid
= isonum_733(rr
->u
.PX
.uid
);
369 inode
->i_gid
= isonum_733(rr
->u
.PX
.gid
);
374 high
= isonum_733(rr
->u
.PN
.dev_high
);
375 low
= isonum_733(rr
->u
.PN
.dev_low
);
377 * The Rock Ridge standard specifies that if
378 * sizeof(dev_t) <= 4, then the high field is
379 * unused, and the device number is completely
380 * stored in the low field. Some writers may
381 * ignore this subtlety,
382 * and as a result we test to see if the entire
384 * stored in the low field, and use that.
386 if ((low
& ~0xff) && high
== 0) {
388 MKDEV(low
>> 8, low
& 0xff);
397 * Some RRIP writers incorrectly place ctime in the
398 * TF_CREATE field. Try to handle this correctly for
401 /* Rock ridge never appears on a High Sierra disk */
403 if (rr
->u
.TF
.flags
& TF_CREATE
) {
404 inode
->i_ctime
.tv_sec
=
405 iso_date(rr
->u
.TF
.times
[cnt
++].time
,
407 inode
->i_ctime
.tv_nsec
= 0;
409 if (rr
->u
.TF
.flags
& TF_MODIFY
) {
410 inode
->i_mtime
.tv_sec
=
411 iso_date(rr
->u
.TF
.times
[cnt
++].time
,
413 inode
->i_mtime
.tv_nsec
= 0;
415 if (rr
->u
.TF
.flags
& TF_ACCESS
) {
416 inode
->i_atime
.tv_sec
=
417 iso_date(rr
->u
.TF
.times
[cnt
++].time
,
419 inode
->i_atime
.tv_nsec
= 0;
421 if (rr
->u
.TF
.flags
& TF_ATTRIBUTES
) {
422 inode
->i_ctime
.tv_sec
=
423 iso_date(rr
->u
.TF
.times
[cnt
++].time
,
425 inode
->i_ctime
.tv_nsec
= 0;
431 struct SL_component
*slp
;
432 struct SL_component
*oldslp
;
434 slp
= &rr
->u
.SL
.link
;
435 inode
->i_size
= symlink_len
;
438 switch (slp
->flags
& ~1) {
454 printk("Symlink component flag "
455 "not implemented\n");
457 slen
-= slp
->len
+ 2;
459 slp
= (struct SL_component
*)
460 (((char *)slp
) + slp
->len
+ 2);
474 * If this component record isn't
475 * continued, then append a '/'.
478 && (oldslp
->flags
& 1) == 0)
482 symlink_len
= inode
->i_size
;
485 printk(KERN_WARNING
"Attempt to read inode for "
486 "relocated directory\n");
489 ISOFS_I(inode
)->i_first_extent
=
490 isonum_733(rr
->u
.CL
.location
);
492 isofs_iget(inode
->i_sb
,
493 ISOFS_I(inode
)->i_first_extent
,
496 ret
= PTR_ERR(reloc
);
499 inode
->i_mode
= reloc
->i_mode
;
500 inode
->i_nlink
= reloc
->i_nlink
;
501 inode
->i_uid
= reloc
->i_uid
;
502 inode
->i_gid
= reloc
->i_gid
;
503 inode
->i_rdev
= reloc
->i_rdev
;
504 inode
->i_size
= reloc
->i_size
;
505 inode
->i_blocks
= reloc
->i_blocks
;
506 inode
->i_atime
= reloc
->i_atime
;
507 inode
->i_ctime
= reloc
->i_ctime
;
508 inode
->i_mtime
= reloc
->i_mtime
;
512 case SIG('Z', 'F'): {
515 if (ISOFS_SB(inode
->i_sb
)->s_nocompress
)
517 algo
= isonum_721(rr
->u
.ZF
.algorithm
);
518 if (algo
== SIG('p', 'z')) {
520 isonum_711(&rr
->u
.ZF
.parms
[1]);
521 if (block_shift
> 17) {
522 printk(KERN_WARNING
"isofs: "
523 "Can't handle ZF block "
528 * Note: we don't change
531 ISOFS_I(inode
)->i_file_format
=
532 isofs_file_compressed
;
534 * Parameters to compression
535 * algorithm (header size,
538 ISOFS_I(inode
)->i_format_parm
[0] =
539 isonum_711(&rr
->u
.ZF
.parms
[0]);
540 ISOFS_I(inode
)->i_format_parm
[1] =
541 isonum_711(&rr
->u
.ZF
.parms
[1]);
548 "isofs: Unknown ZF compression "
550 rr
->u
.ZF
.algorithm
[0],
551 rr
->u
.ZF
.algorithm
[1]);
560 ret
= rock_continue(&rs
);
573 static char *get_symlink_chunk(char *rpnt
, struct rock_ridge
*rr
, char *plimit
)
577 struct SL_component
*oldslp
;
578 struct SL_component
*slp
;
580 slp
= &rr
->u
.SL
.link
;
583 switch (slp
->flags
& ~1) {
585 if (slp
->len
> plimit
- rpnt
)
587 memcpy(rpnt
, slp
->text
, slp
->len
);
596 if (2 > plimit
- rpnt
)
608 printk("Symlink component flag not implemented (%d)\n",
611 slen
-= slp
->len
+ 2;
613 slp
= (struct SL_component
*)((char *)slp
+ slp
->len
+ 2);
617 * If there is another SL record, and this component
618 * record isn't continued, then add a slash.
620 if ((!rootflag
) && (rr
->u
.SL
.flags
& 1) &&
621 !(oldslp
->flags
& 1)) {
630 * If this component record isn't continued, then append a '/'.
632 if (!rootflag
&& !(oldslp
->flags
& 1)) {
641 int parse_rock_ridge_inode(struct iso_directory_record
*de
, struct inode
*inode
)
643 int result
= parse_rock_ridge_inode_internal(de
, inode
, 0);
646 * if rockridge flag was reset and we didn't look for attributes
647 * behind eventual XA attributes, have a look there
649 if ((ISOFS_SB(inode
->i_sb
)->s_rock_offset
== -1)
650 && (ISOFS_SB(inode
->i_sb
)->s_rock
== 2)) {
651 result
= parse_rock_ridge_inode_internal(de
, inode
, 14);
657 * readpage() for symlinks: reads symlink contents into the page and either
658 * makes it uptodate and returns 0 or returns error (-EIO)
660 static int rock_ridge_symlink_readpage(struct file
*file
, struct page
*page
)
662 struct inode
*inode
= page
->mapping
->host
;
663 struct iso_inode_info
*ei
= ISOFS_I(inode
);
664 char *link
= kmap(page
);
665 unsigned long bufsize
= ISOFS_BUFFER_SIZE(inode
);
666 struct buffer_head
*bh
;
669 struct iso_directory_record
*raw_de
;
670 unsigned long block
, offset
;
672 struct rock_ridge
*rr
;
673 struct rock_state rs
;
676 if (!ISOFS_SB(inode
->i_sb
)->s_rock
)
679 init_rock_state(&rs
, inode
);
680 block
= ei
->i_iget5_block
;
682 bh
= sb_bread(inode
->i_sb
, block
);
686 offset
= ei
->i_iget5_offset
;
687 pnt
= (unsigned char *)bh
->b_data
+ offset
;
689 raw_de
= (struct iso_directory_record
*)pnt
;
692 * If we go past the end of the buffer, there is some sort of error.
694 if (offset
+ *pnt
> bufsize
)
698 * Now test for possible Rock Ridge extensions which will override
699 * some of these numbers in the inode structure.
702 setup_rock_ridge(raw_de
, inode
, &rs
);
705 while (rs
.len
> 2) { /* There may be one byte for padding somewhere */
706 rr
= (struct rock_ridge
*)rs
.chr
;
708 goto out
; /* Something got screwed up here */
709 sig
= isonum_721(rs
.chr
);
710 if (rock_check_overflow(&rs
, sig
))
715 goto out
; /* corrupted isofs */
719 if ((rr
->u
.RR
.flags
[0] & RR_SL
) == 0)
723 if (check_sp(rr
, inode
))
727 rpnt
= get_symlink_chunk(rpnt
, rr
,
728 link
+ (PAGE_SIZE
- 1));
733 /* This tells is if there is a continuation record */
734 rs
.cont_extent
= isonum_733(rr
->u
.CE
.extent
);
735 rs
.cont_offset
= isonum_733(rr
->u
.CE
.offset
);
736 rs
.cont_size
= isonum_733(rr
->u
.CE
.size
);
741 ret
= rock_continue(&rs
);
752 SetPageUptodate(page
);
757 /* error exit from macro */
762 printk("unable to read i-node block");
765 printk("symlink spans iso9660 blocks\n");
776 const struct address_space_operations isofs_symlink_aops
= {
777 .readpage
= rock_ridge_symlink_readpage