Whamcloud - gitweb
4d30ebf0689e70b5911f4426de2d860a352722a3
[fs/lustre-release.git] / lustre / mds / mds_lov.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  linux/mds/mds_lov.c
5  *  Lustre Metadata Server (mds) handling of striped file data
6  *
7  *  Copyright (C) 2001-2003 Cluster File Systems, Inc.
8  *   Author: Peter Braam <braam@clusterfs.com>
9  *
10  *   This file is part of Lustre, http://www.lustre.org.
11  *
12  *   Lustre is free software; you can redistribute it and/or
13  *   modify it under the terms of version 2 of the GNU General Public
14  *   License as published by the Free Software Foundation.
15  *
16  *   Lustre is distributed in the hope that it will be useful,
17  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
18  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  *   GNU General Public License for more details.
20  *
21  *   You should have received a copy of the GNU General Public License
22  *   along with Lustre; if not, write to the Free Software
23  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24  */
25
26 #ifndef EXPORT_SYMTAB
27 # define EXPORT_SYMTAB
28 #endif
29 #define DEBUG_SUBSYSTEM S_MDS
30
31 #include <linux/module.h>
32 #include <linux/lustre_mds.h>
33 #include <linux/obd_ost.h>
34 #include <linux/lustre_idl.h>
35 #include <linux/obd_class.h>
36 #include <linux/obd_lov.h>
37 #include <linux/lustre_lib.h>
38 #include <linux/lustre_fsfilt.h>
39
40 #include "mds_internal.h"
41
42 void le_lov_desc_to_cpu (struct lov_desc *ld)
43 {
44         ld->ld_tgt_count = le32_to_cpu (ld->ld_tgt_count);
45         ld->ld_default_stripe_count = le32_to_cpu (ld->ld_default_stripe_count);
46         ld->ld_default_stripe_size = le32_to_cpu (ld->ld_default_stripe_size);
47         ld->ld_pattern = le32_to_cpu (ld->ld_pattern);
48 }
49
50 void cpu_to_le_lov_desc (struct lov_desc *ld)
51 {
52         ld->ld_tgt_count = cpu_to_le32 (ld->ld_tgt_count);
53         ld->ld_default_stripe_count = cpu_to_le32 (ld->ld_default_stripe_count);
54         ld->ld_default_stripe_size = cpu_to_le32 (ld->ld_default_stripe_size);
55         ld->ld_pattern = cpu_to_le32 (ld->ld_pattern);
56 }
57
58 void mds_dt_update_objids(struct obd_device *obd, obd_id *ids)
59 {
60         struct mds_obd *mds = &obd->u.mds;
61         int i;
62         ENTRY;
63
64         spin_lock(&mds->mds_dt_lock);
65         for (i = 0; i < mds->mds_dt_desc.ld_tgt_count; i++)
66                 if (ids[i] > (mds->mds_dt_objids)[i])
67                         (mds->mds_dt_objids)[i] = ids[i];
68         spin_unlock(&mds->mds_dt_lock);
69         EXIT;
70 }
71
72 static int mds_dt_read_objids(struct obd_device *obd)
73 {
74         struct mds_obd *mds = &obd->u.mds;
75         obd_id *ids;
76         loff_t off = 0;
77         int i, rc, size = mds->mds_dt_desc.ld_tgt_count * sizeof(*ids);
78         ENTRY;
79
80         if (mds->mds_dt_objids != NULL)
81                 RETURN(0);
82
83         OBD_ALLOC(ids, size);
84         if (ids == NULL)
85                 RETURN(-ENOMEM);
86         mds->mds_dt_objids = ids;
87
88         if (mds->mds_dt_objid_filp->f_dentry->d_inode->i_size == 0)
89                 RETURN(0);
90         rc = fsfilt_read_record(obd, mds->mds_dt_objid_filp, ids, size, &off);
91         if (rc < 0) {
92                 CERROR("Error reading objids %d\n", rc);
93         } else {
94                 mds->mds_dt_objids_valid = 1;
95                 rc = 0;
96         }
97
98         for (i = 0; i < mds->mds_dt_desc.ld_tgt_count; i++)
99                 CDEBUG(D_INFO, "read last object "LPU64" for idx %d\n",
100                        mds->mds_dt_objids[i], i);
101
102         RETURN(rc);
103 }
104
105 int mds_dt_write_objids(struct obd_device *obd)
106 {
107         struct mds_obd *mds = &obd->u.mds;
108         loff_t off = 0;
109         int i, rc, size = mds->mds_dt_desc.ld_tgt_count * sizeof(obd_id);
110         ENTRY;
111
112         for (i = 0; i < mds->mds_dt_desc.ld_tgt_count; i++)
113                 CDEBUG(D_INFO, "writing last object "LPU64" for idx %d\n",
114                        mds->mds_dt_objids[i], i);
115
116         rc = fsfilt_write_record(obd, mds->mds_dt_objid_filp,
117                                  mds->mds_dt_objids, size, &off, 0);
118         RETURN(rc);
119 }
120
121 int mds_dt_clearorphans(struct mds_obd *mds, struct obd_uuid *ost_uuid)
122 {
123         int rc;
124         struct obdo *oa = NULL;
125         struct obd_trans_info oti = {0};
126         struct lov_stripe_md  *empty_ea = NULL;
127         ENTRY;
128
129         LASSERT(mds->mds_dt_objids != NULL);
130
131         /*
132          * this create will in fact either create or destroy: If the OST is
133          * missing objects below this ID, they will be created.  If it finds
134          * objects above this ID, they will be removed.
135          */
136         oa = obdo_alloc();
137         if (oa == NULL)
138                 RETURN(-ENOMEM);
139         
140         memset(oa, 0, sizeof(*oa));
141         oa->o_gr = FILTER_GROUP_FIRST_MDS + mds->mds_num;
142         oa->o_valid = OBD_MD_FLFLAGS | OBD_MD_FLGROUP;
143         oa->o_flags = OBD_FL_DELORPHAN;
144         
145         if (ost_uuid != NULL) {
146                 memcpy(&oa->o_inline, ost_uuid, sizeof(*ost_uuid));
147                 oa->o_valid |= OBD_MD_FLINLINE;
148         }
149         rc = obd_create(mds->mds_dt_exp, oa, &empty_ea, &oti);
150         obdo_free(oa);
151         RETURN(rc);
152 }
153
154 /* update the LOV-OSC knowledge of the last used object id's */
155 int mds_dt_set_nextid(struct obd_device *obd)
156 {
157         struct mds_obd *mds = &obd->u.mds;
158         int rc;
159         ENTRY;
160
161         LASSERT(!obd->obd_recovering);
162
163         LASSERT(mds->mds_dt_objids != NULL);
164
165         rc = obd_set_info(mds->mds_dt_exp, strlen("next_id"), "next_id",
166                           mds->mds_dt_desc.ld_tgt_count, mds->mds_dt_objids);
167         RETURN(rc);
168 }
169
170 /* tell the LOV-OSC by how much to pre-create */
171 int mds_dt_set_growth(struct mds_obd *mds, int count)
172 {
173         int rc;
174         ENTRY;
175
176         rc = obd_set_info(mds->mds_dt_exp, strlen("growth_count"),
177                           "growth_count", sizeof(count), &count);
178
179         RETURN(rc);
180 }
181
182 static int mds_dt_update_desc(struct obd_device *obd, struct obd_export *lov)
183 {
184         struct mds_obd *mds = &obd->u.mds;
185         int valsize = sizeof(mds->mds_dt_desc), rc, i;
186         int old_count = mds->mds_dt_desc.ld_tgt_count;
187         ENTRY;
188
189         rc = obd_get_info(lov, strlen("lovdesc") + 1, "lovdesc", &valsize,
190                           &mds->mds_dt_desc);
191         if (rc)
192                 RETURN(rc);
193
194         /* The size of the LOV target table may have increased. */
195         if (old_count >= mds->mds_dt_desc.ld_tgt_count) {
196                 obd_id *ids;
197                 int     size;
198
199                 size = mds->mds_dt_desc.ld_tgt_count * sizeof(*ids);
200                 OBD_ALLOC(ids, size);
201                 if (ids == NULL)
202                         RETURN(-ENOMEM);
203
204                 memset(ids, 0, size);
205
206                 if (mds->mds_dt_objids != NULL) {
207                         int oldsize = old_count * sizeof(*ids);
208
209                         memcpy(ids, mds->mds_dt_objids, oldsize);
210                         OBD_FREE(mds->mds_dt_objids, oldsize);
211                 }
212                 mds->mds_dt_objids = ids;
213         }
214
215         i = lov_mds_md_size(mds->mds_dt_desc.ld_tgt_count);
216         if (i > mds->mds_max_mdsize)
217                 mds->mds_max_mdsize = i;
218         mds->mds_max_cookiesize = mds->mds_dt_desc.ld_tgt_count *
219                                   sizeof(struct llog_cookie);
220         mds->mds_has_dt_desc = 1;
221         RETURN(0);
222 }
223
224 int mds_dt_connect(struct obd_device *obd, char * lov_name)
225 {
226         struct mds_obd *mds = &obd->u.mds;
227         struct lustre_handle conn = {0,};
228         int rc, i;
229         ENTRY;
230
231         if (IS_ERR(mds->mds_dt_obd))
232                 RETURN(PTR_ERR(mds->mds_dt_obd));
233
234         if (mds->mds_dt_obd)
235                 RETURN(0);
236
237         spin_lock_init(&mds->mds_dt_lock);
238         mds->mds_dt_obd = class_name2obd(lov_name);
239         if (!mds->mds_dt_obd) {
240                 CERROR("MDS cannot locate LOV %s\n", lov_name);
241                 mds->mds_dt_obd = ERR_PTR(-ENOTCONN);
242                 RETURN(-ENOTCONN);
243         }
244
245         if (mds->mds_ost_sec) {
246                 rc = obd_set_info(mds->mds_dt_obd->obd_self_export,
247                                   strlen("sec"), "sec",
248                                   strlen(mds->mds_ost_sec), mds->mds_ost_sec);
249                 if (rc) {
250                         mds->mds_dt_obd = ERR_PTR(rc);
251                         RETURN(rc);
252                 }
253         }
254
255         CDEBUG(D_HA, "obd: %s osc: %s lov_name: %s\n",
256                obd->obd_name, mds->mds_dt_obd->obd_name, lov_name);
257
258         rc = obd_connect(&conn, mds->mds_dt_obd, &obd->obd_uuid, NULL,
259                          mds->mds_num + FILTER_GROUP_FIRST_MDS);
260         if (rc) {
261                 CERROR("MDS cannot connect to LOV %s (%d)\n", lov_name, rc);
262                 mds->mds_dt_obd = ERR_PTR(rc);
263                 RETURN(rc);
264         }
265         mds->mds_dt_exp = class_conn2export(&conn);
266
267         rc = obd_register_observer(mds->mds_dt_obd, obd);
268         if (rc) {
269                 CERROR("MDS cannot register as observer of LOV %s (%d)\n",
270                        lov_name, rc);
271                 GOTO(err_discon, rc);
272         }
273
274         rc = mds_dt_update_desc(obd, mds->mds_dt_exp);
275         if (rc)
276                 GOTO(err_reg, rc);
277
278         rc = mds_dt_read_objids(obd);
279         if (rc) {
280                 CERROR("cannot read %s: rc = %d\n", "lov_objids", rc);
281                 GOTO(err_reg, rc);
282         }
283
284         rc = obd_llog_cat_initialize(obd, &obd->obd_llogs, 
285                                      mds->mds_dt_desc.ld_tgt_count, CATLIST);
286         if (rc) {
287                 CERROR("failed to initialize catalog %d\n", rc);
288                 GOTO(err_reg, rc);
289         }
290
291         /* If we're mounting this code for the first time on an existing FS,
292          * we need to populate the objids array from the real OST values */
293         if (!mds->mds_dt_objids_valid) {
294                 int size = sizeof(obd_id) * mds->mds_dt_desc.ld_tgt_count;
295                 rc = obd_get_info(mds->mds_dt_exp, strlen("last_id"),
296                                   "last_id", &size, mds->mds_dt_objids);
297                 if (!rc) {
298                         for (i = 0; i < mds->mds_dt_desc.ld_tgt_count; i++)
299                                 CWARN("got last object "LPU64" from OST %d\n",
300                                       mds->mds_dt_objids[i], i);
301                         mds->mds_dt_objids_valid = 1;
302                         rc = mds_dt_write_objids(obd);
303                         if (rc)
304                                 CERROR("got last objids from OSTs, but error "
305                                        "writing objids file: %d\n", rc);
306                 }
307         }
308
309         /* I want to see a callback happen when the OBD moves to a
310          * "For General Use" state, and that's when we'll call
311          * set_nextid().  The class driver can help us here, because
312          * it can use the obd_recovering flag to determine when the
313          * the OBD is full available. */
314         if (!obd->obd_recovering) {
315                 rc = mds_postrecov_common(obd);
316                 if (rc > 0) 
317                         rc = 0;
318         }
319         RETURN(rc);
320
321 err_reg:
322         obd_register_observer(mds->mds_dt_obd, NULL);
323 err_discon:
324         obd_disconnect(mds->mds_dt_exp, 0);
325         mds->mds_dt_exp = NULL;
326         mds->mds_dt_obd = ERR_PTR(rc);
327         return rc;
328 }
329
330 int mds_dt_disconnect(struct obd_device *obd, int flags)
331 {
332         struct mds_obd *mds = &obd->u.mds;
333         int rc = 0;
334         ENTRY;
335
336         if (!IS_ERR(mds->mds_dt_obd) && mds->mds_dt_exp != NULL) {
337                 /* cleanup all llogging subsystems */
338                 rc = obd_llog_finish(obd, &obd->obd_llogs,
339                                      mds->mds_dt_desc.ld_tgt_count);
340                 if (rc)
341                         CERROR("failed to cleanup llogging subsystems\n");
342
343                 obd_register_observer(mds->mds_dt_obd, NULL);
344
345                 rc = obd_disconnect(mds->mds_dt_exp, flags);
346                 /* if obd_disconnect fails (probably because the
347                  * export was disconnected by class_disconnect_exports)
348                  * then we just need to drop our ref. */
349                 if (rc != 0)
350                         class_export_put(mds->mds_dt_exp);
351                 mds->mds_dt_exp = NULL;
352                 mds->mds_dt_obd = NULL;
353         }
354
355         RETURN(rc);
356 }
357
358 int mds_iocontrol(unsigned int cmd, struct obd_export *exp, int len,
359                   void *karg, void *uarg)
360 {
361         static struct obd_uuid cfg_uuid = { .uuid = "config_uuid" };
362         struct obd_device *obd = exp->exp_obd;
363         struct mds_obd *mds = &obd->u.mds;
364         struct obd_ioctl_data *data = karg;
365         struct lvfs_run_ctxt saved;
366         int rc = 0;
367         ENTRY;
368
369         CDEBUG(D_INFO, "ioctl cmd %x\n", cmd);
370         switch (cmd) {
371         case OBD_IOC_RECORD: {
372                 char *name = data->ioc_inlbuf1;
373                 if (mds->mds_cfg_llh)
374                         RETURN(-EBUSY);
375
376                 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
377                 rc = llog_open(llog_get_context(&obd->obd_llogs, 
378                                                 LLOG_CONFIG_ORIG_CTXT),
379                                &mds->mds_cfg_llh, NULL, name,
380                                OBD_LLOG_FL_CREATE);
381                 if (rc == 0)
382                         llog_init_handle(mds->mds_cfg_llh, LLOG_F_IS_PLAIN,
383                                          &cfg_uuid);
384                 else
385                         mds->mds_cfg_llh = NULL;
386                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
387
388                 RETURN(rc);
389         }
390
391         case OBD_IOC_ENDRECORD: {
392                 if (!mds->mds_cfg_llh)
393                         RETURN(-EBADF);
394
395                 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
396                 rc = llog_close(mds->mds_cfg_llh);
397                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
398
399                 mds->mds_cfg_llh = NULL;
400                 RETURN(rc);
401         }
402
403         case OBD_IOC_CLEAR_LOG: {
404                 char *name = data->ioc_inlbuf1;
405                 if (mds->mds_cfg_llh)
406                         RETURN(-EBUSY);
407
408                 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
409                 rc = llog_open(llog_get_context(&obd->obd_llogs, 
410                                                 LLOG_CONFIG_ORIG_CTXT),
411                                &mds->mds_cfg_llh, NULL, name,
412                                OBD_LLOG_FL_CREATE);
413                 if (rc == 0) {
414                         llog_init_handle(mds->mds_cfg_llh, LLOG_F_IS_PLAIN,
415                                          NULL);
416
417                         rc = llog_destroy(mds->mds_cfg_llh);
418                         llog_free_handle(mds->mds_cfg_llh);
419                 }
420                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
421
422                 mds->mds_cfg_llh = NULL;
423                 RETURN(rc);
424         }
425
426         case OBD_IOC_DORECORD: {
427                 char *cfg_buf;
428                 struct llog_rec_hdr rec;
429                 if (!mds->mds_cfg_llh)
430                         RETURN(-EBADF);
431
432                 /* XXX - this probably should be a parameter to this ioctl.
433                  * For now, just use llh_max_transno for expediency. */
434                 rec.lrh_len = llog_data_len(data->ioc_plen1);
435
436                 if (data->ioc_type == LUSTRE_CFG_TYPE) {
437                         rec.lrh_type = OBD_CFG_REC;
438                 } else if (data->ioc_type == PORTALS_CFG_TYPE) {
439                         rec.lrh_type = PTL_CFG_REC;
440                 } else {
441                         CERROR("unknown cfg record type:%d \n", data->ioc_type);
442                         RETURN(-EINVAL);
443                 }
444
445                 OBD_ALLOC(cfg_buf, data->ioc_plen1);
446                 if (cfg_buf == NULL)
447                         RETURN(-EINVAL);
448                 rc = copy_from_user(cfg_buf, data->ioc_pbuf1, data->ioc_plen1);
449                 if (rc) {
450                         OBD_FREE(cfg_buf, data->ioc_plen1);
451                         RETURN(rc);
452                 }
453
454                 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
455                 rc = llog_write_rec(mds->mds_cfg_llh, &rec, NULL, 0,
456                                     cfg_buf, -1);
457                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
458
459                 OBD_FREE(cfg_buf, data->ioc_plen1);
460                 RETURN(rc);
461         }
462         case OBD_IOC_PARSE: {
463                 struct llog_ctxt *ctxt =
464                         llog_get_context(&obd->obd_llogs, LLOG_CONFIG_ORIG_CTXT);
465                 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
466                 rc = class_config_process_llog(ctxt, data->ioc_inlbuf1, NULL);
467                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
468                 if (rc)
469                         RETURN(rc);
470
471                 RETURN(rc);
472         }
473         case OBD_IOC_DUMP_LOG: {
474                 struct llog_ctxt *ctxt =
475                         llog_get_context(&obd->obd_llogs, LLOG_CONFIG_ORIG_CTXT);
476                 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
477                 rc = class_config_dump_llog(ctxt, data->ioc_inlbuf1, NULL);
478                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
479
480                 RETURN(rc);
481         }
482         case OBD_IOC_SET_READONLY: {
483                 void *handle;
484                 struct inode *inode = obd->u.mds.mds_sb->s_root->d_inode;
485                 BDEVNAME_DECLARE_STORAGE(tmp);
486                 CERROR("setting device %s read-only\n",
487                        ll_bdevname(obd->u.mds.mds_sb, tmp));
488
489                 handle = fsfilt_start(obd, inode, FSFILT_OP_MKNOD, NULL);
490                 LASSERT(handle);
491                 rc = fsfilt_commit(obd, obd->u.mds.mds_sb, inode, handle, 1);
492
493                 ll_set_rdonly(ll_sbdev(obd->u.mds.mds_sb));
494                 RETURN(0);
495         }
496
497         case OBD_IOC_CATLOGLIST: {
498                 int count = mds->mds_dt_desc.ld_tgt_count;
499                 rc = llog_catalog_list(obd, count, data);
500                 RETURN(rc);
501
502         }
503         case OBD_IOC_LLOG_CHECK:
504         case OBD_IOC_LLOG_CANCEL:
505         case OBD_IOC_LLOG_REMOVE: {
506                 struct llog_ctxt *ctxt =
507                         llog_get_context(&obd->obd_llogs, LLOG_CONFIG_ORIG_CTXT);
508                 int rc2, valsize;
509                 __u32 group;
510
511                 obd_llog_finish(obd, &obd->obd_llogs,
512                                 mds->mds_dt_desc.ld_tgt_count);
513                 push_ctxt(&saved, ctxt->loc_lvfs_ctxt, NULL);
514                 rc = llog_ioctl(ctxt, cmd, data);
515                 pop_ctxt(&saved, ctxt->loc_lvfs_ctxt, NULL);
516                 obd_llog_cat_initialize(obd, &obd->obd_llogs, 
517                                         mds->mds_dt_desc.ld_tgt_count,
518                                         CATLIST);
519                 group = FILTER_GROUP_FIRST_MDS + mds->mds_num;
520                 valsize = sizeof(group);
521                 rc2 = obd_set_info(mds->mds_dt_exp, strlen("mds_conn"),
522                                    "mds_conn", valsize, &group);
523                 if (!rc)
524                         rc = rc2;
525                 RETURN(rc);
526         }
527         case OBD_IOC_LLOG_INFO:
528         case OBD_IOC_LLOG_PRINT: {
529                 struct llog_ctxt *ctxt =
530                         llog_get_context(&obd->obd_llogs, LLOG_CONFIG_ORIG_CTXT);
531
532                 push_ctxt(&saved, ctxt->loc_lvfs_ctxt, NULL);
533                 rc = llog_ioctl(ctxt, cmd, data);
534                 pop_ctxt(&saved, ctxt->loc_lvfs_ctxt, NULL);
535
536                 RETURN(rc);
537         }
538
539         case OBD_IOC_ABORT_RECOVERY:
540                 target_stop_recovery_thread(obd);
541                 RETURN(0);
542         case OBD_IOC_ROOT_SQUASH: {
543                 __u32 *p = (__u32 *) data->ioc_inlbuf1;
544
545                 if (data->ioc_inllen1 !=
546                     (sizeof(__u32) * 4 + sizeof(ptl_nid_t)))
547                         RETURN(-EINVAL);
548
549                 if (*p == 0) { /* get */
550                         p += 2;
551                         *p++ = mds->mds_squash_uid;
552                         *p++ = mds->mds_squash_gid;
553                         *((ptl_nid_t*) p) = mds->mds_nosquash_nid;
554                 } else { /* set */
555                         p += 2;
556                         mds->mds_squash_uid = *p++;
557                         mds->mds_squash_gid = *p++;
558                         mds->mds_nosquash_nid = *((ptl_nid_t*) p);
559                         CWARN("MDS: squash root to %d:%d, except nid 0x%llx\n",
560                                mds->mds_squash_uid, mds->mds_squash_gid,
561                                mds->mds_nosquash_nid);
562                 }
563                 RETURN(0);
564         }
565         default:
566                 CDEBUG(D_INFO, "unknown command %x\n", cmd);
567                 RETURN(-EINVAL);
568         }
569         RETURN(0);
570
571 }
572
573 struct mds_dt_sync_info {
574         struct obd_device *mlsi_obd;      /* the mds to sync */
575         struct obd_device *mlsi_watched;  /* new lov target */
576         int                mlsi_index;    /* index into mds_dt_objids */ 
577 };
578
579 int mds_dt_synchronize(void *data)
580 {
581         struct mds_dt_sync_info *mlsi = data;
582         struct llog_ctxt *ctxt;
583         struct obd_device *obd;
584         struct obd_device *watched;
585         struct mds_obd *mds;
586         struct obd_uuid *uuid;
587         obd_id vals[2];
588         unsigned long flags;
589         __u32  vallen;
590         __u32  group;
591         int old_count;
592         int count;
593         int index;
594         int rc;
595         char name[32] = "CATLIST";
596
597         lock_kernel();
598
599         ptlrpc_daemonize();
600
601         SIGNAL_MASK_LOCK(current, flags);
602         sigfillset(&current->blocked);
603         RECALC_SIGPENDING;
604         SIGNAL_MASK_UNLOCK(current, flags);
605
606         unlock_kernel();
607
608         obd = mlsi->mlsi_obd;
609         watched = mlsi->mlsi_watched;
610         index = mlsi->mlsi_index;
611
612         LASSERT(obd != NULL);
613         LASSERT(watched != NULL);
614
615         OBD_FREE(mlsi, sizeof(*mlsi));
616
617         mds = &obd->u.mds;
618         down(&mds->mds_orphan_recovery_sem);
619
620         uuid = &watched->u.cli.cl_import->imp_target_uuid;
621
622         group = FILTER_GROUP_FIRST_MDS + mds->mds_num;
623         rc = obd_set_info(watched->obd_self_export, strlen("mds_conn"),
624                           "mds_conn", sizeof(group), &group);
625         if (rc)
626                 GOTO(cleanup, rc);
627
628         old_count = mds->mds_dt_desc.ld_tgt_count;
629
630         rc = mds_dt_update_desc(obd, mds->mds_dt_exp);
631         if (rc)
632                 GOTO(cleanup, rc);
633
634         count = mds->mds_dt_desc.ld_tgt_count;
635         LASSERT(count >= old_count);
636
637         vallen = sizeof(vals[1]);
638         rc = obd_get_info(watched->obd_self_export, strlen("last_id"),
639                           "last_id", &vallen, &vals[1]);
640         if (rc)
641                 GOTO(cleanup, rc);
642
643         vals[0] = index;
644         rc = mds_dt_set_info(obd->obd_self_export, strlen("next_id"),
645                              "next_id", 2, vals);
646         if (rc)
647                 GOTO(cleanup, rc);
648
649         obd_llog_finish(obd, &obd->obd_llogs, old_count);
650         obd_llog_cat_initialize(obd, &obd->obd_llogs, count, name);
651
652         ctxt = llog_get_context(&obd->obd_llogs, LLOG_UNLINK_ORIG_CTXT);
653         LASSERT(ctxt != NULL);
654
655         rc = llog_connect(ctxt, count, NULL, NULL, uuid);
656         if (rc != 0) {
657                 CERROR("%s: failed at llog_origin_connect: %d\n", 
658                        obd->obd_name, rc);
659                 GOTO(cleanup, rc);
660         }
661         
662         CWARN("MDS %s: %s now active, resetting orphans\n",
663               obd->obd_name, uuid->uuid);
664
665         rc = mds_dt_clearorphans(&obd->u.mds, uuid);
666         if (rc != 0) {
667                 CERROR("%s: failed at mds_dt_clearorphans(): %d\n", 
668                        obd->obd_name, rc);
669                 GOTO(cleanup, rc);
670         }
671         rc = 0;
672
673         EXIT;
674 cleanup:
675         up(&mds->mds_orphan_recovery_sem);
676         return rc;
677 }
678
679 int mds_dt_start_synchronize(struct obd_device *obd,
680                              struct obd_device *watched, 
681                              void *data)
682 {
683         struct mds_dt_sync_info *mlsi;
684         int rc;
685         
686         ENTRY;
687
688         OBD_ALLOC(mlsi, sizeof(*mlsi));
689         if (mlsi == NULL)
690                 RETURN(-ENOMEM);
691
692         mlsi->mlsi_obd = obd;
693         mlsi->mlsi_watched = watched;
694         mlsi->mlsi_index = (int)data;
695
696         rc = kernel_thread(mds_dt_synchronize, mlsi, CLONE_VM | CLONE_FILES);
697         if (rc < 0)
698                 CERROR("%s: error starting mds_dt_synchronize(): %d\n", 
699                        obd->obd_name, rc);
700         else {
701                 CDEBUG(D_HA, "%s: mds_dt_synchronize() thread: %d\n", 
702                        obd->obd_name, rc);
703                 rc = 0;
704         }
705
706         RETURN(rc);
707 }
708
709 int mds_notify(struct obd_device *obd, struct obd_device *watched,
710                int active, void *data)
711 {
712         int rc = 0;
713         ENTRY;
714
715         if (!active)
716                 RETURN(0);
717
718         if (!strcmp(watched->obd_type->typ_name, LUSTRE_MDC_NAME))
719                 RETURN(0);
720
721         if (strcmp(watched->obd_type->typ_name, LUSTRE_OSC_NAME)) {
722                 CERROR("unexpected notification of %s %s!\n",
723                        watched->obd_type->typ_name, watched->obd_name);
724                 RETURN(-EINVAL);
725         }
726
727         if (obd->obd_recovering) {
728                 struct obd_uuid *uuid;
729                 uuid = &watched->u.cli.cl_import->imp_target_uuid;
730
731                 CWARN("MDS %s: in recovery, not resetting orphans on %s\n",
732                       obd->obd_name, uuid->uuid);
733         } else {
734                 rc = mds_dt_start_synchronize(obd, watched, data);
735         }
736         RETURN(rc);
737 }
738
739 int mds_dt_set_info(struct obd_export *exp, obd_count keylen,
740                     void *key, obd_count vallen, void *val)
741 {
742         struct obd_device *obd = class_exp2obd(exp);
743         struct mds_obd *mds = &obd->u.mds;
744         ENTRY;
745
746 #define KEY_IS(str) \
747         (keylen == strlen(str) && memcmp(key, str, keylen) == 0)
748
749         if (KEY_IS("next_id")) {
750                 obd_id *id = (obd_id *)val;
751                 int idx;
752
753                 /* XXX - this really should be vallen != (2 * sizeof(*id)) *
754                  * Just following the precedent set by lov_set_info.       */
755                 if (vallen != 2)
756                         RETURN(-EINVAL);
757
758                 idx = *id;
759                 if ((idx != *id) || (idx >= mds->mds_dt_desc.ld_tgt_count))
760                         RETURN(-EINVAL);
761
762                 CDEBUG(D_CONFIG, "idx: %d id: %llu\n", idx, *(id + 1));
763
764                 mds->mds_dt_objids[idx] = *++id;
765                 CDEBUG(D_CONFIG, "objid: %d: %lld\n", idx, *id);
766                 /* XXX - should we be writing this out here ? */
767                 RETURN(mds_dt_write_objids(obd));
768         }
769
770         RETURN(-EINVAL);
771 }
772
773 int mds_dt_update_config(struct obd_device *obd, int clean)
774 {
775         struct mds_obd *mds = &obd->u.mds;
776         struct lvfs_run_ctxt saved;
777         struct config_llog_instance cfg;
778         struct llog_ctxt *ctxt;
779         char *profile = mds->mds_profile, *name;
780         int rc, version, namelen;
781         ENTRY;
782
783         if (profile == NULL)
784                 RETURN(0);
785
786         cfg.cfg_instance = NULL;
787         cfg.cfg_uuid = mds->mds_dt_uuid;
788
789         namelen = strlen(profile) + 20; /* -clean-######### */
790         OBD_ALLOC(name, namelen);
791         if (name == NULL)
792                 RETURN(-ENOMEM);
793
794         if (clean) {
795                 version = mds->mds_config_version - 1;
796                 sprintf(name, "%s-clean-%d", profile, version);
797         } else {
798                 version = mds->mds_config_version + 1;
799                 sprintf(name, "%s-%d", profile, version);
800         }
801
802         CWARN("Applying configuration log %s\n", name);
803
804         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
805         ctxt = llog_get_context(&obd->obd_llogs, LLOG_CONFIG_ORIG_CTXT);
806         rc = class_config_process_llog(ctxt, name, &cfg);
807         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
808         if (rc == 0)
809                 mds->mds_config_version = version;
810         CWARN("Finished applying configuration log %s: %d\n", name, rc);
811
812         OBD_FREE(name, namelen);
813         RETURN(rc);
814 }
815
816 /* Convert the on-disk LOV EA structre.
817  * We always try to convert from an old LOV EA format to the common in-memory
818  * (lsm) format (obd_unpackmd() understands the old on-disk (lmm) format) and
819  * then convert back to the new on-disk format and save it back to disk
820  * (obd_packmd() only ever saves to the new on-disk format) so we don't have
821  * to convert it each time this inode is accessed.
822  *
823  * This function is a bit interesting in the error handling.  We can safely
824  * ship the old lmm to the client in case of failure, since it uses the same
825  * obd_unpackmd() code and can do the conversion if the MDS fails for some
826  * reason.  We will not delete the old lmm data until we have written the
827  * new format lmm data in fsfilt_set_md(). */
828 int mds_convert_lov_ea(struct obd_device *obd, struct inode *inode,
829                        struct lov_mds_md *lmm, int lmm_size)
830 {
831         struct lov_stripe_md *lsm = NULL;
832         void *handle;
833         int rc, err;
834         ENTRY;
835
836         if (le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC)
837                 RETURN(0);
838
839         CDEBUG(D_INODE, "converting LOV EA on %lu/%u from V0 to V1\n",      
840                 inode->i_ino, inode->i_generation);
841         rc = obd_unpackmd(obd->u.mds.mds_dt_exp, &lsm, lmm, lmm_size);
842         if (rc < 0)
843                 GOTO(conv_end, rc);
844
845         rc = obd_packmd(obd->u.mds.mds_dt_exp, &lmm, lsm);
846         if (rc < 0)
847                 GOTO(conv_free, rc);
848         lmm_size = rc;
849
850         handle = fsfilt_start(obd, inode, FSFILT_OP_SETATTR, NULL);
851         if (IS_ERR(handle)) {
852                 rc = PTR_ERR(handle);
853                 GOTO(conv_free, rc);
854         }
855
856         rc = fsfilt_set_md(obd, inode, handle, lmm, lmm_size, EA_LOV);
857         err = fsfilt_commit(obd, obd->u.mds.mds_sb, inode, handle, 0);
858         if (!rc)
859                 rc = err ? err : lmm_size;
860         GOTO(conv_free, rc);
861 conv_free:
862         obd_free_memmd(obd->u.mds.mds_dt_exp, &lsm);
863 conv_end:
864         return rc;
865 }
866
867 /* Must be called with i_sem held */
868 int mds_revalidate_lov_ea(struct obd_device *obd, struct inode *inode,
869                           struct lustre_msg *msg, int offset)
870 {
871         struct mds_obd *mds = &obd->u.mds;
872         struct obd_export *dt_exp = mds->mds_dt_exp;
873         struct lov_mds_md *lmm= NULL;
874         struct lov_stripe_md *lsm = NULL;
875         struct obdo *oa = NULL;
876         struct obd_trans_info oti = {0};
877         obd_valid valid = 0;
878         int lmm_size = 0, lsm_size = 0, err, rc;
879         void *handle;
880         ENTRY;
881
882         LASSERT(down_trylock(&inode->i_sem) != 0);
883
884         /* XXX - add way to know if EA is already up to date & return
885          * without doing anything. Easy to do since we get notified of
886          * LOV updates. */
887
888         lmm = lustre_msg_buf(msg, offset, 0);
889         if (lmm == NULL) {
890                 CDEBUG(D_INFO, "no space reserved for inode %lu MD\n",
891                        inode->i_ino);
892                 RETURN(0);
893         }
894         lmm_size = msg->buflens[offset];
895
896         rc = obd_unpackmd(dt_exp, &lsm, lmm, lmm_size);
897         if (rc < 0)
898                 RETURN(0);
899
900         lsm_size = rc;
901
902         LASSERT(lsm->lsm_magic == LOV_MAGIC);
903
904         oa = obdo_alloc();
905         if (oa == NULL)
906                 GOTO(out_lsm, rc = -ENOMEM);
907         oa->o_mode = S_IFREG | 0600;
908         oa->o_id = inode->i_ino;
909         oa->o_generation = inode->i_generation;
910         oa->o_uid = 0; /* must have 0 uid / gid on OST */
911         oa->o_gid = 0;
912         oa->o_gr = FILTER_GROUP_FIRST_MDS + mds->mds_num;
913
914         oa->o_valid = OBD_MD_FLID | OBD_MD_FLGENER | OBD_MD_FLTYPE |
915                       OBD_MD_FLMODE | OBD_MD_FLUID | OBD_MD_FLGID |
916                       OBD_MD_FLGROUP;
917         valid = OBD_MD_FLTYPE | OBD_MD_FLATIME | OBD_MD_FLMTIME |
918                 OBD_MD_FLCTIME;
919         obdo_from_inode(oa, inode, valid);
920
921         rc = obd_revalidate_md(dt_exp, oa, lsm, &oti);
922         if (rc == 0)
923                 GOTO(out_oa, rc);
924         if (rc < 0) {
925                 CERROR("Error validating LOV EA on %lu/%u: %d\n",
926                        inode->i_ino, inode->i_generation, rc);
927                 GOTO(out_oa, rc);
928         }
929
930         rc = obd_packmd(dt_exp, &lmm, lsm);
931         if (rc < 0)
932                 GOTO(out_oa, rc);
933         lmm_size = rc;
934
935         handle = fsfilt_start(obd, inode, FSFILT_OP_SETATTR, NULL);
936         if (IS_ERR(handle)) {
937                 rc = PTR_ERR(handle);
938                 GOTO(out_oa, rc);
939         }
940
941         rc = fsfilt_set_md(obd, inode, handle, lmm, lmm_size, EA_LOV);
942         err = fsfilt_commit(obd, inode->i_sb, inode, handle, 0);
943         if (!rc)
944                 rc = err;
945
946         EXIT;
947 out_oa:
948         obdo_free(oa);
949 out_lsm:
950         obd_free_memmd(dt_exp, &lsm);
951         return rc;
952 }