2 * linux/fs/ext4/symlink.c
4 * Only fast symlinks left here - the rest is done by generic code. AV, 1999
6 * Copyright (C) 1992, 1993, 1994, 1995
7 * Remy Card (card@masi.ibp.fr)
8 * Laboratoire MASI - Institut Blaise Pascal
9 * Universite Pierre et Marie Curie (Paris VI)
13 * linux/fs/minix/symlink.c
15 * Copyright (C) 1991, 1992 Linus Torvalds
17 * ext4 symlink handling code
21 #include <linux/namei.h>
25 #ifdef CONFIG_EXT4_FS_ENCRYPTION
26 static const char *ext4_encrypted_follow_link(struct dentry
*dentry
, void **cookie
)
28 struct page
*cpage
= NULL
;
29 char *caddr
, *paddr
= NULL
;
30 struct ext4_str cstr
, pstr
;
31 struct inode
*inode
= d_inode(dentry
);
32 struct ext4_encrypted_symlink_data
*sd
;
33 loff_t size
= min_t(loff_t
, i_size_read(inode
), PAGE_SIZE
- 1);
35 u32 plen
, max_size
= inode
->i_sb
->s_blocksize
;
37 res
= ext4_get_encryption_info(inode
);
41 if (ext4_inode_is_fast_symlink(inode
)) {
42 caddr
= (char *) EXT4_I(inode
)->i_data
;
43 max_size
= sizeof(EXT4_I(inode
)->i_data
);
45 cpage
= read_mapping_page(inode
->i_mapping
, 0, NULL
);
47 return ERR_CAST(cpage
);
48 caddr
= page_address(cpage
);
52 /* Symlink is encrypted */
53 sd
= (struct ext4_encrypted_symlink_data
*)caddr
;
54 cstr
.name
= sd
->encrypted_path
;
55 cstr
.len
= le16_to_cpu(sd
->len
);
57 sizeof(struct ext4_encrypted_symlink_data
) - 1) >
59 /* Symlink data on the disk is corrupted */
63 plen
= (cstr
.len
< EXT4_FNAME_CRYPTO_DIGEST_SIZE
*2) ?
64 EXT4_FNAME_CRYPTO_DIGEST_SIZE
*2 : cstr
.len
;
65 paddr
= kmalloc(plen
+ 1, GFP_NOFS
);
72 res
= _ext4_fname_disk_to_usr(inode
, NULL
, &cstr
, &pstr
);
75 /* Null-terminate the name */
79 page_cache_release(cpage
);
80 return *cookie
= paddr
;
83 page_cache_release(cpage
);
88 const struct inode_operations ext4_encrypted_symlink_inode_operations
= {
89 .readlink
= generic_readlink
,
90 .follow_link
= ext4_encrypted_follow_link
,
91 .put_link
= kfree_put_link
,
92 .setattr
= ext4_setattr
,
93 .setxattr
= generic_setxattr
,
94 .getxattr
= generic_getxattr
,
95 .listxattr
= ext4_listxattr
,
96 .removexattr
= generic_removexattr
,
100 const struct inode_operations ext4_symlink_inode_operations
= {
101 .readlink
= generic_readlink
,
102 .follow_link
= page_follow_link_light
,
103 .put_link
= page_put_link
,
104 .setattr
= ext4_setattr
,
105 .setxattr
= generic_setxattr
,
106 .getxattr
= generic_getxattr
,
107 .listxattr
= ext4_listxattr
,
108 .removexattr
= generic_removexattr
,
111 const struct inode_operations ext4_fast_symlink_inode_operations
= {
112 .readlink
= generic_readlink
,
113 .follow_link
= simple_follow_link
,
114 .setattr
= ext4_setattr
,
115 .setxattr
= generic_setxattr
,
116 .getxattr
= generic_getxattr
,
117 .listxattr
= ext4_listxattr
,
118 .removexattr
= generic_removexattr
,