Whamcloud - gitweb
LU-7030 security: put imp_sec after all requests drained off
[fs/lustre-release.git] / lustre / ptlrpc / ptlrpc_module.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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2014, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #define DEBUG_SUBSYSTEM S_RPC
38
39
40 #include <obd_support.h>
41 #include <obd_class.h>
42 #include <lustre_net.h>
43 #include <lustre_req_layout.h>
44
45 #include "ptlrpc_internal.h"
46
47 extern spinlock_t ptlrpc_last_xid_lock;
48 #if RS_DEBUG
49 extern spinlock_t ptlrpc_rs_debug_lock;
50 #endif
51
52 static __init int ptlrpc_init(void)
53 {
54         int rc;
55
56         ENTRY;
57
58         lustre_assert_wire_constants();
59 #if RS_DEBUG
60         spin_lock_init(&ptlrpc_rs_debug_lock);
61 #endif
62         INIT_LIST_HEAD(&ptlrpc_all_services);
63         mutex_init(&ptlrpc_all_services_mutex);
64         mutex_init(&pinger_mutex);
65         mutex_init(&ptlrpcd_mutex);
66         ptlrpc_init_xid();
67
68         rc = req_layout_init();
69         if (rc)
70                 RETURN(rc);
71
72         rc = tgt_mod_init();
73         if (rc)
74                 GOTO(err_layout, rc);
75
76         rc = ptlrpc_hr_init();
77         if (rc)
78                 GOTO(err_tgt, rc);
79
80         rc = ptlrpc_request_cache_init();
81         if (rc)
82                 GOTO(err_hr, rc);
83
84         rc = ptlrpc_init_portals();
85         if (rc)
86                 GOTO(err_cache, rc);
87
88         rc = ptlrpc_connection_init();
89         if (rc)
90                 GOTO(err_portals, rc);
91
92         ptlrpc_put_connection_superhack = ptlrpc_connection_put;
93         sptlrpc_sec_put_superhack = sptlrpc_import_sec_put;
94
95         rc = ptlrpc_start_pinger();
96         if (rc)
97                 GOTO(err_conn, rc);
98
99         rc = ldlm_init();
100         if (rc)
101                 GOTO(err_pinger, rc);
102
103         rc = sptlrpc_init();
104         if (rc)
105                 GOTO(err_ldlm, rc);
106
107         rc = ptlrpc_nrs_init();
108         if (rc)
109                 GOTO(err_sptlrpc, rc);
110
111         rc = nodemap_mod_init();
112         if (rc)
113                 GOTO(err_nrs, rc);
114
115         RETURN(0);
116 err_nrs:
117         ptlrpc_nrs_fini();
118 err_sptlrpc:
119         sptlrpc_fini();
120 err_ldlm:
121         ldlm_exit();
122 err_pinger:
123         ptlrpc_stop_pinger();
124 err_conn:
125         ptlrpc_connection_fini();
126 err_portals:
127         ptlrpc_exit_portals();
128 err_cache:
129         ptlrpc_request_cache_fini();
130 err_hr:
131         ptlrpc_hr_fini();
132 err_tgt:
133         tgt_mod_exit();
134 err_layout:
135         req_layout_fini();
136         return rc;
137 }
138
139 static void __exit ptlrpc_exit(void)
140 {
141         nodemap_mod_exit();
142         ptlrpc_nrs_fini();
143         sptlrpc_fini();
144         ldlm_exit();
145         ptlrpc_stop_pinger();
146         ptlrpc_exit_portals();
147         ptlrpc_request_cache_fini();
148         ptlrpc_hr_fini();
149         ptlrpc_connection_fini();
150         tgt_mod_exit();
151         req_layout_fini();
152 }
153
154 MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
155 MODULE_DESCRIPTION("Lustre Request Processor and Lock Management");
156 MODULE_VERSION(LUSTRE_VERSION_STRING);
157 MODULE_LICENSE("GPL");
158
159 module_init(ptlrpc_init);
160 module_exit(ptlrpc_exit);