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.sun.com/software/products/lustre/docs/GPLv2.pdf
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
27 * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28 * Use is subject to license terms.
30 * Copyright (c) 2011, Whamcloud, Inc.
33 * This file is part of Lustre, http://www.lustre.org/
34 * Lustre is a trademark of Sun Microsystems, Inc.
36 * lustre/fld/fld_request.c
38 * FLD (Fids Location Database)
40 * Author: Yury Umanets <umka@clusterfs.com>
43 #define DEBUG_SUBSYSTEM S_FLD
46 # include <libcfs/libcfs.h>
47 # include <linux/module.h>
48 # include <linux/jbd.h>
49 # include <asm/div64.h>
50 #else /* __KERNEL__ */
51 # include <liblustre.h>
52 # include <libcfs/list.h>
56 #include <obd_class.h>
57 #include <lustre_ver.h>
58 #include <obd_support.h>
59 #include <lprocfs_status.h>
61 #include <dt_object.h>
62 #include <md_object.h>
63 #include <lustre_req_layout.h>
64 #include <lustre_fld.h>
65 #include <lustre_mdc.h>
66 #include "fld_internal.h"
68 /* TODO: these 3 functions are copies of flow-control code from mdc_lib.c
69 * It should be common thing. The same about mdc RPC lock */
70 static int fld_req_avail(struct client_obd *cli, struct mdc_cache_waiter *mcw)
74 client_obd_list_lock(&cli->cl_loi_list_lock);
75 rc = cfs_list_empty(&mcw->mcw_entry);
76 client_obd_list_unlock(&cli->cl_loi_list_lock);
80 static void fld_enter_request(struct client_obd *cli)
82 struct mdc_cache_waiter mcw;
83 struct l_wait_info lwi = { 0 };
85 client_obd_list_lock(&cli->cl_loi_list_lock);
86 if (cli->cl_r_in_flight >= cli->cl_max_rpcs_in_flight) {
87 cfs_list_add_tail(&mcw.mcw_entry, &cli->cl_cache_waiters);
88 cfs_waitq_init(&mcw.mcw_waitq);
89 client_obd_list_unlock(&cli->cl_loi_list_lock);
90 l_wait_event(mcw.mcw_waitq, fld_req_avail(cli, &mcw), &lwi);
92 cli->cl_r_in_flight++;
93 client_obd_list_unlock(&cli->cl_loi_list_lock);
97 static void fld_exit_request(struct client_obd *cli)
100 struct mdc_cache_waiter *mcw;
102 client_obd_list_lock(&cli->cl_loi_list_lock);
103 cli->cl_r_in_flight--;
104 cfs_list_for_each_safe(l, tmp, &cli->cl_cache_waiters) {
106 if (cli->cl_r_in_flight >= cli->cl_max_rpcs_in_flight) {
107 /* No free request slots anymore */
111 mcw = cfs_list_entry(l, struct mdc_cache_waiter, mcw_entry);
112 cfs_list_del_init(&mcw->mcw_entry);
113 cli->cl_r_in_flight++;
114 cfs_waitq_signal(&mcw->mcw_waitq);
116 client_obd_list_unlock(&cli->cl_loi_list_lock);
119 static int fld_rrb_hash(struct lu_client_fld *fld,
122 LASSERT(fld->lcf_count > 0);
123 return do_div(seq, fld->lcf_count);
126 static struct lu_fld_target *
127 fld_rrb_scan(struct lu_client_fld *fld, seqno_t seq)
129 struct lu_fld_target *target;
133 hash = fld_rrb_hash(fld, seq);
135 cfs_list_for_each_entry(target, &fld->lcf_targets, ft_chain) {
136 if (target->ft_idx == hash)
140 CERROR("%s: Can't find target by hash %d (seq "LPX64"). "
141 "Targets (%d):\n", fld->lcf_name, hash, seq,
144 cfs_list_for_each_entry(target, &fld->lcf_targets, ft_chain) {
145 const char *srv_name = target->ft_srv != NULL ?
146 target->ft_srv->lsf_name : "<null>";
147 const char *exp_name = target->ft_exp != NULL ?
148 (char *)target->ft_exp->exp_obd->obd_uuid.uuid :
151 CERROR(" exp: 0x%p (%s), srv: 0x%p (%s), idx: "LPU64"\n",
152 target->ft_exp, exp_name, target->ft_srv,
153 srv_name, target->ft_idx);
157 * If target is not found, there is logical error anyway, so here is
158 * LBUG() to catch this situation.
164 struct lu_fld_hash fld_hash[] = {
167 .fh_hash_func = fld_rrb_hash,
168 .fh_scan_func = fld_rrb_scan
175 static struct lu_fld_target *
176 fld_client_get_target(struct lu_client_fld *fld, seqno_t seq)
178 struct lu_fld_target *target;
181 LASSERT(fld->lcf_hash != NULL);
183 spin_lock(&fld->lcf_lock);
184 target = fld->lcf_hash->fh_scan_func(fld, seq);
185 spin_unlock(&fld->lcf_lock);
187 if (target != NULL) {
188 CDEBUG(D_INFO, "%s: Found target (idx "LPU64
189 ") by seq "LPX64"\n", fld->lcf_name,
190 target->ft_idx, seq);
197 * Add export to FLD. This is usually done by CMM and LMV as they are main users
200 int fld_client_add_target(struct lu_client_fld *fld,
201 struct lu_fld_target *tar)
203 const char *name = fld_target_name(tar);
204 struct lu_fld_target *target, *tmp;
207 LASSERT(tar != NULL);
208 LASSERT(name != NULL);
209 LASSERT(tar->ft_srv != NULL || tar->ft_exp != NULL);
211 if (fld->lcf_flags != LUSTRE_FLD_INIT) {
212 CERROR("%s: Attempt to add target %s (idx "LPU64") "
213 "on fly - skip it\n", fld->lcf_name, name,
217 CDEBUG(D_INFO, "%s: Adding target %s (idx "
218 LPU64")\n", fld->lcf_name, name, tar->ft_idx);
221 OBD_ALLOC_PTR(target);
225 spin_lock(&fld->lcf_lock);
226 cfs_list_for_each_entry(tmp, &fld->lcf_targets, ft_chain) {
227 if (tmp->ft_idx == tar->ft_idx) {
228 spin_unlock(&fld->lcf_lock);
229 OBD_FREE_PTR(target);
230 CERROR("Target %s exists in FLD and known as %s:#"LPU64"\n",
231 name, fld_target_name(tmp), tmp->ft_idx);
236 target->ft_exp = tar->ft_exp;
237 if (target->ft_exp != NULL)
238 class_export_get(target->ft_exp);
239 target->ft_srv = tar->ft_srv;
240 target->ft_idx = tar->ft_idx;
242 cfs_list_add_tail(&target->ft_chain,
246 spin_unlock(&fld->lcf_lock);
250 EXPORT_SYMBOL(fld_client_add_target);
252 /* Remove export from FLD */
253 int fld_client_del_target(struct lu_client_fld *fld, __u64 idx)
255 struct lu_fld_target *target, *tmp;
258 spin_lock(&fld->lcf_lock);
259 cfs_list_for_each_entry_safe(target, tmp,
260 &fld->lcf_targets, ft_chain) {
261 if (target->ft_idx == idx) {
263 cfs_list_del(&target->ft_chain);
264 spin_unlock(&fld->lcf_lock);
266 if (target->ft_exp != NULL)
267 class_export_put(target->ft_exp);
269 OBD_FREE_PTR(target);
273 spin_unlock(&fld->lcf_lock);
276 EXPORT_SYMBOL(fld_client_del_target);
279 static int fld_client_proc_init(struct lu_client_fld *fld)
284 fld->lcf_proc_dir = lprocfs_register(fld->lcf_name,
288 if (IS_ERR(fld->lcf_proc_dir)) {
289 CERROR("%s: LProcFS failed in fld-init\n",
291 rc = PTR_ERR(fld->lcf_proc_dir);
295 rc = lprocfs_add_vars(fld->lcf_proc_dir,
296 fld_client_proc_list, fld);
298 CERROR("%s: Can't init FLD proc, rc %d\n",
300 GOTO(out_cleanup, rc);
306 fld_client_proc_fini(fld);
310 void fld_client_proc_fini(struct lu_client_fld *fld)
313 if (fld->lcf_proc_dir) {
314 if (!IS_ERR(fld->lcf_proc_dir))
315 lprocfs_remove(&fld->lcf_proc_dir);
316 fld->lcf_proc_dir = NULL;
321 static int fld_client_proc_init(struct lu_client_fld *fld)
326 void fld_client_proc_fini(struct lu_client_fld *fld)
332 EXPORT_SYMBOL(fld_client_proc_fini);
334 static inline int hash_is_sane(int hash)
336 return (hash >= 0 && hash < ARRAY_SIZE(fld_hash));
339 int fld_client_init(struct lu_client_fld *fld,
340 const char *prefix, int hash)
342 int cache_size, cache_threshold;
346 LASSERT(fld != NULL);
348 snprintf(fld->lcf_name, sizeof(fld->lcf_name),
351 if (!hash_is_sane(hash)) {
352 CERROR("%s: Wrong hash function %#x\n",
353 fld->lcf_name, hash);
358 spin_lock_init(&fld->lcf_lock);
359 fld->lcf_hash = &fld_hash[hash];
360 fld->lcf_flags = LUSTRE_FLD_INIT;
361 CFS_INIT_LIST_HEAD(&fld->lcf_targets);
363 cache_size = FLD_CLIENT_CACHE_SIZE /
364 sizeof(struct fld_cache_entry);
366 cache_threshold = cache_size *
367 FLD_CLIENT_CACHE_THRESHOLD / 100;
369 fld->lcf_cache = fld_cache_init(fld->lcf_name,
370 cache_size, cache_threshold);
371 if (IS_ERR(fld->lcf_cache)) {
372 rc = PTR_ERR(fld->lcf_cache);
373 fld->lcf_cache = NULL;
377 rc = fld_client_proc_init(fld);
383 fld_client_fini(fld);
385 CDEBUG(D_INFO, "%s: Using \"%s\" hash\n",
386 fld->lcf_name, fld->lcf_hash->fh_name);
389 EXPORT_SYMBOL(fld_client_init);
391 void fld_client_fini(struct lu_client_fld *fld)
393 struct lu_fld_target *target, *tmp;
396 spin_lock(&fld->lcf_lock);
397 cfs_list_for_each_entry_safe(target, tmp,
398 &fld->lcf_targets, ft_chain) {
400 cfs_list_del(&target->ft_chain);
401 if (target->ft_exp != NULL)
402 class_export_put(target->ft_exp);
403 OBD_FREE_PTR(target);
405 spin_unlock(&fld->lcf_lock);
407 if (fld->lcf_cache != NULL) {
408 if (!IS_ERR(fld->lcf_cache))
409 fld_cache_fini(fld->lcf_cache);
410 fld->lcf_cache = NULL;
415 EXPORT_SYMBOL(fld_client_fini);
417 int fld_client_rpc(struct obd_export *exp,
418 struct lu_seq_range *range, __u32 fld_op)
420 struct ptlrpc_request *req;
421 struct lu_seq_range *prange;
426 LASSERT(exp != NULL);
428 req = ptlrpc_request_alloc_pack(class_exp2cliimp(exp), &RQF_FLD_QUERY,
429 LUSTRE_MDS_VERSION, FLD_QUERY);
433 op = req_capsule_client_get(&req->rq_pill, &RMF_FLD_OPC);
436 prange = req_capsule_client_get(&req->rq_pill, &RMF_FLD_MDFLD);
439 ptlrpc_request_set_replen(req);
440 req->rq_request_portal = FLD_REQUEST_PORTAL;
441 ptlrpc_at_set_req_timeout(req);
443 if (fld_op != FLD_LOOKUP)
444 mdc_get_rpc_lock(exp->exp_obd->u.cli.cl_rpc_lock, NULL);
445 fld_enter_request(&exp->exp_obd->u.cli);
446 rc = ptlrpc_queue_wait(req);
447 fld_exit_request(&exp->exp_obd->u.cli);
448 if (fld_op != FLD_LOOKUP)
449 mdc_put_rpc_lock(exp->exp_obd->u.cli.cl_rpc_lock, NULL);
453 prange = req_capsule_server_get(&req->rq_pill, &RMF_FLD_MDFLD);
455 GOTO(out_req, rc = -EFAULT);
459 ptlrpc_req_finished(req);
463 int fld_client_lookup(struct lu_client_fld *fld, seqno_t seq, mdsno_t *mds,
464 __u32 flags, const struct lu_env *env)
466 struct lu_seq_range res;
467 struct lu_fld_target *target;
471 fld->lcf_flags |= LUSTRE_FLD_RUN;
473 rc = fld_cache_lookup(fld->lcf_cache, seq, &res);
475 *mds = res.lsr_index;
479 /* Can not find it in the cache */
480 target = fld_client_get_target(fld, seq);
481 LASSERT(target != NULL);
483 CDEBUG(D_INFO, "%s: Lookup fld entry (seq: "LPX64") on "
484 "target %s (idx "LPU64")\n", fld->lcf_name, seq,
485 fld_target_name(target), target->ft_idx);
488 res.lsr_flags = flags;
490 if (target->ft_srv != NULL) {
491 LASSERT(env != NULL);
492 rc = fld_server_lookup(target->ft_srv,
496 rc = fld_client_rpc(target->ft_exp,
503 *mds = res.lsr_index;
505 fld_cache_insert(fld->lcf_cache, &res);
509 EXPORT_SYMBOL(fld_client_lookup);
511 void fld_client_flush(struct lu_client_fld *fld)
513 fld_cache_flush(fld->lcf_cache);
515 EXPORT_SYMBOL(fld_client_flush);