main.c 25.4 KB
Newer Older
1 2 3 4 5
/**
 * eCryptfs: Linux filesystem encryption layer
 *
 * Copyright (C) 1997-2003 Erez Zadok
 * Copyright (C) 2001-2003 Stony Brook University
6
 * Copyright (C) 2004-2007 International Business Machines Corp.
7 8
 *   Author(s): Michael A. Halcrow <mahalcro@us.ibm.com>
 *              Michael C. Thompson <mcthomps@us.ibm.com>
9
 *              Tyler Hicks <tyhicks@ou.edu>
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
 *
 * 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.
 */

#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>
37
#include <linux/fs_stack.h>
38
#include <linux/slab.h>
39
#include <linux/magic.h>
40 41 42 43 44 45 46 47 48 49 50 51
#include "ecryptfs_kernel.h"

/**
 * Module parameter that defines the ecryptfs_verbosity level.
 */
int ecryptfs_verbosity = 0;

module_param(ecryptfs_verbosity, int, 0);
MODULE_PARM_DESC(ecryptfs_verbosity,
		 "Initial verbosity level (0 or 1; defaults to "
		 "0, which is Quiet)");

52
/**
T
Tyler Hicks 已提交
53
 * Module parameter that defines the number of message buffer elements
54 55 56 57 58 59 60 61 62
 */
unsigned int ecryptfs_message_buf_len = ECRYPTFS_DEFAULT_MSG_CTX_ELEMS;

module_param(ecryptfs_message_buf_len, uint, 0);
MODULE_PARM_DESC(ecryptfs_message_buf_len,
		 "Number of message buffer elements");

/**
 * Module parameter that defines the maximum guaranteed amount of time to wait
T
Tyler Hicks 已提交
63
 * for a response from ecryptfsd.  The actual sleep time will be, more than
64
 * likely, a small amount greater than this specified value, but only less if
T
Tyler Hicks 已提交
65
 * the message successfully arrives.
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
 */
signed long ecryptfs_message_wait_timeout = ECRYPTFS_MAX_MSG_CTX_TTL / HZ;

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 parameter that is an estimate of the maximum number of users
 * that will be concurrently using eCryptfs. Set this to the right
 * value to balance performance and memory use.
 */
unsigned int ecryptfs_number_of_users = ECRYPTFS_DEFAULT_NUM_USERS;

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");

86 87 88 89 90 91 92 93 94 95 96 97
void __ecryptfs_printk(const char *fmt, ...)
{
	va_list args;
	va_start(args, fmt);
	if (fmt[1] == '7') { /* KERN_DEBUG */
		if (ecryptfs_verbosity >= 1)
			vprintk(fmt, args);
	} else
		vprintk(fmt, args);
	va_end(args);
}

98
/**
99
 * ecryptfs_init_lower_file
100 101 102 103 104 105 106
 * @ecryptfs_dentry: Fully initialized eCryptfs dentry object, with
 *                   the lower dentry and the lower mount set
 *
 * eCryptfs only ever keeps a single open file for every lower
 * inode. All I/O operations to the lower inode occur through that
 * file. When the first eCryptfs dentry that interposes with the first
 * lower dentry for that inode is created, this function creates the
107 108 109
 * lower file struct and associates it with the eCryptfs
 * inode. When all eCryptfs files associated with the inode are released, the
 * file is closed.
110
 *
111
 * The lower file will be opened with read/write permissions, if
112 113
 * possible. Otherwise, it is opened read-only.
 *
114
 * This function does nothing if a lower file is already
115 116 117 118
 * associated with the eCryptfs inode.
 *
 * Returns zero on success; non-zero otherwise
 */
119 120
static int ecryptfs_init_lower_file(struct dentry *dentry,
				    struct file **lower_file)
121
{
122
	const struct cred *cred = current_cred();
123
	struct path *path = ecryptfs_dentry_to_lower_path(dentry);
124 125
	int rc;

126
	rc = ecryptfs_privileged_open(lower_file, path->dentry, path->mnt,
127 128 129 130
				      cred);
	if (rc) {
		printk(KERN_ERR "Error opening lower file "
		       "for lower_dentry [0x%p] and lower_mnt [0x%p]; "
131
		       "rc = [%d]\n", path->dentry, path->mnt, rc);
132 133 134 135 136
		(*lower_file) = NULL;
	}
	return rc;
}

137
int ecryptfs_get_lower_file(struct dentry *dentry, struct inode *inode)
138
{
139
	struct ecryptfs_inode_info *inode_info;
140
	int count, rc = 0;
141

142
	inode_info = ecryptfs_inode_to_private(inode);
143 144 145 146 147 148 149 150 151
	mutex_lock(&inode_info->lower_file_mutex);
	count = atomic_inc_return(&inode_info->lower_file_count);
	if (WARN_ON_ONCE(count < 1))
		rc = -EINVAL;
	else if (count == 1) {
		rc = ecryptfs_init_lower_file(dentry,
					      &inode_info->lower_file);
		if (rc)
			atomic_set(&inode_info->lower_file_count, 0);
152
	}
153
	mutex_unlock(&inode_info->lower_file_mutex);
154 155 156
	return rc;
}

