Whamcloud - gitweb
LU-3467 target: unified transaction callbacks
[fs/lustre-release.git] / lustre / target / tgt_main.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, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 021110-1307, USA
20  *
21  * GPL HEADER END
22  */
23 /*
24  * Copyright (c) 2012, 2013, Intel Corporation.
25  */
26 /*
27  * lustre/target/tgt_main.c
28  *
29  * Lustre Unified Target main initialization code
30  *
31  * Author: Mikhail Pershin <mike.pershin@intel.com>
32  */
33
34 #define DEBUG_SUBSYSTEM S_CLASS
35
36 #include <obd.h>
37 #include "tgt_internal.h"
38
39 int tgt_init(const struct lu_env *env, struct lu_target *lut,
40              struct obd_device *obd, struct dt_device *dt,
41              struct tgt_opc_slice *slice, int request_fail_id,
42              int reply_fail_id)
43 {
44         struct dt_object_format  dof;
45         struct lu_attr           attr;
46         struct lu_fid            fid;
47         struct dt_object        *o;
48         int                      rc = 0;
49
50         ENTRY;
51
52         LASSERT(lut);
53         LASSERT(obd);
54         lut->lut_obd = obd;
55         lut->lut_bottom = dt;
56         lut->lut_last_rcvd = NULL;
57         lut->lut_client_bitmap = NULL;
58         obd->u.obt.obt_lut = lut;
59         obd->u.obt.obt_magic = OBT_MAGIC;
60
61         /* set request handler slice and parameters */
62         lut->lut_slice = slice;
63         lut->lut_reply_fail_id = reply_fail_id;
64         lut->lut_request_fail_id = request_fail_id;
65
66         /* sptlrcp variables init */
67         rwlock_init(&lut->lut_sptlrpc_lock);
68         sptlrpc_rule_set_init(&lut->lut_sptlrpc_rset);
69         lut->lut_mds_capa = 1;
70         lut->lut_oss_capa = 1;
71
72         spin_lock_init(&lut->lut_flags_lock);
73         lut->lut_sync_lock_cancel = NEVER_SYNC_ON_CANCEL;
74
75         /* last_rcvd initialization is needed by replayable targets only */
76         if (!obd->obd_replayable)
77                 RETURN(0);
78
79         spin_lock_init(&lut->lut_translock);
80
81         OBD_ALLOC(lut->lut_client_bitmap, LR_MAX_CLIENTS >> 3);
82         if (lut->lut_client_bitmap == NULL)
83                 RETURN(-ENOMEM);
84
85         memset(&attr, 0, sizeof(attr));
86         attr.la_valid = LA_MODE;
87         attr.la_mode = S_IFREG | S_IRUGO | S_IWUSR;
88         dof.dof_type = dt_mode_to_dft(S_IFREG);
89
90         lu_local_obj_fid(&fid, LAST_RECV_OID);
91
92         o = dt_find_or_create(env, lut->lut_bottom, &fid, &dof, &attr);
93         if (IS_ERR(o)) {
94                 rc = PTR_ERR(o);
95                 CERROR("%s: cannot open LAST_RCVD: rc = %d\n", tgt_name(lut),
96                        rc);
97                 GOTO(out_bitmap, rc);
98         }
99
100         lut->lut_last_rcvd = o;
101         rc = tgt_server_data_init(env, lut);
102         if (rc < 0)
103                 GOTO(out_obj, rc);
104
105         /* prepare transactions callbacks */
106         lut->lut_txn_cb.dtc_txn_start = tgt_txn_start_cb;
107         lut->lut_txn_cb.dtc_txn_stop = tgt_txn_stop_cb;
108         lut->lut_txn_cb.dtc_txn_commit = NULL;
109         lut->lut_txn_cb.dtc_cookie = lut;
110         lut->lut_txn_cb.dtc_tag = LCT_DT_THREAD | LCT_MD_THREAD;
111         CFS_INIT_LIST_HEAD(&lut->lut_txn_cb.dtc_linkage);
112
113         dt_txn_callback_add(lut->lut_bottom, &lut->lut_txn_cb);
114
115         RETURN(0);
116 out_obj:
117         lu_object_put(env, &lut->lut_last_rcvd->do_lu);
118         lut->lut_last_rcvd = NULL;
119 out_bitmap:
120         OBD_FREE(lut->lut_client_bitmap, LR_MAX_CLIENTS >> 3);
121         lut->lut_client_bitmap = NULL;
122         return rc;
123 }
124 EXPORT_SYMBOL(tgt_init);
125
126 void tgt_fini(const struct lu_env *env, struct lu_target *lut)
127 {
128         ENTRY;
129
130         sptlrpc_rule_set_free(&lut->lut_sptlrpc_rset);
131
132         if (lut->lut_client_bitmap) {
133                 OBD_FREE(lut->lut_client_bitmap, LR_MAX_CLIENTS >> 3);
134                 lut->lut_client_bitmap = NULL;
135         }
136         if (lut->lut_last_rcvd) {
137                 dt_txn_callback_del(lut->lut_bottom, &lut->lut_txn_cb);
138                 lu_object_put(env, &lut->lut_last_rcvd->do_lu);
139                 lut->lut_last_rcvd = NULL;
140         }
141         EXIT;
142 }
143 EXPORT_SYMBOL(tgt_fini);
144
145 /* context key constructor/destructor: tg_key_init, tg_key_fini */
146 LU_KEY_INIT_FINI(tgt, struct tgt_thread_info);
147 static void tgt_key_exit(const struct lu_context *ctx,
148                          struct lu_context_key *key, void *data)
149 {
150         struct tgt_thread_info *tti = data;
151
152         tti->tti_has_trans = 0;
153         tti->tti_mult_trans = 0;
154 }
155
156 /* context key: tg_thread_key */
157 struct lu_context_key tgt_thread_key = {
158         .lct_tags = LCT_MD_THREAD | LCT_DT_THREAD,
159         .lct_init = tgt_key_init,
160         .lct_fini = tgt_key_fini,
161         .lct_exit = tgt_key_exit,
162 };
163 EXPORT_SYMBOL(tgt_thread_key);
164
165 LU_KEY_INIT_GENERIC(tgt);
166
167 /* context key constructor/destructor: tgt_ses_key_init, tgt_ses_key_fini */
168 LU_KEY_INIT_FINI(tgt_ses, struct tgt_session_info);
169
170 /* context key: tgt_session_key */
171 struct lu_context_key tgt_session_key = {
172         .lct_tags = LCT_SERVER_SESSION,
173         .lct_init = tgt_ses_key_init,
174         .lct_fini = tgt_ses_key_fini,
175 };
176 EXPORT_SYMBOL(tgt_session_key);
177
178 LU_KEY_INIT_GENERIC(tgt_ses);
179
180 /*
181  * this page is allocated statically when module is initializing
182  * it is used to simulate data corruptions, see ost_checksum_bulk()
183  * for details. as the original pages provided by the layers below
184  * can be remain in the internal cache, we do not want to modify
185  * them.
186  */
187 struct page *tgt_page_to_corrupt;
188
189 int tgt_mod_init(void)
190 {
191         ENTRY;
192
193         tgt_page_to_corrupt = alloc_page(GFP_IOFS);
194
195         tgt_key_init_generic(&tgt_thread_key, NULL);
196         lu_context_key_register_many(&tgt_thread_key, NULL);
197
198         tgt_ses_key_init_generic(&tgt_session_key, NULL);
199         lu_context_key_register_many(&tgt_session_key, NULL);
200
201         RETURN(0);
202 }
203
204 void tgt_mod_exit(void)
205 {
206         if (tgt_page_to_corrupt != NULL)
207                 page_cache_release(tgt_page_to_corrupt);
208
209         lu_context_key_degister(&tgt_thread_key);
210         lu_context_key_degister(&tgt_session_key);
211 }
212