1 /* vim:set shiftwidth=4 ts=4: */
3 * QEMU Block driver for virtual VFAT (shadows a local directory)
5 * Copyright (c) 2004,2005 Johannes E. Schindelin
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 #include "qemu/osdep.h"
28 #include <glib/gstdio.h>
29 #include "qapi/error.h"
30 #include "block/block-io.h"
31 #include "block/block_int.h"
32 #include "block/qdict.h"
33 #include "qemu/module.h"
34 #include "qemu/option.h"
35 #include "qemu/bswap.h"
36 #include "migration/blocker.h"
37 #include "qapi/qmp/qdict.h"
38 #include "qapi/qmp/qstring.h"
39 #include "qemu/ctype.h"
40 #include "qemu/cutils.h"
41 #include "qemu/error-report.h"
50 /* TODO: add ":bootsector=blabla.img:" */
51 /* LATER TODO: add automatic boot sector generation from
52 BOOTEASY.ASM and Ranish Partition Manager
53 Note that DOS assumes the system files to be the first files in the
54 file system (test if the boot sector still relies on that fact)! */
55 /* MAYBE TODO: write block-visofs.c */
56 /* TODO: call try_commit() only after a timeout */
64 static void checkpoint(void);
72 /* bootsector OEM name. see related compatibility problems at:
73 * https://jdebp.eu/FGA/volume-boot-block-oem-name-field.html
74 * http://seasip.info/Misc/oemid.html
76 #define BOOTSECTOR_OEM_NAME "MSWIN4.1"
78 #define DIR_DELETED 0xe5
79 #define DIR_KANJI DIR_DELETED
80 #define DIR_KANJI_FAKE 0x05
83 /* dynamic array functions */
84 typedef struct array_t
{
86 unsigned int size
,next
,item_size
;
89 static inline void array_init(array_t
* array
,unsigned int item_size
)
91 array
->pointer
= NULL
;
94 array
->item_size
=item_size
;
97 static inline void array_free(array_t
* array
)
99 g_free(array
->pointer
);
100 array
->size
=array
->next
=0;
103 /* does not automatically grow */
104 static inline void* array_get(array_t
* array
,unsigned int index
) {
105 assert(index
< array
->next
);
106 assert(array
->pointer
);
107 return array
->pointer
+ index
* array
->item_size
;
110 static inline void array_ensure_allocated(array_t
*array
, int index
)
112 if((index
+ 1) * array
->item_size
> array
->size
) {
113 int new_size
= (index
+ 32) * array
->item_size
;
114 array
->pointer
= g_realloc(array
->pointer
, new_size
);
115 assert(array
->pointer
);
116 memset(array
->pointer
+ array
->size
, 0, new_size
- array
->size
);
117 array
->size
= new_size
;
118 array
->next
= index
+ 1;
122 static inline void* array_get_next(array_t
* array
) {
123 unsigned int next
= array
->next
;
125 array_ensure_allocated(array
, next
);
126 array
->next
= next
+ 1;
127 return array_get(array
, next
);
130 static inline void* array_insert(array_t
* array
,unsigned int index
,unsigned int count
) {
131 if((array
->next
+count
)*array
->item_size
>array
->size
) {
132 int increment
=count
*array
->item_size
;
133 array
->pointer
=g_realloc(array
->pointer
,array
->size
+increment
);
136 array
->size
+=increment
;
138 memmove(array
->pointer
+(index
+count
)*array
->item_size
,
139 array
->pointer
+index
*array
->item_size
,
140 (array
->next
-index
)*array
->item_size
);
142 return array
->pointer
+index
*array
->item_size
;
145 static inline int array_remove_slice(array_t
* array
,int index
, int count
)
149 assert(index
+ count
<= array
->next
);
151 memmove(array
->pointer
+ index
* array
->item_size
,
152 array
->pointer
+ (index
+ count
) * array
->item_size
,
153 (array
->next
- index
- count
) * array
->item_size
);
155 array
->next
-= count
;
159 static int array_remove(array_t
* array
,int index
)
161 return array_remove_slice(array
, index
, 1);
164 /* return the index for a given member */
165 static int array_index(array_t
* array
, void* pointer
)
167 size_t offset
= (char*)pointer
- array
->pointer
;
168 assert((offset
% array
->item_size
) == 0);
169 assert(offset
/array
->item_size
< array
->next
);
170 return offset
/array
->item_size
;
173 /* These structures are used to fake a disk and the VFAT filesystem.
174 * For this reason we need to use QEMU_PACKED. */
176 typedef struct bootsector_t
{
179 uint16_t sector_size
;
180 uint8_t sectors_per_cluster
;
181 uint16_t reserved_sectors
;
182 uint8_t number_of_fats
;
183 uint16_t root_entries
;
184 uint16_t total_sectors16
;
186 uint16_t sectors_per_fat
;
187 uint16_t sectors_per_track
;
188 uint16_t number_of_heads
;
189 uint32_t hidden_sectors
;
190 uint32_t total_sectors
;
193 uint8_t drive_number
;
197 uint8_t volume_label
[11];
199 uint8_t ignored
[0x1c0];
202 uint32_t sectors_per_fat
;
205 uint32_t first_cluster_of_root_dir
;
206 uint16_t info_sector
;
207 uint16_t backup_boot_sector
;
208 uint8_t reserved
[12];
209 uint8_t drive_number
;
213 uint8_t volume_label
[11];
215 uint8_t ignored
[0x1a4];
219 } QEMU_PACKED bootsector_t
;
227 typedef struct partition_t
{
228 uint8_t attributes
; /* 0x80 = bootable */
230 uint8_t fs_type
; /* 0x1 = FAT12, 0x6 = FAT16, 0xe = FAT16_LBA, 0xb = FAT32, 0xc = FAT32_LBA */
232 uint32_t start_sector_long
;
233 uint32_t length_sector_long
;
234 } QEMU_PACKED partition_t
;
236 typedef struct mbr_t
{
237 uint8_t ignored
[0x1b8];
240 partition_t partition
[4];
244 typedef struct direntry_t
{
256 } QEMU_PACKED direntry_t
;
258 /* this structure are used to transparently access the files */
260 typedef struct mapping_t
{
261 /* begin is the first cluster, end is the last+1 */
263 /* as s->directory is growable, no pointer may be used here */
264 unsigned int dir_index
;
265 /* the clusters of a file may be in any order; this points to the first */
266 int first_mapping_index
;
269 * - the offset in the file (in clusters) for a file, or
270 * - the next cluster of the directory for a directory
276 int parent_mapping_index
;
280 /* path contains the full path, i.e. it always starts with s->path */
294 static void print_direntry(const struct direntry_t
*);
295 static void print_mapping(const struct mapping_t
* mapping
);
298 /* here begins the real VVFAT driver */
300 typedef struct BDRVVVFATState
{
302 BlockDriverState
* bs
; /* pointer to parent */
303 unsigned char first_sectors
[0x40*0x200];
305 int fat_type
; /* 16 or 32 */
306 array_t fat
,directory
,mapping
;
307 char volume_label
[11];
309 uint32_t offset_to_bootsector
; /* 0 for floppy, 0x3f for disk */
311 unsigned int cluster_size
;
312 unsigned int sectors_per_cluster
;
313 unsigned int sectors_per_fat
;
314 uint32_t last_cluster_of_root_directory
;
315 /* how many entries are available in root directory (0 for FAT32) */
316 uint16_t root_entries
;
317 uint32_t sector_count
; /* total number of sectors of the partition */
318 uint32_t cluster_count
; /* total number of clusters of this partition */
319 uint32_t max_fat_value
;
320 uint32_t offset_to_fat
;
321 uint32_t offset_to_root_dir
;
324 mapping_t
* current_mapping
;
325 unsigned char* cluster
; /* points to current cluster */
326 unsigned char* cluster_buffer
; /* points to a buffer to hold temp data */
327 unsigned int current_cluster
;
336 int downcase_short_names
;
338 Error
*migration_blocker
;
341 /* take the sector position spos and convert it to Cylinder/Head/Sector position
342 * if the position is outside the specified geometry, fill maximum value for CHS
343 * and return 1 to signal overflow.
345 static int sector2CHS(mbr_chs_t
*chs
, int spos
, int cyls
, int heads
, int secs
)
348 sector
= spos
% secs
; spos
/= secs
;
349 head
= spos
% heads
; spos
/= heads
;
352 it happens if 32bit sector positions are used, while CHS is only 24bit.
353 Windows/Dos is said to take 1023/255/63 as nonrepresentable CHS */
356 chs
->cylinder
= 0xFF;
359 chs
->head
= (uint8_t)head
;
360 chs
->sector
= (uint8_t)( (sector
+1) | ((spos
>>8)<<6) );
361 chs
->cylinder
= (uint8_t)spos
;
365 static void init_mbr(BDRVVVFATState
*s
, int cyls
, int heads
, int secs
)
367 /* TODO: if the files mbr.img and bootsect.img exist, use them */
368 mbr_t
* real_mbr
=(mbr_t
*)s
->first_sectors
;
369 partition_t
* partition
= &(real_mbr
->partition
[0]);
372 memset(s
->first_sectors
,0,512);
374 /* Win NT Disk Signature */
375 real_mbr
->nt_id
= cpu_to_le32(0xbe1afdfa);
377 partition
->attributes
=0x80; /* bootable */
379 /* LBA is used when partition is outside the CHS geometry */
380 lba
= sector2CHS(&partition
->start_CHS
, s
->offset_to_bootsector
,
382 lba
|= sector2CHS(&partition
->end_CHS
, s
->bs
->total_sectors
- 1,
385 /*LBA partitions are identified only by start/length_sector_long not by CHS*/
386 partition
->start_sector_long
= cpu_to_le32(s
->offset_to_bootsector
);
387 partition
->length_sector_long
= cpu_to_le32(s
->bs
->total_sectors
388 - s
->offset_to_bootsector
);
390 /* FAT12/FAT16/FAT32 */
391 /* DOS uses different types when partition is LBA,
392 probably to prevent older versions from using CHS on them */
393 partition
->fs_type
= s
->fat_type
== 12 ? 0x1 :
394 s
->fat_type
== 16 ? (lba
? 0xe : 0x06) :
395 /*s->fat_type == 32*/ (lba
? 0xc : 0x0b);
397 real_mbr
->magic
[0]=0x55; real_mbr
->magic
[1]=0xaa;
400 /* direntry functions */
402 static direntry_t
*create_long_filename(BDRVVVFATState
*s
, const char *filename
)
404 int number_of_entries
, i
;
408 gunichar2
*longname
= g_utf8_to_utf16(filename
, -1, NULL
, &length
, NULL
);
410 fprintf(stderr
, "vvfat: invalid UTF-8 name: %s\n", filename
);
414 number_of_entries
= DIV_ROUND_UP(length
* 2, 26);
416 for(i
=0;i
<number_of_entries
;i
++) {
417 entry
=array_get_next(&(s
->directory
));
418 entry
->attributes
=0xf;
419 entry
->reserved
[0]=0;
421 entry
->name
[0]=(number_of_entries
-i
)|(i
==0?0x40:0);
423 for(i
=0;i
<26*number_of_entries
;i
++) {
425 if(offset
<10) offset
=1+offset
;
426 else if(offset
<22) offset
=14+offset
-10;
427 else offset
=28+offset
-22;
428 entry
=array_get(&(s
->directory
),s
->directory
.next
-1-(i
/26));
429 if (i
>= 2 * length
+ 2) {
430 entry
->name
[offset
] = 0xff;
431 } else if (i
% 2 == 0) {
432 entry
->name
[offset
] = longname
[i
/ 2] & 0xff;
434 entry
->name
[offset
] = longname
[i
/ 2] >> 8;
438 return array_get(&(s
->directory
),s
->directory
.next
-number_of_entries
);
441 static char is_free(const direntry_t
* direntry
)
443 return direntry
->name
[0] == DIR_DELETED
|| direntry
->name
[0] == DIR_FREE
;
446 static char is_volume_label(const direntry_t
* direntry
)
448 return direntry
->attributes
== 0x28;
451 static char is_long_name(const direntry_t
* direntry
)
453 return direntry
->attributes
== 0xf;
456 static char is_short_name(const direntry_t
* direntry
)
458 return !is_volume_label(direntry
) && !is_long_name(direntry
)
459 && !is_free(direntry
);
462 static char is_directory(const direntry_t
* direntry
)
464 return direntry
->attributes
& 0x10 && direntry
->name
[0] != DIR_DELETED
;
467 static inline char is_dot(const direntry_t
* direntry
)
469 return is_short_name(direntry
) && direntry
->name
[0] == '.';
472 static char is_file(const direntry_t
* direntry
)
474 return is_short_name(direntry
) && !is_directory(direntry
);
477 static inline uint32_t begin_of_direntry(const direntry_t
* direntry
)
479 return le16_to_cpu(direntry
->begin
)|(le16_to_cpu(direntry
->begin_hi
)<<16);
482 static inline uint32_t filesize_of_direntry(const direntry_t
* direntry
)
484 return le32_to_cpu(direntry
->size
);
487 static void set_begin_of_direntry(direntry_t
* direntry
, uint32_t begin
)
489 direntry
->begin
= cpu_to_le16(begin
& 0xffff);
490 direntry
->begin_hi
= cpu_to_le16((begin
>> 16) & 0xffff);
493 static bool valid_filename(const unsigned char *name
)
496 if (!strcmp((const char*)name
, ".") || !strcmp((const char*)name
, "..")) {
499 for (; (c
= *name
); name
++) {
500 if (!((c
>= '0' && c
<= '9') ||
501 (c
>= 'A' && c
<= 'Z') ||
502 (c
>= 'a' && c
<= 'z') ||
504 strchr(" $%'-_@~`!(){}^#&.+,;=[]", c
) != NULL
))
512 static uint8_t to_valid_short_char(gunichar c
)
514 c
= g_unichar_toupper(c
);
515 if ((c
>= '0' && c
<= '9') ||
516 (c
>= 'A' && c
<= 'Z') ||
517 strchr("$%'-_@~`!(){}^#&", c
) != NULL
) {
524 static direntry_t
*create_short_filename(BDRVVVFATState
*s
,
525 const char *filename
,
526 unsigned int directory_start
)
529 direntry_t
*entry
= array_get_next(&(s
->directory
));
530 const gchar
*p
, *last_dot
= NULL
;
532 bool lossy_conversion
= false;
538 memset(entry
->name
, 0x20, sizeof(entry
->name
));
540 /* copy filename and search last dot */
541 for (p
= filename
; ; p
= g_utf8_next_char(p
)) {
542 c
= g_utf8_get_char(p
);
545 } else if (c
== '.') {
547 /* '.' at start of filename */
548 lossy_conversion
= true;
551 lossy_conversion
= true;
555 } else if (!last_dot
) {
556 /* first part of the name; copy it */
557 uint8_t v
= to_valid_short_char(c
);
559 entry
->name
[j
++] = v
;
561 lossy_conversion
= true;
566 /* copy extension (if any) */
569 for (p
= g_utf8_next_char(last_dot
); ; p
= g_utf8_next_char(p
)) {
570 c
= g_utf8_get_char(p
);
574 /* extension; copy it */
575 uint8_t v
= to_valid_short_char(c
);
577 entry
->name
[8 + (j
++)] = v
;
579 lossy_conversion
= true;
585 if (entry
->name
[0] == DIR_KANJI
) {
586 entry
->name
[0] = DIR_KANJI_FAKE
;
589 /* numeric-tail generation */
590 for (j
= 0; j
< 8; j
++) {
591 if (entry
->name
[j
] == ' ') {
595 for (i
= lossy_conversion
? 1 : 0; i
< 999999; i
++) {
598 int len
= snprintf(tail
, sizeof(tail
), "~%u", (unsigned)i
);
600 memcpy(entry
->name
+ MIN(j
, 8 - len
), tail
, len
);
602 for (entry1
= array_get(&(s
->directory
), directory_start
);
603 entry1
< entry
; entry1
++) {
604 if (!is_long_name(entry1
) &&
605 !memcmp(entry1
->name
, entry
->name
, 11)) {
606 break; /* found dupe */
609 if (entry1
== entry
) {
619 static inline uint8_t fat_chksum(const direntry_t
* entry
)
624 for (i
= 0; i
< ARRAY_SIZE(entry
->name
); i
++) {
625 chksum
= (((chksum
& 0xfe) >> 1) |
626 ((chksum
& 0x01) ? 0x80 : 0)) + entry
->name
[i
];
632 /* if return_time==0, this returns the fat_date, else the fat_time */
633 static uint16_t fat_datetime(time_t time
,int return_time
) {
637 localtime_r(&time
,t
);
639 return cpu_to_le16((t
->tm_sec
/2)|(t
->tm_min
<<5)|(t
->tm_hour
<<11));
640 return cpu_to_le16((t
->tm_mday
)|((t
->tm_mon
+1)<<5)|((t
->tm_year
-80)<<9));
643 static inline void fat_set(BDRVVVFATState
* s
,unsigned int cluster
,uint32_t value
)
645 if(s
->fat_type
==32) {
646 uint32_t* entry
=array_get(&(s
->fat
),cluster
);
647 *entry
=cpu_to_le32(value
);
648 } else if(s
->fat_type
==16) {
649 uint16_t* entry
=array_get(&(s
->fat
),cluster
);
650 *entry
=cpu_to_le16(value
&0xffff);
652 int offset
= (cluster
*3/2);
653 unsigned char* p
= array_get(&(s
->fat
), offset
);
657 p
[1] = (p
[1]&0xf0) | ((value
>>8)&0xf);
660 p
[0] = (p
[0]&0xf) | ((value
&0xf)<<4);
667 static inline uint32_t fat_get(BDRVVVFATState
* s
,unsigned int cluster
)
669 if(s
->fat_type
==32) {
670 uint32_t* entry
=array_get(&(s
->fat
),cluster
);
671 return le32_to_cpu(*entry
);
672 } else if(s
->fat_type
==16) {
673 uint16_t* entry
=array_get(&(s
->fat
),cluster
);
674 return le16_to_cpu(*entry
);
676 const uint8_t* x
=(uint8_t*)(s
->fat
.pointer
)+cluster
*3/2;
677 return ((x
[0]|(x
[1]<<8))>>(cluster
&1?4:0))&0x0fff;
681 static inline int fat_eof(BDRVVVFATState
* s
,uint32_t fat_entry
)
683 if(fat_entry
>s
->max_fat_value
-8)
688 static inline void init_fat(BDRVVVFATState
* s
)
690 if (s
->fat_type
== 12) {
691 array_init(&(s
->fat
),1);
692 array_ensure_allocated(&(s
->fat
),
693 s
->sectors_per_fat
* 0x200 * 3 / 2 - 1);
695 array_init(&(s
->fat
),(s
->fat_type
==32?4:2));
696 array_ensure_allocated(&(s
->fat
),
697 s
->sectors_per_fat
* 0x200 / s
->fat
.item_size
- 1);
699 memset(s
->fat
.pointer
,0,s
->fat
.size
);
701 switch(s
->fat_type
) {
702 case 12: s
->max_fat_value
=0xfff; break;
703 case 16: s
->max_fat_value
=0xffff; break;
704 case 32: s
->max_fat_value
=0x0fffffff; break;
705 default: s
->max_fat_value
=0; /* error... */
710 static inline direntry_t
* create_short_and_long_name(BDRVVVFATState
* s
,
711 unsigned int directory_start
, const char* filename
, int is_dot
)
713 int long_index
= s
->directory
.next
;
714 direntry_t
* entry
= NULL
;
715 direntry_t
* entry_long
= NULL
;
718 entry
=array_get_next(&(s
->directory
));
719 memset(entry
->name
, 0x20, sizeof(entry
->name
));
720 memcpy(entry
->name
,filename
,strlen(filename
));
724 entry_long
=create_long_filename(s
,filename
);
725 entry
= create_short_filename(s
, filename
, directory_start
);
727 /* calculate checksum; propagate to long name */
729 uint8_t chksum
=fat_chksum(entry
);
731 /* calculate anew, because realloc could have taken place */
732 entry_long
=array_get(&(s
->directory
),long_index
);
733 while(entry_long
<entry
&& is_long_name(entry_long
)) {
734 entry_long
->reserved
[1]=chksum
;
743 * Read a directory. (the index of the corresponding mapping must be passed).
745 static int read_directory(BDRVVVFATState
* s
, int mapping_index
)
747 mapping_t
* mapping
= array_get(&(s
->mapping
), mapping_index
);
748 direntry_t
* direntry
;
749 const char* dirname
= mapping
->path
;
750 int first_cluster
= mapping
->begin
;
751 int parent_index
= mapping
->info
.dir
.parent_mapping_index
;
752 mapping_t
* parent_mapping
= (mapping_t
*)
753 (parent_index
>= 0 ? array_get(&(s
->mapping
), parent_index
) : NULL
);
754 int first_cluster_of_parent
= parent_mapping
? parent_mapping
->begin
: -1;
756 DIR* dir
=opendir(dirname
);
757 struct dirent
* entry
;
760 assert(mapping
->mode
& MODE_DIRECTORY
);
763 mapping
->end
= mapping
->begin
;
767 i
= mapping
->info
.dir
.first_dir_index
=
768 first_cluster
== 0 ? 0 : s
->directory
.next
;
770 if (first_cluster
!= 0) {
771 /* create the top entries of a subdirectory */
772 (void)create_short_and_long_name(s
, i
, ".", 1);
773 (void)create_short_and_long_name(s
, i
, "..", 1);
776 /* actually read the directory, and allocate the mappings */
777 while((entry
=readdir(dir
))) {
778 unsigned int length
=strlen(dirname
)+2+strlen(entry
->d_name
);
780 direntry_t
* direntry
;
782 int is_dot
=!strcmp(entry
->d_name
,".");
783 int is_dotdot
=!strcmp(entry
->d_name
,"..");
785 if (first_cluster
== 0 && s
->directory
.next
>= s
->root_entries
- 1) {
786 fprintf(stderr
, "Too many entries in root directory\n");
791 if(first_cluster
== 0 && (is_dotdot
|| is_dot
))
794 buffer
= g_malloc(length
);
795 snprintf(buffer
,length
,"%s/%s",dirname
,entry
->d_name
);
797 if(stat(buffer
,&st
)<0) {
802 /* create directory entry for this file */
803 if (!is_dot
&& !is_dotdot
) {
804 direntry
= create_short_and_long_name(s
, i
, entry
->d_name
, 0);
806 direntry
= array_get(&(s
->directory
), is_dot
? i
: i
+ 1);
808 direntry
->attributes
=(S_ISDIR(st
.st_mode
)?0x10:0x20);
809 direntry
->reserved
[0]=direntry
->reserved
[1]=0;
810 direntry
->ctime
=fat_datetime(st
.st_ctime
,1);
811 direntry
->cdate
=fat_datetime(st
.st_ctime
,0);
812 direntry
->adate
=fat_datetime(st
.st_atime
,0);
813 direntry
->begin_hi
=0;
814 direntry
->mtime
=fat_datetime(st
.st_mtime
,1);
815 direntry
->mdate
=fat_datetime(st
.st_mtime
,0);
817 set_begin_of_direntry(direntry
, first_cluster_of_parent
);
819 set_begin_of_direntry(direntry
, first_cluster
);
821 direntry
->begin
=0; /* do that later */
822 if (st
.st_size
> 0x7fffffff) {
823 fprintf(stderr
, "File %s is larger than 2GB\n", buffer
);
828 direntry
->size
=cpu_to_le32(S_ISDIR(st
.st_mode
)?0:st
.st_size
);
830 /* create mapping for this file */
831 if(!is_dot
&& !is_dotdot
&& (S_ISDIR(st
.st_mode
) || st
.st_size
)) {
832 s
->current_mapping
= array_get_next(&(s
->mapping
));
833 s
->current_mapping
->begin
=0;
834 s
->current_mapping
->end
=st
.st_size
;
836 * we get the direntry of the most recent direntry, which
837 * contains the short name and all the relevant information.
839 s
->current_mapping
->dir_index
=s
->directory
.next
-1;
840 s
->current_mapping
->first_mapping_index
= -1;
841 if (S_ISDIR(st
.st_mode
)) {
842 s
->current_mapping
->mode
= MODE_DIRECTORY
;
843 s
->current_mapping
->info
.dir
.parent_mapping_index
=
846 s
->current_mapping
->mode
= MODE_UNDEFINED
;
847 s
->current_mapping
->info
.file
.offset
= 0;
849 s
->current_mapping
->path
=buffer
;
850 s
->current_mapping
->read_only
=
851 (st
.st_mode
& (S_IWUSR
| S_IWGRP
| S_IWOTH
)) == 0;
858 /* fill with zeroes up to the end of the cluster */
859 while(s
->directory
.next
%(0x10*s
->sectors_per_cluster
)) {
860 direntry_t
* direntry
=array_get_next(&(s
->directory
));
861 memset(direntry
,0,sizeof(direntry_t
));
864 if (s
->fat_type
!= 32 &&
865 mapping_index
== 0 &&
866 s
->directory
.next
< s
->root_entries
) {
868 int cur
= s
->directory
.next
;
869 array_ensure_allocated(&(s
->directory
), s
->root_entries
- 1);
870 s
->directory
.next
= s
->root_entries
;
871 memset(array_get(&(s
->directory
), cur
), 0,
872 (s
->root_entries
- cur
) * sizeof(direntry_t
));
875 /* re-get the mapping, since s->mapping was possibly realloc()ed */
876 mapping
= array_get(&(s
->mapping
), mapping_index
);
877 first_cluster
+= (s
->directory
.next
- mapping
->info
.dir
.first_dir_index
)
878 * 0x20 / s
->cluster_size
;
879 mapping
->end
= first_cluster
;
881 direntry
= array_get(&(s
->directory
), mapping
->dir_index
);
882 set_begin_of_direntry(direntry
, mapping
->begin
);
887 static inline int32_t sector2cluster(BDRVVVFATState
* s
,off_t sector_num
)
889 return (sector_num
- s
->offset_to_root_dir
) / s
->sectors_per_cluster
;
892 static inline off_t
cluster2sector(BDRVVVFATState
* s
, uint32_t cluster_num
)
894 return s
->offset_to_root_dir
+ s
->sectors_per_cluster
* cluster_num
;
897 static int init_directories(BDRVVVFATState
* s
,
898 const char *dirname
, int heads
, int secs
,
901 bootsector_t
* bootsector
;
904 unsigned int cluster
;
906 memset(&(s
->first_sectors
[0]),0,0x40*0x200);
908 s
->cluster_size
=s
->sectors_per_cluster
*0x200;
909 s
->cluster_buffer
=g_malloc(s
->cluster_size
);
912 * The formula: sc = spf+1+spf*spc*(512*8/fat_type),
913 * where sc is sector_count,
914 * spf is sectors_per_fat,
915 * spc is sectors_per_clusters, and
916 * fat_type = 12, 16 or 32.
918 i
= 1+s
->sectors_per_cluster
*0x200*8/s
->fat_type
;
919 s
->sectors_per_fat
=(s
->sector_count
+i
)/i
; /* round up */
921 s
->offset_to_fat
= s
->offset_to_bootsector
+ 1;
922 s
->offset_to_root_dir
= s
->offset_to_fat
+ s
->sectors_per_fat
* 2;
924 array_init(&(s
->mapping
),sizeof(mapping_t
));
925 array_init(&(s
->directory
),sizeof(direntry_t
));
927 /* add volume label */
929 direntry_t
* entry
=array_get_next(&(s
->directory
));
930 entry
->attributes
=0x28; /* archive | volume label */
931 memcpy(entry
->name
, s
->volume_label
, sizeof(entry
->name
));
934 /* Now build FAT, and write back information into directory */
937 /* TODO: if there are more entries, bootsector has to be adjusted! */
938 s
->root_entries
= 0x02 * 0x10 * s
->sectors_per_cluster
;
939 s
->cluster_count
=sector2cluster(s
, s
->sector_count
);
941 mapping
= array_get_next(&(s
->mapping
));
943 mapping
->dir_index
= 0;
944 mapping
->info
.dir
.parent_mapping_index
= -1;
945 mapping
->first_mapping_index
= -1;
946 mapping
->path
= g_strdup(dirname
);
947 i
= strlen(mapping
->path
);
948 if (i
> 0 && mapping
->path
[i
- 1] == '/')
949 mapping
->path
[i
- 1] = '\0';
950 mapping
->mode
= MODE_DIRECTORY
;
951 mapping
->read_only
= 0;
952 s
->path
= mapping
->path
;
954 for (i
= 0, cluster
= 0; i
< s
->mapping
.next
; i
++) {
955 /* MS-DOS expects the FAT to be 0 for the root directory
956 * (except for the media byte). */
957 /* LATER TODO: still true for FAT32? */
958 int fix_fat
= (i
!= 0);
959 mapping
= array_get(&(s
->mapping
), i
);
961 if (mapping
->mode
& MODE_DIRECTORY
) {
962 char *path
= mapping
->path
;
963 mapping
->begin
= cluster
;
964 if(read_directory(s
, i
)) {
965 error_setg(errp
, "Could not read directory %s", path
);
968 mapping
= array_get(&(s
->mapping
), i
);
970 assert(mapping
->mode
== MODE_UNDEFINED
);
971 mapping
->mode
=MODE_NORMAL
;
972 mapping
->begin
= cluster
;
973 if (mapping
->end
> 0) {
974 direntry_t
* direntry
= array_get(&(s
->directory
),
977 mapping
->end
= cluster
+ 1 + (mapping
->end
-1)/s
->cluster_size
;
978 set_begin_of_direntry(direntry
, mapping
->begin
);
980 mapping
->end
= cluster
+ 1;
985 assert(mapping
->begin
< mapping
->end
);
987 /* next free cluster */
988 cluster
= mapping
->end
;
990 if(cluster
> s
->cluster_count
) {
992 "Directory does not fit in FAT%d (capacity %.2f MB)",
993 s
->fat_type
, s
->sector_count
/ 2000.0);
997 /* fix fat for entry */
1000 for(j
= mapping
->begin
; j
< mapping
->end
- 1; j
++)
1002 fat_set(s
, mapping
->end
- 1, s
->max_fat_value
);
1006 mapping
= array_get(&(s
->mapping
), 0);
1007 s
->last_cluster_of_root_directory
= mapping
->end
;
1009 /* the FAT signature */
1010 fat_set(s
,0,s
->max_fat_value
);
1011 fat_set(s
,1,s
->max_fat_value
);
1013 s
->current_mapping
= NULL
;
1015 bootsector
= (bootsector_t
*)(s
->first_sectors
1016 + s
->offset_to_bootsector
* 0x200);
1017 bootsector
->jump
[0]=0xeb;
1018 bootsector
->jump
[1]=0x3e;
1019 bootsector
->jump
[2]=0x90;
1020 memcpy(bootsector
->name
, BOOTSECTOR_OEM_NAME
, 8);
1021 bootsector
->sector_size
=cpu_to_le16(0x200);
1022 bootsector
->sectors_per_cluster
=s
->sectors_per_cluster
;
1023 bootsector
->reserved_sectors
=cpu_to_le16(1);
1024 bootsector
->number_of_fats
=0x2; /* number of FATs */
1025 bootsector
->root_entries
= cpu_to_le16(s
->root_entries
);
1026 bootsector
->total_sectors16
=s
->sector_count
>0xffff?0:cpu_to_le16(s
->sector_count
);
1027 /* media descriptor: hard disk=0xf8, floppy=0xf0 */
1028 bootsector
->media_type
= (s
->offset_to_bootsector
> 0 ? 0xf8 : 0xf0);
1029 s
->fat
.pointer
[0] = bootsector
->media_type
;
1030 bootsector
->sectors_per_fat
=cpu_to_le16(s
->sectors_per_fat
);
1031 bootsector
->sectors_per_track
= cpu_to_le16(secs
);
1032 bootsector
->number_of_heads
= cpu_to_le16(heads
);
1033 bootsector
->hidden_sectors
= cpu_to_le32(s
->offset_to_bootsector
);
1034 bootsector
->total_sectors
=cpu_to_le32(s
->sector_count
>0xffff?s
->sector_count
:0);
1036 /* LATER TODO: if FAT32, this is wrong */
1037 /* drive_number: fda=0, hda=0x80 */
1038 bootsector
->u
.fat16
.drive_number
= s
->offset_to_bootsector
== 0 ? 0 : 0x80;
1039 bootsector
->u
.fat16
.signature
=0x29;
1040 bootsector
->u
.fat16
.id
=cpu_to_le32(0xfabe1afd);
1042 memcpy(bootsector
->u
.fat16
.volume_label
, s
->volume_label
,
1043 sizeof(bootsector
->u
.fat16
.volume_label
));
1044 memcpy(bootsector
->u
.fat16
.fat_type
,
1045 s
->fat_type
== 12 ? "FAT12 " : "FAT16 ", 8);
1046 bootsector
->magic
[0]=0x55; bootsector
->magic
[1]=0xaa;
1052 static BDRVVVFATState
*vvv
= NULL
;
1055 static int enable_write_target(BlockDriverState
*bs
, Error
**errp
);
1056 static int is_consistent(BDRVVVFATState
*s
);
1058 static QemuOptsList runtime_opts
= {
1060 .head
= QTAILQ_HEAD_INITIALIZER(runtime_opts
.head
),
1064 .type
= QEMU_OPT_STRING
,
1065 .help
= "Host directory to map to the vvfat device",
1069 .type
= QEMU_OPT_NUMBER
,
1070 .help
= "FAT type (12, 16 or 32)",
1074 .type
= QEMU_OPT_BOOL
,
1075 .help
= "Create a floppy rather than a hard disk image",
1079 .type
= QEMU_OPT_STRING
,
1080 .help
= "Use a volume label other than QEMU VVFAT",
1084 .type
= QEMU_OPT_BOOL
,
1085 .help
= "Make the image writable",
1087 { /* end of list */ }
1091 static void vvfat_parse_filename(const char *filename
, QDict
*options
,
1095 bool floppy
= false;
1099 if (!strstart(filename
, "fat:", NULL
)) {
1100 error_setg(errp
, "File name string must start with 'fat:'");
1105 if (strstr(filename
, ":32:")) {
1107 } else if (strstr(filename
, ":16:")) {
1109 } else if (strstr(filename
, ":12:")) {
1113 if (strstr(filename
, ":floppy:")) {
1117 if (strstr(filename
, ":rw:")) {
1121 /* Get the directory name without options */
1122 i
= strrchr(filename
, ':') - filename
;
1124 if (filename
[i
- 2] == ':' && qemu_isalpha(filename
[i
- 1])) {
1125 /* workaround for DOS drive names */
1131 /* Fill in the options QDict */
1132 qdict_put_str(options
, "dir", filename
);
1133 qdict_put_int(options
, "fat-type", fat_type
);
1134 qdict_put_bool(options
, "floppy", floppy
);
1135 qdict_put_bool(options
, "rw", rw
);
1138 static int vvfat_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
1141 BDRVVVFATState
*s
= bs
->opaque
;
1142 int cyls
, heads
, secs
;
1144 const char *dirname
, *label
;
1152 opts
= qemu_opts_create(&runtime_opts
, NULL
, 0, &error_abort
);
1153 if (!qemu_opts_absorb_qdict(opts
, options
, errp
)) {
1158 dirname
= qemu_opt_get(opts
, "dir");
1160 error_setg(errp
, "vvfat block driver requires a 'dir' option");
1165 s
->fat_type
= qemu_opt_get_number(opts
, "fat-type", 0);
1166 floppy
= qemu_opt_get_bool(opts
, "floppy", false);
1168 memset(s
->volume_label
, ' ', sizeof(s
->volume_label
));
1169 label
= qemu_opt_get(opts
, "label");
1171 size_t label_length
= strlen(label
);
1172 if (label_length
> 11) {
1173 error_setg(errp
, "vvfat label cannot be longer than 11 bytes");
1177 memcpy(s
->volume_label
, label
, label_length
);
1179 memcpy(s
->volume_label
, "QEMU VVFAT", 10);
1183 /* 1.44MB or 2.88MB floppy. 2.88MB can be FAT12 (default) or FAT16. */
1187 s
->sectors_per_cluster
= 2;
1189 secs
= s
->fat_type
== 12 ? 18 : 36;
1190 s
->sectors_per_cluster
= 1;
1195 /* 32MB or 504MB disk*/
1199 s
->offset_to_bootsector
= 0x3f;
1200 cyls
= s
->fat_type
== 12 ? 64 : 1024;
1205 switch (s
->fat_type
) {
1207 warn_report("FAT32 has not been tested. You are welcome to do so!");
1213 error_setg(errp
, "Valid FAT types are only 12, 16 and 32");
1221 /* LATER TODO: if FAT32, adjust */
1222 s
->sectors_per_cluster
=0x10;
1224 s
->current_cluster
=0xffffffff;
1227 s
->qcow_filename
= NULL
;
1229 s
->downcase_short_names
= 1;
1231 DLOG(fprintf(stderr
, "vvfat %s chs %d,%d,%d\n",
1232 dirname
, cyls
, heads
, secs
));
1234 s
->sector_count
= cyls
* heads
* secs
- s
->offset_to_bootsector
;
1235 bs
->total_sectors
= cyls
* heads
* secs
;
1237 if (qemu_opt_get_bool(opts
, "rw", false)) {
1238 if (!bdrv_is_read_only(bs
)) {
1239 ret
= enable_write_target(bs
, errp
);
1246 "Unable to set VVFAT to 'rw' when drive is read-only");
1250 ret
= bdrv_apply_auto_read_only(bs
, NULL
, errp
);
1256 if (init_directories(s
, dirname
, heads
, secs
, errp
)) {
1261 s
->sector_count
= s
->offset_to_root_dir
1262 + s
->sectors_per_cluster
* s
->cluster_count
;
1264 /* Disable migration when vvfat is used rw */
1266 error_setg(&s
->migration_blocker
,
1267 "The vvfat (rw) format used by node '%s' "
1268 "does not support live migration",
1269 bdrv_get_device_or_node_name(bs
));
1270 ret
= migrate_add_blocker(s
->migration_blocker
, errp
);
1272 error_free(s
->migration_blocker
);
1277 if (s
->offset_to_bootsector
> 0) {
1278 init_mbr(s
, cyls
, heads
, secs
);
1281 qemu_co_mutex_init(&s
->lock
);
1283 qemu_opts_del(opts
);
1288 g_free(s
->qcow_filename
);
1289 s
->qcow_filename
= NULL
;
1290 g_free(s
->cluster_buffer
);
1291 s
->cluster_buffer
= NULL
;
1292 g_free(s
->used_clusters
);
1293 s
->used_clusters
= NULL
;
1295 qemu_opts_del(opts
);
1299 static void vvfat_refresh_limits(BlockDriverState
*bs
, Error
**errp
)
1301 bs
->bl
.request_alignment
= BDRV_SECTOR_SIZE
; /* No sub-sector I/O */
1304 static inline void vvfat_close_current_file(BDRVVVFATState
*s
)
1306 if(s
->current_mapping
) {
1307 s
->current_mapping
= NULL
;
1308 if (s
->current_fd
) {
1309 qemu_close(s
->current_fd
);
1313 s
->current_cluster
= -1;
1316 /* mappings between index1 and index2-1 are supposed to be ordered
1317 * return value is the index of the last mapping for which end>cluster_num
1319 static inline int find_mapping_for_cluster_aux(BDRVVVFATState
* s
,int cluster_num
,int index1
,int index2
)
1324 index3
=(index1
+index2
)/2;
1325 mapping
=array_get(&(s
->mapping
),index3
);
1326 assert(mapping
->begin
< mapping
->end
);
1327 if(mapping
->begin
>=cluster_num
) {
1328 assert(index2
!=index3
|| index2
==0);
1334 return mapping
->end
<=cluster_num
? index2
: index1
;
1337 assert(index1
<=index2
);
1338 DLOG(mapping
=array_get(&(s
->mapping
),index1
);
1339 assert(mapping
->begin
<=cluster_num
);
1340 assert(index2
>= s
->mapping
.next
||
1341 ((mapping
= array_get(&(s
->mapping
),index2
)) &&
1342 mapping
->end
>cluster_num
)));
1346 static inline mapping_t
* find_mapping_for_cluster(BDRVVVFATState
* s
,int cluster_num
)
1348 int index
=find_mapping_for_cluster_aux(s
,cluster_num
,0,s
->mapping
.next
);
1350 if(index
>=s
->mapping
.next
)
1352 mapping
=array_get(&(s
->mapping
),index
);
1353 if(mapping
->begin
>cluster_num
)
1355 assert(mapping
->begin
<=cluster_num
&& mapping
->end
>cluster_num
);
1359 static int open_file(BDRVVVFATState
* s
,mapping_t
* mapping
)
1363 if(!s
->current_mapping
||
1364 strcmp(s
->current_mapping
->path
,mapping
->path
)) {
1366 int fd
= qemu_open_old(mapping
->path
,
1367 O_RDONLY
| O_BINARY
| O_LARGEFILE
);
1370 vvfat_close_current_file(s
);
1372 s
->current_mapping
= mapping
;
1377 static inline int read_cluster(BDRVVVFATState
*s
,int cluster_num
)
1379 if(s
->current_cluster
!= cluster_num
) {
1382 assert(!s
->current_mapping
|| s
->current_fd
|| (s
->current_mapping
->mode
& MODE_DIRECTORY
));
1383 if(!s
->current_mapping
1384 || s
->current_mapping
->begin
>cluster_num
1385 || s
->current_mapping
->end
<=cluster_num
) {
1386 /* binary search of mappings for file */
1387 mapping_t
* mapping
=find_mapping_for_cluster(s
,cluster_num
);
1389 assert(!mapping
|| (cluster_num
>=mapping
->begin
&& cluster_num
<mapping
->end
));
1391 if (mapping
&& mapping
->mode
& MODE_DIRECTORY
) {
1392 vvfat_close_current_file(s
);
1393 s
->current_mapping
= mapping
;
1394 read_cluster_directory
:
1395 offset
= s
->cluster_size
*(cluster_num
-s
->current_mapping
->begin
);
1396 s
->cluster
= (unsigned char*)s
->directory
.pointer
+offset
1397 + 0x20*s
->current_mapping
->info
.dir
.first_dir_index
;
1398 assert(((s
->cluster
-(unsigned char*)s
->directory
.pointer
)%s
->cluster_size
)==0);
1399 assert((char*)s
->cluster
+s
->cluster_size
<= s
->directory
.pointer
+s
->directory
.next
*s
->directory
.item_size
);
1400 s
->current_cluster
= cluster_num
;
1404 if(open_file(s
,mapping
))
1406 } else if (s
->current_mapping
->mode
& MODE_DIRECTORY
)
1407 goto read_cluster_directory
;
1409 assert(s
->current_fd
);
1411 offset
=s
->cluster_size
*(cluster_num
-s
->current_mapping
->begin
)+s
->current_mapping
->info
.file
.offset
;
1412 if(lseek(s
->current_fd
, offset
, SEEK_SET
)!=offset
)
1414 s
->cluster
=s
->cluster_buffer
;
1415 result
=read(s
->current_fd
,s
->cluster
,s
->cluster_size
);
1417 s
->current_cluster
= -1;
1420 s
->current_cluster
= cluster_num
;
1426 static void print_direntry(const direntry_t
* direntry
)
1431 fprintf(stderr
, "direntry %p: ", direntry
);
1434 if(is_long_name(direntry
)) {
1435 unsigned char* c
=(unsigned char*)direntry
;
1437 for(i
=1;i
<11 && c
[i
] && c
[i
]!=0xff;i
+=2)
1438 #define ADD_CHAR(c) {buffer[j] = (c); if (buffer[j] < ' ') buffer[j] = 0xb0; j++;}
1440 for(i
=14;i
<26 && c
[i
] && c
[i
]!=0xff;i
+=2)
1442 for(i
=28;i
<32 && c
[i
] && c
[i
]!=0xff;i
+=2)
1445 fprintf(stderr
, "%s\n", buffer
);
1449 ADD_CHAR(direntry
->name
[i
]);
1451 fprintf(stderr
, "%s attributes=0x%02x begin=%u size=%u\n",
1453 direntry
->attributes
,
1454 begin_of_direntry(direntry
),le32_to_cpu(direntry
->size
));
1458 static void print_mapping(const mapping_t
* mapping
)
1460 fprintf(stderr
, "mapping (%p): begin, end = %u, %u, dir_index = %u, "
1461 "first_mapping_index = %d, name = %s, mode = 0x%x, " ,
1462 mapping
, mapping
->begin
, mapping
->end
, mapping
->dir_index
,
1463 mapping
->first_mapping_index
, mapping
->path
, mapping
->mode
);
1465 if (mapping
->mode
& MODE_DIRECTORY
)
1466 fprintf(stderr
, "parent_mapping_index = %d, first_dir_index = %d\n", mapping
->info
.dir
.parent_mapping_index
, mapping
->info
.dir
.first_dir_index
);
1468 fprintf(stderr
, "offset = %u\n", mapping
->info
.file
.offset
);
1472 static int vvfat_read(BlockDriverState
*bs
, int64_t sector_num
,
1473 uint8_t *buf
, int nb_sectors
)
1475 BDRVVVFATState
*s
= bs
->opaque
;
1478 for(i
=0;i
<nb_sectors
;i
++,sector_num
++) {
1479 if (sector_num
>= bs
->total_sectors
)
1484 ret
= bdrv_is_allocated(s
->qcow
->bs
, sector_num
* BDRV_SECTOR_SIZE
,
1485 (nb_sectors
- i
) * BDRV_SECTOR_SIZE
, &n
);
1490 DLOG(fprintf(stderr
, "sectors %" PRId64
"+%" PRId64
1491 " allocated\n", sector_num
,
1492 n
>> BDRV_SECTOR_BITS
));
1493 if (bdrv_pread(s
->qcow
, sector_num
* BDRV_SECTOR_SIZE
, n
,
1494 buf
+ i
* 0x200, 0) < 0) {
1497 i
+= (n
>> BDRV_SECTOR_BITS
) - 1;
1498 sector_num
+= (n
>> BDRV_SECTOR_BITS
) - 1;
1501 DLOG(fprintf(stderr
, "sector %" PRId64
" not allocated\n",
1504 if (sector_num
< s
->offset_to_root_dir
) {
1505 if (sector_num
< s
->offset_to_fat
) {
1506 memcpy(buf
+ i
* 0x200,
1507 &(s
->first_sectors
[sector_num
* 0x200]),
1509 } else if (sector_num
< s
->offset_to_fat
+ s
->sectors_per_fat
) {
1510 memcpy(buf
+ i
* 0x200,
1511 &(s
->fat
.pointer
[(sector_num
1512 - s
->offset_to_fat
) * 0x200]),
1514 } else if (sector_num
< s
->offset_to_root_dir
) {
1515 memcpy(buf
+ i
* 0x200,
1516 &(s
->fat
.pointer
[(sector_num
- s
->offset_to_fat
1517 - s
->sectors_per_fat
) * 0x200]),
1521 uint32_t sector
= sector_num
- s
->offset_to_root_dir
,
1522 sector_offset_in_cluster
=(sector
%s
->sectors_per_cluster
),
1523 cluster_num
=sector
/s
->sectors_per_cluster
;
1524 if(cluster_num
> s
->cluster_count
|| read_cluster(s
, cluster_num
) != 0) {
1525 /* LATER TODO: strict: return -1; */
1526 memset(buf
+i
*0x200,0,0x200);
1529 memcpy(buf
+i
*0x200,s
->cluster
+sector_offset_in_cluster
*0x200,0x200);
1535 static int coroutine_fn
1536 vvfat_co_preadv(BlockDriverState
*bs
, int64_t offset
, int64_t bytes
,
1537 QEMUIOVector
*qiov
, BdrvRequestFlags flags
)
1540 BDRVVVFATState
*s
= bs
->opaque
;
1541 uint64_t sector_num
= offset
>> BDRV_SECTOR_BITS
;
1542 int nb_sectors
= bytes
>> BDRV_SECTOR_BITS
;
1545 assert(QEMU_IS_ALIGNED(offset
, BDRV_SECTOR_SIZE
));
1546 assert(QEMU_IS_ALIGNED(bytes
, BDRV_SECTOR_SIZE
));
1548 buf
= g_try_malloc(bytes
);
1549 if (bytes
&& buf
== NULL
) {
1553 qemu_co_mutex_lock(&s
->lock
);
1554 ret
= vvfat_read(bs
, sector_num
, buf
, nb_sectors
);
1555 qemu_co_mutex_unlock(&s
->lock
);
1557 qemu_iovec_from_buf(qiov
, 0, buf
, bytes
);
1563 /* LATER TODO: statify all functions */
1566 * Idea of the write support (use snapshot):
1568 * 1. check if all data is consistent, recording renames, modifications,
1569 * new files and directories (in s->commits).
1571 * 2. if the data is not consistent, stop committing
1573 * 3. handle renames, and create new files and directories (do not yet
1574 * write their contents)
1576 * 4. walk the directories, fixing the mapping and direntries, and marking
1577 * the handled mappings as not deleted
1579 * 5. commit the contents of the files
1581 * 6. handle deleted files and directories
1585 typedef struct commit_t
{
1588 struct { uint32_t cluster
; } rename
;
1589 struct { int dir_index
; uint32_t modified_offset
; } writeout
;
1590 struct { uint32_t first_cluster
; } new_file
;
1591 struct { uint32_t cluster
; } mkdir
;
1593 /* DELETEs and RMDIRs are handled differently: see handle_deletes() */
1595 ACTION_RENAME
, ACTION_WRITEOUT
, ACTION_NEW_FILE
, ACTION_MKDIR
1599 static void clear_commits(BDRVVVFATState
* s
)
1602 DLOG(fprintf(stderr
, "clear_commits (%u commits)\n", s
->commits
.next
));
1603 for (i
= 0; i
< s
->commits
.next
; i
++) {
1604 commit_t
* commit
= array_get(&(s
->commits
), i
);
1605 assert(commit
->path
|| commit
->action
== ACTION_WRITEOUT
);
1606 if (commit
->action
!= ACTION_WRITEOUT
) {
1607 assert(commit
->path
);
1608 g_free(commit
->path
);
1610 assert(commit
->path
== NULL
);
1612 s
->commits
.next
= 0;
1615 static void schedule_rename(BDRVVVFATState
* s
,
1616 uint32_t cluster
, char* new_path
)
1618 commit_t
* commit
= array_get_next(&(s
->commits
));
1619 commit
->path
= new_path
;
1620 commit
->param
.rename
.cluster
= cluster
;
1621 commit
->action
= ACTION_RENAME
;
1624 static void schedule_writeout(BDRVVVFATState
* s
,
1625 int dir_index
, uint32_t modified_offset
)
1627 commit_t
* commit
= array_get_next(&(s
->commits
));
1628 commit
->path
= NULL
;
1629 commit
->param
.writeout
.dir_index
= dir_index
;
1630 commit
->param
.writeout
.modified_offset
= modified_offset
;
1631 commit
->action
= ACTION_WRITEOUT
;
1634 static void schedule_new_file(BDRVVVFATState
* s
,
1635 char* path
, uint32_t first_cluster
)
1637 commit_t
* commit
= array_get_next(&(s
->commits
));
1638 commit
->path
= path
;
1639 commit
->param
.new_file
.first_cluster
= first_cluster
;
1640 commit
->action
= ACTION_NEW_FILE
;
1643 static void schedule_mkdir(BDRVVVFATState
* s
, uint32_t cluster
, char* path
)
1645 commit_t
* commit
= array_get_next(&(s
->commits
));
1646 commit
->path
= path
;
1647 commit
->param
.mkdir
.cluster
= cluster
;
1648 commit
->action
= ACTION_MKDIR
;
1653 * Since the sequence number is at most 0x3f, and the filename
1654 * length is at most 13 times the sequence number, the maximal
1655 * filename length is 0x3f * 13 bytes.
1657 unsigned char name
[0x3f * 13 + 1];
1658 gunichar2 name2
[0x3f * 13 + 1];
1660 int sequence_number
;
1663 static void lfn_init(long_file_name
* lfn
)
1665 lfn
->sequence_number
= lfn
->len
= 0;
1666 lfn
->checksum
= 0x100;
1669 /* return 0 if parsed successfully, > 0 if no long name, < 0 if error */
1670 static int parse_long_name(long_file_name
* lfn
,
1671 const direntry_t
* direntry
)
1674 const unsigned char* pointer
= (const unsigned char*)direntry
;
1676 if (!is_long_name(direntry
))
1679 if (pointer
[0] & 0x40) {
1680 /* first entry; do some initialization */
1681 lfn
->sequence_number
= pointer
[0] & 0x3f;
1682 lfn
->checksum
= pointer
[13];
1684 lfn
->name
[lfn
->sequence_number
* 13] = 0;
1685 } else if ((pointer
[0] & 0x3f) != --lfn
->sequence_number
) {
1686 /* not the expected sequence number */
1688 } else if (pointer
[13] != lfn
->checksum
) {
1689 /* not the expected checksum */
1691 } else if (pointer
[12] || pointer
[26] || pointer
[27]) {
1692 /* invalid zero fields */
1696 offset
= 13 * (lfn
->sequence_number
- 1);
1697 for (i
= 0, j
= 1; i
< 13; i
++, j
+=2) {
1703 if (pointer
[j
] == 0 && pointer
[j
+ 1] == 0) {
1704 /* end of long file name */
1707 gunichar2 c
= (pointer
[j
+ 1] << 8) + pointer
[j
];
1708 lfn
->name2
[offset
+ i
] = c
;
1711 if (pointer
[0] & 0x40) {
1712 /* first entry; set len */
1713 lfn
->len
= offset
+ i
;
1715 if ((pointer
[0] & 0x3f) == 0x01) {
1716 /* last entry; finalize entry */
1718 gchar
*utf8
= g_utf16_to_utf8(lfn
->name2
, lfn
->len
, NULL
, &olen
, NULL
);
1723 memcpy(lfn
->name
, utf8
, olen
+ 1);
1730 /* returns 0 if successful, >0 if no short_name, and <0 on error */
1731 static int parse_short_name(BDRVVVFATState
* s
,
1732 long_file_name
* lfn
, direntry_t
* direntry
)
1736 if (!is_short_name(direntry
))
1739 for (j
= 7; j
>= 0 && direntry
->name
[j
] == ' '; j
--);
1740 for (i
= 0; i
<= j
; i
++) {
1741 uint8_t c
= direntry
->name
[i
];
1742 if (c
!= to_valid_short_char(c
)) {
1744 } else if (s
->downcase_short_names
) {
1745 lfn
->name
[i
] = qemu_tolower(direntry
->name
[i
]);
1747 lfn
->name
[i
] = direntry
->name
[i
];
1751 for (j
= 2; j
>= 0 && direntry
->name
[8 + j
] == ' '; j
--) {
1754 lfn
->name
[i
++] = '.';
1755 lfn
->name
[i
+ j
+ 1] = '\0';
1756 for (;j
>= 0; j
--) {
1757 uint8_t c
= direntry
->name
[8 + j
];
1758 if (c
!= to_valid_short_char(c
)) {
1760 } else if (s
->downcase_short_names
) {
1761 lfn
->name
[i
+ j
] = qemu_tolower(c
);
1763 lfn
->name
[i
+ j
] = c
;
1767 lfn
->name
[i
+ j
+ 1] = '\0';
1769 if (lfn
->name
[0] == DIR_KANJI_FAKE
) {
1770 lfn
->name
[0] = DIR_KANJI
;
1772 lfn
->len
= strlen((char*)lfn
->name
);
1777 static inline uint32_t modified_fat_get(BDRVVVFATState
* s
,
1778 unsigned int cluster
)
1780 if (cluster
< s
->last_cluster_of_root_directory
) {
1781 if (cluster
+ 1 == s
->last_cluster_of_root_directory
)
1782 return s
->max_fat_value
;
1787 if (s
->fat_type
==32) {
1788 uint32_t* entry
=((uint32_t*)s
->fat2
)+cluster
;
1789 return le32_to_cpu(*entry
);
1790 } else if (s
->fat_type
==16) {
1791 uint16_t* entry
=((uint16_t*)s
->fat2
)+cluster
;
1792 return le16_to_cpu(*entry
);
1794 const uint8_t* x
=s
->fat2
+cluster
*3/2;
1795 return ((x
[0]|(x
[1]<<8))>>(cluster
&1?4:0))&0x0fff;
1799 static inline bool cluster_was_modified(BDRVVVFATState
*s
,
1800 uint32_t cluster_num
)
1802 int was_modified
= 0;
1805 if (s
->qcow
== NULL
) {
1809 for (i
= 0; !was_modified
&& i
< s
->sectors_per_cluster
; i
++) {
1810 was_modified
= bdrv_is_allocated(s
->qcow
->bs
,
1811 (cluster2sector(s
, cluster_num
) +
1812 i
) * BDRV_SECTOR_SIZE
,
1813 BDRV_SECTOR_SIZE
, NULL
);
1817 * Note that this treats failures to learn allocation status the
1818 * same as if an allocation has occurred. It's as safe as
1819 * anything else, given that a failure to learn allocation status
1820 * will probably result in more failures.
1822 return !!was_modified
;
1825 static const char* get_basename(const char* path
)
1827 char* basename
= strrchr(path
, '/');
1828 if (basename
== NULL
)
1831 return basename
+ 1; /* strip '/' */
1835 * The array s->used_clusters holds the states of the clusters. If it is
1836 * part of a file, it has bit 2 set, in case of a directory, bit 1. If it
1837 * was modified, bit 3 is set.
1838 * If any cluster is allocated, but not part of a file or directory, this
1839 * driver refuses to commit.
1842 USED_DIRECTORY
= 1, USED_FILE
= 2, USED_ANY
= 3, USED_ALLOCATED
= 4
1846 * get_cluster_count_for_direntry() not only determines how many clusters
1847 * are occupied by direntry, but also if it was renamed or modified.
1849 * A file is thought to be renamed *only* if there already was a file with
1850 * exactly the same first cluster, but a different name.
1852 * Further, the files/directories handled by this function are
1853 * assumed to be *not* deleted (and *only* those).
1855 static uint32_t get_cluster_count_for_direntry(BDRVVVFATState
* s
,
1856 direntry_t
* direntry
, const char* path
)
1859 * This is a little bit tricky:
1860 * IF the guest OS just inserts a cluster into the file chain,
1861 * and leaves the rest alone, (i.e. the original file had clusters
1862 * 15 -> 16, but now has 15 -> 32 -> 16), then the following happens:
1864 * - do_commit will write the cluster into the file at the given
1867 * - the cluster which is overwritten should be moved to a later
1868 * position in the file.
1870 * I am not aware that any OS does something as braindead, but this
1871 * situation could happen anyway when not committing for a long time.
1872 * Just to be sure that this does not bite us, detect it, and copy the
1873 * contents of the clusters to-be-overwritten into the qcow.
1876 int was_modified
= 0;
1879 uint32_t cluster_num
= begin_of_direntry(direntry
);
1880 uint32_t offset
= 0;
1881 int first_mapping_index
= -1;
1882 mapping_t
* mapping
= NULL
;
1883 const char* basename2
= NULL
;
1885 vvfat_close_current_file(s
);
1887 /* the root directory */
1888 if (cluster_num
== 0)
1893 basename2
= get_basename(path
);
1895 mapping
= find_mapping_for_cluster(s
, cluster_num
);
1898 const char* basename
;
1900 assert(mapping
->mode
& MODE_DELETED
);
1901 mapping
->mode
&= ~MODE_DELETED
;
1903 basename
= get_basename(mapping
->path
);
1905 assert(mapping
->mode
& MODE_NORMAL
);
1908 if (strcmp(basename
, basename2
))
1909 schedule_rename(s
, cluster_num
, g_strdup(path
));
1910 } else if (is_file(direntry
))
1912 schedule_new_file(s
, g_strdup(path
), cluster_num
);
1921 if (!copy_it
&& cluster_was_modified(s
, cluster_num
)) {
1922 if (mapping
== NULL
||
1923 mapping
->begin
> cluster_num
||
1924 mapping
->end
<= cluster_num
)
1925 mapping
= find_mapping_for_cluster(s
, cluster_num
);
1929 (mapping
->mode
& MODE_DIRECTORY
) == 0) {
1931 /* was modified in qcow */
1932 if (offset
!= mapping
->info
.file
.offset
+ s
->cluster_size
1933 * (cluster_num
- mapping
->begin
)) {
1934 /* offset of this cluster in file chain has changed */
1937 } else if (offset
== 0) {
1938 const char* basename
= get_basename(mapping
->path
);
1940 if (strcmp(basename
, basename2
))
1942 first_mapping_index
= array_index(&(s
->mapping
), mapping
);
1945 if (mapping
->first_mapping_index
!= first_mapping_index
1946 && mapping
->info
.file
.offset
> 0) {
1951 /* need to write out? */
1952 if (!was_modified
&& is_file(direntry
)) {
1954 schedule_writeout(s
, mapping
->dir_index
, offset
);
1962 * This is horribly inefficient, but that is okay, since
1963 * it is rarely executed, if at all.
1965 int64_t offset
= cluster2sector(s
, cluster_num
);
1967 vvfat_close_current_file(s
);
1968 for (i
= 0; i
< s
->sectors_per_cluster
; i
++) {
1971 res
= bdrv_is_allocated(s
->qcow
->bs
,
1972 (offset
+ i
) * BDRV_SECTOR_SIZE
,
1973 BDRV_SECTOR_SIZE
, NULL
);
1978 res
= vvfat_read(s
->bs
, offset
, s
->cluster_buffer
, 1);
1982 res
= bdrv_pwrite(s
->qcow
, offset
* BDRV_SECTOR_SIZE
,
1983 BDRV_SECTOR_SIZE
, s
->cluster_buffer
,
1994 if (s
->used_clusters
[cluster_num
] & USED_ANY
)
1996 s
->used_clusters
[cluster_num
] = USED_FILE
;
1998 cluster_num
= modified_fat_get(s
, cluster_num
);
2000 if (fat_eof(s
, cluster_num
))
2002 else if (cluster_num
< 2 || cluster_num
> s
->max_fat_value
- 16)
2005 offset
+= s
->cluster_size
;
2010 * This function looks at the modified data (qcow).
2011 * It returns 0 upon inconsistency or error, and the number of clusters
2012 * used by the directory, its subdirectories and their files.
2014 static int check_directory_consistency(BDRVVVFATState
*s
,
2015 int cluster_num
, const char* path
)
2018 unsigned char* cluster
= g_malloc(s
->cluster_size
);
2019 direntry_t
* direntries
= (direntry_t
*)cluster
;
2020 mapping_t
* mapping
= find_mapping_for_cluster(s
, cluster_num
);
2023 int path_len
= strlen(path
);
2024 char path2
[PATH_MAX
+ 1];
2026 assert(path_len
< PATH_MAX
); /* len was tested before! */
2027 pstrcpy(path2
, sizeof(path2
), path
);
2028 path2
[path_len
] = '/';
2029 path2
[path_len
+ 1] = '\0';
2032 const char* basename
= get_basename(mapping
->path
);
2033 const char* basename2
= get_basename(path
);
2035 assert(mapping
->mode
& MODE_DIRECTORY
);
2037 assert(mapping
->mode
& MODE_DELETED
);
2038 mapping
->mode
&= ~MODE_DELETED
;
2040 if (strcmp(basename
, basename2
))
2041 schedule_rename(s
, cluster_num
, g_strdup(path
));
2044 schedule_mkdir(s
, cluster_num
, g_strdup(path
));
2053 if (s
->used_clusters
[cluster_num
] & USED_ANY
) {
2054 fprintf(stderr
, "cluster %d used more than once\n", (int)cluster_num
);
2057 s
->used_clusters
[cluster_num
] = USED_DIRECTORY
;
2059 DLOG(fprintf(stderr
, "read cluster %d (sector %d)\n", (int)cluster_num
, (int)cluster2sector(s
, cluster_num
)));
2060 subret
= vvfat_read(s
->bs
, cluster2sector(s
, cluster_num
), cluster
,
2061 s
->sectors_per_cluster
);
2063 fprintf(stderr
, "Error fetching direntries\n");
2069 for (i
= 0; i
< 0x10 * s
->sectors_per_cluster
; i
++) {
2070 int cluster_count
= 0;
2072 DLOG(fprintf(stderr
, "check direntry %d:\n", i
); print_direntry(direntries
+ i
));
2073 if (is_volume_label(direntries
+ i
) || is_dot(direntries
+ i
) ||
2074 is_free(direntries
+ i
))
2077 subret
= parse_long_name(&lfn
, direntries
+ i
);
2079 fprintf(stderr
, "Error in long name\n");
2082 if (subret
== 0 || is_free(direntries
+ i
))
2085 if (fat_chksum(direntries
+i
) != lfn
.checksum
) {
2086 subret
= parse_short_name(s
, &lfn
, direntries
+ i
);
2088 fprintf(stderr
, "Error in short name (%d)\n", subret
);
2091 if (subret
> 0 || !strcmp((char*)lfn
.name
, ".")
2092 || !strcmp((char*)lfn
.name
, ".."))
2095 lfn
.checksum
= 0x100; /* cannot use long name twice */
2097 if (!valid_filename(lfn
.name
)) {
2098 fprintf(stderr
, "Invalid file name\n");
2101 if (path_len
+ 1 + lfn
.len
>= PATH_MAX
) {
2102 fprintf(stderr
, "Name too long: %s/%s\n", path
, lfn
.name
);
2105 pstrcpy(path2
+ path_len
+ 1, sizeof(path2
) - path_len
- 1,
2108 if (is_directory(direntries
+ i
)) {
2109 if (begin_of_direntry(direntries
+ i
) == 0) {
2110 DLOG(fprintf(stderr
, "invalid begin for directory: %s\n", path2
); print_direntry(direntries
+ i
));
2113 cluster_count
= check_directory_consistency(s
,
2114 begin_of_direntry(direntries
+ i
), path2
);
2115 if (cluster_count
== 0) {
2116 DLOG(fprintf(stderr
, "problem in directory %s:\n", path2
); print_direntry(direntries
+ i
));
2119 } else if (is_file(direntries
+ i
)) {
2120 /* check file size with FAT */
2121 cluster_count
= get_cluster_count_for_direntry(s
, direntries
+ i
, path2
);
2122 if (cluster_count
!=
2123 DIV_ROUND_UP(le32_to_cpu(direntries
[i
].size
), s
->cluster_size
)) {
2124 DLOG(fprintf(stderr
, "Cluster count mismatch\n"));
2128 abort(); /* cluster_count = 0; */
2130 ret
+= cluster_count
;
2133 cluster_num
= modified_fat_get(s
, cluster_num
);
2134 } while(!fat_eof(s
, cluster_num
));
2140 /* returns 1 on success */
2141 static int is_consistent(BDRVVVFATState
* s
)
2144 int used_clusters_count
= 0;
2148 * - get modified FAT
2149 * - compare the two FATs (TODO)
2150 * - get buffer for marking used clusters
2151 * - recurse direntries from root (using bs->bdrv_pread to make
2152 * sure to get the new data)
2153 * - check that the FAT agrees with the size
2154 * - count the number of clusters occupied by this directory and
2156 * - check that the cumulative used cluster count agrees with the
2158 * - if all is fine, return number of used clusters
2160 if (s
->fat2
== NULL
) {
2161 int size
= 0x200 * s
->sectors_per_fat
;
2162 s
->fat2
= g_malloc(size
);
2163 memcpy(s
->fat2
, s
->fat
.pointer
, size
);
2165 check
= vvfat_read(s
->bs
,
2166 s
->offset_to_fat
, s
->fat2
, s
->sectors_per_fat
);
2168 fprintf(stderr
, "Could not copy fat\n");
2171 assert (s
->used_clusters
);
2172 for (i
= 0; i
< sector2cluster(s
, s
->sector_count
); i
++)
2173 s
->used_clusters
[i
] &= ~USED_ANY
;
2177 /* mark every mapped file/directory as deleted.
2178 * (check_directory_consistency() will unmark those still present). */
2180 for (i
= 0; i
< s
->mapping
.next
; i
++) {
2181 mapping_t
* mapping
= array_get(&(s
->mapping
), i
);
2182 if (mapping
->first_mapping_index
< 0)
2183 mapping
->mode
|= MODE_DELETED
;
2186 used_clusters_count
= check_directory_consistency(s
, 0, s
->path
);
2187 if (used_clusters_count
<= 0) {
2188 DLOG(fprintf(stderr
, "problem in directory\n"));
2192 check
= s
->last_cluster_of_root_directory
;
2193 for (i
= check
; i
< sector2cluster(s
, s
->sector_count
); i
++) {
2194 if (modified_fat_get(s
, i
)) {
2195 if(!s
->used_clusters
[i
]) {
2196 DLOG(fprintf(stderr
, "FAT was modified (%d), but cluster is not used?\n", i
));
2202 if (s
->used_clusters
[i
] == USED_ALLOCATED
) {
2203 /* allocated, but not used... */
2204 DLOG(fprintf(stderr
, "unused, modified cluster: %d\n", i
));
2209 if (check
!= used_clusters_count
)
2212 return used_clusters_count
;
2215 static inline void adjust_mapping_indices(BDRVVVFATState
* s
,
2216 int offset
, int adjust
)
2220 for (i
= 0; i
< s
->mapping
.next
; i
++) {
2221 mapping_t
* mapping
= array_get(&(s
->mapping
), i
);
2223 #define ADJUST_MAPPING_INDEX(name) \
2224 if (mapping->name >= offset) \
2225 mapping->name += adjust
2227 ADJUST_MAPPING_INDEX(first_mapping_index
);
2228 if (mapping
->mode
& MODE_DIRECTORY
)
2229 ADJUST_MAPPING_INDEX(info
.dir
.parent_mapping_index
);
2233 /* insert or update mapping */
2234 static mapping_t
* insert_mapping(BDRVVVFATState
* s
,
2235 uint32_t begin
, uint32_t end
)
2238 * - find mapping where mapping->begin >= begin,
2239 * - if mapping->begin > begin: insert
2240 * - adjust all references to mappings!
2244 int index
= find_mapping_for_cluster_aux(s
, begin
, 0, s
->mapping
.next
);
2245 mapping_t
* mapping
= NULL
;
2246 mapping_t
* first_mapping
= array_get(&(s
->mapping
), 0);
2248 if (index
< s
->mapping
.next
&& (mapping
= array_get(&(s
->mapping
), index
))
2249 && mapping
->begin
< begin
) {
2250 mapping
->end
= begin
;
2252 mapping
= array_get(&(s
->mapping
), index
);
2254 if (index
>= s
->mapping
.next
|| mapping
->begin
> begin
) {
2255 mapping
= array_insert(&(s
->mapping
), index
, 1);
2256 mapping
->path
= NULL
;
2257 adjust_mapping_indices(s
, index
, +1);
2260 mapping
->begin
= begin
;
2263 DLOG(mapping_t
* next_mapping
;
2264 assert(index
+ 1 >= s
->mapping
.next
||
2265 ((next_mapping
= array_get(&(s
->mapping
), index
+ 1)) &&
2266 next_mapping
->begin
>= end
)));
2268 if (s
->current_mapping
&& first_mapping
!= (mapping_t
*)s
->mapping
.pointer
)
2269 s
->current_mapping
= array_get(&(s
->mapping
),
2270 s
->current_mapping
- first_mapping
);
2275 static int remove_mapping(BDRVVVFATState
* s
, int mapping_index
)
2277 mapping_t
* mapping
= array_get(&(s
->mapping
), mapping_index
);
2278 mapping_t
* first_mapping
= array_get(&(s
->mapping
), 0);
2281 if (mapping
->first_mapping_index
< 0) {
2282 g_free(mapping
->path
);
2285 /* remove from s->mapping */
2286 array_remove(&(s
->mapping
), mapping_index
);
2288 /* adjust all references to mappings */
2289 adjust_mapping_indices(s
, mapping_index
, -1);
2291 if (s
->current_mapping
&& first_mapping
!= (mapping_t
*)s
->mapping
.pointer
)
2292 s
->current_mapping
= array_get(&(s
->mapping
),
2293 s
->current_mapping
- first_mapping
);
2298 static void adjust_dirindices(BDRVVVFATState
* s
, int offset
, int adjust
)
2301 for (i
= 0; i
< s
->mapping
.next
; i
++) {
2302 mapping_t
* mapping
= array_get(&(s
->mapping
), i
);
2303 if (mapping
->dir_index
>= offset
)
2304 mapping
->dir_index
+= adjust
;
2305 if ((mapping
->mode
& MODE_DIRECTORY
) &&
2306 mapping
->info
.dir
.first_dir_index
>= offset
)
2307 mapping
->info
.dir
.first_dir_index
+= adjust
;
2311 static direntry_t
* insert_direntries(BDRVVVFATState
* s
,
2312 int dir_index
, int count
)
2315 * make room in s->directory,
2318 direntry_t
* result
= array_insert(&(s
->directory
), dir_index
, count
);
2321 adjust_dirindices(s
, dir_index
, count
);
2325 static int remove_direntries(BDRVVVFATState
* s
, int dir_index
, int count
)
2327 int ret
= array_remove_slice(&(s
->directory
), dir_index
, count
);
2330 adjust_dirindices(s
, dir_index
, -count
);
2335 * Adapt the mappings of the cluster chain starting at first cluster
2336 * (i.e. if a file starts at first_cluster, the chain is followed according
2337 * to the modified fat, and the corresponding entries in s->mapping are
2340 static int commit_mappings(BDRVVVFATState
* s
,
2341 uint32_t first_cluster
, int dir_index
)
2343 mapping_t
* mapping
= find_mapping_for_cluster(s
, first_cluster
);
2344 direntry_t
* direntry
= array_get(&(s
->directory
), dir_index
);
2345 uint32_t cluster
= first_cluster
;
2347 vvfat_close_current_file(s
);
2350 assert(mapping
->begin
== first_cluster
);
2351 mapping
->first_mapping_index
= -1;
2352 mapping
->dir_index
= dir_index
;
2353 mapping
->mode
= (dir_index
<= 0 || is_directory(direntry
)) ?
2354 MODE_DIRECTORY
: MODE_NORMAL
;
2356 while (!fat_eof(s
, cluster
)) {
2359 for (c
= cluster
, c1
= modified_fat_get(s
, c
); c
+ 1 == c1
;
2360 c
= c1
, c1
= modified_fat_get(s
, c1
));
2363 if (c
> mapping
->end
) {
2364 int index
= array_index(&(s
->mapping
), mapping
);
2365 int i
, max_i
= s
->mapping
.next
- index
;
2366 for (i
= 1; i
< max_i
&& mapping
[i
].begin
< c
; i
++);
2368 remove_mapping(s
, index
+ 1);
2370 assert(mapping
== array_get(&(s
->mapping
), s
->mapping
.next
- 1)
2371 || mapping
[1].begin
>= c
);
2374 if (!fat_eof(s
, c1
)) {
2375 int i
= find_mapping_for_cluster_aux(s
, c1
, 0, s
->mapping
.next
);
2376 mapping_t
* next_mapping
= i
>= s
->mapping
.next
? NULL
:
2377 array_get(&(s
->mapping
), i
);
2379 if (next_mapping
== NULL
|| next_mapping
->begin
> c1
) {
2380 int i1
= array_index(&(s
->mapping
), mapping
);
2382 next_mapping
= insert_mapping(s
, c1
, c1
+1);
2386 mapping
= array_get(&(s
->mapping
), i1
);
2389 next_mapping
->dir_index
= mapping
->dir_index
;
2390 next_mapping
->first_mapping_index
=
2391 mapping
->first_mapping_index
< 0 ?
2392 array_index(&(s
->mapping
), mapping
) :
2393 mapping
->first_mapping_index
;
2394 next_mapping
->path
= mapping
->path
;
2395 next_mapping
->mode
= mapping
->mode
;
2396 next_mapping
->read_only
= mapping
->read_only
;
2397 if (mapping
->mode
& MODE_DIRECTORY
) {
2398 next_mapping
->info
.dir
.parent_mapping_index
=
2399 mapping
->info
.dir
.parent_mapping_index
;
2400 next_mapping
->info
.dir
.first_dir_index
=
2401 mapping
->info
.dir
.first_dir_index
+
2402 0x10 * s
->sectors_per_cluster
*
2403 (mapping
->end
- mapping
->begin
);
2405 next_mapping
->info
.file
.offset
= mapping
->info
.file
.offset
+
2406 mapping
->end
- mapping
->begin
;
2408 mapping
= next_mapping
;
2417 static int commit_direntries(BDRVVVFATState
* s
,
2418 int dir_index
, int parent_mapping_index
)
2420 direntry_t
* direntry
= array_get(&(s
->directory
), dir_index
);
2421 uint32_t first_cluster
= dir_index
== 0 ? 0 : begin_of_direntry(direntry
);
2422 mapping_t
* mapping
= find_mapping_for_cluster(s
, first_cluster
);
2423 int factor
= 0x10 * s
->sectors_per_cluster
;
2424 int old_cluster_count
, new_cluster_count
;
2425 int current_dir_index
;
2426 int first_dir_index
;
2432 assert(mapping
->begin
== first_cluster
);
2433 assert(mapping
->info
.dir
.first_dir_index
< s
->directory
.next
);
2434 assert(mapping
->mode
& MODE_DIRECTORY
);
2435 assert(dir_index
== 0 || is_directory(direntry
));
2437 DLOG(fprintf(stderr
, "commit_direntries for %s, parent_mapping_index %d\n",
2438 mapping
->path
, parent_mapping_index
));
2440 current_dir_index
= mapping
->info
.dir
.first_dir_index
;
2441 first_dir_index
= current_dir_index
;
2442 mapping
->info
.dir
.parent_mapping_index
= parent_mapping_index
;
2444 if (first_cluster
== 0) {
2445 old_cluster_count
= new_cluster_count
=
2446 s
->last_cluster_of_root_directory
;
2448 for (old_cluster_count
= 0, c
= first_cluster
; !fat_eof(s
, c
);
2450 old_cluster_count
++;
2452 for (new_cluster_count
= 0, c
= first_cluster
; !fat_eof(s
, c
);
2453 c
= modified_fat_get(s
, c
))
2454 new_cluster_count
++;
2457 if (new_cluster_count
> old_cluster_count
) {
2458 if (insert_direntries(s
,
2459 current_dir_index
+ factor
* old_cluster_count
,
2460 factor
* (new_cluster_count
- old_cluster_count
)) == NULL
)
2462 } else if (new_cluster_count
< old_cluster_count
)
2463 remove_direntries(s
,
2464 current_dir_index
+ factor
* new_cluster_count
,
2465 factor
* (old_cluster_count
- new_cluster_count
));
2467 for (c
= first_cluster
; !fat_eof(s
, c
); c
= modified_fat_get(s
, c
)) {
2468 direntry_t
*first_direntry
;
2469 void* direntry
= array_get(&(s
->directory
), current_dir_index
);
2470 int ret
= vvfat_read(s
->bs
, cluster2sector(s
, c
), direntry
,
2471 s
->sectors_per_cluster
);
2475 /* The first directory entry on the filesystem is the volume name */
2476 first_direntry
= (direntry_t
*) s
->directory
.pointer
;
2477 assert(!memcmp(first_direntry
->name
, s
->volume_label
, 11));
2479 current_dir_index
+= factor
;
2482 ret
= commit_mappings(s
, first_cluster
, dir_index
);
2487 for (i
= 0; i
< factor
* new_cluster_count
; i
++) {
2488 direntry
= array_get(&(s
->directory
), first_dir_index
+ i
);
2489 if (is_directory(direntry
) && !is_dot(direntry
)) {
2490 mapping
= find_mapping_for_cluster(s
, first_cluster
);
2491 if (mapping
== NULL
) {
2494 assert(mapping
->mode
& MODE_DIRECTORY
);
2495 ret
= commit_direntries(s
, first_dir_index
+ i
,
2496 array_index(&(s
->mapping
), mapping
));
2505 /* commit one file (adjust contents, adjust mapping),
2506 return first_mapping_index */
2507 static int commit_one_file(BDRVVVFATState
* s
,
2508 int dir_index
, uint32_t offset
)
2510 direntry_t
* direntry
= array_get(&(s
->directory
), dir_index
);
2511 uint32_t c
= begin_of_direntry(direntry
);
2512 uint32_t first_cluster
= c
;
2513 mapping_t
* mapping
= find_mapping_for_cluster(s
, c
);
2514 uint32_t size
= filesize_of_direntry(direntry
);
2519 assert(offset
< size
);
2520 assert((offset
% s
->cluster_size
) == 0);
2522 if (mapping
== NULL
) {
2526 for (i
= s
->cluster_size
; i
< offset
; i
+= s
->cluster_size
)
2527 c
= modified_fat_get(s
, c
);
2529 fd
= qemu_open_old(mapping
->path
, O_RDWR
| O_CREAT
| O_BINARY
, 0666);
2531 fprintf(stderr
, "Could not open %s... (%s, %d)\n", mapping
->path
,
2532 strerror(errno
), errno
);
2536 if (lseek(fd
, offset
, SEEK_SET
) != offset
) {
2542 cluster
= g_malloc(s
->cluster_size
);
2544 while (offset
< size
) {
2546 int rest_size
= (size
- offset
> s
->cluster_size
?
2547 s
->cluster_size
: size
- offset
);
2550 c1
= modified_fat_get(s
, c
);
2552 assert((size
- offset
== 0 && fat_eof(s
, c
)) ||
2553 (size
> offset
&& c
>=2 && !fat_eof(s
, c
)));
2555 ret
= vvfat_read(s
->bs
, cluster2sector(s
, c
),
2556 (uint8_t*)cluster
, DIV_ROUND_UP(rest_size
, 0x200));
2564 if (write(fd
, cluster
, rest_size
) < 0) {
2570 offset
+= rest_size
;
2574 if (ftruncate(fd
, size
)) {
2575 perror("ftruncate()");
2583 return commit_mappings(s
, first_cluster
, dir_index
);
2587 /* test, if all mappings point to valid direntries */
2588 static void check1(BDRVVVFATState
* s
)
2591 for (i
= 0; i
< s
->mapping
.next
; i
++) {
2592 mapping_t
* mapping
= array_get(&(s
->mapping
), i
);
2593 if (mapping
->mode
& MODE_DELETED
) {
2594 fprintf(stderr
, "deleted\n");
2597 assert(mapping
->dir_index
< s
->directory
.next
);
2598 direntry_t
* direntry
= array_get(&(s
->directory
), mapping
->dir_index
);
2599 assert(mapping
->begin
== begin_of_direntry(direntry
) || mapping
->first_mapping_index
>= 0);
2600 if (mapping
->mode
& MODE_DIRECTORY
) {
2601 assert(mapping
->info
.dir
.first_dir_index
+ 0x10 * s
->sectors_per_cluster
* (mapping
->end
- mapping
->begin
) <= s
->directory
.next
);
2602 assert((mapping
->info
.dir
.first_dir_index
% (0x10 * s
->sectors_per_cluster
)) == 0);
2607 /* test, if all direntries have mappings */
2608 static void check2(BDRVVVFATState
* s
)
2611 int first_mapping
= -1;
2613 for (i
= 0; i
< s
->directory
.next
; i
++) {
2614 direntry_t
* direntry
= array_get(&(s
->directory
), i
);
2616 if (is_short_name(direntry
) && begin_of_direntry(direntry
)) {
2617 mapping_t
* mapping
= find_mapping_for_cluster(s
, begin_of_direntry(direntry
));
2619 assert(mapping
->dir_index
== i
|| is_dot(direntry
));
2620 assert(mapping
->begin
== begin_of_direntry(direntry
) || is_dot(direntry
));
2623 if ((i
% (0x10 * s
->sectors_per_cluster
)) == 0) {
2627 for (j
= 0; j
< s
->mapping
.next
; j
++) {
2628 mapping_t
* mapping
= array_get(&(s
->mapping
), j
);
2629 if (mapping
->mode
& MODE_DELETED
)
2631 if (mapping
->mode
& MODE_DIRECTORY
) {
2632 if (mapping
->info
.dir
.first_dir_index
<= i
&& mapping
->info
.dir
.first_dir_index
+ 0x10 * s
->sectors_per_cluster
> i
) {
2633 assert(++count
== 1);
2634 if (mapping
->first_mapping_index
== -1)
2635 first_mapping
= array_index(&(s
->mapping
), mapping
);
2637 assert(first_mapping
== mapping
->first_mapping_index
);
2638 if (mapping
->info
.dir
.parent_mapping_index
< 0)
2641 mapping_t
* parent
= array_get(&(s
->mapping
), mapping
->info
.dir
.parent_mapping_index
);
2642 assert(parent
->mode
& MODE_DIRECTORY
);
2643 assert(parent
->info
.dir
.first_dir_index
< mapping
->info
.dir
.first_dir_index
);
2655 static int handle_renames_and_mkdirs(BDRVVVFATState
* s
)
2660 fprintf(stderr
, "handle_renames\n");
2661 for (i
= 0; i
< s
->commits
.next
; i
++) {
2662 commit_t
* commit
= array_get(&(s
->commits
), i
);
2663 fprintf(stderr
, "%d, %s (%u, %d)\n", i
,
2664 commit
->path
? commit
->path
: "(null)",
2665 commit
->param
.rename
.cluster
, commit
->action
);
2669 for (i
= 0; i
< s
->commits
.next
;) {
2670 commit_t
* commit
= array_get(&(s
->commits
), i
);
2671 if (commit
->action
== ACTION_RENAME
) {
2672 mapping_t
* mapping
= find_mapping_for_cluster(s
,
2673 commit
->param
.rename
.cluster
);
2676 if (mapping
== NULL
) {
2679 old_path
= mapping
->path
;
2680 assert(commit
->path
);
2681 mapping
->path
= commit
->path
;
2682 if (rename(old_path
, mapping
->path
))
2685 if (mapping
->mode
& MODE_DIRECTORY
) {
2686 int l1
= strlen(mapping
->path
);
2687 int l2
= strlen(old_path
);
2689 direntry_t
* direntry
= array_get(&(s
->directory
),
2690 mapping
->info
.dir
.first_dir_index
);
2691 uint32_t c
= mapping
->begin
;
2695 while (!fat_eof(s
, c
)) {
2697 direntry_t
* d
= direntry
+ i
;
2699 if (is_file(d
) || (is_directory(d
) && !is_dot(d
))) {
2702 mapping_t
* m
= find_mapping_for_cluster(s
,
2703 begin_of_direntry(d
));
2707 l
= strlen(m
->path
);
2708 new_path
= g_malloc(l
+ diff
+ 1);
2710 assert(!strncmp(m
->path
, mapping
->path
, l2
));
2712 pstrcpy(new_path
, l
+ diff
+ 1, mapping
->path
);
2713 pstrcpy(new_path
+ l1
, l
+ diff
+ 1 - l1
,
2716 schedule_rename(s
, m
->begin
, new_path
);
2719 } while((i
% (0x10 * s
->sectors_per_cluster
)) != 0);
2725 array_remove(&(s
->commits
), i
);
2727 } else if (commit
->action
== ACTION_MKDIR
) {
2729 int j
, parent_path_len
;
2731 if (g_mkdir(commit
->path
, 0755)) {
2735 mapping
= insert_mapping(s
, commit
->param
.mkdir
.cluster
,
2736 commit
->param
.mkdir
.cluster
+ 1);
2737 if (mapping
== NULL
)
2740 mapping
->mode
= MODE_DIRECTORY
;
2741 mapping
->read_only
= 0;
2742 mapping
->path
= commit
->path
;
2743 j
= s
->directory
.next
;
2745 insert_direntries(s
, s
->directory
.next
,
2746 0x10 * s
->sectors_per_cluster
);
2747 mapping
->info
.dir
.first_dir_index
= j
;
2749 parent_path_len
= strlen(commit
->path
)
2750 - strlen(get_basename(commit
->path
)) - 1;
2751 for (j
= 0; j
< s
->mapping
.next
; j
++) {
2752 mapping_t
* m
= array_get(&(s
->mapping
), j
);
2753 if (m
->first_mapping_index
< 0 && m
!= mapping
&&
2754 !strncmp(m
->path
, mapping
->path
, parent_path_len
) &&
2755 strlen(m
->path
) == parent_path_len
)
2758 assert(j
< s
->mapping
.next
);
2759 mapping
->info
.dir
.parent_mapping_index
= j
;
2761 array_remove(&(s
->commits
), i
);
2771 * TODO: make sure that the short name is not matching *another* file
2773 static int handle_commits(BDRVVVFATState
* s
)
2777 vvfat_close_current_file(s
);
2779 for (i
= 0; !fail
&& i
< s
->commits
.next
; i
++) {
2780 commit_t
* commit
= array_get(&(s
->commits
), i
);
2781 switch(commit
->action
) {
2782 case ACTION_RENAME
: case ACTION_MKDIR
:
2786 case ACTION_WRITEOUT
: {
2787 direntry_t
* entry
= array_get(&(s
->directory
),
2788 commit
->param
.writeout
.dir_index
);
2789 uint32_t begin
= begin_of_direntry(entry
);
2790 mapping_t
* mapping
= find_mapping_for_cluster(s
, begin
);
2793 assert(mapping
->begin
== begin
);
2794 assert(commit
->path
== NULL
);
2796 if (commit_one_file(s
, commit
->param
.writeout
.dir_index
,
2797 commit
->param
.writeout
.modified_offset
))
2802 case ACTION_NEW_FILE
: {
2803 int begin
= commit
->param
.new_file
.first_cluster
;
2804 mapping_t
* mapping
= find_mapping_for_cluster(s
, begin
);
2809 for (i
= 0; i
< s
->directory
.next
; i
++) {
2810 entry
= array_get(&(s
->directory
), i
);
2811 if (is_file(entry
) && begin_of_direntry(entry
) == begin
)
2815 if (i
>= s
->directory
.next
) {
2820 /* make sure there exists an initial mapping */
2821 if (mapping
&& mapping
->begin
!= begin
) {
2822 mapping
->end
= begin
;
2825 if (mapping
== NULL
) {
2826 mapping
= insert_mapping(s
, begin
, begin
+1);
2828 /* most members will be fixed in commit_mappings() */
2829 assert(commit
->path
);
2830 mapping
->path
= commit
->path
;
2831 mapping
->read_only
= 0;
2832 mapping
->mode
= MODE_NORMAL
;
2833 mapping
->info
.file
.offset
= 0;
2835 if (commit_one_file(s
, i
, 0))
2844 if (i
> 0 && array_remove_slice(&(s
->commits
), 0, i
))
2849 static int handle_deletes(BDRVVVFATState
* s
)
2851 int i
, deferred
= 1, deleted
= 1;
2853 /* delete files corresponding to mappings marked as deleted */
2854 /* handle DELETEs and unused mappings (modified_fat_get(s, mapping->begin) == 0) */
2855 while (deferred
&& deleted
) {
2859 for (i
= 1; i
< s
->mapping
.next
; i
++) {
2860 mapping_t
* mapping
= array_get(&(s
->mapping
), i
);
2861 if (mapping
->mode
& MODE_DELETED
) {
2862 direntry_t
* entry
= array_get(&(s
->directory
),
2863 mapping
->dir_index
);
2865 if (is_free(entry
)) {
2866 /* remove file/directory */
2867 if (mapping
->mode
& MODE_DIRECTORY
) {
2868 int j
, next_dir_index
= s
->directory
.next
,
2869 first_dir_index
= mapping
->info
.dir
.first_dir_index
;
2871 if (rmdir(mapping
->path
) < 0) {
2872 if (errno
== ENOTEMPTY
) {
2879 for (j
= 1; j
< s
->mapping
.next
; j
++) {
2880 mapping_t
* m
= array_get(&(s
->mapping
), j
);
2881 if (m
->mode
& MODE_DIRECTORY
&&
2882 m
->info
.dir
.first_dir_index
>
2884 m
->info
.dir
.first_dir_index
<
2887 m
->info
.dir
.first_dir_index
;
2889 remove_direntries(s
, first_dir_index
,
2890 next_dir_index
- first_dir_index
);
2895 if (unlink(mapping
->path
))
2899 DLOG(fprintf(stderr
, "DELETE (%d)\n", i
); print_mapping(mapping
); print_direntry(entry
));
2900 remove_mapping(s
, i
);
2909 * synchronize mapping with new state:
2911 * - copy FAT (with bdrv_pread)
2912 * - mark all filenames corresponding to mappings as deleted
2913 * - recurse direntries from root (using bs->bdrv_pread)
2914 * - delete files corresponding to mappings marked as deleted
2916 static int do_commit(BDRVVVFATState
* s
)
2920 /* the real meat are the commits. Nothing to do? Move along! */
2921 if (s
->commits
.next
== 0)
2924 vvfat_close_current_file(s
);
2926 ret
= handle_renames_and_mkdirs(s
);
2928 fprintf(stderr
, "Error handling renames (%d)\n", ret
);
2933 /* copy FAT (with bdrv_pread) */
2934 memcpy(s
->fat
.pointer
, s
->fat2
, 0x200 * s
->sectors_per_fat
);
2936 /* recurse direntries from root (using bs->bdrv_pread) */
2937 ret
= commit_direntries(s
, 0, -1);
2939 fprintf(stderr
, "Fatal: error while committing (%d)\n", ret
);
2944 ret
= handle_commits(s
);
2946 fprintf(stderr
, "Error handling commits (%d)\n", ret
);
2951 ret
= handle_deletes(s
);
2953 fprintf(stderr
, "Error deleting\n");
2958 bdrv_make_empty(s
->qcow
, NULL
);
2960 memset(s
->used_clusters
, 0, sector2cluster(s
, s
->sector_count
));
2966 static int try_commit(BDRVVVFATState
* s
)
2968 vvfat_close_current_file(s
);
2970 if(!is_consistent(s
))
2972 return do_commit(s
);
2975 static int vvfat_write(BlockDriverState
*bs
, int64_t sector_num
,
2976 const uint8_t *buf
, int nb_sectors
)
2978 BDRVVVFATState
*s
= bs
->opaque
;
2980 int first_cluster
, last_cluster
;
2984 /* Check if we're operating in read-only mode */
2985 if (s
->qcow
== NULL
) {
2989 vvfat_close_current_file(s
);
2991 if (sector_num
== s
->offset_to_bootsector
&& nb_sectors
== 1) {
2993 * Write on bootsector. Allow only changing the reserved1 field,
2994 * used to mark volume dirtiness
2996 unsigned char *bootsector
= s
->first_sectors
2997 + s
->offset_to_bootsector
* 0x200;
2999 * LATER TODO: if FAT32, this is wrong (see init_directories(),
3000 * which always creates a FAT16 bootsector)
3002 const int reserved1_offset
= offsetof(bootsector_t
, u
.fat16
.reserved1
);
3004 for (i
= 0; i
< 0x200; i
++) {
3005 if (i
!= reserved1_offset
&& bootsector
[i
] != buf
[i
]) {
3006 fprintf(stderr
, "Tried to write to protected bootsector\n");
3011 /* Update bootsector with the only updatable byte, and return success */
3012 bootsector
[reserved1_offset
] = buf
[reserved1_offset
];
3017 * Some sanity checks:
3018 * - do not allow writing to the boot sector
3020 if (sector_num
< s
->offset_to_fat
)
3024 * Values will be negative for writes to the FAT, which is located before
3025 * the root directory.
3027 first_cluster
= sector2cluster(s
, sector_num
);
3028 last_cluster
= sector2cluster(s
, sector_num
+ nb_sectors
- 1);
3030 for (i
= first_cluster
; i
<= last_cluster
;) {
3031 mapping_t
*mapping
= NULL
;
3034 mapping
= find_mapping_for_cluster(s
, i
);
3038 if (mapping
->read_only
) {
3039 fprintf(stderr
, "Tried to write to write-protected file %s\n",
3044 if (mapping
->mode
& MODE_DIRECTORY
) {
3045 int begin
= cluster2sector(s
, i
);
3046 int end
= begin
+ s
->sectors_per_cluster
, k
;
3048 const direntry_t
* direntries
;
3053 if (begin
< sector_num
)
3055 if (end
> sector_num
+ nb_sectors
)
3056 end
= sector_num
+ nb_sectors
;
3057 dir_index
= mapping
->dir_index
+
3058 0x10 * (begin
- mapping
->begin
* s
->sectors_per_cluster
);
3059 direntries
= (direntry_t
*)(buf
+ 0x200 * (begin
- sector_num
));
3061 for (k
= 0; k
< (end
- begin
) * 0x10; k
++) {
3062 /* no access to the direntry of a read-only file */
3063 if (is_short_name(direntries
+ k
) &&
3064 (direntries
[k
].attributes
& 1)) {
3065 if (memcmp(direntries
+ k
,
3066 array_get(&(s
->directory
), dir_index
+ k
),
3067 sizeof(direntry_t
))) {
3068 warn_report("tried to write to write-protected "
3082 * Use qcow backend. Commit later.
3084 DLOG(fprintf(stderr
, "Write to qcow backend: %d + %d\n", (int)sector_num
, nb_sectors
));
3085 ret
= bdrv_pwrite(s
->qcow
, sector_num
* BDRV_SECTOR_SIZE
,
3086 nb_sectors
* BDRV_SECTOR_SIZE
, buf
, 0);
3088 fprintf(stderr
, "Error writing to qcow backend\n");
3092 for (i
= first_cluster
; i
<= last_cluster
; i
++) {
3094 s
->used_clusters
[i
] |= USED_ALLOCATED
;
3099 /* TODO: add timeout */
3106 static int coroutine_fn
3107 vvfat_co_pwritev(BlockDriverState
*bs
, int64_t offset
, int64_t bytes
,
3108 QEMUIOVector
*qiov
, BdrvRequestFlags flags
)
3111 BDRVVVFATState
*s
= bs
->opaque
;
3112 uint64_t sector_num
= offset
>> BDRV_SECTOR_BITS
;
3113 int nb_sectors
= bytes
>> BDRV_SECTOR_BITS
;
3116 assert(QEMU_IS_ALIGNED(offset
, BDRV_SECTOR_SIZE
));
3117 assert(QEMU_IS_ALIGNED(bytes
, BDRV_SECTOR_SIZE
));
3119 buf
= g_try_malloc(bytes
);
3120 if (bytes
&& buf
== NULL
) {
3123 qemu_iovec_to_buf(qiov
, 0, buf
, bytes
);
3125 qemu_co_mutex_lock(&s
->lock
);
3126 ret
= vvfat_write(bs
, sector_num
, buf
, nb_sectors
);
3127 qemu_co_mutex_unlock(&s
->lock
);
3134 static int coroutine_fn
vvfat_co_block_status(BlockDriverState
*bs
,
3135 bool want_zero
, int64_t offset
,
3136 int64_t bytes
, int64_t *n
,
3138 BlockDriverState
**file
)
3141 return BDRV_BLOCK_DATA
;
3144 static void vvfat_qcow_options(BdrvChildRole role
, bool parent_is_format
,
3145 int *child_flags
, QDict
*child_options
,
3146 int parent_flags
, QDict
*parent_options
)
3148 qdict_set_default_str(child_options
, BDRV_OPT_READ_ONLY
, "off");
3149 qdict_set_default_str(child_options
, BDRV_OPT_AUTO_READ_ONLY
, "off");
3150 qdict_set_default_str(child_options
, BDRV_OPT_CACHE_NO_FLUSH
, "on");
3153 static BdrvChildClass child_vvfat_qcow
;
3155 static int enable_write_target(BlockDriverState
*bs
, Error
**errp
)
3157 BDRVVVFATState
*s
= bs
->opaque
;
3158 BlockDriver
*bdrv_qcow
= NULL
;
3159 QemuOpts
*opts
= NULL
;
3161 int size
= sector2cluster(s
, s
->sector_count
);
3164 s
->used_clusters
= g_malloc0(size
);
3166 array_init(&(s
->commits
), sizeof(commit_t
));
3168 s
->qcow_filename
= create_tmp_file(errp
);
3169 if (!s
->qcow_filename
) {
3174 bdrv_qcow
= bdrv_find_format("qcow");
3176 error_setg(errp
, "Failed to locate qcow driver");
3181 opts
= qemu_opts_create(bdrv_qcow
->create_opts
, NULL
, 0, &error_abort
);
3182 qemu_opt_set_number(opts
, BLOCK_OPT_SIZE
,
3183 bs
->total_sectors
* BDRV_SECTOR_SIZE
, &error_abort
);
3184 qemu_opt_set(opts
, BLOCK_OPT_BACKING_FILE
, "fat:", &error_abort
);
3186 ret
= bdrv_create(bdrv_qcow
, s
->qcow_filename
, opts
, errp
);
3187 qemu_opts_del(opts
);
3192 options
= qdict_new();
3193 qdict_put_str(options
, "write-target.driver", "qcow");
3194 s
->qcow
= bdrv_open_child(s
->qcow_filename
, options
, "write-target", bs
,
3196 BDRV_CHILD_DATA
| BDRV_CHILD_METADATA
,
3198 qobject_unref(options
);
3205 unlink(s
->qcow_filename
);
3214 static void vvfat_child_perm(BlockDriverState
*bs
, BdrvChild
*c
,
3216 BlockReopenQueue
*reopen_queue
,
3217 uint64_t perm
, uint64_t shared
,
3218 uint64_t *nperm
, uint64_t *nshared
)
3220 assert(role
& BDRV_CHILD_DATA
);
3221 /* This is a private node, nobody should try to attach to it */
3222 *nperm
= BLK_PERM_CONSISTENT_READ
| BLK_PERM_WRITE
;
3223 *nshared
= BLK_PERM_WRITE_UNCHANGED
;
3226 static void vvfat_close(BlockDriverState
*bs
)
3228 BDRVVVFATState
*s
= bs
->opaque
;
3230 vvfat_close_current_file(s
);
3231 array_free(&(s
->fat
));
3232 array_free(&(s
->directory
));
3233 array_free(&(s
->mapping
));
3234 g_free(s
->cluster_buffer
);
3237 migrate_del_blocker(s
->migration_blocker
);
3238 error_free(s
->migration_blocker
);
3242 static const char *const vvfat_strong_runtime_opts
[] = {
3252 static BlockDriver bdrv_vvfat
= {
3253 .format_name
= "vvfat",
3254 .protocol_name
= "fat",
3255 .instance_size
= sizeof(BDRVVVFATState
),
3257 .bdrv_parse_filename
= vvfat_parse_filename
,
3258 .bdrv_file_open
= vvfat_open
,
3259 .bdrv_refresh_limits
= vvfat_refresh_limits
,
3260 .bdrv_close
= vvfat_close
,
3261 .bdrv_child_perm
= vvfat_child_perm
,
3263 .bdrv_co_preadv
= vvfat_co_preadv
,
3264 .bdrv_co_pwritev
= vvfat_co_pwritev
,
3265 .bdrv_co_block_status
= vvfat_co_block_status
,
3267 .strong_runtime_opts
= vvfat_strong_runtime_opts
,
3270 static void bdrv_vvfat_init(void)
3272 child_vvfat_qcow
= child_of_bds
;
3273 child_vvfat_qcow
.inherit_options
= vvfat_qcow_options
;
3274 bdrv_register(&bdrv_vvfat
);
3277 block_init(bdrv_vvfat_init
);
3280 static void checkpoint(void)
3282 assert(((mapping_t
*)array_get(&(vvv
->mapping
), 0))->end
== 2);
3285 assert(!vvv
->current_mapping
|| vvv
->current_fd
|| (vvv
->current_mapping
->mode
& MODE_DIRECTORY
));