@@ -153,7 +153,7 @@ libbtrfs_objects = send-stream.o send-utils.o kernel-lib/rbtree.o btrfs-list.o \
kernel-lib/radix-tree.o extent-cache.o extent_io.o \
crypto/crc32c.o common/messages.o \
uuid-tree.o utils-lib.o common/rbtree-utils.o \
- crypto/hash.o crypto/xxhash.o
+ crypto/hash.o crypto/xxhash.o crypto/sha224-256.o
libbtrfs_headers = send-stream.h send-utils.h send.h kernel-lib/rbtree.h btrfs-list.h \
crypto/crc32c.h kernel-lib/list.h kerncompat.h \
kernel-lib/radix-tree.h kernel-lib/sizes.h kernel-lib/raid56.h \
@@ -316,6 +316,7 @@ static bool is_valid_csum_type(u16 csum_type)
switch (csum_type) {
case BTRFS_CSUM_TYPE_CRC32:
case BTRFS_CSUM_TYPE_XXHASH:
+ case BTRFS_CSUM_TYPE_SHA256:
return true;
default:
return false;
@@ -1,6 +1,7 @@
#include "crypto/hash.h"
#include "crypto/crc32c.h"
#include "crypto/xxhash.h"
+#include "crypto/sha.h"
int hash_crc32c(const u8* buf, size_t length, u8 *out)
{
@@ -25,3 +26,14 @@ int hash_xxhash(const u8 *buf, size_t length, u8 *out)
return 0;
}
+
+int hash_sha256(const u8 *buf, size_t len, u8 *out)
+{
+ SHA256Context context;
+
+ SHA256Reset(&context);
+ SHA256Input(&context, buf, len);
+ SHA256Result(&context, out);
+
+ return 0;
+}
@@ -7,5 +7,6 @@
int hash_crc32c(const u8 *buf, size_t length, u8 *out);
int hash_xxhash(const u8 *buf, size_t length, u8 *out);
+int hash_sha256(const u8 *buf, size_t length, u8 *out);
#endif
@@ -40,8 +40,8 @@
* to hash the final few bits of the input.
*/
-#include "tests/sha.h"
-#include "tests/sha-private.h"
+#include "crypto/sha.h"
+#include "crypto/sha-private.h"
/* Define the SHA shift, rotate left, and rotate right macros */
#define SHA256_SHR(bits,word) ((word) >> (bits))
@@ -44,6 +44,7 @@ static const struct btrfs_csum {
} btrfs_csums[] = {
[BTRFS_CSUM_TYPE_CRC32] = { 4, "crc32c" },
[BTRFS_CSUM_TYPE_XXHASH] = { 8, "xxhash64" },
+ [BTRFS_CSUM_TYPE_SHA256] = { 32, "sha256" },
};
u16 btrfs_super_csum_size(const struct btrfs_super_block *sb)
@@ -168,6 +168,7 @@ struct btrfs_free_space_ctl;
enum btrfs_csum_type {
BTRFS_CSUM_TYPE_CRC32 = 0,
BTRFS_CSUM_TYPE_XXHASH = 1,
+ BTRFS_CSUM_TYPE_SHA256 = 2,
};
#define BTRFS_EMPTY_DIR_SIZE 0
@@ -148,6 +148,8 @@ int btrfs_csum_data(u16 csum_type, const u8 *data, u8 *out, size_t len)
return hash_crc32c(data, len, out);
case BTRFS_CSUM_TYPE_XXHASH:
return hash_xxhash(data, len, out);
+ case BTRFS_CSUM_TYPE_SHA256:
+ return hash_sha256(data, len, out);
default:
fprintf(stderr, "ERROR: unknown csum type: %d\n", csum_type);
ASSERT(0);
@@ -395,6 +395,8 @@ static enum btrfs_csum_type parse_csum_type(const char *s)
} else if (strcasecmp(s, "xxhash64") == 0 ||
strcasecmp(s, "xxhash") == 0) {
return BTRFS_CSUM_TYPE_XXHASH;
+ } else if (strcasecmp(s, "sha256") == 0) {
+ return BTRFS_CSUM_TYPE_SHA256;
} else {
error("unknown csum type %s", s);
exit(1);
Signed-off-by: Johannes Thumshirn <jthumshirn@suse.de> --- Makefile | 2 +- cmds/inspect-dump-super.c | 1 + crypto/hash.c | 12 ++++++++++++ crypto/hash.h | 1 + crypto/sha224-256.c | 4 ++-- ctree.c | 1 + ctree.h | 1 + disk-io.c | 2 ++ mkfs/main.c | 2 ++ 9 files changed, 23 insertions(+), 3 deletions(-)