mkfs_vfat.c 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * mkfs_vfat: utility to create FAT32 filesystem
  4. * inspired by dosfstools
  5. *
  6. * Busybox'ed (2009) by Vladimir Dronnikov <dronnikov@gmail.com>
  7. *
  8. * Licensed under GPLv2, see file LICENSE in this tarball for details.
  9. */
  10. #include "libbb.h"
  11. #include <linux/hdreg.h> /* HDIO_GETGEO */
  12. #include <linux/fd.h> /* FDGETPRM */
  13. #include <sys/mount.h> /* BLKSSZGET */
  14. #if !defined(BLKSSZGET)
  15. # define BLKSSZGET _IO(0x12, 104)
  16. #endif
  17. //#include <linux/msdos_fs.h>
  18. #define SECTOR_SIZE 512
  19. #define SECTORS_PER_BLOCK (BLOCK_SIZE / SECTOR_SIZE)
  20. // M$ says the high 4 bits of a FAT32 FAT entry are reserved
  21. #define EOF_FAT32 0x0FFFFFF8
  22. #define BAD_FAT32 0x0FFFFFF7
  23. #define MAX_CLUST_32 0x0FFFFFF0
  24. #define ATTR_VOLUME 8
  25. #define NUM_FATS 2
  26. /* FAT32 filesystem looks like this:
  27. * sector -nn...-1: "hidden" sectors, all sectors before this partition
  28. * (-h hidden-sectors sets it. Useful only for boot loaders,
  29. * they need to know _disk_ offset in order to be able to correctly
  30. * address sectors relative to start of disk)
  31. * sector 0: boot sector
  32. * sector 1: info sector
  33. * sector 2: set aside for boot code which didn't fit into sector 0
  34. * ...(zero-filled sectors)...
  35. * sector B: backup copy of sector 0 [B set by -b backup-boot-sector]
  36. * sector B+1: backup copy of sector 1
  37. * sector B+2: backup copy of sector 2
  38. * ...(zero-filled sectors)...
  39. * sector R: FAT#1 [R set by -R reserved-sectors]
  40. * ...(FAT#1)...
  41. * sector R+fat_size: FAT#2
  42. * ...(FAT#2)...
  43. * sector R+fat_size*2: cluster #2
  44. * ...(cluster #2)...
  45. * sector R+fat_size*2+clust_size: cluster #3
  46. * ...(the rest is filled by clusters till the end)...
  47. */
  48. enum {
  49. // Perhaps this should remain constant
  50. info_sector_number = 1,
  51. // TODO: make these cmdline options
  52. // dont forget sanity check: backup_boot_sector + 3 <= reserved_sect
  53. backup_boot_sector = 3,
  54. reserved_sect = 6,
  55. };
  56. // how many blocks we try to read while testing
  57. #define TEST_BUFFER_BLOCKS 16
  58. struct msdos_dir_entry {
  59. char name[11]; /* 000 name and extension */
  60. uint8_t attr; /* 00b attribute bits */
  61. uint8_t lcase; /* 00c case for base and extension */
  62. uint8_t ctime_cs; /* 00d creation time, centiseconds (0-199) */
  63. uint16_t ctime; /* 00e creation time */
  64. uint16_t cdate; /* 010 creation date */
  65. uint16_t adate; /* 012 last access date */
  66. uint16_t starthi; /* 014 high 16 bits of cluster in FAT32 */
  67. uint16_t time; /* 016 time */
  68. uint16_t date; /* 018 date */
  69. uint16_t start; /* 01a first cluster */
  70. uint32_t size; /* 01c file size in bytes */
  71. } PACKED;
  72. /* Example of boot sector's beginning:
  73. 0000 eb 58 90 4d 53 57 49 4e 34 2e 31 00 02 08 26 00 |...MSWIN4.1...&.|
  74. 0010 02 00 00 00 00 f8 00 00 3f 00 ff 00 3f 00 00 00 |........?...?...|
  75. 0020 54 9b d0 00 0d 34 00 00 00 00 00 00 02 00 00 00 |T....4..........|
  76. 0030 01 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  77. 0040 80 00 29 71 df 51 e0 4e 4f 20 4e 41 4d 45 20 20 |..)q.Q.NO NAME |
  78. 0050 20 20 46 41 54 33 32 20 20 20 33 c9 8e d1 bc f4 | FAT32 3.....|
  79. */
  80. struct msdos_volume_info { /* (offsets are relative to start of boot sector) */
  81. uint8_t drive_number; /* 040 BIOS drive number */
  82. uint8_t reserved; /* 041 unused */
  83. uint8_t ext_boot_sign; /* 042 0x29 if fields below exist (DOS 3.3+) */
  84. uint32_t volume_id32; /* 043 volume ID number */
  85. char volume_label[11];/* 047 volume label */
  86. char fs_type[8]; /* 052 typically "FATnn" */
  87. } PACKED; /* 05a end. Total size 26 (0x1a) bytes */
  88. struct msdos_boot_sector {
  89. char boot_jump[3]; /* 000 short or near jump instruction */
  90. char system_id[8]; /* 003 name - can be used to special case partition manager volumes */
  91. uint16_t bytes_per_sect; /* 00b bytes per logical sector */
  92. uint8_t sect_per_clust; /* 00d sectors/cluster */
  93. uint16_t reserved_sect; /* 00e reserved sectors (sector offset of 1st FAT relative to volume start) */
  94. uint8_t fats; /* 010 number of FATs */
  95. uint16_t dir_entries; /* 011 root directory entries */
  96. uint16_t volume_size_sect; /* 013 volume size in sectors */
  97. uint8_t media_byte; /* 015 media code */
  98. uint16_t sect_per_fat; /* 016 sectors/FAT */
  99. uint16_t sect_per_track; /* 018 sectors per track */
  100. uint16_t heads; /* 01a number of heads */
  101. uint32_t hidden; /* 01c hidden sectors (sector offset of volume within physical disk) */
  102. uint32_t fat32_volume_size_sect; /* 020 volume size in sectors (if volume_size_sect == 0) */
  103. uint32_t fat32_sect_per_fat; /* 024 sectors/FAT */
  104. uint16_t fat32_flags; /* 028 bit 8: fat mirroring, low 4: active fat */
  105. uint8_t fat32_version[2]; /* 02a major, minor filesystem version (I see 0,0) */
  106. uint32_t fat32_root_cluster; /* 02c first cluster in root directory */
  107. uint16_t fat32_info_sector; /* 030 filesystem info sector (usually 1) */
  108. uint16_t fat32_backup_boot; /* 032 backup boot sector (usually 6) */
  109. uint32_t reserved2[3]; /* 034 unused */
  110. struct msdos_volume_info vi; /* 040 */
  111. char boot_code[0x200 - 0x5a - 2]; /* 05a */
  112. #define BOOT_SIGN 0xAA55
  113. uint16_t boot_sign; /* 1fe */
  114. } PACKED;
  115. #define FAT_FSINFO_SIG1 0x41615252
  116. #define FAT_FSINFO_SIG2 0x61417272
  117. struct fat32_fsinfo {
  118. uint32_t signature1; /* 0x52,0x52,0x41,0x61, "RRaA" */
  119. uint32_t reserved1[128 - 8];
  120. uint32_t signature2; /* 0x72,0x72,0x61,0x41, "rrAa" */
  121. uint32_t free_clusters; /* free cluster count. -1 if unknown */
  122. uint32_t next_cluster; /* most recently allocated cluster */
  123. uint32_t reserved2[3];
  124. uint16_t reserved3; /* 1fc */
  125. uint16_t boot_sign; /* 1fe */
  126. } PACKED;
  127. struct bug_check {
  128. char BUG1[sizeof(struct msdos_dir_entry ) == 0x20 ? 1 : -1];
  129. char BUG2[sizeof(struct msdos_volume_info) == 0x1a ? 1 : -1];
  130. char BUG3[sizeof(struct msdos_boot_sector) == 0x200 ? 1 : -1];
  131. char BUG4[sizeof(struct fat32_fsinfo ) == 0x200 ? 1 : -1];
  132. };
  133. static const char boot_code[] ALIGN1 =
  134. "\x0e" /* 05a: push cs */
  135. "\x1f" /* 05b: pop ds */
  136. "\xbe\x77\x7c" /* write_msg: mov si, offset message_txt */
  137. "\xac" /* 05f: lodsb */
  138. "\x22\xc0" /* 060: and al, al */
  139. "\x74\x0b" /* 062: jz key_press */
  140. "\x56" /* 064: push si */
  141. "\xb4\x0e" /* 065: mov ah, 0eh */
  142. "\xbb\x07\x00" /* 067: mov bx, 0007h */
  143. "\xcd\x10" /* 06a: int 10h */
  144. "\x5e" /* 06c: pop si */
  145. "\xeb\xf0" /* 06d: jmp write_msg */
  146. "\x32\xe4" /* key_press: xor ah, ah */
  147. "\xcd\x16" /* 071: int 16h */
  148. "\xcd\x19" /* 073: int 19h */
  149. "\xeb\xfe" /* foo: jmp foo */
  150. /* 077: message_txt: */
  151. "This is not a bootable disk\r\n";
  152. #define MARK_CLUSTER(cluster, value) \
  153. ((uint32_t *)fat)[cluster] = SWAP_LE32(value)
  154. void BUG_unsupported_field_size(void);
  155. #define STORE_LE(field, value) \
  156. do { \
  157. if (sizeof(field) == 4) \
  158. field = SWAP_LE32(value); \
  159. else if (sizeof(field) == 2) \
  160. field = SWAP_LE16(value); \
  161. else if (sizeof(field) == 1) \
  162. field = (value); \
  163. else \
  164. BUG_unsupported_field_size(); \
  165. } while (0)
  166. /* compat:
  167. * mkdosfs 2.11 (12 Mar 2005)
  168. * Usage: mkdosfs [-A] [-c] [-C] [-v] [-I] [-l bad-block-file]
  169. * [-b backup-boot-sector]
  170. * [-m boot-msg-file] [-n volume-name] [-i volume-id]
  171. * [-s sectors-per-cluster] [-S logical-sector-size]
  172. * [-f number-of-FATs]
  173. * [-h hidden-sectors] [-F fat-size] [-r root-dir-entries]
  174. * [-R reserved-sectors]
  175. * /dev/name [blocks]
  176. */
  177. int mkfs_vfat_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  178. int mkfs_vfat_main(int argc UNUSED_PARAM, char **argv)
  179. {
  180. struct stat st;
  181. const char *volume_label = "";
  182. char *buf;
  183. char *device_name;
  184. uoff_t volume_size_bytes;
  185. uoff_t volume_size_sect;
  186. uint32_t total_clust;
  187. uint32_t volume_id;
  188. int dev;
  189. unsigned bytes_per_sect;
  190. unsigned sect_per_fat;
  191. unsigned opts;
  192. uint16_t sect_per_track;
  193. uint8_t media_byte;
  194. uint8_t sect_per_clust;
  195. uint8_t heads;
  196. enum {
  197. OPT_A = 1 << 0, // [IGNORED] atari format
  198. OPT_b = 1 << 1, // [IGNORED] location of backup boot sector
  199. OPT_c = 1 << 2, // [IGNORED] check filesystem
  200. OPT_C = 1 << 3, // [IGNORED] create a new file
  201. OPT_f = 1 << 4, // [IGNORED] number of FATs
  202. OPT_F = 1 << 5, // [IGNORED, implied 32] choose FAT size
  203. OPT_h = 1 << 6, // [IGNORED] number of hidden sectors
  204. OPT_I = 1 << 7, // [IGNORED] don't bark at entire disk devices
  205. OPT_i = 1 << 8, // [IGNORED] volume ID
  206. OPT_l = 1 << 9, // [IGNORED] bad block filename
  207. OPT_m = 1 << 10, // [IGNORED] message file
  208. OPT_n = 1 << 11, // volume label
  209. OPT_r = 1 << 12, // [IGNORED] root directory entries
  210. OPT_R = 1 << 13, // [IGNORED] number of reserved sectors
  211. OPT_s = 1 << 14, // [IGNORED] sectors per cluster
  212. OPT_S = 1 << 15, // [IGNORED] sector size
  213. OPT_v = 1 << 16, // verbose
  214. };
  215. opt_complementary = "-1";//:b+:f+:F+:h+:r+:R+:s+:S+:vv:c--l:l--c";
  216. opts = getopt32(argv, "Ab:cCf:F:h:Ii:l:m:n:r:R:s:S:v",
  217. NULL, NULL, NULL, NULL, NULL,
  218. NULL, NULL, &volume_label, NULL, NULL, NULL, NULL);
  219. argv += optind;
  220. // cache device name
  221. device_name = argv[0];
  222. // default volume ID = creation time
  223. volume_id = time(NULL);
  224. dev = xopen(device_name, O_RDWR);
  225. if (fstat(dev, &st) < 0)
  226. bb_simple_perror_msg_and_die(device_name);
  227. //
  228. // Get image size and sector size
  229. //
  230. bytes_per_sect = SECTOR_SIZE;
  231. if (!S_ISBLK(st.st_mode)) {
  232. if (!S_ISREG(st.st_mode)) {
  233. if (!argv[1])
  234. bb_error_msg_and_die("image size must be specified");
  235. }
  236. // not a block device, skip bad sectors check
  237. opts &= ~OPT_c;
  238. } else {
  239. int min_bytes_per_sect;
  240. #if 0
  241. unsigned device_num;
  242. // for true block devices we do check sanity
  243. device_num = st.st_rdev & 0xff3f;
  244. // do we allow to format the whole disk device?
  245. if (!(opts & OPT_I) && (
  246. device_num == 0x0300 || // hda, hdb
  247. (device_num & 0xff0f) == 0x0800 || // sd
  248. device_num == 0x0d00 || // xd
  249. device_num == 0x1600 ) // hdc, hdd
  250. )
  251. bb_error_msg_and_die("will not try to make filesystem on full-disk device (use -I if wanted)");
  252. // can't work on mounted filesystems
  253. if (find_mount_point(device_name, 0))
  254. bb_error_msg_and_die("can't format mounted filesystem");
  255. #endif
  256. // get true sector size
  257. // (parameter must be int*, not long* or size_t*)
  258. xioctl(dev, BLKSSZGET, &min_bytes_per_sect);
  259. if (min_bytes_per_sect > SECTOR_SIZE) {
  260. bytes_per_sect = min_bytes_per_sect;
  261. bb_error_msg("for this device sector size is %u", min_bytes_per_sect);
  262. }
  263. }
  264. volume_size_bytes = get_volume_size_in_bytes(dev, argv[1], 1024, /*extend:*/ 1);
  265. volume_size_sect = volume_size_bytes / bytes_per_sect;
  266. //
  267. // Find out or guess media parameters
  268. //
  269. media_byte = 0xf8;
  270. heads = 255;
  271. sect_per_track = 63;
  272. sect_per_clust = 1;
  273. {
  274. struct hd_geometry geometry;
  275. // size (in sectors), sect (per track), head
  276. struct floppy_struct param;
  277. // N.B. whether to use HDIO_GETGEO or HDIO_REQ?
  278. if (ioctl(dev, HDIO_GETGEO, &geometry) == 0
  279. && geometry.sectors
  280. && geometry.heads
  281. ) {
  282. // hard drive
  283. sect_per_track = geometry.sectors;
  284. heads = geometry.heads;
  285. set_cluster_size:
  286. /* For FAT32, try to do the same as M$'s format command
  287. * (see http://www.win.tue.nl/~aeb/linux/fs/fat/fatgen103.pdf p. 20):
  288. * fs size <= 260M: 0.5k clusters
  289. * fs size <= 8G: 4k clusters
  290. * fs size <= 16G: 8k clusters
  291. * fs size > 16G: 16k clusters
  292. */
  293. sect_per_clust = 1;
  294. if (volume_size_bytes >= 260*1024*1024) {
  295. sect_per_clust = 8;
  296. /* fight gcc: */
  297. /* "error: integer overflow in expression" */
  298. /* "error: right shift count >= width of type" */
  299. if (sizeof(off_t) > 4) {
  300. unsigned t = (volume_size_bytes >> 31 >> 1);
  301. if (t >= 8/4)
  302. sect_per_clust = 16;
  303. if (t >= 16/4)
  304. sect_per_clust = 32;
  305. }
  306. }
  307. } else {
  308. // floppy, loop, or regular file
  309. int not_floppy = ioctl(dev, FDGETPRM, &param);
  310. if (not_floppy == 0) {
  311. // floppy disk
  312. sect_per_track = param.sect;
  313. heads = param.head;
  314. volume_size_sect = param.size;
  315. volume_size_bytes = param.size * SECTOR_SIZE;
  316. }
  317. // setup the media descriptor byte
  318. switch (volume_size_sect) {
  319. case 2*360: // 5.25", 2, 9, 40 - 360K
  320. media_byte = 0xfd;
  321. break;
  322. case 2*720: // 3.5", 2, 9, 80 - 720K
  323. case 2*1200: // 5.25", 2, 15, 80 - 1200K
  324. media_byte = 0xf9;
  325. break;
  326. default: // anything else
  327. if (not_floppy)
  328. goto set_cluster_size;
  329. case 2*1440: // 3.5", 2, 18, 80 - 1440K
  330. case 2*2880: // 3.5", 2, 36, 80 - 2880K
  331. media_byte = 0xf0;
  332. break;
  333. }
  334. // not floppy, but size matches floppy exactly.
  335. // perhaps it is a floppy image.
  336. // we already set media_byte as if it is a floppy,
  337. // now set sect_per_track and heads.
  338. heads = 2;
  339. sect_per_track = (unsigned)volume_size_sect / 160;
  340. if (sect_per_track < 9)
  341. sect_per_track = 9;
  342. }
  343. }
  344. //
  345. // Calculate number of clusters, sectors/cluster, sectors/FAT
  346. // (an initial guess for sect_per_clust should already be set)
  347. //
  348. // "mkdosfs -v -F 32 image5k 5" is the minimum:
  349. // 2 sectors for FATs and 2 data sectors
  350. if ((off_t)(volume_size_sect - reserved_sect) < 4)
  351. bb_error_msg_and_die("the image is too small for FAT32");
  352. sect_per_fat = 1;
  353. while (1) {
  354. while (1) {
  355. int spf_adj;
  356. uoff_t tcl = (volume_size_sect - reserved_sect - NUM_FATS * sect_per_fat) / sect_per_clust;
  357. // tcl may be > MAX_CLUST_32 here, but it may be
  358. // because sect_per_fat is underestimated,
  359. // and with increased sect_per_fat it still may become
  360. // <= MAX_CLUST_32. Therefore, we do not check
  361. // against MAX_CLUST_32, but against a bigger const:
  362. if (tcl > 0x80ffffff)
  363. goto next;
  364. total_clust = tcl; // fits in uint32_t
  365. // Every cluster needs 4 bytes in FAT. +2 entries since
  366. // FAT has space for non-existent clusters 0 and 1.
  367. // Let's see how many sectors that needs.
  368. //May overflow at "*4":
  369. //spf_adj = ((total_clust+2) * 4 + bytes_per_sect-1) / bytes_per_sect - sect_per_fat;
  370. //Same in the more obscure, non-overflowing form:
  371. spf_adj = ((total_clust+2) + (bytes_per_sect/4)-1) / (bytes_per_sect/4) - sect_per_fat;
  372. #if 0
  373. bb_error_msg("sect_per_clust:%u sect_per_fat:%u total_clust:%u",
  374. sect_per_clust, sect_per_fat, (int)tcl);
  375. bb_error_msg("adjust to sect_per_fat:%d", spf_adj);
  376. #endif
  377. if (spf_adj <= 0) {
  378. // do not need to adjust sect_per_fat.
  379. // so, was total_clust too big after all?
  380. if (total_clust <= MAX_CLUST_32)
  381. goto found_total_clust; // no
  382. // yes, total_clust is _a bit_ too big
  383. goto next;
  384. }
  385. // adjust sect_per_fat, go back and recalc total_clust
  386. // (note: just "sect_per_fat += spf_adj" isn't ok)
  387. sect_per_fat += ((unsigned)spf_adj / 2) | 1;
  388. }
  389. next:
  390. if (sect_per_clust == 128)
  391. bb_error_msg_and_die("can't make FAT32 with >128 sectors/cluster");
  392. sect_per_clust *= 2;
  393. sect_per_fat = (sect_per_fat / 2) | 1;
  394. }
  395. found_total_clust:
  396. //
  397. // Print info
  398. //
  399. if (opts & OPT_v) {
  400. fprintf(stderr,
  401. "Device '%s':\n"
  402. "heads:%u, sectors/track:%u, bytes/sector:%u\n"
  403. "media descriptor:%02x\n"
  404. "total sectors:%"OFF_FMT"u, clusters:%u, sectors/cluster:%u\n"
  405. "FATs:2, sectors/FAT:%u\n"
  406. "volumeID:%08x, label:'%s'\n",
  407. device_name,
  408. heads, sect_per_track, bytes_per_sect,
  409. (int)media_byte,
  410. volume_size_sect, (int)total_clust, (int)sect_per_clust,
  411. sect_per_fat,
  412. (int)volume_id, volume_label
  413. );
  414. }
  415. //
  416. // Write filesystem image sequentially (no seeking)
  417. //
  418. {
  419. // (a | b) is poor man's max(a, b)
  420. unsigned bufsize = reserved_sect;
  421. //bufsize |= sect_per_fat; // can be quite large
  422. bufsize |= 2; // use this instead
  423. bufsize |= sect_per_clust;
  424. buf = xzalloc(bufsize * bytes_per_sect);
  425. }
  426. { // boot and fsinfo sectors, and their copies
  427. struct msdos_boot_sector *boot_blk = (void*)buf;
  428. struct fat32_fsinfo *info = (void*)(buf + bytes_per_sect);
  429. strcpy(boot_blk->boot_jump, "\xeb\x58\x90" "mkdosfs"); // system_id[8] included :)
  430. STORE_LE(boot_blk->bytes_per_sect, bytes_per_sect);
  431. STORE_LE(boot_blk->sect_per_clust, sect_per_clust);
  432. // cast in needed on big endian to suppress a warning
  433. STORE_LE(boot_blk->reserved_sect, (uint16_t)reserved_sect);
  434. STORE_LE(boot_blk->fats, 2);
  435. //STORE_LE(boot_blk->dir_entries, 0); // for FAT32, stays 0
  436. if (volume_size_sect <= 0xffff)
  437. STORE_LE(boot_blk->volume_size_sect, volume_size_sect);
  438. STORE_LE(boot_blk->media_byte, media_byte);
  439. // wrong: this would make Linux think that it's fat12/16:
  440. //if (sect_per_fat <= 0xffff)
  441. // STORE_LE(boot_blk->sect_per_fat, sect_per_fat);
  442. // works:
  443. //STORE_LE(boot_blk->sect_per_fat, 0);
  444. STORE_LE(boot_blk->sect_per_track, sect_per_track);
  445. STORE_LE(boot_blk->heads, heads);
  446. //STORE_LE(boot_blk->hidden, 0);
  447. STORE_LE(boot_blk->fat32_volume_size_sect, volume_size_sect);
  448. STORE_LE(boot_blk->fat32_sect_per_fat, sect_per_fat);
  449. //STORE_LE(boot_blk->fat32_flags, 0);
  450. //STORE_LE(boot_blk->fat32_version[2], 0,0);
  451. STORE_LE(boot_blk->fat32_root_cluster, 2);
  452. STORE_LE(boot_blk->fat32_info_sector, info_sector_number);
  453. STORE_LE(boot_blk->fat32_backup_boot, backup_boot_sector);
  454. //STORE_LE(boot_blk->reserved2[3], 0,0,0);
  455. STORE_LE(boot_blk->vi.ext_boot_sign, 0x29);
  456. STORE_LE(boot_blk->vi.volume_id32, volume_id);
  457. strncpy(boot_blk->vi.fs_type, "FAT32 ", sizeof(boot_blk->vi.fs_type));
  458. strncpy(boot_blk->vi.volume_label, volume_label, sizeof(boot_blk->vi.volume_label));
  459. memcpy(boot_blk->boot_code, boot_code, sizeof(boot_code));
  460. STORE_LE(boot_blk->boot_sign, BOOT_SIGN);
  461. STORE_LE(info->signature1, FAT_FSINFO_SIG1);
  462. STORE_LE(info->signature2, FAT_FSINFO_SIG2);
  463. // we've allocated cluster 2 for the root dir
  464. STORE_LE(info->free_clusters, (total_clust - 1));
  465. STORE_LE(info->next_cluster, 2);
  466. STORE_LE(info->boot_sign, BOOT_SIGN);
  467. // 1st copy
  468. xwrite(dev, buf, bytes_per_sect * backup_boot_sector);
  469. // 2nd copy and possibly zero sectors
  470. xwrite(dev, buf, bytes_per_sect * (reserved_sect - backup_boot_sector));
  471. }
  472. { // file allocation tables
  473. unsigned i,j;
  474. unsigned char *fat = (void*)buf;
  475. memset(buf, 0, bytes_per_sect * 2);
  476. // initial FAT entries
  477. MARK_CLUSTER(0, 0x0fffff00 | media_byte);
  478. MARK_CLUSTER(1, 0xffffffff);
  479. // mark cluster 2 as EOF (used for root dir)
  480. MARK_CLUSTER(2, EOF_FAT32);
  481. for (i = 0; i < NUM_FATS; i++) {
  482. xwrite(dev, buf, bytes_per_sect);
  483. for (j = 1; j < sect_per_fat; j++)
  484. xwrite(dev, buf + bytes_per_sect, bytes_per_sect);
  485. }
  486. }
  487. // root directory
  488. // empty directory is just a set of zero bytes
  489. memset(buf, 0, sect_per_clust * bytes_per_sect);
  490. if (volume_label[0]) {
  491. // create dir entry for volume_label
  492. struct msdos_dir_entry *de;
  493. #if 0
  494. struct tm tm_time;
  495. uint16_t t, d;
  496. #endif
  497. de = (void*)buf;
  498. strncpy(de->name, volume_label, sizeof(de->name));
  499. STORE_LE(de->attr, ATTR_VOLUME);
  500. #if 0
  501. localtime_r(&create_time, &tm_time);
  502. t = (tm_time.tm_sec >> 1) + (tm_time.tm_min << 5) + (tm_time.tm_hour << 11);
  503. d = tm_time.tm_mday + ((tm_time.tm_mon+1) << 5) + ((tm_time.tm_year-80) << 9);
  504. STORE_LE(de->time, t);
  505. STORE_LE(de->date, d);
  506. //STORE_LE(de->ctime_cs, 0);
  507. de->ctime = de->time;
  508. de->cdate = de->date;
  509. de->adate = de->date;
  510. #endif
  511. }
  512. xwrite(dev, buf, sect_per_clust * bytes_per_sect);
  513. #if 0
  514. if (opts & OPT_c) {
  515. uoff_t volume_size_blocks;
  516. unsigned start_data_sector;
  517. unsigned start_data_block;
  518. unsigned badblocks = 0;
  519. int try, got;
  520. off_t currently_testing;
  521. char *blkbuf = xmalloc(BLOCK_SIZE * TEST_BUFFER_BLOCKS);
  522. volume_size_blocks = (volume_size_bytes >> BLOCK_SIZE_BITS);
  523. // N.B. the two following vars are in hard sectors, i.e. SECTOR_SIZE byte sectors!
  524. start_data_sector = (reserved_sect + NUM_FATS * sect_per_fat) * (bytes_per_sect / SECTOR_SIZE);
  525. start_data_block = (start_data_sector + SECTORS_PER_BLOCK - 1) / SECTORS_PER_BLOCK;
  526. bb_info_msg("searching for bad blocks ");
  527. currently_testing = 0;
  528. try = TEST_BUFFER_BLOCKS;
  529. while (currently_testing < volume_size_blocks) {
  530. if (currently_testing + try > volume_size_blocks)
  531. try = volume_size_blocks - currently_testing;
  532. // perform a test on a block. return the number of blocks
  533. // that could be read successfully.
  534. // seek to the correct location
  535. xlseek(dev, currently_testing * BLOCK_SIZE, SEEK_SET);
  536. // try reading
  537. got = read(dev, blkbuf, try * BLOCK_SIZE);
  538. if (got < 0)
  539. got = 0;
  540. if (got & (BLOCK_SIZE - 1))
  541. bb_error_msg("unexpected values in do_check: probably bugs");
  542. got /= BLOCK_SIZE;
  543. currently_testing += got;
  544. if (got == try) {
  545. try = TEST_BUFFER_BLOCKS;
  546. continue;
  547. }
  548. try = 1;
  549. if (currently_testing < start_data_block)
  550. bb_error_msg_and_die("bad blocks before data-area: cannot make fs");
  551. // mark all of the sectors in the block as bad
  552. for (i = 0; i < SECTORS_PER_BLOCK; i++) {
  553. int cluster = (currently_testing * SECTORS_PER_BLOCK + i - start_data_sector) / (int) (sect_per_clust) / (bytes_per_sect / SECTOR_SIZE);
  554. if (cluster < 0)
  555. bb_error_msg_and_die("invalid cluster number in mark_sector: probably bug!");
  556. MARK_CLUSTER(cluster, BAD_FAT32);
  557. }
  558. badblocks++;
  559. currently_testing++;
  560. }
  561. free(blkbuf);
  562. if (badblocks)
  563. bb_info_msg("%d bad block(s)", badblocks);
  564. }
  565. #endif
  566. // cleanup
  567. if (ENABLE_FEATURE_CLEAN_UP) {
  568. free(buf);
  569. close(dev);
  570. }
  571. return 0;
  572. }