157 158 159 160 161 162 163
void ecryptfs_put_lower_file(struct inode *inode)
{
	struct ecryptfs_inode_info *inode_info;

	inode_info = ecryptfs_inode_to_private(inode);
	if (atomic_dec_and_mutex_lock(&inode_info->lower_file_count,
				      &inode_info->lower_file_mutex)) {
164
		filemap_write_and_wait(inode->i_mapping);
165 166 167 168 169 170
		fput(inode_info->lower_file);
		inode_info->lower_file = NULL;
		mutex_unlock(&inode_info->lower_file_mutex);
	}
}

171 172 173
enum { ecryptfs_opt_sig, ecryptfs_opt_ecryptfs_sig,
       ecryptfs_opt_cipher, ecryptfs_opt_ecryptfs_cipher,
       ecryptfs_opt_ecryptfs_key_bytes,
174
       ecryptfs_opt_passthrough, ecryptfs_opt_xattr_metadata,
175 176
       ecryptfs_opt_encrypted_view, ecryptfs_opt_fnek_sig,
       ecryptfs_opt_fn_cipher, ecryptfs_opt_fn_cipher_key_bytes,
177
       ecryptfs_opt_unlink_sigs, ecryptfs_opt_mount_auth_tok_only,
178
       ecryptfs_opt_check_dev_ruid,
179
       ecryptfs_opt_err };
180

181
static const match_table_t tokens = {
182 183 184 185 186 187
	{ecryptfs_opt_sig, "sig=%s"},
	{ecryptfs_opt_ecryptfs_sig, "ecryptfs_sig=%s"},
	{ecryptfs_opt_cipher, "cipher=%s"},
	{ecryptfs_opt_ecryptfs_cipher, "ecryptfs_cipher=%s"},
	{ecryptfs_opt_ecryptfs_key_bytes, "ecryptfs_key_bytes=%u"},
	{ecryptfs_opt_passthrough, "ecryptfs_passthrough"},
188 189
	{ecryptfs_opt_xattr_metadata, "ecryptfs_xattr_metadata"},
	{ecryptfs_opt_encrypted_view, "ecryptfs_encrypted_view"},
190 191 192
	{ecryptfs_opt_fnek_sig, "ecryptfs_fnek_sig=%s"},
	{ecryptfs_opt_fn_cipher, "ecryptfs_fn_cipher=%s"},
	{ecryptfs_opt_fn_cipher_key_bytes, "ecryptfs_fn_key_bytes=%u"},
193
	{ecryptfs_opt_unlink_sigs, "ecryptfs_unlink_sigs"},
194
	{ecryptfs_opt_mount_auth_tok_only, "ecryptfs_mount_auth_tok_only"},
195
	{ecryptfs_opt_check_dev_ruid, "ecryptfs_check_dev_ruid"},
196 197 198
	{ecryptfs_opt_err, NULL}
};

199 200
static int ecryptfs_init_global_auth_toks(
	struct ecryptfs_mount_crypt_stat *mount_crypt_stat)
201
{
202
	struct ecryptfs_global_auth_tok *global_auth_tok;
203
	struct ecryptfs_auth_tok *auth_tok;
204 205
	int rc = 0;

206 207 208
	list_for_each_entry(global_auth_tok,
			    &mount_crypt_stat->global_auth_tok_list,
			    mount_crypt_stat_list) {
209
		rc = ecryptfs_keyring_auth_tok_for_sig(
210
			&global_auth_tok->global_auth_tok_key, &auth_tok,
211 212
			global_auth_tok->sig);
		if (rc) {
213 214 215 216
			printk(KERN_ERR "Could not find valid key in user "
			       "session keyring for sig specified in mount "
			       "option: [%s]\n", global_auth_tok->sig);
			global_auth_tok->flags |= ECRYPTFS_AUTH_TOK_INVALID;
217
			goto out;
218
		} else {
219
			global_auth_tok->flags &= ~ECRYPTFS_AUTH_TOK_INVALID;
220 221
			up_write(&(global_auth_tok->global_auth_tok_key)->sem);
		}
222
	}
223
out:
224 225 226
	return rc;
}

227 228 229 230 231 232 233 234 235 236
static void ecryptfs_init_mount_crypt_stat(
	struct ecryptfs_mount_crypt_stat *mount_crypt_stat)
{
	memset((void *)mount_crypt_stat, 0,
	       sizeof(struct ecryptfs_mount_crypt_stat));
	INIT_LIST_HEAD(&mount_crypt_stat->global_auth_tok_list);
	mutex_init(&mount_crypt_stat->global_auth_tok_list_mutex);
	mount_crypt_stat->flags |= ECRYPTFS_MOUNT_CRYPT_STAT_INITIALIZED;
}

