Whamcloud - gitweb
land lustre part of b_hd_sec on HEAD.
[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,
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(obd);
316         RETURN(rc);
317
318 err_reg:
319         obd_register_observer(mds->mds_dt_obd, NULL);
320 err_discon:
321         obd_disconnect(mds->mds_dt_exp, 0);
322         mds->mds_dt_exp = NULL;
323         mds->mds_dt_obd = ERR_PTR(rc);
324         return rc;
325 }
326
327 int mds_dt_disconnect(struct obd_device *obd, int flags)
328 {
329         struct mds_obd *mds = &obd->u.mds;
330         int rc = 0;
331         ENTRY;
332
333         if (!IS_ERR(mds->mds_dt_obd) && mds->mds_dt_exp != NULL) {
334                 /* cleanup all llogging subsystems */
335                 rc = obd_llog_finish(obd, &obd->obd_llogs,
336                                      mds->mds_dt_desc.ld_tgt_count);
337                 if (rc)
338                         CERROR("failed to cleanup llogging subsystems\n");
339
340                 obd_register_observer(mds->mds_dt_obd, NULL);
341
342                 rc = obd_disconnect(mds->mds_dt_exp, flags);
343                 /* if obd_disconnect fails (probably because the
344                  * export was disconnected by class_disconnect_exports)
345                  * then we just need to drop our ref. */
346                 if (rc != 0)
347                         class_export_put(mds->mds_dt_exp);
348                 mds->mds_dt_exp = NULL;
349                 mds->mds_dt_obd = NULL;
350         }
351
352         RETURN(rc);
353 }
354
355 int mds_iocontrol(unsigned int cmd, struct obd_export *exp, int len,
356                   void *karg, void *uarg)
357 {
358         static struct obd_uuid cfg_uuid = { .uuid = "config_uuid" };
359         struct obd_device *obd = exp->exp_obd;
360         struct mds_obd *mds = &obd->u.mds;
361         struct obd_ioctl_data *data = karg;
362         struct lvfs_run_ctxt saved;
363         int rc = 0;
364         ENTRY;
365
366         switch (cmd) {
367         case OBD_IOC_RECORD: {
368                 char *name = data->ioc_inlbuf1;
369                 if (mds->mds_cfg_llh)
370                         RETURN(-EBUSY);
371
372                 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
373                 rc = llog_open(llog_get_context(&obd->obd_llogs, 
374                                                 LLOG_CONFIG_ORIG_CTXT),
375                                &mds->mds_cfg_llh, NULL, name,
376                                OBD_LLOG_FL_CREATE);
377                 if (rc == 0)
378                         llog_init_handle(mds->mds_cfg_llh, LLOG_F_IS_PLAIN,
379                                          &cfg_uuid);
380                 else
381                         mds->mds_cfg_llh = NULL;
382                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
383
384                 RETURN(rc);
385         }
386
387         case OBD_IOC_ENDRECORD: {
388                 if (!mds->mds_cfg_llh)
389                         RETURN(-EBADF);
390
391                 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
392                 rc = llog_close(mds->mds_cfg_llh);
393                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
394
395                 mds->mds_cfg_llh = NULL;
396                 RETURN(rc);
397         }
398
399         case OBD_IOC_CLEAR_LOG: {
400                 char *name = data->ioc_inlbuf1;
401                 if (mds->mds_cfg_llh)
402                         RETURN(-EBUSY);
403
404                 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
405                 rc = llog_open(llog_get_context(&obd->obd_llogs, 
406                                                 LLOG_CONFIG_ORIG_CTXT),
407                                &mds->mds_cfg_llh, NULL, name,
408                                OBD_LLOG_FL_CREATE);
409                 if (rc == 0) {
410                         llog_init_handle(mds->mds_cfg_llh, LLOG_F_IS_PLAIN,
411                                          NULL);
412
413                         rc = llog_destroy(mds->mds_cfg_llh);
414                         llog_free_handle(mds->mds_cfg_llh);
415                 }
416                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
417
418                 mds->mds_cfg_llh = NULL;
419                 RETURN(rc);
420         }
421
422         case OBD_IOC_DORECORD: {
423                 char *cfg_buf;
424                 struct llog_rec_hdr rec;
425                 if (!mds->mds_cfg_llh)
426                         RETURN(-EBADF);
427
428                 /* XXX - this probably should be a parameter to this ioctl.
429                  * For now, just use llh_max_transno for expediency. */
430                 rec.lrh_len = llog_data_len(data->ioc_plen1);
431
432                 if (data->ioc_type == LUSTRE_CFG_TYPE) {
433                         rec.lrh_type = OBD_CFG_REC;
434                 } else if (data->ioc_type == PORTALS_CFG_TYPE) {
435                         rec.lrh_type = PTL_CFG_REC;
436                 } else {
437                         CERROR("unknown cfg record type:%d \n", data->ioc_type);
438                         RETURN(-EINVAL);
439                 }
440
441                 OBD_ALLOC(cfg_buf, data->ioc_plen1);
442                 if (cfg_buf == NULL)
443                         RETURN(-EINVAL);
444                 rc = copy_from_user(cfg_buf, data->ioc_pbuf1, data->ioc_plen1);
445                 if (rc) {
446                         OBD_FREE(cfg_buf, data->ioc_plen1);
447                         RETURN(rc);
448                 }
449
450                 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
451                 rc = llog_write_rec(mds->mds_cfg_llh, &rec, NULL, 0,
452                                     cfg_buf, -1);
453                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
454
455                 OBD_FREE(cfg_buf, data->ioc_plen1);
456                 RETURN(rc);
457         }
458         case OBD_IOC_PARSE: {
459                 struct llog_ctxt *ctxt =
460                         llog_get_context(&obd->obd_llogs, LLOG_CONFIG_ORIG_CTXT);
461                 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
462                 rc = class_config_process_llog(ctxt, data->ioc_inlbuf1, NULL);
463                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
464                 if (rc)
465                         RETURN(rc);
466
467                 RETURN(rc);
468         }
469         case OBD_IOC_DUMP_LOG: {
470                 struct llog_ctxt *ctxt =
471                         llog_get_context(&obd->obd_llogs, LLOG_CONFIG_ORIG_CTXT);
472                 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
473                 rc = class_config_dump_llog(ctxt, data->ioc_inlbuf1, NULL);
474                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
475
476                 RETURN(rc);
477         }
478         case OBD_IOC_SET_READONLY: {
479                 void *handle;
480                 struct inode *inode = obd->u.mds.mds_sb->s_root->d_inode;
481                 BDEVNAME_DECLARE_STORAGE(tmp);
482                 CERROR("setting device %s read-only\n",
483                        ll_bdevname(obd->u.mds.mds_sb, tmp));
484
485                 handle = fsfilt_start(obd, inode, FSFILT_OP_MKNOD, NULL);
486                 LASSERT(handle);
487                 rc = fsfilt_commit(obd, obd->u.mds.mds_sb, inode, handle, 1);
488
489                 dev_set_rdonly(ll_sbdev(obd->u.mds.mds_sb), 2);
490                 RETURN(0);
491         }
492
493         case OBD_IOC_CATLOGLIST: {
494                 int count = mds->mds_dt_desc.ld_tgt_count;
495                 rc = llog_catalog_list(obd, count, data);
496                 RETURN(rc);
497
498         }
499         case OBD_IOC_LLOG_CHECK:
500         case OBD_IOC_LLOG_CANCEL:
501         case OBD_IOC_LLOG_REMOVE: {
502                 struct llog_ctxt *ctxt =
503                         llog_get_context(&obd->obd_llogs, LLOG_CONFIG_ORIG_CTXT);
504                 int rc2, valsize;
505                 __u32 group;
506
507                 obd_llog_finish(obd, &obd->obd_llogs,
508                                 mds->mds_dt_desc.ld_tgt_count);
509                 push_ctxt(&saved, ctxt->loc_lvfs_ctxt, NULL);
510                 rc = llog_ioctl(ctxt, cmd, data);
511                 pop_ctxt(&saved, ctxt->loc_lvfs_ctxt, NULL);
512                 obd_llog_cat_initialize(obd, &obd->obd_llogs, 
513                                         mds->mds_dt_desc.ld_tgt_count,
514                                         CATLIST);
515                 group = FILTER_GROUP_FIRST_MDS + mds->mds_num;
516                 valsize = sizeof(group);
517                 rc2 = obd_set_info(mds->mds_dt_exp, strlen("mds_conn"),
518                                    "mds_conn", valsize, &group);
519                 if (!rc)
520                         rc = rc2;
521                 RETURN(rc);
522         }
523         case OBD_IOC_LLOG_INFO:
524         case OBD_IOC_LLOG_PRINT: {
525                 struct llog_ctxt *ctxt =
526                         llog_get_context(&obd->obd_llogs, LLOG_CONFIG_ORIG_CTXT);
527
528                 push_ctxt(&saved, ctxt->loc_lvfs_ctxt, NULL);
529                 rc = llog_ioctl(ctxt, cmd, data);
530                 pop_ctxt(&saved, ctxt->loc_lvfs_ctxt, NULL);
531
532                 RETURN(rc);
533         }
534
535         case OBD_IOC_ABORT_RECOVERY:
536                 target_stop_recovery_thread(obd);
537                 RETURN(0);
538         case OBD_IOC_ROOT_SQUASH: {
539                 __u32 *p = (__u32 *) data->ioc_inlbuf1;
540
541                 if (data->ioc_inllen1 !=
542                     (sizeof(__u32) * 4 + sizeof(ptl_nid_t)))
543                         RETURN(-EINVAL);
544
545                 if (*p == 0) { /* get */
546                         p += 2;
547                         *p++ = mds->mds_squash_uid;
548                         *p++ = mds->mds_squash_gid;
549                         *((ptl_nid_t*) p) = mds->mds_nosquash_nid;
550                 } else { /* set */
551                         p += 2;
552                         mds->mds_squash_uid = *p++;
553                         mds->mds_squash_gid = *p++;
554                         mds->mds_nosquash_nid = *((ptl_nid_t*) p);
555                         CWARN("MDS: squash root to %d:%d, except nid 0x%llx\n",
556                                mds->mds_squash_uid, mds->mds_squash_gid,
557                                mds->mds_nosquash_nid);
558                 }
559                 RETURN(0);
560         }
561         default:
562                 RETURN(-EINVAL);
563         }
564         RETURN(0);
565
566 }
567
568 struct mds_dt_sync_info {
569         struct obd_device *mlsi_obd;      /* the mds to sync */
570         struct obd_device *mlsi_watched;  /* new lov target */
571         int                mlsi_index;    /* index into mds_dt_objids */ 
572 };
573
574 int mds_dt_synchronize(void *data)
575 {
576         struct mds_dt_sync_info *mlsi = data;
577         struct llog_ctxt *ctxt;
578         struct obd_device *obd;
579         struct obd_device *watched;
580         struct mds_obd *mds;
581         struct obd_uuid *uuid;
582         obd_id vals[2];
583         unsigned long flags;
584         __u32  vallen;
585         __u32  group;
586         int old_count;
587         int count;
588         int index;
589         int rc;
590         char name[32] = "CATLIST";
591
592         lock_kernel();
593
594         ptlrpc_daemonize();
595
596         SIGNAL_MASK_LOCK(current, flags);
597         sigfillset(&current->blocked);
598         RECALC_SIGPENDING;
599         SIGNAL_MASK_UNLOCK(current, flags);
600
601         unlock_kernel();
602
603         obd = mlsi->mlsi_obd;
604         watched = mlsi->mlsi_watched;
605         index = mlsi->mlsi_index;
606
607         LASSERT(obd != NULL);
608         LASSERT(watched != NULL);
609
610         OBD_FREE(mlsi, sizeof(*mlsi));
611
612         mds = &obd->u.mds;
613         down(&mds->mds_orphan_recovery_sem);
614
615         uuid = &watched->u.cli.cl_import->imp_target_uuid;
616
617         group = FILTER_GROUP_FIRST_MDS + mds->mds_num;
618         rc = obd_set_info(watched->obd_self_export, strlen("mds_conn"),
619                           "mds_conn", sizeof(group), &group);
620         if (rc)
621                 GOTO(cleanup, rc);
622
623         old_count = mds->mds_dt_desc.ld_tgt_count;
624
625         rc = mds_dt_update_desc(obd, mds->mds_dt_exp);
626         if (rc)
627                 GOTO(cleanup, rc);
628
629         count = mds->mds_dt_desc.ld_tgt_count;
630         LASSERT(count >= old_count);
631
632         vallen = sizeof(vals[1]);
633         rc = obd_get_info(watched->obd_self_export, strlen("last_id"),
634                           "last_id", &vallen, &vals[1]);
635         if (rc)
636                 GOTO(cleanup, rc);
637
638         vals[0] = index;
639         rc = mds_dt_set_info(obd->obd_self_export, strlen("next_id"),
640                              "next_id", 2, vals);
641         if (rc)
642                 GOTO(cleanup, rc);
643
644         obd_llog_finish(obd, &obd->obd_llogs, old_count);
645         obd_llog_cat_initialize(obd, &obd->obd_llogs, count, name);
646
647         ctxt = llog_get_context(&obd->obd_llogs, LLOG_UNLINK_ORIG_CTXT);
648         LASSERT(ctxt != NULL);
649
650         rc = llog_connect(ctxt, count, NULL, NULL, uuid);
651         if (rc != 0) {
652                 CERROR("%s: failed at llog_origin_connect: %d\n", 
653                        obd->obd_name, rc);
654                 GOTO(cleanup, rc);
655         }
656         
657         CWARN("MDS %s: %s now active, resetting orphans\n",
658               obd->obd_name, uuid->uuid);
659
660         rc = mds_dt_clearorphans(&obd->u.mds, uuid);
661         if (rc != 0) {
662                 CERROR("%s: failed at mds_dt_clearorphans(): %d\n", 
663                        obd->obd_name, rc);
664                 GOTO(cleanup, rc);
665         }
666         rc = 0;
667
668 cleanup:
669         up(&mds->mds_orphan_recovery_sem);
670         RETURN(rc);
671 }
672
673 int mds_dt_start_synchronize(struct obd_device *obd,
674                              struct obd_device *watched, 
675                              void *data)
676 {
677         struct mds_dt_sync_info *mlsi;
678         int rc;
679         
680         ENTRY;
681
682         OBD_ALLOC(mlsi, sizeof(*mlsi));
683         if (mlsi == NULL)
684                 RETURN(-ENOMEM);
685
686         mlsi->mlsi_obd = obd;
687         mlsi->mlsi_watched = watched;
688         mlsi->mlsi_index = (int)data;
689
690         rc = kernel_thread(mds_dt_synchronize, mlsi, CLONE_VM | CLONE_FILES);
691         if (rc < 0)
692                 CERROR("%s: error starting mds_dt_synchronize(): %d\n", 
693                        obd->obd_name, rc);
694         else {
695                 CDEBUG(D_HA, "%s: mds_dt_synchronize() thread: %d\n", 
696                        obd->obd_name, rc);
697                 rc = 0;
698         }
699
700         RETURN(rc);
701 }
702
703 int mds_notify(struct obd_device *obd, struct obd_device *watched,
704                int active, void *data)
705 {
706         int rc = 0;
707         ENTRY;
708
709         if (!active)
710                 RETURN(0);
711
712         if (!strcmp(watched->obd_type->typ_name, LUSTRE_MDC_NAME))
713                 RETURN(0);
714
715         if (strcmp(watched->obd_type->typ_name, LUSTRE_OSC_NAME)) {
716                 CERROR("unexpected notification of %s %s!\n",
717                        watched->obd_type->typ_name, watched->obd_name);
718                 RETURN(-EINVAL);
719         }
720
721         if (obd->obd_recovering) {
722                 struct obd_uuid *uuid;
723                 uuid = &watched->u.cli.cl_import->imp_target_uuid;
724
725                 CWARN("MDS %s: in recovery, not resetting orphans on %s\n",
726                       obd->obd_name, uuid->uuid);
727         } else {
728                 rc = mds_dt_start_synchronize(obd, watched, data);
729         }
730         RETURN(rc);
731 }
732
733 int mds_dt_set_info(struct obd_export *exp, obd_count keylen,
734                     void *key, obd_count vallen, void *val)
735 {
736         struct obd_device *obd = class_exp2obd(exp);
737         struct mds_obd *mds = &obd->u.mds;
738         ENTRY;
739
740 #define KEY_IS(str) \
741         (keylen == strlen(str) && memcmp(key, str, keylen) == 0)
742
743         if (KEY_IS("next_id")) {
744                 obd_id *id = (obd_id *)val;
745                 int idx;
746
747                 /* XXX - this really should be vallen != (2 * sizeof(*id)) *
748                  * Just following the precedent set by lov_set_info.       */
749                 if (vallen != 2)
750                         RETURN(-EINVAL);
751
752                 idx = *id;
753                 if ((idx != *id) || (idx >= mds->mds_dt_desc.ld_tgt_count))
754                         RETURN(-EINVAL);
755
756                 CDEBUG(D_CONFIG, "idx: %d id: %llu\n", idx, *(id + 1));
757
758                 mds->mds_dt_objids[idx] = *++id;
759                 CDEBUG(D_CONFIG, "objid: %d: %lld\n", idx, *id);
760                 /* XXX - should we be writing this out here ? */
761                 RETURN(mds_dt_write_objids(obd));
762         }
763
764         RETURN(-EINVAL);
765 }
766
767 int mds_dt_update_config(struct obd_device *obd, int clean)
768 {
769         struct mds_obd *mds = &obd->u.mds;
770         struct lvfs_run_ctxt saved;
771         struct config_llog_instance cfg;
772         struct llog_ctxt *ctxt;
773         char *profile = mds->mds_profile, *name;
774         int rc, version, namelen;
775         ENTRY;
776
777         if (profile == NULL)
778                 RETURN(0);
779
780         cfg.cfg_instance = NULL;
781         cfg.cfg_uuid = mds->mds_dt_uuid;
782
783         namelen = strlen(profile) + 20; /* -clean-######### */
784         OBD_ALLOC(name, namelen);
785         if (name == NULL)
786                 RETURN(-ENOMEM);
787
788         if (clean) {
789                 version = mds->mds_config_version - 1;
790                 sprintf(name, "%s-clean-%d", profile, version);
791         } else {
792                 version = mds->mds_config_version + 1;
793                 sprintf(name, "%s-%d", profile, version);
794         }
795
796         CWARN("Applying configuration log %s\n", name);
797
798         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
799         ctxt = llog_get_context(&obd->obd_llogs, LLOG_CONFIG_ORIG_CTXT);
800         rc = class_config_process_llog(ctxt, name, &cfg);
801         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
802         if (rc == 0)
803                 mds->mds_config_version = version;
804         CWARN("Finished applying configuration log %s: %d\n", name, rc);
805
806         OBD_FREE(name, namelen);
807         RETURN(rc);
808 }
809
810 /* Convert the on-disk LOV EA structre.
811  * We always try to convert from an old LOV EA format to the common in-memory
812  * (lsm) format (obd_unpackmd() understands the old on-disk (lmm) format) and
813  * then convert back to the new on-disk format and save it back to disk
814  * (obd_packmd() only ever saves to the new on-disk format) so we don't have
815  * to convert it each time this inode is accessed.
816  *
817  * This function is a bit interesting in the error handling.  We can safely
818  * ship the old lmm to the client in case of failure, since it uses the same
819  * obd_unpackmd() code and can do the conversion if the MDS fails for some
820  * reason.  We will not delete the old lmm data until we have written the
821  * new format lmm data in fsfilt_set_md(). */
822 int mds_convert_lov_ea(struct obd_device *obd, struct inode *inode,
823                        struct lov_mds_md *lmm, int lmm_size)
824 {
825         struct lov_stripe_md *lsm = NULL;
826         void *handle;
827         int rc, err;
828         ENTRY;
829
830         if (le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC)
831                 RETURN(0);
832
833         CDEBUG(D_INODE, "converting LOV EA on %lu/%u from V0 to V1\n",      
834                 inode->i_ino, inode->i_generation);
835         rc = obd_unpackmd(obd->u.mds.mds_dt_exp, &lsm, lmm, lmm_size);
836         if (rc < 0)
837                 GOTO(conv_end, rc);
838
839         rc = obd_packmd(obd->u.mds.mds_dt_exp, &lmm, lsm);
840         if (rc < 0)
841                 GOTO(conv_free, rc);
842         lmm_size = rc;
843
844         handle = fsfilt_start(obd, inode, FSFILT_OP_SETATTR, NULL);
845         if (IS_ERR(handle)) {
846                 rc = PTR_ERR(handle);
847                 GOTO(conv_free, rc);
848         }
849
850         rc = fsfilt_set_md(obd, inode, handle, lmm, lmm_size);
851
852         err = fsfilt_commit(obd, obd->u.mds.mds_sb, inode, handle, 0);
853         if (!rc)
854                 rc = err ? err : lmm_size;
855         GOTO(conv_free, rc);
856 conv_free:
857         obd_free_memmd(obd->u.mds.mds_dt_exp, &lsm);
858 conv_end:
859         return rc;
860 }
861
862 /* Must be called with i_sem held */
863 int mds_revalidate_lov_ea(struct obd_device *obd, struct inode *inode,
864                           struct lustre_msg *msg, int offset)
865 {
866         struct mds_obd *mds = &obd->u.mds;
867         struct obd_export *dt_exp = mds->mds_dt_exp;
868         struct lov_mds_md *lmm= NULL;
869         struct lov_stripe_md *lsm = NULL;
870         struct obdo *oa = NULL;
871         struct obd_trans_info oti = {0};
872         obd_valid valid = 0;
873         int lmm_size = 0, lsm_size = 0, err, rc;
874         void *handle;
875         ENTRY;
876
877         LASSERT(down_trylock(&inode->i_sem) != 0);
878
879         /* XXX - add way to know if EA is already up to date & return
880          * without doing anything. Easy to do since we get notified of
881          * LOV updates. */
882
883         lmm = lustre_msg_buf(msg, offset, 0);
884         if (lmm == NULL) {
885                 CDEBUG(D_INFO, "no space reserved for inode %lu MD\n",
886                        inode->i_ino);
887                 RETURN(0);
888         }
889         lmm_size = msg->buflens[offset];
890
891         rc = obd_unpackmd(dt_exp, &lsm, lmm, lmm_size);
892         if (rc < 0)
893                 RETURN(0);
894
895         lsm_size = rc;
896
897         LASSERT(lsm->lsm_magic == LOV_MAGIC);
898
899         oa = obdo_alloc();
900         if (oa == NULL)
901                 GOTO(out_lsm, rc = -ENOMEM);
902         oa->o_mode = S_IFREG | 0600;
903         oa->o_id = inode->i_ino;
904         oa->o_generation = inode->i_generation;
905         oa->o_uid = 0; /* must have 0 uid / gid on OST */
906         oa->o_gid = 0;
907         oa->o_gr = FILTER_GROUP_FIRST_MDS + mds->mds_num;
908
909         oa->o_valid = OBD_MD_FLID | OBD_MD_FLGENER | OBD_MD_FLTYPE |
910                       OBD_MD_FLMODE | OBD_MD_FLUID | OBD_MD_FLGID |
911                       OBD_MD_FLGROUP;
912         valid = OBD_MD_FLTYPE | OBD_MD_FLATIME | OBD_MD_FLMTIME |
913                 OBD_MD_FLCTIME;
914         obdo_from_inode(oa, inode, valid);
915
916         rc = obd_revalidate_md(dt_exp, oa, lsm, &oti);
917         if (rc == 0)
918                 GOTO(out_oa, rc);
919         if (rc < 0) {
920                 CERROR("Error validating LOV EA on %lu/%u: %d\n",
921                        inode->i_ino, inode->i_generation, rc);
922                 GOTO(out_oa, rc);
923         }
924
925         rc = obd_packmd(dt_exp, &lmm, lsm);
926         if (rc < 0)
927                 GOTO(out_oa, rc);
928         lmm_size = rc;
929
930         handle = fsfilt_start(obd, inode, FSFILT_OP_SETATTR, NULL);
931         if (IS_ERR(handle)) {
932                 rc = PTR_ERR(handle);
933                 GOTO(out_oa, rc);
934         }
935
936         rc = fsfilt_set_md(obd, inode, handle, lmm, lmm_size);
937         err = fsfilt_commit(obd, inode->i_sb, inode, handle, 0);
938         if (!rc)
939                 rc = err;
940
941         EXIT;
942 out_oa:
943         obdo_free(oa);
944 out_lsm:
945         obd_free_memmd(dt_exp, &lsm);
946         return rc;
947 }