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