From nobody Sat Apr 5 14:30:06 2025 Delivered-To: importer@patchew.org Authentication-Results: mx.zohomail.com; spf=pass (zohomail.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mx.zohomail.com with SMTPS id 1737224521268973.8781320687049; Sat, 18 Jan 2025 10:22:01 -0800 (PST) Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1tZDRk-0001dz-2T; Sat, 18 Jan 2025 13:21:24 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tZDRg-0001cB-KP; Sat, 18 Jan 2025 13:21:20 -0500 Received: from isrv.corpit.ru ([86.62.121.231]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tZDRd-0003KQ-Vp; Sat, 18 Jan 2025 13:21:20 -0500 Received: from tsrv.corpit.ru (tsrv.tls.msk.ru [192.168.177.2]) by isrv.corpit.ru (Postfix) with ESMTP id B7BA4DA8F8; Sat, 18 Jan 2025 21:20:58 +0300 (MSK) Received: by tsrv.corpit.ru (Postfix, from userid 1000) id 2695C19E94D; Sat, 18 Jan 2025 21:21:09 +0300 (MSK) From: Michael Tokarev Date: Sat, 18 Jan 2025 20:35:31 +0300 Subject: [PATCH] vvfat: refresh writing long filename To: qemu-devel@nongnu.org, Kevin Wolf , Hanna Reitz , =?UTF-8?q?Volker=20R=C3=BCmelin?= Cc: Pierrick Bouvier , qemu-block@nongnu.org, qemu-trivial@nongnu.org Message-Id: <20250118182109.2695C19E94D@tsrv.corpit.ru> Received-SPF: pass (zohomail.com: domain of gnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Received-SPF: pass client-ip=86.62.121.231; envelope-from=mjt@corpit.ru; helo=isrv.corpit.ru X-Spam_score_int: -63 X-Spam_score: -6.4 X-Spam_bar: ------ X-Spam_report: (-6.4 / 5.0 requ) BAYES_00=-1.9, HEADER_FROM_DIFFERENT_DOMAINS=0.248, PP_MIME_FAKE_ASCII_TEXT=0.241, RCVD_IN_DNSWL_HI=-5, RCVD_IN_VALIDITY_CERTIFIED_BLOCKED=0.001, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: qemu-devel-bounces+importer=patchew.org@nongnu.org X-ZM-MESSAGEID: 1737224529934019000 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" In function create_long_filname(), the array name[8 + 3] in struct direntry_t is used as if it were defined as name[32]. This is intentional and works. It's nevertheless an out of bounds array access. To avoid this problem, this patch adds a struct lfn_direntry_t with multiple name arrays. A directory entry for a long FAT file name is significantly different from a directory entry for a regular FAT file name. This change makes whole logic dealing with the long filenames a bit more clear (hopefully). Based on ideas by Volker R\ufffd\ufffdmelin. Signed-off-by: Michael Tokarev --- block/vvfat.c | 69 ++++++++++++++++++++++++++++++++------------------- 1 file changed, 43 insertions(+), 26 deletions(-) diff --git a/block/vvfat.c b/block/vvfat.c index 8ffe8b3b9b..8320733045 100644 --- a/block/vvfat.c +++ b/block/vvfat.c @@ -255,6 +255,17 @@ typedef struct direntry_t { uint32_t size; } QEMU_PACKED direntry_t; =20 +typedef struct lfn_direntry_t { + uint8_t sequence; + uint8_t name01[10]; + uint8_t attributes; + uint8_t direntry_type; + uint8_t sfn_checksum; + uint8_t name0e[12]; + uint16_t begin; + uint8_t name1c[4]; +} QEMU_PACKED lfn_direntry_t; + /* this structure are used to transparently access the files */ =20 typedef struct mapping_t { @@ -399,11 +410,22 @@ static void init_mbr(BDRVVVFATState *s, int cyls, int= heads, int secs) =20 /* direntry functions */ =20 +static unsigned write_lfn_part(uint8_t *dest, unsigned dsize, + const gunichar2 *lptr, const gunichar2 *len= d) +{ + unsigned i; + for(i =3D 0; i < dsize / 2 && lptr + i < lend; ++i) { + dest[i / 2 + 0] =3D lptr[i] & 0xff; + dest[i / 2 + 1] =3D lptr[i] >> 8; + } + return i; /* return number of elements actually written */ +} + static direntry_t *create_long_filename(BDRVVVFATState *s, const char *fil= ename) { - int number_of_entries, i; + unsigned number_of_entries, entidx; + gunichar2 *lptr, *lend; glong length; - direntry_t *entry; =20 gunichar2 *longname =3D g_utf8_to_utf16(filename, -1, NULL, &length, N= ULL); if (!longname) { @@ -411,31 +433,26 @@ static direntry_t *create_long_filename(BDRVVVFATStat= e *s, const char *filename) return NULL; } =20 - number_of_entries =3D DIV_ROUND_UP(length * 2, 26); - - for(i=3D0;idirectory)); - entry->attributes=3D0xf; - entry->reserved[0]=3D0; - entry->begin=3D0; - entry->name[0]=3D(number_of_entries-i)|(i=3D=3D0?0x40:0); - } - for(i=3D0;i<26*number_of_entries;i++) { - int offset=3D(i%26); - if(offset<10) offset=3D1+offset; - else if(offset<22) offset=3D14+offset-10; - else offset=3D28+offset-22; - entry=3Darray_get(&(s->directory),s->directory.next-1-(i/26)); - if (i >=3D 2 * length + 2) { - entry->name[offset] =3D 0xff; - } else if (i % 2 =3D=3D 0) { - entry->name[offset] =3D longname[i / 2] & 0xff; - } else { - entry->name[offset] =3D longname[i / 2] >> 8; - } + /* + * each lfn_direntry holds 13 utf16 chars (26 bytes) of the file name, + * the name is split into several directory entries. + */ + number_of_entries =3D DIV_ROUND_UP(length, 13); + + lend =3D longname + length; /* pointer past the end of longname */ + for(entidx =3D 0, lptr =3D longname; entidx < number_of_entries; entid= x++) { + lfn_direntry_t *entry =3D array_get_next(&(s->directory)); + entry->sequence =3D (number_of_entries - entidx) | (entidx =3D=3D = 0 ? 0x40 : 0); + entry->attributes =3D 0xf; + entry->direntry_type =3D 0; + entry->begin =3D 0; + /* each lftn_direntry has 3 pieces to hold parts of long file name= */ + lptr +=3D write_lfn_part(entry->name01, sizeof(entry->name01), lpt= r, lend); + lptr +=3D write_lfn_part(entry->name0e, sizeof(entry->name0e), lpt= r, lend); + lptr +=3D write_lfn_part(entry->name1c, sizeof(entry->name1c), lpt= r, lend); } g_free(longname); - return array_get(&(s->directory),s->directory.next-number_of_entries); + return array_get(&(s->directory), s->directory.next - number_of_entrie= s); } =20 static char is_free(const direntry_t* direntry) @@ -731,7 +748,7 @@ static inline direntry_t* create_short_and_long_name(BD= RVVVFATState* s, /* calculate anew, because realloc could have taken place */ entry_long=3Darray_get(&(s->directory),long_index); while(entry_longreserved[1]=3Dchksum; + ((lfn_direntry_t *)entry_long)->sfn_checksum =3D chksum; entry_long++; } } --=20 2.39.5