ntfs.c 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  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. //kbuild:lib-$(CONFIG_FEATURE_VOLUMEID_NTFS) += ntfs.o
  21. //config:
  22. //config:config FEATURE_VOLUMEID_NTFS
  23. //config: bool "ntfs filesystem"
  24. //config: default y
  25. //config: depends on VOLUMEID
  26. //config: help
  27. //config: TODO
  28. //config:
  29. #include "volume_id_internal.h"
  30. struct ntfs_super_block {
  31. uint8_t jump[3];
  32. uint8_t oem_id[8];
  33. uint16_t bytes_per_sector;
  34. uint8_t sectors_per_cluster;
  35. uint16_t reserved_sectors;
  36. uint8_t fats;
  37. uint16_t root_entries;
  38. uint16_t sectors;
  39. uint8_t media_type;
  40. uint16_t sectors_per_fat;
  41. uint16_t sectors_per_track;
  42. uint16_t heads;
  43. uint32_t hidden_sectors;
  44. uint32_t large_sectors;
  45. uint16_t unused[2];
  46. uint64_t number_of_sectors;
  47. uint64_t mft_cluster_location;
  48. uint64_t mft_mirror_cluster_location;
  49. int8_t cluster_per_mft_record;
  50. uint8_t reserved1[3];
  51. int8_t cluster_per_index_record;
  52. uint8_t reserved2[3];
  53. uint8_t volume_serial[8];
  54. uint16_t checksum;
  55. } PACKED;
  56. struct master_file_table_record {
  57. uint8_t magic[4];
  58. uint16_t usa_ofs;
  59. uint16_t usa_count;
  60. uint64_t lsn;
  61. uint16_t sequence_number;
  62. uint16_t link_count;
  63. uint16_t attrs_offset;
  64. uint16_t flags;
  65. uint32_t bytes_in_use;
  66. uint32_t bytes_allocated;
  67. } PACKED;
  68. struct file_attribute {
  69. uint32_t type;
  70. uint32_t len;
  71. uint8_t non_resident;
  72. uint8_t name_len;
  73. uint16_t name_offset;
  74. uint16_t flags;
  75. uint16_t instance;
  76. uint32_t value_len;
  77. uint16_t value_offset;
  78. } PACKED;
  79. struct volume_info {
  80. uint64_t reserved;
  81. uint8_t major_ver;
  82. uint8_t minor_ver;
  83. } PACKED;
  84. #define MFT_RECORD_VOLUME 3
  85. #define MFT_RECORD_ATTR_VOLUME_NAME 0x60
  86. #define MFT_RECORD_ATTR_VOLUME_INFO 0x70
  87. #define MFT_RECORD_ATTR_OBJECT_ID 0x40
  88. #define MFT_RECORD_ATTR_END 0xffffffffu
  89. int FAST_FUNC volume_id_probe_ntfs(struct volume_id *id /*,uint64_t off*/)
  90. {
  91. #define off ((uint64_t)0)
  92. unsigned sector_size;
  93. unsigned cluster_size;
  94. uint64_t mft_cluster;
  95. uint64_t mft_off;
  96. unsigned mft_record_size;
  97. unsigned attr_type;
  98. unsigned attr_off;
  99. unsigned attr_len;
  100. unsigned val_off;
  101. unsigned val_len;
  102. struct master_file_table_record *mftr;
  103. struct ntfs_super_block *ns;
  104. const uint8_t *buf;
  105. const uint8_t *val;
  106. dbg("probing at offset 0x%llx", (unsigned long long) off);
  107. ns = volume_id_get_buffer(id, off, 0x200);
  108. if (ns == NULL)
  109. return -1;
  110. if (memcmp(ns->oem_id, "NTFS", 4) != 0)
  111. return -1;
  112. volume_id_set_uuid(id, ns->volume_serial, UUID_NTFS);
  113. sector_size = le16_to_cpu(ns->bytes_per_sector);
  114. cluster_size = ns->sectors_per_cluster * sector_size;
  115. mft_cluster = le64_to_cpu(ns->mft_cluster_location);
  116. mft_off = mft_cluster * cluster_size;
  117. if (ns->cluster_per_mft_record < 0)
  118. /* size = -log2(mft_record_size); normally 1024 Bytes */
  119. mft_record_size = 1 << -ns->cluster_per_mft_record;
  120. else
  121. mft_record_size = ns->cluster_per_mft_record * cluster_size;
  122. dbg("sectorsize 0x%x", sector_size);
  123. dbg("clustersize 0x%x", cluster_size);
  124. dbg("mftcluster %llu", (unsigned long long) mft_cluster);
  125. dbg("mftoffset 0x%llx", (unsigned long long) mft_off);
  126. dbg("cluster per mft_record %i", ns->cluster_per_mft_record);
  127. dbg("mft record size %i", mft_record_size);
  128. buf = volume_id_get_buffer(id, off + mft_off + (MFT_RECORD_VOLUME * mft_record_size),
  129. mft_record_size);
  130. if (buf == NULL)
  131. goto found;
  132. mftr = (struct master_file_table_record*) buf;
  133. dbg("mftr->magic '%c%c%c%c'", mftr->magic[0], mftr->magic[1], mftr->magic[2], mftr->magic[3]);
  134. if (memcmp(mftr->magic, "FILE", 4) != 0)
  135. goto found;
  136. attr_off = le16_to_cpu(mftr->attrs_offset);
  137. dbg("file $Volume's attributes are at offset %i", attr_off);
  138. while (1) {
  139. struct file_attribute *attr;
  140. attr = (struct file_attribute*) &buf[attr_off];
  141. attr_type = le32_to_cpu(attr->type);
  142. attr_len = le32_to_cpu(attr->len);
  143. val_off = le16_to_cpu(attr->value_offset);
  144. val_len = le32_to_cpu(attr->value_len);
  145. attr_off += attr_len;
  146. if (attr_len == 0)
  147. break;
  148. if (attr_off >= mft_record_size)
  149. break;
  150. if (attr_type == MFT_RECORD_ATTR_END)
  151. break;
  152. dbg("found attribute type 0x%x, len %i, at offset %i",
  153. attr_type, attr_len, attr_off);
  154. // if (attr_type == MFT_RECORD_ATTR_VOLUME_INFO) {
  155. // struct volume_info *info;
  156. // dbg("found info, len %i", val_len);
  157. // info = (struct volume_info*) (((uint8_t *) attr) + val_off);
  158. // snprintf(id->type_version, sizeof(id->type_version)-1,
  159. // "%u.%u", info->major_ver, info->minor_ver);
  160. // }
  161. if (attr_type == MFT_RECORD_ATTR_VOLUME_NAME) {
  162. dbg("found label, len %i", val_len);
  163. if (val_len > VOLUME_ID_LABEL_SIZE)
  164. val_len = VOLUME_ID_LABEL_SIZE;
  165. val = ((uint8_t *) attr) + val_off;
  166. // volume_id_set_label_raw(id, val, val_len);
  167. volume_id_set_label_unicode16(id, val, LE, val_len);
  168. }
  169. }
  170. found:
  171. // volume_id_set_usage(id, VOLUME_ID_FILESYSTEM);
  172. IF_FEATURE_BLKID_TYPE(id->type = "ntfs";)
  173. return 0;
  174. }