Blame view

fs/ecryptfs/ecryptfs_kernel.h 25 KB
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
1
2
3
4
5
6
  /**
   * eCryptfs: Linux filesystem encryption layer
   * Kernel declarations.
   *
   * Copyright (C) 1997-2003 Erez Zadok
   * Copyright (C) 2001-2003 Stony Brook University
f66e883eb   Michael Halcrow   eCryptfs: integra...
7
   * Copyright (C) 2004-2008 International Business Machines Corp.
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
8
   *   Author(s): Michael A. Halcrow <mahalcro@us.ibm.com>
88b4a07e6   Michael Halcrow   [PATCH] eCryptfs:...
9
10
   *              Trevor S. Highland <trevor.highland@gmail.com>
   *              Tyler Hicks <tyhicks@ou.edu>
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
   *
   * 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.
   */
  
  #ifndef ECRYPTFS_KERNEL_H
  #define ECRYPTFS_KERNEL_H
3095e8e36   Herbert Xu   eCryptfs: Use skc...
30
  #include <crypto/skcipher.h>
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
31
  #include <keys/user-type.h>
1252cc3b2   Roberto Sassu   eCryptfs: added s...
32
  #include <keys/encrypted-type.h>
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
33
  #include <linux/fs.h>
0cc72dc7f   Josef "Jeff" Sipek   [PATCH] eCryptfs:...
34
  #include <linux/fs_stack.h>
b65d34fd4   Josef "Jeff" Sipek   [PATCH] struct pa...
35
  #include <linux/namei.h>
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
36
  #include <linux/scatterlist.h>
dddfa461f   Michael Halcrow   [PATCH] eCryptfs:...
37
  #include <linux/hash.h>
6a3fd92e7   Michael Halcrow   eCryptfs: make ke...
38
  #include <linux/nsproxy.h>
9df9c8b93   Jens Axboe   ecryptfs: add bdi...
39
  #include <linux/backing-dev.h>
f8f852710   Roberto Sassu   eCryptfs: export ...
40
  #include <linux/ecryptfs.h>
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
41

237fead61   Michael Halcrow   [PATCH] ecryptfs:...
42
  #define ECRYPTFS_DEFAULT_IV_BYTES 16
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
43
44
  #define ECRYPTFS_DEFAULT_EXTENT_SIZE 4096
  #define ECRYPTFS_MINIMUM_HEADER_EXTENT_SIZE 8192
88b4a07e6   Michael Halcrow   [PATCH] eCryptfs:...
45
46
47
  #define ECRYPTFS_DEFAULT_MSG_CTX_ELEMS 32
  #define ECRYPTFS_DEFAULT_SEND_TIMEOUT HZ
  #define ECRYPTFS_MAX_MSG_CTX_TTL (HZ*3)
88b4a07e6   Michael Halcrow   [PATCH] eCryptfs:...
48
49
  #define ECRYPTFS_DEFAULT_NUM_USERS 4
  #define ECRYPTFS_MAX_NUM_USERS 32768
dd2a3b7ad   Michael Halcrow   [PATCH] eCryptfs:...
50
  #define ECRYPTFS_XATTR_NAME "user.ecryptfs"
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
51

237fead61   Michael Halcrow   [PATCH] ecryptfs:...
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
  void ecryptfs_dump_auth_tok(struct ecryptfs_auth_tok *auth_tok);
  extern void ecryptfs_to_hex(char *dst, char *src, size_t src_size);
  extern void ecryptfs_from_hex(char *dst, char *src, int dst_size);
  
  struct ecryptfs_key_record {
  	unsigned char type;
  	size_t enc_key_size;
  	unsigned char sig[ECRYPTFS_SIG_SIZE];
  	unsigned char enc_key[ECRYPTFS_MAX_ENCRYPTED_KEY_BYTES];
  };
  
  struct ecryptfs_auth_tok_list {
  	struct ecryptfs_auth_tok *auth_tok;
  	struct list_head list;
  };
  
  struct ecryptfs_crypt_stat;
  struct ecryptfs_mount_crypt_stat;
  
  struct ecryptfs_page_crypt_context {
  	struct page *page;
  #define ECRYPTFS_PREPARE_COMMIT_MODE 0
  #define ECRYPTFS_WRITEPAGE_MODE      1
  	unsigned int mode;
  	union {
  		struct file *lower_file;
  		struct writeback_control *wbc;
  	} param;
  };
1252cc3b2   Roberto Sassu   eCryptfs: added s...
81
82
83
84
85
86
  #if defined(CONFIG_ENCRYPTED_KEYS) || defined(CONFIG_ENCRYPTED_KEYS_MODULE)
  static inline struct ecryptfs_auth_tok *
  ecryptfs_get_encrypted_key_payload_data(struct key *key)
  {
  	if (key->type == &key_type_encrypted)
  		return (struct ecryptfs_auth_tok *)
146aa8b14   David Howells   KEYS: Merge the t...
87
  			(&((struct encrypted_key_payload *)key->payload.data[0])->payload_data);
1252cc3b2   Roberto Sassu   eCryptfs: added s...
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
  	else
  		return NULL;
  }
  
  static inline struct key *ecryptfs_get_encrypted_key(char *sig)
  {
  	return request_key(&key_type_encrypted, sig, NULL);
  }
  
  #else
  static inline struct ecryptfs_auth_tok *
  ecryptfs_get_encrypted_key_payload_data(struct key *key)
  {
  	return NULL;
  }
  
  static inline struct key *ecryptfs_get_encrypted_key(char *sig)
  {
  	return ERR_PTR(-ENOKEY);
  }
  
  #endif /* CONFIG_ENCRYPTED_KEYS */
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
110
111
112
  static inline struct ecryptfs_auth_tok *
  ecryptfs_get_key_payload_data(struct key *key)
  {
1252cc3b2   Roberto Sassu   eCryptfs: added s...
113
114
115
116
  	struct ecryptfs_auth_tok *auth_tok;
  
  	auth_tok = ecryptfs_get_encrypted_key_payload_data(key);
  	if (!auth_tok)
146aa8b14   David Howells   KEYS: Merge the t...
117
  		return (struct ecryptfs_auth_tok *)user_key_payload(key)->data;
1252cc3b2   Roberto Sassu   eCryptfs: added s...
118
119
  	else
  		return auth_tok;
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
120
  }
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
121
  #define ECRYPTFS_MAX_KEYSET_SIZE 1024
