g_linux_lvm.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /*-
  2. * SPDX-License-Identifier: BSD-2-Clause
  3. *
  4. * Copyright (c) 2008 Andrew Thompson <thompsa@FreeBSD.org>
  5. * All rights reserved.
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions
  9. * are met:
  10. * 1. Redistributions of source code must retain the above copyright
  11. * notice, this list of conditions and the following disclaimer.
  12. * 2. Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in the
  14. * documentation and/or other materials provided with the distribution.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
  17. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  18. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  19. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
  20. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  21. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  22. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  23. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  24. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  25. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  26. * SUCH DAMAGE.
  27. */
  28. #define G_LLVM_DEBUG(lvl, ...) \
  29. _GEOM_DEBUG("GEOM_LINUX_LVM", g_llvm_debug, (lvl), NULL, __VA_ARGS__)
  30. #define G_LLVM_CLASS_NAME "LINUX_LVM"
  31. #define G_LLVM_NAMELEN 128
  32. #define G_LLVM_UUIDLEN 40
  33. #define G_LLVM_MAGIC "\040\114\126\115\062\040\170\133" \
  34. "\065\101\045\162\060\116\052\076"
  35. struct g_llvm_label {
  36. uint64_t ll_sector;
  37. uint32_t ll_crc;
  38. uint32_t ll_offset;
  39. char ll_uuid[G_LLVM_UUIDLEN];
  40. uint64_t ll_size;
  41. uint64_t ll_pestart;
  42. uint64_t ll_md_offset;
  43. uint64_t ll_md_size;
  44. };
  45. struct g_llvm_metadata {
  46. uint32_t md_csum;
  47. uint32_t md_version;
  48. uint64_t md_start;
  49. uint64_t md_size;
  50. uint64_t md_reloffset;
  51. uint64_t md_relsize;
  52. struct g_llvm_vg *md_vg;
  53. };
  54. struct g_llvm_lv {
  55. LIST_ENTRY(g_llvm_lv) lv_next;
  56. struct g_llvm_vg *lv_vg;
  57. char lv_name[G_LLVM_NAMELEN];
  58. char lv_uuid[G_LLVM_UUIDLEN];
  59. int lv_sgcount;
  60. int lv_sgactive;
  61. struct g_provider *lv_gprov;
  62. int lv_extentcount;
  63. LIST_HEAD(, g_llvm_segment) lv_segs;
  64. int lv_numsegs;
  65. struct g_llvm_segment *lv_firstsg;
  66. };
  67. struct g_llvm_pv {
  68. LIST_ENTRY(g_llvm_pv) pv_next;
  69. struct g_llvm_vg *pv_vg;
  70. char pv_name[G_LLVM_NAMELEN];
  71. char pv_uuid[G_LLVM_UUIDLEN];
  72. size_t pv_size;
  73. off_t pv_start;
  74. int pv_count;
  75. struct g_provider *pv_gprov;
  76. struct g_consumer *pv_gcons;
  77. };
  78. struct g_llvm_segment {
  79. LIST_ENTRY(g_llvm_segment) sg_next;
  80. int sg_start;
  81. int sg_end;
  82. int sg_count;
  83. char sg_pvname[G_LLVM_NAMELEN];
  84. struct g_llvm_pv *sg_pv;
  85. int sg_pvstart;
  86. off_t sg_pvoffset;
  87. };
  88. struct g_llvm_vg {
  89. LIST_ENTRY(g_llvm_vg) vg_next;
  90. char vg_name[G_LLVM_NAMELEN];
  91. char vg_uuid[G_LLVM_UUIDLEN];
  92. size_t vg_extentsize;
  93. int vg_sectorsize;
  94. struct g_geom *vg_geom;
  95. LIST_HEAD(, g_llvm_pv) vg_pvs;
  96. LIST_HEAD(, g_llvm_lv) vg_lvs;
  97. };