Linux Kernel
3.7.1
|
#include <linux/dcache.h>
#include <linux/file.h>
#include <linux/module.h>
#include <linux/namei.h>
#include <linux/skbuff.h>
#include <linux/crypto.h>
#include <linux/mount.h>
#include <linux/pagemap.h>
#include <linux/key.h>
#include <linux/parser.h>
#include <linux/fs_stack.h>
#include <linux/slab.h>
#include <linux/magic.h>
#include "ecryptfs_kernel.h"
Go to the source code of this file.
Data Structures | |
struct | ecryptfs_cache_info |
Functions | |
module_param (ecryptfs_verbosity, int, 0) | |
MODULE_PARM_DESC (ecryptfs_verbosity,"Initial verbosity level (0 or 1; defaults to ""0, which is Quiet)") | |
module_param (ecryptfs_message_buf_len, uint, 0) | |
MODULE_PARM_DESC (ecryptfs_message_buf_len,"Number of message buffer elements") | |
module_param (ecryptfs_message_wait_timeout, long, 0) | |
MODULE_PARM_DESC (ecryptfs_message_wait_timeout,"Maximum number of seconds that an operation will ""sleep while waiting for a message response from ""userspace") | |
module_param (ecryptfs_number_of_users, uint, 0) | |
MODULE_PARM_DESC (ecryptfs_number_of_users,"An estimate of the number of ""concurrent users of eCryptfs") | |
void | __ecryptfs_printk (const char *fmt,...) |
int | ecryptfs_get_lower_file (struct dentry *dentry, struct inode *inode) |
void | ecryptfs_put_lower_file (struct inode *inode) |
MODULE_AUTHOR ("Michael A. Halcrow <[email protected]>") | |
MODULE_DESCRIPTION ("eCryptfs") | |
MODULE_LICENSE ("GPL") | |
Variables | |
int | ecryptfs_verbosity = 0 |
unsigned int | ecryptfs_message_buf_len = ECRYPTFS_DEFAULT_MSG_CTX_ELEMS |
signed long | ecryptfs_message_wait_timeout = ECRYPTFS_MAX_MSG_CTX_TTL / HZ |
unsigned int | ecryptfs_number_of_users = ECRYPTFS_DEFAULT_NUM_USERS |
struct kmem_cache * | ecryptfs_sb_info_cache |
anonymous enum |
MODULE_AUTHOR | ( | "Michael A. Halcrow <[email protected]>" | ) |
MODULE_DESCRIPTION | ( | "eCryptfs" | ) |
MODULE_LICENSE | ( | "GPL" | ) |
module_param | ( | ecryptfs_verbosity | , |
int | , | ||
0 | |||
) |
module_param | ( | ecryptfs_message_buf_len | , |
uint | , | ||
0 | |||
) |
module_param | ( | ecryptfs_message_wait_timeout | , |
long | , | ||
0 | |||
) |
module_param | ( | ecryptfs_number_of_users | , |
uint | , | ||
0 | |||
) |
MODULE_PARM_DESC | ( | ecryptfs_verbosity | , |
"Initial verbosity level (0 or 1; defaults to ""0, which is Quiet)" | |||
) |
MODULE_PARM_DESC | ( | ecryptfs_message_buf_len | , |
"Number of message buffer elements" | |||
) |
MODULE_PARM_DESC | ( | ecryptfs_message_wait_timeout | , |
"Maximum number of seconds that an operation will ""sleep while waiting for a message response from ""userspace" | |||
) |
MODULE_PARM_DESC | ( | ecryptfs_number_of_users | , |
"An estimate of the number of ""concurrent users of eCryptfs" | |||
) |
unsigned int ecryptfs_message_buf_len = ECRYPTFS_DEFAULT_MSG_CTX_ELEMS |
signed long ecryptfs_message_wait_timeout = ECRYPTFS_MAX_MSG_CTX_TTL / HZ |
unsigned int ecryptfs_number_of_users = ECRYPTFS_DEFAULT_NUM_USERS |
struct kmem_cache* ecryptfs_sb_info_cache |
int ecryptfs_verbosity = 0 |
eCryptfs: Linux filesystem encryption layer
Copyright (C) 1997-2003 Erez Zadok Copyright (C) 2001-2003 Stony Brook University Copyright (C) 2004-2007 International Business Machines Corp. Author(s): Michael A. Halcrow mahal Michael C. Thompson cro@ us.ib m.co mmctho Tyler Hicks mps@ us.ib m.co mtyhic ks@o u.edu
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. Module parameter that defines the ecryptfs_verbosity level.