2a559a8bd   Colin Ian King   eCryptfs: ensure ...
122
  #define ECRYPTFS_MAX_CIPHER_NAME_SIZE 31
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
123
  #define ECRYPTFS_MAX_NUM_ENC_KEYS 64
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
124
125
126
127
  #define ECRYPTFS_MAX_IV_BYTES 16	/* 128 bits */
  #define ECRYPTFS_SALT_BYTES 2
  #define MAGIC_ECRYPTFS_MARKER 0x3c81b7f5
  #define MAGIC_ECRYPTFS_MARKER_SIZE_BYTES 8	/* 4*2 */
45eaab796   Michael Halcrow   eCryptfs: remove ...
128
  #define ECRYPTFS_FILE_SIZE_BYTES (sizeof(u64))
778aeb42a   Tyler Hicks   eCryptfs: Cleanup...
129
130
  #define ECRYPTFS_SIZE_AND_MARKER_BYTES (ECRYPTFS_FILE_SIZE_BYTES \
  					+ MAGIC_ECRYPTFS_MARKER_SIZE_BYTES)
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
131
132
  #define ECRYPTFS_DEFAULT_CIPHER "aes"
  #define ECRYPTFS_DEFAULT_KEY_BYTES 16
565d9724b   Michael Halcrow   [PATCH] eCryptfs:...
133
  #define ECRYPTFS_DEFAULT_HASH "md5"
9c79f34f7   Michael Halcrow   eCryptfs: Filenam...
134
  #define ECRYPTFS_TAG_70_DIGEST ECRYPTFS_DEFAULT_HASH
88b4a07e6   Michael Halcrow   [PATCH] eCryptfs:...
135
  #define ECRYPTFS_TAG_1_PACKET_TYPE 0x01
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
136
137
  #define ECRYPTFS_TAG_3_PACKET_TYPE 0x8C
  #define ECRYPTFS_TAG_11_PACKET_TYPE 0xED
88b4a07e6   Michael Halcrow   [PATCH] eCryptfs:...
138
139
140
141
  #define ECRYPTFS_TAG_64_PACKET_TYPE 0x40
  #define ECRYPTFS_TAG_65_PACKET_TYPE 0x41
  #define ECRYPTFS_TAG_66_PACKET_TYPE 0x42
  #define ECRYPTFS_TAG_67_PACKET_TYPE 0x43
9c79f34f7   Michael Halcrow   eCryptfs: Filenam...
142
143
144
145
146
147
148
149
  #define ECRYPTFS_TAG_70_PACKET_TYPE 0x46 /* FNEK-encrypted filename
  					  * as dentry name */
  #define ECRYPTFS_TAG_71_PACKET_TYPE 0x47 /* FNEK-encrypted filename in
  					  * metadata */
  #define ECRYPTFS_TAG_72_PACKET_TYPE 0x48 /* FEK-encrypted filename as
  					  * dentry name */
  #define ECRYPTFS_TAG_73_PACKET_TYPE 0x49 /* FEK-encrypted filename as
  					  * metadata */
48399c0b0   Tyler Hicks   eCryptfs: Replace...
150
151
152
153
154
  #define ECRYPTFS_MIN_PKT_LEN_SIZE 1 /* Min size to specify packet length */
  #define ECRYPTFS_MAX_PKT_LEN_SIZE 2 /* Pass at least this many bytes to
  				     * ecryptfs_parse_packet_length() and
  				     * ecryptfs_write_packet_length()
  				     */
9c79f34f7   Michael Halcrow   eCryptfs: Filenam...
155
156
157
158
  /* Constraint: ECRYPTFS_FILENAME_MIN_RANDOM_PREPEND_BYTES >=
   * ECRYPTFS_MAX_IV_BYTES */
  #define ECRYPTFS_FILENAME_MIN_RANDOM_PREPEND_BYTES 16
  #define ECRYPTFS_NON_NULL 0x42 /* A reasonable substitute for NULL */
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
159
  #define MD5_DIGEST_SIZE 16
9c79f34f7   Michael Halcrow   eCryptfs: Filenam...
160
  #define ECRYPTFS_TAG_70_DIGEST_SIZE MD5_DIGEST_SIZE
4a26620df   Tyler Hicks   eCryptfs: Improve...
161
162
163
164
  #define ECRYPTFS_TAG_70_MIN_METADATA_SIZE (1 + ECRYPTFS_MIN_PKT_LEN_SIZE \
  					   + ECRYPTFS_SIG_SIZE + 1 + 1)
  #define ECRYPTFS_TAG_70_MAX_METADATA_SIZE (1 + ECRYPTFS_MAX_PKT_LEN_SIZE \
  					   + ECRYPTFS_SIG_SIZE + 1 + 1)
9c79f34f7   Michael Halcrow   eCryptfs: Filenam...
165
166
167
168
169
  #define ECRYPTFS_FEK_ENCRYPTED_FILENAME_PREFIX "ECRYPTFS_FEK_ENCRYPTED."
  #define ECRYPTFS_FEK_ENCRYPTED_FILENAME_PREFIX_SIZE 23
  #define ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX "ECRYPTFS_FNEK_ENCRYPTED."
  #define ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE 24
  #define ECRYPTFS_ENCRYPTED_DENTRY_NAME_LEN (18 + 1 + 4 + 1 + 32)
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
170

290502bee   Kees Cook   eCryptfs: allow u...
171
172
173
174
175
176
177
178
179
180
181
182
183
  #ifdef CONFIG_ECRYPT_FS_MESSAGING
  # define ECRYPTFS_VERSIONING_MASK_MESSAGING (ECRYPTFS_VERSIONING_DEVMISC \
  					     | ECRYPTFS_VERSIONING_PUBKEY)
  #else
  # define ECRYPTFS_VERSIONING_MASK_MESSAGING 0
  #endif
  
  #define ECRYPTFS_VERSIONING_MASK (ECRYPTFS_VERSIONING_PASSPHRASE \
  				  | ECRYPTFS_VERSIONING_PLAINTEXT_PASSTHROUGH \
  				  | ECRYPTFS_VERSIONING_XATTR \
  				  | ECRYPTFS_VERSIONING_MULTKEY \
  				  | ECRYPTFS_VERSIONING_MASK_MESSAGING \
  				  | ECRYPTFS_VERSIONING_FILENAME_ENCRYPTION)
