public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
To: Michal Rokos <m.rokos@sh.cvut.cz>
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2.6.0-test11] VFAT fix for UTF-8 and trailing dots
Date: Sun, 07 Dec 2003 00:52:07 +0900	[thread overview]
Message-ID: <87d6b2vt94.fsf@devron.myhome.or.jp> (raw)
In-Reply-To: <20031206085539.GA3134@nightmare.sh.cvut.cz>

Michal Rokos <m.rokos@sh.cvut.cz> writes:

> The problem is: even if vfat_striptail_len() counts len of name without
> trailing dots and sets len to the correct value, utf8_mbstowcs() doesn't
> care about len and takes whole name.
> So dirs and files with dots can be created on vfat fs and that will
> cause some problems as you know :)

[...]

>  	if (utf8) {
> +		int name_len = strlen(name);
> +
>  		*outlen = utf8_mbstowcs((wchar_t *)outname, name, PAGE_SIZE);
> -		if (name[len-1] == '.')
> -			*outlen-=2;
> +
> +		/* 
> +		 * We stripped '.'s before and set len appropriately,
> +		 * but utf8_mbstowcs doesn't care about len
> +		 */
> +		*outlen -= (name_len-len);
> +
>  		op = &outname[*outlen * sizeof(wchar_t)];

Indeed. However, this looks not right fix. I think utf8_mbstowcs()
should take the length of both outname and name, so we should fix the
utf8_mbstowcs().

For example, utf8_mbstowcs(outbuf, outlen, inbuf, inlen);

Thanks.
-- 
OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>

  reply	other threads:[~2003-12-06 15:52 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-12-06  8:55 [PATCH 2.6.0-test11] VFAT fix for UTF-8 and trailing dots Michal Rokos
2003-12-06 15:52 ` OGAWA Hirofumi [this message]
2003-12-06 19:29   ` Michal Rokos
2003-12-06 21:02     ` OGAWA Hirofumi

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=87d6b2vt94.fsf@devron.myhome.or.jp \
    --to=hirofumi@mail.parknet.co.jp \
    --cc=linux-kernel@vger.kernel.org \
    --cc=m.rokos@sh.cvut.cz \
    /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