Whamcloud - gitweb
b=17353
[fs/lustre-release.git] / lustre / mdd / mdd_lov.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/mdd/mdd_lov.c
37  *
38  * Lustre Metadata Server (mds) handling of striped file data
39  *
40  * Author: Peter Braam <braam@clusterfs.com>
41  * Author: wangdi <wangdi@clusterfs.com>
42  */
43
44 #ifndef EXPORT_SYMTAB
45 # define EXPORT_SYMTAB
46 #endif
47 #define DEBUG_SUBSYSTEM S_MDS
48
49 #include <linux/module.h>
50 #include <obd.h>
51 #include <obd_class.h>
52 #include <lustre_ver.h>
53 #include <obd_support.h>
54 #include <obd_lov.h>
55 #include <lprocfs_status.h>
56 #include <lustre_mds.h>
57 #include <lustre_fid.h>
58 #include <lustre/lustre_idl.h>
59
60 #include "mdd_internal.h"
61
62 static int mdd_notify(struct obd_device *host, struct obd_device *watched,
63                       enum obd_notify_event ev, void *owner)
64 {
65         struct mdd_device *mdd = owner;
66         int rc = 0;
67         ENTRY;
68
69         LASSERT(owner != NULL);
70         switch (ev)
71         {
72                 case OBD_NOTIFY_ACTIVE:
73                 case OBD_NOTIFY_SYNC:
74                 case OBD_NOTIFY_SYNC_NONBLOCK:
75                         rc = md_do_upcall(NULL, &mdd->mdd_md_dev, MD_LOV_SYNC);
76                         break;
77                 case OBD_NOTIFY_CONFIG:
78                         rc = md_do_upcall(NULL, &mdd->mdd_md_dev, MD_LOV_CONFIG);
79                         break;
80                 default:
81                         CDEBUG(D_INFO, "Unhandled notification %#x\n", ev);
82         }
83
84         RETURN(rc);
85 }
86
87 /* The obd is created for handling data stack for mdd */
88 int mdd_init_obd(const struct lu_env *env, struct mdd_device *mdd,
89                  struct lustre_cfg *cfg)
90 {
91         char                   *dev = lustre_cfg_string(cfg, 0);
92         int                     rc, name_size, uuid_size;
93         char                   *name, *uuid;
94         __u32                   mds_id;
95         struct lustre_cfg_bufs *bufs;
96         struct lustre_cfg      *lcfg;
97         struct obd_device      *obd;
98         ENTRY;
99
100         mds_id = lu_site2md(mdd2lu_dev(mdd)->ld_site)->ms_node_id;
101         name_size = strlen(MDD_OBD_NAME) + 35;
102         uuid_size = strlen(MDD_OBD_UUID) + 35;
103
104         OBD_ALLOC(name, name_size);
105         OBD_ALLOC(uuid, uuid_size);
106         if (name == NULL || uuid == NULL)
107                 GOTO(cleanup_mem, rc = -ENOMEM);
108
109         OBD_ALLOC_PTR(bufs);
110         if (!bufs)
111                 GOTO(cleanup_mem, rc = -ENOMEM);
112
113         snprintf(name, strlen(MDD_OBD_NAME) + 35, "%s-%s-%d",
114                  MDD_OBD_NAME, dev, mds_id);
115
116         snprintf(uuid, strlen(MDD_OBD_UUID) + 35, "%s-%s-%d",
117                  MDD_OBD_UUID, dev, mds_id);
118
119         lustre_cfg_bufs_reset(bufs, name);
120         lustre_cfg_bufs_set_string(bufs, 1, MDD_OBD_TYPE);
121         lustre_cfg_bufs_set_string(bufs, 2, uuid);
122         lustre_cfg_bufs_set_string(bufs, 3, (char*)dev/* MDD_OBD_PROFILE */);
123         lustre_cfg_bufs_set_string(bufs, 4, (char*)dev);
124
125         lcfg = lustre_cfg_new(LCFG_ATTACH, bufs);
126         OBD_FREE_PTR(bufs);
127         if (!lcfg)
128                 GOTO(cleanup_mem, rc = -ENOMEM);
129
130         rc = class_attach(lcfg);
131         if (rc)
132                 GOTO(lcfg_cleanup, rc);
133
134         obd = class_name2obd(name);
135         if (!obd) {
136                 CERROR("Can not find obd %s\n", MDD_OBD_NAME);
137                 LBUG();
138         }
139
140         obd->obd_recovering = 1;
141         obd->u.mds.mds_id = mds_id;
142         rc = class_setup(obd, lcfg);
143         if (rc)
144                 GOTO(class_detach, rc);
145
146         /*
147          * Add here for obd notify mechanism, when adding a new ost, the mds
148          * will notify this mdd.
149          */
150         obd->obd_upcall.onu_upcall = mdd_notify;
151         obd->obd_upcall.onu_owner = mdd;
152         mdd->mdd_obd_dev = obd;
153
154         EXIT;
155 class_detach:
156         if (rc)
157                 class_detach(obd, lcfg);
158 lcfg_cleanup:
159         lustre_cfg_free(lcfg);
160 cleanup_mem:
161         if (name)
162                 OBD_FREE(name, name_size);
163         if (uuid)
164                 OBD_FREE(uuid, uuid_size);
165         return rc;
166 }
167
168 int mdd_fini_obd(const struct lu_env *env, struct mdd_device *mdd,
169                  struct lustre_cfg *lcfg)
170 {
171         struct obd_device      *obd;
172         int rc;
173         ENTRY;
174
175         obd = mdd2obd_dev(mdd);
176         LASSERT(obd);
177
178         rc = class_cleanup(obd, lcfg);
179         if (rc)
180                 GOTO(lcfg_cleanup, rc);
181
182         obd->obd_upcall.onu_upcall = NULL;
183         obd->obd_upcall.onu_owner = NULL;
184         rc = class_detach(obd, lcfg);
185         if (rc)
186                 GOTO(lcfg_cleanup, rc);
187         mdd->mdd_obd_dev = NULL;
188         
189         EXIT;
190 lcfg_cleanup:
191         return rc;
192 }
193
194 int mdd_get_md(const struct lu_env *env, struct mdd_object *obj,
195                void *md, int *md_size, const char *name)
196 {
197         int rc;
198         ENTRY;
199
200         rc = mdo_xattr_get(env, obj, mdd_buf_get(env, md, *md_size), name,
201                            mdd_object_capa(env, obj));
202         /*
203          * XXX: Handling of -ENODATA, the right way is to have ->do_md_get()
204          * exported by dt layer.
205          */
206         if (rc == 0 || rc == -ENODATA) {
207                 *md_size = 0;
208                 rc = 0;
209         } else if (rc < 0) {
210                 CERROR("Error %d reading eadata \n", rc);
211         } else {
212                 /* XXX: Convert lov EA but fixed after verification test. */
213                 *md_size = rc;
214         }
215
216         RETURN(rc);
217 }
218
219 int mdd_get_md_locked(const struct lu_env *env, struct mdd_object *obj,
220                       void *md, int *md_size, const char *name)
221 {
222         int rc = 0;
223         mdd_read_lock(env, obj, MOR_TGT_CHILD);
224         rc = mdd_get_md(env, obj, md, md_size, name);
225         mdd_read_unlock(env, obj);
226         return rc;
227 }
228
229 static int mdd_lov_set_stripe_md(const struct lu_env *env,
230                                  struct mdd_object *obj, struct lu_buf *buf,
231                                  struct thandle *handle)
232 {
233         struct mdd_device       *mdd = mdo2mdd(&obj->mod_obj);
234         struct obd_device       *obd = mdd2obd_dev(mdd);
235         struct obd_export       *lov_exp = obd->u.mds.mds_osc_exp;
236         struct lov_stripe_md    *lsm = NULL;
237         int rc;
238         ENTRY;
239
240         LASSERT(S_ISDIR(mdd_object_type(obj)) || S_ISREG(mdd_object_type(obj)));
241         rc = obd_iocontrol(OBD_IOC_LOV_SETSTRIPE, lov_exp, 0,
242                            &lsm, buf->lb_buf);
243         if (rc)
244                 RETURN(rc);
245         obd_free_memmd(lov_exp, &lsm);
246
247         rc = mdd_xattr_set_txn(env, obj, buf, MDS_LOV_MD_NAME, 0, handle);
248
249         CDEBUG(D_INFO, "set lov ea of "DFID" rc %d \n", PFID(mdo2fid(obj)), rc);
250         RETURN(rc);
251 }
252
253 /*
254  * Permission check is done before call it,
255  * no need check again.
256  */
257 static int mdd_lov_set_dir_md(const struct lu_env *env,
258                               struct mdd_object *obj, struct lu_buf *buf,
259                               struct thandle *handle)
260 {
261         struct lov_user_md *lum = NULL;
262         int rc = 0;
263         ENTRY;
264
265         LASSERT(S_ISDIR(mdd_object_type(obj)));
266         lum = (struct lov_user_md*)buf->lb_buf;
267
268         /* if { size, offset, count } = { 0, -1, 0 } and no pool (i.e. all default
269          * values specified) then delete default striping from dir. */
270         if (lum->lmm_stripe_size == 0 && lum->lmm_stripe_count == 0 &&
271             lum->lmm_stripe_offset == (typeof(lum->lmm_stripe_offset))(-1) &&
272             lum->lmm_magic != LOV_USER_MAGIC_V3) {
273                 rc = mdd_xattr_set_txn(env, obj, &LU_BUF_NULL,
274                                        MDS_LOV_MD_NAME, 0, handle);
275                 if (rc == -ENODATA)
276                         rc = 0;
277                 CDEBUG(D_INFO, "delete lov ea of "DFID" rc %d \n",
278                                 PFID(mdo2fid(obj)), rc);
279         } else {
280                 rc = mdd_lov_set_stripe_md(env, obj, buf, handle);
281         }
282         RETURN(rc);
283 }
284
285 int mdd_lsm_sanity_check(const struct lu_env *env,  struct mdd_object *obj)
286 {
287         struct lu_attr   *tmp_la = &mdd_env_info(env)->mti_la;
288         struct md_ucred  *uc     = md_ucred(env);
289         int rc;
290         ENTRY;
291
292         rc = mdd_la_get(env, obj, tmp_la, BYPASS_CAPA);
293         if (rc)
294                 RETURN(rc);
295
296         if ((uc->mu_fsuid != tmp_la->la_uid) &&
297             !mdd_capable(uc, CFS_CAP_FOWNER))
298                 rc = mdd_permission_internal_locked(env, obj, tmp_la,
299                                                     MAY_WRITE, MOR_TGT_CHILD);
300
301         RETURN(rc);
302 }
303
304 int mdd_lov_set_md(const struct lu_env *env, struct mdd_object *pobj,
305                    struct mdd_object *child, struct lov_mds_md *lmmp,
306                    int lmm_size, struct thandle *handle, int set_stripe)
307 {
308         struct lu_buf *buf;
309         umode_t mode;
310         int rc = 0;
311         ENTRY;
312
313         buf = mdd_buf_get(env, lmmp, lmm_size);
314         mode = mdd_object_type(child);
315         if (S_ISREG(mode) && lmm_size > 0) {
316                 if (set_stripe) {
317                         rc = mdd_lov_set_stripe_md(env, child, buf, handle);
318                 } else {
319                         rc = mdd_xattr_set_txn(env, child, buf,
320                                                MDS_LOV_MD_NAME, 0, handle);
321                 }
322         } else if (S_ISDIR(mode)) {
323                 if (lmmp == NULL && lmm_size == 0) {
324                         struct mdd_device *mdd = mdd_obj2mdd_dev(child);
325                         struct lov_mds_md *lmm = mdd_max_lmm_get(env, mdd);
326                         int size = sizeof(struct lov_mds_md_v3);
327
328                         /* Get parent dir stripe and set */
329                         if (pobj != NULL)
330                                 rc = mdd_get_md_locked(env, pobj, lmm, &size,
331                                                        MDS_LOV_MD_NAME);
332                         if (rc > 0) {
333                                 buf = mdd_buf_get(env, lmm, size);
334                                 rc = mdd_xattr_set_txn(env, child, buf,
335                                                MDS_LOV_MD_NAME, 0, handle);
336                                 if (rc)
337                                         CERROR("error on copy stripe info: rc "
338                                                 "= %d\n", rc);
339                         }
340                 } else {
341                         LASSERT(lmmp != NULL && lmm_size > 0);
342                         rc = mdd_lov_set_dir_md(env, child, buf, handle);
343                 }
344         }
345         CDEBUG(D_INFO, "Set lov md %p size %d for fid "DFID" rc %d\n",
346                         lmmp, lmm_size, PFID(mdo2fid(child)), rc);
347         RETURN(rc);
348 }
349
350 /*
351  * XXX: this is for create lsm object id, which should identify the lsm object
352  * unique in the whole mds, as I see. But it seems, we still not need it
353  * now. Right? So just borrow the ll_fid_build_ino().
354  */
355 static obd_id mdd_lov_create_id(const struct lu_fid *fid)
356 {
357         return fid_flatten(fid);
358 }
359
360 static void mdd_lov_update_objids(struct obd_device *obd, struct lov_mds_md *lmm)
361 {
362         struct mds_obd *mds = &obd->u.mds;
363         int j;
364         struct lov_ost_data_v1 *lmm_objects;
365         ENTRY;
366
367         /* if we create file without objects - lmm is NULL */
368         if (lmm == NULL)
369                 return;
370
371         if (le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_V3)
372                 lmm_objects = ((struct lov_mds_md_v3 *)lmm)->lmm_objects;
373         else
374                 lmm_objects = lmm->lmm_objects;
375
376         for (j = 0; j < le32_to_cpu(lmm->lmm_stripe_count); j++) {
377                 int i = le32_to_cpu(lmm_objects[j].l_ost_idx);
378                 obd_id id = le64_to_cpu(lmm_objects[j].l_object_id);
379                 int page = i / OBJID_PER_PAGE();
380                 int idx = i % OBJID_PER_PAGE();
381                 obd_id *data = mds->mds_lov_page_array[page];
382
383                 CDEBUG(D_INODE,"update last object for ost %d - new %llu"
384                                " old %llu\n", i, id, data[idx]);
385                 if (id > data[idx]) {
386                         data[idx] = id;
387                         cfs_bitmap_set(mds->mds_lov_page_dirty, page);
388                 }
389         }
390         EXIT;
391 }
392
393 void mdd_lov_objid_update(struct mdd_device *mdd, struct lov_mds_md *lmm)
394 {
395         mdd_lov_update_objids(mdd->mdd_obd_dev, lmm);
396 }
397
398 void mdd_lov_create_finish(const struct lu_env *env, struct mdd_device *mdd,
399                            struct lov_mds_md *lmm, int lmm_size,
400                            const struct md_op_spec *spec)
401 {
402         if (lmm && !spec->u.sp_ea.no_lov_create)
403                 OBD_FREE(lmm, lmm_size);
404 }
405
406 int mdd_lov_create(const struct lu_env *env, struct mdd_device *mdd,
407                    struct mdd_object *parent, struct mdd_object *child,
408                    struct lov_mds_md **lmm, int *lmm_size,
409                    const struct md_op_spec *spec, struct lu_attr *la)
410 {
411         struct obd_device     *obd = mdd2obd_dev(mdd);
412         struct obd_export     *lov_exp = obd->u.mds.mds_osc_exp;
413         struct obdo           *oa;
414         struct lov_stripe_md  *lsm = NULL;
415         const void            *eadata = spec->u.sp_ea.eadata;
416         __u32                  create_flags = spec->sp_cr_flags;
417         struct obd_trans_info *oti = &mdd_env_info(env)->mti_oti;
418         int                    rc = 0;
419         ENTRY;
420
421         if (!md_should_create(create_flags))
422                 RETURN(0);
423
424         oti_init(oti, NULL);
425
426         /* replay case, has objects already, only get lov from eadata */
427         if (spec->u.sp_ea.no_lov_create != 0) {
428                 *lmm = (struct lov_mds_md *)spec->u.sp_ea.eadata;
429                 *lmm_size = spec->u.sp_ea.eadatalen;
430                 RETURN(0);
431         }
432
433         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_ALLOC_OBDO))
434                 GOTO(out_ids, rc = -ENOMEM);
435
436         LASSERT(lov_exp != NULL);
437         oa = &mdd_env_info(env)->mti_oa;
438
439         oa->o_uid = 0; /* must have 0 uid / gid on OST */
440         oa->o_gid = 0;
441         oa->o_gr = FILTER_GROUP_MDS0 +
442                 lu_site2md(mdd2lu_dev(mdd)->ld_site)->ms_node_id;
443         oa->o_mode = S_IFREG | 0600;
444         oa->o_id = mdd_lov_create_id(mdd_object_fid(child));
445         oa->o_valid = OBD_MD_FLID | OBD_MD_FLTYPE | OBD_MD_FLFLAGS |
446                 OBD_MD_FLMODE | OBD_MD_FLUID | OBD_MD_FLGID | OBD_MD_FLGROUP;
447         oa->o_size = 0;
448
449         if (!(create_flags & MDS_OPEN_HAS_OBJS)) {
450                 if (create_flags & MDS_OPEN_HAS_EA) {
451                         LASSERT(eadata != NULL);
452                         rc = obd_iocontrol(OBD_IOC_LOV_SETSTRIPE, lov_exp,
453                                            0, &lsm, (void*)eadata);
454                         if (rc)
455                                 GOTO(out_oti, rc);
456                         lsm->lsm_object_id = oa->o_id;
457                         lsm->lsm_object_gr = oa->o_gr;
458                 } else if (parent != NULL) {
459                         /* get lov ea from parent and set to lov */
460                         struct lov_mds_md *_lmm;
461                         int _lmm_size;
462
463                         _lmm_size = mdd_lov_mdsize(env, mdd);
464                         _lmm = mdd_max_lmm_get(env, mdd);
465
466                         if (_lmm == NULL)
467                                 GOTO(out_oti, rc = -ENOMEM);
468
469                         rc = mdd_get_md_locked(env, parent, _lmm,
470                                                &_lmm_size,
471                                                MDS_LOV_MD_NAME);
472                         if (rc > 0)
473                                 rc = obd_iocontrol(OBD_IOC_LOV_SETSTRIPE,
474                                                    lov_exp, 0, &lsm, _lmm);
475                         if (rc)
476                                 GOTO(out_oti, rc);
477                 }
478
479                 rc = obd_create(lov_exp, oa, &lsm, oti);
480                 if (rc) {
481                         if (rc > 0) {
482                                 CERROR("Create error for "DFID": %d\n",
483                                        PFID(mdo2fid(child)), rc);
484                                 rc = -EIO;
485                         }
486                         GOTO(out_oti, rc);
487                 }
488                 LASSERT(lsm->lsm_object_gr >= FILTER_GROUP_MDS0);
489         } else {
490                 LASSERT(eadata != NULL);
491                 rc = obd_iocontrol(OBD_IOC_LOV_SETEA, lov_exp, 0, &lsm,
492                                    (void*)eadata);
493                 if (rc)
494                         GOTO(out_oti, rc);
495                 lsm->lsm_object_id = oa->o_id;
496                 lsm->lsm_object_gr = oa->o_gr;
497         }
498
499         /*
500          * Sometimes, we may truncate some object(without lsm) then open it
501          * (with write flags), so creating lsm above.  The Nonzero(truncated)
502          * size should tell ost, since size attr is in charge by OST.
503          */
504         if (la->la_size && la->la_valid & LA_SIZE) {
505                 struct obd_info *oinfo = &mdd_env_info(env)->mti_oi;
506
507                 memset(oinfo, 0, sizeof(*oinfo));
508
509                 /* When setting attr to ost, FLBKSZ is not needed. */
510                 oa->o_valid &= ~OBD_MD_FLBLKSZ;
511                 obdo_from_la(oa, la, OBD_MD_FLTYPE | OBD_MD_FLATIME |
512                              OBD_MD_FLMTIME | OBD_MD_FLCTIME | OBD_MD_FLSIZE);
513
514                 /*
515                  * XXX: Pack lustre id to OST, in OST, it will be packed by
516                  * filter_fid, but can not see what is the usages. So just pack
517                  * o_seq o_ver here, maybe fix it after this cycle.
518                  */
519                 oa->o_fid = fid_seq(mdd_object_fid(child));
520                 oa->o_generation = fid_oid(mdd_object_fid(child));
521                 oa->o_valid |= OBD_MD_FLFID | OBD_MD_FLGENER;
522                 oinfo->oi_oa = oa;
523                 oinfo->oi_md = lsm;
524                 oinfo->oi_capa = mdo_capa_get(env, child, NULL,
525                                               CAPA_OPC_MDS_DEFAULT);
526                 oinfo->oi_policy.l_extent.start = la->la_size;
527                 oinfo->oi_policy.l_extent.end = OBD_OBJECT_EOF;
528
529                 if (IS_ERR(oinfo->oi_capa))
530                         oinfo->oi_capa = NULL;
531
532                 rc = obd_punch_rqset(lov_exp, oinfo, oti);
533                 capa_put(oinfo->oi_capa);
534                 if (rc) {
535                         CERROR("Error setting attrs for "DFID": rc %d\n",
536                                PFID(mdo2fid(child)), rc);
537                         if (rc > 0) {
538                                 CERROR("obd_setattr for "DFID" rc %d\n",
539                                         PFID(mdo2fid(child)), rc);
540                                 rc = -EIO;
541                         }
542                         GOTO(out_oti, rc);
543                 }
544         }
545
546         /* blksize should be changed after create data object */
547         la->la_valid |= LA_BLKSIZE;
548         la->la_blksize = oa->o_blksize;
549         *lmm = NULL;
550         rc = obd_packmd(lov_exp, lmm, lsm);
551         if (rc < 0) {
552                 CERROR("Cannot pack lsm, err = %d\n", rc);
553                 GOTO(out_oti, rc);
554         }
555         *lmm_size = rc;
556         rc = 0;
557         EXIT;
558 out_oti:
559         oti_free_cookies(oti);
560 out_ids:
561         if (lsm)
562                 obd_free_memmd(lov_exp, &lsm);
563
564         return rc;
565 }
566
567 int mdd_log_op_unlink(struct obd_device *obd,
568                       struct lov_mds_md *lmm, int lmm_size,
569                       struct llog_cookie *logcookies, int cookies_size)
570 {
571         struct mds_obd *mds = &obd->u.mds;
572         struct lov_stripe_md *lsm = NULL;
573         struct llog_unlink_rec *lur;
574         struct llog_ctxt *ctxt;
575         int rc;
576         ENTRY;
577
578         if (IS_ERR(mds->mds_osc_obd))
579                 RETURN(PTR_ERR(mds->mds_osc_obd));
580
581         rc = obd_unpackmd(mds->mds_osc_exp, &lsm, lmm, lmm_size);
582         if (rc < 0)
583                 RETURN(rc);
584         rc = obd_checkmd(mds->mds_osc_exp, obd->obd_self_export, lsm);
585         if (rc)
586                 GOTO(out, rc);
587         /* first prepare unlink log record */
588         OBD_ALLOC(lur, sizeof(*lur));
589         if (!lur)
590                 GOTO(out, rc = -ENOMEM);
591         lur->lur_hdr.lrh_len = lur->lur_tail.lrt_len = sizeof(*lur);
592         lur->lur_hdr.lrh_type = MDS_UNLINK_REC;
593
594         ctxt = llog_get_context(obd, LLOG_MDS_OST_ORIG_CTXT);
595         rc = llog_add(ctxt, &lur->lur_hdr, lsm, logcookies,
596                       cookies_size / sizeof(struct llog_cookie));
597         llog_ctxt_put(ctxt);
598
599         OBD_FREE(lur, sizeof(*lur));
600         GOTO(out, rc);
601 out:
602         obd_free_memmd(mds->mds_osc_exp, &lsm);
603         return rc;
604 }
605
606 int mdd_unlink_log(const struct lu_env *env, struct mdd_device *mdd,
607                    struct mdd_object *mdd_cobj, struct md_attr *ma)
608 {
609         struct obd_device *obd = mdd2obd_dev(mdd);
610
611         LASSERT(ma->ma_valid & MA_LOV);
612
613         if ((ma->ma_cookie_size > 0) &&
614             (mdd_log_op_unlink(obd, ma->ma_lmm, ma->ma_lmm_size,
615                                ma->ma_cookie, ma->ma_cookie_size) > 0)) {
616                 ma->ma_valid |= MA_COOKIE;
617         }
618         return 0;
619 }
620
621 int mdd_log_op_setattr(struct obd_device *obd, __u32 uid, __u32 gid,
622                       struct lov_mds_md *lmm, int lmm_size,
623                       struct llog_cookie *logcookies, int cookies_size)
624 {
625         struct mds_obd *mds = &obd->u.mds;
626         struct lov_stripe_md *lsm = NULL;
627         struct llog_setattr_rec *lsr;
628         struct llog_ctxt *ctxt;
629         int rc;
630         ENTRY;
631
632         if (IS_ERR(mds->mds_osc_obd))
633                 RETURN(PTR_ERR(mds->mds_osc_obd));
634
635         rc = obd_unpackmd(mds->mds_osc_exp, &lsm, lmm, lmm_size);
636         if (rc < 0)
637                 RETURN(rc);
638
639         rc = obd_checkmd(mds->mds_osc_exp, obd->obd_self_export, lsm);
640         if (rc)
641                 GOTO(out, rc);
642
643         OBD_ALLOC(lsr, sizeof(*lsr));
644         if (!lsr)
645                 GOTO(out, rc = -ENOMEM);
646
647         /* prepare setattr log record */
648         lsr->lsr_hdr.lrh_len = lsr->lsr_tail.lrt_len = sizeof(*lsr);
649         lsr->lsr_hdr.lrh_type = MDS_SETATTR_REC;
650         lsr->lsr_uid = uid;
651         lsr->lsr_gid = gid;
652
653         /* write setattr log */
654         ctxt = llog_get_context(obd, LLOG_MDS_OST_ORIG_CTXT);
655         rc = llog_add(ctxt, &lsr->lsr_hdr, lsm, logcookies,
656                       cookies_size / sizeof(struct llog_cookie));
657
658         llog_ctxt_put(ctxt);
659
660         OBD_FREE(lsr, sizeof(*lsr));
661  out:
662         obd_free_memmd(mds->mds_osc_exp, &lsm);
663         RETURN(rc);
664 }
665
666 int mdd_setattr_log(const struct lu_env *env, struct mdd_device *mdd,
667                     const struct md_attr *ma,
668                     struct lov_mds_md *lmm, int lmm_size,
669                     struct llog_cookie *logcookies, int cookies_size)
670 {
671         struct obd_device *obd = mdd2obd_dev(mdd);
672
673         /* journal chown/chgrp in llog, just like unlink */
674         if (lmm_size > 0) {
675                 CDEBUG(D_INFO, "setattr llog for uid/gid=%lu/%lu\n",
676                         (unsigned long)ma->ma_attr.la_uid, 
677                         (unsigned long)ma->ma_attr.la_gid);
678                 return mdd_log_op_setattr(obd, ma->ma_attr.la_uid,
679                                           ma->ma_attr.la_gid, lmm, 
680                                           lmm_size, logcookies,
681                                           cookies_size);
682         } else
683                 return 0;
684 }
685
686 static int mdd_osc_setattr_async(struct obd_device *obd, __u32 uid, __u32 gid,
687                           struct lov_mds_md *lmm, int lmm_size,
688                           struct llog_cookie *logcookies, __u64 id, __u32 gen,
689                           struct obd_capa *oc)
690 {
691         struct mds_obd *mds = &obd->u.mds;
692         struct obd_trans_info oti = { 0 };
693         struct obd_info oinfo = { { { 0 } } };
694         int rc;
695         ENTRY;
696
697         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_OST_SETATTR))
698                 RETURN(0);
699
700         /* first get memory EA */
701         OBDO_ALLOC(oinfo.oi_oa);
702         if (!oinfo.oi_oa)
703                 RETURN(-ENOMEM);
704
705         LASSERT(lmm);
706
707         rc = obd_unpackmd(mds->mds_osc_exp, &oinfo.oi_md, lmm, lmm_size);
708         if (rc < 0) {
709                 CERROR("Error unpack md %p for inode "LPU64"\n", lmm, id);
710                 GOTO(out, rc);
711         }
712
713         rc = obd_checkmd(mds->mds_osc_exp, obd->obd_self_export, oinfo.oi_md);
714         if (rc) {
715                 CERROR("Error revalidate lsm %p \n", oinfo.oi_md);
716                 GOTO(out, rc);
717         }
718
719         /* then fill oa */
720         oinfo.oi_oa->o_uid = uid;
721         oinfo.oi_oa->o_gid = gid;
722         oinfo.oi_oa->o_id = oinfo.oi_md->lsm_object_id;
723         oinfo.oi_oa->o_gr = oinfo.oi_md->lsm_object_gr;
724         oinfo.oi_oa->o_valid |= OBD_MD_FLID | OBD_MD_FLGROUP |
725                                 OBD_MD_FLUID | OBD_MD_FLGID;
726         if (logcookies) {
727                 oinfo.oi_oa->o_valid |= OBD_MD_FLCOOKIE;
728                 oti.oti_logcookies = logcookies;
729         }
730
731         oinfo.oi_oa->o_fid = id;
732         oinfo.oi_oa->o_generation = gen;
733         oinfo.oi_oa->o_valid |= OBD_MD_FLFID | OBD_MD_FLGENER;
734         oinfo.oi_capa = oc;
735
736         /* do async setattr from mds to ost not waiting for responses. */
737         rc = obd_setattr_async(mds->mds_osc_exp, &oinfo, &oti, NULL);
738         if (rc)
739                 CDEBUG(D_INODE, "mds to ost setattr objid 0x"LPX64
740                        " on ost error %d\n", oinfo.oi_md->lsm_object_id, rc);
741 out:
742         if (oinfo.oi_md)
743                 obd_free_memmd(mds->mds_osc_exp, &oinfo.oi_md);
744         OBDO_FREE(oinfo.oi_oa);
745         RETURN(rc);
746 }
747
748 int mdd_lov_setattr_async(const struct lu_env *env, struct mdd_object *obj,
749                           struct lov_mds_md *lmm, int lmm_size, 
750                           struct llog_cookie *logcookies)
751 {
752         struct mdd_device   *mdd = mdo2mdd(&obj->mod_obj);
753         struct obd_device   *obd = mdd2obd_dev(mdd);
754         struct lu_attr      *tmp_la = &mdd_env_info(env)->mti_la;
755         const struct lu_fid *fid = mdd_object_fid(obj);
756         struct obd_capa     *oc;
757         int rc = 0;
758         ENTRY;
759
760         mdd_read_lock(env, obj, MOR_TGT_CHILD);
761         rc = mdo_attr_get(env, obj, tmp_la, mdd_object_capa(env, obj));
762         mdd_read_unlock(env, obj);
763         if (rc)
764                 RETURN(rc);
765
766         oc = mdo_capa_get(env, obj, NULL, CAPA_OPC_MDS_DEFAULT);
767         if (IS_ERR(oc))
768                 oc = NULL;
769
770         rc = mdd_osc_setattr_async(obd, tmp_la->la_uid, tmp_la->la_gid, lmm,
771                                    lmm_size, logcookies, fid_seq(fid),
772                                    fid_oid(fid), oc);
773
774         capa_put(oc);
775
776         RETURN(rc);
777 }