f4aad16ad   Michael Halcrow   eCryptfs: add key...
184
185
  struct ecryptfs_key_sig {
  	struct list_head crypt_stat_list;
7762e230f   Roberto Sassu   eCryptfs: modifie...
186
  	char keysig[ECRYPTFS_SIG_SIZE_HEX + 1];
f4aad16ad   Michael Halcrow   eCryptfs: add key...
187
  };
a34f60f74   Michael Halcrow   eCryptfs: Filenam...
188
189
190
191
192
193
194
195
196
197
198
199
  struct ecryptfs_filename {
  	struct list_head crypt_stat_list;
  #define ECRYPTFS_FILENAME_CONTAINS_DECRYPTED 0x00000001
  	u32 flags;
  	u32 seq_no;
  	char *filename;
  	char *encrypted_filename;
  	size_t filename_size;
  	size_t encrypted_filename_size;
  	char fnek_sig[ECRYPTFS_SIG_SIZE_HEX];
  	char dentry_name[ECRYPTFS_ENCRYPTED_DENTRY_NAME_LEN + 1];
  };
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
200
201
202
203
204
205
  /**
   * This is the primary struct associated with each encrypted file.
   *
   * TODO: cache align/pack?
   */
  struct ecryptfs_crypt_stat {
a34f60f74   Michael Halcrow   eCryptfs: Filenam...
206
207
  #define ECRYPTFS_STRUCT_INITIALIZED   0x00000001
  #define ECRYPTFS_POLICY_APPLIED       0x00000002
fed8859b3   Tyler Hicks   eCryptfs: Remove ...
208
209
210
211
212
213
214
215
216
217
218
219
  #define ECRYPTFS_ENCRYPTED            0x00000004
  #define ECRYPTFS_SECURITY_WARNING     0x00000008
  #define ECRYPTFS_ENABLE_HMAC          0x00000010
  #define ECRYPTFS_ENCRYPT_IV_PAGES     0x00000020
  #define ECRYPTFS_KEY_VALID            0x00000040
  #define ECRYPTFS_METADATA_IN_XATTR    0x00000080
  #define ECRYPTFS_VIEW_AS_ENCRYPTED    0x00000100
  #define ECRYPTFS_KEY_SET              0x00000200
  #define ECRYPTFS_ENCRYPT_FILENAMES    0x00000400
  #define ECRYPTFS_ENCFN_USE_MOUNT_FNEK 0x00000800
  #define ECRYPTFS_ENCFN_USE_FEK        0x00001000
  #define ECRYPTFS_UNLINK_SIGS          0x00002000
3aeb86ea4   Tyler Hicks   eCryptfs: Handle ...
220
  #define ECRYPTFS_I_SIZE_INITIALIZED   0x00004000
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
221
222
223
  	u32 flags;
  	unsigned int file_version;
  	size_t iv_bytes;
fa3ef1cb4   Tyler Hicks   eCryptfs: Rename ...
224
  	size_t metadata_size;
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
225
226
227
228
229
  	size_t extent_size; /* Data extent size; default is 4096 */
  	size_t key_size;
  	size_t extent_shift;
  	unsigned int extent_mask;
  	struct ecryptfs_mount_crypt_stat *mount_crypt_stat;
3095e8e36   Herbert Xu   eCryptfs: Use skc...
230
231
232
  	struct crypto_skcipher *tfm;
  	struct crypto_shash *hash_tfm; /* Crypto context for generating
  					* the initialization vectors */
2a559a8bd   Colin Ian King   eCryptfs: ensure ...
233
  	unsigned char cipher[ECRYPTFS_MAX_CIPHER_NAME_SIZE + 1];
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
234
235
  	unsigned char key[ECRYPTFS_MAX_KEY_BYTES];
  	unsigned char root_iv[ECRYPTFS_MAX_IV_BYTES];
f4aad16ad   Michael Halcrow   eCryptfs: add key...
236
237
  	struct list_head keysig_list;
  	struct mutex keysig_list_mutex;
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
238
  	struct mutex cs_tfm_mutex;
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
239
240
241
242
243
244
245
  	struct mutex cs_mutex;
  };
  
  /* inode private data. */
  struct ecryptfs_inode_info {
  	struct inode vfs_inode;
  	struct inode *wii_inode;
332ab16f8   Tyler Hicks   eCryptfs: Add ref...
246
247
  	struct mutex lower_file_mutex;
  	atomic_t lower_file_count;
da0102a10   Michael Halcrow   eCryptfs: read_wr...
248
  	struct file *lower_file;
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
249
250
251
252
253
254
  	struct ecryptfs_crypt_stat crypt_stat;
  };
  
  /* dentry private data. Each dentry must keep track of a lower
   * vfsmount too. */
  struct ecryptfs_dentry_info {
b65d34fd4   Josef "Jeff" Sipek   [PATCH] struct pa...
255
  	struct path lower_path;
2edbfbf1c   Al Viro   ecryptfs: don't l...
256
257
258
259
  	union {
  		struct ecryptfs_crypt_stat *crypt_stat;
  		struct rcu_head rcu;
  	};
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
260
  };
6c6f57f3b   Michael Halcrow   eCryptfs: comment...
261
  /**
45eaab796   Michael Halcrow   eCryptfs: remove ...
262
263
264
265
266
267
268
269
270
271
272
   * ecryptfs_global_auth_tok - A key used to encrypt all new files under the mountpoint
   * @flags: Status flags
   * @mount_crypt_stat_list: These auth_toks hang off the mount-wide
   *                         cryptographic context. Every time a new
   *                         inode comes into existence, eCryptfs copies
   *                         the auth_toks on that list to the set of
   *                         auth_toks on the inode's crypt_stat
   * @global_auth_tok_key: The key from the user's keyring for the sig
   * @global_auth_tok: The key contents
   * @sig: The key identifier
   *
6c6f57f3b   Michael Halcrow   eCryptfs: comment...
273
274
275
276
277
278
279
   * ecryptfs_global_auth_tok structs refer to authentication token keys
   * in the user keyring that apply to newly created files. A list of
   * these objects hangs off of the mount_crypt_stat struct for any
   * given eCryptfs mount. This struct maintains a reference to both the
   * key contents and the key itself so that the key can be put on
   * unmount.
   */
