zfs.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. /*
  2. * GRUB -- GRand Unified Bootloader
  3. * Copyright (C) 1999,2000,2001,2002,2003,2004,2009 Free Software Foundation, Inc.
  4. *
  5. * GRUB is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * GRUB is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. /*
  19. * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
  20. */
  21. #ifndef GRUB_ZFS_HEADER
  22. #define GRUB_ZFS_HEADER 1
  23. #include <grub/err.h>
  24. #include <grub/disk.h>
  25. #include <grub/crypto.h>
  26. typedef enum grub_zfs_endian
  27. {
  28. GRUB_ZFS_UNKNOWN_ENDIAN = -2,
  29. GRUB_ZFS_LITTLE_ENDIAN = -1,
  30. GRUB_ZFS_BIG_ENDIAN = 0
  31. } grub_zfs_endian_t;
  32. /*
  33. * On-disk version number.
  34. */
  35. #define SPA_VERSION_INITIAL 1ULL
  36. #define SPA_VERSION_BEFORE_FEATURES 33ULL
  37. #define SPA_VERSION_FEATURES 5000ULL
  38. #define SPA_VERSION_IS_SUPPORTED(v) \
  39. (((v) >= SPA_VERSION_INITIAL && (v) <= SPA_VERSION_BEFORE_FEATURES) || \
  40. ((v) == SPA_VERSION_FEATURES))
  41. /*
  42. * The following are configuration names used in the nvlist describing a pool's
  43. * configuration.
  44. */
  45. #define ZPOOL_CONFIG_VERSION "version"
  46. #define ZPOOL_CONFIG_POOL_NAME "name"
  47. #define ZPOOL_CONFIG_POOL_STATE "state"
  48. #define ZPOOL_CONFIG_POOL_TXG "txg"
  49. #define ZPOOL_CONFIG_POOL_GUID "pool_guid"
  50. #define ZPOOL_CONFIG_CREATE_TXG "create_txg"
  51. #define ZPOOL_CONFIG_TOP_GUID "top_guid"
  52. #define ZPOOL_CONFIG_VDEV_TREE "vdev_tree"
  53. #define ZPOOL_CONFIG_TYPE "type"
  54. #define ZPOOL_CONFIG_CHILDREN "children"
  55. #define ZPOOL_CONFIG_ID "id"
  56. #define ZPOOL_CONFIG_GUID "guid"
  57. #define ZPOOL_CONFIG_PATH "path"
  58. #define ZPOOL_CONFIG_DEVID "devid"
  59. #define ZPOOL_CONFIG_METASLAB_ARRAY "metaslab_array"
  60. #define ZPOOL_CONFIG_METASLAB_SHIFT "metaslab_shift"
  61. #define ZPOOL_CONFIG_ASHIFT "ashift"
  62. #define ZPOOL_CONFIG_ASIZE "asize"
  63. #define ZPOOL_CONFIG_DTL "DTL"
  64. #define ZPOOL_CONFIG_STATS "stats"
  65. #define ZPOOL_CONFIG_WHOLE_DISK "whole_disk"
  66. #define ZPOOL_CONFIG_ERRCOUNT "error_count"
  67. #define ZPOOL_CONFIG_NOT_PRESENT "not_present"
  68. #define ZPOOL_CONFIG_SPARES "spares"
  69. #define ZPOOL_CONFIG_IS_SPARE "is_spare"
  70. #define ZPOOL_CONFIG_NPARITY "nparity"
  71. #define ZPOOL_CONFIG_PHYS_PATH "phys_path"
  72. #define ZPOOL_CONFIG_L2CACHE "l2cache"
  73. #define ZPOOL_CONFIG_HOLE_ARRAY "hole_array"
  74. #define ZPOOL_CONFIG_VDEV_CHILDREN "vdev_children"
  75. #define ZPOOL_CONFIG_IS_HOLE "is_hole"
  76. #define ZPOOL_CONFIG_DDT_HISTOGRAM "ddt_histogram"
  77. #define ZPOOL_CONFIG_DDT_OBJ_STATS "ddt_object_stats"
  78. #define ZPOOL_CONFIG_DDT_STATS "ddt_stats"
  79. #define ZPOOL_CONFIG_FEATURES_FOR_READ "features_for_read"
  80. /*
  81. * The persistent vdev state is stored as separate values rather than a single
  82. * 'vdev_state' entry. This is because a device can be in multiple states, such
  83. * as offline and degraded.
  84. */
  85. #define ZPOOL_CONFIG_OFFLINE "offline"
  86. #define ZPOOL_CONFIG_FAULTED "faulted"
  87. #define ZPOOL_CONFIG_DEGRADED "degraded"
  88. #define ZPOOL_CONFIG_REMOVED "removed"
  89. #define VDEV_TYPE_ROOT "root"
  90. #define VDEV_TYPE_MIRROR "mirror"
  91. #define VDEV_TYPE_REPLACING "replacing"
  92. #define VDEV_TYPE_RAIDZ "raidz"
  93. #define VDEV_TYPE_DISK "disk"
  94. #define VDEV_TYPE_FILE "file"
  95. #define VDEV_TYPE_MISSING "missing"
  96. #define VDEV_TYPE_HOLE "hole"
  97. #define VDEV_TYPE_SPARE "spare"
  98. #define VDEV_TYPE_L2CACHE "l2cache"
  99. /*
  100. * pool state. The following states are written to disk as part of the normal
  101. * SPA lifecycle: ACTIVE, EXPORTED, DESTROYED, SPARE, L2CACHE. The remaining
  102. * states are software abstractions used at various levels to communicate pool
  103. * state.
  104. */
  105. typedef enum pool_state {
  106. POOL_STATE_ACTIVE = 0, /* In active use */
  107. POOL_STATE_EXPORTED, /* Explicitly exported */
  108. POOL_STATE_DESTROYED, /* Explicitly destroyed */
  109. POOL_STATE_SPARE, /* Reserved for hot spare use */
  110. POOL_STATE_L2CACHE, /* Level 2 ARC device */
  111. POOL_STATE_UNINITIALIZED, /* Internal spa_t state */
  112. POOL_STATE_UNAVAIL, /* Internal libzfs state */
  113. POOL_STATE_POTENTIALLY_ACTIVE /* Internal libzfs state */
  114. } pool_state_t;
  115. struct grub_zfs_data;
  116. grub_err_t grub_zfs_fetch_nvlist (grub_device_t dev, char **nvlist);
  117. grub_err_t grub_zfs_getmdnobj (grub_device_t dev, const char *fsfilename,
  118. grub_uint64_t *mdnobj);
  119. char *grub_zfs_nvlist_lookup_string (const char *nvlist, const char *name);
  120. char *grub_zfs_nvlist_lookup_nvlist (const char *nvlist, const char *name);
  121. int grub_zfs_nvlist_lookup_uint64 (const char *nvlist, const char *name,
  122. grub_uint64_t *out);
  123. char *grub_zfs_nvlist_lookup_nvlist_array (const char *nvlist,
  124. const char *name,
  125. grub_size_t array_index);
  126. int grub_zfs_nvlist_lookup_nvlist_array_get_nelm (const char *nvlist,
  127. const char *name);
  128. grub_err_t
  129. grub_zfs_add_key (grub_uint8_t *key_in,
  130. grub_size_t keylen,
  131. int passphrase);
  132. extern grub_err_t (*grub_zfs_decrypt) (grub_crypto_cipher_handle_t cipher,
  133. grub_uint64_t algo,
  134. void *nonce,
  135. char *buf, grub_size_t size,
  136. const grub_uint32_t *expected_mac,
  137. grub_zfs_endian_t endian);
  138. struct grub_zfs_key;
  139. extern grub_crypto_cipher_handle_t (*grub_zfs_load_key) (const struct grub_zfs_key *key,
  140. grub_size_t keysize,
  141. grub_uint64_t salt,
  142. grub_uint64_t algo);
  143. #endif /* ! GRUB_ZFS_HEADER */