fat.c 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  1. /*
  2. * volume_id - reads filesystem label and uuid
  3. *
  4. * Copyright (C) 2004 Kay Sievers <kay.sievers@vrfy.org>
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this library; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. */
  20. //config:config FEATURE_VOLUMEID_FAT
  21. //config: bool "fat filesystem"
  22. //config: default y
  23. //config: depends on VOLUMEID
  24. //kbuild:lib-$(CONFIG_FEATURE_VOLUMEID_FAT) += fat.o
  25. #include "volume_id_internal.h"
  26. /* linux/msdos_fs.h says: */
  27. #define FAT12_MAX 0xff4
  28. #define FAT16_MAX 0xfff4
  29. #define FAT32_MAX 0x0ffffff6
  30. #define FAT_ATTR_VOLUME_ID 0x08
  31. #define FAT_ATTR_DIR 0x10
  32. #define FAT_ATTR_LONG_NAME 0x0f
  33. #define FAT_ATTR_MASK 0x3f
  34. #define FAT_ENTRY_FREE 0xe5
  35. struct vfat_super_block {
  36. uint8_t boot_jump[3];
  37. uint8_t sysid[8];
  38. uint16_t sector_size_bytes;
  39. uint8_t sectors_per_cluster;
  40. uint16_t reserved_sct;
  41. uint8_t fats;
  42. uint16_t dir_entries;
  43. uint16_t sectors;
  44. uint8_t media;
  45. uint16_t fat_length;
  46. uint16_t secs_track;
  47. uint16_t heads;
  48. uint32_t hidden;
  49. uint32_t total_sect;
  50. union {
  51. struct fat_super_block {
  52. uint8_t unknown[3];
  53. uint8_t serno[4];
  54. uint8_t label[11];
  55. uint8_t magic[8];
  56. uint8_t dummy2[192];
  57. uint8_t pmagic[2];
  58. } PACKED fat;
  59. struct fat32_super_block {
  60. uint32_t fat32_length;
  61. uint16_t flags;
  62. uint8_t version[2];
  63. uint32_t root_cluster;
  64. uint16_t insfo_sector;
  65. uint16_t backup_boot;
  66. uint16_t reserved2[6];
  67. uint8_t unknown[3];
  68. uint8_t serno[4];
  69. uint8_t label[11];
  70. uint8_t magic[8];
  71. uint8_t dummy2[164];
  72. uint8_t pmagic[2];
  73. } PACKED fat32;
  74. } PACKED type;
  75. } PACKED;
  76. struct vfat_dir_entry {
  77. uint8_t name[11];
  78. uint8_t attr;
  79. uint16_t time_creat;
  80. uint16_t date_creat;
  81. uint16_t time_acc;
  82. uint16_t date_acc;
  83. uint16_t cluster_high;
  84. uint16_t time_write;
  85. uint16_t date_write;
  86. uint16_t cluster_low;
  87. uint32_t size;
  88. } PACKED;
  89. static uint8_t *get_attr_volume_id(struct vfat_dir_entry *dir, int count)
  90. {
  91. for (;--count >= 0; dir++) {
  92. /* end marker */
  93. if (dir->name[0] == 0x00) {
  94. dbg("end of dir");
  95. break;
  96. }
  97. /* empty entry */
  98. if (dir->name[0] == FAT_ENTRY_FREE)
  99. continue;
  100. /* long name */
  101. if ((dir->attr & FAT_ATTR_MASK) == FAT_ATTR_LONG_NAME)
  102. continue;
  103. if ((dir->attr & (FAT_ATTR_VOLUME_ID | FAT_ATTR_DIR)) == FAT_ATTR_VOLUME_ID) {
  104. /* labels do not have file data */
  105. if (dir->cluster_high != 0 || dir->cluster_low != 0)
  106. continue;
  107. dbg("found ATTR_VOLUME_ID id in root dir");
  108. return dir->name;
  109. }
  110. dbg("skip dir entry");
  111. }
  112. return NULL;
  113. }
  114. int FAST_FUNC volume_id_probe_vfat(struct volume_id *id /*,uint64_t fat_partition_off*/)
  115. {
  116. #define fat_partition_off ((uint64_t)0)
  117. struct vfat_super_block *vs;
  118. struct vfat_dir_entry *dir;
  119. uint16_t sector_size_bytes;
  120. uint16_t dir_entries;
  121. uint32_t sect_count;
  122. uint16_t reserved_sct;
  123. uint32_t fat_size_sct;
  124. uint32_t root_cluster;
  125. uint32_t dir_size_sct;
  126. uint32_t cluster_count;
  127. uint64_t root_start_off;
  128. uint32_t start_data_sct;
  129. uint8_t *buf;
  130. uint32_t buf_size;
  131. uint8_t *label = NULL;
  132. uint32_t next_cluster;
  133. int maxloop;
  134. dbg("probing at offset 0x%llx", (unsigned long long) fat_partition_off);
  135. vs = volume_id_get_buffer(id, fat_partition_off, 0x200);
  136. if (vs == NULL)
  137. return -1;
  138. /* believe only that's fat, don't trust the version
  139. * the cluster_count will tell us
  140. */
  141. if (memcmp(vs->sysid, "NTFS", 4) == 0)
  142. return -1;
  143. if (memcmp(vs->type.fat32.magic, "MSWIN", 5) == 0)
  144. goto valid;
  145. if (memcmp(vs->type.fat32.magic, "FAT32 ", 8) == 0)
  146. goto valid;
  147. if (memcmp(vs->type.fat.magic, "FAT16 ", 8) == 0)
  148. goto valid;
  149. if (memcmp(vs->type.fat.magic, "MSDOS", 5) == 0)
  150. goto valid;
  151. if (memcmp(vs->type.fat.magic, "FAT12 ", 8) == 0)
  152. goto valid;
  153. /*
  154. * There are old floppies out there without a magic, so we check
  155. * for well known values and guess if it's a fat volume
  156. */
  157. /* boot jump address check */
  158. if ((vs->boot_jump[0] != 0xeb || vs->boot_jump[2] != 0x90)
  159. && vs->boot_jump[0] != 0xe9
  160. ) {
  161. return -1;
  162. }
  163. /* heads check */
  164. if (vs->heads == 0)
  165. return -1;
  166. /* cluster size check */
  167. if (vs->sectors_per_cluster == 0
  168. || (vs->sectors_per_cluster & (vs->sectors_per_cluster-1))
  169. ) {
  170. return -1;
  171. }
  172. /* media check */
  173. if (vs->media < 0xf8 && vs->media != 0xf0)
  174. return -1;
  175. /* fat count*/
  176. if (vs->fats != 2)
  177. return -1;
  178. valid:
  179. /* sector size check */
  180. sector_size_bytes = le16_to_cpu(vs->sector_size_bytes);
  181. if (sector_size_bytes != 0x200 && sector_size_bytes != 0x400
  182. && sector_size_bytes != 0x800 && sector_size_bytes != 0x1000
  183. ) {
  184. return -1;
  185. }
  186. dbg("sector_size_bytes 0x%x", sector_size_bytes);
  187. dbg("sectors_per_cluster 0x%x", vs->sectors_per_cluster);
  188. reserved_sct = le16_to_cpu(vs->reserved_sct);
  189. dbg("reserved_sct 0x%x", reserved_sct);
  190. sect_count = le16_to_cpu(vs->sectors);
  191. if (sect_count == 0)
  192. sect_count = le32_to_cpu(vs->total_sect);
  193. dbg("sect_count 0x%x", sect_count);
  194. fat_size_sct = le16_to_cpu(vs->fat_length);
  195. if (fat_size_sct == 0)
  196. fat_size_sct = le32_to_cpu(vs->type.fat32.fat32_length);
  197. fat_size_sct *= vs->fats;
  198. dbg("fat_size_sct 0x%x", fat_size_sct);
  199. dir_entries = le16_to_cpu(vs->dir_entries);
  200. dir_size_sct = ((dir_entries * sizeof(struct vfat_dir_entry)) +
  201. (sector_size_bytes-1)) / sector_size_bytes;
  202. dbg("dir_size_sct 0x%x", dir_size_sct);
  203. cluster_count = sect_count - (reserved_sct + fat_size_sct + dir_size_sct);
  204. cluster_count /= vs->sectors_per_cluster;
  205. dbg("cluster_count 0x%x", cluster_count);
  206. // if (cluster_count < FAT12_MAX) {
  207. // strcpy(id->type_version, "FAT12");
  208. // } else if (cluster_count < FAT16_MAX) {
  209. // strcpy(id->type_version, "FAT16");
  210. // } else {
  211. // strcpy(id->type_version, "FAT32");
  212. // goto fat32;
  213. // }
  214. if (cluster_count > FAT16_MAX)
  215. goto fat32;
  216. /* the label may be an attribute in the root directory */
  217. root_start_off = (reserved_sct + fat_size_sct) * sector_size_bytes;
  218. dbg("root dir start 0x%llx", (unsigned long long) root_start_off);
  219. dbg("expected entries 0x%x", dir_entries);
  220. buf_size = dir_entries * sizeof(struct vfat_dir_entry);
  221. buf = volume_id_get_buffer(id, fat_partition_off + root_start_off, buf_size);
  222. if (buf == NULL)
  223. goto ret;
  224. label = get_attr_volume_id((struct vfat_dir_entry*) buf, dir_entries);
  225. vs = volume_id_get_buffer(id, fat_partition_off, 0x200);
  226. if (vs == NULL)
  227. return -1;
  228. if (label != NULL && memcmp(label, "NO NAME ", 11) != 0) {
  229. // volume_id_set_label_raw(id, label, 11);
  230. volume_id_set_label_string(id, label, 11);
  231. } else if (memcmp(vs->type.fat.label, "NO NAME ", 11) != 0) {
  232. // volume_id_set_label_raw(id, vs->type.fat.label, 11);
  233. volume_id_set_label_string(id, vs->type.fat.label, 11);
  234. }
  235. volume_id_set_uuid(id, vs->type.fat.serno, UUID_DOS);
  236. goto ret;
  237. fat32:
  238. /* FAT32 root dir is a cluster chain like any other directory */
  239. buf_size = vs->sectors_per_cluster * sector_size_bytes;
  240. root_cluster = le32_to_cpu(vs->type.fat32.root_cluster);
  241. start_data_sct = reserved_sct + fat_size_sct;
  242. next_cluster = root_cluster;
  243. maxloop = 100;
  244. while (--maxloop) {
  245. uint64_t next_off_sct;
  246. uint64_t next_off;
  247. uint64_t fat_entry_off;
  248. int count;
  249. dbg("next_cluster 0x%x", (unsigned)next_cluster);
  250. next_off_sct = (uint64_t)(next_cluster - 2) * vs->sectors_per_cluster;
  251. next_off = (start_data_sct + next_off_sct) * sector_size_bytes;
  252. dbg("cluster offset 0x%llx", (unsigned long long) next_off);
  253. /* get cluster */
  254. buf = volume_id_get_buffer(id, fat_partition_off + next_off, buf_size);
  255. if (buf == NULL)
  256. goto ret;
  257. dir = (struct vfat_dir_entry*) buf;
  258. count = buf_size / sizeof(struct vfat_dir_entry);
  259. dbg("expected entries 0x%x", count);
  260. label = get_attr_volume_id(dir, count);
  261. if (label)
  262. break;
  263. /* get FAT entry */
  264. fat_entry_off = (reserved_sct * sector_size_bytes) + (next_cluster * sizeof(uint32_t));
  265. dbg("fat_entry_off 0x%llx", (unsigned long long)fat_entry_off);
  266. buf = volume_id_get_buffer(id, fat_partition_off + fat_entry_off, buf_size);
  267. if (buf == NULL)
  268. goto ret;
  269. /* set next cluster */
  270. next_cluster = le32_to_cpu(*(uint32_t*)buf) & 0x0fffffff;
  271. if (next_cluster < 2 || next_cluster > FAT32_MAX)
  272. break;
  273. }
  274. if (maxloop == 0)
  275. dbg("reached maximum follow count of root cluster chain, give up");
  276. vs = volume_id_get_buffer(id, fat_partition_off, 0x200);
  277. if (vs == NULL)
  278. return -1;
  279. if (label != NULL && memcmp(label, "NO NAME ", 11) != 0) {
  280. // volume_id_set_label_raw(id, label, 11);
  281. volume_id_set_label_string(id, label, 11);
  282. } else if (memcmp(vs->type.fat32.label, "NO NAME ", 11) != 0) {
  283. // volume_id_set_label_raw(id, vs->type.fat32.label, 11);
  284. volume_id_set_label_string(id, vs->type.fat32.label, 11);
  285. }
  286. volume_id_set_uuid(id, vs->type.fat32.serno, UUID_DOS);
  287. ret:
  288. // volume_id_set_usage(id, VOLUME_ID_FILESYSTEM);
  289. IF_FEATURE_BLKID_TYPE(id->type = "vfat";)
  290. return 0;
  291. }