f4aad16ad   Michael Halcrow   eCryptfs: add key...
280
281
  struct ecryptfs_global_auth_tok {
  #define ECRYPTFS_AUTH_TOK_INVALID 0x00000001
84814d642   Tyler Hicks   eCryptfs: don't e...
282
  #define ECRYPTFS_AUTH_TOK_FNEK    0x00000002
f4aad16ad   Michael Halcrow   eCryptfs: add key...
283
  	u32 flags;
45eaab796   Michael Halcrow   eCryptfs: remove ...
284
285
  	struct list_head mount_crypt_stat_list;
  	struct key *global_auth_tok_key;
45eaab796   Michael Halcrow   eCryptfs: remove ...
286
  	unsigned char sig[ECRYPTFS_SIG_SIZE_HEX + 1];
f4aad16ad   Michael Halcrow   eCryptfs: add key...
287
  };
6c6f57f3b   Michael Halcrow   eCryptfs: comment...
288
  /**
45eaab796   Michael Halcrow   eCryptfs: remove ...
289
290
291
292
293
294
295
296
   * ecryptfs_key_tfm - Persistent key tfm
   * @key_tfm: crypto API handle to the key
   * @key_size: Key size in bytes
   * @key_tfm_mutex: Mutex to ensure only one operation in eCryptfs is
   *                 using the persistent TFM at any point in time
   * @key_tfm_list: Handle to hang this off the module-wide TFM list
   * @cipher_name: String name for the cipher for this TFM
   *
6c6f57f3b   Michael Halcrow   eCryptfs: comment...
297
298
299
300
301
   * Typically, eCryptfs will use the same ciphers repeatedly throughout
   * the course of its operations. In order to avoid unnecessarily
   * destroying and initializing the same cipher repeatedly, eCryptfs
   * keeps a list of crypto API contexts around to use when needed.
   */
f4aad16ad   Michael Halcrow   eCryptfs: add key...
302
  struct ecryptfs_key_tfm {
3095e8e36   Herbert Xu   eCryptfs: Use skc...
303
  	struct crypto_skcipher *key_tfm;
f4aad16ad   Michael Halcrow   eCryptfs: add key...
304
305
  	size_t key_size;
  	struct mutex key_tfm_mutex;
45eaab796   Michael Halcrow   eCryptfs: remove ...
306
  	struct list_head key_tfm_list;
f4aad16ad   Michael Halcrow   eCryptfs: add key...
307
308
  	unsigned char cipher_name[ECRYPTFS_MAX_CIPHER_NAME_SIZE + 1];
  };
af440f529   Eric Sandeen   ecryptfs: check f...
309
  extern struct mutex key_tfm_list_mutex;
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
310
311
312
313
314
315
316
317
318
  /**
   * This struct is to enable a mount-wide passphrase/salt combo. This
   * is more or less a stopgap to provide similar functionality to other
   * crypto filesystems like EncFS or CFS until full policy support is
   * implemented in eCryptfs.
   */
  struct ecryptfs_mount_crypt_stat {
  	/* Pointers to memory we do not own, do not free these */
  #define ECRYPTFS_PLAINTEXT_PASSTHROUGH_ENABLED 0x00000001
17398957a   Michael Halcrow   [PATCH] eCryptfs:...
319
320
  #define ECRYPTFS_XATTR_METADATA_ENABLED        0x00000002
  #define ECRYPTFS_ENCRYPTED_VIEW_ENABLED        0x00000004
f4aad16ad   Michael Halcrow   eCryptfs: add key...
321
  #define ECRYPTFS_MOUNT_CRYPT_STAT_INITIALIZED  0x00000008
9c79f34f7   Michael Halcrow   eCryptfs: Filenam...
322
323
324
  #define ECRYPTFS_GLOBAL_ENCRYPT_FILENAMES      0x00000010
  #define ECRYPTFS_GLOBAL_ENCFN_USE_MOUNT_FNEK   0x00000020
  #define ECRYPTFS_GLOBAL_ENCFN_USE_FEK          0x00000040
f16feb511   Roberto Sassu   ecryptfs: added e...
325
  #define ECRYPTFS_GLOBAL_MOUNT_AUTH_TOK_ONLY    0x00000080
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
326
  	u32 flags;
f4aad16ad   Michael Halcrow   eCryptfs: add key...
327
328
  	struct list_head global_auth_tok_list;
  	struct mutex global_auth_tok_list_mutex;
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
329
  	size_t global_default_cipher_key_size;
9c79f34f7   Michael Halcrow   eCryptfs: Filenam...
330
  	size_t global_default_fn_cipher_key_bytes;
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
331
332
  	unsigned char global_default_cipher_name[ECRYPTFS_MAX_CIPHER_NAME_SIZE
  						 + 1];
9c79f34f7   Michael Halcrow   eCryptfs: Filenam...
333
334
335
  	unsigned char global_default_fn_cipher_name[
  		ECRYPTFS_MAX_CIPHER_NAME_SIZE + 1];
  	char global_default_fnek_sig[ECRYPTFS_SIG_SIZE_HEX + 1];
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
336
337
338
339
340
341
  };
  
  /* superblock private data. */
  struct ecryptfs_sb_info {
  	struct super_block *wsi_sb;
  	struct ecryptfs_mount_crypt_stat mount_crypt_stat;
9df9c8b93   Jens Axboe   ecryptfs: add bdi...
342
  	struct backing_dev_info bdi;
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
343
344
345
346
347
348
349
350
351
352
353
354
355
356
  };
  
  /* file private data. */
  struct ecryptfs_file_info {
  	struct file *wfi_file;
  	struct ecryptfs_crypt_stat *crypt_stat;
  };
  
  /* auth_tok <=> encrypted_session_key mappings */
  struct ecryptfs_auth_tok_list_item {
  	unsigned char encrypted_session_key[ECRYPTFS_MAX_KEY_BYTES];
  	struct list_head list;
  	struct ecryptfs_auth_tok auth_tok;
  };
