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) &&
246 (exp->exp_connect_flags & OBD_CONNECT_FID)) &&
247 !(exp->exp_connect_flags & OBD_CONNECT_LIGHTWEIGHT) &&
249 out->lsr_flags = LU_SEQ_RANGE_MDT;
251 rc = fld_server_handle(lu_site2seq(site)->ss_server_fld,
252 req->rq_svc_thread->t_env,
255 rc = err_serious(-EPROTO);
260 static void fld_thread_info_init(struct ptlrpc_request *req,
261 struct fld_thread_info *info)
263 info->fti_pill = &req->rq_pill;
264 /* Init request capsule. */
265 req_capsule_init(info->fti_pill, req, RCL_SERVER);
266 req_capsule_set(info->fti_pill, &RQF_FLD_QUERY);
269 static void fld_thread_info_fini(struct fld_thread_info *info)
271 req_capsule_fini(info->fti_pill);
274 static int fld_handle(struct ptlrpc_request *req)
276 struct fld_thread_info *info;
277 const struct lu_env *env;
280 env = req->rq_svc_thread->t_env;
281 LASSERT(env != NULL);
283 info = lu_context_key_get(&env->le_ctx, &fld_thread_key);
284 LASSERT(info != NULL);
286 fld_thread_info_init(req, info);
287 rc = fld_req_handle(req, info);
288 fld_thread_info_fini(info);
294 * Entry point for handling FLD RPCs called from MDT.
296 int fld_query(struct com_thread_info *info)
298 return fld_handle(info->cti_pill->rc_req);
300 EXPORT_SYMBOL(fld_query);
303 * Returns true, if fid is local to this server node.
305 * WARNING: this function is *not* guaranteed to return false if fid is
306 * remote: it makes an educated conservative guess only.
308 * fid_is_local() is supposed to be used in assertion checks only.
310 int fid_is_local(const struct lu_env *env,
311 struct lu_site *site, const struct lu_fid *fid)
314 struct seq_server_site *ss_site;
315 struct lu_seq_range *range;
316 struct fld_thread_info *info;
319 info = lu_context_key_get(&env->le_ctx, &fld_thread_key);
320 range = &info->fti_lrange;
322 result = 1; /* conservatively assume fid is local */
323 ss_site = lu_site2seq(site);
324 if (ss_site->ss_client_fld != NULL) {
327 rc = fld_cache_lookup(ss_site->ss_client_fld->lcf_cache,
328 fid_seq(fid), range);
330 result = (range->lsr_index == ss_site->ss_node_id);
334 EXPORT_SYMBOL(fid_is_local);
336 static void fld_server_proc_fini(struct lu_server_fld *fld);
339 static int fld_server_proc_init(struct lu_server_fld *fld)
344 fld->lsf_proc_dir = lprocfs_register(fld->lsf_name,
346 fld_server_proc_list, fld);
347 if (IS_ERR(fld->lsf_proc_dir)) {
348 rc = PTR_ERR(fld->lsf_proc_dir);
352 rc = lprocfs_seq_create(fld->lsf_proc_dir, "fldb", 0444,
353 &fld_proc_seq_fops, fld);
355 lprocfs_remove(&fld->lsf_proc_dir);
356 fld->lsf_proc_dir = NULL;
362 static void fld_server_proc_fini(struct lu_server_fld *fld)
365 if (fld->lsf_proc_dir != NULL) {
366 if (!IS_ERR(fld->lsf_proc_dir))
367 lprocfs_remove(&fld->lsf_proc_dir);
368 fld->lsf_proc_dir = NULL;
373 static int fld_server_proc_init(struct lu_server_fld *fld)
378 static void fld_server_proc_fini(struct lu_server_fld *fld)
384 int fld_server_init(const struct lu_env *env, struct lu_server_fld *fld,
385 struct dt_device *dt, const char *prefix, int mds_node_id,
388 int cache_size, cache_threshold;
389 struct lu_seq_range range;
393 snprintf(fld->lsf_name, sizeof(fld->lsf_name),
396 cache_size = FLD_SERVER_CACHE_SIZE /
397 sizeof(struct fld_cache_entry);
399 cache_threshold = cache_size *
400 FLD_SERVER_CACHE_THRESHOLD / 100;
402 mutex_init(&fld->lsf_lock);
403 fld->lsf_cache = fld_cache_init(fld->lsf_name,
404 cache_size, cache_threshold);
405 if (IS_ERR(fld->lsf_cache)) {
406 rc = PTR_ERR(fld->lsf_cache);
407 fld->lsf_cache = NULL;
411 if (!mds_node_id && lsr_flags == LU_SEQ_RANGE_MDT) {
412 rc = fld_index_init(env, fld, dt);
418 rc = fld_server_proc_init(fld);
422 fld->lsf_control_exp = NULL;
424 /* Insert reserved sequence number of ".lustre" into fld cache. */
425 if (lsr_flags == LU_SEQ_RANGE_MDT) {
426 range.lsr_start = FID_SEQ_DOT_LUSTRE;
427 range.lsr_end = FID_SEQ_DOT_LUSTRE + 1;
429 range.lsr_flags = lsr_flags;
430 fld_cache_insert(fld->lsf_cache, &range);
435 fld_server_fini(env, fld);
438 EXPORT_SYMBOL(fld_server_init);
440 void fld_server_fini(const struct lu_env *env, struct lu_server_fld *fld)
444 fld_server_proc_fini(fld);
445 fld_index_fini(env, fld);
447 if (fld->lsf_cache != NULL) {
448 if (!IS_ERR(fld->lsf_cache))
449 fld_cache_fini(fld->lsf_cache);
450 fld->lsf_cache = NULL;
455 EXPORT_SYMBOL(fld_server_fini);
457 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
458 MODULE_DESCRIPTION("Lustre FLD");
459 MODULE_LICENSE("GPL");
461 cfs_module(mdd, "0.1.0", fld_mod_init, fld_mod_exit);