]> git.proxmox.com Git - mirror_qemu.git/blob - block/vvfat.c
vvfat: do not hardcode sector counts in error message
[mirror_qemu.git] / block / vvfat.c
1 /* vim:set shiftwidth=4 ts=8: */
2 /*
3 * QEMU Block driver for virtual VFAT (shadows a local directory)
4 *
5 * Copyright (c) 2004,2005 Johannes E. Schindelin
6 *
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:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
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
23 * THE SOFTWARE.
24 */
25 #include <sys/stat.h>
26 #include <dirent.h>
27 #include "qemu-common.h"
28 #include "block_int.h"
29 #include "module.h"
30
31 #ifndef S_IWGRP
32 #define S_IWGRP 0
33 #endif
34 #ifndef S_IWOTH
35 #define S_IWOTH 0
36 #endif
37
38 /* TODO: add ":bootsector=blabla.img:" */
39 /* LATER TODO: add automatic boot sector generation from
40 BOOTEASY.ASM and Ranish Partition Manager
41 Note that DOS assumes the system files to be the first files in the
42 file system (test if the boot sector still relies on that fact)! */
43 /* MAYBE TODO: write block-visofs.c */
44 /* TODO: call try_commit() only after a timeout */
45
46 /* #define DEBUG */
47
48 #ifdef DEBUG
49
50 #define DLOG(a) a
51
52 #undef stderr
53 #define stderr STDERR
54 FILE* stderr = NULL;
55
56 static void checkpoint(void);
57
58 #ifdef __MINGW32__
59 void nonono(const char* file, int line, const char* msg) {
60 fprintf(stderr, "Nonono! %s:%d %s\n", file, line, msg);
61 exit(-5);
62 }
63 #undef assert
64 #define assert(a) do {if (!(a)) nonono(__FILE__, __LINE__, #a);}while(0)
65 #endif
66
67 #else
68
69 #define DLOG(a)
70
71 #endif
72
73 /* dynamic array functions */
74 typedef struct array_t {
75 char* pointer;
76 unsigned int size,next,item_size;
77 } array_t;
78
79 static inline void array_init(array_t* array,unsigned int item_size)
80 {
81 array->pointer = NULL;
82 array->size=0;
83 array->next=0;
84 array->item_size=item_size;
85 }
86
87 static inline void array_free(array_t* array)
88 {
89 g_free(array->pointer);
90 array->size=array->next=0;
91 }
92
93 /* does not automatically grow */
94 static inline void* array_get(array_t* array,unsigned int index) {
95 assert(index < array->next);
96 return array->pointer + index * array->item_size;
97 }
98
99 static inline int array_ensure_allocated(array_t* array, int index)
100 {
101 if((index + 1) * array->item_size > array->size) {
102 int new_size = (index + 32) * array->item_size;
103 array->pointer = g_realloc(array->pointer, new_size);
104 if (!array->pointer)
105 return -1;
106 array->size = new_size;
107 array->next = index + 1;
108 }
109
110 return 0;
111 }
112
113 static inline void* array_get_next(array_t* array) {
114 unsigned int next = array->next;
115 void* result;
116
117 if (array_ensure_allocated(array, next) < 0)
118 return NULL;
119
120 array->next = next + 1;
121 result = array_get(array, next);
122
123 return result;
124 }
125
126 static inline void* array_insert(array_t* array,unsigned int index,unsigned int count) {
127 if((array->next+count)*array->item_size>array->size) {
128 int increment=count*array->item_size;
129 array->pointer=g_realloc(array->pointer,array->size+increment);
130 if(!array->pointer)
131 return NULL;
132 array->size+=increment;
133 }
134 memmove(array->pointer+(index+count)*array->item_size,
135 array->pointer+index*array->item_size,
136 (array->next-index)*array->item_size);
137 array->next+=count;
138 return array->pointer+index*array->item_size;
139 }
140
141 /* this performs a "roll", so that the element which was at index_from becomes
142 * index_to, but the order of all other elements is preserved. */
143 static inline int array_roll(array_t* array,int index_to,int index_from,int count)
144 {
145 char* buf;
146 char* from;
147 char* to;
148 int is;
149
150 if(!array ||
151 index_to<0 || index_to>=array->next ||
152 index_from<0 || index_from>=array->next)
153 return -1;
154
155 if(index_to==index_from)
156 return 0;
157
158 is=array->item_size;
159 from=array->pointer+index_from*is;
160 to=array->pointer+index_to*is;
161 buf=g_malloc(is*count);
162 memcpy(buf,from,is*count);
163
164 if(index_to<index_from)
165 memmove(to+is*count,to,from-to);
166 else
167 memmove(from,from+is*count,to-from);
168
169 memcpy(to,buf,is*count);
170
171 g_free(buf);
172
173 return 0;
174 }
175
176 static inline int array_remove_slice(array_t* array,int index, int count)
177 {
178 assert(index >=0);
179 assert(count > 0);
180 assert(index + count <= array->next);
181 if(array_roll(array,array->next-1,index,count))
182 return -1;
183 array->next -= count;
184 return 0;
185 }
186
187 static int array_remove(array_t* array,int index)
188 {
189 return array_remove_slice(array, index, 1);
190 }
191
192 /* return the index for a given member */
193 static int array_index(array_t* array, void* pointer)
194 {
195 size_t offset = (char*)pointer - array->pointer;
196 assert((offset % array->item_size) == 0);
197 assert(offset/array->item_size < array->next);
198 return offset/array->item_size;
199 }
200
201 /* These structures are used to fake a disk and the VFAT filesystem.
202 * For this reason we need to use QEMU_PACKED. */
203
204 typedef struct bootsector_t {
205 uint8_t jump[3];
206 uint8_t name[8];
207 uint16_t sector_size;
208 uint8_t sectors_per_cluster;
209 uint16_t reserved_sectors;
210 uint8_t number_of_fats;
211 uint16_t root_entries;
212 uint16_t total_sectors16;
213 uint8_t media_type;
214 uint16_t sectors_per_fat;
215 uint16_t sectors_per_track;
216 uint16_t number_of_heads;
217 uint32_t hidden_sectors;
218 uint32_t total_sectors;
219 union {
220 struct {
221 uint8_t drive_number;
222 uint8_t current_head;
223 uint8_t signature;
224 uint32_t id;
225 uint8_t volume_label[11];
226 } QEMU_PACKED fat16;
227 struct {
228 uint32_t sectors_per_fat;
229 uint16_t flags;
230 uint8_t major,minor;
231 uint32_t first_cluster_of_root_directory;
232 uint16_t info_sector;
233 uint16_t backup_boot_sector;
234 uint16_t ignored;
235 } QEMU_PACKED fat32;
236 } u;
237 uint8_t fat_type[8];
238 uint8_t ignored[0x1c0];
239 uint8_t magic[2];
240 } QEMU_PACKED bootsector_t;
241
242 typedef struct {
243 uint8_t head;
244 uint8_t sector;
245 uint8_t cylinder;
246 } mbr_chs_t;
247
248 typedef struct partition_t {
249 uint8_t attributes; /* 0x80 = bootable */
250 mbr_chs_t start_CHS;
251 uint8_t fs_type; /* 0x1 = FAT12, 0x6 = FAT16, 0xe = FAT16_LBA, 0xb = FAT32, 0xc = FAT32_LBA */
252 mbr_chs_t end_CHS;
253 uint32_t start_sector_long;
254 uint32_t length_sector_long;
255 } QEMU_PACKED partition_t;
256
257 typedef struct mbr_t {
258 uint8_t ignored[0x1b8];
259 uint32_t nt_id;
260 uint8_t ignored2[2];
261 partition_t partition[4];
262 uint8_t magic[2];
263 } QEMU_PACKED mbr_t;
264
265 typedef struct direntry_t {
266 uint8_t name[8];
267 uint8_t extension[3];
268 uint8_t attributes;
269 uint8_t reserved[2];
270 uint16_t ctime;
271 uint16_t cdate;
272 uint16_t adate;
273 uint16_t begin_hi;
274 uint16_t mtime;
275 uint16_t mdate;
276 uint16_t begin;
277 uint32_t size;
278 } QEMU_PACKED direntry_t;
279
280 /* this structure are used to transparently access the files */
281
282 typedef struct mapping_t {
283 /* begin is the first cluster, end is the last+1 */
284 uint32_t begin,end;
285 /* as s->directory is growable, no pointer may be used here */
286 unsigned int dir_index;
287 /* the clusters of a file may be in any order; this points to the first */
288 int first_mapping_index;
289 union {
290 /* offset is
291 * - the offset in the file (in clusters) for a file, or
292 * - the next cluster of the directory for a directory, and
293 * - the address of the buffer for a faked entry
294 */
295 struct {
296 uint32_t offset;
297 } file;
298 struct {
299 int parent_mapping_index;
300 int first_dir_index;
301 } dir;
302 } info;
303 /* path contains the full path, i.e. it always starts with s->path */
304 char* path;
305
306 enum { MODE_UNDEFINED = 0, MODE_NORMAL = 1, MODE_MODIFIED = 2,
307 MODE_DIRECTORY = 4, MODE_FAKED = 8,
308 MODE_DELETED = 16, MODE_RENAMED = 32 } mode;
309 int read_only;
310 } mapping_t;
311
312 #ifdef DEBUG
313 static void print_direntry(const struct direntry_t*);
314 static void print_mapping(const struct mapping_t* mapping);
315 #endif
316
317 /* here begins the real VVFAT driver */
318
319 typedef struct BDRVVVFATState {
320 CoMutex lock;
321 BlockDriverState* bs; /* pointer to parent */
322 unsigned int first_sectors_number; /* 1 for a single partition, 0x40 for a disk with partition table */
323 unsigned char first_sectors[0x40*0x200];
324
325 int fat_type; /* 16 or 32 */
326 array_t fat,directory,mapping;
327
328 unsigned int cluster_size;
329 unsigned int sectors_per_cluster;
330 unsigned int sectors_per_fat;
331 unsigned int sectors_of_root_directory;
332 uint32_t last_cluster_of_root_directory;
333 unsigned int faked_sectors; /* how many sectors are faked before file data */
334 uint32_t sector_count; /* total number of sectors of the partition */
335 uint32_t cluster_count; /* total number of clusters of this partition */
336 uint32_t max_fat_value;
337
338 int current_fd;
339 mapping_t* current_mapping;
340 unsigned char* cluster; /* points to current cluster */
341 unsigned char* cluster_buffer; /* points to a buffer to hold temp data */
342 unsigned int current_cluster;
343
344 /* write support */
345 BlockDriverState* write_target;
346 char* qcow_filename;
347 BlockDriverState* qcow;
348 void* fat2;
349 char* used_clusters;
350 array_t commits;
351 const char* path;
352 int downcase_short_names;
353 } BDRVVVFATState;
354
355 /* take the sector position spos and convert it to Cylinder/Head/Sector position
356 * if the position is outside the specified geometry, fill maximum value for CHS
357 * and return 1 to signal overflow.
358 */
359 static int sector2CHS(BlockDriverState* bs, mbr_chs_t * chs, int spos){
360 int head,sector;
361 sector = spos % (bs->secs); spos/= bs->secs;
362 head = spos % (bs->heads); spos/= bs->heads;
363 if(spos >= bs->cyls){
364 /* Overflow,
365 it happens if 32bit sector positions are used, while CHS is only 24bit.
366 Windows/Dos is said to take 1023/255/63 as nonrepresentable CHS */
367 chs->head = 0xFF;
368 chs->sector = 0xFF;
369 chs->cylinder = 0xFF;
370 return 1;
371 }
372 chs->head = (uint8_t)head;
373 chs->sector = (uint8_t)( (sector+1) | ((spos>>8)<<6) );
374 chs->cylinder = (uint8_t)spos;
375 return 0;
376 }
377
378 static void init_mbr(BDRVVVFATState* s)
379 {
380 /* TODO: if the files mbr.img and bootsect.img exist, use them */
381 mbr_t* real_mbr=(mbr_t*)s->first_sectors;
382 partition_t* partition = &(real_mbr->partition[0]);
383 int lba;
384
385 memset(s->first_sectors,0,512);
386
387 /* Win NT Disk Signature */
388 real_mbr->nt_id= cpu_to_le32(0xbe1afdfa);
389
390 partition->attributes=0x80; /* bootable */
391
392 /* LBA is used when partition is outside the CHS geometry */
393 lba = sector2CHS(s->bs, &partition->start_CHS, s->first_sectors_number-1);
394 lba|= sector2CHS(s->bs, &partition->end_CHS, s->sector_count);
395
396 /*LBA partitions are identified only by start/length_sector_long not by CHS*/
397 partition->start_sector_long =cpu_to_le32(s->first_sectors_number-1);
398 partition->length_sector_long=cpu_to_le32(s->sector_count - s->first_sectors_number+1);
399
400 /* FAT12/FAT16/FAT32 */
401 /* DOS uses different types when partition is LBA,
402 probably to prevent older versions from using CHS on them */
403 partition->fs_type= s->fat_type==12 ? 0x1:
404 s->fat_type==16 ? (lba?0xe:0x06):
405 /*fat_tyoe==32*/ (lba?0xc:0x0b);
406
407 real_mbr->magic[0]=0x55; real_mbr->magic[1]=0xaa;
408 }
409
410 /* direntry functions */
411
412 /* dest is assumed to hold 258 bytes, and pads with 0xffff up to next multiple of 26 */
413 static inline int short2long_name(char* dest,const char* src)
414 {
415 int i;
416 int len;
417 for(i=0;i<129 && src[i];i++) {
418 dest[2*i]=src[i];
419 dest[2*i+1]=0;
420 }
421 len=2*i;
422 dest[2*i]=dest[2*i+1]=0;
423 for(i=2*i+2;(i%26);i++)
424 dest[i]=0xff;
425 return len;
426 }
427
428 static inline direntry_t* create_long_filename(BDRVVVFATState* s,const char* filename)
429 {
430 char buffer[258];
431 int length=short2long_name(buffer,filename),
432 number_of_entries=(length+25)/26,i;
433 direntry_t* entry;
434
435 for(i=0;i<number_of_entries;i++) {
436 entry=array_get_next(&(s->directory));
437 entry->attributes=0xf;
438 entry->reserved[0]=0;
439 entry->begin=0;
440 entry->name[0]=(number_of_entries-i)|(i==0?0x40:0);
441 }
442 for(i=0;i<26*number_of_entries;i++) {
443 int offset=(i%26);
444 if(offset<10) offset=1+offset;
445 else if(offset<22) offset=14+offset-10;
446 else offset=28+offset-22;
447 entry=array_get(&(s->directory),s->directory.next-1-(i/26));
448 entry->name[offset]=buffer[i];
449 }
450 return array_get(&(s->directory),s->directory.next-number_of_entries);
451 }
452
453 static char is_free(const direntry_t* direntry)
454 {
455 return direntry->name[0]==0xe5 || direntry->name[0]==0x00;
456 }
457
458 static char is_volume_label(const direntry_t* direntry)
459 {
460 return direntry->attributes == 0x28;
461 }
462
463 static char is_long_name(const direntry_t* direntry)
464 {
465 return direntry->attributes == 0xf;
466 }
467
468 static char is_short_name(const direntry_t* direntry)
469 {
470 return !is_volume_label(direntry) && !is_long_name(direntry)
471 && !is_free(direntry);
472 }
473
474 static char is_directory(const direntry_t* direntry)
475 {
476 return direntry->attributes & 0x10 && direntry->name[0] != 0xe5;
477 }
478
479 static inline char is_dot(const direntry_t* direntry)
480 {
481 return is_short_name(direntry) && direntry->name[0] == '.';
482 }
483
484 static char is_file(const direntry_t* direntry)
485 {
486 return is_short_name(direntry) && !is_directory(direntry);
487 }
488
489 static inline uint32_t begin_of_direntry(const direntry_t* direntry)
490 {
491 return le16_to_cpu(direntry->begin)|(le16_to_cpu(direntry->begin_hi)<<16);
492 }
493
494 static inline uint32_t filesize_of_direntry(const direntry_t* direntry)
495 {
496 return le32_to_cpu(direntry->size);
497 }
498
499 static void set_begin_of_direntry(direntry_t* direntry, uint32_t begin)
500 {
501 direntry->begin = cpu_to_le16(begin & 0xffff);
502 direntry->begin_hi = cpu_to_le16((begin >> 16) & 0xffff);
503 }
504
505 /* fat functions */
506
507 static inline uint8_t fat_chksum(const direntry_t* entry)
508 {
509 uint8_t chksum=0;
510 int i;
511
512 for(i=0;i<11;i++) {
513 unsigned char c;
514
515 c = (i < 8) ? entry->name[i] : entry->extension[i-8];
516 chksum=(((chksum&0xfe)>>1)|((chksum&0x01)?0x80:0)) + c;
517 }
518
519 return chksum;
520 }
521
522 /* if return_time==0, this returns the fat_date, else the fat_time */
523 static uint16_t fat_datetime(time_t time,int return_time) {
524 struct tm* t;
525 #ifdef _WIN32
526 t=localtime(&time); /* this is not thread safe */
527 #else
528 struct tm t1;
529 t = &t1;
530 localtime_r(&time,t);
531 #endif
532 if(return_time)
533 return cpu_to_le16((t->tm_sec/2)|(t->tm_min<<5)|(t->tm_hour<<11));
534 return cpu_to_le16((t->tm_mday)|((t->tm_mon+1)<<5)|((t->tm_year-80)<<9));
535 }
536
537 static inline void fat_set(BDRVVVFATState* s,unsigned int cluster,uint32_t value)
538 {
539 if(s->fat_type==32) {
540 uint32_t* entry=array_get(&(s->fat),cluster);
541 *entry=cpu_to_le32(value);
542 } else if(s->fat_type==16) {
543 uint16_t* entry=array_get(&(s->fat),cluster);
544 *entry=cpu_to_le16(value&0xffff);
545 } else {
546 int offset = (cluster*3/2);
547 unsigned char* p = array_get(&(s->fat), offset);
548 switch (cluster&1) {
549 case 0:
550 p[0] = value&0xff;
551 p[1] = (p[1]&0xf0) | ((value>>8)&0xf);
552 break;
553 case 1:
554 p[0] = (p[0]&0xf) | ((value&0xf)<<4);
555 p[1] = (value>>4);
556 break;
557 }
558 }
559 }
560
561 static inline uint32_t fat_get(BDRVVVFATState* s,unsigned int cluster)
562 {
563 if(s->fat_type==32) {
564 uint32_t* entry=array_get(&(s->fat),cluster);
565 return le32_to_cpu(*entry);
566 } else if(s->fat_type==16) {
567 uint16_t* entry=array_get(&(s->fat),cluster);
568 return le16_to_cpu(*entry);
569 } else {
570 const uint8_t* x=(uint8_t*)(s->fat.pointer)+cluster*3/2;
571 return ((x[0]|(x[1]<<8))>>(cluster&1?4:0))&0x0fff;
572 }
573 }
574
575 static inline int fat_eof(BDRVVVFATState* s,uint32_t fat_entry)
576 {
577 if(fat_entry>s->max_fat_value-8)
578 return -1;
579 return 0;
580 }
581
582 static inline void init_fat(BDRVVVFATState* s)
583 {
584 if (s->fat_type == 12) {
585 array_init(&(s->fat),1);
586 array_ensure_allocated(&(s->fat),
587 s->sectors_per_fat * 0x200 * 3 / 2 - 1);
588 } else {
589 array_init(&(s->fat),(s->fat_type==32?4:2));
590 array_ensure_allocated(&(s->fat),
591 s->sectors_per_fat * 0x200 / s->fat.item_size - 1);
592 }
593 memset(s->fat.pointer,0,s->fat.size);
594
595 switch(s->fat_type) {
596 case 12: s->max_fat_value=0xfff; break;
597 case 16: s->max_fat_value=0xffff; break;
598 case 32: s->max_fat_value=0x0fffffff; break;
599 default: s->max_fat_value=0; /* error... */
600 }
601
602 }
603
604 /* TODO: in create_short_filename, 0xe5->0x05 is not yet handled! */
605 /* TODO: in parse_short_filename, 0x05->0xe5 is not yet handled! */
606 static inline direntry_t* create_short_and_long_name(BDRVVVFATState* s,
607 unsigned int directory_start, const char* filename, int is_dot)
608 {
609 int i,j,long_index=s->directory.next;
610 direntry_t* entry = NULL;
611 direntry_t* entry_long = NULL;
612
613 if(is_dot) {
614 entry=array_get_next(&(s->directory));
615 memset(entry->name,0x20,11);
616 memcpy(entry->name,filename,strlen(filename));
617 return entry;
618 }
619
620 entry_long=create_long_filename(s,filename);
621
622 i = strlen(filename);
623 for(j = i - 1; j>0 && filename[j]!='.';j--);
624 if (j > 0)
625 i = (j > 8 ? 8 : j);
626 else if (i > 8)
627 i = 8;
628
629 entry=array_get_next(&(s->directory));
630 memset(entry->name,0x20,11);
631 memcpy(entry->name, filename, i);
632
633 if(j > 0)
634 for (i = 0; i < 3 && filename[j+1+i]; i++)
635 entry->extension[i] = filename[j+1+i];
636
637 /* upcase & remove unwanted characters */
638 for(i=10;i>=0;i--) {
639 if(i==10 || i==7) for(;i>0 && entry->name[i]==' ';i--);
640 if(entry->name[i]<=' ' || entry->name[i]>0x7f
641 || strchr(".*?<>|\":/\\[];,+='",entry->name[i]))
642 entry->name[i]='_';
643 else if(entry->name[i]>='a' && entry->name[i]<='z')
644 entry->name[i]+='A'-'a';
645 }
646
647 /* mangle duplicates */
648 while(1) {
649 direntry_t* entry1=array_get(&(s->directory),directory_start);
650 int j;
651
652 for(;entry1<entry;entry1++)
653 if(!is_long_name(entry1) && !memcmp(entry1->name,entry->name,11))
654 break; /* found dupe */
655 if(entry1==entry) /* no dupe found */
656 break;
657
658 /* use all 8 characters of name */
659 if(entry->name[7]==' ') {
660 int j;
661 for(j=6;j>0 && entry->name[j]==' ';j--)
662 entry->name[j]='~';
663 }
664
665 /* increment number */
666 for(j=7;j>0 && entry->name[j]=='9';j--)
667 entry->name[j]='0';
668 if(j>0) {
669 if(entry->name[j]<'0' || entry->name[j]>'9')
670 entry->name[j]='0';
671 else
672 entry->name[j]++;
673 }
674 }
675
676 /* calculate checksum; propagate to long name */
677 if(entry_long) {
678 uint8_t chksum=fat_chksum(entry);
679
680 /* calculate anew, because realloc could have taken place */
681 entry_long=array_get(&(s->directory),long_index);
682 while(entry_long<entry && is_long_name(entry_long)) {
683 entry_long->reserved[1]=chksum;
684 entry_long++;
685 }
686 }
687
688 return entry;
689 }
690
691 /*
692 * Read a directory. (the index of the corresponding mapping must be passed).
693 */
694 static int read_directory(BDRVVVFATState* s, int mapping_index)
695 {
696 mapping_t* mapping = array_get(&(s->mapping), mapping_index);
697 direntry_t* direntry;
698 const char* dirname = mapping->path;
699 int first_cluster = mapping->begin;
700 int parent_index = mapping->info.dir.parent_mapping_index;
701 mapping_t* parent_mapping = (mapping_t*)
702 (parent_index >= 0 ? array_get(&(s->mapping), parent_index) : NULL);
703 int first_cluster_of_parent = parent_mapping ? parent_mapping->begin : -1;
704
705 DIR* dir=opendir(dirname);
706 struct dirent* entry;
707 int i;
708
709 assert(mapping->mode & MODE_DIRECTORY);
710
711 if(!dir) {
712 mapping->end = mapping->begin;
713 return -1;
714 }
715
716 i = mapping->info.dir.first_dir_index =
717 first_cluster == 0 ? 0 : s->directory.next;
718
719 /* actually read the directory, and allocate the mappings */
720 while((entry=readdir(dir))) {
721 unsigned int length=strlen(dirname)+2+strlen(entry->d_name);
722 char* buffer;
723 direntry_t* direntry;
724 struct stat st;
725 int is_dot=!strcmp(entry->d_name,".");
726 int is_dotdot=!strcmp(entry->d_name,"..");
727
728 if(first_cluster == 0 && (is_dotdot || is_dot))
729 continue;
730
731 buffer=(char*)g_malloc(length);
732 snprintf(buffer,length,"%s/%s",dirname,entry->d_name);
733
734 if(stat(buffer,&st)<0) {
735 g_free(buffer);
736 continue;
737 }
738
739 /* create directory entry for this file */
740 direntry=create_short_and_long_name(s, i, entry->d_name,
741 is_dot || is_dotdot);
742 direntry->attributes=(S_ISDIR(st.st_mode)?0x10:0x20);
743 direntry->reserved[0]=direntry->reserved[1]=0;
744 direntry->ctime=fat_datetime(st.st_ctime,1);
745 direntry->cdate=fat_datetime(st.st_ctime,0);
746 direntry->adate=fat_datetime(st.st_atime,0);
747 direntry->begin_hi=0;
748 direntry->mtime=fat_datetime(st.st_mtime,1);
749 direntry->mdate=fat_datetime(st.st_mtime,0);
750 if(is_dotdot)
751 set_begin_of_direntry(direntry, first_cluster_of_parent);
752 else if(is_dot)
753 set_begin_of_direntry(direntry, first_cluster);
754 else
755 direntry->begin=0; /* do that later */
756 if (st.st_size > 0x7fffffff) {
757 fprintf(stderr, "File %s is larger than 2GB\n", buffer);
758 g_free(buffer);
759 closedir(dir);
760 return -2;
761 }
762 direntry->size=cpu_to_le32(S_ISDIR(st.st_mode)?0:st.st_size);
763
764 /* create mapping for this file */
765 if(!is_dot && !is_dotdot && (S_ISDIR(st.st_mode) || st.st_size)) {
766 s->current_mapping=(mapping_t*)array_get_next(&(s->mapping));
767 s->current_mapping->begin=0;
768 s->current_mapping->end=st.st_size;
769 /*
770 * we get the direntry of the most recent direntry, which
771 * contains the short name and all the relevant information.
772 */
773 s->current_mapping->dir_index=s->directory.next-1;
774 s->current_mapping->first_mapping_index = -1;
775 if (S_ISDIR(st.st_mode)) {
776 s->current_mapping->mode = MODE_DIRECTORY;
777 s->current_mapping->info.dir.parent_mapping_index =
778 mapping_index;
779 } else {
780 s->current_mapping->mode = MODE_UNDEFINED;
781 s->current_mapping->info.file.offset = 0;
782 }
783 s->current_mapping->path=buffer;
784 s->current_mapping->read_only =
785 (st.st_mode & (S_IWUSR | S_IWGRP | S_IWOTH)) == 0;
786 }
787 }
788 closedir(dir);
789
790 /* fill with zeroes up to the end of the cluster */
791 while(s->directory.next%(0x10*s->sectors_per_cluster)) {
792 direntry_t* direntry=array_get_next(&(s->directory));
793 memset(direntry,0,sizeof(direntry_t));
794 }
795
796 /* TODO: if there are more entries, bootsector has to be adjusted! */
797 #define ROOT_ENTRIES (0x02 * 0x10 * s->sectors_per_cluster)
798 if (mapping_index == 0 && s->directory.next < ROOT_ENTRIES) {
799 /* root directory */
800 int cur = s->directory.next;
801 array_ensure_allocated(&(s->directory), ROOT_ENTRIES - 1);
802 s->directory.next = ROOT_ENTRIES;
803 memset(array_get(&(s->directory), cur), 0,
804 (ROOT_ENTRIES - cur) * sizeof(direntry_t));
805 }
806
807 /* reget the mapping, since s->mapping was possibly realloc()ed */
808 mapping = (mapping_t*)array_get(&(s->mapping), mapping_index);
809 first_cluster += (s->directory.next - mapping->info.dir.first_dir_index)
810 * 0x20 / s->cluster_size;
811 mapping->end = first_cluster;
812
813 direntry = (direntry_t*)array_get(&(s->directory), mapping->dir_index);
814 set_begin_of_direntry(direntry, mapping->begin);
815
816 return 0;
817 }
818
819 static inline uint32_t sector2cluster(BDRVVVFATState* s,off_t sector_num)
820 {
821 return (sector_num-s->faked_sectors)/s->sectors_per_cluster;
822 }
823
824 static inline off_t cluster2sector(BDRVVVFATState* s, uint32_t cluster_num)
825 {
826 return s->faked_sectors + s->sectors_per_cluster * cluster_num;
827 }
828
829 static int init_directories(BDRVVVFATState* s,
830 const char* dirname)
831 {
832 bootsector_t* bootsector;
833 mapping_t* mapping;
834 unsigned int i;
835 unsigned int cluster;
836
837 memset(&(s->first_sectors[0]),0,0x40*0x200);
838
839 s->cluster_size=s->sectors_per_cluster*0x200;
840 s->cluster_buffer=g_malloc(s->cluster_size);
841
842 /*
843 * The formula: sc = spf+1+spf*spc*(512*8/fat_type),
844 * where sc is sector_count,
845 * spf is sectors_per_fat,
846 * spc is sectors_per_clusters, and
847 * fat_type = 12, 16 or 32.
848 */
849 i = 1+s->sectors_per_cluster*0x200*8/s->fat_type;
850 s->sectors_per_fat=(s->sector_count+i)/i; /* round up */
851
852 array_init(&(s->mapping),sizeof(mapping_t));
853 array_init(&(s->directory),sizeof(direntry_t));
854
855 /* add volume label */
856 {
857 direntry_t* entry=array_get_next(&(s->directory));
858 entry->attributes=0x28; /* archive | volume label */
859 memcpy(entry->name,"QEMU VVF",8);
860 memcpy(entry->extension,"AT ",3);
861 }
862
863 /* Now build FAT, and write back information into directory */
864 init_fat(s);
865
866 s->faked_sectors=s->first_sectors_number+s->sectors_per_fat*2;
867 s->cluster_count=sector2cluster(s, s->sector_count);
868
869 mapping = array_get_next(&(s->mapping));
870 mapping->begin = 0;
871 mapping->dir_index = 0;
872 mapping->info.dir.parent_mapping_index = -1;
873 mapping->first_mapping_index = -1;
874 mapping->path = g_strdup(dirname);
875 i = strlen(mapping->path);
876 if (i > 0 && mapping->path[i - 1] == '/')
877 mapping->path[i - 1] = '\0';
878 mapping->mode = MODE_DIRECTORY;
879 mapping->read_only = 0;
880 s->path = mapping->path;
881
882 for (i = 0, cluster = 0; i < s->mapping.next; i++) {
883 /* MS-DOS expects the FAT to be 0 for the root directory
884 * (except for the media byte). */
885 /* LATER TODO: still true for FAT32? */
886 int fix_fat = (i != 0);
887 mapping = array_get(&(s->mapping), i);
888
889 if (mapping->mode & MODE_DIRECTORY) {
890 mapping->begin = cluster;
891 if(read_directory(s, i)) {
892 fprintf(stderr, "Could not read directory %s\n",
893 mapping->path);
894 return -1;
895 }
896 mapping = array_get(&(s->mapping), i);
897 } else {
898 assert(mapping->mode == MODE_UNDEFINED);
899 mapping->mode=MODE_NORMAL;
900 mapping->begin = cluster;
901 if (mapping->end > 0) {
902 direntry_t* direntry = array_get(&(s->directory),
903 mapping->dir_index);
904
905 mapping->end = cluster + 1 + (mapping->end-1)/s->cluster_size;
906 set_begin_of_direntry(direntry, mapping->begin);
907 } else {
908 mapping->end = cluster + 1;
909 fix_fat = 0;
910 }
911 }
912
913 assert(mapping->begin < mapping->end);
914
915 /* next free cluster */
916 cluster = mapping->end;
917
918 if(cluster > s->cluster_count) {
919 fprintf(stderr,"Directory does not fit in FAT%d (capacity %.2f MB)\n",
920 s->fat_type, s->sector_count / 2000.0);
921 return -EINVAL;
922 }
923
924 /* fix fat for entry */
925 if (fix_fat) {
926 int j;
927 for(j = mapping->begin; j < mapping->end - 1; j++)
928 fat_set(s, j, j+1);
929 fat_set(s, mapping->end - 1, s->max_fat_value);
930 }
931 }
932
933 mapping = array_get(&(s->mapping), 0);
934 s->sectors_of_root_directory = mapping->end * s->sectors_per_cluster;
935 s->last_cluster_of_root_directory = mapping->end;
936
937 /* the FAT signature */
938 fat_set(s,0,s->max_fat_value);
939 fat_set(s,1,s->max_fat_value);
940
941 s->current_mapping = NULL;
942
943 bootsector=(bootsector_t*)(s->first_sectors+(s->first_sectors_number-1)*0x200);
944 bootsector->jump[0]=0xeb;
945 bootsector->jump[1]=0x3e;
946 bootsector->jump[2]=0x90;
947 memcpy(bootsector->name,"QEMU ",8);
948 bootsector->sector_size=cpu_to_le16(0x200);
949 bootsector->sectors_per_cluster=s->sectors_per_cluster;
950 bootsector->reserved_sectors=cpu_to_le16(1);
951 bootsector->number_of_fats=0x2; /* number of FATs */
952 bootsector->root_entries=cpu_to_le16(s->sectors_of_root_directory*0x10);
953 bootsector->total_sectors16=s->sector_count>0xffff?0:cpu_to_le16(s->sector_count);
954 bootsector->media_type=(s->first_sectors_number>1?0xf8:0xf0); /* media descriptor (f8=hd, f0=3.5 fd)*/
955 s->fat.pointer[0] = bootsector->media_type;
956 bootsector->sectors_per_fat=cpu_to_le16(s->sectors_per_fat);
957 bootsector->sectors_per_track=cpu_to_le16(s->bs->secs);
958 bootsector->number_of_heads=cpu_to_le16(s->bs->heads);
959 bootsector->hidden_sectors=cpu_to_le32(s->first_sectors_number==1?0:0x3f);
960 bootsector->total_sectors=cpu_to_le32(s->sector_count>0xffff?s->sector_count:0);
961
962 /* LATER TODO: if FAT32, this is wrong */
963 bootsector->u.fat16.drive_number=s->first_sectors_number==1?0:0x80; /* fda=0, hda=0x80 */
964 bootsector->u.fat16.current_head=0;
965 bootsector->u.fat16.signature=0x29;
966 bootsector->u.fat16.id=cpu_to_le32(0xfabe1afd);
967
968 memcpy(bootsector->u.fat16.volume_label,"QEMU VVFAT ",11);
969 memcpy(bootsector->fat_type,(s->fat_type==12?"FAT12 ":s->fat_type==16?"FAT16 ":"FAT32 "),8);
970 bootsector->magic[0]=0x55; bootsector->magic[1]=0xaa;
971
972 return 0;
973 }
974
975 #ifdef DEBUG
976 static BDRVVVFATState *vvv = NULL;
977 #endif
978
979 static int enable_write_target(BDRVVVFATState *s);
980 static int is_consistent(BDRVVVFATState *s);
981
982 static int vvfat_open(BlockDriverState *bs, const char* dirname, int flags)
983 {
984 BDRVVVFATState *s = bs->opaque;
985 int floppy = 0;
986 int i;
987
988 #ifdef DEBUG
989 vvv = s;
990 #endif
991
992 DLOG(if (stderr == NULL) {
993 stderr = fopen("vvfat.log", "a");
994 setbuf(stderr, NULL);
995 })
996
997 s->bs = bs;
998
999 s->fat_type=16;
1000 /* LATER TODO: if FAT32, adjust */
1001 s->sectors_per_cluster=0x10;
1002 /* 504MB disk*/
1003 bs->cyls=1024; bs->heads=16; bs->secs=63;
1004
1005 s->current_cluster=0xffffffff;
1006
1007 s->first_sectors_number=0x40;
1008 /* read only is the default for safety */
1009 bs->read_only = 1;
1010 s->qcow = s->write_target = NULL;
1011 s->qcow_filename = NULL;
1012 s->fat2 = NULL;
1013 s->downcase_short_names = 1;
1014
1015 if (!strstart(dirname, "fat:", NULL))
1016 return -1;
1017
1018 if (strstr(dirname, ":floppy:")) {
1019 floppy = 1;
1020 s->fat_type = 12;
1021 s->first_sectors_number = 1;
1022 s->sectors_per_cluster=2;
1023 bs->cyls = 80; bs->heads = 2; bs->secs = 36;
1024 }
1025
1026 if (strstr(dirname, ":32:")) {
1027 fprintf(stderr, "Big fat greek warning: FAT32 has not been tested. You are welcome to do so!\n");
1028 s->fat_type = 32;
1029 } else if (strstr(dirname, ":16:")) {
1030 s->fat_type = 16;
1031 } else if (strstr(dirname, ":12:")) {
1032 s->fat_type = 12;
1033 bs->secs = 18;
1034 }
1035
1036 s->sector_count=bs->cyls*bs->heads*bs->secs-(s->first_sectors_number-1);
1037
1038 if (strstr(dirname, ":rw:")) {
1039 if (enable_write_target(s))
1040 return -1;
1041 bs->read_only = 0;
1042 }
1043
1044 i = strrchr(dirname, ':') - dirname;
1045 assert(i >= 3);
1046 if (dirname[i-2] == ':' && qemu_isalpha(dirname[i-1]))
1047 /* workaround for DOS drive names */
1048 dirname += i-1;
1049 else
1050 dirname += i+1;
1051
1052 bs->total_sectors=bs->cyls*bs->heads*bs->secs;
1053
1054 if(init_directories(s, dirname))
1055 return -1;
1056
1057 s->sector_count = s->faked_sectors + s->sectors_per_cluster*s->cluster_count;
1058
1059 if(s->first_sectors_number==0x40)
1060 init_mbr(s);
1061
1062 /* for some reason or other, MS-DOS does not like to know about CHS... */
1063 if (floppy)
1064 bs->heads = bs->cyls = bs->secs = 0;
1065
1066 // assert(is_consistent(s));
1067 qemu_co_mutex_init(&s->lock);
1068 return 0;
1069 }
1070
1071 static inline void vvfat_close_current_file(BDRVVVFATState *s)
1072 {
1073 if(s->current_mapping) {
1074 s->current_mapping = NULL;
1075 if (s->current_fd) {
1076 close(s->current_fd);
1077 s->current_fd = 0;
1078 }
1079 }
1080 s->current_cluster = -1;
1081 }
1082
1083 /* mappings between index1 and index2-1 are supposed to be ordered
1084 * return value is the index of the last mapping for which end>cluster_num
1085 */
1086 static inline int find_mapping_for_cluster_aux(BDRVVVFATState* s,int cluster_num,int index1,int index2)
1087 {
1088 while(1) {
1089 int index3;
1090 mapping_t* mapping;
1091 index3=(index1+index2)/2;
1092 mapping=array_get(&(s->mapping),index3);
1093 assert(mapping->begin < mapping->end);
1094 if(mapping->begin>=cluster_num) {
1095 assert(index2!=index3 || index2==0);
1096 if(index2==index3)
1097 return index1;
1098 index2=index3;
1099 } else {
1100 if(index1==index3)
1101 return mapping->end<=cluster_num ? index2 : index1;
1102 index1=index3;
1103 }
1104 assert(index1<=index2);
1105 DLOG(mapping=array_get(&(s->mapping),index1);
1106 assert(mapping->begin<=cluster_num);
1107 assert(index2 >= s->mapping.next ||
1108 ((mapping = array_get(&(s->mapping),index2)) &&
1109 mapping->end>cluster_num)));
1110 }
1111 }
1112
1113 static inline mapping_t* find_mapping_for_cluster(BDRVVVFATState* s,int cluster_num)
1114 {
1115 int index=find_mapping_for_cluster_aux(s,cluster_num,0,s->mapping.next);
1116 mapping_t* mapping;
1117 if(index>=s->mapping.next)
1118 return NULL;
1119 mapping=array_get(&(s->mapping),index);
1120 if(mapping->begin>cluster_num)
1121 return NULL;
1122 assert(mapping->begin<=cluster_num && mapping->end>cluster_num);
1123 return mapping;
1124 }
1125
1126 static int open_file(BDRVVVFATState* s,mapping_t* mapping)
1127 {
1128 if(!mapping)
1129 return -1;
1130 if(!s->current_mapping ||
1131 strcmp(s->current_mapping->path,mapping->path)) {
1132 /* open file */
1133 int fd = open(mapping->path, O_RDONLY | O_BINARY | O_LARGEFILE);
1134 if(fd<0)
1135 return -1;
1136 vvfat_close_current_file(s);
1137 s->current_fd = fd;
1138 s->current_mapping = mapping;
1139 }
1140 return 0;
1141 }
1142
1143 static inline int read_cluster(BDRVVVFATState *s,int cluster_num)
1144 {
1145 if(s->current_cluster != cluster_num) {
1146 int result=0;
1147 off_t offset;
1148 assert(!s->current_mapping || s->current_fd || (s->current_mapping->mode & MODE_DIRECTORY));
1149 if(!s->current_mapping
1150 || s->current_mapping->begin>cluster_num
1151 || s->current_mapping->end<=cluster_num) {
1152 /* binary search of mappings for file */
1153 mapping_t* mapping=find_mapping_for_cluster(s,cluster_num);
1154
1155 assert(!mapping || (cluster_num>=mapping->begin && cluster_num<mapping->end));
1156
1157 if (mapping && mapping->mode & MODE_DIRECTORY) {
1158 vvfat_close_current_file(s);
1159 s->current_mapping = mapping;
1160 read_cluster_directory:
1161 offset = s->cluster_size*(cluster_num-s->current_mapping->begin);
1162 s->cluster = (unsigned char*)s->directory.pointer+offset
1163 + 0x20*s->current_mapping->info.dir.first_dir_index;
1164 assert(((s->cluster-(unsigned char*)s->directory.pointer)%s->cluster_size)==0);
1165 assert((char*)s->cluster+s->cluster_size <= s->directory.pointer+s->directory.next*s->directory.item_size);
1166 s->current_cluster = cluster_num;
1167 return 0;
1168 }
1169
1170 if(open_file(s,mapping))
1171 return -2;
1172 } else if (s->current_mapping->mode & MODE_DIRECTORY)
1173 goto read_cluster_directory;
1174
1175 assert(s->current_fd);
1176
1177 offset=s->cluster_size*(cluster_num-s->current_mapping->begin)+s->current_mapping->info.file.offset;
1178 if(lseek(s->current_fd, offset, SEEK_SET)!=offset)
1179 return -3;
1180 s->cluster=s->cluster_buffer;
1181 result=read(s->current_fd,s->cluster,s->cluster_size);
1182 if(result<0) {
1183 s->current_cluster = -1;
1184 return -1;
1185 }
1186 s->current_cluster = cluster_num;
1187 }
1188 return 0;
1189 }
1190
1191 #ifdef DEBUG
1192 static void print_direntry(const direntry_t* direntry)
1193 {
1194 int j = 0;
1195 char buffer[1024];
1196
1197 fprintf(stderr, "direntry %p: ", direntry);
1198 if(!direntry)
1199 return;
1200 if(is_long_name(direntry)) {
1201 unsigned char* c=(unsigned char*)direntry;
1202 int i;
1203 for(i=1;i<11 && c[i] && c[i]!=0xff;i+=2)
1204 #define ADD_CHAR(c) {buffer[j] = (c); if (buffer[j] < ' ') buffer[j] = 0xb0; j++;}
1205 ADD_CHAR(c[i]);
1206 for(i=14;i<26 && c[i] && c[i]!=0xff;i+=2)
1207 ADD_CHAR(c[i]);
1208 for(i=28;i<32 && c[i] && c[i]!=0xff;i+=2)
1209 ADD_CHAR(c[i]);
1210 buffer[j] = 0;
1211 fprintf(stderr, "%s\n", buffer);
1212 } else {
1213 int i;
1214 for(i=0;i<11;i++)
1215 ADD_CHAR(direntry->name[i]);
1216 buffer[j] = 0;
1217 fprintf(stderr,"%s attributes=0x%02x begin=%d size=%d\n",
1218 buffer,
1219 direntry->attributes,
1220 begin_of_direntry(direntry),le32_to_cpu(direntry->size));
1221 }
1222 }
1223
1224 static void print_mapping(const mapping_t* mapping)
1225 {
1226 fprintf(stderr, "mapping (%p): begin, end = %d, %d, dir_index = %d, "
1227 "first_mapping_index = %d, name = %s, mode = 0x%x, " ,
1228 mapping, mapping->begin, mapping->end, mapping->dir_index,
1229 mapping->first_mapping_index, mapping->path, mapping->mode);
1230
1231 if (mapping->mode & MODE_DIRECTORY)
1232 fprintf(stderr, "parent_mapping_index = %d, first_dir_index = %d\n", mapping->info.dir.parent_mapping_index, mapping->info.dir.first_dir_index);
1233 else
1234 fprintf(stderr, "offset = %d\n", mapping->info.file.offset);
1235 }
1236 #endif
1237
1238 static int vvfat_read(BlockDriverState *bs, int64_t sector_num,
1239 uint8_t *buf, int nb_sectors)
1240 {
1241 BDRVVVFATState *s = bs->opaque;
1242 int i;
1243
1244 for(i=0;i<nb_sectors;i++,sector_num++) {
1245 if (sector_num >= bs->total_sectors)
1246 return -1;
1247 if (s->qcow) {
1248 int n;
1249 if (s->qcow->drv->bdrv_is_allocated(s->qcow,
1250 sector_num, nb_sectors-i, &n)) {
1251 DLOG(fprintf(stderr, "sectors %d+%d allocated\n", (int)sector_num, n));
1252 if (s->qcow->drv->bdrv_read(s->qcow, sector_num, buf+i*0x200, n))
1253 return -1;
1254 i += n - 1;
1255 sector_num += n - 1;
1256 continue;
1257 }
1258 DLOG(fprintf(stderr, "sector %d not allocated\n", (int)sector_num));
1259 }
1260 if(sector_num<s->faked_sectors) {
1261 if(sector_num<s->first_sectors_number)
1262 memcpy(buf+i*0x200,&(s->first_sectors[sector_num*0x200]),0x200);
1263 else if(sector_num-s->first_sectors_number<s->sectors_per_fat)
1264 memcpy(buf+i*0x200,&(s->fat.pointer[(sector_num-s->first_sectors_number)*0x200]),0x200);
1265 else if(sector_num-s->first_sectors_number-s->sectors_per_fat<s->sectors_per_fat)
1266 memcpy(buf+i*0x200,&(s->fat.pointer[(sector_num-s->first_sectors_number-s->sectors_per_fat)*0x200]),0x200);
1267 } else {
1268 uint32_t sector=sector_num-s->faked_sectors,
1269 sector_offset_in_cluster=(sector%s->sectors_per_cluster),
1270 cluster_num=sector/s->sectors_per_cluster;
1271 if(cluster_num > s->cluster_count || read_cluster(s, cluster_num) != 0) {
1272 /* LATER TODO: strict: return -1; */
1273 memset(buf+i*0x200,0,0x200);
1274 continue;
1275 }
1276 memcpy(buf+i*0x200,s->cluster+sector_offset_in_cluster*0x200,0x200);
1277 }
1278 }
1279 return 0;
1280 }
1281
1282 static coroutine_fn int vvfat_co_read(BlockDriverState *bs, int64_t sector_num,
1283 uint8_t *buf, int nb_sectors)
1284 {
1285 int ret;
1286 BDRVVVFATState *s = bs->opaque;
1287 qemu_co_mutex_lock(&s->lock);
1288 ret = vvfat_read(bs, sector_num, buf, nb_sectors);
1289 qemu_co_mutex_unlock(&s->lock);
1290 return ret;
1291 }
1292
1293 /* LATER TODO: statify all functions */
1294
1295 /*
1296 * Idea of the write support (use snapshot):
1297 *
1298 * 1. check if all data is consistent, recording renames, modifications,
1299 * new files and directories (in s->commits).
1300 *
1301 * 2. if the data is not consistent, stop committing
1302 *
1303 * 3. handle renames, and create new files and directories (do not yet
1304 * write their contents)
1305 *
1306 * 4. walk the directories, fixing the mapping and direntries, and marking
1307 * the handled mappings as not deleted
1308 *
1309 * 5. commit the contents of the files
1310 *
1311 * 6. handle deleted files and directories
1312 *
1313 */
1314
1315 typedef struct commit_t {
1316 char* path;
1317 union {
1318 struct { uint32_t cluster; } rename;
1319 struct { int dir_index; uint32_t modified_offset; } writeout;
1320 struct { uint32_t first_cluster; } new_file;
1321 struct { uint32_t cluster; } mkdir;
1322 } param;
1323 /* DELETEs and RMDIRs are handled differently: see handle_deletes() */
1324 enum {
1325 ACTION_RENAME, ACTION_WRITEOUT, ACTION_NEW_FILE, ACTION_MKDIR
1326 } action;
1327 } commit_t;
1328
1329 static void clear_commits(BDRVVVFATState* s)
1330 {
1331 int i;
1332 DLOG(fprintf(stderr, "clear_commits (%d commits)\n", s->commits.next));
1333 for (i = 0; i < s->commits.next; i++) {
1334 commit_t* commit = array_get(&(s->commits), i);
1335 assert(commit->path || commit->action == ACTION_WRITEOUT);
1336 if (commit->action != ACTION_WRITEOUT) {
1337 assert(commit->path);
1338 g_free(commit->path);
1339 } else
1340 assert(commit->path == NULL);
1341 }
1342 s->commits.next = 0;
1343 }
1344
1345 static void schedule_rename(BDRVVVFATState* s,
1346 uint32_t cluster, char* new_path)
1347 {
1348 commit_t* commit = array_get_next(&(s->commits));
1349 commit->path = new_path;
1350 commit->param.rename.cluster = cluster;
1351 commit->action = ACTION_RENAME;
1352 }
1353
1354 static void schedule_writeout(BDRVVVFATState* s,
1355 int dir_index, uint32_t modified_offset)
1356 {
1357 commit_t* commit = array_get_next(&(s->commits));
1358 commit->path = NULL;
1359 commit->param.writeout.dir_index = dir_index;
1360 commit->param.writeout.modified_offset = modified_offset;
1361 commit->action = ACTION_WRITEOUT;
1362 }
1363
1364 static void schedule_new_file(BDRVVVFATState* s,
1365 char* path, uint32_t first_cluster)
1366 {
1367 commit_t* commit = array_get_next(&(s->commits));
1368 commit->path = path;
1369 commit->param.new_file.first_cluster = first_cluster;
1370 commit->action = ACTION_NEW_FILE;
1371 }
1372
1373 static void schedule_mkdir(BDRVVVFATState* s, uint32_t cluster, char* path)
1374 {
1375 commit_t* commit = array_get_next(&(s->commits));
1376 commit->path = path;
1377 commit->param.mkdir.cluster = cluster;
1378 commit->action = ACTION_MKDIR;
1379 }
1380
1381 typedef struct {
1382 /*
1383 * Since the sequence number is at most 0x3f, and the filename
1384 * length is at most 13 times the sequence number, the maximal
1385 * filename length is 0x3f * 13 bytes.
1386 */
1387 unsigned char name[0x3f * 13 + 1];
1388 int checksum, len;
1389 int sequence_number;
1390 } long_file_name;
1391
1392 static void lfn_init(long_file_name* lfn)
1393 {
1394 lfn->sequence_number = lfn->len = 0;
1395 lfn->checksum = 0x100;
1396 }
1397
1398 /* return 0 if parsed successfully, > 0 if no long name, < 0 if error */
1399 static int parse_long_name(long_file_name* lfn,
1400 const direntry_t* direntry)
1401 {
1402 int i, j, offset;
1403 const unsigned char* pointer = (const unsigned char*)direntry;
1404
1405 if (!is_long_name(direntry))
1406 return 1;
1407
1408 if (pointer[0] & 0x40) {
1409 lfn->sequence_number = pointer[0] & 0x3f;
1410 lfn->checksum = pointer[13];
1411 lfn->name[0] = 0;
1412 lfn->name[lfn->sequence_number * 13] = 0;
1413 } else if ((pointer[0] & 0x3f) != --lfn->sequence_number)
1414 return -1;
1415 else if (pointer[13] != lfn->checksum)
1416 return -2;
1417 else if (pointer[12] || pointer[26] || pointer[27])
1418 return -3;
1419
1420 offset = 13 * (lfn->sequence_number - 1);
1421 for (i = 0, j = 1; i < 13; i++, j+=2) {
1422 if (j == 11)
1423 j = 14;
1424 else if (j == 26)
1425 j = 28;
1426
1427 if (pointer[j+1] == 0)
1428 lfn->name[offset + i] = pointer[j];
1429 else if (pointer[j+1] != 0xff || (pointer[0] & 0x40) == 0)
1430 return -4;
1431 else
1432 lfn->name[offset + i] = 0;
1433 }
1434
1435 if (pointer[0] & 0x40)
1436 lfn->len = offset + strlen((char*)lfn->name + offset);
1437
1438 return 0;
1439 }
1440
1441 /* returns 0 if successful, >0 if no short_name, and <0 on error */
1442 static int parse_short_name(BDRVVVFATState* s,
1443 long_file_name* lfn, direntry_t* direntry)
1444 {
1445 int i, j;
1446
1447 if (!is_short_name(direntry))
1448 return 1;
1449
1450 for (j = 7; j >= 0 && direntry->name[j] == ' '; j--);
1451 for (i = 0; i <= j; i++) {
1452 if (direntry->name[i] <= ' ' || direntry->name[i] > 0x7f)
1453 return -1;
1454 else if (s->downcase_short_names)
1455 lfn->name[i] = qemu_tolower(direntry->name[i]);
1456 else
1457 lfn->name[i] = direntry->name[i];
1458 }
1459
1460 for (j = 2; j >= 0 && direntry->extension[j] == ' '; j--);
1461 if (j >= 0) {
1462 lfn->name[i++] = '.';
1463 lfn->name[i + j + 1] = '\0';
1464 for (;j >= 0; j--) {
1465 if (direntry->extension[j] <= ' ' || direntry->extension[j] > 0x7f)
1466 return -2;
1467 else if (s->downcase_short_names)
1468 lfn->name[i + j] = qemu_tolower(direntry->extension[j]);
1469 else
1470 lfn->name[i + j] = direntry->extension[j];
1471 }
1472 } else
1473 lfn->name[i + j + 1] = '\0';
1474
1475 lfn->len = strlen((char*)lfn->name);
1476
1477 return 0;
1478 }
1479
1480 static inline uint32_t modified_fat_get(BDRVVVFATState* s,
1481 unsigned int cluster)
1482 {
1483 if (cluster < s->last_cluster_of_root_directory) {
1484 if (cluster + 1 == s->last_cluster_of_root_directory)
1485 return s->max_fat_value;
1486 else
1487 return cluster + 1;
1488 }
1489
1490 if (s->fat_type==32) {
1491 uint32_t* entry=((uint32_t*)s->fat2)+cluster;
1492 return le32_to_cpu(*entry);
1493 } else if (s->fat_type==16) {
1494 uint16_t* entry=((uint16_t*)s->fat2)+cluster;
1495 return le16_to_cpu(*entry);
1496 } else {
1497 const uint8_t* x=s->fat2+cluster*3/2;
1498 return ((x[0]|(x[1]<<8))>>(cluster&1?4:0))&0x0fff;
1499 }
1500 }
1501
1502 static inline int cluster_was_modified(BDRVVVFATState* s, uint32_t cluster_num)
1503 {
1504 int was_modified = 0;
1505 int i, dummy;
1506
1507 if (s->qcow == NULL)
1508 return 0;
1509
1510 for (i = 0; !was_modified && i < s->sectors_per_cluster; i++)
1511 was_modified = s->qcow->drv->bdrv_is_allocated(s->qcow,
1512 cluster2sector(s, cluster_num) + i, 1, &dummy);
1513
1514 return was_modified;
1515 }
1516
1517 static const char* get_basename(const char* path)
1518 {
1519 char* basename = strrchr(path, '/');
1520 if (basename == NULL)
1521 return path;
1522 else
1523 return basename + 1; /* strip '/' */
1524 }
1525
1526 /*
1527 * The array s->used_clusters holds the states of the clusters. If it is
1528 * part of a file, it has bit 2 set, in case of a directory, bit 1. If it
1529 * was modified, bit 3 is set.
1530 * If any cluster is allocated, but not part of a file or directory, this
1531 * driver refuses to commit.
1532 */
1533 typedef enum {
1534 USED_DIRECTORY = 1, USED_FILE = 2, USED_ANY = 3, USED_ALLOCATED = 4
1535 } used_t;
1536
1537 /*
1538 * get_cluster_count_for_direntry() not only determines how many clusters
1539 * are occupied by direntry, but also if it was renamed or modified.
1540 *
1541 * A file is thought to be renamed *only* if there already was a file with
1542 * exactly the same first cluster, but a different name.
1543 *
1544 * Further, the files/directories handled by this function are
1545 * assumed to be *not* deleted (and *only* those).
1546 */
1547 static uint32_t get_cluster_count_for_direntry(BDRVVVFATState* s,
1548 direntry_t* direntry, const char* path)
1549 {
1550 /*
1551 * This is a little bit tricky:
1552 * IF the guest OS just inserts a cluster into the file chain,
1553 * and leaves the rest alone, (i.e. the original file had clusters
1554 * 15 -> 16, but now has 15 -> 32 -> 16), then the following happens:
1555 *
1556 * - do_commit will write the cluster into the file at the given
1557 * offset, but
1558 *
1559 * - the cluster which is overwritten should be moved to a later
1560 * position in the file.
1561 *
1562 * I am not aware that any OS does something as braindead, but this
1563 * situation could happen anyway when not committing for a long time.
1564 * Just to be sure that this does not bite us, detect it, and copy the
1565 * contents of the clusters to-be-overwritten into the qcow.
1566 */
1567 int copy_it = 0;
1568 int was_modified = 0;
1569 int32_t ret = 0;
1570
1571 uint32_t cluster_num = begin_of_direntry(direntry);
1572 uint32_t offset = 0;
1573 int first_mapping_index = -1;
1574 mapping_t* mapping = NULL;
1575 const char* basename2 = NULL;
1576
1577 vvfat_close_current_file(s);
1578
1579 /* the root directory */
1580 if (cluster_num == 0)
1581 return 0;
1582
1583 /* write support */
1584 if (s->qcow) {
1585 basename2 = get_basename(path);
1586
1587 mapping = find_mapping_for_cluster(s, cluster_num);
1588
1589 if (mapping) {
1590 const char* basename;
1591
1592 assert(mapping->mode & MODE_DELETED);
1593 mapping->mode &= ~MODE_DELETED;
1594
1595 basename = get_basename(mapping->path);
1596
1597 assert(mapping->mode & MODE_NORMAL);
1598
1599 /* rename */
1600 if (strcmp(basename, basename2))
1601 schedule_rename(s, cluster_num, g_strdup(path));
1602 } else if (is_file(direntry))
1603 /* new file */
1604 schedule_new_file(s, g_strdup(path), cluster_num);
1605 else {
1606 abort();
1607 return 0;
1608 }
1609 }
1610
1611 while(1) {
1612 if (s->qcow) {
1613 if (!copy_it && cluster_was_modified(s, cluster_num)) {
1614 if (mapping == NULL ||
1615 mapping->begin > cluster_num ||
1616 mapping->end <= cluster_num)
1617 mapping = find_mapping_for_cluster(s, cluster_num);
1618
1619
1620 if (mapping &&
1621 (mapping->mode & MODE_DIRECTORY) == 0) {
1622
1623 /* was modified in qcow */
1624 if (offset != mapping->info.file.offset + s->cluster_size
1625 * (cluster_num - mapping->begin)) {
1626 /* offset of this cluster in file chain has changed */
1627 abort();
1628 copy_it = 1;
1629 } else if (offset == 0) {
1630 const char* basename = get_basename(mapping->path);
1631
1632 if (strcmp(basename, basename2))
1633 copy_it = 1;
1634 first_mapping_index = array_index(&(s->mapping), mapping);
1635 }
1636
1637 if (mapping->first_mapping_index != first_mapping_index
1638 && mapping->info.file.offset > 0) {
1639 abort();
1640 copy_it = 1;
1641 }
1642
1643 /* need to write out? */
1644 if (!was_modified && is_file(direntry)) {
1645 was_modified = 1;
1646 schedule_writeout(s, mapping->dir_index, offset);
1647 }
1648 }
1649 }
1650
1651 if (copy_it) {
1652 int i, dummy;
1653 /*
1654 * This is horribly inefficient, but that is okay, since
1655 * it is rarely executed, if at all.
1656 */
1657 int64_t offset = cluster2sector(s, cluster_num);
1658
1659 vvfat_close_current_file(s);
1660 for (i = 0; i < s->sectors_per_cluster; i++)
1661 if (!s->qcow->drv->bdrv_is_allocated(s->qcow,
1662 offset + i, 1, &dummy)) {
1663 if (vvfat_read(s->bs,
1664 offset, s->cluster_buffer, 1))
1665 return -1;
1666 if (s->qcow->drv->bdrv_write(s->qcow,
1667 offset, s->cluster_buffer, 1))
1668 return -2;
1669 }
1670 }
1671 }
1672
1673 ret++;
1674 if (s->used_clusters[cluster_num] & USED_ANY)
1675 return 0;
1676 s->used_clusters[cluster_num] = USED_FILE;
1677
1678 cluster_num = modified_fat_get(s, cluster_num);
1679
1680 if (fat_eof(s, cluster_num))
1681 return ret;
1682 else if (cluster_num < 2 || cluster_num > s->max_fat_value - 16)
1683 return -1;
1684
1685 offset += s->cluster_size;
1686 }
1687 }
1688
1689 /*
1690 * This function looks at the modified data (qcow).
1691 * It returns 0 upon inconsistency or error, and the number of clusters
1692 * used by the directory, its subdirectories and their files.
1693 */
1694 static int check_directory_consistency(BDRVVVFATState *s,
1695 int cluster_num, const char* path)
1696 {
1697 int ret = 0;
1698 unsigned char* cluster = g_malloc(s->cluster_size);
1699 direntry_t* direntries = (direntry_t*)cluster;
1700 mapping_t* mapping = find_mapping_for_cluster(s, cluster_num);
1701
1702 long_file_name lfn;
1703 int path_len = strlen(path);
1704 char path2[PATH_MAX + 1];
1705
1706 assert(path_len < PATH_MAX); /* len was tested before! */
1707 pstrcpy(path2, sizeof(path2), path);
1708 path2[path_len] = '/';
1709 path2[path_len + 1] = '\0';
1710
1711 if (mapping) {
1712 const char* basename = get_basename(mapping->path);
1713 const char* basename2 = get_basename(path);
1714
1715 assert(mapping->mode & MODE_DIRECTORY);
1716
1717 assert(mapping->mode & MODE_DELETED);
1718 mapping->mode &= ~MODE_DELETED;
1719
1720 if (strcmp(basename, basename2))
1721 schedule_rename(s, cluster_num, g_strdup(path));
1722 } else
1723 /* new directory */
1724 schedule_mkdir(s, cluster_num, g_strdup(path));
1725
1726 lfn_init(&lfn);
1727 do {
1728 int i;
1729 int subret = 0;
1730
1731 ret++;
1732
1733 if (s->used_clusters[cluster_num] & USED_ANY) {
1734 fprintf(stderr, "cluster %d used more than once\n", (int)cluster_num);
1735 return 0;
1736 }
1737 s->used_clusters[cluster_num] = USED_DIRECTORY;
1738
1739 DLOG(fprintf(stderr, "read cluster %d (sector %d)\n", (int)cluster_num, (int)cluster2sector(s, cluster_num)));
1740 subret = vvfat_read(s->bs, cluster2sector(s, cluster_num), cluster,
1741 s->sectors_per_cluster);
1742 if (subret) {
1743 fprintf(stderr, "Error fetching direntries\n");
1744 fail:
1745 g_free(cluster);
1746 return 0;
1747 }
1748
1749 for (i = 0; i < 0x10 * s->sectors_per_cluster; i++) {
1750 int cluster_count = 0;
1751
1752 DLOG(fprintf(stderr, "check direntry %d:\n", i); print_direntry(direntries + i));
1753 if (is_volume_label(direntries + i) || is_dot(direntries + i) ||
1754 is_free(direntries + i))
1755 continue;
1756
1757 subret = parse_long_name(&lfn, direntries + i);
1758 if (subret < 0) {
1759 fprintf(stderr, "Error in long name\n");
1760 goto fail;
1761 }
1762 if (subret == 0 || is_free(direntries + i))
1763 continue;
1764
1765 if (fat_chksum(direntries+i) != lfn.checksum) {
1766 subret = parse_short_name(s, &lfn, direntries + i);
1767 if (subret < 0) {
1768 fprintf(stderr, "Error in short name (%d)\n", subret);
1769 goto fail;
1770 }
1771 if (subret > 0 || !strcmp((char*)lfn.name, ".")
1772 || !strcmp((char*)lfn.name, ".."))
1773 continue;
1774 }
1775 lfn.checksum = 0x100; /* cannot use long name twice */
1776
1777 if (path_len + 1 + lfn.len >= PATH_MAX) {
1778 fprintf(stderr, "Name too long: %s/%s\n", path, lfn.name);
1779 goto fail;
1780 }
1781 pstrcpy(path2 + path_len + 1, sizeof(path2) - path_len - 1,
1782 (char*)lfn.name);
1783
1784 if (is_directory(direntries + i)) {
1785 if (begin_of_direntry(direntries + i) == 0) {
1786 DLOG(fprintf(stderr, "invalid begin for directory: %s\n", path2); print_direntry(direntries + i));
1787 goto fail;
1788 }
1789 cluster_count = check_directory_consistency(s,
1790 begin_of_direntry(direntries + i), path2);
1791 if (cluster_count == 0) {
1792 DLOG(fprintf(stderr, "problem in directory %s:\n", path2); print_direntry(direntries + i));
1793 goto fail;
1794 }
1795 } else if (is_file(direntries + i)) {
1796 /* check file size with FAT */
1797 cluster_count = get_cluster_count_for_direntry(s, direntries + i, path2);
1798 if (cluster_count !=
1799 (le32_to_cpu(direntries[i].size) + s->cluster_size
1800 - 1) / s->cluster_size) {
1801 DLOG(fprintf(stderr, "Cluster count mismatch\n"));
1802 goto fail;
1803 }
1804 } else
1805 abort(); /* cluster_count = 0; */
1806
1807 ret += cluster_count;
1808 }
1809
1810 cluster_num = modified_fat_get(s, cluster_num);
1811 } while(!fat_eof(s, cluster_num));
1812
1813 g_free(cluster);
1814 return ret;
1815 }
1816
1817 /* returns 1 on success */
1818 static int is_consistent(BDRVVVFATState* s)
1819 {
1820 int i, check;
1821 int used_clusters_count = 0;
1822
1823 DLOG(checkpoint());
1824 /*
1825 * - get modified FAT
1826 * - compare the two FATs (TODO)
1827 * - get buffer for marking used clusters
1828 * - recurse direntries from root (using bs->bdrv_read to make
1829 * sure to get the new data)
1830 * - check that the FAT agrees with the size
1831 * - count the number of clusters occupied by this directory and
1832 * its files
1833 * - check that the cumulative used cluster count agrees with the
1834 * FAT
1835 * - if all is fine, return number of used clusters
1836 */
1837 if (s->fat2 == NULL) {
1838 int size = 0x200 * s->sectors_per_fat;
1839 s->fat2 = g_malloc(size);
1840 memcpy(s->fat2, s->fat.pointer, size);
1841 }
1842 check = vvfat_read(s->bs,
1843 s->first_sectors_number, s->fat2, s->sectors_per_fat);
1844 if (check) {
1845 fprintf(stderr, "Could not copy fat\n");
1846 return 0;
1847 }
1848 assert (s->used_clusters);
1849 for (i = 0; i < sector2cluster(s, s->sector_count); i++)
1850 s->used_clusters[i] &= ~USED_ANY;
1851
1852 clear_commits(s);
1853
1854 /* mark every mapped file/directory as deleted.
1855 * (check_directory_consistency() will unmark those still present). */
1856 if (s->qcow)
1857 for (i = 0; i < s->mapping.next; i++) {
1858 mapping_t* mapping = array_get(&(s->mapping), i);
1859 if (mapping->first_mapping_index < 0)
1860 mapping->mode |= MODE_DELETED;
1861 }
1862
1863 used_clusters_count = check_directory_consistency(s, 0, s->path);
1864 if (used_clusters_count <= 0) {
1865 DLOG(fprintf(stderr, "problem in directory\n"));
1866 return 0;
1867 }
1868
1869 check = s->last_cluster_of_root_directory;
1870 for (i = check; i < sector2cluster(s, s->sector_count); i++) {
1871 if (modified_fat_get(s, i)) {
1872 if(!s->used_clusters[i]) {
1873 DLOG(fprintf(stderr, "FAT was modified (%d), but cluster is not used?\n", i));
1874 return 0;
1875 }
1876 check++;
1877 }
1878
1879 if (s->used_clusters[i] == USED_ALLOCATED) {
1880 /* allocated, but not used... */
1881 DLOG(fprintf(stderr, "unused, modified cluster: %d\n", i));
1882 return 0;
1883 }
1884 }
1885
1886 if (check != used_clusters_count)
1887 return 0;
1888
1889 return used_clusters_count;
1890 }
1891
1892 static inline void adjust_mapping_indices(BDRVVVFATState* s,
1893 int offset, int adjust)
1894 {
1895 int i;
1896
1897 for (i = 0; i < s->mapping.next; i++) {
1898 mapping_t* mapping = array_get(&(s->mapping), i);
1899
1900 #define ADJUST_MAPPING_INDEX(name) \
1901 if (mapping->name >= offset) \
1902 mapping->name += adjust
1903
1904 ADJUST_MAPPING_INDEX(first_mapping_index);
1905 if (mapping->mode & MODE_DIRECTORY)
1906 ADJUST_MAPPING_INDEX(info.dir.parent_mapping_index);
1907 }
1908 }
1909
1910 /* insert or update mapping */
1911 static mapping_t* insert_mapping(BDRVVVFATState* s,
1912 uint32_t begin, uint32_t end)
1913 {
1914 /*
1915 * - find mapping where mapping->begin >= begin,
1916 * - if mapping->begin > begin: insert
1917 * - adjust all references to mappings!
1918 * - else: adjust
1919 * - replace name
1920 */
1921 int index = find_mapping_for_cluster_aux(s, begin, 0, s->mapping.next);
1922 mapping_t* mapping = NULL;
1923 mapping_t* first_mapping = array_get(&(s->mapping), 0);
1924
1925 if (index < s->mapping.next && (mapping = array_get(&(s->mapping), index))
1926 && mapping->begin < begin) {
1927 mapping->end = begin;
1928 index++;
1929 mapping = array_get(&(s->mapping), index);
1930 }
1931 if (index >= s->mapping.next || mapping->begin > begin) {
1932 mapping = array_insert(&(s->mapping), index, 1);
1933 mapping->path = NULL;
1934 adjust_mapping_indices(s, index, +1);
1935 }
1936
1937 mapping->begin = begin;
1938 mapping->end = end;
1939
1940 DLOG(mapping_t* next_mapping;
1941 assert(index + 1 >= s->mapping.next ||
1942 ((next_mapping = array_get(&(s->mapping), index + 1)) &&
1943 next_mapping->begin >= end)));
1944
1945 if (s->current_mapping && first_mapping != (mapping_t*)s->mapping.pointer)
1946 s->current_mapping = array_get(&(s->mapping),
1947 s->current_mapping - first_mapping);
1948
1949 return mapping;
1950 }
1951
1952 static int remove_mapping(BDRVVVFATState* s, int mapping_index)
1953 {
1954 mapping_t* mapping = array_get(&(s->mapping), mapping_index);
1955 mapping_t* first_mapping = array_get(&(s->mapping), 0);
1956
1957 /* free mapping */
1958 if (mapping->first_mapping_index < 0) {
1959 g_free(mapping->path);
1960 }
1961
1962 /* remove from s->mapping */
1963 array_remove(&(s->mapping), mapping_index);
1964
1965 /* adjust all references to mappings */
1966 adjust_mapping_indices(s, mapping_index, -1);
1967
1968 if (s->current_mapping && first_mapping != (mapping_t*)s->mapping.pointer)
1969 s->current_mapping = array_get(&(s->mapping),
1970 s->current_mapping - first_mapping);
1971
1972 return 0;
1973 }
1974
1975 static void adjust_dirindices(BDRVVVFATState* s, int offset, int adjust)
1976 {
1977 int i;
1978 for (i = 0; i < s->mapping.next; i++) {
1979 mapping_t* mapping = array_get(&(s->mapping), i);
1980 if (mapping->dir_index >= offset)
1981 mapping->dir_index += adjust;
1982 if ((mapping->mode & MODE_DIRECTORY) &&
1983 mapping->info.dir.first_dir_index >= offset)
1984 mapping->info.dir.first_dir_index += adjust;
1985 }
1986 }
1987
1988 static direntry_t* insert_direntries(BDRVVVFATState* s,
1989 int dir_index, int count)
1990 {
1991 /*
1992 * make room in s->directory,
1993 * adjust_dirindices
1994 */
1995 direntry_t* result = array_insert(&(s->directory), dir_index, count);
1996 if (result == NULL)
1997 return NULL;
1998 adjust_dirindices(s, dir_index, count);
1999 return result;
2000 }
2001
2002 static int remove_direntries(BDRVVVFATState* s, int dir_index, int count)
2003 {
2004 int ret = array_remove_slice(&(s->directory), dir_index, count);
2005 if (ret)
2006 return ret;
2007 adjust_dirindices(s, dir_index, -count);
2008 return 0;
2009 }
2010
2011 /*
2012 * Adapt the mappings of the cluster chain starting at first cluster
2013 * (i.e. if a file starts at first_cluster, the chain is followed according
2014 * to the modified fat, and the corresponding entries in s->mapping are
2015 * adjusted)
2016 */
2017 static int commit_mappings(BDRVVVFATState* s,
2018 uint32_t first_cluster, int dir_index)
2019 {
2020 mapping_t* mapping = find_mapping_for_cluster(s, first_cluster);
2021 direntry_t* direntry = array_get(&(s->directory), dir_index);
2022 uint32_t cluster = first_cluster;
2023
2024 vvfat_close_current_file(s);
2025
2026 assert(mapping);
2027 assert(mapping->begin == first_cluster);
2028 mapping->first_mapping_index = -1;
2029 mapping->dir_index = dir_index;
2030 mapping->mode = (dir_index <= 0 || is_directory(direntry)) ?
2031 MODE_DIRECTORY : MODE_NORMAL;
2032
2033 while (!fat_eof(s, cluster)) {
2034 uint32_t c, c1;
2035
2036 for (c = cluster, c1 = modified_fat_get(s, c); c + 1 == c1;
2037 c = c1, c1 = modified_fat_get(s, c1));
2038
2039 c++;
2040 if (c > mapping->end) {
2041 int index = array_index(&(s->mapping), mapping);
2042 int i, max_i = s->mapping.next - index;
2043 for (i = 1; i < max_i && mapping[i].begin < c; i++);
2044 while (--i > 0)
2045 remove_mapping(s, index + 1);
2046 }
2047 assert(mapping == array_get(&(s->mapping), s->mapping.next - 1)
2048 || mapping[1].begin >= c);
2049 mapping->end = c;
2050
2051 if (!fat_eof(s, c1)) {
2052 int i = find_mapping_for_cluster_aux(s, c1, 0, s->mapping.next);
2053 mapping_t* next_mapping = i >= s->mapping.next ? NULL :
2054 array_get(&(s->mapping), i);
2055
2056 if (next_mapping == NULL || next_mapping->begin > c1) {
2057 int i1 = array_index(&(s->mapping), mapping);
2058
2059 next_mapping = insert_mapping(s, c1, c1+1);
2060
2061 if (c1 < c)
2062 i1++;
2063 mapping = array_get(&(s->mapping), i1);
2064 }
2065
2066 next_mapping->dir_index = mapping->dir_index;
2067 next_mapping->first_mapping_index =
2068 mapping->first_mapping_index < 0 ?
2069 array_index(&(s->mapping), mapping) :
2070 mapping->first_mapping_index;
2071 next_mapping->path = mapping->path;
2072 next_mapping->mode = mapping->mode;
2073 next_mapping->read_only = mapping->read_only;
2074 if (mapping->mode & MODE_DIRECTORY) {
2075 next_mapping->info.dir.parent_mapping_index =
2076 mapping->info.dir.parent_mapping_index;
2077 next_mapping->info.dir.first_dir_index =
2078 mapping->info.dir.first_dir_index +
2079 0x10 * s->sectors_per_cluster *
2080 (mapping->end - mapping->begin);
2081 } else
2082 next_mapping->info.file.offset = mapping->info.file.offset +
2083 mapping->end - mapping->begin;
2084
2085 mapping = next_mapping;
2086 }
2087
2088 cluster = c1;
2089 }
2090
2091 return 0;
2092 }
2093
2094 static int commit_direntries(BDRVVVFATState* s,
2095 int dir_index, int parent_mapping_index)
2096 {
2097 direntry_t* direntry = array_get(&(s->directory), dir_index);
2098 uint32_t first_cluster = dir_index == 0 ? 0 : begin_of_direntry(direntry);
2099 mapping_t* mapping = find_mapping_for_cluster(s, first_cluster);
2100
2101 int factor = 0x10 * s->sectors_per_cluster;
2102 int old_cluster_count, new_cluster_count;
2103 int current_dir_index = mapping->info.dir.first_dir_index;
2104 int first_dir_index = current_dir_index;
2105 int ret, i;
2106 uint32_t c;
2107
2108 DLOG(fprintf(stderr, "commit_direntries for %s, parent_mapping_index %d\n", mapping->path, parent_mapping_index));
2109
2110 assert(direntry);
2111 assert(mapping);
2112 assert(mapping->begin == first_cluster);
2113 assert(mapping->info.dir.first_dir_index < s->directory.next);
2114 assert(mapping->mode & MODE_DIRECTORY);
2115 assert(dir_index == 0 || is_directory(direntry));
2116
2117 mapping->info.dir.parent_mapping_index = parent_mapping_index;
2118
2119 if (first_cluster == 0) {
2120 old_cluster_count = new_cluster_count =
2121 s->last_cluster_of_root_directory;
2122 } else {
2123 for (old_cluster_count = 0, c = first_cluster; !fat_eof(s, c);
2124 c = fat_get(s, c))
2125 old_cluster_count++;
2126
2127 for (new_cluster_count = 0, c = first_cluster; !fat_eof(s, c);
2128 c = modified_fat_get(s, c))
2129 new_cluster_count++;
2130 }
2131
2132 if (new_cluster_count > old_cluster_count) {
2133 if (insert_direntries(s,
2134 current_dir_index + factor * old_cluster_count,
2135 factor * (new_cluster_count - old_cluster_count)) == NULL)
2136 return -1;
2137 } else if (new_cluster_count < old_cluster_count)
2138 remove_direntries(s,
2139 current_dir_index + factor * new_cluster_count,
2140 factor * (old_cluster_count - new_cluster_count));
2141
2142 for (c = first_cluster; !fat_eof(s, c); c = modified_fat_get(s, c)) {
2143 void* direntry = array_get(&(s->directory), current_dir_index);
2144 int ret = vvfat_read(s->bs, cluster2sector(s, c), direntry,
2145 s->sectors_per_cluster);
2146 if (ret)
2147 return ret;
2148 assert(!strncmp(s->directory.pointer, "QEMU", 4));
2149 current_dir_index += factor;
2150 }
2151
2152 ret = commit_mappings(s, first_cluster, dir_index);
2153 if (ret)
2154 return ret;
2155
2156 /* recurse */
2157 for (i = 0; i < factor * new_cluster_count; i++) {
2158 direntry = array_get(&(s->directory), first_dir_index + i);
2159 if (is_directory(direntry) && !is_dot(direntry)) {
2160 mapping = find_mapping_for_cluster(s, first_cluster);
2161 assert(mapping->mode & MODE_DIRECTORY);
2162 ret = commit_direntries(s, first_dir_index + i,
2163 array_index(&(s->mapping), mapping));
2164 if (ret)
2165 return ret;
2166 }
2167 }
2168
2169 return 0;
2170 }
2171
2172 /* commit one file (adjust contents, adjust mapping),
2173 return first_mapping_index */
2174 static int commit_one_file(BDRVVVFATState* s,
2175 int dir_index, uint32_t offset)
2176 {
2177 direntry_t* direntry = array_get(&(s->directory), dir_index);
2178 uint32_t c = begin_of_direntry(direntry);
2179 uint32_t first_cluster = c;
2180 mapping_t* mapping = find_mapping_for_cluster(s, c);
2181 uint32_t size = filesize_of_direntry(direntry);
2182 char* cluster = g_malloc(s->cluster_size);
2183 uint32_t i;
2184 int fd = 0;
2185
2186 assert(offset < size);
2187 assert((offset % s->cluster_size) == 0);
2188
2189 for (i = s->cluster_size; i < offset; i += s->cluster_size)
2190 c = modified_fat_get(s, c);
2191
2192 fd = open(mapping->path, O_RDWR | O_CREAT | O_BINARY, 0666);
2193 if (fd < 0) {
2194 fprintf(stderr, "Could not open %s... (%s, %d)\n", mapping->path,
2195 strerror(errno), errno);
2196 g_free(cluster);
2197 return fd;
2198 }
2199 if (offset > 0) {
2200 if (lseek(fd, offset, SEEK_SET) != offset) {
2201 g_free(cluster);
2202 return -3;
2203 }
2204 }
2205
2206 while (offset < size) {
2207 uint32_t c1;
2208 int rest_size = (size - offset > s->cluster_size ?
2209 s->cluster_size : size - offset);
2210 int ret;
2211
2212 c1 = modified_fat_get(s, c);
2213
2214 assert((size - offset == 0 && fat_eof(s, c)) ||
2215 (size > offset && c >=2 && !fat_eof(s, c)));
2216
2217 ret = vvfat_read(s->bs, cluster2sector(s, c),
2218 (uint8_t*)cluster, (rest_size + 0x1ff) / 0x200);
2219
2220 if (ret < 0) {
2221 g_free(cluster);
2222 return ret;
2223 }
2224
2225 if (write(fd, cluster, rest_size) < 0) {
2226 g_free(cluster);
2227 return -2;
2228 }
2229
2230 offset += rest_size;
2231 c = c1;
2232 }
2233
2234 if (ftruncate(fd, size)) {
2235 perror("ftruncate()");
2236 close(fd);
2237 g_free(cluster);
2238 return -4;
2239 }
2240 close(fd);
2241 g_free(cluster);
2242
2243 return commit_mappings(s, first_cluster, dir_index);
2244 }
2245
2246 #ifdef DEBUG
2247 /* test, if all mappings point to valid direntries */
2248 static void check1(BDRVVVFATState* s)
2249 {
2250 int i;
2251 for (i = 0; i < s->mapping.next; i++) {
2252 mapping_t* mapping = array_get(&(s->mapping), i);
2253 if (mapping->mode & MODE_DELETED) {
2254 fprintf(stderr, "deleted\n");
2255 continue;
2256 }
2257 assert(mapping->dir_index < s->directory.next);
2258 direntry_t* direntry = array_get(&(s->directory), mapping->dir_index);
2259 assert(mapping->begin == begin_of_direntry(direntry) || mapping->first_mapping_index >= 0);
2260 if (mapping->mode & MODE_DIRECTORY) {
2261 assert(mapping->info.dir.first_dir_index + 0x10 * s->sectors_per_cluster * (mapping->end - mapping->begin) <= s->directory.next);
2262 assert((mapping->info.dir.first_dir_index % (0x10 * s->sectors_per_cluster)) == 0);
2263 }
2264 }
2265 }
2266
2267 /* test, if all direntries have mappings */
2268 static void check2(BDRVVVFATState* s)
2269 {
2270 int i;
2271 int first_mapping = -1;
2272
2273 for (i = 0; i < s->directory.next; i++) {
2274 direntry_t* direntry = array_get(&(s->directory), i);
2275
2276 if (is_short_name(direntry) && begin_of_direntry(direntry)) {
2277 mapping_t* mapping = find_mapping_for_cluster(s, begin_of_direntry(direntry));
2278 assert(mapping);
2279 assert(mapping->dir_index == i || is_dot(direntry));
2280 assert(mapping->begin == begin_of_direntry(direntry) || is_dot(direntry));
2281 }
2282
2283 if ((i % (0x10 * s->sectors_per_cluster)) == 0) {
2284 /* cluster start */
2285 int j, count = 0;
2286
2287 for (j = 0; j < s->mapping.next; j++) {
2288 mapping_t* mapping = array_get(&(s->mapping), j);
2289 if (mapping->mode & MODE_DELETED)
2290 continue;
2291 if (mapping->mode & MODE_DIRECTORY) {
2292 if (mapping->info.dir.first_dir_index <= i && mapping->info.dir.first_dir_index + 0x10 * s->sectors_per_cluster > i) {
2293 assert(++count == 1);
2294 if (mapping->first_mapping_index == -1)
2295 first_mapping = array_index(&(s->mapping), mapping);
2296 else
2297 assert(first_mapping == mapping->first_mapping_index);
2298 if (mapping->info.dir.parent_mapping_index < 0)
2299 assert(j == 0);
2300 else {
2301 mapping_t* parent = array_get(&(s->mapping), mapping->info.dir.parent_mapping_index);
2302 assert(parent->mode & MODE_DIRECTORY);
2303 assert(parent->info.dir.first_dir_index < mapping->info.dir.first_dir_index);
2304 }
2305 }
2306 }
2307 }
2308 if (count == 0)
2309 first_mapping = -1;
2310 }
2311 }
2312 }
2313 #endif
2314
2315 static int handle_renames_and_mkdirs(BDRVVVFATState* s)
2316 {
2317 int i;
2318
2319 #ifdef DEBUG
2320 fprintf(stderr, "handle_renames\n");
2321 for (i = 0; i < s->commits.next; i++) {
2322 commit_t* commit = array_get(&(s->commits), i);
2323 fprintf(stderr, "%d, %s (%d, %d)\n", i, commit->path ? commit->path : "(null)", commit->param.rename.cluster, commit->action);
2324 }
2325 #endif
2326
2327 for (i = 0; i < s->commits.next;) {
2328 commit_t* commit = array_get(&(s->commits), i);
2329 if (commit->action == ACTION_RENAME) {
2330 mapping_t* mapping = find_mapping_for_cluster(s,
2331 commit->param.rename.cluster);
2332 char* old_path = mapping->path;
2333
2334 assert(commit->path);
2335 mapping->path = commit->path;
2336 if (rename(old_path, mapping->path))
2337 return -2;
2338
2339 if (mapping->mode & MODE_DIRECTORY) {
2340 int l1 = strlen(mapping->path);
2341 int l2 = strlen(old_path);
2342 int diff = l1 - l2;
2343 direntry_t* direntry = array_get(&(s->directory),
2344 mapping->info.dir.first_dir_index);
2345 uint32_t c = mapping->begin;
2346 int i = 0;
2347
2348 /* recurse */
2349 while (!fat_eof(s, c)) {
2350 do {
2351 direntry_t* d = direntry + i;
2352
2353 if (is_file(d) || (is_directory(d) && !is_dot(d))) {
2354 mapping_t* m = find_mapping_for_cluster(s,
2355 begin_of_direntry(d));
2356 int l = strlen(m->path);
2357 char* new_path = g_malloc(l + diff + 1);
2358
2359 assert(!strncmp(m->path, mapping->path, l2));
2360
2361 pstrcpy(new_path, l + diff + 1, mapping->path);
2362 pstrcpy(new_path + l1, l + diff + 1 - l1,
2363 m->path + l2);
2364
2365 schedule_rename(s, m->begin, new_path);
2366 }
2367 i++;
2368 } while((i % (0x10 * s->sectors_per_cluster)) != 0);
2369 c = fat_get(s, c);
2370 }
2371 }
2372
2373 g_free(old_path);
2374 array_remove(&(s->commits), i);
2375 continue;
2376 } else if (commit->action == ACTION_MKDIR) {
2377 mapping_t* mapping;
2378 int j, parent_path_len;
2379
2380 #ifdef __MINGW32__
2381 if (mkdir(commit->path))
2382 return -5;
2383 #else
2384 if (mkdir(commit->path, 0755))
2385 return -5;
2386 #endif
2387
2388 mapping = insert_mapping(s, commit->param.mkdir.cluster,
2389 commit->param.mkdir.cluster + 1);
2390 if (mapping == NULL)
2391 return -6;
2392
2393 mapping->mode = MODE_DIRECTORY;
2394 mapping->read_only = 0;
2395 mapping->path = commit->path;
2396 j = s->directory.next;
2397 assert(j);
2398 insert_direntries(s, s->directory.next,
2399 0x10 * s->sectors_per_cluster);
2400 mapping->info.dir.first_dir_index = j;
2401
2402 parent_path_len = strlen(commit->path)
2403 - strlen(get_basename(commit->path)) - 1;
2404 for (j = 0; j < s->mapping.next; j++) {
2405 mapping_t* m = array_get(&(s->mapping), j);
2406 if (m->first_mapping_index < 0 && m != mapping &&
2407 !strncmp(m->path, mapping->path, parent_path_len) &&
2408 strlen(m->path) == parent_path_len)
2409 break;
2410 }
2411 assert(j < s->mapping.next);
2412 mapping->info.dir.parent_mapping_index = j;
2413
2414 array_remove(&(s->commits), i);
2415 continue;
2416 }
2417
2418 i++;
2419 }
2420 return 0;
2421 }
2422
2423 /*
2424 * TODO: make sure that the short name is not matching *another* file
2425 */
2426 static int handle_commits(BDRVVVFATState* s)
2427 {
2428 int i, fail = 0;
2429
2430 vvfat_close_current_file(s);
2431
2432 for (i = 0; !fail && i < s->commits.next; i++) {
2433 commit_t* commit = array_get(&(s->commits), i);
2434 switch(commit->action) {
2435 case ACTION_RENAME: case ACTION_MKDIR:
2436 abort();
2437 fail = -2;
2438 break;
2439 case ACTION_WRITEOUT: {
2440 #ifndef NDEBUG
2441 /* these variables are only used by assert() below */
2442 direntry_t* entry = array_get(&(s->directory),
2443 commit->param.writeout.dir_index);
2444 uint32_t begin = begin_of_direntry(entry);
2445 mapping_t* mapping = find_mapping_for_cluster(s, begin);
2446 #endif
2447
2448 assert(mapping);
2449 assert(mapping->begin == begin);
2450 assert(commit->path == NULL);
2451
2452 if (commit_one_file(s, commit->param.writeout.dir_index,
2453 commit->param.writeout.modified_offset))
2454 fail = -3;
2455
2456 break;
2457 }
2458 case ACTION_NEW_FILE: {
2459 int begin = commit->param.new_file.first_cluster;
2460 mapping_t* mapping = find_mapping_for_cluster(s, begin);
2461 direntry_t* entry;
2462 int i;
2463
2464 /* find direntry */
2465 for (i = 0; i < s->directory.next; i++) {
2466 entry = array_get(&(s->directory), i);
2467 if (is_file(entry) && begin_of_direntry(entry) == begin)
2468 break;
2469 }
2470
2471 if (i >= s->directory.next) {
2472 fail = -6;
2473 continue;
2474 }
2475
2476 /* make sure there exists an initial mapping */
2477 if (mapping && mapping->begin != begin) {
2478 mapping->end = begin;
2479 mapping = NULL;
2480 }
2481 if (mapping == NULL) {
2482 mapping = insert_mapping(s, begin, begin+1);
2483 }
2484 /* most members will be fixed in commit_mappings() */
2485 assert(commit->path);
2486 mapping->path = commit->path;
2487 mapping->read_only = 0;
2488 mapping->mode = MODE_NORMAL;
2489 mapping->info.file.offset = 0;
2490
2491 if (commit_one_file(s, i, 0))
2492 fail = -7;
2493
2494 break;
2495 }
2496 default:
2497 abort();
2498 }
2499 }
2500 if (i > 0 && array_remove_slice(&(s->commits), 0, i))
2501 return -1;
2502 return fail;
2503 }
2504
2505 static int handle_deletes(BDRVVVFATState* s)
2506 {
2507 int i, deferred = 1, deleted = 1;
2508
2509 /* delete files corresponding to mappings marked as deleted */
2510 /* handle DELETEs and unused mappings (modified_fat_get(s, mapping->begin) == 0) */
2511 while (deferred && deleted) {
2512 deferred = 0;
2513 deleted = 0;
2514
2515 for (i = 1; i < s->mapping.next; i++) {
2516 mapping_t* mapping = array_get(&(s->mapping), i);
2517 if (mapping->mode & MODE_DELETED) {
2518 direntry_t* entry = array_get(&(s->directory),
2519 mapping->dir_index);
2520
2521 if (is_free(entry)) {
2522 /* remove file/directory */
2523 if (mapping->mode & MODE_DIRECTORY) {
2524 int j, next_dir_index = s->directory.next,
2525 first_dir_index = mapping->info.dir.first_dir_index;
2526
2527 if (rmdir(mapping->path) < 0) {
2528 if (errno == ENOTEMPTY) {
2529 deferred++;
2530 continue;
2531 } else
2532 return -5;
2533 }
2534
2535 for (j = 1; j < s->mapping.next; j++) {
2536 mapping_t* m = array_get(&(s->mapping), j);
2537 if (m->mode & MODE_DIRECTORY &&
2538 m->info.dir.first_dir_index >
2539 first_dir_index &&
2540 m->info.dir.first_dir_index <
2541 next_dir_index)
2542 next_dir_index =
2543 m->info.dir.first_dir_index;
2544 }
2545 remove_direntries(s, first_dir_index,
2546 next_dir_index - first_dir_index);
2547
2548 deleted++;
2549 }
2550 } else {
2551 if (unlink(mapping->path))
2552 return -4;
2553 deleted++;
2554 }
2555 DLOG(fprintf(stderr, "DELETE (%d)\n", i); print_mapping(mapping); print_direntry(entry));
2556 remove_mapping(s, i);
2557 }
2558 }
2559 }
2560
2561 return 0;
2562 }
2563
2564 /*
2565 * synchronize mapping with new state:
2566 *
2567 * - copy FAT (with bdrv_read)
2568 * - mark all filenames corresponding to mappings as deleted
2569 * - recurse direntries from root (using bs->bdrv_read)
2570 * - delete files corresponding to mappings marked as deleted
2571 */
2572 static int do_commit(BDRVVVFATState* s)
2573 {
2574 int ret = 0;
2575
2576 /* the real meat are the commits. Nothing to do? Move along! */
2577 if (s->commits.next == 0)
2578 return 0;
2579
2580 vvfat_close_current_file(s);
2581
2582 ret = handle_renames_and_mkdirs(s);
2583 if (ret) {
2584 fprintf(stderr, "Error handling renames (%d)\n", ret);
2585 abort();
2586 return ret;
2587 }
2588
2589 /* copy FAT (with bdrv_read) */
2590 memcpy(s->fat.pointer, s->fat2, 0x200 * s->sectors_per_fat);
2591
2592 /* recurse direntries from root (using bs->bdrv_read) */
2593 ret = commit_direntries(s, 0, -1);
2594 if (ret) {
2595 fprintf(stderr, "Fatal: error while committing (%d)\n", ret);
2596 abort();
2597 return ret;
2598 }
2599
2600 ret = handle_commits(s);
2601 if (ret) {
2602 fprintf(stderr, "Error handling commits (%d)\n", ret);
2603 abort();
2604 return ret;
2605 }
2606
2607 ret = handle_deletes(s);
2608 if (ret) {
2609 fprintf(stderr, "Error deleting\n");
2610 abort();
2611 return ret;
2612 }
2613
2614 s->qcow->drv->bdrv_make_empty(s->qcow);
2615
2616 memset(s->used_clusters, 0, sector2cluster(s, s->sector_count));
2617
2618 DLOG(checkpoint());
2619 return 0;
2620 }
2621
2622 static int try_commit(BDRVVVFATState* s)
2623 {
2624 vvfat_close_current_file(s);
2625 DLOG(checkpoint());
2626 if(!is_consistent(s))
2627 return -1;
2628 return do_commit(s);
2629 }
2630
2631 static int vvfat_write(BlockDriverState *bs, int64_t sector_num,
2632 const uint8_t *buf, int nb_sectors)
2633 {
2634 BDRVVVFATState *s = bs->opaque;
2635 int i, ret;
2636
2637 DLOG(checkpoint());
2638
2639 /* Check if we're operating in read-only mode */
2640 if (s->qcow == NULL) {
2641 return -EACCES;
2642 }
2643
2644 vvfat_close_current_file(s);
2645
2646 /*
2647 * Some sanity checks:
2648 * - do not allow writing to the boot sector
2649 * - do not allow to write non-ASCII filenames
2650 */
2651
2652 if (sector_num < s->first_sectors_number)
2653 return -1;
2654
2655 for (i = sector2cluster(s, sector_num);
2656 i <= sector2cluster(s, sector_num + nb_sectors - 1);) {
2657 mapping_t* mapping = find_mapping_for_cluster(s, i);
2658 if (mapping) {
2659 if (mapping->read_only) {
2660 fprintf(stderr, "Tried to write to write-protected file %s\n",
2661 mapping->path);
2662 return -1;
2663 }
2664
2665 if (mapping->mode & MODE_DIRECTORY) {
2666 int begin = cluster2sector(s, i);
2667 int end = begin + s->sectors_per_cluster, k;
2668 int dir_index;
2669 const direntry_t* direntries;
2670 long_file_name lfn;
2671
2672 lfn_init(&lfn);
2673
2674 if (begin < sector_num)
2675 begin = sector_num;
2676 if (end > sector_num + nb_sectors)
2677 end = sector_num + nb_sectors;
2678 dir_index = mapping->dir_index +
2679 0x10 * (begin - mapping->begin * s->sectors_per_cluster);
2680 direntries = (direntry_t*)(buf + 0x200 * (begin - sector_num));
2681
2682 for (k = 0; k < (end - begin) * 0x10; k++) {
2683 /* do not allow non-ASCII filenames */
2684 if (parse_long_name(&lfn, direntries + k) < 0) {
2685 fprintf(stderr, "Warning: non-ASCII filename\n");
2686 return -1;
2687 }
2688 /* no access to the direntry of a read-only file */
2689 else if (is_short_name(direntries+k) &&
2690 (direntries[k].attributes & 1)) {
2691 if (memcmp(direntries + k,
2692 array_get(&(s->directory), dir_index + k),
2693 sizeof(direntry_t))) {
2694 fprintf(stderr, "Warning: tried to write to write-protected file\n");
2695 return -1;
2696 }
2697 }
2698 }
2699 }
2700 i = mapping->end;
2701 } else
2702 i++;
2703 }
2704
2705 /*
2706 * Use qcow backend. Commit later.
2707 */
2708 DLOG(fprintf(stderr, "Write to qcow backend: %d + %d\n", (int)sector_num, nb_sectors));
2709 ret = s->qcow->drv->bdrv_write(s->qcow, sector_num, buf, nb_sectors);
2710 if (ret < 0) {
2711 fprintf(stderr, "Error writing to qcow backend\n");
2712 return ret;
2713 }
2714
2715 for (i = sector2cluster(s, sector_num);
2716 i <= sector2cluster(s, sector_num + nb_sectors - 1); i++)
2717 if (i >= 0)
2718 s->used_clusters[i] |= USED_ALLOCATED;
2719
2720 DLOG(checkpoint());
2721 /* TODO: add timeout */
2722 try_commit(s);
2723
2724 DLOG(checkpoint());
2725 return 0;
2726 }
2727
2728 static coroutine_fn int vvfat_co_write(BlockDriverState *bs, int64_t sector_num,
2729 const uint8_t *buf, int nb_sectors)
2730 {
2731 int ret;
2732 BDRVVVFATState *s = bs->opaque;
2733 qemu_co_mutex_lock(&s->lock);
2734 ret = vvfat_write(bs, sector_num, buf, nb_sectors);
2735 qemu_co_mutex_unlock(&s->lock);
2736 return ret;
2737 }
2738
2739 static int vvfat_is_allocated(BlockDriverState *bs,
2740 int64_t sector_num, int nb_sectors, int* n)
2741 {
2742 BDRVVVFATState* s = bs->opaque;
2743 *n = s->sector_count - sector_num;
2744 if (*n > nb_sectors)
2745 *n = nb_sectors;
2746 else if (*n < 0)
2747 return 0;
2748 return 1;
2749 }
2750
2751 static int write_target_commit(BlockDriverState *bs, int64_t sector_num,
2752 const uint8_t* buffer, int nb_sectors) {
2753 BDRVVVFATState* s = *((BDRVVVFATState**) bs->opaque);
2754 return try_commit(s);
2755 }
2756
2757 static void write_target_close(BlockDriverState *bs) {
2758 BDRVVVFATState* s = *((BDRVVVFATState**) bs->opaque);
2759 bdrv_delete(s->qcow);
2760 g_free(s->qcow_filename);
2761 }
2762
2763 static BlockDriver vvfat_write_target = {
2764 .format_name = "vvfat_write_target",
2765 .bdrv_write = write_target_commit,
2766 .bdrv_close = write_target_close,
2767 };
2768
2769 static int enable_write_target(BDRVVVFATState *s)
2770 {
2771 BlockDriver *bdrv_qcow;
2772 QEMUOptionParameter *options;
2773 int ret;
2774 int size = sector2cluster(s, s->sector_count);
2775 s->used_clusters = calloc(size, 1);
2776
2777 array_init(&(s->commits), sizeof(commit_t));
2778
2779 s->qcow_filename = g_malloc(1024);
2780 get_tmp_filename(s->qcow_filename, 1024);
2781
2782 bdrv_qcow = bdrv_find_format("qcow");
2783 options = parse_option_parameters("", bdrv_qcow->create_options, NULL);
2784 set_option_parameter_int(options, BLOCK_OPT_SIZE, s->sector_count * 512);
2785 set_option_parameter(options, BLOCK_OPT_BACKING_FILE, "fat:");
2786
2787 if (bdrv_create(bdrv_qcow, s->qcow_filename, options) < 0)
2788 return -1;
2789
2790 s->qcow = bdrv_new("");
2791 if (s->qcow == NULL) {
2792 return -1;
2793 }
2794
2795 ret = bdrv_open(s->qcow, s->qcow_filename,
2796 BDRV_O_RDWR | BDRV_O_CACHE_WB | BDRV_O_NO_FLUSH, bdrv_qcow);
2797 if (ret < 0) {
2798 return ret;
2799 }
2800
2801 #ifndef _WIN32
2802 unlink(s->qcow_filename);
2803 #endif
2804
2805 s->bs->backing_hd = calloc(sizeof(BlockDriverState), 1);
2806 s->bs->backing_hd->drv = &vvfat_write_target;
2807 s->bs->backing_hd->opaque = g_malloc(sizeof(void*));
2808 *(void**)s->bs->backing_hd->opaque = s;
2809
2810 return 0;
2811 }
2812
2813 static void vvfat_close(BlockDriverState *bs)
2814 {
2815 BDRVVVFATState *s = bs->opaque;
2816
2817 vvfat_close_current_file(s);
2818 array_free(&(s->fat));
2819 array_free(&(s->directory));
2820 array_free(&(s->mapping));
2821 g_free(s->cluster_buffer);
2822 }
2823
2824 static BlockDriver bdrv_vvfat = {
2825 .format_name = "vvfat",
2826 .instance_size = sizeof(BDRVVVFATState),
2827 .bdrv_file_open = vvfat_open,
2828 .bdrv_read = vvfat_co_read,
2829 .bdrv_write = vvfat_co_write,
2830 .bdrv_close = vvfat_close,
2831 .bdrv_is_allocated = vvfat_is_allocated,
2832 .protocol_name = "fat",
2833 };
2834
2835 static void bdrv_vvfat_init(void)
2836 {
2837 bdrv_register(&bdrv_vvfat);
2838 }
2839
2840 block_init(bdrv_vvfat_init);
2841
2842 #ifdef DEBUG
2843 static void checkpoint(void) {
2844 assert(((mapping_t*)array_get(&(vvv->mapping), 0))->end == 2);
2845 check1(vvv);
2846 check2(vvv);
2847 assert(!vvv->current_mapping || vvv->current_fd || (vvv->current_mapping->mode & MODE_DIRECTORY));
2848 #if 0
2849 if (((direntry_t*)vvv->directory.pointer)[1].attributes != 0xf)
2850 fprintf(stderr, "Nonono!\n");
2851 mapping_t* mapping;
2852 direntry_t* direntry;
2853 assert(vvv->mapping.size >= vvv->mapping.item_size * vvv->mapping.next);
2854 assert(vvv->directory.size >= vvv->directory.item_size * vvv->directory.next);
2855 if (vvv->mapping.next<47)
2856 return;
2857 assert((mapping = array_get(&(vvv->mapping), 47)));
2858 assert(mapping->dir_index < vvv->directory.next);
2859 direntry = array_get(&(vvv->directory), mapping->dir_index);
2860 assert(!memcmp(direntry->name, "USB H ", 11) || direntry->name[0]==0);
2861 #endif
2862 }
2863 #endif