]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ceph: add file layout validation
authorSage Weil <sage@newdream.net>
Fri, 9 Oct 2009 23:38:45 +0000 (16:38 -0700)
committerSage Weil <sage@newdream.net>
Fri, 9 Oct 2009 23:39:30 +0000 (16:39 -0700)
This tracks updates to code shared with userspace.

Signed-off-by: Sage Weil <sage@newdream.net>
fs/ceph/ceph_fs.c
fs/ceph/ceph_fs.h

index 9371ff1c000250b44c634adbc5382b9c1d4dda5b..a950b40835776a2b47a784ec703c38ea8ea30145 100644 (file)
@@ -3,6 +3,30 @@
  */
 #include "types.h"
 
+/*
+ * return true if @layout appears to be valid
+ */
+int ceph_file_layout_is_valid(const struct ceph_file_layout *layout)
+{
+       __u32 su = le32_to_cpu(layout->fl_stripe_unit);
+       __u32 sc = le32_to_cpu(layout->fl_stripe_count);
+       __u32 os = le32_to_cpu(layout->fl_object_size);
+
+       /* stripe unit, object size must be non-zero, 64k increment */
+       if (!su || (su & (CEPH_MIN_STRIPE_UNIT-1)))
+               return 0;
+       if (!os || (os & (CEPH_MIN_STRIPE_UNIT-1)))
+               return 0;
+       /* object size must be a multiple of stripe unit */
+       if (os < su || os % su)
+               return 0;
+       /* stripe count must be non-zero */
+       if (!sc)
+               return 0;
+       return 1;
+}
+
+
 int ceph_flags_to_mode(int flags)
 {
 #ifdef O_DIRECTORY  /* fixme */
index acf24c6944c72821d47c25ef6b03c594cd13a961..b3bbab1952c91501946512d126dd6f4010d2f626 100644 (file)
@@ -72,7 +72,9 @@ struct ceph_file_layout {
        __le32 fl_pg_pool;      /* namespace, crush ruleset, rep level */
 } __attribute__ ((packed));
 
+#define CEPH_MIN_STRIPE_UNIT 65536
 
+int ceph_file_layout_is_valid(const struct ceph_file_layout *layout);
 
 
 /*********************************************