linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jan Kara <jack@suse.cz>
To: Ondrej Zary <linux@rainbow-software.org>
Cc: linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2] [RFC] isofs: work-around for Rock Ridge+Joliet CDs with empty ISO root directory
Date: Fri, 1 Oct 2010 00:23:54 +0200	[thread overview]
Message-ID: <20100930222354.GG3573@quack.suse.cz> (raw)
In-Reply-To: <201009052139.06313.linux@rainbow-software.org>

On Sun 05-09-10 21:39:04, Ondrej Zary wrote:
> If a CD has both Rock Ridge and Joliet extensions and the ISO root directory
> is empty, no files are visible. Disable Rock Ridge extensions in this case and
> use Joliet root directory instead.
  Thanks for the patch but as you properly mention in the comment, such CDs
are rather broken. Proper way to mount them would be to use 'norock' mount
option (which is essentially manual equivalent of your patch). So I'd
prefer to not introduce this workaround into the kernel. Or do you have
some good reason why kernel should handle this?

								Honza
> 
> Signed-off-by: Ondrej Zary <linux@rainbow-software.org>
> ---
> This is v2 with variable initialization.
> 
> --- linux-2.6.35-rc2/fs/isofs/inode.c	2010-06-06 05:43:24.000000000 +0200
> +++ linux-2.6.35-rc3/fs/isofs/inode.c	2010-08-31 23:43:46.000000000 +0200
> @@ -549,6 +549,34 @@ static unsigned int isofs_get_last_sessi
>  }
>  
>  /*
> + * Check if root directory is empty (has less than 3 files).
> + *
> + * Used to detect broken CDs where ISO root directory is empty but Joliet root
> + * directory is OK. If such CD has Rock Ridge extensions, they will be disabled
> + * (and Joliet used instead) or else no files would be visible.
> + */
> +static bool rootdir_empty(struct super_block *sb, unsigned long block)
> +{
> +	int offset = 0, files = 0, de_len;
> +	struct iso_directory_record *de;
> +	struct buffer_head *bh;
> +
> +	bh = sb_bread(sb, block);
> +	if (!bh)
> +		return true;
> +	while (files < 3) {
> +		de = (struct iso_directory_record *) (bh->b_data + offset);
> +		de_len = *(unsigned char *) de;
> +		if (de_len == 0)
> +			break;
> +		files++;
> +		offset += de_len;
> +	}
> +	brelse(bh);
> +	return files < 3;
> +}
> +
> +/*
>   * Initialize the superblock and read the root inode.
>   *
>   * Note: a check_disk_change() has been done immediately prior
> @@ -842,6 +870,18 @@ root_found:
>  		goto out_no_root;
>  
>  	/*
> +	 * Fix for broken CDs with Rock Ridge and empty ISO root directory but
> +	 * correct Joliet root directory.
> +	 */
> +	if (sbi->s_rock == 1 && joliet_level &&
> +				rootdir_empty(s, sbi->s_firstdatazone)) {
> +		printk(KERN_NOTICE
> +			"ISOFS: primary root directory is empty. "
> +			"Disabling Rock Ridge and switching to Joliet.");
> +		sbi->s_rock = 0;
> +	}
> +
> +	/*
>  	 * If this disk has both Rock Ridge and Joliet on it, then we
>  	 * want to use Rock Ridge by default.  This can be overridden
>  	 * by using the norock mount option.  There is still one other
> 
> 
> -- 
> Ondrej Zary
> --
> To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
-- 
Jan Kara <jack@suse.cz>
SUSE Labs, CR

  reply	other threads:[~2010-09-30 22:23 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-09-05 19:39 [PATCH v2] [RFC] isofs: work-around for Rock Ridge+Joliet CDs with empty ISO root directory Ondrej Zary
2010-09-30 22:23 ` Jan Kara [this message]
  -- strict thread matches above, loose matches on Subject: below --
2010-08-31 18:10 [PATCH] [RFC] [resend] " Ondrej Zary
2010-08-31 20:44 ` Guenter Roeck
2010-08-31 21:51   ` [PATCH v2] [RFC] " Ondrej Zary

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20100930222354.GG3573@quack.suse.cz \
    --to=jack@suse.cz \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@rainbow-software.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).