88b4a07e6   Michael Halcrow   [PATCH] eCryptfs:...
357
  struct ecryptfs_message {
f66e883eb   Michael Halcrow   eCryptfs: integra...
358
359
360
  	/* Can never be greater than ecryptfs_message_buf_len */
  	/* Used to find the parent msg_ctx */
  	/* Inherits from msg_ctx->index */
88b4a07e6   Michael Halcrow   [PATCH] eCryptfs:...
361
362
363
364
365
366
  	u32 index;
  	u32 data_len;
  	u8 data[];
  };
  
  struct ecryptfs_msg_ctx {
f66e883eb   Michael Halcrow   eCryptfs: integra...
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
  #define ECRYPTFS_MSG_CTX_STATE_FREE     0x01
  #define ECRYPTFS_MSG_CTX_STATE_PENDING  0x02
  #define ECRYPTFS_MSG_CTX_STATE_DONE     0x03
  #define ECRYPTFS_MSG_CTX_STATE_NO_REPLY 0x04
  	u8 state;
  #define ECRYPTFS_MSG_HELO 100
  #define ECRYPTFS_MSG_QUIT 101
  #define ECRYPTFS_MSG_REQUEST 102
  #define ECRYPTFS_MSG_RESPONSE 103
  	u8 type;
  	u32 index;
  	/* Counter converts to a sequence number. Each message sent
  	 * out for which we expect a response has an associated
  	 * sequence number. The response must have the same sequence
  	 * number as the counter for the msg_stc for the message to be
  	 * valid. */
  	u32 counter;
  	size_t msg_size;
88b4a07e6   Michael Halcrow   [PATCH] eCryptfs:...
385
386
387
  	struct ecryptfs_message *msg;
  	struct task_struct *task;
  	struct list_head node;
f66e883eb   Michael Halcrow   eCryptfs: integra...
388
  	struct list_head daemon_out_list;
88b4a07e6   Michael Halcrow   [PATCH] eCryptfs:...
389
390
  	struct mutex mux;
  };
f66e883eb   Michael Halcrow   eCryptfs: integra...
391
392
393
394
395
396
397
  struct ecryptfs_daemon {
  #define ECRYPTFS_DAEMON_IN_READ      0x00000001
  #define ECRYPTFS_DAEMON_IN_POLL      0x00000002
  #define ECRYPTFS_DAEMON_ZOMBIE       0x00000004
  #define ECRYPTFS_DAEMON_MISCDEV_OPEN 0x00000008
  	u32 flags;
  	u32 num_queued_msg_ctx;
2ecaf55db   Tyler Hicks   eCryptfs: Make al...
398
  	struct file *file;
f66e883eb   Michael Halcrow   eCryptfs: integra...
399
400
401
402
  	struct mutex mux;
  	struct list_head msg_ctx_out_queue;
  	wait_queue_head_t wait;
  	struct hlist_node euid_chain;
88b4a07e6   Michael Halcrow   [PATCH] eCryptfs:...
403
  };
290502bee   Kees Cook   eCryptfs: allow u...
404
  #ifdef CONFIG_ECRYPT_FS_MESSAGING
f66e883eb   Michael Halcrow   eCryptfs: integra...
405
  extern struct mutex ecryptfs_daemon_hash_mux;
290502bee   Kees Cook   eCryptfs: allow u...
406
  #endif
f66e883eb   Michael Halcrow   eCryptfs: integra...
407

157f10713   Tyler Hicks   eCryptfs: Fix met...
408
409
410
411
412
  static inline size_t
  ecryptfs_lower_header_size(struct ecryptfs_crypt_stat *crypt_stat)
  {
  	if (crypt_stat->flags & ECRYPTFS_METADATA_IN_XATTR)
  		return 0;
fa3ef1cb4   Tyler Hicks   eCryptfs: Rename ...
413
  	return crypt_stat->metadata_size;
157f10713   Tyler Hicks   eCryptfs: Fix met...
414
  }
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
415
416
417
  static inline struct ecryptfs_file_info *
  ecryptfs_file_to_private(struct file *file)
  {
0c6d7d5da   Joe Perches   fs/ecryptfs: Remo...
418
  	return file->private_data;
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
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
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
  }
  
  static inline void
  ecryptfs_set_file_private(struct file *file,
  			  struct ecryptfs_file_info *file_info)
  {
  	file->private_data = file_info;
  }
  
  static inline struct file *ecryptfs_file_to_lower(struct file *file)
  {
  	return ((struct ecryptfs_file_info *)file->private_data)->wfi_file;
  }
  
  static inline void
  ecryptfs_set_file_lower(struct file *file, struct file *lower_file)
  {
  	((struct ecryptfs_file_info *)file->private_data)->wfi_file =
  		lower_file;
  }
  
  static inline struct ecryptfs_inode_info *
  ecryptfs_inode_to_private(struct inode *inode)
  {
  	return container_of(inode, struct ecryptfs_inode_info, vfs_inode);
  }
  
  static inline struct inode *ecryptfs_inode_to_lower(struct inode *inode)
  {
  	return ecryptfs_inode_to_private(inode)->wii_inode;
  }
  
  static inline void
  ecryptfs_set_inode_lower(struct inode *inode, struct inode *lower_inode)
  {
  	ecryptfs_inode_to_private(inode)->wii_inode = lower_inode;
  }
  
  static inline struct ecryptfs_sb_info *
  ecryptfs_superblock_to_private(struct super_block *sb)
  {
  	return (struct ecryptfs_sb_info *)sb->s_fs_info;
  }
  
  static inline void
  ecryptfs_set_superblock_private(struct super_block *sb,
  				struct ecryptfs_sb_info *sb_info)
  {
  	sb->s_fs_info = sb_info;
  }
  
  static inline struct super_block *
  ecryptfs_superblock_to_lower(struct super_block *sb)
  {
  	return ((struct ecryptfs_sb_info *)sb->s_fs_info)->wsi_sb;
  }
  
  static inline void
  ecryptfs_set_superblock_lower(struct super_block *sb,
  			      struct super_block *lower_sb)
  {
  	((struct ecryptfs_sb_info *)sb->s_fs_info)->wsi_sb = lower_sb;
  }
  
  static inline struct ecryptfs_dentry_info *
  ecryptfs_dentry_to_private(struct dentry *dentry)
  {
  	return (struct ecryptfs_dentry_info *)dentry->d_fsdata;
  }
  
  static inline void
  ecryptfs_set_dentry_private(struct dentry *dentry,
  			    struct ecryptfs_dentry_info *dentry_info)
  {
  	dentry->d_fsdata = dentry_info;
  }
  
  static inline struct dentry *
  ecryptfs_dentry_to_lower(struct dentry *dentry)
  {
b65d34fd4   Josef "Jeff" Sipek   [PATCH] struct pa...
499
  	return ((struct ecryptfs_dentry_info *)dentry->d_fsdata)->lower_path.dentry;
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
500
  }
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
501
502
503
  static inline struct vfsmount *
  ecryptfs_dentry_to_lower_mnt(struct dentry *dentry)
  {
b65d34fd4   Josef "Jeff" Sipek   [PATCH] struct pa...
504
  	return ((struct ecryptfs_dentry_info *)dentry->d_fsdata)->lower_path.mnt;
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
505
  }
