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, 2013, Intel Corporation.
33 * This file is part of Lustre, http://www.lustre.org/
34 * Lustre is a trademark of Sun Microsystems, Inc.
36 * lustre/fld/fld_handler.c
38 * FLD (Fids Location Database)
40 * Author: Yury Umanets <umka@clusterfs.com>
41 * Author: WangDi <wangdi@clusterfs.com>
42 * Author: Pravin Shelar <pravin.shelar@sun.com>
45 #define DEBUG_SUBSYSTEM S_FLD
48 # include <libcfs/libcfs.h>
49 # include <linux/module.h>
50 # include <linux/jbd.h>
51 # include <asm/div64.h>
52 #else /* __KERNEL__ */
53 # include <liblustre.h>
54 # include <libcfs/list.h>
58 #include <obd_class.h>
59 #include <lustre_ver.h>
60 #include <obd_support.h>
61 #include <lprocfs_status.h>
63 #include <md_object.h>
64 #include <lustre_fid.h>
65 #include <lustre_req_layout.h>
66 #include "fld_internal.h"
67 #include <lustre_fid.h>
71 /* context key constructor/destructor: fld_key_init, fld_key_fini */
72 LU_KEY_INIT_FINI(fld, struct fld_thread_info);
74 /* context key: fld_thread_key */
75 LU_CONTEXT_KEY_DEFINE(fld, LCT_MD_THREAD|LCT_DT_THREAD);
77 cfs_proc_dir_entry_t *fld_type_proc_dir = NULL;
79 static int __init fld_mod_init(void)
81 fld_type_proc_dir = lprocfs_register(LUSTRE_FLD_NAME,
84 if (IS_ERR(fld_type_proc_dir))
85 return PTR_ERR(fld_type_proc_dir);
87 LU_CONTEXT_KEY_INIT(&fld_thread_key);
88 lu_context_key_register(&fld_thread_key);
92 static void __exit fld_mod_exit(void)
94 lu_context_key_degister(&fld_thread_key);
95 if (fld_type_proc_dir != NULL && !IS_ERR(fld_type_proc_dir)) {
96 lprocfs_remove(&fld_type_proc_dir);
97 fld_type_proc_dir = NULL;
101 int fld_declare_server_create(const struct lu_env *env,
102 struct lu_server_fld *fld,
103 struct lu_seq_range *range,
108 rc = fld_declare_index_create(env, fld, range, th);
111 EXPORT_SYMBOL(fld_declare_server_create);
114 * Insert FLD index entry and update FLD cache.
116 * This function is called from the sequence allocator when a super-sequence
117 * is granted to a server.
119 int fld_server_create(const struct lu_env *env, struct lu_server_fld *fld,
120 struct lu_seq_range *range, struct thandle *th)
124 mutex_lock(&fld->lsf_lock);
125 rc = fld_index_create(env, fld, range, th);
126 mutex_unlock(&fld->lsf_lock);
130 EXPORT_SYMBOL(fld_server_create);
133 * Lookup mds by seq, returns a range for given seq.
135 * If that entry is not cached in fld cache, request is sent to super
136 * sequence controller node (MDT0). All other MDT[1...N] and client
137 * cache fld entries, but this cache is not persistent.
140 int fld_server_lookup(const struct lu_env *env, struct lu_server_fld *fld,
141 seqno_t seq, struct lu_seq_range *range)
143 struct lu_seq_range *erange;
144 struct fld_thread_info *info;
148 info = lu_context_key_get(&env->le_ctx, &fld_thread_key);
149 erange = &info->fti_lrange;
151 /* Lookup it in the cache. */
152 rc = fld_cache_lookup(fld->lsf_cache, seq, erange);
154 if (unlikely(erange->lsr_flags != range->lsr_flags) &&
155 range->lsr_flags != -1) {
156 CERROR("FLD cache found a range "DRANGE" doesn't "
157 "match the requested flag %x\n",
158 PRANGE(erange), range->lsr_flags);
166 /* On server side, all entries should be in cache.
167 * If we can not find it in cache, just return error */
168 CERROR("%s: Can not found the seq "LPX64"\n",
172 LASSERT(fld->lsf_control_exp);
173 /* send request to mdt0 i.e. super seq. controller.
174 * This is temporary solution, long term solution is fld
175 * replication on all mdt servers.
177 range->lsr_start = seq;
178 rc = fld_client_rpc(fld->lsf_control_exp,
181 fld_cache_insert(fld->lsf_cache, range);
185 EXPORT_SYMBOL(fld_server_lookup);
188 * All MDT server handle fld lookup operation. But only MDT0 has fld index.
189 * if entry is not found in cache we need to forward lookup request to MDT0
192 static int fld_server_handle(struct lu_server_fld *fld,
193 const struct lu_env *env,
194 __u32 opc, struct lu_seq_range *range,
195 struct fld_thread_info *info)
202 rc = fld_server_lookup(env, fld, range->lsr_start, range);
209 CDEBUG(D_INFO, "%s: FLD req handle: error %d (opc: %d, range: "
210 DRANGE"\n", fld->lsf_name, rc, opc, PRANGE(range));
216 static int fld_req_handle(struct ptlrpc_request *req,
217 struct fld_thread_info *info)
219 struct obd_export *exp = req->rq_export;
220 struct lu_site *site = exp->exp_obd->obd_lu_dev->ld_site;
221 struct lu_seq_range *in;
222 struct lu_seq_range *out;
227 rc = req_capsule_server_pack(info->fti_pill);
229 RETURN(err_serious(rc));
231 opc = req_capsule_client_get(info->fti_pill, &RMF_FLD_OPC);
233 in = req_capsule_client_get(info->fti_pill, &RMF_FLD_MDFLD);
235 RETURN(err_serious(-EPROTO));
236 out = req_capsule_server_get(info->fti_pill, &RMF_FLD_MDFLD);
238 RETURN(err_serious(-EPROTO));
241 /* For old 2.0 client, the 'lsr_flags' is uninitialized.
242 * Set it as 'LU_SEQ_RANGE_MDT' by default.
243 * Old 2.0 liblustre client cannot talk with new 2.1 server. */
244 if (!(exp->exp_connect_flags & OBD_CONNECT_64BITHASH) &&
245 !(exp->exp_connect_flags & OBD_CONNECT_MDS_MDS) &&
246 !(exp->exp_connect_flags & OBD_CONNECT_LIGHTWEIGHT) &&
248 out->lsr_flags = LU_SEQ_RANGE_MDT;
250 rc = fld_server_handle(lu_site2seq(site)->ss_server_fld,
251 req->rq_svc_thread->t_env,
254 rc = err_serious(-EPROTO);
259 static void fld_thread_info_init(struct ptlrpc_request *req,
260 struct fld_thread_info *info)
262 info->fti_pill = &req->rq_pill;
263 /* Init request capsule. */
264 req_capsule_init(info->fti_pill, req, RCL_SERVER);
265 req_capsule_set(info->fti_pill, &RQF_FLD_QUERY);
268 static void fld_thread_info_fini(struct fld_thread_info *info)
270 req_capsule_fini(info->fti_pill);
273 static int fld_handle(struct ptlrpc_request *req)
275 struct fld_thread_info *info;
276 const struct lu_env *env;
279 env = req->rq_svc_thread->t_env;
280 LASSERT(env != NULL);
282 info = lu_context_key_get(&env->le_ctx, &fld_thread_key);
283 LASSERT(info != NULL);
285 fld_thread_info_init(req, info);
286 rc = fld_req_handle(req, info);
287 fld_thread_info_fini(info);
293 * Entry point for handling FLD RPCs called from MDT.
295 int fld_query(struct com_thread_info *info)
297 return fld_handle(info->cti_pill->rc_req);
299 EXPORT_SYMBOL(fld_query);
302 * Returns true, if fid is local to this server node.
304 * WARNING: this function is *not* guaranteed to return false if fid is
305 * remote: it makes an educated conservative guess only.
307 * fid_is_local() is supposed to be used in assertion checks only.
309 int fid_is_local(const struct lu_env *env,
310 struct lu_site *site, const struct lu_fid *fid)
313 struct seq_server_site *ss_site;
314 struct lu_seq_range *range;
315 struct fld_thread_info *info;
318 info = lu_context_key_get(&env->le_ctx, &fld_thread_key);
319 range = &info->fti_lrange;
321 result = 1; /* conservatively assume fid is local */
322 ss_site = lu_site2seq(site);
323 if (ss_site->ss_client_fld != NULL) {
326 rc = fld_cache_lookup(ss_site->ss_client_fld->lcf_cache,
327 fid_seq(fid), range);
329 result = (range->lsr_index == ss_site->ss_node_id);
333 EXPORT_SYMBOL(fid_is_local);
335 static void fld_server_proc_fini(struct lu_server_fld *fld);
338 static int fld_server_proc_init(struct lu_server_fld *fld)
343 fld->lsf_proc_dir = lprocfs_register(fld->lsf_name,
345 fld_server_proc_list, fld);
346 if (IS_ERR(fld->lsf_proc_dir)) {
347 rc = PTR_ERR(fld->lsf_proc_dir);
351 rc = lprocfs_seq_create(fld->lsf_proc_dir, "fldb", 0444,
352 &fld_proc_seq_fops, fld);
354 lprocfs_remove(&fld->lsf_proc_dir);
355 fld->lsf_proc_dir = NULL;
361 static void fld_server_proc_fini(struct lu_server_fld *fld)
364 if (fld->lsf_proc_dir != NULL) {
365 if (!IS_ERR(fld->lsf_proc_dir))
366 lprocfs_remove(&fld->lsf_proc_dir);
367 fld->lsf_proc_dir = NULL;
372 static int fld_server_proc_init(struct lu_server_fld *fld)
377 static void fld_server_proc_fini(struct lu_server_fld *fld)
383 int fld_server_init(const struct lu_env *env, struct lu_server_fld *fld,
384 struct dt_device *dt, const char *prefix, int mds_node_id,
387 int cache_size, cache_threshold;
388 struct lu_seq_range range;
392 snprintf(fld->lsf_name, sizeof(fld->lsf_name),
395 cache_size = FLD_SERVER_CACHE_SIZE /
396 sizeof(struct fld_cache_entry);
398 cache_threshold = cache_size *
399 FLD_SERVER_CACHE_THRESHOLD / 100;
401 mutex_init(&fld->lsf_lock);
402 fld->lsf_cache = fld_cache_init(fld->lsf_name,
403 cache_size, cache_threshold);
404 if (IS_ERR(fld->lsf_cache)) {
405 rc = PTR_ERR(fld->lsf_cache);
406 fld->lsf_cache = NULL;
410 if (!mds_node_id && lsr_flags == LU_SEQ_RANGE_MDT) {
411 rc = fld_index_init(env, fld, dt);
417 rc = fld_server_proc_init(fld);
421 fld->lsf_control_exp = NULL;
423 /* Insert reserved sequence number of ".lustre" into fld cache. */
424 if (lsr_flags == LU_SEQ_RANGE_MDT) {
425 range.lsr_start = FID_SEQ_DOT_LUSTRE;
426 range.lsr_end = FID_SEQ_DOT_LUSTRE + 1;
428 range.lsr_flags = lsr_flags;
429 fld_cache_insert(fld->lsf_cache, &range);
434 fld_server_fini(env, fld);
437 EXPORT_SYMBOL(fld_server_init);
439 void fld_server_fini(const struct lu_env *env, struct lu_server_fld *fld)
443 fld_server_proc_fini(fld);
444 fld_index_fini(env, fld);
446 if (fld->lsf_cache != NULL) {
447 if (!IS_ERR(fld->lsf_cache))
448 fld_cache_fini(fld->lsf_cache);
449 fld->lsf_cache = NULL;
454 EXPORT_SYMBOL(fld_server_fini);
456 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
457 MODULE_DESCRIPTION("Lustre FLD");
458 MODULE_LICENSE("GPL");
460 cfs_module(mdd, "0.1.0", fld_mod_init, fld_mod_exit);