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>
16 * These functions are designed to read the system areas of a directory record
17 * and extract relevant information. There are different functions provided
18 * depending upon what information we need at the time. One function fills
19 * out an inode structure, a second one extracts a filename, a third one
20 * returns a symbolic link name, and a fourth one returns the extent number
24 #define SIG(A,B) ((A) | ((B) << 8)) /* isonum_721() */
37 * This is a way of ensuring that we have something in the system
38 * use fields that is compatible with Rock Ridge. Return zero on success.
41 static int check_sp(struct rock_ridge *rr, struct inode *inode)
43 if (rr->u.SP.magic[0] != 0xbe)
45 if (rr->u.SP.magic[1] != 0xef)
47 ISOFS_SB(inode->i_sb)->s_rock_offset = rr->u.SP.skip;
51 static void setup_rock_ridge(struct iso_directory_record *de,
52 struct inode *inode, struct rock_state *rs)
54 rs->len = sizeof(struct iso_directory_record) + de->name_len[0];
57 rs->chr = (unsigned char *)de + rs->len;
58 rs->len = *((unsigned char *)de) - rs->len;
62 if (ISOFS_SB(inode->i_sb)->s_rock_offset != -1) {
63 rs->len -= ISOFS_SB(inode->i_sb)->s_rock_offset;
64 rs->chr += ISOFS_SB(inode->i_sb)->s_rock_offset;
70 static void init_rock_state(struct rock_state *rs, struct inode *inode)
72 memset(rs, 0, sizeof(*rs));
77 * Returns 0 if the caller should continue scanning, 1 if the scan must end
80 static int rock_continue(struct rock_state *rs)
83 int blocksize = 1 << rs->inode->i_blkbits;
84 const int min_de_size = offsetof(struct rock_ridge, u);
89 if ((unsigned)rs->cont_offset > blocksize - min_de_size ||
90 (unsigned)rs->cont_size > blocksize ||
91 (unsigned)(rs->cont_offset + rs->cont_size) > blocksize) {
92 printk(KERN_NOTICE "rock: corrupted directory entry. "
93 "extent=%d, offset=%d, size=%d\n",
94 rs->cont_extent, rs->cont_offset, rs->cont_size);
99 if (rs->cont_extent) {
100 struct buffer_head *bh;
102 rs->buffer = kmalloc(rs->cont_size, GFP_KERNEL);
108 bh = sb_bread(rs->inode->i_sb, rs->cont_extent);
110 memcpy(rs->buffer, bh->b_data + rs->cont_offset,
113 rs->chr = rs->buffer;
114 rs->len = rs->cont_size;
120 printk("Unable to read rock-ridge attributes\n");
129 * We think there's a record of type `sig' at rs->chr. Parse the signature
130 * and make sure that there's really room for a record of that type.
132 static int rock_check_overflow(struct rock_state *rs, int sig)
138 len = sizeof(struct SU_SP_s);
141 len = sizeof(struct SU_CE_s);
144 len = sizeof(struct SU_ER_s);
147 len = sizeof(struct RR_RR_s);
150 len = sizeof(struct RR_PX_s);
153 len = sizeof(struct RR_PN_s);
156 len = sizeof(struct RR_SL_s);
159 len = sizeof(struct RR_NM_s);
162 len = sizeof(struct RR_CL_s);
165 len = sizeof(struct RR_PL_s);
168 len = sizeof(struct RR_TF_s);
171 len = sizeof(struct RR_ZF_s);
177 len += offsetof(struct rock_ridge, u);
179 printk(KERN_NOTICE "rock: directory entry would overflow "
181 printk(KERN_NOTICE "rock: sig=0x%02x, size=%d, remaining=%d\n",
189 * return length of name field; 0: not found, -1: to be ignored
191 int get_rock_ridge_filename(struct iso_directory_record *de,
192 char *retname, struct inode *inode)
194 struct rock_state rs;
195 struct rock_ridge *rr;
201 if (!ISOFS_SB(inode->i_sb)->s_rock)
205 init_rock_state(&rs, inode);
206 setup_rock_ridge(de, inode, &rs);
209 while (rs.len > 2) { /* There may be one byte for padding somewhere */
210 rr = (struct rock_ridge *)rs.chr;
212 * Ignore rock ridge info if rr->len is out of range, but
213 * don't return -EIO because that would make the file
217 goto out; /* Something got screwed up here */
218 sig = isonum_721(rs.chr);
219 if (rock_check_overflow(&rs, sig))
224 * As above, just ignore the rock ridge info if rr->len
228 goto out; /* Something got screwed up here */
232 if ((rr->u.RR.flags[0] & RR_NM) == 0)
236 if (check_sp(rr, inode))
240 rs.cont_extent = isonum_733(rr->u.CE.extent);
241 rs.cont_offset = isonum_733(rr->u.CE.offset);
242 rs.cont_size = isonum_733(rr->u.CE.size);
250 * If the flags are 2 or 4, this indicates '.' or '..'.
251 * We don't want to do anything with this, because it
252 * screws up the code that calls us. We don't really
253 * care anyways, since we can just use the non-RR
256 if (rr->u.NM.flags & 6)
259 if (rr->u.NM.flags & ~1) {
260 printk("Unsupported NM flag settings (%d)\n",
264 if ((strlen(retname) + rr->len - 5) >= 254) {
268 strncat(retname, rr->u.NM.name, rr->len - 5);
269 retnamlen += rr->len - 5;
278 ret = rock_continue(&rs);
282 return retnamlen; /* If 0, this file did not have a NM field */
291 #define RR_REGARD_XA 1
292 #define RR_RELOC_DE 2
295 parse_rock_ridge_inode_internal(struct iso_directory_record *de,
296 struct inode *inode, int flags)
300 unsigned int reloc_block;
302 struct rock_ridge *rr;
304 struct rock_state rs;
307 if (!ISOFS_SB(inode->i_sb)->s_rock)
310 init_rock_state(&rs, inode);
311 setup_rock_ridge(de, inode, &rs);
312 if (flags & RR_REGARD_XA) {
320 while (rs.len > 2) { /* There may be one byte for padding somewhere */
321 rr = (struct rock_ridge *)rs.chr;
323 * Ignore rock ridge info if rr->len is out of range, but
324 * don't return -EIO because that would make the file
328 goto out; /* Something got screwed up here */
329 sig = isonum_721(rs.chr);
330 if (rock_check_overflow(&rs, sig))
335 * As above, just ignore the rock ridge info if rr->len
339 goto out; /* Something got screwed up here */
342 #ifndef CONFIG_ZISOFS /* No flag for SF or ZF */
344 if ((rr->u.RR.flags[0] &
345 (RR_PX | RR_TF | RR_SL | RR_CL)) == 0)
350 if (check_sp(rr, inode))
354 rs.cont_extent = isonum_733(rr->u.CE.extent);
355 rs.cont_offset = isonum_733(rr->u.CE.offset);
356 rs.cont_size = isonum_733(rr->u.CE.size);
359 ISOFS_SB(inode->i_sb)->s_rock = 1;
360 printk(KERN_DEBUG "ISO 9660 Extensions: ");
363 for (p = 0; p < rr->u.ER.len_id; p++)
364 printk("%c", rr->u.ER.data[p]);
369 inode->i_mode = isonum_733(rr->u.PX.mode);
370 set_nlink(inode, isonum_733(rr->u.PX.n_links));
371 i_uid_write(inode, isonum_733(rr->u.PX.uid));
372 i_gid_write(inode, isonum_733(rr->u.PX.gid));
377 high = isonum_733(rr->u.PN.dev_high);
378 low = isonum_733(rr->u.PN.dev_low);
380 * The Rock Ridge standard specifies that if
381 * sizeof(dev_t) <= 4, then the high field is
382 * unused, and the device number is completely
383 * stored in the low field. Some writers may
384 * ignore this subtlety,
385 * and as a result we test to see if the entire
387 * stored in the low field, and use that.
389 if ((low & ~0xff) && high == 0) {
391 MKDEV(low >> 8, low & 0xff);
400 * Some RRIP writers incorrectly place ctime in the
401 * TF_CREATE field. Try to handle this correctly for
404 /* Rock ridge never appears on a High Sierra disk */
406 if (rr->u.TF.flags & TF_CREATE) {
407 inode->i_ctime.tv_sec =
408 iso_date(rr->u.TF.times[cnt++].time,
410 inode->i_ctime.tv_nsec = 0;
412 if (rr->u.TF.flags & TF_MODIFY) {
413 inode->i_mtime.tv_sec =
414 iso_date(rr->u.TF.times[cnt++].time,
416 inode->i_mtime.tv_nsec = 0;
418 if (rr->u.TF.flags & TF_ACCESS) {
419 inode->i_atime.tv_sec =
420 iso_date(rr->u.TF.times[cnt++].time,
422 inode->i_atime.tv_nsec = 0;
424 if (rr->u.TF.flags & TF_ATTRIBUTES) {
425 inode->i_ctime.tv_sec =
426 iso_date(rr->u.TF.times[cnt++].time,
428 inode->i_ctime.tv_nsec = 0;
434 struct SL_component *slp;
435 struct SL_component *oldslp;
437 slp = &rr->u.SL.link;
438 inode->i_size = symlink_len;
441 switch (slp->flags & ~1) {
457 printk("Symlink component flag "
458 "not implemented\n");
460 slen -= slp->len + 2;
462 slp = (struct SL_component *)
463 (((char *)slp) + slp->len + 2);
477 * If this component record isn't
478 * continued, then append a '/'.
481 && (oldslp->flags & 1) == 0)
485 symlink_len = inode->i_size;
488 printk(KERN_WARNING "Attempt to read inode for "
489 "relocated directory\n");
492 if (flags & RR_RELOC_DE) {
494 "ISOFS: Recursive directory relocation "
495 "is not supported\n");
498 reloc_block = isonum_733(rr->u.CL.location);
499 if (reloc_block == ISOFS_I(inode)->i_iget5_block &&
500 ISOFS_I(inode)->i_iget5_offset == 0) {
502 "ISOFS: Directory relocation points to "
506 ISOFS_I(inode)->i_first_extent = reloc_block;
507 reloc = isofs_iget_reloc(inode->i_sb, reloc_block, 0);
509 ret = PTR_ERR(reloc);
512 inode->i_mode = reloc->i_mode;
513 set_nlink(inode, reloc->i_nlink);
514 inode->i_uid = reloc->i_uid;
515 inode->i_gid = reloc->i_gid;
516 inode->i_rdev = reloc->i_rdev;
517 inode->i_size = reloc->i_size;
518 inode->i_blocks = reloc->i_blocks;
519 inode->i_atime = reloc->i_atime;
520 inode->i_ctime = reloc->i_ctime;
521 inode->i_mtime = reloc->i_mtime;
525 case SIG('Z', 'F'): {
528 if (ISOFS_SB(inode->i_sb)->s_nocompress)
530 algo = isonum_721(rr->u.ZF.algorithm);
531 if (algo == SIG('p', 'z')) {
533 isonum_711(&rr->u.ZF.parms[1]);
534 if (block_shift > 17) {
535 printk(KERN_WARNING "isofs: "
536 "Can't handle ZF block "
541 * Note: we don't change
544 ISOFS_I(inode)->i_file_format =
545 isofs_file_compressed;
547 * Parameters to compression
548 * algorithm (header size,
551 ISOFS_I(inode)->i_format_parm[0] =
552 isonum_711(&rr->u.ZF.parms[0]);
553 ISOFS_I(inode)->i_format_parm[1] =
554 isonum_711(&rr->u.ZF.parms[1]);
561 "isofs: Unknown ZF compression "
563 rr->u.ZF.algorithm[0],
564 rr->u.ZF.algorithm[1]);
573 ret = rock_continue(&rs);
586 static char *get_symlink_chunk(char *rpnt, struct rock_ridge *rr, char *plimit)
590 struct SL_component *oldslp;
591 struct SL_component *slp;
593 slp = &rr->u.SL.link;
596 switch (slp->flags & ~1) {
598 if (slp->len > plimit - rpnt)
600 memcpy(rpnt, slp->text, slp->len);
609 if (2 > plimit - rpnt)
621 printk("Symlink component flag not implemented (%d)\n",
624 slen -= slp->len + 2;
626 slp = (struct SL_component *)((char *)slp + slp->len + 2);
630 * If there is another SL record, and this component
631 * record isn't continued, then add a slash.
633 if ((!rootflag) && (rr->u.SL.flags & 1) &&
634 !(oldslp->flags & 1)) {
643 * If this component record isn't continued, then append a '/'.
645 if (!rootflag && !(oldslp->flags & 1)) {
654 int parse_rock_ridge_inode(struct iso_directory_record *de, struct inode *inode,
657 int flags = relocated ? RR_RELOC_DE : 0;
658 int result = parse_rock_ridge_inode_internal(de, inode, flags);
661 * if rockridge flag was reset and we didn't look for attributes
662 * behind eventual XA attributes, have a look there
664 if ((ISOFS_SB(inode->i_sb)->s_rock_offset == -1)
665 && (ISOFS_SB(inode->i_sb)->s_rock == 2)) {
666 result = parse_rock_ridge_inode_internal(de, inode,
667 flags | RR_REGARD_XA);
673 * readpage() for symlinks: reads symlink contents into the page and either
674 * makes it uptodate and returns 0 or returns error (-EIO)
676 static int rock_ridge_symlink_readpage(struct file *file, struct page *page)
678 struct inode *inode = page->mapping->host;
679 struct iso_inode_info *ei = ISOFS_I(inode);
680 struct isofs_sb_info *sbi = ISOFS_SB(inode->i_sb);
681 char *link = kmap(page);
682 unsigned long bufsize = ISOFS_BUFFER_SIZE(inode);
683 struct buffer_head *bh;
686 struct iso_directory_record *raw_de;
687 unsigned long block, offset;
689 struct rock_ridge *rr;
690 struct rock_state rs;
696 init_rock_state(&rs, inode);
697 block = ei->i_iget5_block;
698 bh = sb_bread(inode->i_sb, block);
702 offset = ei->i_iget5_offset;
703 pnt = (unsigned char *)bh->b_data + offset;
705 raw_de = (struct iso_directory_record *)pnt;
708 * If we go past the end of the buffer, there is some sort of error.
710 if (offset + *pnt > bufsize)
714 * Now test for possible Rock Ridge extensions which will override
715 * some of these numbers in the inode structure.
718 setup_rock_ridge(raw_de, inode, &rs);
721 while (rs.len > 2) { /* There may be one byte for padding somewhere */
722 rr = (struct rock_ridge *)rs.chr;
724 goto out; /* Something got screwed up here */
725 sig = isonum_721(rs.chr);
726 if (rock_check_overflow(&rs, sig))
731 goto out; /* corrupted isofs */
735 if ((rr->u.RR.flags[0] & RR_SL) == 0)
739 if (check_sp(rr, inode))
743 rpnt = get_symlink_chunk(rpnt, rr,
744 link + (PAGE_SIZE - 1));
749 /* This tells is if there is a continuation record */
750 rs.cont_extent = isonum_733(rr->u.CE.extent);
751 rs.cont_offset = isonum_733(rr->u.CE.offset);
752 rs.cont_size = isonum_733(rr->u.CE.size);
757 ret = rock_continue(&rs);
767 SetPageUptodate(page);
772 /* error exit from macro */
777 printk("unable to read i-node block");
780 printk("symlink spans iso9660 blocks\n");
790 const struct address_space_operations isofs_symlink_aops = {
791 .readpage = rock_ridge_symlink_readpage