237 238 239
/**
 * ecryptfs_parse_options
 * @sb: The ecryptfs super block
L
Lucas De Marchi 已提交
240
 * @options: The options passed to the kernel
241
 * @check_ruid: set to 1 if device uid should be checked against the ruid
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
 *
 * Parse mount options:
 * debug=N 	   - ecryptfs_verbosity level for debug output
 * sig=XXX	   - description(signature) of the key to use
 *
 * Returns the dentry object of the lower-level (lower/interposed)
 * directory; We want to mount our stackable file system on top of
 * that lower directory.
 *
 * The signature of the key to use must be the description of a key
 * already in the keyring. Mounting will fail if the key can not be
 * found.
 *
 * Returns zero on success; non-zero on error
 */
257 258
static int ecryptfs_parse_options(struct ecryptfs_sb_info *sbi, char *options,
				  uid_t *check_ruid)
259 260 261 262 263
{
	char *p;
	int rc = 0;
	int sig_set = 0;
	int cipher_name_set = 0;
264
	int fn_cipher_name_set = 0;
265 266
	int cipher_key_bytes;
	int cipher_key_bytes_set = 0;
267 268
	int fn_cipher_key_bytes;
	int fn_cipher_key_bytes_set = 0;
269
	struct ecryptfs_mount_crypt_stat *mount_crypt_stat =
A
Al Viro 已提交
270
		&sbi->mount_crypt_stat;
271 272 273 274 275
	substring_t args[MAX_OPT_ARGS];
	int token;
	char *sig_src;
	char *cipher_name_dst;
	char *cipher_name_src;
276 277 278 279
	char *fn_cipher_name_dst;
	char *fn_cipher_name_src;
	char *fnek_dst;
	char *fnek_src;
280
	char *cipher_key_bytes_src;
281
	char *fn_cipher_key_bytes_src;
282
	u8 cipher_code;
283

284 285
	*check_ruid = 0;

286 287 288 289
	if (!options) {
		rc = -EINVAL;
		goto out;
	}
290
	ecryptfs_init_mount_crypt_stat(mount_crypt_stat);
291 292 293 294 295 296 297 298
	while ((p = strsep(&options, ",")) != NULL) {
		if (!*p)
			continue;
		token = match_token(p, tokens, args);
		switch (token) {
		case ecryptfs_opt_sig:
		case ecryptfs_opt_ecryptfs_sig:
			sig_src = args[0].from;
299
			rc = ecryptfs_add_global_auth_tok(mount_crypt_stat,
300
							  sig_src, 0);
301 302 303 304 305
			if (rc) {
				printk(KERN_ERR "Error attempting to register "
				       "global sig; rc = [%d]\n", rc);
				goto out;
			}
306 307 308 309 310 311 312 313 314 315
			sig_set = 1;
			break;
		case ecryptfs_opt_cipher:
		case ecryptfs_opt_ecryptfs_cipher:
			cipher_name_src = args[0].from;
			cipher_name_dst =
				mount_crypt_stat->
				global_default_cipher_name;
			strncpy(cipher_name_dst, cipher_name_src,
				ECRYPTFS_MAX_CIPHER_NAME_SIZE);
316
			cipher_name_dst[ECRYPTFS_MAX_CIPHER_NAME_SIZE] = '\0';
317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
			cipher_name_set = 1;
			break;
		case ecryptfs_opt_ecryptfs_key_bytes:
			cipher_key_bytes_src = args[0].from;
			cipher_key_bytes =
				(int)simple_strtol(cipher_key_bytes_src,
						   &cipher_key_bytes_src, 0);
			mount_crypt_stat->global_default_cipher_key_size =
				cipher_key_bytes;
			cipher_key_bytes_set = 1;
			break;
		case ecryptfs_opt_passthrough:
			mount_crypt_stat->flags |=
				ECRYPTFS_PLAINTEXT_PASSTHROUGH_ENABLED;
			break;
332 333 334 335 336 337 338 339 340 341
		case ecryptfs_opt_xattr_metadata:
			mount_crypt_stat->flags |=
				ECRYPTFS_XATTR_METADATA_ENABLED;
			break;
		case ecryptfs_opt_encrypted_view:
			mount_crypt_stat->flags |=
				ECRYPTFS_XATTR_METADATA_ENABLED;
			mount_crypt_stat->flags |=
				ECRYPTFS_ENCRYPTED_VIEW_ENABLED;
			break;
342 343 344 345 346 347 348 349 350
		case ecryptfs_opt_fnek_sig:
			fnek_src = args[0].from;
			fnek_dst =
				mount_crypt_stat->global_default_fnek_sig;
			strncpy(fnek_dst, fnek_src, ECRYPTFS_SIG_SIZE_HEX);
			mount_crypt_stat->global_default_fnek_sig[
				ECRYPTFS_SIG_SIZE_HEX] = '\0';
			rc = ecryptfs_add_global_auth_tok(
				mount_crypt_stat,
351 352
				mount_crypt_stat->global_default_fnek_sig,
				ECRYPTFS_AUTH_TOK_FNEK);
353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382
			if (rc) {
				printk(KERN_ERR "Error attempting to register "
				       "global fnek sig [%s]; rc = [%d]\n",
				       mount_crypt_stat->global_default_fnek_sig,
				       rc);
				goto out;
			}
			mount_crypt_stat->flags |=
				(ECRYPTFS_GLOBAL_ENCRYPT_FILENAMES
				 | ECRYPTFS_GLOBAL_ENCFN_USE_MOUNT_FNEK);
			break;
		case ecryptfs_opt_fn_cipher:
			fn_cipher_name_src = args[0].from;
			fn_cipher_name_dst =
				mount_crypt_stat->global_default_fn_cipher_name;
			strncpy(fn_cipher_name_dst, fn_cipher_name_src,
				ECRYPTFS_MAX_CIPHER_NAME_SIZE);
			mount_crypt_stat->global_default_fn_cipher_name[
				ECRYPTFS_MAX_CIPHER_NAME_SIZE] = '\0';
			fn_cipher_name_set = 1;
			break;
		case ecryptfs_opt_fn_cipher_key_bytes:
			fn_cipher_key_bytes_src = args[0].from;
			fn_cipher_key_bytes =
				(int)simple_strtol(fn_cipher_key_bytes_src,
						   &fn_cipher_key_bytes_src, 0);
			mount_crypt_stat->global_default_fn_cipher_key_bytes =
				fn_cipher_key_bytes;
			fn_cipher_key_bytes_set = 1;
			break;
383 384 385
		case ecryptfs_opt_unlink_sigs:
			mount_crypt_stat->flags |= ECRYPTFS_UNLINK_SIGS;
			break;
386 387 388 389
		case ecryptfs_opt_mount_auth_tok_only:
			mount_crypt_stat->flags |=
				ECRYPTFS_GLOBAL_MOUNT_AUTH_TOK_ONLY;
			break;
390 391 392
		case ecryptfs_opt_check_dev_ruid:
			*check_ruid = 1;
			break;
393 394
		case ecryptfs_opt_err:
		default:
395 396 397
			printk(KERN_WARNING
			       "%s: eCryptfs: unrecognized option [%s]\n",
			       __func__, p);
398 399 400 401
		}
	}
	if (!sig_set) {
		rc = -EINVAL;
402 403
		ecryptfs_printk(KERN_ERR, "You must supply at least one valid "
				"auth tok signature as a mount "
404 405 406 407
				"parameter; see the eCryptfs README\n");
		goto out;
	}
	if (!cipher_name_set) {
M
Miklos Szeredi 已提交
408 409 410 411 412
		int cipher_name_len = strlen(ECRYPTFS_DEFAULT_CIPHER);

		BUG_ON(cipher_name_len >= ECRYPTFS_MAX_CIPHER_NAME_SIZE);
		strcpy(mount_crypt_stat->global_default_cipher_name,
		       ECRYPTFS_DEFAULT_CIPHER);
413
	}
414 415 416 417 418
	if ((mount_crypt_stat->flags & ECRYPTFS_GLOBAL_ENCRYPT_FILENAMES)
	    && !fn_cipher_name_set)
		strcpy(mount_crypt_stat->global_default_fn_cipher_name,
		       mount_crypt_stat->global_default_cipher_name);
	if (!cipher_key_bytes_set)
419
		mount_crypt_stat->global_default_cipher_key_size = 0;
420 421 422 423
	if ((mount_crypt_stat->flags & ECRYPTFS_GLOBAL_ENCRYPT_FILENAMES)
	    && !fn_cipher_key_bytes_set)
		mount_crypt_stat->global_default_fn_cipher_key_bytes =
			mount_crypt_stat->global_default_cipher_key_size;
424 425 426 427 428 429 430 431 432 433 434 435

	cipher_code = ecryptfs_code_for_cipher_string(
		mount_crypt_stat->global_default_cipher_name,
		mount_crypt_stat->global_default_cipher_key_size);
	if (!cipher_code) {
		ecryptfs_printk(KERN_ERR,
				"eCryptfs doesn't support cipher: %s",
				mount_crypt_stat->global_default_cipher_name);
		rc = -EINVAL;
		goto out;
	}

436 437
	mutex_lock(&key_tfm_list_mutex);
	if (!ecryptfs_tfm_exists(mount_crypt_stat->global_default_cipher_name,
438
				 NULL)) {
439 440 441
		rc = ecryptfs_add_new_key_tfm(
			NULL, mount_crypt_stat->global_default_cipher_name,
			mount_crypt_stat->global_default_cipher_key_size);
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470
		if (rc) {
			printk(KERN_ERR "Error attempting to initialize "
			       "cipher with name = [%s] and key size = [%td]; "
			       "rc = [%d]\n",
			       mount_crypt_stat->global_default_cipher_name,
			       mount_crypt_stat->global_default_cipher_key_size,
			       rc);
			rc = -EINVAL;
			mutex_unlock(&key_tfm_list_mutex);
			goto out;
		}
	}
	if ((mount_crypt_stat->flags & ECRYPTFS_GLOBAL_ENCRYPT_FILENAMES)
	    && !ecryptfs_tfm_exists(
		    mount_crypt_stat->global_default_fn_cipher_name, NULL)) {
		rc = ecryptfs_add_new_key_tfm(
			NULL, mount_crypt_stat->global_default_fn_cipher_name,
			mount_crypt_stat->global_default_fn_cipher_key_bytes);
		if (rc) {
			printk(KERN_ERR "Error attempting to initialize "
			       "cipher with name = [%s] and key size = [%td]; "
			       "rc = [%d]\n",
			       mount_crypt_stat->global_default_fn_cipher_name,
			       mount_crypt_stat->global_default_fn_cipher_key_bytes,
			       rc);
			rc = -EINVAL;
			mutex_unlock(&key_tfm_list_mutex);
			goto out;
		}
471
	}
472
	mutex_unlock(&key_tfm_list_mutex);
473
	rc = ecryptfs_init_global_auth_toks(mount_crypt_stat);
474
	if (rc)
475 476
		printk(KERN_WARNING "One or more global auth toks could not "
		       "properly register; rc = [%d]\n", rc);
477 478 479 480 481
out:
	return rc;
}

