Whamcloud - gitweb
e60f9e4b69145dd4fcef57e1ced48d1320302bb4
[fs/lustre-release.git] / lustre / mdd / mdd_dir.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2012, Intel Corporation.
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_dir.c
37  *
38  * Lustre Metadata Server (mdd) routines
39  *
40  * Author: Wang Di <wangdi@clusterfs.com>
41  */
42
43 #define DEBUG_SUBSYSTEM S_MDS
44
45 #include <obd_class.h>
46 #include <obd_support.h>
47 #include <lustre_mds.h>
48 #include <lustre_fid.h>
49
50 #include "mdd_internal.h"
51
52 static const char dot[] = ".";
53 static const char dotdot[] = "..";
54
55 static struct lu_name lname_dotdot = {
56         (char *) dotdot,
57         sizeof(dotdot) - 1
58 };
59
60 static int __mdd_lookup(const struct lu_env *env, struct md_object *pobj,
61                         const struct lu_name *lname, struct lu_fid* fid,
62                         int mask);
63 static inline int mdd_links_add(const struct lu_env *env,
64                                 struct mdd_object *mdd_obj,
65                                 const struct lu_fid *pfid,
66                                 const struct lu_name *lname,
67                                 struct thandle *handle, int first);
68 static inline int mdd_links_del(const struct lu_env *env,
69                                 struct mdd_object *mdd_obj,
70                                 const struct lu_fid *pfid,
71                                 const struct lu_name *lname,
72                                 struct thandle *handle);
73 static int mdd_links_rename(const struct lu_env *env,
74                             struct mdd_object *mdd_obj,
75                             const struct lu_fid *oldpfid,
76                             const struct lu_name *oldlname,
77                             const struct lu_fid *newpfid,
78                             const struct lu_name *newlname,
79                             struct thandle *handle,
80                             int first, int check);
81
82 static int
83 __mdd_lookup_locked(const struct lu_env *env, struct md_object *pobj,
84                     const struct lu_name *lname, struct lu_fid* fid, int mask)
85 {
86         const char *name = lname->ln_name;
87         struct mdd_object *mdd_obj = md2mdd_obj(pobj);
88         struct dynlock_handle *dlh;
89         int rc;
90
91         dlh = mdd_pdo_read_lock(env, mdd_obj, name, MOR_TGT_PARENT);
92         if (unlikely(dlh == NULL))
93                 return -ENOMEM;
94         rc = __mdd_lookup(env, pobj, lname, fid, mask);
95         mdd_pdo_read_unlock(env, mdd_obj, dlh);
96
97         return rc;
98 }
99
100 int mdd_lookup(const struct lu_env *env,
101                struct md_object *pobj, const struct lu_name *lname,
102                struct lu_fid* fid, struct md_op_spec *spec)
103 {
104         int rc;
105         ENTRY;
106         rc = __mdd_lookup_locked(env, pobj, lname, fid, MAY_EXEC);
107         RETURN(rc);
108 }
109
110 int mdd_parent_fid(const struct lu_env *env, struct mdd_object *obj,
111                    struct lu_fid *fid)
112 {
113         return __mdd_lookup_locked(env, &obj->mod_obj, &lname_dotdot, fid, 0);
114 }
115
116 /*
117  * For root fid use special function, which does not compare version component
118  * of fid. Version component is different for root fids on all MDTs.
119  */
120 int mdd_is_root(struct mdd_device *mdd, const struct lu_fid *fid)
121 {
122         return fid_seq(&mdd->mdd_root_fid) == fid_seq(fid) &&
123                 fid_oid(&mdd->mdd_root_fid) == fid_oid(fid);
124 }
125
126 /*
127  * return 1: if lf is the fid of the ancestor of p1;
128  * return 0: if not;
129  *
130  * return -EREMOTE: if remote object is found, in this
131  * case fid of remote object is saved to @pf;
132  *
133  * otherwise: values < 0, errors.
134  */
135 static int mdd_is_parent(const struct lu_env *env,
136                          struct mdd_device *mdd,
137                          struct mdd_object *p1,
138                          const struct lu_fid *lf,
139                          struct lu_fid *pf)
140 {
141         struct mdd_object *parent = NULL;
142         struct lu_fid *pfid;
143         int rc;
144         ENTRY;
145
146         LASSERT(!lu_fid_eq(mdo2fid(p1), lf));
147         pfid = &mdd_env_info(env)->mti_fid;
148
149         /* Check for root first. */
150         if (mdd_is_root(mdd, mdo2fid(p1)))
151                 RETURN(0);
152
153         for(;;) {
154                 /* this is done recursively, bypass capa for each obj */
155                 mdd_set_capainfo(env, 4, p1, BYPASS_CAPA);
156                 rc = mdd_parent_fid(env, p1, pfid);
157                 if (rc)
158                         GOTO(out, rc);
159                 if (mdd_is_root(mdd, pfid))
160                         GOTO(out, rc = 0);
161                 if (lu_fid_eq(pfid, lf))
162                         GOTO(out, rc = 1);
163                 if (parent)
164                         mdd_object_put(env, parent);
165
166                 parent = mdd_object_find(env, mdd, pfid);
167                 if (IS_ERR(parent)) {
168                         GOTO(out, rc = PTR_ERR(parent));
169                 } else if (mdd_object_remote(parent)) {
170                         /*FIXME: Because of the restriction of rename in Phase I.
171                          * If the parent is remote, we just assumed lf is not the
172                          * parent of P1 for now */
173                         GOTO(out, rc = 0);
174                 }
175                 p1 = parent;
176         }
177         EXIT;
178 out:
179         if (parent && !IS_ERR(parent))
180                 mdd_object_put(env, parent);
181         return rc;
182 }
183
184 /*
185  * No permission check is needed.
186  *
187  * returns 1: if fid is ancestor of @mo;
188  * returns 0: if fid is not a ancestor of @mo;
189  *
190  * returns EREMOTE if remote object is found, fid of remote object is saved to
191  * @fid;
192  *
193  * returns < 0: if error
194  */
195 int mdd_is_subdir(const struct lu_env *env, struct md_object *mo,
196                   const struct lu_fid *fid, struct lu_fid *sfid)
197 {
198         struct mdd_device *mdd = mdo2mdd(mo);
199         int rc;
200         ENTRY;
201
202         if (!S_ISDIR(mdd_object_type(md2mdd_obj(mo))))
203                 RETURN(0);
204
205         rc = mdd_is_parent(env, mdd, md2mdd_obj(mo), fid, sfid);
206         if (rc == 0) {
207                 /* found root */
208                 fid_zero(sfid);
209         } else if (rc == 1) {
210                 /* found @fid is parent */
211                 *sfid = *fid;
212                 rc = 0;
213         }
214         RETURN(rc);
215 }
216
217 /*
218  * Check that @dir contains no entries except (possibly) dot and dotdot.
219  *
220  * Returns:
221  *
222  *             0        empty
223  *      -ENOTDIR        not a directory object
224  *    -ENOTEMPTY        not empty
225  *           -ve        other error
226  *
227  */
228 static int mdd_dir_is_empty(const struct lu_env *env,
229                             struct mdd_object *dir)
230 {
231         struct dt_it     *it;
232         struct dt_object *obj;
233         const struct dt_it_ops *iops;
234         int result;
235         ENTRY;
236
237         obj = mdd_object_child(dir);
238         if (!dt_try_as_dir(env, obj))
239                 RETURN(-ENOTDIR);
240
241         iops = &obj->do_index_ops->dio_it;
242         it = iops->init(env, obj, LUDA_64BITHASH, BYPASS_CAPA);
243         if (!IS_ERR(it)) {
244                 result = iops->get(env, it, (const void *)"");
245                 if (result > 0) {
246                         int i;
247                         for (result = 0, i = 0; result == 0 && i < 3; ++i)
248                                 result = iops->next(env, it);
249                         if (result == 0)
250                                 result = -ENOTEMPTY;
251                         else if (result == +1)
252                                 result = 0;
253                 } else if (result == 0)
254                         /*
255                          * Huh? Index contains no zero key?
256                          */
257                         result = -EIO;
258
259                 iops->put(env, it);
260                 iops->fini(env, it);
261         } else
262                 result = PTR_ERR(it);
263         RETURN(result);
264 }
265
266 static int __mdd_may_link(const struct lu_env *env, struct mdd_object *obj)
267 {
268         struct mdd_device *m = mdd_obj2mdd_dev(obj);
269         struct lu_attr *la = &mdd_env_info(env)->mti_la;
270         int rc;
271         ENTRY;
272
273         rc = mdd_la_get(env, obj, la, BYPASS_CAPA);
274         if (rc)
275                 RETURN(rc);
276
277         /*
278          * Subdir count limitation can be broken through.
279          */
280         if (la->la_nlink >= m->mdd_dt_conf.ddp_max_nlink &&
281             !S_ISDIR(la->la_mode))
282                 RETURN(-EMLINK);
283         else
284                 RETURN(0);
285 }
286
287 /*
288  * Check whether it may create the cobj under the pobj.
289  * cobj maybe NULL
290  */
291 int mdd_may_create(const struct lu_env *env, struct mdd_object *pobj,
292                    struct mdd_object *cobj, int check_perm, int check_nlink)
293 {
294         int rc = 0;
295         ENTRY;
296
297         if (cobj && mdd_object_exists(cobj))
298                 RETURN(-EEXIST);
299
300         if (mdd_is_dead_obj(pobj))
301                 RETURN(-ENOENT);
302
303         if (check_perm)
304                 rc = mdd_permission_internal_locked(env, pobj, NULL,
305                                                     MAY_WRITE | MAY_EXEC,
306                                                     MOR_TGT_PARENT);
307         if (!rc && check_nlink)
308                 rc = __mdd_may_link(env, pobj);
309
310         RETURN(rc);
311 }
312
313 /*
314  * Check whether can unlink from the pobj in the case of "cobj == NULL".
315  */
316 int mdd_may_unlink(const struct lu_env *env, struct mdd_object *pobj,
317                    const struct lu_attr *attr)
318 {
319         int rc;
320         ENTRY;
321
322         if (mdd_is_dead_obj(pobj))
323                 RETURN(-ENOENT);
324
325         if ((attr->la_valid & LA_FLAGS) &&
326             (attr->la_flags & (LUSTRE_APPEND_FL | LUSTRE_IMMUTABLE_FL)))
327                 RETURN(-EPERM);
328
329         rc = mdd_permission_internal_locked(env, pobj, NULL,
330                                             MAY_WRITE | MAY_EXEC,
331                                             MOR_TGT_PARENT);
332         if (rc)
333                 RETURN(rc);
334
335         if (mdd_is_append(pobj))
336                 RETURN(-EPERM);
337
338         RETURN(rc);
339 }
340
341 /*
342  * pobj == NULL is remote ops case, under such case, pobj's
343  * VTX feature has been checked already, no need check again.
344  */
345 static inline int mdd_is_sticky(const struct lu_env *env,
346                                 struct mdd_object *pobj,
347                                 struct mdd_object *cobj)
348 {
349         struct lu_attr *tmp_la = &mdd_env_info(env)->mti_la;
350         struct lu_ucred *uc = lu_ucred_assert(env);
351         int rc;
352
353         if (pobj) {
354                 rc = mdd_la_get(env, pobj, tmp_la, BYPASS_CAPA);
355                 if (rc)
356                         return rc;
357
358                 if (!(tmp_la->la_mode & S_ISVTX) ||
359                     (tmp_la->la_uid == uc->uc_fsuid))
360                         return 0;
361         }
362
363         rc = mdd_la_get(env, cobj, tmp_la, BYPASS_CAPA);
364         if (rc)
365                 return rc;
366
367         if (tmp_la->la_uid == uc->uc_fsuid)
368                 return 0;
369
370         return !md_capable(uc, CFS_CAP_FOWNER);
371 }
372
373 static int mdd_may_delete_entry(const struct lu_env *env,
374                                 struct mdd_object *pobj, int check_perm)
375 {
376         ENTRY;
377
378         LASSERT(pobj != NULL);
379         if (!mdd_object_exists(pobj))
380                 RETURN(-ENOENT);
381
382         if (mdd_is_dead_obj(pobj))
383                 RETURN(-ENOENT);
384
385         if (check_perm) {
386                 int rc;
387                 rc = mdd_permission_internal_locked(env, pobj, NULL,
388                                             MAY_WRITE | MAY_EXEC,
389                                             MOR_TGT_PARENT);
390                 if (rc)
391                         RETURN(rc);
392         }
393
394         if (mdd_is_append(pobj))
395                 RETURN(-EPERM);
396
397         RETURN(0);
398 }
399
400 /*
401  * Check whether it may delete the cobj from the pobj.
402  * pobj maybe NULL
403  */
404 int mdd_may_delete(const struct lu_env *env, struct mdd_object *pobj,
405                    struct mdd_object *cobj, struct lu_attr *cattr,
406                    struct lu_attr *src_attr, int check_perm, int check_empty)
407 {
408         int rc = 0;
409         ENTRY;
410
411         if (pobj) {
412                 rc = mdd_may_delete_entry(env, pobj, check_perm);
413                 if (rc != 0)
414                         RETURN(rc);
415         }
416
417         if (cobj == NULL)
418                 RETURN(0);
419
420         if (!mdd_object_exists(cobj))
421                 RETURN(-ENOENT);
422
423         if (mdd_is_dead_obj(cobj))
424                 RETURN(-ESTALE);
425
426
427         if (mdd_is_sticky(env, pobj, cobj))
428                 RETURN(-EPERM);
429
430         if (mdd_is_immutable(cobj) || mdd_is_append(cobj))
431                 RETURN(-EPERM);
432
433         if ((cattr->la_valid & LA_FLAGS) &&
434             (cattr->la_flags & (LUSTRE_APPEND_FL | LUSTRE_IMMUTABLE_FL)))
435                 RETURN(-EPERM);
436
437         /* additional check the rename case */
438         if (src_attr) {
439                 if (S_ISDIR(src_attr->la_mode)) {
440                         struct mdd_device *mdd = mdo2mdd(&cobj->mod_obj);
441
442                         if (!S_ISDIR(cattr->la_mode))
443                                 RETURN(-ENOTDIR);
444
445                         if (lu_fid_eq(mdo2fid(cobj), &mdd->mdd_root_fid))
446                                 RETURN(-EBUSY);
447                 } else if (S_ISDIR(cattr->la_mode))
448                         RETURN(-EISDIR);
449         }
450
451         if (S_ISDIR(cattr->la_mode) && check_empty)
452                 rc = mdd_dir_is_empty(env, cobj);
453
454         RETURN(rc);
455 }
456
457 /*
458  * tgt maybe NULL
459  * has mdd_write_lock on src already, but not on tgt yet
460  */
461 int mdd_link_sanity_check(const struct lu_env *env,
462                           struct mdd_object *tgt_obj,
463                           const struct lu_name *lname,
464                           struct mdd_object *src_obj)
465 {
466         struct mdd_device *m = mdd_obj2mdd_dev(src_obj);
467         int rc = 0;
468         ENTRY;
469
470         if (!mdd_object_exists(src_obj))
471                 RETURN(-ENOENT);
472
473         if (mdd_is_dead_obj(src_obj))
474                 RETURN(-ESTALE);
475
476         /* Local ops, no lookup before link, check filename length here. */
477         if (lname && (lname->ln_namelen > m->mdd_dt_conf.ddp_max_name_len))
478                 RETURN(-ENAMETOOLONG);
479
480         if (mdd_is_immutable(src_obj) || mdd_is_append(src_obj))
481                 RETURN(-EPERM);
482
483         if (S_ISDIR(mdd_object_type(src_obj)))
484                 RETURN(-EPERM);
485
486         LASSERT(src_obj != tgt_obj);
487         if (tgt_obj) {
488                 rc = mdd_may_create(env, tgt_obj, NULL, 1, 0);
489                 if (rc)
490                         RETURN(rc);
491         }
492
493         rc = __mdd_may_link(env, src_obj);
494
495         RETURN(rc);
496 }
497
498 static int __mdd_index_delete_only(const struct lu_env *env, struct mdd_object *pobj,
499                                    const char *name, struct thandle *handle,
500                                    struct lustre_capa *capa)
501 {
502         struct dt_object *next = mdd_object_child(pobj);
503         int               rc;
504         ENTRY;
505
506         if (dt_try_as_dir(env, next)) {
507                 rc = next->do_index_ops->dio_delete(env, next,
508                                                     (struct dt_key *)name,
509                                                     handle, capa);
510         } else
511                 rc = -ENOTDIR;
512
513         RETURN(rc);
514 }
515
516 static int __mdd_index_insert_only(const struct lu_env *env,
517                                    struct mdd_object *pobj,
518                                    const struct lu_fid *lf, const char *name,
519                                    struct thandle *handle,
520                                    struct lustre_capa *capa)
521 {
522         struct dt_object *next = mdd_object_child(pobj);
523         int               rc;
524         ENTRY;
525
526         if (dt_try_as_dir(env, next)) {
527                 struct lu_ucred  *uc = lu_ucred_check(env);
528                 int ignore_quota;
529
530                 ignore_quota = uc ? uc->uc_cap & CFS_CAP_SYS_RESOURCE_MASK : 1;
531                 rc = next->do_index_ops->dio_insert(env, next,
532                                                     (struct dt_rec*)lf,
533                                                     (const struct dt_key *)name,
534                                                     handle, capa, ignore_quota);
535         } else {
536                 rc = -ENOTDIR;
537         }
538         RETURN(rc);
539 }
540
541 /* insert named index, add reference if isdir */
542 static int __mdd_index_insert(const struct lu_env *env, struct mdd_object *pobj,
543                               const struct lu_fid *lf, const char *name, int is_dir,
544                               struct thandle *handle, struct lustre_capa *capa)
545 {
546         int               rc;
547         ENTRY;
548
549         rc = __mdd_index_insert_only(env, pobj, lf, name, handle, capa);
550         if (rc == 0 && is_dir) {
551                 mdd_write_lock(env, pobj, MOR_TGT_PARENT);
552                 mdo_ref_add(env, pobj, handle);
553                 mdd_write_unlock(env, pobj);
554         }
555         RETURN(rc);
556 }
557
558 /* delete named index, drop reference if isdir */
559 static int __mdd_index_delete(const struct lu_env *env, struct mdd_object *pobj,
560                               const char *name, int is_dir, struct thandle *handle,
561                               struct lustre_capa *capa)
562 {
563         int               rc;
564         ENTRY;
565
566         rc = __mdd_index_delete_only(env, pobj, name, handle, capa);
567         if (rc == 0 && is_dir) {
568                 mdd_write_lock(env, pobj, MOR_TGT_PARENT);
569                 mdo_ref_del(env, pobj, handle);
570                 mdd_write_unlock(env, pobj);
571         }
572
573         RETURN(rc);
574 }
575
576 int mdd_declare_llog_record(const struct lu_env *env, struct mdd_device *mdd,
577                             int reclen, struct thandle *handle)
578 {
579         int rc;
580
581         /* XXX: this is a temporary solution to declare llog changes
582          *      will be fixed in 2.3 with new llog implementation */
583
584         LASSERT(mdd->mdd_capa);
585
586         /* XXX: Since we use the 'mdd_capa' as fake llog object here, we
587          *      have to set the parameter 'size' as INT_MAX or 0 to inform
588          *      OSD that this record write is for a llog write or catalog
589          *      header update, and osd declare function will reserve less
590          *      credits for optimization purpose.
591          *
592          *      Reserve 6 blocks for a llog write, since the llog file is
593          *      usually small, reserve 2 blocks for catalog header update,
594          *      because we know for sure that catalog header is already
595          *      allocated.
596          *
597          *      This hack should be removed in 2.3.
598          */
599
600         /* record itself */
601         rc = dt_declare_record_write(env, mdd->mdd_capa,
602                                      DECLARE_LLOG_WRITE, 0, handle);
603         if (rc)
604                 return rc;
605
606         /* header will be updated as well */
607         rc = dt_declare_record_write(env, mdd->mdd_capa,
608                                      DECLARE_LLOG_WRITE, 0, handle);
609         if (rc)
610                 return rc;
611
612         /* also we should be able to create new plain log */
613         rc = dt_declare_create(env, mdd->mdd_capa, NULL, NULL, NULL, handle);
614         if (rc)
615                 return rc;
616
617         /* new record referencing new plain llog */
618         rc = dt_declare_record_write(env, mdd->mdd_capa,
619                                      DECLARE_LLOG_WRITE, 0, handle);
620         if (rc)
621                 return rc;
622
623         /* catalog's header will be updated as well */
624         rc = dt_declare_record_write(env, mdd->mdd_capa,
625                                      DECLARE_LLOG_REWRITE, 0, handle);
626
627         return rc;
628 }
629
630 int mdd_declare_changelog_store(const struct lu_env *env,
631                                 struct mdd_device *mdd,
632                                 const struct lu_name *fname,
633                                 struct thandle *handle)
634 {
635         struct obd_device               *obd = mdd2obd_dev(mdd);
636         struct llog_ctxt                *ctxt;
637         struct llog_changelog_rec       *rec;
638         struct lu_buf                   *buf;
639         int                              reclen;
640         int                              rc;
641
642         /* Not recording */
643         if (!(mdd->mdd_cl.mc_flags & CLM_ON))
644                 return 0;
645
646         reclen = llog_data_len(sizeof(*rec) +
647                                (fname != NULL ? fname->ln_namelen : 0));
648         buf = mdd_buf_alloc(env, reclen);
649         if (buf->lb_buf == NULL)
650                 return -ENOMEM;
651
652         rec = buf->lb_buf;
653         rec->cr_hdr.lrh_len = reclen;
654         rec->cr_hdr.lrh_type = CHANGELOG_REC;
655
656         ctxt = llog_get_context(obd, LLOG_CHANGELOG_ORIG_CTXT);
657         if (ctxt == NULL)
658                 return -ENXIO;
659
660         rc = llog_declare_add(env, ctxt->loc_handle, &rec->cr_hdr, handle);
661         llog_ctxt_put(ctxt);
662
663         return rc;
664 }
665
666 static int mdd_declare_changelog_ext_store(const struct lu_env *env,
667                                            struct mdd_device *mdd,
668                                            const struct lu_name *tname,
669                                            const struct lu_name *sname,
670                                            struct thandle *handle)
671 {
672         struct obd_device               *obd = mdd2obd_dev(mdd);
673         struct llog_ctxt                *ctxt;
674         struct llog_changelog_ext_rec   *rec;
675         struct lu_buf                   *buf;
676         int                              reclen;
677         int                              rc;
678
679         /* Not recording */
680         if (!(mdd->mdd_cl.mc_flags & CLM_ON))
681                 return 0;
682
683         reclen = llog_data_len(sizeof(*rec) +
684                                (tname != NULL ? tname->ln_namelen : 0) +
685                                (sname != NULL ? 1 + sname->ln_namelen : 0));
686         buf = mdd_buf_alloc(env, reclen);
687         if (buf->lb_buf == NULL)
688                 return -ENOMEM;
689
690         rec = buf->lb_buf;
691         rec->cr_hdr.lrh_len = reclen;
692         rec->cr_hdr.lrh_type = CHANGELOG_REC;
693
694         ctxt = llog_get_context(obd, LLOG_CHANGELOG_ORIG_CTXT);
695         if (ctxt == NULL)
696                 return -ENXIO;
697
698         rc = llog_declare_add(env, ctxt->loc_handle, &rec->cr_hdr, handle);
699         llog_ctxt_put(ctxt);
700
701         return rc;
702 }
703
704 /** Add a changelog entry \a rec to the changelog llog
705  * \param mdd
706  * \param rec
707  * \param handle - currently ignored since llogs start their own transaction;
708  *                 this will hopefully be fixed in llog rewrite
709  * \retval 0 ok
710  */
711 int mdd_changelog_store(const struct lu_env *env, struct mdd_device *mdd,
712                         struct llog_changelog_rec *rec, struct thandle *th)
713 {
714         struct obd_device       *obd = mdd2obd_dev(mdd);
715         struct llog_ctxt        *ctxt;
716         int                      rc;
717
718         rec->cr_hdr.lrh_len = llog_data_len(sizeof(*rec) + rec->cr.cr_namelen);
719         rec->cr_hdr.lrh_type = CHANGELOG_REC;
720         rec->cr.cr_time = cl_time();
721
722         spin_lock(&mdd->mdd_cl.mc_lock);
723         /* NB: I suppose it's possible llog_add adds out of order wrt cr_index,
724          * but as long as the MDD transactions are ordered correctly for e.g.
725          * rename conflicts, I don't think this should matter. */
726         rec->cr.cr_index = ++mdd->mdd_cl.mc_index;
727         spin_unlock(&mdd->mdd_cl.mc_lock);
728
729         ctxt = llog_get_context(obd, LLOG_CHANGELOG_ORIG_CTXT);
730         if (ctxt == NULL)
731                 return -ENXIO;
732
733         rc = llog_add(env, ctxt->loc_handle, &rec->cr_hdr, NULL, NULL, th);
734         llog_ctxt_put(ctxt);
735         if (rc > 0)
736                 rc = 0;
737         return rc;
738 }
739
740 /** Add a changelog_ext entry \a rec to the changelog llog
741  * \param mdd
742  * \param rec
743  * \param handle - currently ignored since llogs start their own transaction;
744  *              this will hopefully be fixed in llog rewrite
745  * \retval 0 ok
746  */
747 int mdd_changelog_ext_store(const struct lu_env *env, struct mdd_device *mdd,
748                             struct llog_changelog_ext_rec *rec,
749                             struct thandle *th)
750 {
751         struct obd_device       *obd = mdd2obd_dev(mdd);
752         struct llog_ctxt        *ctxt;
753         int                      rc;
754
755         rec->cr_hdr.lrh_len = llog_data_len(sizeof(*rec) + rec->cr.cr_namelen);
756         /* llog_lvfs_write_rec sets the llog tail len */
757         rec->cr_hdr.lrh_type = CHANGELOG_REC;
758         rec->cr.cr_time = cl_time();
759
760         spin_lock(&mdd->mdd_cl.mc_lock);
761         /* NB: I suppose it's possible llog_add adds out of order wrt cr_index,
762          * but as long as the MDD transactions are ordered correctly for e.g.
763          * rename conflicts, I don't think this should matter. */
764         rec->cr.cr_index = ++mdd->mdd_cl.mc_index;
765         spin_unlock(&mdd->mdd_cl.mc_lock);
766
767         ctxt = llog_get_context(obd, LLOG_CHANGELOG_ORIG_CTXT);
768         if (ctxt == NULL)
769                 return -ENXIO;
770
771         /* nested journal transaction */
772         rc = llog_add(env, ctxt->loc_handle, &rec->cr_hdr, NULL, NULL, th);
773         llog_ctxt_put(ctxt);
774         if (rc > 0)
775                 rc = 0;
776
777         return rc;
778 }
779
780 /** Store a namespace change changelog record
781  * If this fails, we must fail the whole transaction; we don't
782  * want the change to commit without the log entry.
783  * \param target - mdd_object of change
784  * \param parent - parent dir/object
785  * \param tname - target name string
786  * \param handle - transacion handle
787  */
788 int mdd_changelog_ns_store(const struct lu_env *env, struct mdd_device *mdd,
789                            enum changelog_rec_type type, unsigned flags,
790                            struct mdd_object *target, struct mdd_object *parent,
791                            const struct lu_name *tname, struct thandle *handle)
792 {
793         struct llog_changelog_rec *rec;
794         struct lu_buf *buf;
795         int reclen;
796         int rc;
797         ENTRY;
798
799         /* Not recording */
800         if (!(mdd->mdd_cl.mc_flags & CLM_ON))
801                 RETURN(0);
802         if ((mdd->mdd_cl.mc_mask & (1 << type)) == 0)
803                 RETURN(0);
804
805         LASSERT(target != NULL);
806         LASSERT(parent != NULL);
807         LASSERT(tname != NULL);
808         LASSERT(handle != NULL);
809
810         reclen = llog_data_len(sizeof(*rec) + tname->ln_namelen);
811         buf = mdd_buf_alloc(env, reclen);
812         if (buf->lb_buf == NULL)
813                 RETURN(-ENOMEM);
814         rec = buf->lb_buf;
815
816         rec->cr.cr_flags = CLF_VERSION | (CLF_FLAGMASK & flags);
817         rec->cr.cr_type = (__u32)type;
818         rec->cr.cr_tfid = *mdo2fid(target);
819         rec->cr.cr_pfid = *mdo2fid(parent);
820         rec->cr.cr_namelen = tname->ln_namelen;
821         memcpy(rec->cr.cr_name, tname->ln_name, tname->ln_namelen);
822
823         target->mod_cltime = cfs_time_current_64();
824
825         rc = mdd_changelog_store(env, mdd, rec, handle);
826         if (rc < 0) {
827                 CERROR("changelog failed: rc=%d, op%d %s c"DFID" p"DFID"\n",
828                         rc, type, tname->ln_name, PFID(&rec->cr.cr_tfid),
829                         PFID(&rec->cr.cr_pfid));
830                 RETURN(-EFAULT);
831         }
832
833         RETURN(0);
834 }
835
836
837 /** Store a namespace change changelog record
838  * If this fails, we must fail the whole transaction; we don't
839  * want the change to commit without the log entry.
840  * \param target - mdd_object of change
841  * \param tpfid - target parent dir/object fid
842  * \param sfid - source object fid
843  * \param spfid - source parent fid
844  * \param tname - target name string
845  * \param sname - source name string
846  * \param handle - transacion handle
847  */
848 static int mdd_changelog_ext_ns_store(const struct lu_env  *env,
849                                       struct mdd_device    *mdd,
850                                       enum changelog_rec_type type,
851                                       unsigned flags,
852                                       struct mdd_object    *target,
853                                       const struct lu_fid  *tpfid,
854                                       const struct lu_fid  *sfid,
855                                       const struct lu_fid  *spfid,
856                                       const struct lu_name *tname,
857                                       const struct lu_name *sname,
858                                       struct thandle *handle)
859 {
860         struct llog_changelog_ext_rec *rec;
861         struct lu_buf *buf;
862         int reclen;
863         int rc;
864         ENTRY;
865
866         /* Not recording */
867         if (!(mdd->mdd_cl.mc_flags & CLM_ON))
868                 RETURN(0);
869         if ((mdd->mdd_cl.mc_mask & (1 << type)) == 0)
870                 RETURN(0);
871
872         LASSERT(sfid != NULL);
873         LASSERT(tpfid != NULL);
874         LASSERT(tname != NULL);
875         LASSERT(handle != NULL);
876
877         reclen = llog_data_len(sizeof(*rec) +
878                                sname != NULL ? 1 + sname->ln_namelen : 0);
879         buf = mdd_buf_alloc(env, reclen);
880         if (buf->lb_buf == NULL)
881                 RETURN(-ENOMEM);
882         rec = buf->lb_buf;
883
884         rec->cr.cr_flags = CLF_EXT_VERSION | (CLF_FLAGMASK & flags);
885         rec->cr.cr_type = (__u32)type;
886         rec->cr.cr_pfid = *tpfid;
887         rec->cr.cr_sfid = *sfid;
888         rec->cr.cr_spfid = *spfid;
889         rec->cr.cr_namelen = tname->ln_namelen;
890         memcpy(rec->cr.cr_name, tname->ln_name, tname->ln_namelen);
891         if (sname) {
892                 rec->cr.cr_name[tname->ln_namelen] = '\0';
893                 memcpy(rec->cr.cr_name + tname->ln_namelen + 1, sname->ln_name,
894                         sname->ln_namelen);
895                 rec->cr.cr_namelen += 1 + sname->ln_namelen;
896         }
897
898         if (likely(target != NULL)) {
899                 rec->cr.cr_tfid = *mdo2fid(target);
900                 target->mod_cltime = cfs_time_current_64();
901         } else {
902                 fid_zero(&rec->cr.cr_tfid);
903         }
904
905         rc = mdd_changelog_ext_store(env, mdd, rec, handle);
906         if (rc < 0) {
907                 CERROR("changelog failed: rc=%d, op%d %s c"DFID" p"DFID"\n",
908                         rc, type, tname->ln_name, PFID(sfid), PFID(tpfid));
909                 return -EFAULT;
910         }
911
912         return 0;
913 }
914
915 static int mdd_declare_link(const struct lu_env *env,
916                             struct mdd_device *mdd,
917                             struct mdd_object *p,
918                             struct mdd_object *c,
919                             const struct lu_name *name,
920                             struct thandle *handle)
921 {
922         int rc;
923
924         rc = mdo_declare_index_insert(env, p, mdo2fid(c), name->ln_name,handle);
925         if (rc)
926                 return rc;
927
928         rc = mdo_declare_ref_add(env, c, handle);
929         if (rc)
930                 return rc;
931
932         rc = mdo_declare_attr_set(env, p, NULL, handle);
933         if (rc)
934                 return rc;
935
936         rc = mdo_declare_attr_set(env, c, NULL, handle);
937         if (rc)
938                 return rc;
939
940         rc = mdd_declare_links_add(env, c, handle);
941         if (rc)
942                 return rc;
943
944         rc = mdd_declare_changelog_store(env, mdd, name, handle);
945
946         return rc;
947 }
948
949 static int mdd_link(const struct lu_env *env, struct md_object *tgt_obj,
950                     struct md_object *src_obj, const struct lu_name *lname,
951                     struct md_attr *ma)
952 {
953         const char *name = lname->ln_name;
954         struct lu_attr    *la = &mdd_env_info(env)->mti_la_for_fix;
955         struct mdd_object *mdd_tobj = md2mdd_obj(tgt_obj);
956         struct mdd_object *mdd_sobj = md2mdd_obj(src_obj);
957         struct mdd_device *mdd = mdo2mdd(src_obj);
958         struct dynlock_handle *dlh;
959         struct thandle *handle;
960         int rc;
961         ENTRY;
962
963         handle = mdd_trans_create(env, mdd);
964         if (IS_ERR(handle))
965                 GOTO(out_pending, rc = PTR_ERR(handle));
966
967         rc = mdd_declare_link(env, mdd, mdd_tobj, mdd_sobj, lname, handle);
968         if (rc)
969                 GOTO(stop, rc);
970
971         rc = mdd_trans_start(env, mdd, handle);
972         if (rc)
973                 GOTO(stop, rc);
974
975         dlh = mdd_pdo_write_lock(env, mdd_tobj, name, MOR_TGT_CHILD);
976         if (dlh == NULL)
977                 GOTO(out_trans, rc = -ENOMEM);
978         mdd_write_lock(env, mdd_sobj, MOR_TGT_CHILD);
979
980         rc = mdd_link_sanity_check(env, mdd_tobj, lname, mdd_sobj);
981         if (rc)
982                 GOTO(out_unlock, rc);
983
984         rc = mdo_ref_add(env, mdd_sobj, handle);
985         if (rc)
986                 GOTO(out_unlock, rc);
987
988
989         rc = __mdd_index_insert_only(env, mdd_tobj, mdo2fid(mdd_sobj),
990                                      name, handle,
991                                      mdd_object_capa(env, mdd_tobj));
992         if (rc != 0) {
993                 mdo_ref_del(env, mdd_sobj, handle);
994                 GOTO(out_unlock, rc);
995         }
996
997         LASSERT(ma->ma_attr.la_valid & LA_CTIME);
998         la->la_ctime = la->la_mtime = ma->ma_attr.la_ctime;
999
1000         la->la_valid = LA_CTIME | LA_MTIME;
1001         rc = mdd_attr_check_set_internal(env, mdd_tobj, la, handle, 0);
1002         if (rc)
1003                 GOTO(out_unlock, rc);
1004
1005         la->la_valid = LA_CTIME;
1006         rc = mdd_attr_check_set_internal(env, mdd_sobj, la, handle, 0);
1007         if (rc == 0) {
1008                 mdd_links_add(env, mdd_sobj,
1009                               mdo2fid(mdd_tobj), lname, handle, 0);
1010         }
1011
1012         EXIT;
1013 out_unlock:
1014         mdd_write_unlock(env, mdd_sobj);
1015         mdd_pdo_write_unlock(env, mdd_tobj, dlh);
1016 out_trans:
1017         if (rc == 0)
1018                 rc = mdd_changelog_ns_store(env, mdd, CL_HARDLINK, 0, mdd_sobj,
1019                                             mdd_tobj, lname, handle);
1020 stop:
1021         mdd_trans_stop(env, mdd, rc, handle);
1022 out_pending:
1023         return rc;
1024 }
1025
1026 int mdd_declare_finish_unlink(const struct lu_env *env,
1027                               struct mdd_object *obj,
1028                               struct md_attr *ma,
1029                               struct thandle *handle)
1030 {
1031         int     rc;
1032
1033         rc = orph_declare_index_insert(env, obj, mdd_object_type(obj), handle);
1034         if (rc)
1035                 return rc;
1036
1037         return mdo_declare_destroy(env, obj, handle);
1038 }
1039
1040 /* caller should take a lock before calling */
1041 int mdd_finish_unlink(const struct lu_env *env,
1042                       struct mdd_object *obj, struct md_attr *ma,
1043                       struct thandle *th)
1044 {
1045         int rc = 0;
1046         int is_dir = S_ISDIR(ma->ma_attr.la_mode);
1047         ENTRY;
1048
1049         LASSERT(mdd_write_locked(env, obj) != 0);
1050
1051         if (rc == 0 && (ma->ma_attr.la_nlink == 0 || is_dir)) {
1052                 obj->mod_flags |= DEAD_OBJ;
1053                 /* add new orphan and the object
1054                  * will be deleted during mdd_close() */
1055                 if (obj->mod_count) {
1056                         rc = __mdd_orphan_add(env, obj, th);
1057                         if (rc == 0)
1058                                 CDEBUG(D_HA, "Object "DFID" is inserted into "
1059                                         "orphan list, open count = %d\n",
1060                                         PFID(mdd_object_fid(obj)),
1061                                         obj->mod_count);
1062                         else
1063                                 CERROR("Object "DFID" fail to be an orphan, "
1064                                        "open count = %d, maybe cause failed "
1065                                        "open replay\n",
1066                                         PFID(mdd_object_fid(obj)),
1067                                         obj->mod_count);
1068                 } else {
1069                         rc = mdo_destroy(env, obj, th);
1070                 }
1071         }
1072
1073         RETURN(rc);
1074 }
1075
1076 /*
1077  * pobj maybe NULL
1078  * has mdd_write_lock on cobj already, but not on pobj yet
1079  */
1080 int mdd_unlink_sanity_check(const struct lu_env *env, struct mdd_object *pobj,
1081                             struct mdd_object *cobj, struct lu_attr *cattr)
1082 {
1083         int rc;
1084         ENTRY;
1085
1086         rc = mdd_may_delete(env, pobj, cobj, cattr, NULL, 1, 1);
1087
1088         RETURN(rc);
1089 }
1090
1091 static inline int mdd_declare_links_del(const struct lu_env *env,
1092                                         struct mdd_object *c,
1093                                         struct thandle *handle)
1094 {
1095         int rc = 0;
1096
1097         /* For directory, the linkEA will be removed together with the object. */
1098         if (!S_ISDIR(mdd_object_type(c)))
1099                 rc = mdd_declare_links_add(env, c, handle);
1100
1101         return rc;
1102 }
1103
1104 static int mdd_declare_unlink(const struct lu_env *env, struct mdd_device *mdd,
1105                               struct mdd_object *p, struct mdd_object *c,
1106                               const struct lu_name *name, struct md_attr *ma,
1107                               struct thandle *handle)
1108 {
1109         struct lu_attr     *la = &mdd_env_info(env)->mti_la_for_fix;
1110         int rc;
1111
1112         rc = mdo_declare_index_delete(env, p, name->ln_name, handle);
1113         if (rc)
1114                 return rc;
1115
1116         rc = mdo_declare_ref_del(env, p, handle);
1117         if (rc)
1118                 return rc;
1119
1120         LASSERT(ma->ma_attr.la_valid & LA_CTIME);
1121         la->la_ctime = la->la_mtime = ma->ma_attr.la_ctime;
1122         la->la_valid = LA_CTIME | LA_MTIME;
1123         rc = mdo_declare_attr_set(env, p, la, handle);
1124         if (rc)
1125                 return rc;
1126
1127         if (c != NULL) {
1128                 rc = mdo_declare_ref_del(env, c, handle);
1129                 if (rc)
1130                         return rc;
1131
1132                 rc = mdo_declare_ref_del(env, c, handle);
1133                 if (rc)
1134                         return rc;
1135
1136                 rc = mdo_declare_attr_set(env, c, NULL, handle);
1137                 if (rc)
1138                         return rc;
1139
1140                 rc = mdd_declare_finish_unlink(env, c, ma, handle);
1141                 if (rc)
1142                         return rc;
1143
1144                 rc = mdd_declare_links_del(env, c, handle);
1145                 if (rc != 0)
1146                         return rc;
1147
1148                 /* FIXME: need changelog for remove entry */
1149                 rc = mdd_declare_changelog_store(env, mdd, name, handle);
1150         }
1151
1152         return rc;
1153 }
1154
1155 static int mdd_unlink(const struct lu_env *env, struct md_object *pobj,
1156                       struct md_object *cobj, const struct lu_name *lname,
1157                       struct md_attr *ma)
1158 {
1159         const char *name = lname->ln_name;
1160         struct lu_attr     *cattr = &mdd_env_info(env)->mti_cattr;
1161         struct lu_attr    *la = &mdd_env_info(env)->mti_la_for_fix;
1162         struct mdd_object *mdd_pobj = md2mdd_obj(pobj);
1163         struct mdd_object *mdd_cobj = NULL;
1164         struct mdd_device *mdd = mdo2mdd(pobj);
1165         struct dynlock_handle *dlh;
1166         struct thandle    *handle;
1167         int rc, is_dir = 0;
1168         ENTRY;
1169
1170         /* cobj == NULL means only delete name entry */
1171         if (likely(cobj != NULL)) {
1172                 mdd_cobj = md2mdd_obj(cobj);
1173                 if (mdd_object_exists(mdd_cobj) == 0)
1174                         RETURN(-ENOENT);
1175                 /* currently it is assume, it could only delete
1176                  * name entry of remote directory */
1177                 is_dir = 1;
1178         }
1179
1180         handle = mdd_trans_create(env, mdd);
1181         if (IS_ERR(handle))
1182                 RETURN(PTR_ERR(handle));
1183
1184         rc = mdd_declare_unlink(env, mdd, mdd_pobj, mdd_cobj,
1185                                 lname, ma, handle);
1186         if (rc)
1187                 GOTO(stop, rc);
1188
1189         rc = mdd_trans_start(env, mdd, handle);
1190         if (rc)
1191                 GOTO(stop, rc);
1192
1193         dlh = mdd_pdo_write_lock(env, mdd_pobj, name, MOR_TGT_PARENT);
1194         if (dlh == NULL)
1195                 GOTO(stop, rc = -ENOMEM);
1196
1197         if (likely(mdd_cobj != NULL)) {
1198                 mdd_write_lock(env, mdd_cobj, MOR_TGT_CHILD);
1199
1200                 /* fetch cattr */
1201                 rc = mdd_la_get(env, mdd_cobj, cattr,
1202                                 mdd_object_capa(env, mdd_cobj));
1203                 if (rc)
1204                         GOTO(cleanup, rc);
1205
1206                 is_dir = S_ISDIR(cattr->la_mode);
1207
1208         }
1209
1210         rc = mdd_unlink_sanity_check(env, mdd_pobj, mdd_cobj, cattr);
1211         if (rc)
1212                 GOTO(cleanup, rc);
1213
1214         rc = __mdd_index_delete(env, mdd_pobj, name, is_dir, handle,
1215                                 mdd_object_capa(env, mdd_pobj));
1216         if (rc)
1217                 GOTO(cleanup, rc);
1218
1219         if (likely(mdd_cobj != NULL)) {
1220                 rc = mdo_ref_del(env, mdd_cobj, handle);
1221                 if (rc != 0) {
1222                         __mdd_index_insert_only(env, mdd_pobj,
1223                                                 mdo2fid(mdd_cobj),
1224                                                 name, handle,
1225                                                 mdd_object_capa(env, mdd_pobj));
1226                         GOTO(cleanup, rc);
1227                 }
1228
1229                 if (is_dir)
1230                         /* unlink dot */
1231                         mdo_ref_del(env, mdd_cobj, handle);
1232
1233                 /* fetch updated nlink */
1234                 rc = mdd_la_get(env, mdd_cobj, cattr,
1235                                 mdd_object_capa(env, mdd_cobj));
1236                 if (rc)
1237                         GOTO(cleanup, rc);
1238         }
1239
1240         LASSERT(ma->ma_attr.la_valid & LA_CTIME);
1241         la->la_ctime = la->la_mtime = ma->ma_attr.la_ctime;
1242
1243         la->la_valid = LA_CTIME | LA_MTIME;
1244         rc = mdd_attr_check_set_internal(env, mdd_pobj, la, handle, 0);
1245         if (rc)
1246                 GOTO(cleanup, rc);
1247
1248         /* Enough for only unlink the entry */
1249         if (unlikely(mdd_cobj == NULL)) {
1250                 mdd_pdo_write_unlock(env, mdd_pobj, dlh);
1251                 GOTO(stop, rc);
1252         }
1253
1254         if (cattr->la_nlink > 0 || mdd_cobj->mod_count > 0) {
1255                 /* update ctime of an unlinked file only if it is still
1256                  * opened or a link still exists */
1257                 la->la_valid = LA_CTIME;
1258                 rc = mdd_attr_check_set_internal(env, mdd_cobj, la, handle, 0);
1259                 if (rc)
1260                         GOTO(cleanup, rc);
1261         }
1262
1263         /* XXX: this transfer to ma will be removed with LOD/OSP */
1264         ma->ma_attr = *cattr;
1265         ma->ma_valid |= MA_INODE;
1266         rc = mdd_finish_unlink(env, mdd_cobj, ma, handle);
1267
1268         /* fetch updated nlink */
1269         if (rc == 0)
1270                 rc = mdd_la_get(env, mdd_cobj, cattr,
1271                                 mdd_object_capa(env, mdd_cobj));
1272
1273         if (!is_dir)
1274                 /* old files may not have link ea; ignore errors */
1275                 mdd_links_del(env, mdd_cobj, mdo2fid(mdd_pobj), lname, handle);
1276
1277         /* if object is removed then we can't get its attrs, use last get */
1278         if (cattr->la_nlink == 0) {
1279                 ma->ma_attr = *cattr;
1280                 ma->ma_valid |= MA_INODE;
1281         }
1282         EXIT;
1283 cleanup:
1284         mdd_write_unlock(env, mdd_cobj);
1285         mdd_pdo_write_unlock(env, mdd_pobj, dlh);
1286         if (rc == 0) {
1287                 int cl_flags;
1288
1289                 cl_flags = (cattr->la_nlink == 0) ? CLF_UNLINK_LAST : 0;
1290                 if ((ma->ma_valid & MA_HSM) &&
1291                     (ma->ma_hsm.mh_flags & HS_EXISTS))
1292                         cl_flags |= CLF_UNLINK_HSM_EXISTS;
1293
1294                 rc = mdd_changelog_ns_store(env, mdd,
1295                         is_dir ? CL_RMDIR : CL_UNLINK, cl_flags,
1296                         mdd_cobj, mdd_pobj, lname, handle);
1297         }
1298
1299 stop:
1300         mdd_trans_stop(env, mdd, rc, handle);
1301
1302         return rc;
1303 }
1304
1305 /*
1306  * The permission has been checked when obj created, no need check again.
1307  */
1308 static int mdd_cd_sanity_check(const struct lu_env *env,
1309                                struct mdd_object *obj)
1310 {
1311         ENTRY;
1312
1313         /* EEXIST check */
1314         if (!obj || mdd_is_dead_obj(obj))
1315                 RETURN(-ENOENT);
1316
1317         RETURN(0);
1318
1319 }
1320
1321 static int mdd_create_data(const struct lu_env *env, struct md_object *pobj,
1322                            struct md_object *cobj, const struct md_op_spec *spec,
1323                            struct md_attr *ma)
1324 {
1325         struct mdd_device *mdd = mdo2mdd(cobj);
1326         struct mdd_object *mdd_pobj = md2mdd_obj(pobj);
1327         struct mdd_object *son = md2mdd_obj(cobj);
1328         struct thandle    *handle;
1329         const struct lu_buf *buf;
1330         struct lu_attr    *attr = &mdd_env_info(env)->mti_cattr;
1331         int                rc;
1332         ENTRY;
1333
1334         /* do not let users to create stripes via .lustre/
1335          * mdd_obf_setup() sets IMMUTE_OBJ on this directory */
1336         if (pobj && mdd_pobj->mod_flags & IMMUTE_OBJ)
1337                 RETURN(-ENOENT);
1338
1339         rc = mdd_cd_sanity_check(env, son);
1340         if (rc)
1341                 RETURN(rc);
1342
1343         if (!md_should_create(spec->sp_cr_flags))
1344                 RETURN(0);
1345
1346         /*
1347          * there are following use cases for this function:
1348          * 1) late striping - file was created with MDS_OPEN_DELAY_CREATE
1349          *    striping can be specified or not
1350          * 2) CMD?
1351          */
1352         rc = mdd_la_get(env, son, attr, mdd_object_capa(env, son));
1353         if (rc)
1354                 RETURN(rc);
1355
1356         /* calling ->ah_make_hint() is used to transfer information from parent */
1357         mdd_object_make_hint(env, mdd_pobj, son, attr);
1358
1359         handle = mdd_trans_create(env, mdd);
1360         if (IS_ERR(handle))
1361                 GOTO(out_free, rc = PTR_ERR(handle));
1362
1363         /*
1364          * XXX: Setting the lov ea is not locked but setting the attr is locked?
1365          * Should this be fixed?
1366          */
1367         CDEBUG(D_OTHER, "ea %p/%u, cr_flags %Lo, no_create %u\n",
1368                spec->u.sp_ea.eadata, spec->u.sp_ea.eadatalen,
1369                spec->sp_cr_flags, spec->no_create);
1370
1371         if (spec->no_create || spec->sp_cr_flags & MDS_OPEN_HAS_EA) {
1372                 /* replay case or lfs setstripe */
1373                 buf = mdd_buf_get_const(env, spec->u.sp_ea.eadata,
1374                                         spec->u.sp_ea.eadatalen);
1375         } else {
1376                 buf = &LU_BUF_NULL;
1377         }
1378
1379         rc = dt_declare_xattr_set(env, mdd_object_child(son), buf,
1380                                   XATTR_NAME_LOV, 0, handle);
1381         if (rc)
1382                 GOTO(stop, rc);
1383
1384         rc = mdd_trans_start(env, mdd, handle);
1385         if (rc)
1386                 GOTO(stop, rc);
1387
1388         rc = dt_xattr_set(env, mdd_object_child(son), buf, XATTR_NAME_LOV,
1389                           0, handle, mdd_object_capa(env, son));
1390 stop:
1391         mdd_trans_stop(env, mdd, rc, handle);
1392 out_free:
1393         RETURN(rc);
1394 }
1395
1396 /* Get fid from name and parent */
1397 static int
1398 __mdd_lookup(const struct lu_env *env, struct md_object *pobj,
1399              const struct lu_name *lname, struct lu_fid* fid, int mask)
1400 {
1401         const char          *name = lname->ln_name;
1402         const struct dt_key *key = (const struct dt_key *)name;
1403         struct mdd_object   *mdd_obj = md2mdd_obj(pobj);
1404         struct mdd_device   *m = mdo2mdd(pobj);
1405         struct dt_object    *dir = mdd_object_child(mdd_obj);
1406         int rc;
1407         ENTRY;
1408
1409         if (unlikely(mdd_is_dead_obj(mdd_obj)))
1410                 RETURN(-ESTALE);
1411
1412         if (mdd_object_remote(mdd_obj)) {
1413                 CDEBUG(D_INFO, "%s: Object "DFID" locates on remote server\n",
1414                        mdd2obd_dev(m)->obd_name, PFID(mdo2fid(mdd_obj)));
1415         } else if (!mdd_object_exists(mdd_obj)) {
1416                 RETURN(-ESTALE);
1417         }
1418
1419         /* The common filename length check. */
1420         if (unlikely(lname->ln_namelen > m->mdd_dt_conf.ddp_max_name_len))
1421                 RETURN(-ENAMETOOLONG);
1422
1423         rc = mdd_permission_internal_locked(env, mdd_obj, NULL, mask,
1424                                             MOR_TGT_PARENT);
1425         if (rc)
1426                 RETURN(rc);
1427
1428         if (likely(S_ISDIR(mdd_object_type(mdd_obj)) &&
1429                    dt_try_as_dir(env, dir))) {
1430
1431                 rc = dir->do_index_ops->dio_lookup(env, dir,
1432                                                  (struct dt_rec *)fid, key,
1433                                                  mdd_object_capa(env, mdd_obj));
1434                 if (rc > 0)
1435                         rc = 0;
1436                 else if (rc == 0)
1437                         rc = -ENOENT;
1438         } else
1439                 rc = -ENOTDIR;
1440
1441         RETURN(rc);
1442 }
1443
1444 static int mdd_declare_object_initialize(const struct lu_env *env,
1445                                          struct mdd_object *parent,
1446                                          struct mdd_object *child,
1447                                          struct lu_attr *attr,
1448                                          struct thandle *handle)
1449 {
1450         int rc;
1451         ENTRY;
1452
1453         /*
1454          * inode mode has been set in creation time, and it's based on umask,
1455          * la_mode and acl, don't set here again! (which will go wrong
1456          * because below function doesn't consider umask).
1457          * I'd suggest set all object attributes in creation time, see above.
1458          */
1459         LASSERT(attr->la_valid & (LA_MODE | LA_TYPE));
1460         attr->la_valid &= ~(LA_MODE | LA_TYPE);
1461         rc = mdo_declare_attr_set(env, child, attr, handle);
1462         attr->la_valid |= LA_MODE | LA_TYPE;
1463         if (rc == 0 && S_ISDIR(attr->la_mode)) {
1464                 rc = mdo_declare_index_insert(env, child, mdo2fid(child),
1465                                               dot, handle);
1466                 if (rc == 0)
1467                         rc = mdo_declare_ref_add(env, child, handle);
1468
1469                 rc = mdo_declare_index_insert(env, child, mdo2fid(parent),
1470                                               dotdot, handle);
1471         }
1472
1473         if (rc == 0 && (fid_is_norm(mdo2fid(child)) ||
1474                         fid_is_dot_lustre(mdo2fid(child))))
1475                 mdd_declare_links_add(env, child, handle);
1476
1477         RETURN(rc);
1478 }
1479
1480 int mdd_object_initialize(const struct lu_env *env, const struct lu_fid *pfid,
1481                           const struct lu_name *lname, struct mdd_object *child,
1482                           struct lu_attr *attr, struct thandle *handle,
1483                           const struct md_op_spec *spec)
1484 {
1485         int rc;
1486         ENTRY;
1487
1488         /*
1489          * Update attributes for child.
1490          *
1491          * FIXME:
1492          *  (1) the valid bits should be converted between Lustre and Linux;
1493          *  (2) maybe, the child attributes should be set in OSD when creation.
1494          */
1495
1496         /*
1497          * inode mode has been set in creation time, and it's based on umask,
1498          * la_mode and acl, don't set here again! (which will go wrong
1499          * because below function doesn't consider umask).
1500          * I'd suggest set all object attributes in creation time, see above.
1501          */
1502         LASSERT(attr->la_valid & (LA_MODE | LA_TYPE));
1503         attr->la_valid &= ~(LA_MODE | LA_TYPE);
1504         rc = mdd_attr_set_internal(env, child, attr, handle, 0);
1505         /* arguments are supposed to stay the same */
1506         attr->la_valid |= LA_MODE | LA_TYPE;
1507         if (rc != 0)
1508                 RETURN(rc);
1509
1510         if (S_ISDIR(attr->la_mode)) {
1511                 /* Add "." and ".." for newly created dir */
1512                 mdo_ref_add(env, child, handle);
1513                 rc = __mdd_index_insert_only(env, child, mdo2fid(child),
1514                                              dot, handle, BYPASS_CAPA);
1515                 if (rc == 0)
1516                         rc = __mdd_index_insert_only(env, child, pfid,
1517                                                      dotdot, handle,
1518                                                      BYPASS_CAPA);
1519                 if (rc != 0)
1520                         mdo_ref_del(env, child, handle);
1521         }
1522
1523         if (rc == 0 && (fid_is_norm(mdo2fid(child)) ||
1524                         fid_is_dot_lustre(mdo2fid(child))))
1525                 mdd_links_add(env, child, pfid, lname, handle, 1);
1526
1527         RETURN(rc);
1528 }
1529
1530 /* has not lock on pobj yet */
1531 static int mdd_create_sanity_check(const struct lu_env *env,
1532                                    struct md_object *pobj,
1533                                    struct lu_attr *pattr,
1534                                    const struct lu_name *lname,
1535                                    struct lu_attr *cattr,
1536                                    struct md_op_spec *spec)
1537 {
1538         struct mdd_thread_info *info = mdd_env_info(env);
1539         struct lu_fid     *fid       = &info->mti_fid;
1540         struct mdd_object *obj       = md2mdd_obj(pobj);
1541         struct mdd_device *m         = mdo2mdd(pobj);
1542         int rc;
1543         ENTRY;
1544
1545         /* EEXIST check */
1546         if (mdd_is_dead_obj(obj))
1547                 RETURN(-ENOENT);
1548
1549         /*
1550          * In some cases this lookup is not needed - we know before if name
1551          * exists or not because MDT performs lookup for it.
1552          * name length check is done in lookup.
1553          */
1554         if (spec->sp_cr_lookup) {
1555                 /*
1556                  * Check if the name already exist, though it will be checked in
1557                  * _index_insert also, for avoiding rolling back if exists
1558                  * _index_insert.
1559                  */
1560                 rc = __mdd_lookup_locked(env, pobj, lname, fid,
1561                                          MAY_WRITE | MAY_EXEC);
1562                 if (rc != -ENOENT)
1563                         RETURN(rc ? : -EEXIST);
1564         } else {
1565                 /*
1566                  * Check WRITE permission for the parent.
1567                  * EXEC permission have been checked
1568                  * when lookup before create already.
1569                  */
1570                 rc = mdd_permission_internal_locked(env, obj, pattr, MAY_WRITE,
1571                                                     MOR_TGT_PARENT);
1572                 if (rc)
1573                         RETURN(rc);
1574         }
1575
1576         /* sgid check */
1577         if (pattr->la_mode & S_ISGID) {
1578                 cattr->la_gid = pattr->la_gid;
1579                 if (S_ISDIR(cattr->la_mode)) {
1580                         cattr->la_mode |= S_ISGID;
1581                         cattr->la_valid |= LA_MODE;
1582                 }
1583         }
1584
1585         switch (cattr->la_mode & S_IFMT) {
1586         case S_IFLNK: {
1587                 unsigned int symlen = strlen(spec->u.sp_symname) + 1;
1588
1589                 if (symlen > (1 << m->mdd_dt_conf.ddp_block_shift))
1590                         RETURN(-ENAMETOOLONG);
1591                 else
1592                         RETURN(0);
1593         }
1594         case S_IFDIR:
1595         case S_IFREG:
1596         case S_IFCHR:
1597         case S_IFBLK:
1598         case S_IFIFO:
1599         case S_IFSOCK:
1600                 rc = 0;
1601                 break;
1602         default:
1603                 rc = -EINVAL;
1604                 break;
1605         }
1606         RETURN(rc);
1607 }
1608
1609 static int mdd_declare_create(const struct lu_env *env, struct mdd_device *mdd,
1610                               struct mdd_object *p, struct mdd_object *c,
1611                               const struct lu_name *name,
1612                               struct lu_attr *attr,
1613                               int got_def_acl,
1614                               struct thandle *handle,
1615                               const struct md_op_spec *spec)
1616 {
1617         int rc;
1618
1619         rc = mdd_declare_object_create_internal(env, p, c, attr, handle, spec);
1620         if (rc)
1621                 GOTO(out, rc);
1622
1623 #ifdef CONFIG_FS_POSIX_ACL
1624         if (got_def_acl > 0) {
1625                 struct lu_buf *acl_buf;
1626
1627                 acl_buf = mdd_buf_get(env, NULL, got_def_acl);
1628                 /* if dir, then can inherit default ACl */
1629                 if (S_ISDIR(attr->la_mode)) {
1630                         rc = mdo_declare_xattr_set(env, c, acl_buf,
1631                                                    XATTR_NAME_ACL_DEFAULT,
1632                                                    0, handle);
1633                         if (rc)
1634                                 GOTO(out, rc);
1635                 }
1636
1637                 rc = mdo_declare_attr_set(env, c, attr, handle);
1638                 if (rc)
1639                         GOTO(out, rc);
1640
1641                 rc = mdo_declare_xattr_set(env, c, acl_buf,
1642                                            XATTR_NAME_ACL_ACCESS, 0, handle);
1643                 if (rc)
1644                         GOTO(out, rc);
1645         }
1646 #endif
1647
1648         if (S_ISDIR(attr->la_mode)) {
1649                 rc = mdo_declare_ref_add(env, p, handle);
1650                 if (rc)
1651                         GOTO(out, rc);
1652         }
1653
1654         rc = mdd_declare_object_initialize(env, p, c, attr, handle);
1655         if (rc)
1656                 GOTO(out, rc);
1657
1658         if (spec->sp_cr_flags & MDS_OPEN_VOLATILE)
1659                 rc = orph_declare_index_insert(env, c, attr->la_mode, handle);
1660         else
1661                 rc = mdo_declare_index_insert(env, p, mdo2fid(c),
1662                                               name->ln_name, handle);
1663         if (rc)
1664                 GOTO(out, rc);
1665
1666         /* replay case, create LOV EA from client data */
1667         if (spec->no_create || (spec->sp_cr_flags & MDS_OPEN_HAS_EA)) {
1668                 const struct lu_buf *buf;
1669
1670                 buf = mdd_buf_get_const(env, spec->u.sp_ea.eadata,
1671                                         spec->u.sp_ea.eadatalen);
1672                 rc = mdo_declare_xattr_set(env, c, buf, XATTR_NAME_LOV,
1673                                            0, handle);
1674                 if (rc)
1675                         GOTO(out, rc);
1676         }
1677
1678         if (S_ISLNK(attr->la_mode)) {
1679                 rc = dt_declare_record_write(env, mdd_object_child(c),
1680                                              strlen(spec->u.sp_symname), 0,
1681                                              handle);
1682                 if (rc)
1683                         GOTO(out, rc);
1684         }
1685
1686         if (!(spec->sp_cr_flags & MDS_OPEN_VOLATILE)) {
1687                 rc = mdo_declare_attr_set(env, p, attr, handle);
1688                 if (rc)
1689                         return rc;
1690         }
1691
1692         rc = mdd_declare_changelog_store(env, mdd, name, handle);
1693         if (rc)
1694                 return rc;
1695
1696 out:
1697         return rc;
1698 }
1699
1700 /*
1701  * Create object and insert it into namespace.
1702  */
1703 static int mdd_create(const struct lu_env *env, struct md_object *pobj,
1704                       const struct lu_name *lname, struct md_object *child,
1705                       struct md_op_spec *spec, struct md_attr* ma)
1706 {
1707         struct mdd_thread_info  *info = mdd_env_info(env);
1708         struct lu_attr          *la = &info->mti_la_for_fix;
1709         struct mdd_object       *mdd_pobj = md2mdd_obj(pobj);
1710         struct mdd_object       *son = md2mdd_obj(child);
1711         struct mdd_device       *mdd = mdo2mdd(pobj);
1712         struct lu_attr          *attr = &ma->ma_attr;
1713         struct thandle          *handle;
1714         struct lu_attr          *pattr = &info->mti_pattr;
1715         struct dynlock_handle   *dlh;
1716         const char              *name = lname->ln_name;
1717         int                      rc, created = 0, initialized = 0, inserted = 0;
1718         int                      got_def_acl = 0;
1719         ENTRY;
1720
1721         /*
1722          * Two operations have to be performed:
1723          *
1724          *  - an allocation of a new object (->do_create()), and
1725          *
1726          *  - an insertion into a parent index (->dio_insert()).
1727          *
1728          * Due to locking, operation order is not important, when both are
1729          * successful, *but* error handling cases are quite different:
1730          *
1731          *  - if insertion is done first, and following object creation fails,
1732          *  insertion has to be rolled back, but this operation might fail
1733          *  also leaving us with dangling index entry.
1734          *
1735          *  - if creation is done first, is has to be undone if insertion
1736          *  fails, leaving us with leaked space, which is neither good, nor
1737          *  fatal.
1738          *
1739          * It seems that creation-first is simplest solution, but it is
1740          * sub-optimal in the frequent
1741          *
1742          *         $ mkdir foo
1743          *         $ mkdir foo
1744          *
1745          * case, because second mkdir is bound to create object, only to
1746          * destroy it immediately.
1747          *
1748          * To avoid this follow local file systems that do double lookup:
1749          *
1750          *     0. lookup -> -EEXIST (mdd_create_sanity_check())
1751          *
1752          *     1. create            (mdd_object_create_internal())
1753          *
1754          *     2. insert            (__mdd_index_insert(), lookup again)
1755          */
1756
1757         rc = mdd_la_get(env, mdd_pobj, pattr, BYPASS_CAPA);
1758         if (rc != 0)
1759                 RETURN(rc);
1760
1761         /* Sanity checks before big job. */
1762         rc = mdd_create_sanity_check(env, pobj, pattr, lname, attr, spec);
1763         if (rc)
1764                 RETURN(rc);
1765
1766         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_DQACQ_NET))
1767                 GOTO(out_free, rc = -EINPROGRESS);
1768
1769         if (!S_ISLNK(attr->la_mode)) {
1770                 struct lu_buf *acl_buf;
1771
1772                 acl_buf = mdd_buf_get(env, info->mti_xattr_buf,
1773                                 sizeof(info->mti_xattr_buf));
1774                 mdd_read_lock(env, mdd_pobj, MOR_TGT_PARENT);
1775                 rc = mdo_xattr_get(env, mdd_pobj, acl_buf,
1776                                 XATTR_NAME_ACL_DEFAULT, BYPASS_CAPA);
1777                 mdd_read_unlock(env, mdd_pobj);
1778                 if (rc > 0)
1779                         got_def_acl = rc;
1780                 else if (rc < 0 && rc != -EOPNOTSUPP && rc != -ENODATA)
1781                         GOTO(out_free, rc);
1782         }
1783
1784         mdd_object_make_hint(env, mdd_pobj, son, attr);
1785
1786         handle = mdd_trans_create(env, mdd);
1787         if (IS_ERR(handle))
1788                 GOTO(out_free, rc = PTR_ERR(handle));
1789
1790         rc = mdd_declare_create(env, mdd, mdd_pobj, son, lname, attr,
1791                                 got_def_acl, handle, spec);
1792         if (rc)
1793                 GOTO(out_stop, rc);
1794
1795         rc = mdd_trans_start(env, mdd, handle);
1796         if (rc)
1797                 GOTO(out_stop, rc);
1798
1799         dlh = mdd_pdo_write_lock(env, mdd_pobj, name, MOR_TGT_PARENT);
1800         if (dlh == NULL)
1801                 GOTO(out_trans, rc = -ENOMEM);
1802
1803         mdd_write_lock(env, son, MOR_TGT_CHILD);
1804         rc = mdd_object_create_internal(env, NULL, son, attr, handle, spec);
1805         if (rc) {
1806                 mdd_write_unlock(env, son);
1807                 GOTO(cleanup, rc);
1808         }
1809
1810         created = 1;
1811
1812 #ifdef CONFIG_FS_POSIX_ACL
1813         if (got_def_acl) {
1814                 struct lu_buf *acl_buf;
1815
1816                 acl_buf = mdd_buf_get(env, info->mti_xattr_buf, got_def_acl);
1817                 rc = __mdd_acl_init(env, son, acl_buf, &attr->la_mode, handle);
1818                 if (rc) {
1819                         mdd_write_unlock(env, son);
1820                         GOTO(cleanup, rc);
1821                 }
1822         }
1823 #endif
1824
1825         rc = mdd_object_initialize(env, mdo2fid(mdd_pobj), lname,
1826                                    son, attr, handle, spec);
1827
1828         /*
1829          * in case of replay we just set LOVEA provided by the client
1830          * XXX: I think it would be interesting to try "old" way where
1831          *      MDT calls this xattr_set(LOV) in a different transaction.
1832          *      probably this way we code can be made better.
1833          */
1834         if (rc == 0 && (spec->no_create ||
1835                         (spec->sp_cr_flags & MDS_OPEN_HAS_EA))) {
1836                 const struct lu_buf *buf;
1837
1838                 buf = mdd_buf_get_const(env, spec->u.sp_ea.eadata,
1839                                 spec->u.sp_ea.eadatalen);
1840                 rc = mdo_xattr_set(env, son, buf, XATTR_NAME_LOV, 0, handle,
1841                                 BYPASS_CAPA);
1842         }
1843
1844         if (rc == 0 && spec->sp_cr_flags & MDS_OPEN_VOLATILE)
1845                 rc = __mdd_orphan_add(env, son, handle);
1846
1847         mdd_write_unlock(env, son);
1848
1849         if (rc != 0)
1850                 /*
1851                  * Object has no links, so it will be destroyed when last
1852                  * reference is released. (XXX not now.)
1853                  */
1854                 GOTO(cleanup, rc);
1855
1856         initialized = 1;
1857
1858         if (!(spec->sp_cr_flags & MDS_OPEN_VOLATILE))
1859                 rc = __mdd_index_insert(env, mdd_pobj, mdo2fid(son),
1860                                         name, S_ISDIR(attr->la_mode), handle,
1861                                         mdd_object_capa(env, mdd_pobj));
1862
1863         if (rc != 0)
1864                 GOTO(cleanup, rc);
1865
1866         inserted = 1;
1867
1868         if (S_ISLNK(attr->la_mode)) {
1869                 struct lu_ucred  *uc = lu_ucred_assert(env);
1870                 struct dt_object *dt = mdd_object_child(son);
1871                 const char *target_name = spec->u.sp_symname;
1872                 int sym_len = strlen(target_name);
1873                 const struct lu_buf *buf;
1874                 loff_t pos = 0;
1875
1876                 buf = mdd_buf_get_const(env, target_name, sym_len);
1877                 rc = dt->do_body_ops->dbo_write(env, dt, buf, &pos, handle,
1878                                                 mdd_object_capa(env, son),
1879                                                 uc->uc_cap &
1880                                                 CFS_CAP_SYS_RESOURCE_MASK);
1881
1882                 if (rc == sym_len)
1883                         rc = 0;
1884                 else
1885                         GOTO(cleanup, rc = -EFAULT);
1886         }
1887
1888         /* volatile file creation does not update parent directory times */
1889         if (spec->sp_cr_flags & MDS_OPEN_VOLATILE)
1890                 GOTO(cleanup, rc = 0);
1891
1892         /* update parent directory mtime/ctime */
1893         *la = *attr;
1894         la->la_valid = LA_CTIME | LA_MTIME;
1895         rc = mdd_attr_check_set_internal(env, mdd_pobj, la, handle, 0);
1896         if (rc)
1897                 GOTO(cleanup, rc);
1898
1899         EXIT;
1900 cleanup:
1901         if (rc != 0 && created != 0) {
1902                 int rc2;
1903
1904                 if (inserted != 0) {
1905                         if (spec->sp_cr_flags & MDS_OPEN_VOLATILE)
1906                                 rc2 = __mdd_orphan_del(env, son, handle);
1907                         else
1908                                 rc2 = __mdd_index_delete(env, mdd_pobj, name,
1909                                                          S_ISDIR(attr->la_mode),
1910                                                          handle, BYPASS_CAPA);
1911                         if (rc2 != 0)
1912                                 goto out_stop;
1913                 }
1914
1915                 mdd_write_lock(env, son, MOR_TGT_CHILD);
1916                 if (initialized != 0 && S_ISDIR(attr->la_mode)) {
1917                         /* Drop the reference, no need to delete "."/"..",
1918                          * because the object to be destroied directly. */
1919                         rc2 = mdo_ref_del(env, son, handle);
1920                         if (rc2 != 0) {
1921                                 mdd_write_unlock(env, son);
1922                                 goto out_stop;
1923                         }
1924                 }
1925
1926                 rc2 = mdo_ref_del(env, son, handle);
1927                 if (rc2 != 0) {
1928                         mdd_write_unlock(env, son);
1929                         goto out_stop;
1930                 }
1931
1932                 mdo_destroy(env, son, handle);
1933                 mdd_write_unlock(env, son);
1934         }
1935
1936         mdd_pdo_write_unlock(env, mdd_pobj, dlh);
1937 out_trans:
1938         if (rc == 0 && fid_is_client_mdt_visible(mdo2fid(son)))
1939                 rc = mdd_changelog_ns_store(env, mdd,
1940                         S_ISDIR(attr->la_mode) ? CL_MKDIR :
1941                         S_ISREG(attr->la_mode) ? CL_CREATE :
1942                         S_ISLNK(attr->la_mode) ? CL_SOFTLINK : CL_MKNOD,
1943                         0, son, mdd_pobj, lname, handle);
1944 out_stop:
1945         mdd_trans_stop(env, mdd, rc, handle);
1946 out_free:
1947         /* The child object shouldn't be cached anymore */
1948         if (rc)
1949                 set_bit(LU_OBJECT_HEARD_BANSHEE,
1950                             &child->mo_lu.lo_header->loh_flags);
1951         return rc;
1952 }
1953
1954 /*
1955  * Get locks on parents in proper order
1956  * RETURN: < 0 - error, rename_order if successful
1957  */
1958 enum rename_order {
1959         MDD_RN_SAME,
1960         MDD_RN_SRCTGT,
1961         MDD_RN_TGTSRC
1962 };
1963
1964 static int mdd_rename_order(const struct lu_env *env,
1965                             struct mdd_device *mdd,
1966                             struct mdd_object *src_pobj,
1967                             struct mdd_object *tgt_pobj)
1968 {
1969         /* order of locking, 1 - tgt-src, 0 - src-tgt*/
1970         int rc;
1971         ENTRY;
1972
1973         if (src_pobj == tgt_pobj)
1974                 RETURN(MDD_RN_SAME);
1975
1976         /* compared the parent child relationship of src_p&tgt_p */
1977         if (lu_fid_eq(&mdd->mdd_root_fid, mdo2fid(src_pobj))){
1978                 rc = MDD_RN_SRCTGT;
1979         } else if (lu_fid_eq(&mdd->mdd_root_fid, mdo2fid(tgt_pobj))) {
1980                 rc = MDD_RN_TGTSRC;
1981         } else {
1982                 rc = mdd_is_parent(env, mdd, src_pobj, mdo2fid(tgt_pobj), NULL);
1983                 if (rc == -EREMOTE)
1984                         rc = 0;
1985
1986                 if (rc == 1)
1987                         rc = MDD_RN_TGTSRC;
1988                 else if (rc == 0)
1989                         rc = MDD_RN_SRCTGT;
1990         }
1991
1992         RETURN(rc);
1993 }
1994
1995 /* has not mdd_write{read}_lock on any obj yet. */
1996 static int mdd_rename_sanity_check(const struct lu_env *env,
1997                                    struct mdd_object *src_pobj,
1998                                    struct mdd_object *tgt_pobj,
1999                                    struct mdd_object *sobj,
2000                                    struct mdd_object *tobj,
2001                                    struct lu_attr *so_attr,
2002                                    struct lu_attr *tg_attr)
2003 {
2004         int rc = 0;
2005         ENTRY;
2006
2007         /* XXX: when get here, sobj must NOT be NULL,
2008          * the other case has been processed in cml_rename
2009          * before mdd_rename and enable MDS_PERM_BYPASS. */
2010         LASSERT(sobj);
2011
2012         rc = mdd_may_delete(env, src_pobj, sobj, so_attr, NULL, 1, 0);
2013         if (rc)
2014                 RETURN(rc);
2015
2016         /* XXX: when get here, "tobj == NULL" means tobj must
2017          * NOT exist (neither on remote MDS, such case has been
2018          * processed in cml_rename before mdd_rename and enable
2019          * MDS_PERM_BYPASS).
2020          * So check may_create, but not check may_unlink. */
2021         if (!tobj)
2022                 rc = mdd_may_create(env, tgt_pobj, NULL,
2023                                     (src_pobj != tgt_pobj), 0);
2024         else
2025                 rc = mdd_may_delete(env, tgt_pobj, tobj, tg_attr, so_attr,
2026                                     (src_pobj != tgt_pobj), 1);
2027
2028         if (!rc && !tobj && (src_pobj != tgt_pobj) &&
2029             S_ISDIR(so_attr->la_mode))
2030                 rc = __mdd_may_link(env, tgt_pobj);
2031
2032         RETURN(rc);
2033 }
2034
2035 static int mdd_declare_rename(const struct lu_env *env,
2036                               struct mdd_device *mdd,
2037                               struct mdd_object *mdd_spobj,
2038                               struct mdd_object *mdd_tpobj,
2039                               struct mdd_object *mdd_sobj,
2040                               struct mdd_object *mdd_tobj,
2041                               const struct lu_name *tname,
2042                               const struct lu_name *sname,
2043                               struct md_attr *ma,
2044                               struct thandle *handle)
2045 {
2046         int rc;
2047
2048         LASSERT(mdd_spobj);
2049         LASSERT(mdd_tpobj);
2050         LASSERT(mdd_sobj);
2051
2052         /* name from source dir */
2053         rc = mdo_declare_index_delete(env, mdd_spobj, sname->ln_name, handle);
2054         if (rc)
2055                 return rc;
2056
2057         /* .. from source child */
2058         if (S_ISDIR(mdd_object_type(mdd_sobj))) {
2059                 /* source child can be directory,
2060                  * counted by source dir's nlink */
2061                 rc = mdo_declare_ref_del(env, mdd_spobj, handle);
2062                 if (rc)
2063                         return rc;
2064
2065                 rc = mdo_declare_index_delete(env, mdd_sobj, dotdot, handle);
2066                 if (rc)
2067                         return rc;
2068
2069                 rc = mdo_declare_index_insert(env, mdd_sobj, mdo2fid(mdd_tpobj),
2070                                               dotdot, handle);
2071                 if (rc)
2072                         return rc;
2073
2074                 /* new target child can be directory,
2075                  * counted by target dir's nlink */
2076                 rc = mdo_declare_ref_add(env, mdd_tpobj, handle);
2077                 if (rc)
2078                         return rc;
2079
2080         }
2081
2082         rc = mdo_declare_attr_set(env, mdd_spobj, NULL, handle);
2083         if (rc)
2084                 return rc;
2085
2086         rc = mdo_declare_attr_set(env, mdd_sobj, NULL, handle);
2087         if (rc)
2088                 return rc;
2089         mdd_declare_links_add(env, mdd_sobj, handle);
2090         if (rc)
2091                 return rc;
2092
2093         rc = mdo_declare_attr_set(env, mdd_tpobj, NULL, handle);
2094         if (rc)
2095                 return rc;
2096
2097         /* new name */
2098         rc = mdo_declare_index_insert(env, mdd_tpobj, mdo2fid(mdd_sobj),
2099                         tname->ln_name, handle);
2100         if (rc)
2101                 return rc;
2102
2103         /* name from target dir (old name), we declare it unconditionally
2104          * as mdd_rename() calls delete unconditionally as well. so just
2105          * to balance declarations vs calls to change ... */
2106         rc = mdo_declare_index_delete(env, mdd_tpobj, tname->ln_name, handle);
2107         if (rc)
2108                 return rc;
2109
2110         if (mdd_tobj && mdd_object_exists(mdd_tobj)) {
2111                 /* delete target child in target parent directory */
2112                 rc = mdo_declare_ref_del(env, mdd_tobj, handle);
2113                 if (rc)
2114                         return rc;
2115
2116                 if (S_ISDIR(mdd_object_type(mdd_tobj))) {
2117                         /* target child can be directory,
2118                          * delete "." reference in target child directory */
2119                         rc = mdo_declare_ref_del(env, mdd_tobj, handle);
2120                         if (rc)
2121                                 return rc;
2122
2123                         /* delete ".." reference in target parent directory */
2124                         rc = mdo_declare_ref_del(env, mdd_tpobj, handle);
2125                         if (rc)
2126                                 return rc;
2127                 }
2128
2129                 rc = mdo_declare_attr_set(env, mdd_tobj, NULL, handle);
2130                 if (rc)
2131                         return rc;
2132
2133                 mdd_declare_links_add(env, mdd_tobj, handle);
2134                 if (rc)
2135                         return rc;
2136
2137                 rc = mdd_declare_finish_unlink(env, mdd_tobj, ma, handle);
2138                 if (rc)
2139                         return rc;
2140         }
2141
2142         rc = mdd_declare_changelog_ext_store(env, mdd, tname, sname, handle);
2143         if (rc)
2144                 return rc;
2145
2146         return rc;
2147 }
2148
2149 /* src object can be remote that is why we use only fid and type of object */
2150 static int mdd_rename(const struct lu_env *env,
2151                       struct md_object *src_pobj, struct md_object *tgt_pobj,
2152                       const struct lu_fid *lf, const struct lu_name *lsname,
2153                       struct md_object *tobj, const struct lu_name *ltname,
2154                       struct md_attr *ma)
2155 {
2156         const char *sname = lsname->ln_name;
2157         const char *tname = ltname->ln_name;
2158         struct lu_attr    *la = &mdd_env_info(env)->mti_la_for_fix;
2159         struct lu_attr    *so_attr = &mdd_env_info(env)->mti_cattr;
2160         struct lu_attr    *tg_attr = &mdd_env_info(env)->mti_pattr;
2161         struct mdd_object *mdd_spobj = md2mdd_obj(src_pobj); /* source parent */
2162         struct mdd_object *mdd_tpobj = md2mdd_obj(tgt_pobj);
2163         struct mdd_device *mdd = mdo2mdd(src_pobj);
2164         struct mdd_object *mdd_sobj = NULL;                  /* source object */
2165         struct mdd_object *mdd_tobj = NULL;
2166         struct dynlock_handle *sdlh, *tdlh;
2167         struct thandle *handle;
2168         const struct lu_fid *tpobj_fid = mdo2fid(mdd_tpobj);
2169         const struct lu_fid *spobj_fid = mdo2fid(mdd_spobj);
2170         bool is_dir;
2171         bool tobj_ref = 0;
2172         bool tobj_locked = 0;
2173         unsigned cl_flags = 0;
2174         int rc, rc2;
2175         ENTRY;
2176
2177         if (tobj)
2178                 mdd_tobj = md2mdd_obj(tobj);
2179
2180         mdd_sobj = mdd_object_find(env, mdd, lf);
2181
2182         handle = mdd_trans_create(env, mdd);
2183         if (IS_ERR(handle))
2184                 GOTO(out_pending, rc = PTR_ERR(handle));
2185
2186         rc = mdd_declare_rename(env, mdd, mdd_spobj, mdd_tpobj, mdd_sobj,
2187                                 mdd_tobj, lsname, ltname, ma, handle);
2188         if (rc)
2189                 GOTO(stop, rc);
2190
2191         rc = mdd_trans_start(env, mdd, handle);
2192         if (rc)
2193                 GOTO(stop, rc);
2194
2195         /* FIXME: Should consider tobj and sobj too in rename_lock. */
2196         rc = mdd_rename_order(env, mdd, mdd_spobj, mdd_tpobj);
2197         if (rc < 0)
2198                 GOTO(cleanup_unlocked, rc);
2199
2200         /* Get locks in determined order */
2201         if (rc == MDD_RN_SAME) {
2202                 sdlh = mdd_pdo_write_lock(env, mdd_spobj,
2203                                           sname, MOR_SRC_PARENT);
2204                 /* check hashes to determine do we need one lock or two */
2205                 if (mdd_name2hash(sname) != mdd_name2hash(tname))
2206                         tdlh = mdd_pdo_write_lock(env, mdd_tpobj, tname,
2207                                 MOR_TGT_PARENT);
2208                 else
2209                         tdlh = sdlh;
2210         } else if (rc == MDD_RN_SRCTGT) {
2211                 sdlh = mdd_pdo_write_lock(env, mdd_spobj, sname,MOR_SRC_PARENT);
2212                 tdlh = mdd_pdo_write_lock(env, mdd_tpobj, tname,MOR_TGT_PARENT);
2213         } else {
2214                 tdlh = mdd_pdo_write_lock(env, mdd_tpobj, tname,MOR_SRC_PARENT);
2215                 sdlh = mdd_pdo_write_lock(env, mdd_spobj, sname,MOR_TGT_PARENT);
2216         }
2217         if (sdlh == NULL || tdlh == NULL)
2218                 GOTO(cleanup, rc = -ENOMEM);
2219
2220         rc = mdd_la_get(env, mdd_sobj, so_attr,
2221                         mdd_object_capa(env, mdd_sobj));
2222         if (rc)
2223                 GOTO(cleanup, rc);
2224
2225         if (mdd_tobj) {
2226                 rc = mdd_la_get(env, mdd_tobj, tg_attr,
2227                                 mdd_object_capa(env, mdd_tobj));
2228                 if (rc)
2229                         GOTO(cleanup, rc);
2230         }
2231
2232         rc = mdd_rename_sanity_check(env, mdd_spobj, mdd_tpobj, mdd_sobj,
2233                                      mdd_tobj, so_attr, tg_attr);
2234         if (rc)
2235                 GOTO(cleanup, rc);
2236
2237         is_dir = S_ISDIR(so_attr->la_mode);
2238
2239         /* Remove source name from source directory */
2240         rc = __mdd_index_delete(env, mdd_spobj, sname, is_dir, handle,
2241                                 mdd_object_capa(env, mdd_spobj));
2242         if (rc)
2243                 GOTO(cleanup, rc);
2244
2245         /* "mv dir1 dir2" needs "dir1/.." link update */
2246         if (is_dir && mdd_sobj && !lu_fid_eq(spobj_fid, tpobj_fid)) {
2247                 rc = __mdd_index_delete_only(env, mdd_sobj, dotdot, handle,
2248                                         mdd_object_capa(env, mdd_sobj));
2249                 if (rc)
2250                         GOTO(fixup_spobj2, rc);
2251
2252                 rc = __mdd_index_insert_only(env, mdd_sobj, tpobj_fid, dotdot,
2253                                       handle, mdd_object_capa(env, mdd_sobj));
2254                 if (rc)
2255                         GOTO(fixup_spobj, rc);
2256         }
2257
2258         /* Remove target name from target directory
2259          * Here tobj can be remote one, so we do index_delete unconditionally
2260          * and -ENOENT is allowed.
2261          */
2262         rc = __mdd_index_delete(env, mdd_tpobj, tname, is_dir, handle,
2263                                 mdd_object_capa(env, mdd_tpobj));
2264         if (rc != 0) {
2265                 if (mdd_tobj) {
2266                         /* tname might been renamed to something else */
2267                         GOTO(fixup_spobj, rc);
2268                 }
2269                 if (rc != -ENOENT)
2270                         GOTO(fixup_spobj, rc);
2271         }
2272
2273         /* Insert new fid with target name into target dir */
2274         rc = __mdd_index_insert(env, mdd_tpobj, lf, tname, is_dir, handle,
2275                                 mdd_object_capa(env, mdd_tpobj));
2276         if (rc)
2277                 GOTO(fixup_tpobj, rc);
2278
2279         LASSERT(ma->ma_attr.la_valid & LA_CTIME);
2280         la->la_ctime = la->la_mtime = ma->ma_attr.la_ctime;
2281
2282         /* XXX: mdd_sobj must be local one if it is NOT NULL. */
2283         if (mdd_sobj) {
2284                 la->la_valid = LA_CTIME;
2285                 rc = mdd_attr_check_set_internal(env, mdd_sobj, la, handle, 0);
2286                 if (rc)
2287                         GOTO(fixup_tpobj, rc);
2288         }
2289
2290         /* Remove old target object
2291          * For tobj is remote case cmm layer has processed
2292          * and set tobj to NULL then. So when tobj is NOT NULL,
2293          * it must be local one.
2294          */
2295         if (tobj && mdd_object_exists(mdd_tobj)) {
2296                 mdd_write_lock(env, mdd_tobj, MOR_TGT_CHILD);
2297                 tobj_locked = 1;
2298                 if (mdd_is_dead_obj(mdd_tobj)) {
2299                         /* shld not be dead, something is wrong */
2300                         CERROR("tobj is dead, something is wrong\n");
2301                         rc = -EINVAL;
2302                         goto cleanup;
2303                 }
2304                 mdo_ref_del(env, mdd_tobj, handle);
2305
2306                 /* Remove dot reference. */
2307                 if (S_ISDIR(tg_attr->la_mode))
2308                         mdo_ref_del(env, mdd_tobj, handle);
2309                 tobj_ref = 1;
2310
2311                 /* fetch updated nlink */
2312                 rc = mdd_la_get(env, mdd_tobj, tg_attr,
2313                                 mdd_object_capa(env, mdd_tobj));
2314                 if (rc != 0) {
2315                         CERROR("%s: Failed to get nlink for tobj "
2316                                 DFID": rc = %d\n",
2317                                 mdd2obd_dev(mdd)->obd_name,
2318                                 PFID(tpobj_fid), rc);
2319                         GOTO(fixup_tpobj, rc);
2320                 }
2321
2322                 la->la_valid = LA_CTIME;
2323                 rc = mdd_attr_check_set_internal(env, mdd_tobj, la, handle, 0);
2324                 if (rc != 0) {
2325                         CERROR("%s: Failed to set ctime for tobj "
2326                                 DFID": rc = %d\n",
2327                                 mdd2obd_dev(mdd)->obd_name,
2328                                 PFID(tpobj_fid), rc);
2329                         GOTO(fixup_tpobj, rc);
2330                 }
2331
2332                 /* XXX: this transfer to ma will be removed with LOD/OSP */
2333                 ma->ma_attr = *tg_attr;
2334                 ma->ma_valid |= MA_INODE;
2335                 rc = mdd_finish_unlink(env, mdd_tobj, ma, handle);
2336                 if (rc != 0) {
2337                         CERROR("%s: Failed to unlink tobj "
2338                                 DFID": rc = %d\n",
2339                                 mdd2obd_dev(mdd)->obd_name,
2340                                 PFID(tpobj_fid), rc);
2341                         GOTO(fixup_tpobj, rc);
2342                 }
2343
2344                 /* fetch updated nlink */
2345                 rc = mdd_la_get(env, mdd_tobj, tg_attr,
2346                                 mdd_object_capa(env, mdd_tobj));
2347                 if (rc != 0) {
2348                         CERROR("%s: Failed to get nlink for tobj "
2349                                 DFID": rc = %d\n",
2350                                 mdd2obd_dev(mdd)->obd_name,
2351                                 PFID(tpobj_fid), rc);
2352                         GOTO(fixup_tpobj, rc);
2353                 }
2354                 /* XXX: this transfer to ma will be removed with LOD/OSP */
2355                 ma->ma_attr = *tg_attr;
2356                 ma->ma_valid |= MA_INODE;
2357
2358                 if (so_attr->la_nlink == 0)
2359                         cl_flags |= CLF_RENAME_LAST;
2360         }
2361
2362         la->la_valid = LA_CTIME | LA_MTIME;
2363         rc = mdd_attr_check_set_internal(env, mdd_spobj, la, handle, 0);
2364         if (rc)
2365                 GOTO(fixup_tpobj, rc);
2366
2367         if (mdd_spobj != mdd_tpobj) {
2368                 la->la_valid = LA_CTIME | LA_MTIME;
2369                 rc = mdd_attr_check_set_internal(env, mdd_tpobj, la,
2370                                                  handle, 0);
2371         }
2372
2373         if (rc == 0 && mdd_sobj) {
2374                 mdd_write_lock(env, mdd_sobj, MOR_SRC_CHILD);
2375                 rc = mdd_links_rename(env, mdd_sobj, mdo2fid(mdd_spobj), lsname,
2376                                       mdo2fid(mdd_tpobj), ltname, handle, 0, 0);
2377                 if (rc == -ENOENT)
2378                         /* Old files might not have EA entry */
2379                         mdd_links_add(env, mdd_sobj, mdo2fid(mdd_spobj),
2380                                       lsname, handle, 0);
2381                 mdd_write_unlock(env, mdd_sobj);
2382                 /* We don't fail the transaction if the link ea can't be
2383                    updated -- fid2path will use alternate lookup method. */
2384                 rc = 0;
2385         }
2386
2387         EXIT;
2388
2389 fixup_tpobj:
2390         if (rc) {
2391                 rc2 = __mdd_index_delete(env, mdd_tpobj, tname, is_dir, handle,
2392                                          BYPASS_CAPA);
2393                 if (rc2)
2394                         CWARN("tp obj fix error %d\n",rc2);
2395
2396                 if (mdd_tobj && mdd_object_exists(mdd_tobj) &&
2397                     !mdd_is_dead_obj(mdd_tobj)) {
2398                         if (tobj_ref) {
2399                                 mdo_ref_add(env, mdd_tobj, handle);
2400                                 if (is_dir)
2401                                         mdo_ref_add(env, mdd_tobj, handle);
2402                         }
2403
2404                         rc2 = __mdd_index_insert(env, mdd_tpobj,
2405                                          mdo2fid(mdd_tobj), tname,
2406                                          is_dir, handle,
2407                                          BYPASS_CAPA);
2408
2409                         if (rc2)
2410                                 CWARN("tp obj fix error %d\n",rc2);
2411                 }
2412         }
2413
2414 fixup_spobj:
2415         if (rc && is_dir && mdd_sobj) {
2416                 rc2 = __mdd_index_delete_only(env, mdd_sobj, dotdot, handle,
2417                                               BYPASS_CAPA);
2418
2419                 if (rc2)
2420                         CWARN("sp obj dotdot delete error %d\n",rc2);
2421
2422
2423                 rc2 = __mdd_index_insert_only(env, mdd_sobj, spobj_fid,
2424                                               dotdot, handle, BYPASS_CAPA);
2425                 if (rc2)
2426                         CWARN("sp obj dotdot insert error %d\n",rc2);
2427         }
2428
2429 fixup_spobj2:
2430         if (rc) {
2431                 rc2 = __mdd_index_insert(env, mdd_spobj,
2432                                          lf, sname, is_dir, handle, BYPASS_CAPA);
2433                 if (rc2)
2434                         CWARN("sp obj fix error %d\n",rc2);
2435         }
2436 cleanup:
2437         if (tobj_locked)
2438                 mdd_write_unlock(env, mdd_tobj);
2439         if (likely(tdlh) && sdlh != tdlh)
2440                 mdd_pdo_write_unlock(env, mdd_tpobj, tdlh);
2441         if (likely(sdlh))
2442                 mdd_pdo_write_unlock(env, mdd_spobj, sdlh);
2443 cleanup_unlocked:
2444         if (rc == 0)
2445                 rc = mdd_changelog_ext_ns_store(env, mdd, CL_RENAME, cl_flags,
2446                                                 mdd_tobj, tpobj_fid, lf,
2447                                                 spobj_fid, ltname, lsname,
2448                                                 handle);
2449
2450 stop:
2451         mdd_trans_stop(env, mdd, rc, handle);
2452 out_pending:
2453         mdd_object_put(env, mdd_sobj);
2454         return rc;
2455 }
2456
2457 int mdd_links_new(const struct lu_env *env, struct mdd_link_data *ldata)
2458 {
2459         ldata->ml_buf = mdd_buf_alloc(env, CFS_PAGE_SIZE);
2460         if (ldata->ml_buf->lb_buf == NULL)
2461                 return -ENOMEM;
2462         ldata->ml_leh = ldata->ml_buf->lb_buf;
2463         ldata->ml_leh->leh_magic = LINK_EA_MAGIC;
2464         ldata->ml_leh->leh_len = sizeof(struct link_ea_header);
2465         ldata->ml_leh->leh_reccount = 0;
2466         return 0;
2467 }
2468
2469 /** Read the link EA into a temp buffer.
2470  * Uses the mdd_thread_info::mti_big_buf since it is generally large.
2471  * A pointer to the buffer is stored in \a ldata::ml_buf.
2472  *
2473  * \retval 0 or error
2474  */
2475 int mdd_links_read(const struct lu_env *env, struct mdd_object *mdd_obj,
2476                    struct mdd_link_data *ldata)
2477 {
2478         struct lustre_capa *capa;
2479         struct link_ea_header *leh;
2480         int rc;
2481
2482         /* First try a small buf */
2483         LASSERT(env != NULL);
2484         ldata->ml_buf = mdd_buf_alloc(env, CFS_PAGE_SIZE);
2485         if (ldata->ml_buf->lb_buf == NULL)
2486                 return -ENOMEM;
2487
2488         if (!mdd_object_exists(mdd_obj))
2489                 return -ENODATA;
2490
2491         capa = mdd_object_capa(env, mdd_obj);
2492         rc = mdo_xattr_get(env, mdd_obj, ldata->ml_buf,
2493                            XATTR_NAME_LINK, capa);
2494         if (rc == -ERANGE) {
2495                 /* Buf was too small, figure out what we need. */
2496                 mdd_buf_put(ldata->ml_buf);
2497                 rc = mdo_xattr_get(env, mdd_obj, ldata->ml_buf,
2498                                    XATTR_NAME_LINK, capa);
2499                 if (rc < 0)
2500                         return rc;
2501                 ldata->ml_buf = mdd_buf_alloc(env, rc);
2502                 if (ldata->ml_buf->lb_buf == NULL)
2503                         return -ENOMEM;
2504                 rc = mdo_xattr_get(env, mdd_obj, ldata->ml_buf,
2505                                    XATTR_NAME_LINK, capa);
2506         }
2507         if (rc < 0)
2508                 return rc;
2509
2510         leh = ldata->ml_buf->lb_buf;
2511         if (leh->leh_magic == __swab32(LINK_EA_MAGIC)) {
2512                 leh->leh_magic = LINK_EA_MAGIC;
2513                 leh->leh_reccount = __swab32(leh->leh_reccount);
2514                 leh->leh_len = __swab64(leh->leh_len);
2515                 /* entries are swabbed by mdd_lee_unpack */
2516         }
2517         if (leh->leh_magic != LINK_EA_MAGIC)
2518                 return -EINVAL;
2519         if (leh->leh_reccount == 0)
2520                 return -ENODATA;
2521
2522         ldata->ml_leh = leh;
2523         return 0;
2524 }
2525
2526 /** Read the link EA into a temp buffer.
2527  * Uses the name_buf since it is generally large.
2528  * \retval IS_ERR err
2529  * \retval ptr to \a lu_buf (always \a mti_big_buf)
2530  */
2531 struct lu_buf *mdd_links_get(const struct lu_env *env,
2532                              struct mdd_object *mdd_obj)
2533 {
2534         struct mdd_link_data ldata = { 0 };
2535         int rc;
2536
2537         rc = mdd_links_read(env, mdd_obj, &ldata);
2538         return rc ? ERR_PTR(rc) : ldata.ml_buf;
2539 }
2540
2541 int mdd_links_write(const struct lu_env *env, struct mdd_object *mdd_obj,
2542                     struct mdd_link_data *ldata, struct thandle *handle)
2543 {
2544         const struct lu_buf *buf = mdd_buf_get_const(env, ldata->ml_buf->lb_buf,
2545                                                      ldata->ml_leh->leh_len);
2546         return mdo_xattr_set(env, mdd_obj, buf, XATTR_NAME_LINK, 0, handle,
2547                              mdd_object_capa(env, mdd_obj));
2548 }
2549
2550 /** Pack a link_ea_entry.
2551  * All elements are stored as chars to avoid alignment issues.
2552  * Numbers are always big-endian
2553  * \retval record length
2554  */
2555 static int mdd_lee_pack(struct link_ea_entry *lee, const struct lu_name *lname,
2556                         const struct lu_fid *pfid)
2557 {
2558         struct lu_fid   tmpfid;
2559         int             reclen;
2560
2561         fid_cpu_to_be(&tmpfid, pfid);
2562         memcpy(&lee->lee_parent_fid, &tmpfid, sizeof(tmpfid));
2563         memcpy(lee->lee_name, lname->ln_name, lname->ln_namelen);
2564         reclen = sizeof(struct link_ea_entry) + lname->ln_namelen;
2565
2566         lee->lee_reclen[0] = (reclen >> 8) & 0xff;
2567         lee->lee_reclen[1] = reclen & 0xff;
2568         return reclen;
2569 }
2570
2571 void mdd_lee_unpack(const struct link_ea_entry *lee, int *reclen,
2572                     struct lu_name *lname, struct lu_fid *pfid)
2573 {
2574         *reclen = (lee->lee_reclen[0] << 8) | lee->lee_reclen[1];
2575         memcpy(pfid, &lee->lee_parent_fid, sizeof(*pfid));
2576         fid_be_to_cpu(pfid, pfid);
2577         lname->ln_name = lee->lee_name;
2578         lname->ln_namelen = *reclen - sizeof(struct link_ea_entry);
2579 }
2580
2581 int mdd_declare_links_add(const struct lu_env *env,
2582                           struct mdd_object *mdd_obj,
2583                           struct thandle *handle)
2584 {
2585         int rc;
2586
2587         /* XXX: max size? */
2588         rc = mdo_declare_xattr_set(env, mdd_obj,
2589                              mdd_buf_get_const(env, NULL, 4096),
2590                              XATTR_NAME_LINK, 0, handle);
2591
2592         return rc;
2593 }
2594
2595 /** Add a record to the end of link ea buf */
2596 int mdd_links_add_buf(const struct lu_env *env, struct mdd_link_data *ldata,
2597                       const struct lu_name *lname, const struct lu_fid *pfid)
2598 {
2599         LASSERT(ldata->ml_leh != NULL);
2600
2601         if (lname == NULL || pfid == NULL)
2602                 return -EINVAL;
2603
2604         ldata->ml_reclen = lname->ln_namelen + sizeof(struct link_ea_entry);
2605         if (ldata->ml_leh->leh_len + ldata->ml_reclen >
2606             ldata->ml_buf->lb_len) {
2607                 if (mdd_buf_grow(env, ldata->ml_leh->leh_len +
2608                                  ldata->ml_reclen) < 0)
2609                         return -ENOMEM;
2610         }
2611
2612         ldata->ml_leh = ldata->ml_buf->lb_buf;
2613         ldata->ml_lee = ldata->ml_buf->lb_buf + ldata->ml_leh->leh_len;
2614         ldata->ml_reclen = mdd_lee_pack(ldata->ml_lee, lname, pfid);
2615         ldata->ml_leh->leh_len += ldata->ml_reclen;
2616         ldata->ml_leh->leh_reccount++;
2617         CDEBUG(D_INODE, "New link_ea name '%.*s' is added\n",
2618                lname->ln_namelen, lname->ln_name);
2619         return 0;
2620 }
2621
2622 /** Del the current record from the link ea buf */
2623 void mdd_links_del_buf(const struct lu_env *env, struct mdd_link_data *ldata,
2624                        const struct lu_name *lname)
2625 {
2626         LASSERT(ldata->ml_leh != NULL);
2627
2628         ldata->ml_leh->leh_reccount--;
2629         ldata->ml_leh->leh_len -= ldata->ml_reclen;
2630         memmove(ldata->ml_lee, (char *)ldata->ml_lee + ldata->ml_reclen,
2631                 (char *)ldata->ml_leh + ldata->ml_leh->leh_len -
2632                 (char *)ldata->ml_lee);
2633         CDEBUG(D_INODE, "Old link_ea name '%.*s' is removed\n",
2634                lname->ln_namelen, lname->ln_name);
2635
2636 }
2637
2638 /**
2639  * Check if such a link exists in linkEA.
2640  *
2641  * \param mdd_obj object being handled
2642  * \param pfid parent fid the link to be found for
2643  * \param lname name in the parent's directory entry pointing to this object
2644  * \param ldata link data the search to be done on
2645  *
2646  * \retval   0 success
2647  * \retval -ENOENT link does not exist
2648  * \retval -ve on error
2649  */
2650 int mdd_links_find(const struct lu_env *env, struct mdd_object *mdd_obj,
2651                    struct mdd_link_data *ldata, const struct lu_name *lname,
2652                    const struct lu_fid  *pfid)
2653 {
2654         struct lu_name *tmpname = &mdd_env_info(env)->mti_name2;
2655         struct lu_fid  *tmpfid = &mdd_env_info(env)->mti_fid;
2656         int count;
2657
2658         LASSERT(ldata->ml_leh != NULL);
2659
2660         /* link #0 */
2661         ldata->ml_lee = (struct link_ea_entry *)(ldata->ml_leh + 1);
2662
2663         for (count = 0; count < ldata->ml_leh->leh_reccount; count++) {
2664                 mdd_lee_unpack(ldata->ml_lee, &ldata->ml_reclen,
2665                                tmpname, tmpfid);
2666                 if (tmpname->ln_namelen == lname->ln_namelen &&
2667                     lu_fid_eq(tmpfid, pfid) &&
2668                     (strncmp(tmpname->ln_name, lname->ln_name,
2669                              tmpname->ln_namelen) == 0))
2670                         break;
2671                 ldata->ml_lee = (struct link_ea_entry *)((char *)ldata->ml_lee +
2672                                                          ldata->ml_reclen);
2673         }
2674
2675         if (count == ldata->ml_leh->leh_reccount) {
2676                 CDEBUG(D_INODE, "Old link_ea name '%.*s' not found\n",
2677                        lname->ln_namelen, lname->ln_name);
2678                 return -ENOENT;
2679         }
2680         return 0;
2681 }
2682
2683 static int __mdd_links_add(const struct lu_env *env,
2684                            struct mdd_object *mdd_obj,
2685                            struct mdd_link_data *ldata,
2686                            const struct lu_name *lname,
2687                            const struct lu_fid *pfid,
2688                            int first, int check)
2689 {
2690         int rc;
2691
2692         if (ldata->ml_leh == NULL) {
2693                 rc = first ? -ENODATA : mdd_links_read(env, mdd_obj, ldata);
2694                 if (rc) {
2695                         if (rc != -ENODATA)
2696                                 return rc;
2697                         rc = mdd_links_new(env, ldata);
2698                         if (rc)
2699                                 return rc;
2700                 }
2701         }
2702
2703         if (check) {
2704                 rc = mdd_links_find(env, mdd_obj, ldata, lname, pfid);
2705                 if (rc && rc != -ENOENT)
2706                         return rc;
2707                 if (rc == 0)
2708                         return -EEXIST;
2709         }
2710
2711         return mdd_links_add_buf(env, ldata, lname, pfid);
2712 }
2713
2714 static int __mdd_links_del(const struct lu_env *env,
2715                            struct mdd_object *mdd_obj,
2716                            struct mdd_link_data *ldata,
2717                            const struct lu_name *lname,
2718                            const struct lu_fid *pfid)
2719 {
2720         int rc;
2721
2722         if (ldata->ml_leh == NULL) {
2723                 rc = mdd_links_read(env, mdd_obj, ldata);
2724                 if (rc)
2725                         return rc;
2726         }
2727
2728         rc = mdd_links_find(env, mdd_obj, ldata, lname, pfid);
2729         if (rc)
2730                 return rc;
2731
2732         mdd_links_del_buf(env, ldata, lname);
2733         return 0;
2734 }
2735
2736 static int mdd_links_rename(const struct lu_env *env,
2737                             struct mdd_object *mdd_obj,
2738                             const struct lu_fid *oldpfid,
2739                             const struct lu_name *oldlname,
2740                             const struct lu_fid *newpfid,
2741                             const struct lu_name *newlname,
2742                             struct thandle *handle,
2743                             int first, int check)
2744 {
2745         struct mdd_link_data ldata = { 0 };
2746         int updated = 0;
2747         int rc2 = 0;
2748         int rc = 0;
2749         ENTRY;
2750
2751         if (OBD_FAIL_CHECK(OBD_FAIL_FID_IGIF))
2752                 return 0;
2753
2754         LASSERT(oldpfid != NULL || newpfid != NULL);
2755
2756         if (mdd_obj->mod_flags & DEAD_OBJ)
2757                 /* No more links, don't bother */
2758                 RETURN(0);
2759
2760         if (oldpfid != NULL) {
2761                 rc = __mdd_links_del(env, mdd_obj, &ldata,
2762                                      oldlname, oldpfid);
2763                 if (rc) {
2764                         if ((check == 0) ||
2765                             (rc != -ENODATA && rc != -ENOENT))
2766                                 GOTO(out, rc);
2767                         /* No changes done. */
2768                         rc = 0;
2769                 } else {
2770                         updated = 1;
2771                 }
2772         }
2773
2774         /* If renaming, add the new record */
2775         if (newpfid != NULL) {
2776                 /* even if the add fails, we still delete the out-of-date
2777                  * old link */
2778                 rc2 = __mdd_links_add(env, mdd_obj, &ldata,
2779                                       newlname, newpfid, first, check);
2780                 if (rc2 == -EEXIST)
2781                         rc2 = 0;
2782                 else if (rc2 == 0)
2783                         updated = 1;
2784         }
2785
2786         if (updated)
2787                 rc = mdd_links_write(env, mdd_obj, &ldata, handle);
2788         EXIT;
2789 out:
2790         if (rc == 0)
2791                 rc = rc2;
2792         if (rc) {
2793                 int error = 1;
2794                 if (rc == -EOVERFLOW || rc == - ENOENT)
2795                         error = 0;
2796                 if (oldpfid == NULL)
2797                         CDEBUG(error ? D_ERROR : D_OTHER,
2798                                "link_ea add '%.*s' failed %d "DFID"\n",
2799                                newlname->ln_namelen, newlname->ln_name,
2800                                rc, PFID(mdd_object_fid(mdd_obj)));
2801                 else if (newpfid == NULL)
2802                         CDEBUG(error ? D_ERROR : D_OTHER,
2803                                "link_ea del '%.*s' failed %d "DFID"\n",
2804                                oldlname->ln_namelen, oldlname->ln_name,
2805                                rc, PFID(mdd_object_fid(mdd_obj)));
2806                 else
2807                         CDEBUG(error ? D_ERROR : D_OTHER,
2808                                "link_ea rename '%.*s'->'%.*s' failed %d "
2809                                DFID"\n",
2810                                oldlname->ln_namelen, oldlname->ln_name,
2811                                newlname->ln_namelen, newlname->ln_name,
2812                                rc, PFID(mdd_object_fid(mdd_obj)));
2813         }
2814
2815         if (ldata.ml_buf && ldata.ml_buf->lb_len > OBD_ALLOC_BIG)
2816                 /* if we vmalloced a large buffer drop it */
2817                 mdd_buf_put(ldata.ml_buf);
2818
2819         return rc;
2820 }
2821
2822 static inline int mdd_links_add(const struct lu_env *env,
2823                                 struct mdd_object *mdd_obj,
2824                                 const struct lu_fid *pfid,
2825                                 const struct lu_name *lname,
2826                                 struct thandle *handle, int first)
2827 {
2828         return mdd_links_rename(env, mdd_obj, NULL, NULL,
2829                                 pfid, lname, handle, first, 0);
2830 }
2831
2832 static inline int mdd_links_del(const struct lu_env *env,
2833                                 struct mdd_object *mdd_obj,
2834                                 const struct lu_fid *pfid,
2835                                 const struct lu_name *lname,
2836                                 struct thandle *handle)
2837 {
2838         return mdd_links_rename(env, mdd_obj, pfid, lname,
2839                                 NULL, NULL, handle, 0, 0);
2840 }
2841
2842 const struct md_dir_operations mdd_dir_ops = {
2843         .mdo_is_subdir     = mdd_is_subdir,
2844         .mdo_lookup        = mdd_lookup,
2845         .mdo_create        = mdd_create,
2846         .mdo_rename        = mdd_rename,
2847         .mdo_link          = mdd_link,
2848         .mdo_unlink        = mdd_unlink,
2849         .mdo_create_data   = mdd_create_data,
2850 };