4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
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
23 * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Use is subject to license terms.
26 * Copyright (c) 2011, 2017, Intel Corporation.
29 * This file is part of Lustre, http://www.lustre.org/
31 * lustre/fld/fld_request.c
33 * FLD (Fids Location Database)
35 * Author: Yury Umanets <umka@clusterfs.com>
38 #define DEBUG_SUBSYSTEM S_FLD
40 #include <libcfs/libcfs.h>
41 #include <linux/module.h>
42 #include <linux/math64.h>
43 #include <linux/delay.h>
46 #include <obd_class.h>
47 #include <obd_support.h>
48 #include <lprocfs_status.h>
49 #include <lustre_req_layout.h>
50 #include <lustre_fld.h>
51 #include <lustre_mdc.h>
52 #include "fld_internal.h"
54 static int fld_rrb_hash(struct lu_client_fld *fld, u64 seq)
56 LASSERT(fld->lcf_count > 0);
57 return do_div(seq, fld->lcf_count);
60 static struct lu_fld_target *
61 fld_rrb_scan(struct lu_client_fld *fld, u64 seq)
63 struct lu_fld_target *target;
69 * Because almost all of special sequence located in MDT0,
70 * it should go to index 0 directly, instead of calculating
71 * hash again, and also if other MDTs is not being connected,
72 * the fld lookup requests(for seq on MDT0) should not be
73 * blocked because of other MDTs
75 if (fid_seq_is_norm(seq))
76 hash = fld_rrb_hash(fld, seq);
81 list_for_each_entry(target, &fld->lcf_targets, ft_chain) {
82 if (target->ft_idx == hash)
88 * It is possible the remote target(MDT) are not connected to
89 * with client yet, so we will refer this to MDT0, which should
90 * be connected during mount
96 CERROR("%s: Can't find target by hash %d (seq %#llx). Targets (%d):\n",
97 fld->lcf_name, hash, seq, fld->lcf_count);
99 list_for_each_entry(target, &fld->lcf_targets, ft_chain) {
100 const char *srv_name = target->ft_srv != NULL ?
101 target->ft_srv->lsf_name : "<null>";
102 const char *exp_name = target->ft_exp != NULL ?
103 (char *)target->ft_exp->exp_obd->obd_uuid.uuid :
106 CERROR(" exp: 0x%p (%s), srv: 0x%p (%s), idx: %llu\n",
107 target->ft_exp, exp_name, target->ft_srv,
108 srv_name, target->ft_idx);
112 * If target is not found, there is logical error anyway, so here is
113 * LBUG() to catch this situation.
119 struct lu_fld_hash fld_hash[] = {
122 .fh_hash_func = fld_rrb_hash,
123 .fh_scan_func = fld_rrb_scan
130 static struct lu_fld_target *
131 fld_client_get_target(struct lu_client_fld *fld, u64 seq)
133 struct lu_fld_target *target;
137 LASSERT(fld->lcf_hash != NULL);
139 spin_lock(&fld->lcf_lock);
140 target = fld->lcf_hash->fh_scan_func(fld, seq);
141 spin_unlock(&fld->lcf_lock);
144 CDEBUG(D_INFO, "%s: Found target (idx %llu) by seq %#llx\n",
145 fld->lcf_name, target->ft_idx, seq);
152 * Add export to FLD. This is usually done by CMM and LMV as they are main users
155 int fld_client_add_target(struct lu_client_fld *fld,
156 struct lu_fld_target *tar)
159 struct lu_fld_target *target, *tmp;
163 LASSERT(tar != NULL);
164 name = fld_target_name(tar);
165 LASSERT(name != NULL);
166 LASSERT(tar->ft_srv != NULL || tar->ft_exp != NULL);
168 CDEBUG(D_INFO, "%s: Adding target %s (idx %llu)\n", fld->lcf_name,
171 OBD_ALLOC_PTR(target);
175 spin_lock(&fld->lcf_lock);
176 list_for_each_entry(tmp, &fld->lcf_targets, ft_chain) {
177 if (tmp->ft_idx == tar->ft_idx) {
178 spin_unlock(&fld->lcf_lock);
179 OBD_FREE_PTR(target);
180 CERROR("Target %s exists in FLD and known as %s:#%llu\n",
181 name, fld_target_name(tmp), tmp->ft_idx);
186 target->ft_exp = tar->ft_exp;
188 class_export_get(target->ft_exp);
189 target->ft_srv = tar->ft_srv;
190 target->ft_idx = tar->ft_idx;
192 list_add_tail(&target->ft_chain, &fld->lcf_targets);
195 spin_unlock(&fld->lcf_lock);
199 EXPORT_SYMBOL(fld_client_add_target);
201 /* Remove export from FLD */
202 int fld_client_del_target(struct lu_client_fld *fld, u64 idx)
204 struct lu_fld_target *target, *tmp;
208 spin_lock(&fld->lcf_lock);
209 list_for_each_entry_safe(target, tmp, &fld->lcf_targets, ft_chain) {
210 if (target->ft_idx == idx) {
212 list_del(&target->ft_chain);
213 spin_unlock(&fld->lcf_lock);
216 class_export_put(target->ft_exp);
218 OBD_FREE_PTR(target);
222 spin_unlock(&fld->lcf_lock);
226 struct dentry *fld_debugfs_dir;
228 static void fld_client_debugfs_init(struct lu_client_fld *fld)
231 fld->lcf_debugfs_entry = debugfs_create_dir(fld->lcf_name,
233 ldebugfs_add_vars(fld->lcf_debugfs_entry,
234 fld_client_debugfs_list,
238 void fld_client_debugfs_fini(struct lu_client_fld *fld)
240 debugfs_remove_recursive(fld->lcf_debugfs_entry);
242 EXPORT_SYMBOL(fld_client_debugfs_fini);
244 static inline int hash_is_sane(int hash)
246 return (hash >= 0 && hash < ARRAY_SIZE(fld_hash));
249 int fld_client_init(struct lu_client_fld *fld,
250 const char *prefix, int hash)
252 int cache_size, cache_threshold;
256 snprintf(fld->lcf_name, sizeof(fld->lcf_name),
259 if (!hash_is_sane(hash)) {
260 CERROR("%s: Wrong hash function %#x\n",
261 fld->lcf_name, hash);
266 spin_lock_init(&fld->lcf_lock);
267 fld->lcf_hash = &fld_hash[hash];
268 INIT_LIST_HEAD(&fld->lcf_targets);
270 cache_size = FLD_CLIENT_CACHE_SIZE /
271 sizeof(struct fld_cache_entry);
273 cache_threshold = cache_size *
274 FLD_CLIENT_CACHE_THRESHOLD / 100;
276 fld->lcf_cache = fld_cache_init(fld->lcf_name,
277 cache_size, cache_threshold);
278 if (IS_ERR(fld->lcf_cache)) {
279 rc = PTR_ERR(fld->lcf_cache);
280 fld->lcf_cache = NULL;
284 fld_client_debugfs_init(fld);
288 fld_client_fini(fld);
290 CDEBUG(D_INFO, "%s: Using \"%s\" hash\n",
291 fld->lcf_name, fld->lcf_hash->fh_name);
294 EXPORT_SYMBOL(fld_client_init);
296 void fld_client_fini(struct lu_client_fld *fld)
298 struct lu_fld_target *target, *tmp;
302 spin_lock(&fld->lcf_lock);
303 list_for_each_entry_safe(target, tmp, &fld->lcf_targets, ft_chain) {
305 list_del(&target->ft_chain);
307 class_export_put(target->ft_exp);
308 OBD_FREE_PTR(target);
310 spin_unlock(&fld->lcf_lock);
312 if (fld->lcf_cache) {
313 if (!IS_ERR(fld->lcf_cache))
314 fld_cache_fini(fld->lcf_cache);
315 fld->lcf_cache = NULL;
320 EXPORT_SYMBOL(fld_client_fini);
322 int fld_client_rpc(struct obd_export *exp,
323 struct lu_seq_range *range, u32 fld_op,
324 struct ptlrpc_request **reqp)
326 struct ptlrpc_request *req = NULL;
327 struct lu_seq_range *prange;
330 struct obd_import *imp;
334 LASSERT(exp != NULL);
336 imp = class_exp2cliimp(exp);
340 req = ptlrpc_request_alloc_pack(imp, &RQF_FLD_QUERY,
341 LUSTRE_MDS_VERSION, FLD_QUERY);
346 * XXX: only needed when talking to old server(< 2.6), it should
347 * be removed when < 2.6 server is not supported
349 op = req_capsule_client_get(&req->rq_pill, &RMF_FLD_OPC);
353 * For MDS_MDS seq lookup, it will always use LWP connection,
354 * but LWP will be evicted after restart, so cause the error.
355 * so we will set no_delay for seq lookup request, once the
356 * request fails because of the eviction. always retry here
358 if (imp->imp_connect_flags_orig & OBD_CONNECT_MDS_MDS) {
359 req->rq_allow_replay = 1;
360 req->rq_no_delay = 1;
364 req = ptlrpc_request_alloc_pack(imp, &RQF_FLD_READ,
365 LUSTRE_MDS_VERSION, FLD_READ);
369 req_capsule_set_size(&req->rq_pill, &RMF_GENERIC_DATA,
370 RCL_SERVER, PAGE_SIZE);
380 prange = req_capsule_client_get(&req->rq_pill, &RMF_FLD_MDFLD);
382 ptlrpc_request_set_replen(req);
383 req->rq_request_portal = FLD_REQUEST_PORTAL;
384 req->rq_reply_portal = MDC_REPLY_PORTAL;
385 ptlrpc_at_set_req_timeout(req);
387 if (OBD_FAIL_CHECK(OBD_FAIL_FLD_QUERY_REQ) && req->rq_no_delay) {
388 /* the same error returned by ptlrpc_import_delay_req */
392 rc = ptlrpc_queue_wait(req);
396 /* Don't loop forever on non-existing FID sequences. */
401 if (imp->imp_state != LUSTRE_IMP_CLOSED &&
402 !imp->imp_deactive &&
403 imp->imp_connect_flags_orig & OBD_CONNECT_MDS_MDS &&
404 OCD_HAS_FLAG(&imp->imp_connect_data, LIGHTWEIGHT) &&
406 /* LWP is not replayable, retry after a while */
410 ptlrpc_req_finished(req);
411 if (msleep_interruptible(2 * MSEC_PER_SEC))
412 GOTO(out_req, rc = -EINTR);
419 if (fld_op == FLD_QUERY) {
420 prange = req_capsule_server_get(&req->rq_pill,
423 GOTO(out_req, rc = -EFAULT);
429 if (rc != 0 || !reqp) {
430 ptlrpc_req_finished(req);
440 int fld_client_lookup(struct lu_client_fld *fld, u64 seq, u32 *mds,
441 u32 flags, const struct lu_env *env)
443 struct lu_seq_range res = { 0 };
444 struct lu_fld_target *target;
445 struct lu_fld_target *origin;
450 rc = fld_cache_lookup(fld->lcf_cache, seq, &res);
452 *mds = res.lsr_index;
456 /* Can not find it in the cache */
457 target = fld_client_get_target(fld, seq);
458 LASSERT(target != NULL);
461 CDEBUG(D_INFO, "%s: Lookup fld entry (seq: %#llx) on target %s (idx %llu)\n",
462 fld->lcf_name, seq, fld_target_name(target), target->ft_idx);
465 fld_range_set_type(&res, flags);
467 #ifdef HAVE_SERVER_SUPPORT
468 if (target->ft_srv) {
469 LASSERT(env != NULL);
470 rc = fld_server_lookup(env, target->ft_srv, seq, &res);
472 #endif /* HAVE_SERVER_SUPPORT */
474 rc = fld_client_rpc(target->ft_exp, &res, FLD_QUERY, NULL);
477 if (rc == -ESHUTDOWN) {
479 * If fld lookup failed because the target has been shutdown,
480 * then try next target in the list, until trying all targets
481 * or fld lookup succeeds
483 spin_lock(&fld->lcf_lock);
485 * If the next entry in the list is the head of the list,
486 * move to the next entry after the head and retrieve
487 * the target. Else retreive the next target entry.
489 if (target->ft_chain.next == &fld->lcf_targets)
490 target = list_entry(target->ft_chain.next->next,
491 struct lu_fld_target, ft_chain);
493 target = list_entry(target->ft_chain.next,
494 struct lu_fld_target,
496 spin_unlock(&fld->lcf_lock);
497 if (target != origin)
501 *mds = res.lsr_index;
502 fld_cache_insert(fld->lcf_cache, &res);
507 EXPORT_SYMBOL(fld_client_lookup);
509 void fld_client_flush(struct lu_client_fld *fld)
511 fld_cache_flush(fld->lcf_cache);
514 static int __init fld_init(void)
516 #ifdef HAVE_SERVER_SUPPORT
519 rc = fld_server_mod_init();
522 #endif /* HAVE_SERVER_SUPPORT */
524 fld_debugfs_dir = debugfs_create_dir(LUSTRE_FLD_NAME,
525 debugfs_lustre_root);
526 return PTR_ERR_OR_ZERO(fld_debugfs_dir);
529 static void __exit fld_exit(void)
531 #ifdef HAVE_SERVER_SUPPORT
532 fld_server_mod_exit();
533 #endif /* HAVE_SERVER_SUPPORT */
535 debugfs_remove_recursive(fld_debugfs_dir);
538 MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
539 MODULE_DESCRIPTION("Lustre FID Location Database");
540 MODULE_VERSION(LUSTRE_VERSION_STRING);
541 MODULE_LICENSE("GPL");
543 module_init(fld_init);
544 module_exit(fld_exit);