struct kmem_cache *ecryptfs_sb_info_cache;
A
Al Viro 已提交
482
static struct file_system_type ecryptfs_fs_type;
483 484 485 486 487 488 489 490

/**
 * ecryptfs_get_sb
 * @fs_type
 * @flags
 * @dev_name: The path to mount over
 * @raw_data: The options passed into the kernel
 */
A
Al Viro 已提交
491 492
static struct dentry *ecryptfs_mount(struct file_system_type *fs_type, int flags,
			const char *dev_name, void *raw_data)
493
{
A
Al Viro 已提交
494 495
	struct super_block *s;
	struct ecryptfs_sb_info *sbi;
496
	struct ecryptfs_mount_crypt_stat *mount_crypt_stat;
A
Al Viro 已提交
497 498
	struct ecryptfs_dentry_info *root_info;
	const char *err = "Getting sb failed";
A
Al Viro 已提交
499 500
	struct inode *inode;
	struct path path;
501
	uid_t check_ruid;
502 503
	int rc;

A
Al Viro 已提交
504 505 506
	sbi = kmem_cache_zalloc(ecryptfs_sb_info_cache, GFP_KERNEL);
	if (!sbi) {
		rc = -ENOMEM;
507 508
		goto out;
	}
A
Al Viro 已提交
509

510
	rc = ecryptfs_parse_options(sbi, raw_data, &check_ruid);
511
	if (rc) {
A
Al Viro 已提交
512 513
		err = "Error parsing options";
		goto out;
514
	}
515
	mount_crypt_stat = &sbi->mount_crypt_stat;
A
Al Viro 已提交
516

D
David Howells 已提交
517
	s = sget(fs_type, NULL, set_anon_super, flags, NULL);
A
Al Viro 已提交
518 519 520 521 522
	if (IS_ERR(s)) {
		rc = PTR_ERR(s);
		goto out;
	}

523
	rc = bdi_setup_and_register(&sbi->bdi, "ecryptfs");
A
Al Viro 已提交
524 525
	if (rc)
		goto out1;
A
Al Viro 已提交
526 527 528 529 530 531 532

	ecryptfs_set_superblock_private(s, sbi);
	s->s_bdi = &sbi->bdi;

	/* ->kill_sb() will take care of sbi after that point */
	sbi = NULL;
	s->s_op = &ecryptfs_sops;
A
Al Viro 已提交
533
	s->s_d_op = &ecryptfs_dops;
A
Al Viro 已提交
534

A
Al Viro 已提交
535 536 537 538 539 540 541 542 543 544 545 546 547
	err = "Reading sb failed";
	rc = kern_path(dev_name, LOOKUP_FOLLOW | LOOKUP_DIRECTORY, &path);
	if (rc) {
		ecryptfs_printk(KERN_WARNING, "kern_path() failed\n");
		goto out1;
	}
	if (path.dentry->d_sb->s_type == &ecryptfs_fs_type) {
		rc = -EINVAL;
		printk(KERN_ERR "Mount on filesystem of type "
			"eCryptfs explicitly disallowed due to "
			"known incompatibilities\n");
		goto out_free;
	}
548

549
	if (check_ruid && !uid_eq(path.dentry->d_inode->i_uid, current_uid())) {
550 551 552
		rc = -EPERM;
		printk(KERN_ERR "Mount of device (uid: %d) not owned by "
		       "requested user (uid: %d)\n",
553 554
			i_uid_read(path.dentry->d_inode),
			from_kuid(&init_user_ns, current_uid()));
555 556 557
		goto out_free;
	}

A
Al Viro 已提交
558
	ecryptfs_set_superblock_lower(s, path.dentry->d_sb);
559 560 561

	/**
	 * Set the POSIX ACL flag based on whether they're enabled in the lower
562
	 * mount.
563 564
	 */
	s->s_flags = flags & ~MS_POSIXACL;
565 566 567 568 569 570 571 572 573 574
	s->s_flags |= path.dentry->d_sb->s_flags & MS_POSIXACL;

	/**
	 * Force a read-only eCryptfs mount when:
	 *   1) The lower mount is ro
	 *   2) The ecryptfs_encrypted_view mount option is specified
	 */
	if (path.dentry->d_sb->s_flags & MS_RDONLY ||
	    mount_crypt_stat->flags & ECRYPTFS_ENCRYPTED_VIEW_ENABLED)
		s->s_flags |= MS_RDONLY;
575

A
Al Viro 已提交
576 577
	s->s_maxbytes = path.dentry->d_sb->s_maxbytes;
	s->s_blocksize = path.dentry->d_sb->s_blocksize;
578
	s->s_magic = ECRYPTFS_SUPER_MAGIC;
579 580 581 582 583 584 585
	s->s_stack_depth = path.dentry->d_sb->s_stack_depth + 1;

	rc = -EINVAL;
	if (s->s_stack_depth > FILESYSTEM_MAX_STACK_DEPTH) {
		pr_err("eCryptfs: maximum fs stacking depth exceeded\n");
		goto out_free;
	}
A
Al Viro 已提交
586 587 588 589 590 591

	inode = ecryptfs_get_inode(path.dentry->d_inode, s);
	rc = PTR_ERR(inode);
	if (IS_ERR(inode))
		goto out_free;

592
	s->s_root = d_make_root(inode);
A
Al Viro 已提交
593
	if (!s->s_root) {
A
Al Viro 已提交
594 595
		rc = -ENOMEM;
		goto out_free;
A
Al Viro 已提交
596 597
	}

A
Al Viro 已提交
598
	rc = -ENOMEM;
A
Al Viro 已提交
599
	root_info = kmem_cache_zalloc(ecryptfs_dentry_info_cache, GFP_KERNEL);
A
Al Viro 已提交
600 601 602
	if (!root_info)
		goto out_free;

A
Al Viro 已提交
603 604
	/* ->kill_sb() will take care of root_info */
	ecryptfs_set_dentry_private(s->s_root, root_info);
605
	root_info->lower_path = path;
A
Al Viro 已提交
606

A
Al Viro 已提交
607
	s->s_flags |= MS_ACTIVE;
A
Al Viro 已提交
608
	return dget(s->s_root);
A
Al Viro 已提交
609

A
Al Viro 已提交
610 611 612 613
out_free:
	path_put(&path);
out1:
	deactivate_locked_super(s);
614
out:
A
Al Viro 已提交
615 616 617 618 619
	if (sbi) {
		ecryptfs_destroy_mount_crypt_stat(&sbi->mount_crypt_stat);
		kmem_cache_free(ecryptfs_sb_info_cache, sbi);
	}
	printk(KERN_ERR "%s; rc = [%d]\n", err, rc);
A
Al Viro 已提交
620
	return ERR_PTR(rc);
621 622 623 624 625 626 627 628 629 630
}

