Whamcloud - gitweb
661381752d2efd4e8207b6dbcd6234405c7dd2b8
[fs/lustre-release.git] / lustre / fld / fld_handler.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) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2013, 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  * lustre/fld/fld_handler.c
37  *
38  * FLD (Fids Location Database)
39  *
40  * Author: Yury Umanets <umka@clusterfs.com>
41  * Author: WangDi <wangdi@clusterfs.com>
42  * Author: Pravin Shelar <pravin.shelar@sun.com>
43  */
44
45 #define DEBUG_SUBSYSTEM S_FLD
46
47 #include <libcfs/libcfs.h>
48 #include <linux/module.h>
49
50 #include <obd.h>
51 #include <obd_support.h>
52 #include <lustre_fid.h>
53 #include <lustre_fld.h>
54 #include <lustre_mdt.h> /* err_serious() */
55 #include <lustre_req_layout.h>
56 #include <lprocfs_status.h>
57 #include "fld_internal.h"
58
59 /* context key constructor/destructor: fld_key_init, fld_key_fini */
60 LU_KEY_INIT_FINI(fld, struct fld_thread_info);
61
62 /* context key: fld_thread_key */
63 /* MGS thread may create llog file causing FLD lookup */
64 LU_CONTEXT_KEY_DEFINE(fld, LCT_MD_THREAD | LCT_DT_THREAD | LCT_MG_THREAD);
65
66 int fld_server_mod_init(void)
67 {
68         LU_CONTEXT_KEY_INIT(&fld_thread_key);
69         return lu_context_key_register(&fld_thread_key);
70 }
71
72 void fld_server_mod_exit(void)
73 {
74         lu_context_key_degister(&fld_thread_key);
75 }
76
77 int fld_declare_server_create(const struct lu_env *env,
78                               struct lu_server_fld *fld,
79                               const struct lu_seq_range *range,
80                               struct thandle *th)
81 {
82         int rc;
83
84         rc = fld_declare_index_create(env, fld, range, th);
85         RETURN(rc);
86 }
87 EXPORT_SYMBOL(fld_declare_server_create);
88
89 /**
90  * Insert FLD index entry and update FLD cache.
91  *
92  * This function is called from the sequence allocator when a super-sequence
93  * is granted to a server.
94  */
95 int fld_server_create(const struct lu_env *env, struct lu_server_fld *fld,
96                       const struct lu_seq_range *range, struct thandle *th)
97 {
98         int rc;
99
100         mutex_lock(&fld->lsf_lock);
101         rc = fld_index_create(env, fld, range, th);
102         mutex_unlock(&fld->lsf_lock);
103
104         RETURN(rc);
105 }
106 EXPORT_SYMBOL(fld_server_create);
107
108 /**
109  *  Lookup mds by seq, returns a range for given seq.
110  *
111  *  If that entry is not cached in fld cache, request is sent to super
112  *  sequence controller node (MDT0). All other MDT[1...N] and client
113  *  cache fld entries, but this cache is not persistent.
114  */
115 int fld_server_lookup(const struct lu_env *env, struct lu_server_fld *fld,
116                       seqno_t seq, struct lu_seq_range *range)
117 {
118         struct lu_seq_range *erange;
119         struct fld_thread_info *info;
120         int rc;
121         ENTRY;
122
123         info = lu_context_key_get(&env->le_ctx, &fld_thread_key);
124         LASSERT(info != NULL);
125         erange = &info->fti_lrange;
126
127         /* Lookup it in the cache. */
128         rc = fld_cache_lookup(fld->lsf_cache, seq, erange);
129         if (rc == 0) {
130                 if (unlikely(fld_range_type(erange) != fld_range_type(range) &&
131                              !fld_range_is_any(range))) {
132                         CERROR("%s: FLD cache range "DRANGE" does not match"
133                                "requested flag %x: rc = %d\n", fld->lsf_name,
134                                PRANGE(erange), range->lsr_flags, -EIO);
135                         RETURN(-EIO);
136                 }
137                 *range = *erange;
138                 RETURN(0);
139         }
140
141         if (fld->lsf_obj) {
142                 /* On server side, all entries should be in cache.
143                  * If we can not find it in cache, just return error */
144                 CERROR("%s: Cannot find sequence "LPX64": rc = %d\n",
145                        fld->lsf_name, seq, -EIO);
146                 RETURN(-EIO);
147         } else {
148                 LASSERT(fld->lsf_control_exp);
149                 /* send request to mdt0 i.e. super seq. controller.
150                  * This is temporary solution, long term solution is fld
151                  * replication on all mdt servers.
152                  */
153                 range->lsr_start = seq;
154                 rc = fld_client_rpc(fld->lsf_control_exp,
155                                     range, FLD_LOOKUP);
156                 if (rc == 0)
157                         fld_cache_insert(fld->lsf_cache, range);
158         }
159         RETURN(rc);
160 }
161 EXPORT_SYMBOL(fld_server_lookup);
162
163 /**
164  * All MDT server handle fld lookup operation. But only MDT0 has fld index.
165  * if entry is not found in cache we need to forward lookup request to MDT0
166  */
167 static int fld_server_handle(struct lu_server_fld *fld,
168                              const struct lu_env *env,
169                              __u32 opc, struct lu_seq_range *range)
170 {
171         int rc;
172
173         ENTRY;
174
175         switch (opc) {
176         case FLD_LOOKUP:
177                 rc = fld_server_lookup(env, fld, range->lsr_start, range);
178                 break;
179         default:
180                 rc = -EINVAL;
181                 break;
182         }
183
184         CDEBUG(D_INFO, "%s: FLD req handle: error %d (opc: %d, range: "
185                DRANGE"\n", fld->lsf_name, rc, opc, PRANGE(range));
186
187         RETURN(rc);
188 }
189
190 static int fld_handler(struct tgt_session_info *tsi)
191 {
192         struct obd_export       *exp = tsi->tsi_exp;
193         struct lu_site          *site = exp->exp_obd->obd_lu_dev->ld_site;
194         struct lu_seq_range     *in;
195         struct lu_seq_range     *out;
196         int                      rc;
197         __u32                   *opc;
198
199         ENTRY;
200
201         opc = req_capsule_client_get(tsi->tsi_pill, &RMF_FLD_OPC);
202         if (opc != NULL) {
203                 in = req_capsule_client_get(tsi->tsi_pill, &RMF_FLD_MDFLD);
204                 if (in == NULL)
205                         RETURN(err_serious(-EPROTO));
206                 out = req_capsule_server_get(tsi->tsi_pill, &RMF_FLD_MDFLD);
207                 if (out == NULL)
208                         RETURN(err_serious(-EPROTO));
209                 *out = *in;
210
211                 /* For old 2.0 client, the 'lsr_flags' is uninitialized.
212                  * Set it as 'LU_SEQ_RANGE_MDT' by default. */
213                 if (!(exp_connect_flags(exp) & OBD_CONNECT_64BITHASH) &&
214                     !(exp_connect_flags(exp) & OBD_CONNECT_MDS_MDS) &&
215                     !(exp_connect_flags(exp) & OBD_CONNECT_LIGHTWEIGHT) &&
216                     !exp->exp_libclient)
217                         fld_range_set_mdt(out);
218
219                 rc = fld_server_handle(lu_site2seq(site)->ss_server_fld,
220                                        tsi->tsi_env, *opc, out);
221         } else {
222                 rc = err_serious(-EPROTO);
223         }
224
225         RETURN(rc);
226 }
227
228 /*
229  * Returns true, if fid is local to this server node.
230  *
231  * WARNING: this function is *not* guaranteed to return false if fid is
232  * remote: it makes an educated conservative guess only.
233  *
234  * fid_is_local() is supposed to be used in assertion checks only.
235  */
236 int fid_is_local(const struct lu_env *env,
237                  struct lu_site *site, const struct lu_fid *fid)
238 {
239         int result;
240         struct seq_server_site *ss_site;
241         struct lu_seq_range *range;
242         struct fld_thread_info *info;
243         ENTRY;
244
245         info = lu_context_key_get(&env->le_ctx, &fld_thread_key);
246         range = &info->fti_lrange;
247
248         result = 1; /* conservatively assume fid is local */
249         ss_site = lu_site2seq(site);
250         if (ss_site->ss_client_fld != NULL) {
251                 int rc;
252
253                 rc = fld_cache_lookup(ss_site->ss_client_fld->lcf_cache,
254                                       fid_seq(fid), range);
255                 if (rc == 0)
256                         result = (range->lsr_index == ss_site->ss_node_id);
257         }
258         return result;
259 }
260 EXPORT_SYMBOL(fid_is_local);
261
262 static void fld_server_proc_fini(struct lu_server_fld *fld);
263
264 #ifdef LPROCFS
265 static int fld_server_proc_init(struct lu_server_fld *fld)
266 {
267         int rc = 0;
268         ENTRY;
269
270         fld->lsf_proc_dir = lprocfs_register(fld->lsf_name,
271                                              fld_type_proc_dir,
272                                              fld_server_proc_list, fld);
273         if (IS_ERR(fld->lsf_proc_dir)) {
274                 rc = PTR_ERR(fld->lsf_proc_dir);
275                 RETURN(rc);
276         }
277
278         rc = lprocfs_seq_create(fld->lsf_proc_dir, "fldb", 0444,
279                                 &fld_proc_seq_fops, fld);
280         if (rc) {
281                 lprocfs_remove(&fld->lsf_proc_dir);
282                 fld->lsf_proc_dir = NULL;
283         }
284
285         RETURN(rc);
286 }
287
288 static void fld_server_proc_fini(struct lu_server_fld *fld)
289 {
290         ENTRY;
291         if (fld->lsf_proc_dir != NULL) {
292                 if (!IS_ERR(fld->lsf_proc_dir))
293                         lprocfs_remove(&fld->lsf_proc_dir);
294                 fld->lsf_proc_dir = NULL;
295         }
296         EXIT;
297 }
298 #else
299 static int fld_server_proc_init(struct lu_server_fld *fld)
300 {
301         return 0;
302 }
303
304 static void fld_server_proc_fini(struct lu_server_fld *fld)
305 {
306         return;
307 }
308 #endif
309
310 int fld_server_init(const struct lu_env *env, struct lu_server_fld *fld,
311                     struct dt_device *dt, const char *prefix, int mds_node_id,
312                     int type)
313 {
314         int cache_size, cache_threshold;
315         int rc;
316
317         ENTRY;
318
319         snprintf(fld->lsf_name, sizeof(fld->lsf_name),
320                  "srv-%s", prefix);
321
322         cache_size = FLD_SERVER_CACHE_SIZE / sizeof(struct fld_cache_entry);
323
324         cache_threshold = cache_size * FLD_SERVER_CACHE_THRESHOLD / 100;
325
326         mutex_init(&fld->lsf_lock);
327         fld->lsf_cache = fld_cache_init(fld->lsf_name, cache_size,
328                                         cache_threshold);
329         if (IS_ERR(fld->lsf_cache)) {
330                 rc = PTR_ERR(fld->lsf_cache);
331                 fld->lsf_cache = NULL;
332                 RETURN(rc);
333         }
334
335         if (!mds_node_id && type == LU_SEQ_RANGE_MDT) {
336                 rc = fld_index_init(env, fld, dt);
337                 if (rc)
338                         GOTO(out_cache, rc);
339         } else {
340                 fld->lsf_obj = NULL;
341         }
342
343         rc = fld_server_proc_init(fld);
344         if (rc)
345                 GOTO(out_index, rc);
346
347         fld->lsf_control_exp = NULL;
348
349         RETURN(0);
350 out_index:
351         fld_index_fini(env, fld);
352 out_cache:
353         fld_cache_fini(fld->lsf_cache);
354         return rc;
355 }
356 EXPORT_SYMBOL(fld_server_init);
357
358 void fld_server_fini(const struct lu_env *env, struct lu_server_fld *fld)
359 {
360         ENTRY;
361
362         fld_server_proc_fini(fld);
363         fld_index_fini(env, fld);
364
365         if (fld->lsf_cache != NULL) {
366                 if (!IS_ERR(fld->lsf_cache))
367                         fld_cache_fini(fld->lsf_cache);
368                 fld->lsf_cache = NULL;
369         }
370
371         EXIT;
372 }
373 EXPORT_SYMBOL(fld_server_fini);
374
375 struct tgt_handler fld_handlers[] = {
376 TGT_FLD_HDL(HABEO_REFERO,       FLD_QUERY,      fld_handler),
377 };
378 EXPORT_SYMBOL(fld_handlers);