#include "mds_client.h"
#include "crypto.h"
+/*
+ * Reserve room for '_' + decimal 64-bit inode number + trailing NUL.
+ * ceph_encode_encrypted_dname() copies only the visible suffix bytes.
+ */
+#define CEPH_ENCRYPTED_SNAP_INO_SUFFIX_MAX sizeof("_18446744073709551615")
+
static int ceph_crypt_get_context(struct inode *inode, void *ctx, size_t len)
{
struct ceph_inode_info *ci = ceph_inode(inode);
struct inode *dir = parent;
char *p = buf;
u32 len;
+ int prefix_len = 0;
int name_len = elen;
int ret;
u8 *cryptbuf = NULL;
if (IS_ERR(dir))
return PTR_ERR(dir);
p++; /* skip initial '_' */
+ prefix_len = 1;
}
if (!fscrypt_has_encryption_key(dir))
/* To understand the 240 limit, see CEPH_NOHASH_NAME_MAX comments */
WARN_ON(elen > 240);
- if (dir != parent) // leading _ is already there; append _<inum>
- elen += 1 + sprintf(p + elen, "_%ld", dir->i_ino);
+ if (elen > 240) {
+ elen = -ENAMETOOLONG;
+ goto out;
+ }
+
+ if (dir != parent) {
+ int total_len;
+ /* leading '_' is already there; append _<inum> */
+ char suffix[CEPH_ENCRYPTED_SNAP_INO_SUFFIX_MAX];
+
+ ret = snprintf(suffix, sizeof(suffix), "_%lu", dir->i_ino);
+ total_len = prefix_len + elen + ret;
+ if (total_len > NAME_MAX) {
+ elen = -ENAMETOOLONG;
+ goto out;
+ }
+
+ memcpy(p + elen, suffix, ret);
+ /* Include the leading '_' skipped by p. */
+ elen = total_len;
+ }
out:
kfree(cryptbuf);