/**
 * ecryptfs_kill_block_super
 * @sb: The ecryptfs super block
 *
 * Used to bring the superblock down and free the private data.
 */
static void ecryptfs_kill_block_super(struct super_block *sb)
{
A
Al Viro 已提交
631 632 633 634 635 636 637
	struct ecryptfs_sb_info *sb_info = ecryptfs_superblock_to_private(sb);
	kill_anon_super(sb);
	if (!sb_info)
		return;
	ecryptfs_destroy_mount_crypt_stat(&sb_info->mount_crypt_stat);
	bdi_destroy(&sb_info->bdi);
	kmem_cache_free(ecryptfs_sb_info_cache, sb_info);
638 639 640 641 642
}

static struct file_system_type ecryptfs_fs_type = {
	.owner = THIS_MODULE,
	.name = "ecryptfs",
A
Al Viro 已提交
643
	.mount = ecryptfs_mount,
644 645 646
	.kill_sb = ecryptfs_kill_block_super,
	.fs_flags = 0
};
647
MODULE_ALIAS_FS("ecryptfs");
648 649 650 651 652 653 654

/**
 * inode_info_init_once
 *
 * Initializes the ecryptfs_inode_info_cache when it is created
 */
static void
655
inode_info_init_once(void *vptr)
656 657 658
{
	struct ecryptfs_inode_info *ei = (struct ecryptfs_inode_info *)vptr;

C
Christoph Lameter 已提交
659
	inode_init_once(&ei->vfs_inode);
660 661 662
}

