Loading...
1/*
2 * linux/fs/ext4/symlink.c
3 *
4 * Only fast symlinks left here - the rest is done by generic code. AV, 1999
5 *
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)
10 *
11 * from
12 *
13 * linux/fs/minix/symlink.c
14 *
15 * Copyright (C) 1991, 1992 Linus Torvalds
16 *
17 * ext4 symlink handling code
18 */
19
20#include <linux/fs.h>
21#include <linux/jbd2.h>
22#include <linux/namei.h>
23#include "ext4.h"
24#include "xattr.h"
25
26static void *ext4_follow_link(struct dentry *dentry, struct nameidata *nd)
27{
28 struct ext4_inode_info *ei = EXT4_I(dentry->d_inode);
29 nd_set_link(nd, (char *) ei->i_data);
30 return NULL;
31}
32
33const struct inode_operations ext4_symlink_inode_operations = {
34 .readlink = generic_readlink,
35 .follow_link = page_follow_link_light,
36 .put_link = page_put_link,
37 .setattr = ext4_setattr,
38#ifdef CONFIG_EXT4_FS_XATTR
39 .setxattr = generic_setxattr,
40 .getxattr = generic_getxattr,
41 .listxattr = ext4_listxattr,
42 .removexattr = generic_removexattr,
43#endif
44};
45
46const struct inode_operations ext4_fast_symlink_inode_operations = {
47 .readlink = generic_readlink,
48 .follow_link = ext4_follow_link,
49 .setattr = ext4_setattr,
50#ifdef CONFIG_EXT4_FS_XATTR
51 .setxattr = generic_setxattr,
52 .getxattr = generic_getxattr,
53 .listxattr = ext4_listxattr,
54 .removexattr = generic_removexattr,
55#endif
56};
1/*
2 * linux/fs/ext4/symlink.c
3 *
4 * Only fast symlinks left here - the rest is done by generic code. AV, 1999
5 *
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)
10 *
11 * from
12 *
13 * linux/fs/minix/symlink.c
14 *
15 * Copyright (C) 1991, 1992 Linus Torvalds
16 *
17 * ext4 symlink handling code
18 */
19
20#include <linux/fs.h>
21#include <linux/namei.h>
22#include "ext4.h"
23#include "xattr.h"
24
25static const char *ext4_encrypted_get_link(struct dentry *dentry,
26 struct inode *inode,
27 struct delayed_call *done)
28{
29 struct page *cpage = NULL;
30 char *caddr, *paddr = NULL;
31 struct fscrypt_str cstr, pstr;
32 struct fscrypt_symlink_data *sd;
33 int res;
34 u32 max_size = inode->i_sb->s_blocksize;
35
36 if (!dentry)
37 return ERR_PTR(-ECHILD);
38
39 res = fscrypt_get_encryption_info(inode);
40 if (res)
41 return ERR_PTR(res);
42
43 if (ext4_inode_is_fast_symlink(inode)) {
44 caddr = (char *) EXT4_I(inode)->i_data;
45 max_size = sizeof(EXT4_I(inode)->i_data);
46 } else {
47 cpage = read_mapping_page(inode->i_mapping, 0, NULL);
48 if (IS_ERR(cpage))
49 return ERR_CAST(cpage);
50 caddr = page_address(cpage);
51 }
52
53 /* Symlink is encrypted */
54 sd = (struct fscrypt_symlink_data *)caddr;
55 cstr.name = sd->encrypted_path;
56 cstr.len = le16_to_cpu(sd->len);
57 if ((cstr.len + sizeof(struct fscrypt_symlink_data) - 1) > max_size) {
58 /* Symlink data on the disk is corrupted */
59 res = -EFSCORRUPTED;
60 goto errout;
61 }
62
63 res = fscrypt_fname_alloc_buffer(inode, cstr.len, &pstr);
64 if (res)
65 goto errout;
66 paddr = pstr.name;
67
68 res = fscrypt_fname_disk_to_usr(inode, 0, 0, &cstr, &pstr);
69 if (res)
70 goto errout;
71
72 /* Null-terminate the name */
73 paddr[pstr.len] = '\0';
74 if (cpage)
75 put_page(cpage);
76 set_delayed_call(done, kfree_link, paddr);
77 return paddr;
78errout:
79 if (cpage)
80 put_page(cpage);
81 kfree(paddr);
82 return ERR_PTR(res);
83}
84
85const struct inode_operations ext4_encrypted_symlink_inode_operations = {
86 .get_link = ext4_encrypted_get_link,
87 .setattr = ext4_setattr,
88 .listxattr = ext4_listxattr,
89};
90
91const struct inode_operations ext4_symlink_inode_operations = {
92 .get_link = page_get_link,
93 .setattr = ext4_setattr,
94 .listxattr = ext4_listxattr,
95};
96
97const struct inode_operations ext4_fast_symlink_inode_operations = {
98 .get_link = simple_get_link,
99 .setattr = ext4_setattr,
100 .listxattr = ext4_listxattr,
101};