Whamcloud - gitweb
LU-12275 sec: ioctls to handle encryption policies
[fs/lustre-release.git] / lustre / llite / super25.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2016, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  */
32
33 #define DEBUG_SUBSYSTEM S_LLITE
34
35 #include <linux/module.h>
36 #include <linux/types.h>
37 #include <linux/version.h>
38 #include <lustre_ha.h>
39 #include <lustre_dlm.h>
40 #include <linux/init.h>
41 #include <linux/fs.h>
42 #include <linux/random.h>
43 #include <lprocfs_status.h>
44 #include "llite_internal.h"
45 #include "vvp_internal.h"
46
47 static struct kmem_cache *ll_inode_cachep;
48
49 static struct inode *ll_alloc_inode(struct super_block *sb)
50 {
51         struct ll_inode_info *lli;
52         OBD_SLAB_ALLOC_PTR_GFP(lli, ll_inode_cachep, GFP_NOFS);
53         if (lli == NULL)
54                 return NULL;
55
56         inode_init_once(&lli->lli_vfs_inode);
57         return &lli->lli_vfs_inode;
58 }
59
60 static void ll_inode_destroy_callback(struct rcu_head *head)
61 {
62         struct inode *inode = container_of(head, struct inode, i_rcu);
63         struct ll_inode_info *ptr = ll_i2info(inode);
64         llcrypt_free_inode(inode);
65         OBD_SLAB_FREE_PTR(ptr, ll_inode_cachep);
66 }
67
68 static void ll_destroy_inode(struct inode *inode)
69 {
70         call_rcu(&inode->i_rcu, ll_inode_destroy_callback);
71 }
72
73 static int ll_drop_inode(struct inode *inode)
74 {
75         int drop = generic_drop_inode(inode);
76
77         if (!drop)
78                 drop = llcrypt_drop_inode(inode);
79
80         return drop;
81 }
82
83 /* exported operations */
84 struct super_operations lustre_super_operations =
85 {
86         .alloc_inode   = ll_alloc_inode,
87         .destroy_inode = ll_destroy_inode,
88         .drop_inode    = ll_drop_inode,
89         .evict_inode   = ll_delete_inode,
90         .put_super     = ll_put_super,
91         .statfs        = ll_statfs,
92         .umount_begin  = ll_umount_begin,
93         .remount_fs    = ll_remount_fs,
94         .show_options  = ll_show_options,
95 };
96
97 static int __init lustre_init(void)
98 {
99         struct lnet_process_id lnet_id;
100         int i, rc;
101         unsigned long lustre_inode_cache_flags;
102
103         BUILD_BUG_ON(sizeof(LUSTRE_VOLATILE_HDR) !=
104                      LUSTRE_VOLATILE_HDR_LEN + 1);
105
106         /* print an address of _any_ initialized kernel symbol from this
107          * module, to allow debugging with gdb that doesn't support data
108          * symbols from modules.*/
109         CDEBUG(D_INFO, "Lustre client module (%p).\n",
110                &lustre_super_operations);
111
112         lustre_inode_cache_flags = SLAB_HWCACHE_ALIGN | SLAB_RECLAIM_ACCOUNT |
113                                    SLAB_MEM_SPREAD;
114 #ifdef SLAB_ACCOUNT
115         lustre_inode_cache_flags |= SLAB_ACCOUNT;
116 #endif
117
118         ll_inode_cachep = kmem_cache_create("lustre_inode_cache",
119                                             sizeof(struct ll_inode_info),
120                                             0, lustre_inode_cache_flags, NULL);
121         if (ll_inode_cachep == NULL)
122                 GOTO(out_cache, rc = -ENOMEM);
123
124         ll_file_data_slab = kmem_cache_create("ll_file_data",
125                                                  sizeof(struct ll_file_data), 0,
126                                                  SLAB_HWCACHE_ALIGN, NULL);
127         if (ll_file_data_slab == NULL)
128                 GOTO(out_cache, rc = -ENOMEM);
129
130         pcc_inode_slab = kmem_cache_create("ll_pcc_inode",
131                                            sizeof(struct pcc_inode), 0,
132                                            SLAB_HWCACHE_ALIGN, NULL);
133         if (pcc_inode_slab == NULL)
134                 GOTO(out_cache, rc = -ENOMEM);
135
136         rc = llite_tunables_register();
137         if (rc)
138                 GOTO(out_cache, rc);
139
140         /* Nodes with small feet have little entropy. The NID for this
141          * node gives the most entropy in the low bits. */
142         for (i = 0;; i++) {
143                 if (LNetGetId(i, &lnet_id) == -ENOENT)
144                         break;
145
146                 add_device_randomness(&lnet_id.nid, sizeof(lnet_id.nid));
147         }
148
149         rc = vvp_global_init();
150         if (rc != 0)
151                 GOTO(out_tunables, rc);
152
153         cl_inode_fini_env = cl_env_alloc(&cl_inode_fini_refcheck,
154                                          LCT_REMEMBER | LCT_NOREF);
155         if (IS_ERR(cl_inode_fini_env))
156                 GOTO(out_vvp, rc = PTR_ERR(cl_inode_fini_env));
157
158         cl_inode_fini_env->le_ctx.lc_cookie = 0x4;
159
160         rc = ll_xattr_init();
161         if (rc != 0)
162                 GOTO(out_inode_fini_env, rc);
163
164         lustre_register_super_ops(THIS_MODULE, ll_fill_super, ll_kill_super);
165
166         RETURN(0);
167
168 out_inode_fini_env:
169         cl_env_put(cl_inode_fini_env, &cl_inode_fini_refcheck);
170 out_vvp:
171         vvp_global_fini();
172 out_tunables:
173         llite_tunables_unregister();
174 out_cache:
175         kmem_cache_destroy(ll_inode_cachep);
176         kmem_cache_destroy(ll_file_data_slab);
177         kmem_cache_destroy(pcc_inode_slab);
178         return rc;
179 }
180
181 static void __exit lustre_exit(void)
182 {
183         lustre_register_super_ops(NULL, NULL, NULL);
184
185         llite_tunables_unregister();
186
187         ll_xattr_fini();
188         cl_env_put(cl_inode_fini_env, &cl_inode_fini_refcheck);
189         vvp_global_fini();
190
191         /*
192          * Make sure all delayed rcu free inodes are flushed before we
193          * destroy cache.
194          */
195         rcu_barrier();
196
197         kmem_cache_destroy(ll_inode_cachep);
198         kmem_cache_destroy(ll_file_data_slab);
199         kmem_cache_destroy(pcc_inode_slab);
200 }
201
202 MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
203 MODULE_DESCRIPTION("Lustre Client File System");
204 MODULE_VERSION(LUSTRE_VERSION_STRING);
205 MODULE_LICENSE("GPL");
206
207 module_init(lustre_init);
208 module_exit(lustre_exit);