static struct ecryptfs_cache_info {
663
	struct kmem_cache **cache;
664 665
	const char *name;
	size_t size;
666
	void (*ctor)(void *obj);
667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694
} ecryptfs_cache_infos[] = {
	{
		.cache = &ecryptfs_auth_tok_list_item_cache,
		.name = "ecryptfs_auth_tok_list_item",
		.size = sizeof(struct ecryptfs_auth_tok_list_item),
	},
	{
		.cache = &ecryptfs_file_info_cache,
		.name = "ecryptfs_file_cache",
		.size = sizeof(struct ecryptfs_file_info),
	},
	{
		.cache = &ecryptfs_dentry_info_cache,
		.name = "ecryptfs_dentry_info_cache",
		.size = sizeof(struct ecryptfs_dentry_info),
	},
	{
		.cache = &ecryptfs_inode_info_cache,
		.name = "ecryptfs_inode_cache",
		.size = sizeof(struct ecryptfs_inode_info),
		.ctor = inode_info_init_once,
	},
	{
		.cache = &ecryptfs_sb_info_cache,
		.name = "ecryptfs_sb_cache",
		.size = sizeof(struct ecryptfs_sb_info),
	},
	{
695 696
		.cache = &ecryptfs_header_cache,
		.name = "ecryptfs_headers",
697 698
		.size = PAGE_CACHE_SIZE,
	},
699 700 701 702 703
	{
		.cache = &ecryptfs_xattr_cache,
		.name = "ecryptfs_xattr_cache",
		.size = PAGE_CACHE_SIZE,
	},
704 705 706 707 708
	{
		.cache = &ecryptfs_key_record_cache,
		.name = "ecryptfs_key_record_cache",
		.size = sizeof(struct ecryptfs_key_record),
	},
709 710 711 712 713 714 715 716 717 718 719 720 721 722 723
	{
		.cache = &ecryptfs_key_sig_cache,
		.name = "ecryptfs_key_sig_cache",
		.size = sizeof(struct ecryptfs_key_sig),
	},
	{
		.cache = &ecryptfs_global_auth_tok_cache,
		.name = "ecryptfs_global_auth_tok_cache",
		.size = sizeof(struct ecryptfs_global_auth_tok),
	},
	{
		.cache = &ecryptfs_key_tfm_cache,
		.name = "ecryptfs_key_tfm_cache",
		.size = sizeof(struct ecryptfs_key_tfm),
	},
724 725 726 727 728 729
};

