1 /* vim:set shiftwidth=4 ts=8: */
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
27 #include "qemu-common.h"
28 #include "block_int.h"
30 #include "migration.h"
39 /* TODO: add ":bootsector=blabla.img:" */
40 /* LATER TODO: add automatic boot sector generation from
41 BOOTEASY.ASM and Ranish Partition Manager
42 Note that DOS assumes the system files to be the first files in the
43 file system (test if the boot sector still relies on that fact)! */
44 /* MAYBE TODO: write block-visofs.c */
45 /* TODO: call try_commit() only after a timeout */
57 static void checkpoint(void);
60 void nonono(const char* file
, int line
, const char* msg
) {
61 fprintf(stderr
, "Nonono! %s:%d %s\n", file
, line
, msg
);
65 #define assert(a) do {if (!(a)) nonono(__FILE__, __LINE__, #a);}while(0)
74 /* dynamic array functions */
75 typedef struct array_t
{
77 unsigned int size
,next
,item_size
;
80 static inline void array_init(array_t
* array
,unsigned int item_size
)
82 array
->pointer
= NULL
;
85 array
->item_size
=item_size
;
88 static inline void array_free(array_t
* array
)
90 g_free(array
->pointer
);
91 array
->size
=array
->next
=0;
94 /* does not automatically grow */
95 static inline void* array_get(array_t
* array
,unsigned int index
) {
96 assert(index
< array
->next
);
97 return array
->pointer
+ index
* array
->item_size
;
100 static inline int array_ensure_allocated(array_t
* array
, int index
)
102 if((index
+ 1) * array
->item_size
> array
->size
) {
103 int new_size
= (index
+ 32) * array
->item_size
;
104 array
->pointer
= g_realloc(array
->pointer
, new_size
);
107 array
->size
= new_size
;
108 array
->next
= index
+ 1;
114 static inline void* array_get_next(array_t
* array
) {
115 unsigned int next
= array
->next
;
118 if (array_ensure_allocated(array
, next
) < 0)
121 array
->next
= next
+ 1;
122 result
= array_get(array
, next
);
127 static inline void* array_insert(array_t
* array
,unsigned int index
,unsigned int count
) {
128 if((array
->next
+count
)*array
->item_size
>array
->size
) {
129 int increment
=count
*array
->item_size
;
130 array
->pointer
=g_realloc(array
->pointer
,array
->size
+increment
);
133 array
->size
+=increment
;
135 memmove(array
->pointer
+(index
+count
)*array
->item_size
,
136 array
->pointer
+index
*array
->item_size
,
137 (array
->next
-index
)*array
->item_size
);
139 return array
->pointer
+index
*array
->item_size
;
142 /* this performs a "roll", so that the element which was at index_from becomes
143 * index_to, but the order of all other elements is preserved. */
144 static inline int array_roll(array_t
* array
,int index_to
,int index_from
,int count
)
152 index_to
<0 || index_to
>=array
->next
||
153 index_from
<0 || index_from
>=array
->next
)
156 if(index_to
==index_from
)
160 from
=array
->pointer
+index_from
*is
;
161 to
=array
->pointer
+index_to
*is
;
162 buf
=g_malloc(is
*count
);
163 memcpy(buf
,from
,is
*count
);
165 if(index_to
<index_from
)
166 memmove(to
+is
*count
,to
,from
-to
);
168 memmove(from
,from
+is
*count
,to
-from
);
170 memcpy(to
,buf
,is
*count
);
177 static inline int array_remove_slice(array_t
* array
,int index
, int count
)
181 assert(index
+ count
<= array
->next
);
182 if(array_roll(array
,array
->next
-1,index
,count
))
184 array
->next
-= count
;
188 static int array_remove(array_t
* array
,int index
)
190 return array_remove_slice(array
, index
, 1);
193 /* return the index for a given member */
194 static int array_index(array_t
* array
, void* pointer
)
196 size_t offset
= (char*)pointer
- array
->pointer
;
197 assert((offset
% array
->item_size
) == 0);
198 assert(offset
/array
->item_size
< array
->next
);
199 return offset
/array
->item_size
;
202 /* These structures are used to fake a disk and the VFAT filesystem.
203 * For this reason we need to use QEMU_PACKED. */
205 typedef struct bootsector_t
{
208 uint16_t sector_size
;
209 uint8_t sectors_per_cluster
;
210 uint16_t reserved_sectors
;
211 uint8_t number_of_fats
;
212 uint16_t root_entries
;
213 uint16_t total_sectors16
;
215 uint16_t sectors_per_fat
;
216 uint16_t sectors_per_track
;
217 uint16_t number_of_heads
;
218 uint32_t hidden_sectors
;
219 uint32_t total_sectors
;
222 uint8_t drive_number
;
223 uint8_t current_head
;
226 uint8_t volume_label
[11];
229 uint32_t sectors_per_fat
;
232 uint32_t first_cluster_of_root_directory
;
233 uint16_t info_sector
;
234 uint16_t backup_boot_sector
;
239 uint8_t ignored
[0x1c0];
241 } QEMU_PACKED bootsector_t
;
249 typedef struct partition_t
{
250 uint8_t attributes
; /* 0x80 = bootable */
252 uint8_t fs_type
; /* 0x1 = FAT12, 0x6 = FAT16, 0xe = FAT16_LBA, 0xb = FAT32, 0xc = FAT32_LBA */
254 uint32_t start_sector_long
;
255 uint32_t length_sector_long
;
256 } QEMU_PACKED partition_t
;
258 typedef struct mbr_t
{
259 uint8_t ignored
[0x1b8];
262 partition_t partition
[4];
266 typedef struct direntry_t
{
268 uint8_t extension
[3];
279 } QEMU_PACKED direntry_t
;
281 /* this structure are used to transparently access the files */
283 typedef struct mapping_t
{
284 /* begin is the first cluster, end is the last+1 */
286 /* as s->directory is growable, no pointer may be used here */
287 unsigned int dir_index
;
288 /* the clusters of a file may be in any order; this points to the first */
289 int first_mapping_index
;
292 * - the offset in the file (in clusters) for a file, or
293 * - the next cluster of the directory for a directory, and
294 * - the address of the buffer for a faked entry
300 int parent_mapping_index
;
304 /* path contains the full path, i.e. it always starts with s->path */
307 enum { MODE_UNDEFINED
= 0, MODE_NORMAL
= 1, MODE_MODIFIED
= 2,
308 MODE_DIRECTORY
= 4, MODE_FAKED
= 8,
309 MODE_DELETED
= 16, MODE_RENAMED
= 32 } mode
;
314 static void print_direntry(const struct direntry_t
*);
315 static void print_mapping(const struct mapping_t
* mapping
);
318 /* here begins the real VVFAT driver */
320 typedef struct BDRVVVFATState
{
322 BlockDriverState
* bs
; /* pointer to parent */
323 unsigned int first_sectors_number
; /* 1 for a single partition, 0x40 for a disk with partition table */
324 unsigned char first_sectors
[0x40*0x200];
326 int fat_type
; /* 16 or 32 */
327 array_t fat
,directory
,mapping
;
329 unsigned int cluster_size
;
330 unsigned int sectors_per_cluster
;
331 unsigned int sectors_per_fat
;
332 unsigned int sectors_of_root_directory
;
333 uint32_t last_cluster_of_root_directory
;
334 unsigned int faked_sectors
; /* how many sectors are faked before file data */
335 uint32_t sector_count
; /* total number of sectors of the partition */
336 uint32_t cluster_count
; /* total number of clusters of this partition */
337 uint32_t max_fat_value
;
340 mapping_t
* current_mapping
;
341 unsigned char* cluster
; /* points to current cluster */
342 unsigned char* cluster_buffer
; /* points to a buffer to hold temp data */
343 unsigned int current_cluster
;
346 BlockDriverState
* write_target
;
348 BlockDriverState
* qcow
;
353 int downcase_short_names
;
355 Error
*migration_blocker
;
358 /* take the sector position spos and convert it to Cylinder/Head/Sector position
359 * if the position is outside the specified geometry, fill maximum value for CHS
360 * and return 1 to signal overflow.
362 static int sector2CHS(mbr_chs_t
*chs
, int spos
, int cyls
, int heads
, int secs
)
365 sector
= spos
% secs
; spos
/= secs
;
366 head
= spos
% heads
; spos
/= heads
;
369 it happens if 32bit sector positions are used, while CHS is only 24bit.
370 Windows/Dos is said to take 1023/255/63 as nonrepresentable CHS */
373 chs
->cylinder
= 0xFF;
376 chs
->head
= (uint8_t)head
;
377 chs
->sector
= (uint8_t)( (sector
+1) | ((spos
>>8)<<6) );
378 chs
->cylinder
= (uint8_t)spos
;
382 static void init_mbr(BDRVVVFATState
*s
, int cyls
, int heads
, int secs
)
384 /* TODO: if the files mbr.img and bootsect.img exist, use them */
385 mbr_t
* real_mbr
=(mbr_t
*)s
->first_sectors
;
386 partition_t
* partition
= &(real_mbr
->partition
[0]);
389 memset(s
->first_sectors
,0,512);
391 /* Win NT Disk Signature */
392 real_mbr
->nt_id
= cpu_to_le32(0xbe1afdfa);
394 partition
->attributes
=0x80; /* bootable */
396 /* LBA is used when partition is outside the CHS geometry */
397 lba
= sector2CHS(&partition
->start_CHS
, s
->first_sectors_number
- 1,
399 lba
|= sector2CHS(&partition
->end_CHS
, s
->bs
->total_sectors
- 1,
402 /*LBA partitions are identified only by start/length_sector_long not by CHS*/
403 partition
->start_sector_long
= cpu_to_le32(s
->first_sectors_number
- 1);
404 partition
->length_sector_long
= cpu_to_le32(s
->bs
->total_sectors
405 - s
->first_sectors_number
+ 1);
407 /* FAT12/FAT16/FAT32 */
408 /* DOS uses different types when partition is LBA,
409 probably to prevent older versions from using CHS on them */
410 partition
->fs_type
= s
->fat_type
==12 ? 0x1:
411 s
->fat_type
==16 ? (lba
?0xe:0x06):
412 /*fat_tyoe==32*/ (lba
?0xc:0x0b);
414 real_mbr
->magic
[0]=0x55; real_mbr
->magic
[1]=0xaa;
417 /* direntry functions */
419 /* dest is assumed to hold 258 bytes, and pads with 0xffff up to next multiple of 26 */
420 static inline int short2long_name(char* dest
,const char* src
)
424 for(i
=0;i
<129 && src
[i
];i
++) {
429 dest
[2*i
]=dest
[2*i
+1]=0;
430 for(i
=2*i
+2;(i
%26);i
++)
435 static inline direntry_t
* create_long_filename(BDRVVVFATState
* s
,const char* filename
)
438 int length
=short2long_name(buffer
,filename
),
439 number_of_entries
=(length
+25)/26,i
;
442 for(i
=0;i
<number_of_entries
;i
++) {
443 entry
=array_get_next(&(s
->directory
));
444 entry
->attributes
=0xf;
445 entry
->reserved
[0]=0;
447 entry
->name
[0]=(number_of_entries
-i
)|(i
==0?0x40:0);
449 for(i
=0;i
<26*number_of_entries
;i
++) {
451 if(offset
<10) offset
=1+offset
;
452 else if(offset
<22) offset
=14+offset
-10;
453 else offset
=28+offset
-22;
454 entry
=array_get(&(s
->directory
),s
->directory
.next
-1-(i
/26));
455 entry
->name
[offset
]=buffer
[i
];
457 return array_get(&(s
->directory
),s
->directory
.next
-number_of_entries
);
460 static char is_free(const direntry_t
* direntry
)
462 return direntry
->name
[0]==0xe5 || direntry
->name
[0]==0x00;
465 static char is_volume_label(const direntry_t
* direntry
)
467 return direntry
->attributes
== 0x28;
470 static char is_long_name(const direntry_t
* direntry
)
472 return direntry
->attributes
== 0xf;
475 static char is_short_name(const direntry_t
* direntry
)
477 return !is_volume_label(direntry
) && !is_long_name(direntry
)
478 && !is_free(direntry
);
481 static char is_directory(const direntry_t
* direntry
)
483 return direntry
->attributes
& 0x10 && direntry
->name
[0] != 0xe5;
486 static inline char is_dot(const direntry_t
* direntry
)
488 return is_short_name(direntry
) && direntry
->name
[0] == '.';
491 static char is_file(const direntry_t
* direntry
)
493 return is_short_name(direntry
) && !is_directory(direntry
);
496 static inline uint32_t begin_of_direntry(const direntry_t
* direntry
)
498 return le16_to_cpu(direntry
->begin
)|(le16_to_cpu(direntry
->begin_hi
)<<16);
501 static inline uint32_t filesize_of_direntry(const direntry_t
* direntry
)
503 return le32_to_cpu(direntry
->size
);
506 static void set_begin_of_direntry(direntry_t
* direntry
, uint32_t begin
)
508 direntry
->begin
= cpu_to_le16(begin
& 0xffff);
509 direntry
->begin_hi
= cpu_to_le16((begin
>> 16) & 0xffff);
514 static inline uint8_t fat_chksum(const direntry_t
* entry
)
522 c
= (i
< 8) ? entry
->name
[i
] : entry
->extension
[i
-8];
523 chksum
=(((chksum
&0xfe)>>1)|((chksum
&0x01)?0x80:0)) + c
;
529 /* if return_time==0, this returns the fat_date, else the fat_time */
530 static uint16_t fat_datetime(time_t time
,int return_time
) {
533 t
=localtime(&time
); /* this is not thread safe */
537 localtime_r(&time
,t
);
540 return cpu_to_le16((t
->tm_sec
/2)|(t
->tm_min
<<5)|(t
->tm_hour
<<11));
541 return cpu_to_le16((t
->tm_mday
)|((t
->tm_mon
+1)<<5)|((t
->tm_year
-80)<<9));
544 static inline void fat_set(BDRVVVFATState
* s
,unsigned int cluster
,uint32_t value
)
546 if(s
->fat_type
==32) {
547 uint32_t* entry
=array_get(&(s
->fat
),cluster
);
548 *entry
=cpu_to_le32(value
);
549 } else if(s
->fat_type
==16) {
550 uint16_t* entry
=array_get(&(s
->fat
),cluster
);
551 *entry
=cpu_to_le16(value
&0xffff);
553 int offset
= (cluster
*3/2);
554 unsigned char* p
= array_get(&(s
->fat
), offset
);
558 p
[1] = (p
[1]&0xf0) | ((value
>>8)&0xf);
561 p
[0] = (p
[0]&0xf) | ((value
&0xf)<<4);
568 static inline uint32_t fat_get(BDRVVVFATState
* s
,unsigned int cluster
)
570 if(s
->fat_type
==32) {
571 uint32_t* entry
=array_get(&(s
->fat
),cluster
);
572 return le32_to_cpu(*entry
);
573 } else if(s
->fat_type
==16) {
574 uint16_t* entry
=array_get(&(s
->fat
),cluster
);
575 return le16_to_cpu(*entry
);
577 const uint8_t* x
=(uint8_t*)(s
->fat
.pointer
)+cluster
*3/2;
578 return ((x
[0]|(x
[1]<<8))>>(cluster
&1?4:0))&0x0fff;
582 static inline int fat_eof(BDRVVVFATState
* s
,uint32_t fat_entry
)
584 if(fat_entry
>s
->max_fat_value
-8)
589 static inline void init_fat(BDRVVVFATState
* s
)
591 if (s
->fat_type
== 12) {
592 array_init(&(s
->fat
),1);
593 array_ensure_allocated(&(s
->fat
),
594 s
->sectors_per_fat
* 0x200 * 3 / 2 - 1);
596 array_init(&(s
->fat
),(s
->fat_type
==32?4:2));
597 array_ensure_allocated(&(s
->fat
),
598 s
->sectors_per_fat
* 0x200 / s
->fat
.item_size
- 1);
600 memset(s
->fat
.pointer
,0,s
->fat
.size
);
602 switch(s
->fat_type
) {
603 case 12: s
->max_fat_value
=0xfff; break;
604 case 16: s
->max_fat_value
=0xffff; break;
605 case 32: s
->max_fat_value
=0x0fffffff; break;
606 default: s
->max_fat_value
=0; /* error... */
611 /* TODO: in create_short_filename, 0xe5->0x05 is not yet handled! */
612 /* TODO: in parse_short_filename, 0x05->0xe5 is not yet handled! */
613 static inline direntry_t
* create_short_and_long_name(BDRVVVFATState
* s
,
614 unsigned int directory_start
, const char* filename
, int is_dot
)
616 int i
,j
,long_index
=s
->directory
.next
;
617 direntry_t
* entry
= NULL
;
618 direntry_t
* entry_long
= NULL
;
621 entry
=array_get_next(&(s
->directory
));
622 memset(entry
->name
,0x20,11);
623 memcpy(entry
->name
,filename
,strlen(filename
));
627 entry_long
=create_long_filename(s
,filename
);
629 i
= strlen(filename
);
630 for(j
= i
- 1; j
>0 && filename
[j
]!='.';j
--);
636 entry
=array_get_next(&(s
->directory
));
637 memset(entry
->name
,0x20,11);
638 memcpy(entry
->name
, filename
, i
);
641 for (i
= 0; i
< 3 && filename
[j
+1+i
]; i
++)
642 entry
->extension
[i
] = filename
[j
+1+i
];
644 /* upcase & remove unwanted characters */
646 if(i
==10 || i
==7) for(;i
>0 && entry
->name
[i
]==' ';i
--);
647 if(entry
->name
[i
]<=' ' || entry
->name
[i
]>0x7f
648 || strchr(".*?<>|\":/\\[];,+='",entry
->name
[i
]))
650 else if(entry
->name
[i
]>='a' && entry
->name
[i
]<='z')
651 entry
->name
[i
]+='A'-'a';
654 /* mangle duplicates */
656 direntry_t
* entry1
=array_get(&(s
->directory
),directory_start
);
659 for(;entry1
<entry
;entry1
++)
660 if(!is_long_name(entry1
) && !memcmp(entry1
->name
,entry
->name
,11))
661 break; /* found dupe */
662 if(entry1
==entry
) /* no dupe found */
665 /* use all 8 characters of name */
666 if(entry
->name
[7]==' ') {
668 for(j
=6;j
>0 && entry
->name
[j
]==' ';j
--)
672 /* increment number */
673 for(j
=7;j
>0 && entry
->name
[j
]=='9';j
--)
676 if(entry
->name
[j
]<'0' || entry
->name
[j
]>'9')
683 /* calculate checksum; propagate to long name */
685 uint8_t chksum
=fat_chksum(entry
);
687 /* calculate anew, because realloc could have taken place */
688 entry_long
=array_get(&(s
->directory
),long_index
);
689 while(entry_long
<entry
&& is_long_name(entry_long
)) {
690 entry_long
->reserved
[1]=chksum
;
699 * Read a directory. (the index of the corresponding mapping must be passed).
701 static int read_directory(BDRVVVFATState
* s
, int mapping_index
)
703 mapping_t
* mapping
= array_get(&(s
->mapping
), mapping_index
);
704 direntry_t
* direntry
;
705 const char* dirname
= mapping
->path
;
706 int first_cluster
= mapping
->begin
;
707 int parent_index
= mapping
->info
.dir
.parent_mapping_index
;
708 mapping_t
* parent_mapping
= (mapping_t
*)
709 (parent_index
>= 0 ? array_get(&(s
->mapping
), parent_index
) : NULL
);
710 int first_cluster_of_parent
= parent_mapping
? parent_mapping
->begin
: -1;
712 DIR* dir
=opendir(dirname
);
713 struct dirent
* entry
;
716 assert(mapping
->mode
& MODE_DIRECTORY
);
719 mapping
->end
= mapping
->begin
;
723 i
= mapping
->info
.dir
.first_dir_index
=
724 first_cluster
== 0 ? 0 : s
->directory
.next
;
726 /* actually read the directory, and allocate the mappings */
727 while((entry
=readdir(dir
))) {
728 unsigned int length
=strlen(dirname
)+2+strlen(entry
->d_name
);
730 direntry_t
* direntry
;
732 int is_dot
=!strcmp(entry
->d_name
,".");
733 int is_dotdot
=!strcmp(entry
->d_name
,"..");
735 if(first_cluster
== 0 && (is_dotdot
|| is_dot
))
738 buffer
=(char*)g_malloc(length
);
739 snprintf(buffer
,length
,"%s/%s",dirname
,entry
->d_name
);
741 if(stat(buffer
,&st
)<0) {
746 /* create directory entry for this file */
747 direntry
=create_short_and_long_name(s
, i
, entry
->d_name
,
748 is_dot
|| is_dotdot
);
749 direntry
->attributes
=(S_ISDIR(st
.st_mode
)?0x10:0x20);
750 direntry
->reserved
[0]=direntry
->reserved
[1]=0;
751 direntry
->ctime
=fat_datetime(st
.st_ctime
,1);
752 direntry
->cdate
=fat_datetime(st
.st_ctime
,0);
753 direntry
->adate
=fat_datetime(st
.st_atime
,0);
754 direntry
->begin_hi
=0;
755 direntry
->mtime
=fat_datetime(st
.st_mtime
,1);
756 direntry
->mdate
=fat_datetime(st
.st_mtime
,0);
758 set_begin_of_direntry(direntry
, first_cluster_of_parent
);
760 set_begin_of_direntry(direntry
, first_cluster
);
762 direntry
->begin
=0; /* do that later */
763 if (st
.st_size
> 0x7fffffff) {
764 fprintf(stderr
, "File %s is larger than 2GB\n", buffer
);
769 direntry
->size
=cpu_to_le32(S_ISDIR(st
.st_mode
)?0:st
.st_size
);
771 /* create mapping for this file */
772 if(!is_dot
&& !is_dotdot
&& (S_ISDIR(st
.st_mode
) || st
.st_size
)) {
773 s
->current_mapping
=(mapping_t
*)array_get_next(&(s
->mapping
));
774 s
->current_mapping
->begin
=0;
775 s
->current_mapping
->end
=st
.st_size
;
777 * we get the direntry of the most recent direntry, which
778 * contains the short name and all the relevant information.
780 s
->current_mapping
->dir_index
=s
->directory
.next
-1;
781 s
->current_mapping
->first_mapping_index
= -1;
782 if (S_ISDIR(st
.st_mode
)) {
783 s
->current_mapping
->mode
= MODE_DIRECTORY
;
784 s
->current_mapping
->info
.dir
.parent_mapping_index
=
787 s
->current_mapping
->mode
= MODE_UNDEFINED
;
788 s
->current_mapping
->info
.file
.offset
= 0;
790 s
->current_mapping
->path
=buffer
;
791 s
->current_mapping
->read_only
=
792 (st
.st_mode
& (S_IWUSR
| S_IWGRP
| S_IWOTH
)) == 0;
797 /* fill with zeroes up to the end of the cluster */
798 while(s
->directory
.next
%(0x10*s
->sectors_per_cluster
)) {
799 direntry_t
* direntry
=array_get_next(&(s
->directory
));
800 memset(direntry
,0,sizeof(direntry_t
));
803 /* TODO: if there are more entries, bootsector has to be adjusted! */
804 #define ROOT_ENTRIES (0x02 * 0x10 * s->sectors_per_cluster)
805 if (mapping_index
== 0 && s
->directory
.next
< ROOT_ENTRIES
) {
807 int cur
= s
->directory
.next
;
808 array_ensure_allocated(&(s
->directory
), ROOT_ENTRIES
- 1);
809 s
->directory
.next
= ROOT_ENTRIES
;
810 memset(array_get(&(s
->directory
), cur
), 0,
811 (ROOT_ENTRIES
- cur
) * sizeof(direntry_t
));
814 /* reget the mapping, since s->mapping was possibly realloc()ed */
815 mapping
= (mapping_t
*)array_get(&(s
->mapping
), mapping_index
);
816 first_cluster
+= (s
->directory
.next
- mapping
->info
.dir
.first_dir_index
)
817 * 0x20 / s
->cluster_size
;
818 mapping
->end
= first_cluster
;
820 direntry
= (direntry_t
*)array_get(&(s
->directory
), mapping
->dir_index
);
821 set_begin_of_direntry(direntry
, mapping
->begin
);
826 static inline uint32_t sector2cluster(BDRVVVFATState
* s
,off_t sector_num
)
828 return (sector_num
-s
->faked_sectors
)/s
->sectors_per_cluster
;
831 static inline off_t
cluster2sector(BDRVVVFATState
* s
, uint32_t cluster_num
)
833 return s
->faked_sectors
+ s
->sectors_per_cluster
* cluster_num
;
836 static int init_directories(BDRVVVFATState
* s
,
837 const char *dirname
, int heads
, int secs
)
839 bootsector_t
* bootsector
;
842 unsigned int cluster
;
844 memset(&(s
->first_sectors
[0]),0,0x40*0x200);
846 s
->cluster_size
=s
->sectors_per_cluster
*0x200;
847 s
->cluster_buffer
=g_malloc(s
->cluster_size
);
850 * The formula: sc = spf+1+spf*spc*(512*8/fat_type),
851 * where sc is sector_count,
852 * spf is sectors_per_fat,
853 * spc is sectors_per_clusters, and
854 * fat_type = 12, 16 or 32.
856 i
= 1+s
->sectors_per_cluster
*0x200*8/s
->fat_type
;
857 s
->sectors_per_fat
=(s
->sector_count
+i
)/i
; /* round up */
859 array_init(&(s
->mapping
),sizeof(mapping_t
));
860 array_init(&(s
->directory
),sizeof(direntry_t
));
862 /* add volume label */
864 direntry_t
* entry
=array_get_next(&(s
->directory
));
865 entry
->attributes
=0x28; /* archive | volume label */
866 memcpy(entry
->name
,"QEMU VVF",8);
867 memcpy(entry
->extension
,"AT ",3);
870 /* Now build FAT, and write back information into directory */
873 s
->faked_sectors
=s
->first_sectors_number
+s
->sectors_per_fat
*2;
874 s
->cluster_count
=sector2cluster(s
, s
->sector_count
);
876 mapping
= array_get_next(&(s
->mapping
));
878 mapping
->dir_index
= 0;
879 mapping
->info
.dir
.parent_mapping_index
= -1;
880 mapping
->first_mapping_index
= -1;
881 mapping
->path
= g_strdup(dirname
);
882 i
= strlen(mapping
->path
);
883 if (i
> 0 && mapping
->path
[i
- 1] == '/')
884 mapping
->path
[i
- 1] = '\0';
885 mapping
->mode
= MODE_DIRECTORY
;
886 mapping
->read_only
= 0;
887 s
->path
= mapping
->path
;
889 for (i
= 0, cluster
= 0; i
< s
->mapping
.next
; i
++) {
890 /* MS-DOS expects the FAT to be 0 for the root directory
891 * (except for the media byte). */
892 /* LATER TODO: still true for FAT32? */
893 int fix_fat
= (i
!= 0);
894 mapping
= array_get(&(s
->mapping
), i
);
896 if (mapping
->mode
& MODE_DIRECTORY
) {
897 mapping
->begin
= cluster
;
898 if(read_directory(s
, i
)) {
899 fprintf(stderr
, "Could not read directory %s\n",
903 mapping
= array_get(&(s
->mapping
), i
);
905 assert(mapping
->mode
== MODE_UNDEFINED
);
906 mapping
->mode
=MODE_NORMAL
;
907 mapping
->begin
= cluster
;
908 if (mapping
->end
> 0) {
909 direntry_t
* direntry
= array_get(&(s
->directory
),
912 mapping
->end
= cluster
+ 1 + (mapping
->end
-1)/s
->cluster_size
;
913 set_begin_of_direntry(direntry
, mapping
->begin
);
915 mapping
->end
= cluster
+ 1;
920 assert(mapping
->begin
< mapping
->end
);
922 /* next free cluster */
923 cluster
= mapping
->end
;
925 if(cluster
> s
->cluster_count
) {
926 fprintf(stderr
,"Directory does not fit in FAT%d (capacity %.2f MB)\n",
927 s
->fat_type
, s
->sector_count
/ 2000.0);
931 /* fix fat for entry */
934 for(j
= mapping
->begin
; j
< mapping
->end
- 1; j
++)
936 fat_set(s
, mapping
->end
- 1, s
->max_fat_value
);
940 mapping
= array_get(&(s
->mapping
), 0);
941 s
->sectors_of_root_directory
= mapping
->end
* s
->sectors_per_cluster
;
942 s
->last_cluster_of_root_directory
= mapping
->end
;
944 /* the FAT signature */
945 fat_set(s
,0,s
->max_fat_value
);
946 fat_set(s
,1,s
->max_fat_value
);
948 s
->current_mapping
= NULL
;
950 bootsector
=(bootsector_t
*)(s
->first_sectors
+(s
->first_sectors_number
-1)*0x200);
951 bootsector
->jump
[0]=0xeb;
952 bootsector
->jump
[1]=0x3e;
953 bootsector
->jump
[2]=0x90;
954 memcpy(bootsector
->name
,"QEMU ",8);
955 bootsector
->sector_size
=cpu_to_le16(0x200);
956 bootsector
->sectors_per_cluster
=s
->sectors_per_cluster
;
957 bootsector
->reserved_sectors
=cpu_to_le16(1);
958 bootsector
->number_of_fats
=0x2; /* number of FATs */
959 bootsector
->root_entries
=cpu_to_le16(s
->sectors_of_root_directory
*0x10);
960 bootsector
->total_sectors16
=s
->sector_count
>0xffff?0:cpu_to_le16(s
->sector_count
);
961 bootsector
->media_type
=(s
->first_sectors_number
>1?0xf8:0xf0); /* media descriptor (f8=hd, f0=3.5 fd)*/
962 s
->fat
.pointer
[0] = bootsector
->media_type
;
963 bootsector
->sectors_per_fat
=cpu_to_le16(s
->sectors_per_fat
);
964 bootsector
->sectors_per_track
= cpu_to_le16(secs
);
965 bootsector
->number_of_heads
= cpu_to_le16(heads
);
966 bootsector
->hidden_sectors
=cpu_to_le32(s
->first_sectors_number
==1?0:0x3f);
967 bootsector
->total_sectors
=cpu_to_le32(s
->sector_count
>0xffff?s
->sector_count
:0);
969 /* LATER TODO: if FAT32, this is wrong */
970 bootsector
->u
.fat16
.drive_number
=s
->first_sectors_number
==1?0:0x80; /* fda=0, hda=0x80 */
971 bootsector
->u
.fat16
.current_head
=0;
972 bootsector
->u
.fat16
.signature
=0x29;
973 bootsector
->u
.fat16
.id
=cpu_to_le32(0xfabe1afd);
975 memcpy(bootsector
->u
.fat16
.volume_label
,"QEMU VVFAT ",11);
976 memcpy(bootsector
->fat_type
,(s
->fat_type
==12?"FAT12 ":s
->fat_type
==16?"FAT16 ":"FAT32 "),8);
977 bootsector
->magic
[0]=0x55; bootsector
->magic
[1]=0xaa;
983 static BDRVVVFATState
*vvv
= NULL
;
986 static int enable_write_target(BDRVVVFATState
*s
);
987 static int is_consistent(BDRVVVFATState
*s
);
989 static void vvfat_rebind(BlockDriverState
*bs
)
991 BDRVVVFATState
*s
= bs
->opaque
;
995 static int vvfat_open(BlockDriverState
*bs
, const char* dirname
, int flags
)
997 BDRVVVFATState
*s
= bs
->opaque
;
998 int i
, cyls
, heads
, secs
;
1004 DLOG(if (stderr
== NULL
) {
1005 stderr
= fopen("vvfat.log", "a");
1006 setbuf(stderr
, NULL
);
1011 /* LATER TODO: if FAT32, adjust */
1012 s
->sectors_per_cluster
=0x10;
1014 s
->current_cluster
=0xffffffff;
1016 s
->first_sectors_number
=0x40;
1017 /* read only is the default for safety */
1019 s
->qcow
= s
->write_target
= NULL
;
1020 s
->qcow_filename
= NULL
;
1022 s
->downcase_short_names
= 1;
1024 if (!strstart(dirname
, "fat:", NULL
))
1027 if (strstr(dirname
, ":32:")) {
1028 fprintf(stderr
, "Big fat greek warning: FAT32 has not been tested. You are welcome to do so!\n");
1030 } else if (strstr(dirname
, ":16:")) {
1032 } else if (strstr(dirname
, ":12:")) {
1036 if (strstr(dirname
, ":floppy:")) {
1037 /* 1.44MB or 2.88MB floppy. 2.88MB can be FAT12 (default) or FAT16. */
1041 s
->sectors_per_cluster
=2;
1043 secs
= s
->fat_type
== 12 ? 18 : 36;
1044 s
->sectors_per_cluster
=1;
1046 s
->first_sectors_number
= 1;
1050 /* 32MB or 504MB disk*/
1054 cyls
= s
->fat_type
== 12 ? 64 : 1024;
1058 fprintf(stderr
, "vvfat %s chs %d,%d,%d\n",
1059 dirname
, cyls
, heads
, secs
);
1061 s
->sector_count
= cyls
* heads
* secs
- (s
->first_sectors_number
- 1);
1063 if (strstr(dirname
, ":rw:")) {
1064 if (enable_write_target(s
))
1069 i
= strrchr(dirname
, ':') - dirname
;
1071 if (dirname
[i
-2] == ':' && qemu_isalpha(dirname
[i
-1]))
1072 /* workaround for DOS drive names */
1077 bs
->total_sectors
= cyls
* heads
* secs
;
1079 if (init_directories(s
, dirname
, heads
, secs
)) {
1083 s
->sector_count
= s
->faked_sectors
+ s
->sectors_per_cluster
*s
->cluster_count
;
1085 if (s
->first_sectors_number
== 0x40) {
1086 init_mbr(s
, cyls
, heads
, secs
);
1089 // assert(is_consistent(s));
1090 qemu_co_mutex_init(&s
->lock
);
1092 /* Disable migration when vvfat is used rw */
1094 error_set(&s
->migration_blocker
,
1095 QERR_BLOCK_FORMAT_FEATURE_NOT_SUPPORTED
,
1096 "vvfat (rw)", bs
->device_name
, "live migration");
1097 migrate_add_blocker(s
->migration_blocker
);
1103 static inline void vvfat_close_current_file(BDRVVVFATState
*s
)
1105 if(s
->current_mapping
) {
1106 s
->current_mapping
= NULL
;
1107 if (s
->current_fd
) {
1108 qemu_close(s
->current_fd
);
1112 s
->current_cluster
= -1;
1115 /* mappings between index1 and index2-1 are supposed to be ordered
1116 * return value is the index of the last mapping for which end>cluster_num
1118 static inline int find_mapping_for_cluster_aux(BDRVVVFATState
* s
,int cluster_num
,int index1
,int index2
)
1123 index3
=(index1
+index2
)/2;
1124 mapping
=array_get(&(s
->mapping
),index3
);
1125 assert(mapping
->begin
< mapping
->end
);
1126 if(mapping
->begin
>=cluster_num
) {
1127 assert(index2
!=index3
|| index2
==0);
1133 return mapping
->end
<=cluster_num
? index2
: index1
;
1136 assert(index1
<=index2
);
1137 DLOG(mapping
=array_get(&(s
->mapping
),index1
);
1138 assert(mapping
->begin
<=cluster_num
);
1139 assert(index2
>= s
->mapping
.next
||
1140 ((mapping
= array_get(&(s
->mapping
),index2
)) &&
1141 mapping
->end
>cluster_num
)));
1145 static inline mapping_t
* find_mapping_for_cluster(BDRVVVFATState
* s
,int cluster_num
)
1147 int index
=find_mapping_for_cluster_aux(s
,cluster_num
,0,s
->mapping
.next
);
1149 if(index
>=s
->mapping
.next
)
1151 mapping
=array_get(&(s
->mapping
),index
);
1152 if(mapping
->begin
>cluster_num
)
1154 assert(mapping
->begin
<=cluster_num
&& mapping
->end
>cluster_num
);
1158 static int open_file(BDRVVVFATState
* s
,mapping_t
* mapping
)
1162 if(!s
->current_mapping
||
1163 strcmp(s
->current_mapping
->path
,mapping
->path
)) {
1165 int fd
= qemu_open(mapping
->path
, O_RDONLY
| O_BINARY
| O_LARGEFILE
);
1168 vvfat_close_current_file(s
);
1170 s
->current_mapping
= mapping
;
1175 static inline int read_cluster(BDRVVVFATState
*s
,int cluster_num
)
1177 if(s
->current_cluster
!= cluster_num
) {
1180 assert(!s
->current_mapping
|| s
->current_fd
|| (s
->current_mapping
->mode
& MODE_DIRECTORY
));
1181 if(!s
->current_mapping
1182 || s
->current_mapping
->begin
>cluster_num
1183 || s
->current_mapping
->end
<=cluster_num
) {
1184 /* binary search of mappings for file */
1185 mapping_t
* mapping
=find_mapping_for_cluster(s
,cluster_num
);
1187 assert(!mapping
|| (cluster_num
>=mapping
->begin
&& cluster_num
<mapping
->end
));
1189 if (mapping
&& mapping
->mode
& MODE_DIRECTORY
) {
1190 vvfat_close_current_file(s
);
1191 s
->current_mapping
= mapping
;
1192 read_cluster_directory
:
1193 offset
= s
->cluster_size
*(cluster_num
-s
->current_mapping
->begin
);
1194 s
->cluster
= (unsigned char*)s
->directory
.pointer
+offset
1195 + 0x20*s
->current_mapping
->info
.dir
.first_dir_index
;
1196 assert(((s
->cluster
-(unsigned char*)s
->directory
.pointer
)%s
->cluster_size
)==0);
1197 assert((char*)s
->cluster
+s
->cluster_size
<= s
->directory
.pointer
+s
->directory
.next
*s
->directory
.item_size
);
1198 s
->current_cluster
= cluster_num
;
1202 if(open_file(s
,mapping
))
1204 } else if (s
->current_mapping
->mode
& MODE_DIRECTORY
)
1205 goto read_cluster_directory
;
1207 assert(s
->current_fd
);
1209 offset
=s
->cluster_size
*(cluster_num
-s
->current_mapping
->begin
)+s
->current_mapping
->info
.file
.offset
;
1210 if(lseek(s
->current_fd
, offset
, SEEK_SET
)!=offset
)
1212 s
->cluster
=s
->cluster_buffer
;
1213 result
=read(s
->current_fd
,s
->cluster
,s
->cluster_size
);
1215 s
->current_cluster
= -1;
1218 s
->current_cluster
= cluster_num
;
1224 static void print_direntry(const direntry_t
* direntry
)
1229 fprintf(stderr
, "direntry %p: ", direntry
);
1232 if(is_long_name(direntry
)) {
1233 unsigned char* c
=(unsigned char*)direntry
;
1235 for(i
=1;i
<11 && c
[i
] && c
[i
]!=0xff;i
+=2)
1236 #define ADD_CHAR(c) {buffer[j] = (c); if (buffer[j] < ' ') buffer[j] = 0xb0; j++;}
1238 for(i
=14;i
<26 && c
[i
] && c
[i
]!=0xff;i
+=2)
1240 for(i
=28;i
<32 && c
[i
] && c
[i
]!=0xff;i
+=2)
1243 fprintf(stderr
, "%s\n", buffer
);
1247 ADD_CHAR(direntry
->name
[i
]);
1249 fprintf(stderr
,"%s attributes=0x%02x begin=%d size=%d\n",
1251 direntry
->attributes
,
1252 begin_of_direntry(direntry
),le32_to_cpu(direntry
->size
));
1256 static void print_mapping(const mapping_t
* mapping
)
1258 fprintf(stderr
, "mapping (%p): begin, end = %d, %d, dir_index = %d, "
1259 "first_mapping_index = %d, name = %s, mode = 0x%x, " ,
1260 mapping
, mapping
->begin
, mapping
->end
, mapping
->dir_index
,
1261 mapping
->first_mapping_index
, mapping
->path
, mapping
->mode
);
1263 if (mapping
->mode
& MODE_DIRECTORY
)
1264 fprintf(stderr
, "parent_mapping_index = %d, first_dir_index = %d\n", mapping
->info
.dir
.parent_mapping_index
, mapping
->info
.dir
.first_dir_index
);
1266 fprintf(stderr
, "offset = %d\n", mapping
->info
.file
.offset
);
1270 static int vvfat_read(BlockDriverState
*bs
, int64_t sector_num
,
1271 uint8_t *buf
, int nb_sectors
)
1273 BDRVVVFATState
*s
= bs
->opaque
;
1276 for(i
=0;i
<nb_sectors
;i
++,sector_num
++) {
1277 if (sector_num
>= bs
->total_sectors
)
1281 if (bdrv_is_allocated(s
->qcow
, sector_num
, nb_sectors
-i
, &n
)) {
1282 DLOG(fprintf(stderr
, "sectors %d+%d allocated\n", (int)sector_num
, n
));
1283 if (bdrv_read(s
->qcow
, sector_num
, buf
+ i
*0x200, n
)) {
1287 sector_num
+= n
- 1;
1290 DLOG(fprintf(stderr
, "sector %d not allocated\n", (int)sector_num
));
1292 if(sector_num
<s
->faked_sectors
) {
1293 if(sector_num
<s
->first_sectors_number
)
1294 memcpy(buf
+i
*0x200,&(s
->first_sectors
[sector_num
*0x200]),0x200);
1295 else if(sector_num
-s
->first_sectors_number
<s
->sectors_per_fat
)
1296 memcpy(buf
+i
*0x200,&(s
->fat
.pointer
[(sector_num
-s
->first_sectors_number
)*0x200]),0x200);
1297 else if(sector_num
-s
->first_sectors_number
-s
->sectors_per_fat
<s
->sectors_per_fat
)
1298 memcpy(buf
+i
*0x200,&(s
->fat
.pointer
[(sector_num
-s
->first_sectors_number
-s
->sectors_per_fat
)*0x200]),0x200);
1300 uint32_t sector
=sector_num
-s
->faked_sectors
,
1301 sector_offset_in_cluster
=(sector
%s
->sectors_per_cluster
),
1302 cluster_num
=sector
/s
->sectors_per_cluster
;
1303 if(cluster_num
> s
->cluster_count
|| read_cluster(s
, cluster_num
) != 0) {
1304 /* LATER TODO: strict: return -1; */
1305 memset(buf
+i
*0x200,0,0x200);
1308 memcpy(buf
+i
*0x200,s
->cluster
+sector_offset_in_cluster
*0x200,0x200);
1314 static coroutine_fn
int vvfat_co_read(BlockDriverState
*bs
, int64_t sector_num
,
1315 uint8_t *buf
, int nb_sectors
)
1318 BDRVVVFATState
*s
= bs
->opaque
;
1319 qemu_co_mutex_lock(&s
->lock
);
1320 ret
= vvfat_read(bs
, sector_num
, buf
, nb_sectors
);
1321 qemu_co_mutex_unlock(&s
->lock
);
1325 /* LATER TODO: statify all functions */
1328 * Idea of the write support (use snapshot):
1330 * 1. check if all data is consistent, recording renames, modifications,
1331 * new files and directories (in s->commits).
1333 * 2. if the data is not consistent, stop committing
1335 * 3. handle renames, and create new files and directories (do not yet
1336 * write their contents)
1338 * 4. walk the directories, fixing the mapping and direntries, and marking
1339 * the handled mappings as not deleted
1341 * 5. commit the contents of the files
1343 * 6. handle deleted files and directories
1347 typedef struct commit_t
{
1350 struct { uint32_t cluster
; } rename
;
1351 struct { int dir_index
; uint32_t modified_offset
; } writeout
;
1352 struct { uint32_t first_cluster
; } new_file
;
1353 struct { uint32_t cluster
; } mkdir
;
1355 /* DELETEs and RMDIRs are handled differently: see handle_deletes() */
1357 ACTION_RENAME
, ACTION_WRITEOUT
, ACTION_NEW_FILE
, ACTION_MKDIR
1361 static void clear_commits(BDRVVVFATState
* s
)
1364 DLOG(fprintf(stderr
, "clear_commits (%d commits)\n", s
->commits
.next
));
1365 for (i
= 0; i
< s
->commits
.next
; i
++) {
1366 commit_t
* commit
= array_get(&(s
->commits
), i
);
1367 assert(commit
->path
|| commit
->action
== ACTION_WRITEOUT
);
1368 if (commit
->action
!= ACTION_WRITEOUT
) {
1369 assert(commit
->path
);
1370 g_free(commit
->path
);
1372 assert(commit
->path
== NULL
);
1374 s
->commits
.next
= 0;
1377 static void schedule_rename(BDRVVVFATState
* s
,
1378 uint32_t cluster
, char* new_path
)
1380 commit_t
* commit
= array_get_next(&(s
->commits
));
1381 commit
->path
= new_path
;
1382 commit
->param
.rename
.cluster
= cluster
;
1383 commit
->action
= ACTION_RENAME
;
1386 static void schedule_writeout(BDRVVVFATState
* s
,
1387 int dir_index
, uint32_t modified_offset
)
1389 commit_t
* commit
= array_get_next(&(s
->commits
));
1390 commit
->path
= NULL
;
1391 commit
->param
.writeout
.dir_index
= dir_index
;
1392 commit
->param
.writeout
.modified_offset
= modified_offset
;
1393 commit
->action
= ACTION_WRITEOUT
;
1396 static void schedule_new_file(BDRVVVFATState
* s
,
1397 char* path
, uint32_t first_cluster
)
1399 commit_t
* commit
= array_get_next(&(s
->commits
));
1400 commit
->path
= path
;
1401 commit
->param
.new_file
.first_cluster
= first_cluster
;
1402 commit
->action
= ACTION_NEW_FILE
;
1405 static void schedule_mkdir(BDRVVVFATState
* s
, uint32_t cluster
, char* path
)
1407 commit_t
* commit
= array_get_next(&(s
->commits
));
1408 commit
->path
= path
;
1409 commit
->param
.mkdir
.cluster
= cluster
;
1410 commit
->action
= ACTION_MKDIR
;
1415 * Since the sequence number is at most 0x3f, and the filename
1416 * length is at most 13 times the sequence number, the maximal
1417 * filename length is 0x3f * 13 bytes.
1419 unsigned char name
[0x3f * 13 + 1];
1421 int sequence_number
;
1424 static void lfn_init(long_file_name
* lfn
)
1426 lfn
->sequence_number
= lfn
->len
= 0;
1427 lfn
->checksum
= 0x100;
1430 /* return 0 if parsed successfully, > 0 if no long name, < 0 if error */
1431 static int parse_long_name(long_file_name
* lfn
,
1432 const direntry_t
* direntry
)
1435 const unsigned char* pointer
= (const unsigned char*)direntry
;
1437 if (!is_long_name(direntry
))
1440 if (pointer
[0] & 0x40) {
1441 lfn
->sequence_number
= pointer
[0] & 0x3f;
1442 lfn
->checksum
= pointer
[13];
1444 lfn
->name
[lfn
->sequence_number
* 13] = 0;
1445 } else if ((pointer
[0] & 0x3f) != --lfn
->sequence_number
)
1447 else if (pointer
[13] != lfn
->checksum
)
1449 else if (pointer
[12] || pointer
[26] || pointer
[27])
1452 offset
= 13 * (lfn
->sequence_number
- 1);
1453 for (i
= 0, j
= 1; i
< 13; i
++, j
+=2) {
1459 if (pointer
[j
+1] == 0)
1460 lfn
->name
[offset
+ i
] = pointer
[j
];
1461 else if (pointer
[j
+1] != 0xff || (pointer
[0] & 0x40) == 0)
1464 lfn
->name
[offset
+ i
] = 0;
1467 if (pointer
[0] & 0x40)
1468 lfn
->len
= offset
+ strlen((char*)lfn
->name
+ offset
);
1473 /* returns 0 if successful, >0 if no short_name, and <0 on error */
1474 static int parse_short_name(BDRVVVFATState
* s
,
1475 long_file_name
* lfn
, direntry_t
* direntry
)
1479 if (!is_short_name(direntry
))
1482 for (j
= 7; j
>= 0 && direntry
->name
[j
] == ' '; j
--);
1483 for (i
= 0; i
<= j
; i
++) {
1484 if (direntry
->name
[i
] <= ' ' || direntry
->name
[i
] > 0x7f)
1486 else if (s
->downcase_short_names
)
1487 lfn
->name
[i
] = qemu_tolower(direntry
->name
[i
]);
1489 lfn
->name
[i
] = direntry
->name
[i
];
1492 for (j
= 2; j
>= 0 && direntry
->extension
[j
] == ' '; j
--);
1494 lfn
->name
[i
++] = '.';
1495 lfn
->name
[i
+ j
+ 1] = '\0';
1496 for (;j
>= 0; j
--) {
1497 if (direntry
->extension
[j
] <= ' ' || direntry
->extension
[j
] > 0x7f)
1499 else if (s
->downcase_short_names
)
1500 lfn
->name
[i
+ j
] = qemu_tolower(direntry
->extension
[j
]);
1502 lfn
->name
[i
+ j
] = direntry
->extension
[j
];
1505 lfn
->name
[i
+ j
+ 1] = '\0';
1507 lfn
->len
= strlen((char*)lfn
->name
);
1512 static inline uint32_t modified_fat_get(BDRVVVFATState
* s
,
1513 unsigned int cluster
)
1515 if (cluster
< s
->last_cluster_of_root_directory
) {
1516 if (cluster
+ 1 == s
->last_cluster_of_root_directory
)
1517 return s
->max_fat_value
;
1522 if (s
->fat_type
==32) {
1523 uint32_t* entry
=((uint32_t*)s
->fat2
)+cluster
;
1524 return le32_to_cpu(*entry
);
1525 } else if (s
->fat_type
==16) {
1526 uint16_t* entry
=((uint16_t*)s
->fat2
)+cluster
;
1527 return le16_to_cpu(*entry
);
1529 const uint8_t* x
=s
->fat2
+cluster
*3/2;
1530 return ((x
[0]|(x
[1]<<8))>>(cluster
&1?4:0))&0x0fff;
1534 static inline int cluster_was_modified(BDRVVVFATState
* s
, uint32_t cluster_num
)
1536 int was_modified
= 0;
1539 if (s
->qcow
== NULL
)
1542 for (i
= 0; !was_modified
&& i
< s
->sectors_per_cluster
; i
++)
1543 was_modified
= bdrv_is_allocated(s
->qcow
,
1544 cluster2sector(s
, cluster_num
) + i
, 1, &dummy
);
1546 return was_modified
;
1549 static const char* get_basename(const char* path
)
1551 char* basename
= strrchr(path
, '/');
1552 if (basename
== NULL
)
1555 return basename
+ 1; /* strip '/' */
1559 * The array s->used_clusters holds the states of the clusters. If it is
1560 * part of a file, it has bit 2 set, in case of a directory, bit 1. If it
1561 * was modified, bit 3 is set.
1562 * If any cluster is allocated, but not part of a file or directory, this
1563 * driver refuses to commit.
1566 USED_DIRECTORY
= 1, USED_FILE
= 2, USED_ANY
= 3, USED_ALLOCATED
= 4
1570 * get_cluster_count_for_direntry() not only determines how many clusters
1571 * are occupied by direntry, but also if it was renamed or modified.
1573 * A file is thought to be renamed *only* if there already was a file with
1574 * exactly the same first cluster, but a different name.
1576 * Further, the files/directories handled by this function are
1577 * assumed to be *not* deleted (and *only* those).
1579 static uint32_t get_cluster_count_for_direntry(BDRVVVFATState
* s
,
1580 direntry_t
* direntry
, const char* path
)
1583 * This is a little bit tricky:
1584 * IF the guest OS just inserts a cluster into the file chain,
1585 * and leaves the rest alone, (i.e. the original file had clusters
1586 * 15 -> 16, but now has 15 -> 32 -> 16), then the following happens:
1588 * - do_commit will write the cluster into the file at the given
1591 * - the cluster which is overwritten should be moved to a later
1592 * position in the file.
1594 * I am not aware that any OS does something as braindead, but this
1595 * situation could happen anyway when not committing for a long time.
1596 * Just to be sure that this does not bite us, detect it, and copy the
1597 * contents of the clusters to-be-overwritten into the qcow.
1600 int was_modified
= 0;
1603 uint32_t cluster_num
= begin_of_direntry(direntry
);
1604 uint32_t offset
= 0;
1605 int first_mapping_index
= -1;
1606 mapping_t
* mapping
= NULL
;
1607 const char* basename2
= NULL
;
1609 vvfat_close_current_file(s
);
1611 /* the root directory */
1612 if (cluster_num
== 0)
1617 basename2
= get_basename(path
);
1619 mapping
= find_mapping_for_cluster(s
, cluster_num
);
1622 const char* basename
;
1624 assert(mapping
->mode
& MODE_DELETED
);
1625 mapping
->mode
&= ~MODE_DELETED
;
1627 basename
= get_basename(mapping
->path
);
1629 assert(mapping
->mode
& MODE_NORMAL
);
1632 if (strcmp(basename
, basename2
))
1633 schedule_rename(s
, cluster_num
, g_strdup(path
));
1634 } else if (is_file(direntry
))
1636 schedule_new_file(s
, g_strdup(path
), cluster_num
);
1645 if (!copy_it
&& cluster_was_modified(s
, cluster_num
)) {
1646 if (mapping
== NULL
||
1647 mapping
->begin
> cluster_num
||
1648 mapping
->end
<= cluster_num
)
1649 mapping
= find_mapping_for_cluster(s
, cluster_num
);
1653 (mapping
->mode
& MODE_DIRECTORY
) == 0) {
1655 /* was modified in qcow */
1656 if (offset
!= mapping
->info
.file
.offset
+ s
->cluster_size
1657 * (cluster_num
- mapping
->begin
)) {
1658 /* offset of this cluster in file chain has changed */
1661 } else if (offset
== 0) {
1662 const char* basename
= get_basename(mapping
->path
);
1664 if (strcmp(basename
, basename2
))
1666 first_mapping_index
= array_index(&(s
->mapping
), mapping
);
1669 if (mapping
->first_mapping_index
!= first_mapping_index
1670 && mapping
->info
.file
.offset
> 0) {
1675 /* need to write out? */
1676 if (!was_modified
&& is_file(direntry
)) {
1678 schedule_writeout(s
, mapping
->dir_index
, offset
);
1686 * This is horribly inefficient, but that is okay, since
1687 * it is rarely executed, if at all.
1689 int64_t offset
= cluster2sector(s
, cluster_num
);
1691 vvfat_close_current_file(s
);
1692 for (i
= 0; i
< s
->sectors_per_cluster
; i
++) {
1693 if (!bdrv_is_allocated(s
->qcow
, offset
+ i
, 1, &dummy
)) {
1694 if (vvfat_read(s
->bs
, offset
, s
->cluster_buffer
, 1)) {
1697 if (bdrv_write(s
->qcow
, offset
, s
->cluster_buffer
, 1)) {
1706 if (s
->used_clusters
[cluster_num
] & USED_ANY
)
1708 s
->used_clusters
[cluster_num
] = USED_FILE
;
1710 cluster_num
= modified_fat_get(s
, cluster_num
);
1712 if (fat_eof(s
, cluster_num
))
1714 else if (cluster_num
< 2 || cluster_num
> s
->max_fat_value
- 16)
1717 offset
+= s
->cluster_size
;
1722 * This function looks at the modified data (qcow).
1723 * It returns 0 upon inconsistency or error, and the number of clusters
1724 * used by the directory, its subdirectories and their files.
1726 static int check_directory_consistency(BDRVVVFATState
*s
,
1727 int cluster_num
, const char* path
)
1730 unsigned char* cluster
= g_malloc(s
->cluster_size
);
1731 direntry_t
* direntries
= (direntry_t
*)cluster
;
1732 mapping_t
* mapping
= find_mapping_for_cluster(s
, cluster_num
);
1735 int path_len
= strlen(path
);
1736 char path2
[PATH_MAX
+ 1];
1738 assert(path_len
< PATH_MAX
); /* len was tested before! */
1739 pstrcpy(path2
, sizeof(path2
), path
);
1740 path2
[path_len
] = '/';
1741 path2
[path_len
+ 1] = '\0';
1744 const char* basename
= get_basename(mapping
->path
);
1745 const char* basename2
= get_basename(path
);
1747 assert(mapping
->mode
& MODE_DIRECTORY
);
1749 assert(mapping
->mode
& MODE_DELETED
);
1750 mapping
->mode
&= ~MODE_DELETED
;
1752 if (strcmp(basename
, basename2
))
1753 schedule_rename(s
, cluster_num
, g_strdup(path
));
1756 schedule_mkdir(s
, cluster_num
, g_strdup(path
));
1765 if (s
->used_clusters
[cluster_num
] & USED_ANY
) {
1766 fprintf(stderr
, "cluster %d used more than once\n", (int)cluster_num
);
1769 s
->used_clusters
[cluster_num
] = USED_DIRECTORY
;
1771 DLOG(fprintf(stderr
, "read cluster %d (sector %d)\n", (int)cluster_num
, (int)cluster2sector(s
, cluster_num
)));
1772 subret
= vvfat_read(s
->bs
, cluster2sector(s
, cluster_num
), cluster
,
1773 s
->sectors_per_cluster
);
1775 fprintf(stderr
, "Error fetching direntries\n");
1781 for (i
= 0; i
< 0x10 * s
->sectors_per_cluster
; i
++) {
1782 int cluster_count
= 0;
1784 DLOG(fprintf(stderr
, "check direntry %d:\n", i
); print_direntry(direntries
+ i
));
1785 if (is_volume_label(direntries
+ i
) || is_dot(direntries
+ i
) ||
1786 is_free(direntries
+ i
))
1789 subret
= parse_long_name(&lfn
, direntries
+ i
);
1791 fprintf(stderr
, "Error in long name\n");
1794 if (subret
== 0 || is_free(direntries
+ i
))
1797 if (fat_chksum(direntries
+i
) != lfn
.checksum
) {
1798 subret
= parse_short_name(s
, &lfn
, direntries
+ i
);
1800 fprintf(stderr
, "Error in short name (%d)\n", subret
);
1803 if (subret
> 0 || !strcmp((char*)lfn
.name
, ".")
1804 || !strcmp((char*)lfn
.name
, ".."))
1807 lfn
.checksum
= 0x100; /* cannot use long name twice */
1809 if (path_len
+ 1 + lfn
.len
>= PATH_MAX
) {
1810 fprintf(stderr
, "Name too long: %s/%s\n", path
, lfn
.name
);
1813 pstrcpy(path2
+ path_len
+ 1, sizeof(path2
) - path_len
- 1,
1816 if (is_directory(direntries
+ i
)) {
1817 if (begin_of_direntry(direntries
+ i
) == 0) {
1818 DLOG(fprintf(stderr
, "invalid begin for directory: %s\n", path2
); print_direntry(direntries
+ i
));
1821 cluster_count
= check_directory_consistency(s
,
1822 begin_of_direntry(direntries
+ i
), path2
);
1823 if (cluster_count
== 0) {
1824 DLOG(fprintf(stderr
, "problem in directory %s:\n", path2
); print_direntry(direntries
+ i
));
1827 } else if (is_file(direntries
+ i
)) {
1828 /* check file size with FAT */
1829 cluster_count
= get_cluster_count_for_direntry(s
, direntries
+ i
, path2
);
1830 if (cluster_count
!=
1831 (le32_to_cpu(direntries
[i
].size
) + s
->cluster_size
1832 - 1) / s
->cluster_size
) {
1833 DLOG(fprintf(stderr
, "Cluster count mismatch\n"));
1837 abort(); /* cluster_count = 0; */
1839 ret
+= cluster_count
;
1842 cluster_num
= modified_fat_get(s
, cluster_num
);
1843 } while(!fat_eof(s
, cluster_num
));
1849 /* returns 1 on success */
1850 static int is_consistent(BDRVVVFATState
* s
)
1853 int used_clusters_count
= 0;
1857 * - get modified FAT
1858 * - compare the two FATs (TODO)
1859 * - get buffer for marking used clusters
1860 * - recurse direntries from root (using bs->bdrv_read to make
1861 * sure to get the new data)
1862 * - check that the FAT agrees with the size
1863 * - count the number of clusters occupied by this directory and
1865 * - check that the cumulative used cluster count agrees with the
1867 * - if all is fine, return number of used clusters
1869 if (s
->fat2
== NULL
) {
1870 int size
= 0x200 * s
->sectors_per_fat
;
1871 s
->fat2
= g_malloc(size
);
1872 memcpy(s
->fat2
, s
->fat
.pointer
, size
);
1874 check
= vvfat_read(s
->bs
,
1875 s
->first_sectors_number
, s
->fat2
, s
->sectors_per_fat
);
1877 fprintf(stderr
, "Could not copy fat\n");
1880 assert (s
->used_clusters
);
1881 for (i
= 0; i
< sector2cluster(s
, s
->sector_count
); i
++)
1882 s
->used_clusters
[i
] &= ~USED_ANY
;
1886 /* mark every mapped file/directory as deleted.
1887 * (check_directory_consistency() will unmark those still present). */
1889 for (i
= 0; i
< s
->mapping
.next
; i
++) {
1890 mapping_t
* mapping
= array_get(&(s
->mapping
), i
);
1891 if (mapping
->first_mapping_index
< 0)
1892 mapping
->mode
|= MODE_DELETED
;
1895 used_clusters_count
= check_directory_consistency(s
, 0, s
->path
);
1896 if (used_clusters_count
<= 0) {
1897 DLOG(fprintf(stderr
, "problem in directory\n"));
1901 check
= s
->last_cluster_of_root_directory
;
1902 for (i
= check
; i
< sector2cluster(s
, s
->sector_count
); i
++) {
1903 if (modified_fat_get(s
, i
)) {
1904 if(!s
->used_clusters
[i
]) {
1905 DLOG(fprintf(stderr
, "FAT was modified (%d), but cluster is not used?\n", i
));
1911 if (s
->used_clusters
[i
] == USED_ALLOCATED
) {
1912 /* allocated, but not used... */
1913 DLOG(fprintf(stderr
, "unused, modified cluster: %d\n", i
));
1918 if (check
!= used_clusters_count
)
1921 return used_clusters_count
;
1924 static inline void adjust_mapping_indices(BDRVVVFATState
* s
,
1925 int offset
, int adjust
)
1929 for (i
= 0; i
< s
->mapping
.next
; i
++) {
1930 mapping_t
* mapping
= array_get(&(s
->mapping
), i
);
1932 #define ADJUST_MAPPING_INDEX(name) \
1933 if (mapping->name >= offset) \
1934 mapping->name += adjust
1936 ADJUST_MAPPING_INDEX(first_mapping_index
);
1937 if (mapping
->mode
& MODE_DIRECTORY
)
1938 ADJUST_MAPPING_INDEX(info
.dir
.parent_mapping_index
);
1942 /* insert or update mapping */
1943 static mapping_t
* insert_mapping(BDRVVVFATState
* s
,
1944 uint32_t begin
, uint32_t end
)
1947 * - find mapping where mapping->begin >= begin,
1948 * - if mapping->begin > begin: insert
1949 * - adjust all references to mappings!
1953 int index
= find_mapping_for_cluster_aux(s
, begin
, 0, s
->mapping
.next
);
1954 mapping_t
* mapping
= NULL
;
1955 mapping_t
* first_mapping
= array_get(&(s
->mapping
), 0);
1957 if (index
< s
->mapping
.next
&& (mapping
= array_get(&(s
->mapping
), index
))
1958 && mapping
->begin
< begin
) {
1959 mapping
->end
= begin
;
1961 mapping
= array_get(&(s
->mapping
), index
);
1963 if (index
>= s
->mapping
.next
|| mapping
->begin
> begin
) {
1964 mapping
= array_insert(&(s
->mapping
), index
, 1);
1965 mapping
->path
= NULL
;
1966 adjust_mapping_indices(s
, index
, +1);
1969 mapping
->begin
= begin
;
1972 DLOG(mapping_t
* next_mapping
;
1973 assert(index
+ 1 >= s
->mapping
.next
||
1974 ((next_mapping
= array_get(&(s
->mapping
), index
+ 1)) &&
1975 next_mapping
->begin
>= end
)));
1977 if (s
->current_mapping
&& first_mapping
!= (mapping_t
*)s
->mapping
.pointer
)
1978 s
->current_mapping
= array_get(&(s
->mapping
),
1979 s
->current_mapping
- first_mapping
);
1984 static int remove_mapping(BDRVVVFATState
* s
, int mapping_index
)
1986 mapping_t
* mapping
= array_get(&(s
->mapping
), mapping_index
);
1987 mapping_t
* first_mapping
= array_get(&(s
->mapping
), 0);
1990 if (mapping
->first_mapping_index
< 0) {
1991 g_free(mapping
->path
);
1994 /* remove from s->mapping */
1995 array_remove(&(s
->mapping
), mapping_index
);
1997 /* adjust all references to mappings */
1998 adjust_mapping_indices(s
, mapping_index
, -1);
2000 if (s
->current_mapping
&& first_mapping
!= (mapping_t
*)s
->mapping
.pointer
)
2001 s
->current_mapping
= array_get(&(s
->mapping
),
2002 s
->current_mapping
- first_mapping
);
2007 static void adjust_dirindices(BDRVVVFATState
* s
, int offset
, int adjust
)
2010 for (i
= 0; i
< s
->mapping
.next
; i
++) {
2011 mapping_t
* mapping
= array_get(&(s
->mapping
), i
);
2012 if (mapping
->dir_index
>= offset
)
2013 mapping
->dir_index
+= adjust
;
2014 if ((mapping
->mode
& MODE_DIRECTORY
) &&
2015 mapping
->info
.dir
.first_dir_index
>= offset
)
2016 mapping
->info
.dir
.first_dir_index
+= adjust
;
2020 static direntry_t
* insert_direntries(BDRVVVFATState
* s
,
2021 int dir_index
, int count
)
2024 * make room in s->directory,
2027 direntry_t
* result
= array_insert(&(s
->directory
), dir_index
, count
);
2030 adjust_dirindices(s
, dir_index
, count
);
2034 static int remove_direntries(BDRVVVFATState
* s
, int dir_index
, int count
)
2036 int ret
= array_remove_slice(&(s
->directory
), dir_index
, count
);
2039 adjust_dirindices(s
, dir_index
, -count
);
2044 * Adapt the mappings of the cluster chain starting at first cluster
2045 * (i.e. if a file starts at first_cluster, the chain is followed according
2046 * to the modified fat, and the corresponding entries in s->mapping are
2049 static int commit_mappings(BDRVVVFATState
* s
,
2050 uint32_t first_cluster
, int dir_index
)
2052 mapping_t
* mapping
= find_mapping_for_cluster(s
, first_cluster
);
2053 direntry_t
* direntry
= array_get(&(s
->directory
), dir_index
);
2054 uint32_t cluster
= first_cluster
;
2056 vvfat_close_current_file(s
);
2059 assert(mapping
->begin
== first_cluster
);
2060 mapping
->first_mapping_index
= -1;
2061 mapping
->dir_index
= dir_index
;
2062 mapping
->mode
= (dir_index
<= 0 || is_directory(direntry
)) ?
2063 MODE_DIRECTORY
: MODE_NORMAL
;
2065 while (!fat_eof(s
, cluster
)) {
2068 for (c
= cluster
, c1
= modified_fat_get(s
, c
); c
+ 1 == c1
;
2069 c
= c1
, c1
= modified_fat_get(s
, c1
));
2072 if (c
> mapping
->end
) {
2073 int index
= array_index(&(s
->mapping
), mapping
);
2074 int i
, max_i
= s
->mapping
.next
- index
;
2075 for (i
= 1; i
< max_i
&& mapping
[i
].begin
< c
; i
++);
2077 remove_mapping(s
, index
+ 1);
2079 assert(mapping
== array_get(&(s
->mapping
), s
->mapping
.next
- 1)
2080 || mapping
[1].begin
>= c
);
2083 if (!fat_eof(s
, c1
)) {
2084 int i
= find_mapping_for_cluster_aux(s
, c1
, 0, s
->mapping
.next
);
2085 mapping_t
* next_mapping
= i
>= s
->mapping
.next
? NULL
:
2086 array_get(&(s
->mapping
), i
);
2088 if (next_mapping
== NULL
|| next_mapping
->begin
> c1
) {
2089 int i1
= array_index(&(s
->mapping
), mapping
);
2091 next_mapping
= insert_mapping(s
, c1
, c1
+1);
2095 mapping
= array_get(&(s
->mapping
), i1
);
2098 next_mapping
->dir_index
= mapping
->dir_index
;
2099 next_mapping
->first_mapping_index
=
2100 mapping
->first_mapping_index
< 0 ?
2101 array_index(&(s
->mapping
), mapping
) :
2102 mapping
->first_mapping_index
;
2103 next_mapping
->path
= mapping
->path
;
2104 next_mapping
->mode
= mapping
->mode
;
2105 next_mapping
->read_only
= mapping
->read_only
;
2106 if (mapping
->mode
& MODE_DIRECTORY
) {
2107 next_mapping
->info
.dir
.parent_mapping_index
=
2108 mapping
->info
.dir
.parent_mapping_index
;
2109 next_mapping
->info
.dir
.first_dir_index
=
2110 mapping
->info
.dir
.first_dir_index
+
2111 0x10 * s
->sectors_per_cluster
*
2112 (mapping
->end
- mapping
->begin
);
2114 next_mapping
->info
.file
.offset
= mapping
->info
.file
.offset
+
2115 mapping
->end
- mapping
->begin
;
2117 mapping
= next_mapping
;
2126 static int commit_direntries(BDRVVVFATState
* s
,
2127 int dir_index
, int parent_mapping_index
)
2129 direntry_t
* direntry
= array_get(&(s
->directory
), dir_index
);
2130 uint32_t first_cluster
= dir_index
== 0 ? 0 : begin_of_direntry(direntry
);
2131 mapping_t
* mapping
= find_mapping_for_cluster(s
, first_cluster
);
2133 int factor
= 0x10 * s
->sectors_per_cluster
;
2134 int old_cluster_count
, new_cluster_count
;
2135 int current_dir_index
= mapping
->info
.dir
.first_dir_index
;
2136 int first_dir_index
= current_dir_index
;
2140 DLOG(fprintf(stderr
, "commit_direntries for %s, parent_mapping_index %d\n", mapping
->path
, parent_mapping_index
));
2144 assert(mapping
->begin
== first_cluster
);
2145 assert(mapping
->info
.dir
.first_dir_index
< s
->directory
.next
);
2146 assert(mapping
->mode
& MODE_DIRECTORY
);
2147 assert(dir_index
== 0 || is_directory(direntry
));
2149 mapping
->info
.dir
.parent_mapping_index
= parent_mapping_index
;
2151 if (first_cluster
== 0) {
2152 old_cluster_count
= new_cluster_count
=
2153 s
->last_cluster_of_root_directory
;
2155 for (old_cluster_count
= 0, c
= first_cluster
; !fat_eof(s
, c
);
2157 old_cluster_count
++;
2159 for (new_cluster_count
= 0, c
= first_cluster
; !fat_eof(s
, c
);
2160 c
= modified_fat_get(s
, c
))
2161 new_cluster_count
++;
2164 if (new_cluster_count
> old_cluster_count
) {
2165 if (insert_direntries(s
,
2166 current_dir_index
+ factor
* old_cluster_count
,
2167 factor
* (new_cluster_count
- old_cluster_count
)) == NULL
)
2169 } else if (new_cluster_count
< old_cluster_count
)
2170 remove_direntries(s
,
2171 current_dir_index
+ factor
* new_cluster_count
,
2172 factor
* (old_cluster_count
- new_cluster_count
));
2174 for (c
= first_cluster
; !fat_eof(s
, c
); c
= modified_fat_get(s
, c
)) {
2175 void* direntry
= array_get(&(s
->directory
), current_dir_index
);
2176 int ret
= vvfat_read(s
->bs
, cluster2sector(s
, c
), direntry
,
2177 s
->sectors_per_cluster
);
2180 assert(!strncmp(s
->directory
.pointer
, "QEMU", 4));
2181 current_dir_index
+= factor
;
2184 ret
= commit_mappings(s
, first_cluster
, dir_index
);
2189 for (i
= 0; i
< factor
* new_cluster_count
; i
++) {
2190 direntry
= array_get(&(s
->directory
), first_dir_index
+ i
);
2191 if (is_directory(direntry
) && !is_dot(direntry
)) {
2192 mapping
= find_mapping_for_cluster(s
, first_cluster
);
2193 assert(mapping
->mode
& MODE_DIRECTORY
);
2194 ret
= commit_direntries(s
, first_dir_index
+ i
,
2195 array_index(&(s
->mapping
), mapping
));
2204 /* commit one file (adjust contents, adjust mapping),
2205 return first_mapping_index */
2206 static int commit_one_file(BDRVVVFATState
* s
,
2207 int dir_index
, uint32_t offset
)
2209 direntry_t
* direntry
= array_get(&(s
->directory
), dir_index
);
2210 uint32_t c
= begin_of_direntry(direntry
);
2211 uint32_t first_cluster
= c
;
2212 mapping_t
* mapping
= find_mapping_for_cluster(s
, c
);
2213 uint32_t size
= filesize_of_direntry(direntry
);
2214 char* cluster
= g_malloc(s
->cluster_size
);
2218 assert(offset
< size
);
2219 assert((offset
% s
->cluster_size
) == 0);
2221 for (i
= s
->cluster_size
; i
< offset
; i
+= s
->cluster_size
)
2222 c
= modified_fat_get(s
, c
);
2224 fd
= qemu_open(mapping
->path
, O_RDWR
| O_CREAT
| O_BINARY
, 0666);
2226 fprintf(stderr
, "Could not open %s... (%s, %d)\n", mapping
->path
,
2227 strerror(errno
), errno
);
2232 if (lseek(fd
, offset
, SEEK_SET
) != offset
) {
2239 while (offset
< size
) {
2241 int rest_size
= (size
- offset
> s
->cluster_size
?
2242 s
->cluster_size
: size
- offset
);
2245 c1
= modified_fat_get(s
, c
);
2247 assert((size
- offset
== 0 && fat_eof(s
, c
)) ||
2248 (size
> offset
&& c
>=2 && !fat_eof(s
, c
)));
2250 ret
= vvfat_read(s
->bs
, cluster2sector(s
, c
),
2251 (uint8_t*)cluster
, (rest_size
+ 0x1ff) / 0x200);
2259 if (write(fd
, cluster
, rest_size
) < 0) {
2265 offset
+= rest_size
;
2269 if (ftruncate(fd
, size
)) {
2270 perror("ftruncate()");
2278 return commit_mappings(s
, first_cluster
, dir_index
);
2282 /* test, if all mappings point to valid direntries */
2283 static void check1(BDRVVVFATState
* s
)
2286 for (i
= 0; i
< s
->mapping
.next
; i
++) {
2287 mapping_t
* mapping
= array_get(&(s
->mapping
), i
);
2288 if (mapping
->mode
& MODE_DELETED
) {
2289 fprintf(stderr
, "deleted\n");
2292 assert(mapping
->dir_index
< s
->directory
.next
);
2293 direntry_t
* direntry
= array_get(&(s
->directory
), mapping
->dir_index
);
2294 assert(mapping
->begin
== begin_of_direntry(direntry
) || mapping
->first_mapping_index
>= 0);
2295 if (mapping
->mode
& MODE_DIRECTORY
) {
2296 assert(mapping
->info
.dir
.first_dir_index
+ 0x10 * s
->sectors_per_cluster
* (mapping
->end
- mapping
->begin
) <= s
->directory
.next
);
2297 assert((mapping
->info
.dir
.first_dir_index
% (0x10 * s
->sectors_per_cluster
)) == 0);
2302 /* test, if all direntries have mappings */
2303 static void check2(BDRVVVFATState
* s
)
2306 int first_mapping
= -1;
2308 for (i
= 0; i
< s
->directory
.next
; i
++) {
2309 direntry_t
* direntry
= array_get(&(s
->directory
), i
);
2311 if (is_short_name(direntry
) && begin_of_direntry(direntry
)) {
2312 mapping_t
* mapping
= find_mapping_for_cluster(s
, begin_of_direntry(direntry
));
2314 assert(mapping
->dir_index
== i
|| is_dot(direntry
));
2315 assert(mapping
->begin
== begin_of_direntry(direntry
) || is_dot(direntry
));
2318 if ((i
% (0x10 * s
->sectors_per_cluster
)) == 0) {
2322 for (j
= 0; j
< s
->mapping
.next
; j
++) {
2323 mapping_t
* mapping
= array_get(&(s
->mapping
), j
);
2324 if (mapping
->mode
& MODE_DELETED
)
2326 if (mapping
->mode
& MODE_DIRECTORY
) {
2327 if (mapping
->info
.dir
.first_dir_index
<= i
&& mapping
->info
.dir
.first_dir_index
+ 0x10 * s
->sectors_per_cluster
> i
) {
2328 assert(++count
== 1);
2329 if (mapping
->first_mapping_index
== -1)
2330 first_mapping
= array_index(&(s
->mapping
), mapping
);
2332 assert(first_mapping
== mapping
->first_mapping_index
);
2333 if (mapping
->info
.dir
.parent_mapping_index
< 0)
2336 mapping_t
* parent
= array_get(&(s
->mapping
), mapping
->info
.dir
.parent_mapping_index
);
2337 assert(parent
->mode
& MODE_DIRECTORY
);
2338 assert(parent
->info
.dir
.first_dir_index
< mapping
->info
.dir
.first_dir_index
);
2350 static int handle_renames_and_mkdirs(BDRVVVFATState
* s
)
2355 fprintf(stderr
, "handle_renames\n");
2356 for (i
= 0; i
< s
->commits
.next
; i
++) {
2357 commit_t
* commit
= array_get(&(s
->commits
), i
);
2358 fprintf(stderr
, "%d, %s (%d, %d)\n", i
, commit
->path
? commit
->path
: "(null)", commit
->param
.rename
.cluster
, commit
->action
);
2362 for (i
= 0; i
< s
->commits
.next
;) {
2363 commit_t
* commit
= array_get(&(s
->commits
), i
);
2364 if (commit
->action
== ACTION_RENAME
) {
2365 mapping_t
* mapping
= find_mapping_for_cluster(s
,
2366 commit
->param
.rename
.cluster
);
2367 char* old_path
= mapping
->path
;
2369 assert(commit
->path
);
2370 mapping
->path
= commit
->path
;
2371 if (rename(old_path
, mapping
->path
))
2374 if (mapping
->mode
& MODE_DIRECTORY
) {
2375 int l1
= strlen(mapping
->path
);
2376 int l2
= strlen(old_path
);
2378 direntry_t
* direntry
= array_get(&(s
->directory
),
2379 mapping
->info
.dir
.first_dir_index
);
2380 uint32_t c
= mapping
->begin
;
2384 while (!fat_eof(s
, c
)) {
2386 direntry_t
* d
= direntry
+ i
;
2388 if (is_file(d
) || (is_directory(d
) && !is_dot(d
))) {
2389 mapping_t
* m
= find_mapping_for_cluster(s
,
2390 begin_of_direntry(d
));
2391 int l
= strlen(m
->path
);
2392 char* new_path
= g_malloc(l
+ diff
+ 1);
2394 assert(!strncmp(m
->path
, mapping
->path
, l2
));
2396 pstrcpy(new_path
, l
+ diff
+ 1, mapping
->path
);
2397 pstrcpy(new_path
+ l1
, l
+ diff
+ 1 - l1
,
2400 schedule_rename(s
, m
->begin
, new_path
);
2403 } while((i
% (0x10 * s
->sectors_per_cluster
)) != 0);
2409 array_remove(&(s
->commits
), i
);
2411 } else if (commit
->action
== ACTION_MKDIR
) {
2413 int j
, parent_path_len
;
2416 if (mkdir(commit
->path
))
2419 if (mkdir(commit
->path
, 0755))
2423 mapping
= insert_mapping(s
, commit
->param
.mkdir
.cluster
,
2424 commit
->param
.mkdir
.cluster
+ 1);
2425 if (mapping
== NULL
)
2428 mapping
->mode
= MODE_DIRECTORY
;
2429 mapping
->read_only
= 0;
2430 mapping
->path
= commit
->path
;
2431 j
= s
->directory
.next
;
2433 insert_direntries(s
, s
->directory
.next
,
2434 0x10 * s
->sectors_per_cluster
);
2435 mapping
->info
.dir
.first_dir_index
= j
;
2437 parent_path_len
= strlen(commit
->path
)
2438 - strlen(get_basename(commit
->path
)) - 1;
2439 for (j
= 0; j
< s
->mapping
.next
; j
++) {
2440 mapping_t
* m
= array_get(&(s
->mapping
), j
);
2441 if (m
->first_mapping_index
< 0 && m
!= mapping
&&
2442 !strncmp(m
->path
, mapping
->path
, parent_path_len
) &&
2443 strlen(m
->path
) == parent_path_len
)
2446 assert(j
< s
->mapping
.next
);
2447 mapping
->info
.dir
.parent_mapping_index
= j
;
2449 array_remove(&(s
->commits
), i
);
2459 * TODO: make sure that the short name is not matching *another* file
2461 static int handle_commits(BDRVVVFATState
* s
)
2465 vvfat_close_current_file(s
);
2467 for (i
= 0; !fail
&& i
< s
->commits
.next
; i
++) {
2468 commit_t
* commit
= array_get(&(s
->commits
), i
);
2469 switch(commit
->action
) {
2470 case ACTION_RENAME
: case ACTION_MKDIR
:
2474 case ACTION_WRITEOUT
: {
2476 /* these variables are only used by assert() below */
2477 direntry_t
* entry
= array_get(&(s
->directory
),
2478 commit
->param
.writeout
.dir_index
);
2479 uint32_t begin
= begin_of_direntry(entry
);
2480 mapping_t
* mapping
= find_mapping_for_cluster(s
, begin
);
2484 assert(mapping
->begin
== begin
);
2485 assert(commit
->path
== NULL
);
2487 if (commit_one_file(s
, commit
->param
.writeout
.dir_index
,
2488 commit
->param
.writeout
.modified_offset
))
2493 case ACTION_NEW_FILE
: {
2494 int begin
= commit
->param
.new_file
.first_cluster
;
2495 mapping_t
* mapping
= find_mapping_for_cluster(s
, begin
);
2500 for (i
= 0; i
< s
->directory
.next
; i
++) {
2501 entry
= array_get(&(s
->directory
), i
);
2502 if (is_file(entry
) && begin_of_direntry(entry
) == begin
)
2506 if (i
>= s
->directory
.next
) {
2511 /* make sure there exists an initial mapping */
2512 if (mapping
&& mapping
->begin
!= begin
) {
2513 mapping
->end
= begin
;
2516 if (mapping
== NULL
) {
2517 mapping
= insert_mapping(s
, begin
, begin
+1);
2519 /* most members will be fixed in commit_mappings() */
2520 assert(commit
->path
);
2521 mapping
->path
= commit
->path
;
2522 mapping
->read_only
= 0;
2523 mapping
->mode
= MODE_NORMAL
;
2524 mapping
->info
.file
.offset
= 0;
2526 if (commit_one_file(s
, i
, 0))
2535 if (i
> 0 && array_remove_slice(&(s
->commits
), 0, i
))
2540 static int handle_deletes(BDRVVVFATState
* s
)
2542 int i
, deferred
= 1, deleted
= 1;
2544 /* delete files corresponding to mappings marked as deleted */
2545 /* handle DELETEs and unused mappings (modified_fat_get(s, mapping->begin) == 0) */
2546 while (deferred
&& deleted
) {
2550 for (i
= 1; i
< s
->mapping
.next
; i
++) {
2551 mapping_t
* mapping
= array_get(&(s
->mapping
), i
);
2552 if (mapping
->mode
& MODE_DELETED
) {
2553 direntry_t
* entry
= array_get(&(s
->directory
),
2554 mapping
->dir_index
);
2556 if (is_free(entry
)) {
2557 /* remove file/directory */
2558 if (mapping
->mode
& MODE_DIRECTORY
) {
2559 int j
, next_dir_index
= s
->directory
.next
,
2560 first_dir_index
= mapping
->info
.dir
.first_dir_index
;
2562 if (rmdir(mapping
->path
) < 0) {
2563 if (errno
== ENOTEMPTY
) {
2570 for (j
= 1; j
< s
->mapping
.next
; j
++) {
2571 mapping_t
* m
= array_get(&(s
->mapping
), j
);
2572 if (m
->mode
& MODE_DIRECTORY
&&
2573 m
->info
.dir
.first_dir_index
>
2575 m
->info
.dir
.first_dir_index
<
2578 m
->info
.dir
.first_dir_index
;
2580 remove_direntries(s
, first_dir_index
,
2581 next_dir_index
- first_dir_index
);
2586 if (unlink(mapping
->path
))
2590 DLOG(fprintf(stderr
, "DELETE (%d)\n", i
); print_mapping(mapping
); print_direntry(entry
));
2591 remove_mapping(s
, i
);
2600 * synchronize mapping with new state:
2602 * - copy FAT (with bdrv_read)
2603 * - mark all filenames corresponding to mappings as deleted
2604 * - recurse direntries from root (using bs->bdrv_read)
2605 * - delete files corresponding to mappings marked as deleted
2607 static int do_commit(BDRVVVFATState
* s
)
2611 /* the real meat are the commits. Nothing to do? Move along! */
2612 if (s
->commits
.next
== 0)
2615 vvfat_close_current_file(s
);
2617 ret
= handle_renames_and_mkdirs(s
);
2619 fprintf(stderr
, "Error handling renames (%d)\n", ret
);
2624 /* copy FAT (with bdrv_read) */
2625 memcpy(s
->fat
.pointer
, s
->fat2
, 0x200 * s
->sectors_per_fat
);
2627 /* recurse direntries from root (using bs->bdrv_read) */
2628 ret
= commit_direntries(s
, 0, -1);
2630 fprintf(stderr
, "Fatal: error while committing (%d)\n", ret
);
2635 ret
= handle_commits(s
);
2637 fprintf(stderr
, "Error handling commits (%d)\n", ret
);
2642 ret
= handle_deletes(s
);
2644 fprintf(stderr
, "Error deleting\n");
2649 if (s
->qcow
->drv
->bdrv_make_empty
) {
2650 s
->qcow
->drv
->bdrv_make_empty(s
->qcow
);
2653 memset(s
->used_clusters
, 0, sector2cluster(s
, s
->sector_count
));
2659 static int try_commit(BDRVVVFATState
* s
)
2661 vvfat_close_current_file(s
);
2663 if(!is_consistent(s
))
2665 return do_commit(s
);
2668 static int vvfat_write(BlockDriverState
*bs
, int64_t sector_num
,
2669 const uint8_t *buf
, int nb_sectors
)
2671 BDRVVVFATState
*s
= bs
->opaque
;
2676 /* Check if we're operating in read-only mode */
2677 if (s
->qcow
== NULL
) {
2681 vvfat_close_current_file(s
);
2684 * Some sanity checks:
2685 * - do not allow writing to the boot sector
2686 * - do not allow to write non-ASCII filenames
2689 if (sector_num
< s
->first_sectors_number
)
2692 for (i
= sector2cluster(s
, sector_num
);
2693 i
<= sector2cluster(s
, sector_num
+ nb_sectors
- 1);) {
2694 mapping_t
* mapping
= find_mapping_for_cluster(s
, i
);
2696 if (mapping
->read_only
) {
2697 fprintf(stderr
, "Tried to write to write-protected file %s\n",
2702 if (mapping
->mode
& MODE_DIRECTORY
) {
2703 int begin
= cluster2sector(s
, i
);
2704 int end
= begin
+ s
->sectors_per_cluster
, k
;
2706 const direntry_t
* direntries
;
2711 if (begin
< sector_num
)
2713 if (end
> sector_num
+ nb_sectors
)
2714 end
= sector_num
+ nb_sectors
;
2715 dir_index
= mapping
->dir_index
+
2716 0x10 * (begin
- mapping
->begin
* s
->sectors_per_cluster
);
2717 direntries
= (direntry_t
*)(buf
+ 0x200 * (begin
- sector_num
));
2719 for (k
= 0; k
< (end
- begin
) * 0x10; k
++) {
2720 /* do not allow non-ASCII filenames */
2721 if (parse_long_name(&lfn
, direntries
+ k
) < 0) {
2722 fprintf(stderr
, "Warning: non-ASCII filename\n");
2725 /* no access to the direntry of a read-only file */
2726 else if (is_short_name(direntries
+k
) &&
2727 (direntries
[k
].attributes
& 1)) {
2728 if (memcmp(direntries
+ k
,
2729 array_get(&(s
->directory
), dir_index
+ k
),
2730 sizeof(direntry_t
))) {
2731 fprintf(stderr
, "Warning: tried to write to write-protected file\n");
2743 * Use qcow backend. Commit later.
2745 DLOG(fprintf(stderr
, "Write to qcow backend: %d + %d\n", (int)sector_num
, nb_sectors
));
2746 ret
= bdrv_write(s
->qcow
, sector_num
, buf
, nb_sectors
);
2748 fprintf(stderr
, "Error writing to qcow backend\n");
2752 for (i
= sector2cluster(s
, sector_num
);
2753 i
<= sector2cluster(s
, sector_num
+ nb_sectors
- 1); i
++)
2755 s
->used_clusters
[i
] |= USED_ALLOCATED
;
2758 /* TODO: add timeout */
2765 static coroutine_fn
int vvfat_co_write(BlockDriverState
*bs
, int64_t sector_num
,
2766 const uint8_t *buf
, int nb_sectors
)
2769 BDRVVVFATState
*s
= bs
->opaque
;
2770 qemu_co_mutex_lock(&s
->lock
);
2771 ret
= vvfat_write(bs
, sector_num
, buf
, nb_sectors
);
2772 qemu_co_mutex_unlock(&s
->lock
);
2776 static int coroutine_fn
vvfat_co_is_allocated(BlockDriverState
*bs
,
2777 int64_t sector_num
, int nb_sectors
, int* n
)
2779 BDRVVVFATState
* s
= bs
->opaque
;
2780 *n
= s
->sector_count
- sector_num
;
2781 if (*n
> nb_sectors
)
2788 static int write_target_commit(BlockDriverState
*bs
, int64_t sector_num
,
2789 const uint8_t* buffer
, int nb_sectors
) {
2790 BDRVVVFATState
* s
= *((BDRVVVFATState
**) bs
->opaque
);
2791 return try_commit(s
);
2794 static void write_target_close(BlockDriverState
*bs
) {
2795 BDRVVVFATState
* s
= *((BDRVVVFATState
**) bs
->opaque
);
2796 bdrv_delete(s
->qcow
);
2797 g_free(s
->qcow_filename
);
2800 static BlockDriver vvfat_write_target
= {
2801 .format_name
= "vvfat_write_target",
2802 .bdrv_write
= write_target_commit
,
2803 .bdrv_close
= write_target_close
,
2806 static int enable_write_target(BDRVVVFATState
*s
)
2808 BlockDriver
*bdrv_qcow
;
2809 QEMUOptionParameter
*options
;
2811 int size
= sector2cluster(s
, s
->sector_count
);
2812 s
->used_clusters
= calloc(size
, 1);
2814 array_init(&(s
->commits
), sizeof(commit_t
));
2816 s
->qcow_filename
= g_malloc(1024);
2817 ret
= get_tmp_filename(s
->qcow_filename
, 1024);
2819 g_free(s
->qcow_filename
);
2820 s
->qcow_filename
= NULL
;
2824 bdrv_qcow
= bdrv_find_format("qcow");
2825 options
= parse_option_parameters("", bdrv_qcow
->create_options
, NULL
);
2826 set_option_parameter_int(options
, BLOCK_OPT_SIZE
, s
->sector_count
* 512);
2827 set_option_parameter(options
, BLOCK_OPT_BACKING_FILE
, "fat:");
2829 if (bdrv_create(bdrv_qcow
, s
->qcow_filename
, options
) < 0)
2832 s
->qcow
= bdrv_new("");
2833 if (s
->qcow
== NULL
) {
2837 ret
= bdrv_open(s
->qcow
, s
->qcow_filename
,
2838 BDRV_O_RDWR
| BDRV_O_CACHE_WB
| BDRV_O_NO_FLUSH
, bdrv_qcow
);
2844 unlink(s
->qcow_filename
);
2847 s
->bs
->backing_hd
= calloc(sizeof(BlockDriverState
), 1);
2848 s
->bs
->backing_hd
->drv
= &vvfat_write_target
;
2849 s
->bs
->backing_hd
->opaque
= g_malloc(sizeof(void*));
2850 *(void**)s
->bs
->backing_hd
->opaque
= s
;
2855 static void vvfat_close(BlockDriverState
*bs
)
2857 BDRVVVFATState
*s
= bs
->opaque
;
2859 vvfat_close_current_file(s
);
2860 array_free(&(s
->fat
));
2861 array_free(&(s
->directory
));
2862 array_free(&(s
->mapping
));
2863 g_free(s
->cluster_buffer
);
2866 migrate_del_blocker(s
->migration_blocker
);
2867 error_free(s
->migration_blocker
);
2871 static BlockDriver bdrv_vvfat
= {
2872 .format_name
= "vvfat",
2873 .instance_size
= sizeof(BDRVVVFATState
),
2874 .bdrv_file_open
= vvfat_open
,
2875 .bdrv_rebind
= vvfat_rebind
,
2876 .bdrv_read
= vvfat_co_read
,
2877 .bdrv_write
= vvfat_co_write
,
2878 .bdrv_close
= vvfat_close
,
2879 .bdrv_co_is_allocated
= vvfat_co_is_allocated
,
2880 .protocol_name
= "fat",
2883 static void bdrv_vvfat_init(void)
2885 bdrv_register(&bdrv_vvfat
);
2888 block_init(bdrv_vvfat_init
);
2891 static void checkpoint(void) {
2892 assert(((mapping_t
*)array_get(&(vvv
->mapping
), 0))->end
== 2);
2895 assert(!vvv
->current_mapping
|| vvv
->current_fd
|| (vvv
->current_mapping
->mode
& MODE_DIRECTORY
));
2897 if (((direntry_t
*)vvv
->directory
.pointer
)[1].attributes
!= 0xf)
2898 fprintf(stderr
, "Nonono!\n");
2900 direntry_t
* direntry
;
2901 assert(vvv
->mapping
.size
>= vvv
->mapping
.item_size
* vvv
->mapping
.next
);
2902 assert(vvv
->directory
.size
>= vvv
->directory
.item_size
* vvv
->directory
.next
);
2903 if (vvv
->mapping
.next
<47)
2905 assert((mapping
= array_get(&(vvv
->mapping
), 47)));
2906 assert(mapping
->dir_index
< vvv
->directory
.next
);
2907 direntry
= array_get(&(vvv
->directory
), mapping
->dir_index
);
2908 assert(!memcmp(direntry
->name
, "USB H ", 11) || direntry
->name
[0]==0);