fsverity.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. /*
  3. * fs-verity user API
  4. *
  5. * These ioctls can be used on filesystems that support fs-verity. See the
  6. * "User API" section of Documentation/filesystems/fsverity.rst.
  7. *
  8. * Copyright 2019 Google LLC
  9. */
  10. #ifndef _UAPI_LINUX_FSVERITY_H
  11. #define _UAPI_LINUX_FSVERITY_H
  12. #include <linux/ioctl.h>
  13. #include <linux/types.h>
  14. #define FS_VERITY_HASH_ALG_SHA256 1
  15. #define FS_VERITY_HASH_ALG_SHA512 2
  16. struct fsverity_enable_arg {
  17. __u32 version;
  18. __u32 hash_algorithm;
  19. __u32 block_size;
  20. __u32 salt_size;
  21. __u64 salt_ptr;
  22. __u32 sig_size;
  23. __u32 __reserved1;
  24. __u64 sig_ptr;
  25. __u64 __reserved2[11];
  26. };
  27. struct fsverity_digest {
  28. __u16 digest_algorithm;
  29. __u16 digest_size; /* input/output */
  30. __u8 digest[];
  31. };
  32. /*
  33. * Struct containing a file's Merkle tree properties. The fs-verity file digest
  34. * is the hash of this struct. A userspace program needs this struct only if it
  35. * needs to compute fs-verity file digests itself, e.g. in order to sign files.
  36. * It isn't needed just to enable fs-verity on a file.
  37. *
  38. * Note: when computing the file digest, 'sig_size' and 'signature' must be left
  39. * zero and empty, respectively. These fields are present only because some
  40. * filesystems reuse this struct as part of their on-disk format.
  41. */
  42. struct fsverity_descriptor {
  43. __u8 version; /* must be 1 */
  44. __u8 hash_algorithm; /* Merkle tree hash algorithm */
  45. __u8 log_blocksize; /* log2 of size of data and tree blocks */
  46. __u8 salt_size; /* size of salt in bytes; 0 if none */
  47. #ifdef __KERNEL__
  48. __le32 sig_size;
  49. #else
  50. __le32 __reserved_0x04; /* must be 0 */
  51. #endif
  52. __le64 data_size; /* size of file the Merkle tree is built over */
  53. __u8 root_hash[64]; /* Merkle tree root hash */
  54. __u8 salt[32]; /* salt prepended to each hashed block */
  55. __u8 __reserved[144]; /* must be 0's */
  56. #ifdef __KERNEL__
  57. __u8 signature[];
  58. #endif
  59. };
  60. /*
  61. * Format in which fs-verity file digests are signed in built-in signatures.
  62. * This is the same as 'struct fsverity_digest', except here some magic bytes
  63. * are prepended to provide some context about what is being signed in case the
  64. * same key is used for non-fsverity purposes, and here the fields have fixed
  65. * endianness.
  66. *
  67. * This struct is specific to the built-in signature verification support, which
  68. * is optional. fs-verity users may also verify signatures in userspace, in
  69. * which case userspace is responsible for deciding on what bytes are signed.
  70. * This struct may still be used, but it doesn't have to be. For example,
  71. * userspace could instead use a string like "sha256:$digest_as_hex_string".
  72. */
  73. struct fsverity_formatted_digest {
  74. char magic[8]; /* must be "FSVerity" */
  75. __le16 digest_algorithm;
  76. __le16 digest_size;
  77. __u8 digest[];
  78. };
  79. #define FS_VERITY_METADATA_TYPE_MERKLE_TREE 1
  80. #define FS_VERITY_METADATA_TYPE_DESCRIPTOR 2
  81. #define FS_VERITY_METADATA_TYPE_SIGNATURE 3
  82. struct fsverity_read_metadata_arg {
  83. __u64 metadata_type;
  84. __u64 offset;
  85. __u64 length;
  86. __u64 buf_ptr;
  87. __u64 __reserved;
  88. };
  89. #define FS_IOC_ENABLE_VERITY _IOW('f', 133, struct fsverity_enable_arg)
  90. #define FS_IOC_MEASURE_VERITY _IOWR('f', 134, struct fsverity_digest)
  91. #define FS_IOC_READ_VERITY_METADATA \
  92. _IOWR('f', 135, struct fsverity_read_metadata_arg)
  93. #endif /* _UAPI_LINUX_FSVERITY_H */