static void ecryptfs_free_kmem_caches(void)
{
	int i;

730 731 732 733 734 735
	/*
	 * Make sure all delayed rcu free inodes are flushed before we
	 * destroy cache.
	 */
	rcu_barrier();

736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758
	for (i = 0; i < ARRAY_SIZE(ecryptfs_cache_infos); i++) {
		struct ecryptfs_cache_info *info;

		info = &ecryptfs_cache_infos[i];
		if (*(info->cache))
			kmem_cache_destroy(*(info->cache));
	}
}

/**
 * ecryptfs_init_kmem_caches
 *
 * Returns zero on success; non-zero otherwise
 */
static int ecryptfs_init_kmem_caches(void)
{
	int i;

	for (i = 0; i < ARRAY_SIZE(ecryptfs_cache_infos); i++) {
		struct ecryptfs_cache_info *info;

		info = &ecryptfs_cache_infos[i];
		*(info->cache) = kmem_cache_create(info->name, info->size,
759
				0, SLAB_HWCACHE_ALIGN, info->ctor);
760 761 762 763 764 765 766 767 768 769 770
		if (!*(info->cache)) {
			ecryptfs_free_kmem_caches();
			ecryptfs_printk(KERN_WARNING, "%s: "
					"kmem_cache_create failed\n",
					info->name);
			return -ENOMEM;
		}
	}
	return 0;
}

771
static struct kobject *ecryptfs_kobj;
772

773 774
static ssize_t version_show(struct kobject *kobj,
			    struct kobj_attribute *attr, char *buff)
775 776 777 778
{
	return snprintf(buff, PAGE_SIZE, "%d\n", ECRYPTFS_VERSIONING_MASK);
}

779
static struct kobj_attribute version_attr = __ATTR_RO(version);
780

781 782 783 784 785 786 787 788
static struct attribute *attributes[] = {
	&version_attr.attr,
	NULL,
};

static struct attribute_group attr_group = {
	.attrs = attributes,
};
789 790 791 792 793