3dadecce2   Al Viro   switch vfs_getatt...
506
507
508
509
510
  static inline struct path *
  ecryptfs_dentry_to_lower_path(struct dentry *dentry)
  {
  	return &((struct ecryptfs_dentry_info *)dentry->d_fsdata)->lower_path;
  }
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
511
  #define ecryptfs_printk(type, fmt, arg...) \
18d1dbf1d   Harvey Harrison   ecryptfs: replace...
512
          __ecryptfs_printk(type "%s: " fmt, __func__, ## arg);
b9075fa96   Joe Perches   treewide: use __p...
513
  __printf(1, 2)
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
514
515
516
517
  void __ecryptfs_printk(const char *fmt, ...);
  
  extern const struct file_operations ecryptfs_main_fops;
  extern const struct file_operations ecryptfs_dir_fops;
754661f14   Arjan van de Ven   [PATCH] mark stru...
518
519
520
  extern const struct inode_operations ecryptfs_main_iops;
  extern const struct inode_operations ecryptfs_dir_iops;
  extern const struct inode_operations ecryptfs_symlink_iops;
ee9b6d61a   Josef 'Jeff' Sipek   [PATCH] Mark stru...
521
  extern const struct super_operations ecryptfs_sops;
5a3fd05a9   Al Viro   constify dentry_o...
522
  extern const struct dentry_operations ecryptfs_dops;
7f09410bb   Alexey Dobriyan   const: mark remai...
523
  extern const struct address_space_operations ecryptfs_aops;
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
524
  extern int ecryptfs_verbosity;
88b4a07e6   Michael Halcrow   [PATCH] eCryptfs:...
525
526
527
  extern unsigned int ecryptfs_message_buf_len;
  extern signed long ecryptfs_message_wait_timeout;
  extern unsigned int ecryptfs_number_of_users;
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
528
529
530
531
532
533
  
  extern struct kmem_cache *ecryptfs_auth_tok_list_item_cache;
  extern struct kmem_cache *ecryptfs_file_info_cache;
  extern struct kmem_cache *ecryptfs_dentry_info_cache;
  extern struct kmem_cache *ecryptfs_inode_info_cache;
  extern struct kmem_cache *ecryptfs_sb_info_cache;
306328705   Tyler Hicks   eCryptfs: Remove ...
534
  extern struct kmem_cache *ecryptfs_header_cache;
dd2a3b7ad   Michael Halcrow   [PATCH] eCryptfs:...
535
  extern struct kmem_cache *ecryptfs_xattr_cache;
eb95e7ffa   Michael Halcrow   [PATCH] eCryptfs:...
536
  extern struct kmem_cache *ecryptfs_key_record_cache;
f4aad16ad   Michael Halcrow   eCryptfs: add key...
537
538
539
  extern struct kmem_cache *ecryptfs_key_sig_cache;
  extern struct kmem_cache *ecryptfs_global_auth_tok_cache;
  extern struct kmem_cache *ecryptfs_key_tfm_cache;
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
540

c4f790736   Tyler Hicks   eCryptfs: Consoli...
541
542
  struct inode *ecryptfs_get_inode(struct inode *lower_inode,
  				 struct super_block *sb);
3aeb86ea4   Tyler Hicks   eCryptfs: Handle ...
543
  void ecryptfs_i_size_init(const char *page_virt, struct inode *inode);
e3ccaa976   Tyler Hicks   eCryptfs: Initial...
544
545
  int ecryptfs_initialize_file(struct dentry *ecryptfs_dentry,
  			     struct inode *ecryptfs_inode);
a34f60f74   Michael Halcrow   eCryptfs: Filenam...
546
547
  int ecryptfs_decode_and_decrypt_filename(char **decrypted_name,
  					 size_t *decrypted_name_size,
0747fdb2b   Al Viro   ecryptfs: switch ...
548
  					 struct super_block *sb,
a34f60f74   Michael Halcrow   eCryptfs: Filenam...
549
  					 const char *name, size_t name_size);
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
550
  int ecryptfs_fill_zeros(struct file *file, loff_t new_length);
a34f60f74   Michael Halcrow   eCryptfs: Filenam...
551
552
553
  int ecryptfs_encrypt_and_encode_filename(
  	char **encoded_name,
  	size_t *encoded_name_size,
a34f60f74   Michael Halcrow   eCryptfs: Filenam...
554
555
  	struct ecryptfs_mount_crypt_stat *mount_crypt_stat,
  	const char *name, size_t name_size);
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
556
  struct dentry *ecryptfs_lower_dentry(struct dentry *this_dentry);
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
557
558
559
560
561
  void ecryptfs_dump_hex(char *data, int bytes);
  int virt_to_scatterlist(const void *addr, int size, struct scatterlist *sg,
  			int sg_size);
  int ecryptfs_compute_root_iv(struct ecryptfs_crypt_stat *crypt_stat);
  void ecryptfs_rotate_iv(unsigned char *iv);
e81f3340b   Herbert Xu   eCryptfs: Do not ...
562
  int ecryptfs_init_crypt_stat(struct ecryptfs_crypt_stat *crypt_stat);
fcd128356   Michael Halcrow   eCryptfs: grammat...
563
564
  void ecryptfs_destroy_crypt_stat(struct ecryptfs_crypt_stat *crypt_stat);
  void ecryptfs_destroy_mount_crypt_stat(
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
565
566
  	struct ecryptfs_mount_crypt_stat *mount_crypt_stat);
  int ecryptfs_init_crypt_ctx(struct ecryptfs_crypt_stat *crypt_stat);
b6c1d8fcb   Michael Halcrow   eCryptfs: remove ...
567
  int ecryptfs_write_inode_size_to_metadata(struct inode *ecryptfs_inode);
0216f7f79   Michael Halcrow   eCryptfs: replace...
568
569
  int ecryptfs_encrypt_page(struct page *page);
  int ecryptfs_decrypt_page(struct page *page);
b59db43ad   Tyler Hicks   eCryptfs: Prevent...
570
571
  int ecryptfs_write_metadata(struct dentry *ecryptfs_dentry,
  			    struct inode *ecryptfs_inode);
d7cdc5feb   Michael Halcrow   eCryptfs: update ...
572
  int ecryptfs_read_metadata(struct dentry *ecryptfs_dentry);
b59db43ad   Tyler Hicks   eCryptfs: Prevent...
573
  int ecryptfs_new_file_context(struct inode *ecryptfs_inode);
f4e60e6b3   Tyler Hicks   eCryptfs: Strip m...
574
575
576
  void ecryptfs_write_crypt_stat_flags(char *page_virt,
  				     struct ecryptfs_crypt_stat *crypt_stat,
  				     size_t *written);
778aeb42a   Tyler Hicks   eCryptfs: Cleanup...
577
578
  int ecryptfs_read_and_validate_header_region(struct inode *inode);
  int ecryptfs_read_and_validate_xattr_region(struct dentry *dentry,
3b06b3ebf   Tyler Hicks   eCryptfs: Fix new...
579
  					    struct inode *inode);
9c79f34f7   Michael Halcrow   eCryptfs: Filenam...
580
  u8 ecryptfs_code_for_cipher_string(char *cipher_name, size_t key_bytes);
19e66a67e   Trevor Highland   eCryptfs: change ...
581
  int ecryptfs_cipher_code_to_string(char *str, u8 cipher_code);
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
582
583
584
585
586
  void ecryptfs_set_default_sizes(struct ecryptfs_crypt_stat *crypt_stat);
  int ecryptfs_generate_key_packet_set(char *dest_base,
  				     struct ecryptfs_crypt_stat *crypt_stat,
  				     struct dentry *ecryptfs_dentry,
  				     size_t *len, size_t max);
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
587
588
589
590
  int
  ecryptfs_parse_packet_set(struct ecryptfs_crypt_stat *crypt_stat,
  			  unsigned char *src, struct dentry *ecryptfs_dentry);
  int ecryptfs_truncate(struct dentry *dentry, loff_t new_length);
d7cdc5feb   Michael Halcrow   eCryptfs: update ...
591
  ssize_t
ce23e6401   Al Viro   ->getxattr(): pas...
592
593
  ecryptfs_getxattr_lower(struct dentry *lower_dentry, struct inode *lower_inode,
  			const char *name, void *value, size_t size);
dd2a3b7ad   Michael Halcrow   [PATCH] eCryptfs:...
594
  int
3767e255b   Al Viro   switch ->setxattr...
595
596
  ecryptfs_setxattr(struct dentry *dentry, struct inode *inode, const char *name,
  		  const void *value, size_t size, int flags);
d7cdc5feb   Michael Halcrow   eCryptfs: update ...
597
  int ecryptfs_read_xattr_region(char *page_virt, struct inode *ecryptfs_inode);
290502bee   Kees Cook   eCryptfs: allow u...
598
  #ifdef CONFIG_ECRYPT_FS_MESSAGING
2ecaf55db   Tyler Hicks   eCryptfs: Make al...
599
600
  int ecryptfs_process_response(struct ecryptfs_daemon *daemon,
  			      struct ecryptfs_message *msg, u32 seq);
624ae5284   Tyler Hicks   eCryptfs: remove ...
601
  int ecryptfs_send_message(char *data, int data_len,
88b4a07e6   Michael Halcrow   [PATCH] eCryptfs:...
602
603
604
  			  struct ecryptfs_msg_ctx **msg_ctx);
  int ecryptfs_wait_for_response(struct ecryptfs_msg_ctx *msg_ctx,
  			       struct ecryptfs_message **emsg);
624ae5284   Tyler Hicks   eCryptfs: remove ...
605
606
  int ecryptfs_init_messaging(void);
  void ecryptfs_release_messaging(void);
290502bee   Kees Cook   eCryptfs: allow u...
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
  #else
  static inline int ecryptfs_init_messaging(void)
  {
  	return 0;
  }
  static inline void ecryptfs_release_messaging(void)
  { }
  static inline int ecryptfs_send_message(char *data, int data_len,
  					struct ecryptfs_msg_ctx **msg_ctx)
  {
  	return -ENOTCONN;
  }
  static inline int ecryptfs_wait_for_response(struct ecryptfs_msg_ctx *msg_ctx,
  					     struct ecryptfs_message **emsg)
  {
  	return -ENOMSG;
  }
  #endif
624ae5284   Tyler Hicks   eCryptfs: remove ...
625

e77a56ddc   Michael Halcrow   [PATCH] eCryptfs:...
626
627
628
629
  void
  ecryptfs_write_header_metadata(char *virt,
  			       struct ecryptfs_crypt_stat *crypt_stat,
  			       size_t *written);
f4aad16ad   Michael Halcrow   eCryptfs: add key...
630
631
632
  int ecryptfs_add_keysig(struct ecryptfs_crypt_stat *crypt_stat, char *sig);
  int
  ecryptfs_add_global_auth_tok(struct ecryptfs_mount_crypt_stat *mount_crypt_stat,
84814d642   Tyler Hicks   eCryptfs: don't e...
633
  			   char *sig, u32 global_auth_tok_flags);
f4aad16ad   Michael Halcrow   eCryptfs: add key...
634
635
636
637
638
639
640
  int ecryptfs_get_global_auth_tok_for_sig(
  	struct ecryptfs_global_auth_tok **global_auth_tok,
  	struct ecryptfs_mount_crypt_stat *mount_crypt_stat, char *sig);
  int
  ecryptfs_add_new_key_tfm(struct ecryptfs_key_tfm **key_tfm, char *cipher_name,
  			 size_t key_size);
  int ecryptfs_init_crypto(void);
fcd128356   Michael Halcrow   eCryptfs: grammat...
641
  int ecryptfs_destroy_crypto(void);
af440f529   Eric Sandeen   ecryptfs: check f...
642
  int ecryptfs_tfm_exists(char *cipher_name, struct ecryptfs_key_tfm **key_tfm);
3095e8e36   Herbert Xu   eCryptfs: Use skc...
643
  int ecryptfs_get_tfm_and_mutex_for_cipher_name(struct crypto_skcipher **tfm,
f4aad16ad   Michael Halcrow   eCryptfs: add key...
644
645
646
647
648
  					       struct mutex **tfm_mutex,
  					       char *cipher_name);
  int ecryptfs_keyring_auth_tok_for_sig(struct key **auth_tok_key,
  				      struct ecryptfs_auth_tok **auth_tok,
  				      char *sig);
da0102a10   Michael Halcrow   eCryptfs: read_wr...
649
650
651
652
653
  int ecryptfs_write_lower(struct inode *ecryptfs_inode, char *data,
  			 loff_t offset, size_t size);
  int ecryptfs_write_lower_page_segment(struct inode *ecryptfs_inode,
  				      struct page *page_for_lower,
  				      size_t offset_in_page, size_t size);
48c1e44ac   Al Viro   switch ecryptfs_w...
654
  int ecryptfs_write(struct inode *inode, char *data, loff_t offset, size_t size);
da0102a10   Michael Halcrow   eCryptfs: read_wr...
655
656
657
658
659
660
  int ecryptfs_read_lower(char *data, loff_t offset, size_t size,
  			struct inode *ecryptfs_inode);
  int ecryptfs_read_lower_page_segment(struct page *page_for_ecryptfs,
  				     pgoff_t page_index,
  				     size_t offset_in_page, size_t size,
  				     struct inode *ecryptfs_inode);
02bd97997   Al Viro   switch ecryptfs_g...
661
  struct page *ecryptfs_get_locked_page(struct inode *inode, loff_t index);
f66e883eb   Michael Halcrow   eCryptfs: integra...
662
663
664
665
  int ecryptfs_parse_packet_length(unsigned char *data, size_t *size,
  				 size_t *length_size);
  int ecryptfs_write_packet_length(char *dest, size_t size,
  				 size_t *packet_size_length);
290502bee   Kees Cook   eCryptfs: allow u...
666
  #ifdef CONFIG_ECRYPT_FS_MESSAGING
f66e883eb   Michael Halcrow   eCryptfs: integra...
667
668
669
670
671
672
673
  int ecryptfs_init_ecryptfs_miscdev(void);
  void ecryptfs_destroy_ecryptfs_miscdev(void);
  int ecryptfs_send_miscdev(char *data, size_t data_size,
  			  struct ecryptfs_msg_ctx *msg_ctx, u8 msg_type,
  			  u16 msg_flags, struct ecryptfs_daemon *daemon);
  void ecryptfs_msg_ctx_alloc_to_free(struct ecryptfs_msg_ctx *msg_ctx);
  int
2ecaf55db   Tyler Hicks   eCryptfs: Make al...
674
  ecryptfs_spawn_daemon(struct ecryptfs_daemon **daemon, struct file *file);
290502bee   Kees Cook   eCryptfs: allow u...
675
676
677
  int ecryptfs_exorcise_daemon(struct ecryptfs_daemon *daemon);
  int ecryptfs_find_daemon_by_euid(struct ecryptfs_daemon **daemon);
  #endif
746f1e558   Michael Halcrow   eCryptfs: Privile...
678
679
680
681
  int ecryptfs_init_kthread(void);
  void ecryptfs_destroy_kthread(void);
  int ecryptfs_privileged_open(struct file **lower_file,
  			     struct dentry *lower_dentry,
745ca2475   David Howells   CRED: Pass creden...
682
683
  			     struct vfsmount *lower_mnt,
  			     const struct cred *cred);
3b06b3ebf   Tyler Hicks   eCryptfs: Fix new...
684
  int ecryptfs_get_lower_file(struct dentry *dentry, struct inode *inode);
332ab16f8   Tyler Hicks   eCryptfs: Add ref...
685
  void ecryptfs_put_lower_file(struct inode *inode);
9c79f34f7   Michael Halcrow   eCryptfs: Filenam...
686
687
688
689
690
691
692
693
694
695
  int
  ecryptfs_write_tag_70_packet(char *dest, size_t *remaining_bytes,
  			     size_t *packet_size,
  			     struct ecryptfs_mount_crypt_stat *mount_crypt_stat,
  			     char *filename, size_t filename_size);
  int
  ecryptfs_parse_tag_70_packet(char **filename, size_t *filename_size,
  			     size_t *packet_size,
  			     struct ecryptfs_mount_crypt_stat *mount_crypt_stat,
  			     char *data, size_t max_packet_size);
4a26620df   Tyler Hicks   eCryptfs: Improve...
696
697
  int ecryptfs_set_f_namelen(long *namelen, long lower_namelen,
  			   struct ecryptfs_mount_crypt_stat *mount_crypt_stat);
a34f60f74   Michael Halcrow   eCryptfs: Filenam...
698
699
  int ecryptfs_derive_iv(char *iv, struct ecryptfs_crypt_stat *crypt_stat,
  		       loff_t offset);
88b4a07e6   Michael Halcrow   [PATCH] eCryptfs:...
700

4b899da50   Andreas Gruenbacher   ecryptfs: Switch ...
701
  extern const struct xattr_handler *ecryptfs_xattr_handlers[];
237fead61   Michael Halcrow   [PATCH] ecryptfs:...
702
  #endif /* #ifndef ECRYPTFS_KERNEL_H */