1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2 * vim:expandtab:shiftwidth=8:tabstop=8:
4 * Copyright (c) 2002 Cluster File Systems, Inc. <info@clusterfs.com>
6 * This file is part of Lustre, http://www.lustre.org.
8 * Lustre is free software; you can redistribute it and/or
9 * modify it under the terms of version 2 of the GNU General Public
10 * License as published by the Free Software Foundation.
12 * Lustre is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Lustre; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #define DEBUG_SUBSYSTEM S_CMOBD
24 #include <linux/version.h>
25 #include <linux/init.h>
26 #include <linux/obd_support.h>
27 #include <linux/lustre_lib.h>
28 #include <linux/lustre_net.h>
29 #include <linux/lustre_idl.h>
30 #include <linux/lustre_dlm.h>
31 #include <linux/obd_class.h>
32 #include <linux/lustre_log.h>
33 #include <linux/lustre_cmobd.h>
34 #include <linux/lustre_fsfilt.h>
35 #include <linux/lustre_smfs.h>
37 #include "cm_internal.h"
39 void lov_free_memmd(struct lov_stripe_md **lsmp);
41 int lov_alloc_memmd(struct lov_stripe_md **lsmp, int stripe_count,
44 int smfs_rec_unpack(struct smfs_proc_args *args, char *record,
45 char **pbuf, int *opcode);
47 /* helper functions for cmobd to construct pseudo lsm */
48 int cmobd_dummy_lsm(struct lov_stripe_md **lsmp, int stripe_cnt,
49 struct obdo *oa, __u32 stripe_size)
54 rc = lov_alloc_memmd(lsmp, stripe_cnt, LOV_PATTERN_CMOBD);
58 for (i = 0; i < stripe_cnt; i++) {
59 (*lsmp)->lsm_oinfo[i].loi_id = oa->o_id;
60 (*lsmp)->lsm_object_id = oa->o_id;
61 if (oa->o_valid & OBD_MD_FLGROUP) {
62 (*lsmp)->lsm_oinfo[i].loi_gr = oa->o_gr;
63 (*lsmp)->lsm_object_gr = oa->o_gr;
65 (*lsmp)->lsm_oinfo[i].loi_ost_idx = i;
66 (*lsmp)->lsm_oinfo[i].loi_ost_gen = 1;
67 (*lsmp)->lsm_stripe_size = stripe_size;
72 void cmobd_free_lsm(struct lov_stripe_md **lsmp)
79 /* reintegration functions */
80 static int cmobd_setattr_reint(struct obd_device *obd, void *rec)
83 struct lov_stripe_md *lsm;
84 struct cm_obd *cmobd = &obd->u.cm;
85 struct obd_export *exp = cmobd->master_exp;
86 struct obdo *oa = (struct obdo *)rec;
89 rc = cmobd_dummy_lsm(&lsm, cmobd->master_desc.ld_tgt_count, oa,
90 (__u32)cmobd->master_desc.ld_default_stripe_size);
94 rc = obd_setattr(exp, oa, lsm, NULL, NULL);
101 static int cmobd_create_reint(struct obd_device *obd, void *rec)
103 struct cm_obd *cmobd = &obd->u.cm;
104 struct obd_export *exp = cmobd->master_exp;
105 struct obdo *oa = (struct obdo *)rec;
106 struct obd_trans_info oti = { 0 };
107 struct lov_stripe_md *lsm;
111 rc = cmobd_dummy_lsm(&lsm, cmobd->master_desc.ld_tgt_count, oa,
112 (__u32)cmobd->master_desc.ld_default_stripe_size);
115 if (cmobd->master_group != oa->o_gr) {
116 int group = oa->o_gr;
117 int valsize = sizeof(group);
119 rc = obd_set_info(exp, strlen("mds_conn"),
120 "mds_conn", valsize, &group);
123 cmobd->master_group = oa->o_gr;
126 oti.oti_flags |= OBD_MODE_CROW;
127 rc = obd_create(exp, oa, NULL, 0, &lsm, &oti);
128 cmobd_free_lsm(&lsm);
134 /* direct cut-n-paste of filter_blocking_ast() */
135 static int cache_blocking_ast(struct ldlm_lock *lock,
136 struct ldlm_lock_desc *desc,
137 void *data, int flag)
142 if (flag == LDLM_CB_CANCELING) {
143 /* Don't need to do anything here. */
147 /* XXX layering violation! -phil */
148 lock_res_and_lock(lock);
150 /* get this: if filter_blocking_ast() is racing with ldlm_intent_policy,
151 * such that filter_blocking_ast is called just before l_i_p takes the
152 * ns_lock, then by the time we get the lock, we might not be the
153 * correct blocking function anymore. So check, and return early, if
155 if (lock->l_blocking_ast != cache_blocking_ast) {
156 unlock_res_and_lock(lock);
160 lock->l_flags |= LDLM_FL_CBPENDING;
161 do_ast = (!lock->l_readers && !lock->l_writers);
162 unlock_res_and_lock(lock);
165 struct lustre_handle lockh;
166 LDLM_DEBUG(lock, "already unused, calling ldlm_cli_cancel");
167 ldlm_lock2handle(lock, &lockh);
168 rc = ldlm_cli_cancel(&lockh);
170 CERROR("ldlm_cli_cancel: %d\n", rc);
172 LDLM_DEBUG(lock, "Lock still has references, will be "
178 static int master_blocking_ast(struct ldlm_lock *lock,
179 struct ldlm_lock_desc *desc,
180 void *data, int flag)
183 struct lustre_handle lockh;
187 case LDLM_CB_BLOCKING:
188 ldlm_lock2handle(lock, &lockh);
189 rc = ldlm_cli_cancel(&lockh);
191 CDEBUG(D_INODE, "ldlm_cli_cancel: %d\n", rc);
195 case LDLM_CB_CANCELING:
196 /* do nothing here by now */
204 static int cmobd_write_extents(struct obd_device *obd, struct obdo *oa,
205 struct ldlm_extent *extent)
207 struct cm_obd *cmobd = &obd->u.cm;
208 struct obd_device *cache = cmobd->cache_exp->exp_obd;
209 struct lustre_handle lockh_src = { 0 };
210 struct lustre_handle lockh_dst = { 0 };
211 struct ldlm_res_id res_id;
212 ldlm_policy_data_t policy;
213 struct lov_stripe_md *lsm;
214 int flags = 0, err, rc = 0;
217 /* XXX for debug write replay without smfs and kml */
218 res_id.name[0]= oa->o_id;
219 res_id.name[1]= oa->o_gr;
220 policy.l_extent = *extent;
222 /* get extent read lock on the source replay file */
223 rc = ldlm_cli_enqueue(NULL, NULL, cache->obd_namespace, res_id,
224 LDLM_EXTENT, &policy, LCK_PR,
225 &flags, cache_blocking_ast, ldlm_completion_ast,
226 NULL, NULL, NULL, 0, NULL, &lockh_src);
230 /* construct the pseudo lsm */
231 rc = cmobd_dummy_lsm(&lsm, cmobd->master_desc.ld_tgt_count, oa,
232 (__u32)cmobd->master_desc.ld_default_stripe_size);
236 rc = obd_enqueue(cmobd->master_exp, lsm, LDLM_EXTENT, &policy,
237 LCK_PW, &flags, master_blocking_ast,
238 ldlm_completion_ast, NULL,
239 NULL, 0, NULL, &lockh_dst);
243 err = cmobd_replay_write(obd, oa, &policy.l_extent);
245 rc = obd_cancel(cmobd->master_exp, lsm, LCK_PW, &lockh_dst);
249 /* XXX in fact, I just want to cancel the only lockh_dst instantly. */
250 rc = obd_cancel_unused(cmobd->master_exp, lsm, 0, NULL);
254 cmobd_free_lsm(&lsm);
256 ldlm_lock_decref(&lockh_src, LCK_PR);
260 static int cmobd_write_reint(struct obd_device *obd, void *rec)
262 struct obdo *oa = (struct obdo *)rec;
263 struct cm_obd *cmobd = &obd->u.cm;
264 struct ldlm_extent *extent = NULL;
265 char *extents_buf = NULL;
266 struct obd_device *cache;
267 int rc = 0, ext_num = 0;
268 unsigned long csb, ino;
273 obd_get_info(cmobd->cache_exp, strlen("cache_sb") + 1,
274 "cache_sb", &size, &csb);
276 ino = *(int*)(&oa->o_inline[0]);
278 cache = cmobd->cache_exp->exp_obd;
279 rc = fsfilt_get_ino_write_extents(cache, (struct super_block *)csb,
280 ino, &extents_buf, &ext_num);
283 extent = (struct ldlm_extent *)extents_buf;
285 while (extent && size --) {
286 rc = cmobd_write_extents(obd, oa, extent);
293 fsfilt_free_write_extents(cache, (struct super_block *)csb,
294 ino, extents_buf, ext_num);
298 int cmobd_reint_oss(struct obd_device *obd, void *record, int opcode)
302 return cmobd_create_reint(obd, record);
304 return cmobd_setattr_reint(obd, record);
306 return cmobd_write_reint(obd, record);
308 CERROR("unrecognized oss reint opcode %d\n",