static int do_sysfs_registration(void)
{
	int rc;

794 795
	ecryptfs_kobj = kobject_create_and_add("ecryptfs", fs_kobj);
	if (!ecryptfs_kobj) {
796 797
		printk(KERN_ERR "Unable to create ecryptfs kset\n");
		rc = -ENOMEM;
798 799
		goto out;
	}
800
	rc = sysfs_create_group(ecryptfs_kobj, &attr_group);
801 802
	if (rc) {
		printk(KERN_ERR
803
		       "Unable to create ecryptfs version attributes\n");
804
		kobject_put(ecryptfs_kobj);
805 806 807 808 809
	}
out:
	return rc;
}

810 811
static void do_sysfs_unregistration(void)
{
812
	sysfs_remove_group(ecryptfs_kobj, &attr_group);
813
	kobject_put(ecryptfs_kobj);
814 815
}

816 817 818 819 820 821 822 823 824
static int __init ecryptfs_init(void)
{
	int rc;

	if (ECRYPTFS_DEFAULT_EXTENT_SIZE > PAGE_CACHE_SIZE) {
		rc = -EINVAL;
		ecryptfs_printk(KERN_ERR, "The eCryptfs extent size is "
				"larger than the host's page size, and so "
				"eCryptfs cannot run on this system. The "
825 826 827 828
				"default eCryptfs extent size is [%u] bytes; "
				"the page size is [%lu] bytes.\n",
				ECRYPTFS_DEFAULT_EXTENT_SIZE,
				(unsigned long)PAGE_CACHE_SIZE);
829 830 831 832 833 834 835 836 837 838 839
		goto out;
	}
	rc = ecryptfs_init_kmem_caches();
	if (rc) {
		printk(KERN_ERR
		       "Failed to allocate one or more kmem_cache objects\n");
		goto out;
	}
	rc = do_sysfs_registration();
	if (rc) {
		printk(KERN_ERR "sysfs registration failed\n");
840
		goto out_free_kmem_caches;
841
	}
842 843 844 845 846 847
	rc = ecryptfs_init_kthread();
	if (rc) {
		printk(KERN_ERR "%s: kthread initialization failed; "
		       "rc = [%d]\n", __func__, rc);
		goto out_do_sysfs_unregistration;
	}
T
Tyler Hicks 已提交
848
	rc = ecryptfs_init_messaging();
849
	if (rc) {
L
Lucas De Marchi 已提交
850
		printk(KERN_ERR "Failure occurred while attempting to "
T
Tyler Hicks 已提交
851 852
				"initialize the communications channel to "
				"ecryptfsd\n");
853
		goto out_destroy_kthread;
854 855 856 857 858
	}
	rc = ecryptfs_init_crypto();
	if (rc) {
		printk(KERN_ERR "Failure whilst attempting to init crypto; "
		       "rc = [%d]\n", rc);
M
Michael Halcrow 已提交
859
		goto out_release_messaging;
860
	}
861 862 863 864 865
	rc = register_filesystem(&ecryptfs_fs_type);
	if (rc) {
		printk(KERN_ERR "Failed to register filesystem\n");
		goto out_destroy_crypto;
	}
866 867 868 869
	if (ecryptfs_verbosity > 0)
		printk(KERN_CRIT "eCryptfs verbosity set to %d. Secret values "
			"will be written to the syslog!\n", ecryptfs_verbosity);

M
Michael Halcrow 已提交
870
	goto out;
871 872
out_destroy_crypto:
	ecryptfs_destroy_crypto();
M
Michael Halcrow 已提交
873
out_release_messaging:
T
Tyler Hicks 已提交
874
	ecryptfs_release_messaging();
875 876
out_destroy_kthread:
	ecryptfs_destroy_kthread();
M
Michael Halcrow 已提交
877 878 879 880
out_do_sysfs_unregistration:
	do_sysfs_unregistration();
out_free_kmem_caches:
	ecryptfs_free_kmem_caches();
881 882 883 884 885 886
out:
	return rc;
}

static void __exit ecryptfs_exit(void)
{
M
Michael Halcrow 已提交
887 888 889 890 891 892
	int rc;

	rc = ecryptfs_destroy_crypto();
	if (rc)
		printk(KERN_ERR "Failure whilst attempting to destroy crypto; "
		       "rc = [%d]\n", rc);
T
Tyler Hicks 已提交
893
	ecryptfs_release_messaging();
894
	ecryptfs_destroy_kthread();
M
Michael Halcrow 已提交
895
	do_sysfs_unregistration();
896 897 898 899 900 901 902 903 904 905 906
	unregister_filesystem(&ecryptfs_fs_type);
	ecryptfs_free_kmem_caches();
}

MODULE_AUTHOR("Michael A. Halcrow <mhalcrow@us.ibm.com>");
MODULE_DESCRIPTION("eCryptfs");

MODULE_LICENSE("GPL");

module_init(ecryptfs_init)
module_exit(ecryptfs_exit)