sysv.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /*
  2. * volume_id - reads filesystem label and uuid
  3. *
  4. * Copyright (C) 2005 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_SYSV) += sysv.o
  21. //config:
  22. //config:config FEATURE_VOLUMEID_SYSV
  23. //config: bool "sysv 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. #define SYSV_NICINOD 100
  31. #define SYSV_NICFREE 50
  32. struct sysv_super {
  33. uint16_t s_isize;
  34. uint16_t s_pad0;
  35. uint32_t s_fsize;
  36. uint16_t s_nfree;
  37. uint16_t s_pad1;
  38. uint32_t s_free[SYSV_NICFREE];
  39. uint16_t s_ninode;
  40. uint16_t s_pad2;
  41. uint16_t s_inode[SYSV_NICINOD];
  42. uint8_t s_flock;
  43. uint8_t s_ilock;
  44. uint8_t s_fmod;
  45. uint8_t s_ronly;
  46. uint32_t s_time;
  47. uint16_t s_dinfo[4];
  48. uint32_t s_tfree;
  49. uint16_t s_tinode;
  50. uint16_t s_pad3;
  51. uint8_t s_fname[6];
  52. uint8_t s_fpack[6];
  53. uint32_t s_fill[12];
  54. uint32_t s_state;
  55. uint32_t s_magic;
  56. uint32_t s_type;
  57. } PACKED;
  58. #define XENIX_NICINOD 100
  59. #define XENIX_NICFREE 100
  60. struct xenix_super {
  61. uint16_t s_isize;
  62. uint32_t s_fsize;
  63. uint16_t s_nfree;
  64. uint32_t s_free[XENIX_NICFREE];
  65. uint16_t s_ninode;
  66. uint16_t s_inode[XENIX_NICINOD];
  67. uint8_t s_flock;
  68. uint8_t s_ilock;
  69. uint8_t s_fmod;
  70. uint8_t s_ronly;
  71. uint32_t s_time;
  72. uint32_t s_tfree;
  73. uint16_t s_tinode;
  74. uint16_t s_dinfo[4];
  75. uint8_t s_fname[6];
  76. uint8_t s_fpack[6];
  77. uint8_t s_clean;
  78. uint8_t s_fill[371];
  79. uint32_t s_magic;
  80. uint32_t s_type;
  81. } PACKED;
  82. #define SYSV_SUPERBLOCK_BLOCK 0x01
  83. #define SYSV_MAGIC 0xfd187e20
  84. #define XENIX_SUPERBLOCK_BLOCK 0x18
  85. #define XENIX_MAGIC 0x2b5544
  86. #define SYSV_MAX_BLOCKSIZE 0x800
  87. int FAST_FUNC volume_id_probe_sysv(struct volume_id *id /*,uint64_t off*/)
  88. {
  89. #define off ((uint64_t)0)
  90. struct sysv_super *vs;
  91. struct xenix_super *xs;
  92. unsigned boff;
  93. dbg("probing at offset 0x%llx", (unsigned long long) off);
  94. for (boff = 0x200; boff <= SYSV_MAX_BLOCKSIZE; boff <<= 1) {
  95. vs = volume_id_get_buffer(id, off + (boff * SYSV_SUPERBLOCK_BLOCK), 0x200);
  96. if (vs == NULL)
  97. return -1;
  98. if (vs->s_magic == cpu_to_le32(SYSV_MAGIC) || vs->s_magic == cpu_to_be32(SYSV_MAGIC)) {
  99. // volume_id_set_label_raw(id, vs->s_fname, 6);
  100. volume_id_set_label_string(id, vs->s_fname, 6);
  101. IF_FEATURE_BLKID_TYPE(id->type = "sysv");
  102. goto found;
  103. }
  104. }
  105. for (boff = 0x200; boff <= SYSV_MAX_BLOCKSIZE; boff <<= 1) {
  106. xs = volume_id_get_buffer(id, off + (boff + XENIX_SUPERBLOCK_BLOCK), 0x200);
  107. if (xs == NULL)
  108. return -1;
  109. if (xs->s_magic == cpu_to_le32(XENIX_MAGIC) || xs->s_magic == cpu_to_be32(XENIX_MAGIC)) {
  110. // volume_id_set_label_raw(id, xs->s_fname, 6);
  111. volume_id_set_label_string(id, xs->s_fname, 6);
  112. IF_FEATURE_BLKID_TYPE(id->type = "xenix";)
  113. goto found;
  114. }
  115. }
  116. return -1;
  117. found:
  118. // volume_id_set_usage(id, VOLUME_ID_FILESYSTEM);
  119. return 0;
  120. }