Whamcloud - gitweb
LU-3467 ofd: use unified handler for OST requests
[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                 lut->lut_last_rcvd = o;
95         } else {
96                 OBD_FREE(lut->lut_client_bitmap, LR_MAX_CLIENTS >> 3);
97                 lut->lut_client_bitmap = NULL;
98                 rc = PTR_ERR(o);
99                 CERROR("cannot open %s: rc = %d\n", LAST_RCVD, rc);
100         }
101
102         RETURN(rc);
103 }
104 EXPORT_SYMBOL(tgt_init);
105
106 void tgt_fini(const struct lu_env *env, struct lu_target *lut)
107 {
108         ENTRY;
109
110         sptlrpc_rule_set_free(&lut->lut_sptlrpc_rset);
111
112         if (lut->lut_client_bitmap) {
113                 OBD_FREE(lut->lut_client_bitmap, LR_MAX_CLIENTS >> 3);
114                 lut->lut_client_bitmap = NULL;
115         }
116         if (lut->lut_last_rcvd) {
117                 lu_object_put(env, &lut->lut_last_rcvd->do_lu);
118                 lut->lut_last_rcvd = NULL;
119         }
120         EXIT;
121 }
122 EXPORT_SYMBOL(tgt_fini);
123
124 /* context key constructor/destructor: tg_key_init, tg_key_fini */
125 LU_KEY_INIT_FINI(tgt, struct tgt_thread_info);
126
127 /* context key: tg_thread_key */
128 LU_CONTEXT_KEY_DEFINE(tgt, LCT_MD_THREAD | LCT_DT_THREAD);
129 EXPORT_SYMBOL(tgt_thread_key);
130
131 LU_KEY_INIT_GENERIC(tgt);
132
133 /* context key constructor/destructor: tgt_ses_key_init, tgt_ses_key_fini */
134 LU_KEY_INIT_FINI(tgt_ses, struct tgt_session_info);
135
136 /* context key: tgt_session_key */
137 struct lu_context_key tgt_session_key = {
138         .lct_tags = LCT_SERVER_SESSION,
139         .lct_init = tgt_ses_key_init,
140         .lct_fini = tgt_ses_key_fini,
141 };
142 EXPORT_SYMBOL(tgt_session_key);
143
144 LU_KEY_INIT_GENERIC(tgt_ses);
145
146 /*
147  * this page is allocated statically when module is initializing
148  * it is used to simulate data corruptions, see ost_checksum_bulk()
149  * for details. as the original pages provided by the layers below
150  * can be remain in the internal cache, we do not want to modify
151  * them.
152  */
153 struct page *tgt_page_to_corrupt;
154
155 int tgt_mod_init(void)
156 {
157         ENTRY;
158
159         tgt_page_to_corrupt = alloc_page(GFP_IOFS);
160
161         tgt_key_init_generic(&tgt_thread_key, NULL);
162         lu_context_key_register_many(&tgt_thread_key, NULL);
163
164         tgt_ses_key_init_generic(&tgt_session_key, NULL);
165         lu_context_key_register_many(&tgt_session_key, NULL);
166
167         RETURN(0);
168 }
169
170 void tgt_mod_exit(void)
171 {
172         if (tgt_page_to_corrupt != NULL)
173                 page_cache_release(tgt_page_to_corrupt);
174
175         lu_context_key_degister(&tgt_thread_key);
176         lu_context_key_degister(&tgt_session_key);
177 }
178