2006-10-11 10:20:50 +02:00
|
|
|
/*
|
2006-10-11 10:20:53 +02:00
|
|
|
* linux/fs/ext4/symlink.c
|
2006-10-11 10:20:50 +02:00
|
|
|
*
|
|
|
|
* Only fast symlinks left here - the rest is done by generic code. AV, 1999
|
|
|
|
*
|
|
|
|
* Copyright (C) 1992, 1993, 1994, 1995
|
|
|
|
* Remy Card (card@masi.ibp.fr)
|
|
|
|
* Laboratoire MASI - Institut Blaise Pascal
|
|
|
|
* Universite Pierre et Marie Curie (Paris VI)
|
|
|
|
*
|
|
|
|
* from
|
|
|
|
*
|
|
|
|
* linux/fs/minix/symlink.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 1991, 1992 Linus Torvalds
|
|
|
|
*
|
2006-10-11 10:20:53 +02:00
|
|
|
* ext4 symlink handling code
|
2006-10-11 10:20:50 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/namei.h>
|
2008-04-30 00:13:32 +02:00
|
|
|
#include "ext4.h"
|
2006-10-11 10:20:50 +02:00
|
|
|
#include "xattr.h"
|
|
|
|
|
2015-11-17 16:20:54 +01:00
|
|
|
static const char *ext4_encrypted_get_link(struct dentry *dentry,
|
2015-12-29 21:58:39 +01:00
|
|
|
struct inode *inode,
|
|
|
|
struct delayed_call *done)
|
2015-04-16 07:55:00 +02:00
|
|
|
{
|
|
|
|
struct page *cpage = NULL;
|
|
|
|
char *caddr, *paddr = NULL;
|
2016-07-10 20:01:03 +02:00
|
|
|
struct fscrypt_str cstr, pstr;
|
|
|
|
struct fscrypt_symlink_data *sd;
|
2015-04-16 07:55:00 +02:00
|
|
|
int res;
|
2016-07-10 20:01:03 +02:00
|
|
|
u32 max_size = inode->i_sb->s_blocksize;
|
2015-04-16 07:55:00 +02:00
|
|
|
|
2015-11-17 16:20:54 +01:00
|
|
|
if (!dentry)
|
|
|
|
return ERR_PTR(-ECHILD);
|
|
|
|
|
2016-07-10 20:01:03 +02:00
|
|
|
res = fscrypt_get_encryption_info(inode);
|
ext4 crypto: reorganize how we store keys in the inode
This is a pretty massive patch which does a number of different things:
1) The per-inode encryption information is now stored in an allocated
data structure, ext4_crypt_info, instead of directly in the node.
This reduces the size usage of an in-memory inode when it is not
using encryption.
2) We drop the ext4_fname_crypto_ctx entirely, and use the per-inode
encryption structure instead. This remove an unnecessary memory
allocation and free for the fname_crypto_ctx as well as allowing us
to reuse the ctfm in a directory for multiple lookups and file
creations.
3) We also cache the inode's policy information in the ext4_crypt_info
structure so we don't have to continually read it out of the
extended attributes.
4) We now keep the keyring key in the inode's encryption structure
instead of releasing it after we are done using it to derive the
per-inode key. This allows us to test to see if the key has been
revoked; if it has, we prevent the use of the derived key and free
it.
5) When an inode is released (or when the derived key is freed), we
will use memset_explicit() to zero out the derived key, so it's not
left hanging around in memory. This implies that when a user logs
out, it is important to first revoke the key, and then unlink it,
and then finally, to use "echo 3 > /proc/sys/vm/drop_caches" to
release any decrypted pages and dcache entries from the system
caches.
6) All this, and we also shrink the number of lines of code by around
100. :-)
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
2015-05-18 19:17:47 +02:00
|
|
|
if (res)
|
|
|
|
return ERR_PTR(res);
|
2015-04-16 07:55:00 +02:00
|
|
|
|
|
|
|
if (ext4_inode_is_fast_symlink(inode)) {
|
2015-04-27 00:48:49 +02:00
|
|
|
caddr = (char *) EXT4_I(inode)->i_data;
|
|
|
|
max_size = sizeof(EXT4_I(inode)->i_data);
|
2015-04-16 07:55:00 +02:00
|
|
|
} else {
|
|
|
|
cpage = read_mapping_page(inode->i_mapping, 0, NULL);
|
ext4 crypto: reorganize how we store keys in the inode
This is a pretty massive patch which does a number of different things:
1) The per-inode encryption information is now stored in an allocated
data structure, ext4_crypt_info, instead of directly in the node.
This reduces the size usage of an in-memory inode when it is not
using encryption.
2) We drop the ext4_fname_crypto_ctx entirely, and use the per-inode
encryption structure instead. This remove an unnecessary memory
allocation and free for the fname_crypto_ctx as well as allowing us
to reuse the ctfm in a directory for multiple lookups and file
creations.
3) We also cache the inode's policy information in the ext4_crypt_info
structure so we don't have to continually read it out of the
extended attributes.
4) We now keep the keyring key in the inode's encryption structure
instead of releasing it after we are done using it to derive the
per-inode key. This allows us to test to see if the key has been
revoked; if it has, we prevent the use of the derived key and free
it.
5) When an inode is released (or when the derived key is freed), we
will use memset_explicit() to zero out the derived key, so it's not
left hanging around in memory. This implies that when a user logs
out, it is important to first revoke the key, and then unlink it,
and then finally, to use "echo 3 > /proc/sys/vm/drop_caches" to
release any decrypted pages and dcache entries from the system
caches.
6) All this, and we also shrink the number of lines of code by around
100. :-)
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
2015-05-18 19:17:47 +02:00
|
|
|
if (IS_ERR(cpage))
|
2015-05-02 19:32:22 +02:00
|
|
|
return ERR_CAST(cpage);
|
2015-11-17 07:07:57 +01:00
|
|
|
caddr = page_address(cpage);
|
2015-04-16 07:55:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Symlink is encrypted */
|
2016-07-10 20:01:03 +02:00
|
|
|
sd = (struct fscrypt_symlink_data *)caddr;
|
2015-04-16 07:55:00 +02:00
|
|
|
cstr.name = sd->encrypted_path;
|
2015-11-26 21:20:50 +01:00
|
|
|
cstr.len = le16_to_cpu(sd->len);
|
2016-07-10 20:01:03 +02:00
|
|
|
if ((cstr.len + sizeof(struct fscrypt_symlink_data) - 1) > max_size) {
|
2015-04-16 07:55:00 +02:00
|
|
|
/* Symlink data on the disk is corrupted */
|
2015-10-17 22:16:04 +02:00
|
|
|
res = -EFSCORRUPTED;
|
2015-04-16 07:55:00 +02:00
|
|
|
goto errout;
|
|
|
|
}
|
2016-07-10 20:01:03 +02:00
|
|
|
|
|
|
|
res = fscrypt_fname_alloc_buffer(inode, cstr.len, &pstr);
|
|
|
|
if (res)
|
2015-04-16 07:55:00 +02:00
|
|
|
goto errout;
|
2016-09-15 19:13:13 +02:00
|
|
|
paddr = pstr.name;
|
2016-07-10 20:01:03 +02:00
|
|
|
|
|
|
|
res = fscrypt_fname_disk_to_usr(inode, 0, 0, &cstr, &pstr);
|
2016-09-15 23:25:55 +02:00
|
|
|
if (res)
|
2015-04-16 07:55:00 +02:00
|
|
|
goto errout;
|
2016-07-10 20:01:03 +02:00
|
|
|
|
2015-04-16 07:55:00 +02:00
|
|
|
/* Null-terminate the name */
|
2016-09-15 23:25:55 +02:00
|
|
|
paddr[pstr.len] = '\0';
|
2015-11-17 07:07:57 +01:00
|
|
|
if (cpage)
|
mm, fs: get rid of PAGE_CACHE_* and page_cache_{get,release} macros
PAGE_CACHE_{SIZE,SHIFT,MASK,ALIGN} macros were introduced *long* time
ago with promise that one day it will be possible to implement page
cache with bigger chunks than PAGE_SIZE.
This promise never materialized. And unlikely will.
We have many places where PAGE_CACHE_SIZE assumed to be equal to
PAGE_SIZE. And it's constant source of confusion on whether
PAGE_CACHE_* or PAGE_* constant should be used in a particular case,
especially on the border between fs and mm.
Global switching to PAGE_CACHE_SIZE != PAGE_SIZE would cause to much
breakage to be doable.
Let's stop pretending that pages in page cache are special. They are
not.
The changes are pretty straight-forward:
- <foo> << (PAGE_CACHE_SHIFT - PAGE_SHIFT) -> <foo>;
- <foo> >> (PAGE_CACHE_SHIFT - PAGE_SHIFT) -> <foo>;
- PAGE_CACHE_{SIZE,SHIFT,MASK,ALIGN} -> PAGE_{SIZE,SHIFT,MASK,ALIGN};
- page_cache_get() -> get_page();
- page_cache_release() -> put_page();
This patch contains automated changes generated with coccinelle using
script below. For some reason, coccinelle doesn't patch header files.
I've called spatch for them manually.
The only adjustment after coccinelle is revert of changes to
PAGE_CAHCE_ALIGN definition: we are going to drop it later.
There are few places in the code where coccinelle didn't reach. I'll
fix them manually in a separate patch. Comments and documentation also
will be addressed with the separate patch.
virtual patch
@@
expression E;
@@
- E << (PAGE_CACHE_SHIFT - PAGE_SHIFT)
+ E
@@
expression E;
@@
- E >> (PAGE_CACHE_SHIFT - PAGE_SHIFT)
+ E
@@
@@
- PAGE_CACHE_SHIFT
+ PAGE_SHIFT
@@
@@
- PAGE_CACHE_SIZE
+ PAGE_SIZE
@@
@@
- PAGE_CACHE_MASK
+ PAGE_MASK
@@
expression E;
@@
- PAGE_CACHE_ALIGN(E)
+ PAGE_ALIGN(E)
@@
expression E;
@@
- page_cache_get(E)
+ get_page(E)
@@
expression E;
@@
- page_cache_release(E)
+ put_page(E)
Signed-off-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Acked-by: Michal Hocko <mhocko@suse.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2016-04-01 14:29:47 +02:00
|
|
|
put_page(cpage);
|
2015-12-29 21:58:39 +01:00
|
|
|
set_delayed_call(done, kfree_link, paddr);
|
|
|
|
return paddr;
|
2015-04-16 07:55:00 +02:00
|
|
|
errout:
|
2015-11-17 07:07:57 +01:00
|
|
|
if (cpage)
|
mm, fs: get rid of PAGE_CACHE_* and page_cache_{get,release} macros
PAGE_CACHE_{SIZE,SHIFT,MASK,ALIGN} macros were introduced *long* time
ago with promise that one day it will be possible to implement page
cache with bigger chunks than PAGE_SIZE.
This promise never materialized. And unlikely will.
We have many places where PAGE_CACHE_SIZE assumed to be equal to
PAGE_SIZE. And it's constant source of confusion on whether
PAGE_CACHE_* or PAGE_* constant should be used in a particular case,
especially on the border between fs and mm.
Global switching to PAGE_CACHE_SIZE != PAGE_SIZE would cause to much
breakage to be doable.
Let's stop pretending that pages in page cache are special. They are
not.
The changes are pretty straight-forward:
- <foo> << (PAGE_CACHE_SHIFT - PAGE_SHIFT) -> <foo>;
- <foo> >> (PAGE_CACHE_SHIFT - PAGE_SHIFT) -> <foo>;
- PAGE_CACHE_{SIZE,SHIFT,MASK,ALIGN} -> PAGE_{SIZE,SHIFT,MASK,ALIGN};
- page_cache_get() -> get_page();
- page_cache_release() -> put_page();
This patch contains automated changes generated with coccinelle using
script below. For some reason, coccinelle doesn't patch header files.
I've called spatch for them manually.
The only adjustment after coccinelle is revert of changes to
PAGE_CAHCE_ALIGN definition: we are going to drop it later.
There are few places in the code where coccinelle didn't reach. I'll
fix them manually in a separate patch. Comments and documentation also
will be addressed with the separate patch.
virtual patch
@@
expression E;
@@
- E << (PAGE_CACHE_SHIFT - PAGE_SHIFT)
+ E
@@
expression E;
@@
- E >> (PAGE_CACHE_SHIFT - PAGE_SHIFT)
+ E
@@
@@
- PAGE_CACHE_SHIFT
+ PAGE_SHIFT
@@
@@
- PAGE_CACHE_SIZE
+ PAGE_SIZE
@@
@@
- PAGE_CACHE_MASK
+ PAGE_MASK
@@
expression E;
@@
- PAGE_CACHE_ALIGN(E)
+ PAGE_ALIGN(E)
@@
expression E;
@@
- page_cache_get(E)
+ get_page(E)
@@
expression E;
@@
- page_cache_release(E)
+ put_page(E)
Signed-off-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Acked-by: Michal Hocko <mhocko@suse.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2016-04-01 14:29:47 +02:00
|
|
|
put_page(cpage);
|
2015-04-16 07:55:00 +02:00
|
|
|
kfree(paddr);
|
|
|
|
return ERR_PTR(res);
|
|
|
|
}
|
|
|
|
|
2015-04-27 23:51:30 +02:00
|
|
|
const struct inode_operations ext4_encrypted_symlink_inode_operations = {
|
2015-11-17 16:20:54 +01:00
|
|
|
.get_link = ext4_encrypted_get_link,
|
2015-04-27 23:51:30 +02:00
|
|
|
.setattr = ext4_setattr,
|
2017-03-31 19:31:56 +02:00
|
|
|
.getattr = ext4_getattr,
|
2015-04-27 23:51:30 +02:00
|
|
|
.listxattr = ext4_listxattr,
|
|
|
|
};
|
2015-04-16 07:55:00 +02:00
|
|
|
|
2007-02-12 09:55:38 +01:00
|
|
|
const struct inode_operations ext4_symlink_inode_operations = {
|
2015-11-17 16:20:54 +01:00
|
|
|
.get_link = page_get_link,
|
2010-05-16 08:00:00 +02:00
|
|
|
.setattr = ext4_setattr,
|
2017-03-31 19:31:56 +02:00
|
|
|
.getattr = ext4_getattr,
|
2006-10-11 10:20:53 +02:00
|
|
|
.listxattr = ext4_listxattr,
|
2006-10-11 10:20:50 +02:00
|
|
|
};
|
|
|
|
|
2007-02-12 09:55:38 +01:00
|
|
|
const struct inode_operations ext4_fast_symlink_inode_operations = {
|
2015-11-17 16:20:54 +01:00
|
|
|
.get_link = simple_get_link,
|
2010-05-16 08:00:00 +02:00
|
|
|
.setattr = ext4_setattr,
|
2017-03-31 19:31:56 +02:00
|
|
|
.getattr = ext4_getattr,
|
2006-10-11 10:20:53 +02:00
|
|
|
.listxattr = ext4_listxattr,
|
2006-10-11 10:20:50 +02:00
|
|
|
};
|