Whamcloud - gitweb
LU-2449 mdd: set linkea on /ROOT
[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                         fid_is_root(mdo2fid(child))))
1476                 mdd_declare_links_add(env, child, handle);
1477
1478         RETURN(rc);
1479 }
1480
1481 int mdd_object_initialize(const struct lu_env *env, const struct lu_fid *pfid,
1482                           const struct lu_name *lname, struct mdd_object *child,
1483                           struct lu_attr *attr, struct thandle *handle,
1484                           const struct md_op_spec *spec)
1485 {
1486         int rc;
1487         ENTRY;
1488
1489         /*
1490          * Update attributes for child.
1491          *
1492          * FIXME:
1493          *  (1) the valid bits should be converted between Lustre and Linux;
1494          *  (2) maybe, the child attributes should be set in OSD when creation.
1495          */
1496
1497         /*
1498          * inode mode has been set in creation time, and it's based on umask,
1499          * la_mode and acl, don't set here again! (which will go wrong
1500          * because below function doesn't consider umask).
1501          * I'd suggest set all object attributes in creation time, see above.
1502          */
1503         LASSERT(attr->la_valid & (LA_MODE | LA_TYPE));
1504         attr->la_valid &= ~(LA_MODE | LA_TYPE);
1505         rc = mdd_attr_set_internal(env, child, attr, handle, 0);
1506         /* arguments are supposed to stay the same */
1507         attr->la_valid |= LA_MODE | LA_TYPE;
1508         if (rc != 0)
1509                 RETURN(rc);
1510
1511         if (S_ISDIR(attr->la_mode)) {
1512                 /* Add "." and ".." for newly created dir */
1513                 mdo_ref_add(env, child, handle);
1514                 rc = __mdd_index_insert_only(env, child, mdo2fid(child),
1515                                              dot, handle, BYPASS_CAPA);
1516                 if (rc == 0)
1517                         rc = __mdd_index_insert_only(env, child, pfid,
1518                                                      dotdot, handle,
1519                                                      BYPASS_CAPA);
1520                 if (rc != 0)
1521                         mdo_ref_del(env, child, handle);
1522         }
1523
1524         if (rc == 0 && (fid_is_norm(mdo2fid(child)) ||
1525                         fid_is_dot_lustre(mdo2fid(child)) ||
1526                         fid_is_root(mdo2fid(child))))
1527                 mdd_links_add(env, child, pfid, lname, handle, 1);
1528
1529         RETURN(rc);
1530 }
1531
1532 /* has not lock on pobj yet */
1533 static int mdd_create_sanity_check(const struct lu_env *env,
1534                                    struct md_object *pobj,
1535                                    struct lu_attr *pattr,
1536                                    const struct lu_name *lname,
1537                                    struct lu_attr *cattr,
1538                                    struct md_op_spec *spec)
1539 {
1540         struct mdd_thread_info *info = mdd_env_info(env);
1541         struct lu_fid     *fid       = &info->mti_fid;
1542         struct mdd_object *obj       = md2mdd_obj(pobj);
1543         struct mdd_device *m         = mdo2mdd(pobj);
1544         int rc;
1545         ENTRY;
1546
1547         /* EEXIST check */
1548         if (mdd_is_dead_obj(obj))
1549                 RETURN(-ENOENT);
1550
1551         /*
1552          * In some cases this lookup is not needed - we know before if name
1553          * exists or not because MDT performs lookup for it.
1554          * name length check is done in lookup.
1555          */
1556         if (spec->sp_cr_lookup) {
1557                 /*
1558                  * Check if the name already exist, though it will be checked in
1559                  * _index_insert also, for avoiding rolling back if exists
1560                  * _index_insert.
1561                  */
1562                 rc = __mdd_lookup_locked(env, pobj, lname, fid,
1563                                          MAY_WRITE | MAY_EXEC);
1564                 if (rc != -ENOENT)
1565                         RETURN(rc ? : -EEXIST);
1566         } else {
1567                 /*
1568                  * Check WRITE permission for the parent.
1569                  * EXEC permission have been checked
1570                  * when lookup before create already.
1571                  */
1572                 rc = mdd_permission_internal_locked(env, obj, pattr, MAY_WRITE,
1573                                                     MOR_TGT_PARENT);
1574                 if (rc)
1575                         RETURN(rc);
1576         }
1577
1578         /* sgid check */
1579         if (pattr->la_mode & S_ISGID) {
1580                 cattr->la_gid = pattr->la_gid;
1581                 if (S_ISDIR(cattr->la_mode)) {
1582                         cattr->la_mode |= S_ISGID;
1583                         cattr->la_valid |= LA_MODE;
1584                 }
1585         }
1586
1587         switch (cattr->la_mode & S_IFMT) {
1588         case S_IFLNK: {
1589                 unsigned int symlen = strlen(spec->u.sp_symname) + 1;
1590
1591                 if (symlen > (1 << m->mdd_dt_conf.ddp_block_shift))
1592                         RETURN(-ENAMETOOLONG);
1593                 else
1594                         RETURN(0);
1595         }
1596         case S_IFDIR:
1597         case S_IFREG:
1598         case S_IFCHR:
1599         case S_IFBLK:
1600         case S_IFIFO:
1601         case S_IFSOCK:
1602                 rc = 0;
1603                 break;
1604         default:
1605                 rc = -EINVAL;
1606                 break;
1607         }
1608         RETURN(rc);
1609 }
1610
1611 static int mdd_declare_create(const struct lu_env *env, struct mdd_device *mdd,
1612                               struct mdd_object *p, struct mdd_object *c,
1613                               const struct lu_name *name,
1614                               struct lu_attr *attr,
1615                               int got_def_acl,
1616                               struct thandle *handle,
1617                               const struct md_op_spec *spec)
1618 {
1619         int rc;
1620
1621         rc = mdd_declare_object_create_internal(env, p, c, attr, handle, spec);
1622         if (rc)
1623                 GOTO(out, rc);
1624
1625 #ifdef CONFIG_FS_POSIX_ACL
1626         if (got_def_acl > 0) {
1627                 struct lu_buf *acl_buf;
1628
1629                 acl_buf = mdd_buf_get(env, NULL, got_def_acl);
1630                 /* if dir, then can inherit default ACl */
1631                 if (S_ISDIR(attr->la_mode)) {
1632                         rc = mdo_declare_xattr_set(env, c, acl_buf,
1633                                                    XATTR_NAME_ACL_DEFAULT,
1634                                                    0, handle);
1635                         if (rc)
1636                                 GOTO(out, rc);
1637                 }
1638
1639                 rc = mdo_declare_attr_set(env, c, attr, handle);
1640                 if (rc)
1641                         GOTO(out, rc);
1642
1643                 rc = mdo_declare_xattr_set(env, c, acl_buf,
1644                                            XATTR_NAME_ACL_ACCESS, 0, handle);
1645                 if (rc)
1646                         GOTO(out, rc);
1647         }
1648 #endif
1649
1650         if (S_ISDIR(attr->la_mode)) {
1651                 rc = mdo_declare_ref_add(env, p, handle);
1652                 if (rc)
1653                         GOTO(out, rc);
1654         }
1655
1656         rc = mdd_declare_object_initialize(env, p, c, attr, handle);
1657         if (rc)
1658                 GOTO(out, rc);
1659
1660         if (spec->sp_cr_flags & MDS_OPEN_VOLATILE)
1661                 rc = orph_declare_index_insert(env, c, attr->la_mode, handle);
1662         else
1663                 rc = mdo_declare_index_insert(env, p, mdo2fid(c),
1664                                               name->ln_name, handle);
1665         if (rc)
1666                 GOTO(out, rc);
1667
1668         /* replay case, create LOV EA from client data */
1669         if (spec->no_create || (spec->sp_cr_flags & MDS_OPEN_HAS_EA)) {
1670                 const struct lu_buf *buf;
1671
1672                 buf = mdd_buf_get_const(env, spec->u.sp_ea.eadata,
1673                                         spec->u.sp_ea.eadatalen);
1674                 rc = mdo_declare_xattr_set(env, c, buf, XATTR_NAME_LOV,
1675                                            0, handle);
1676                 if (rc)
1677                         GOTO(out, rc);
1678         }
1679
1680         if (S_ISLNK(attr->la_mode)) {
1681                 rc = dt_declare_record_write(env, mdd_object_child(c),
1682                                              strlen(spec->u.sp_symname), 0,
1683                                              handle);
1684                 if (rc)
1685                         GOTO(out, rc);
1686         }
1687
1688         if (!(spec->sp_cr_flags & MDS_OPEN_VOLATILE)) {
1689                 rc = mdo_declare_attr_set(env, p, attr, handle);
1690                 if (rc)
1691                         return rc;
1692         }
1693
1694         rc = mdd_declare_changelog_store(env, mdd, name, handle);
1695         if (rc)
1696                 return rc;
1697
1698 out:
1699         return rc;
1700 }
1701
1702 /*
1703  * Create object and insert it into namespace.
1704  */
1705 static int mdd_create(const struct lu_env *env, struct md_object *pobj,
1706                       const struct lu_name *lname, struct md_object *child,
1707                       struct md_op_spec *spec, struct md_attr* ma)
1708 {
1709         struct mdd_thread_info  *info = mdd_env_info(env);
1710         struct lu_attr          *la = &info->mti_la_for_fix;
1711         struct mdd_object       *mdd_pobj = md2mdd_obj(pobj);
1712         struct mdd_object       *son = md2mdd_obj(child);
1713         struct mdd_device       *mdd = mdo2mdd(pobj);
1714         struct lu_attr          *attr = &ma->ma_attr;
1715         struct thandle          *handle;
1716         struct lu_attr          *pattr = &info->mti_pattr;
1717         struct dynlock_handle   *dlh;
1718         const char              *name = lname->ln_name;
1719         int                      rc, created = 0, initialized = 0, inserted = 0;
1720         int                      got_def_acl = 0;
1721         ENTRY;
1722
1723         /*
1724          * Two operations have to be performed:
1725          *
1726          *  - an allocation of a new object (->do_create()), and
1727          *
1728          *  - an insertion into a parent index (->dio_insert()).
1729          *
1730          * Due to locking, operation order is not important, when both are
1731          * successful, *but* error handling cases are quite different:
1732          *
1733          *  - if insertion is done first, and following object creation fails,
1734          *  insertion has to be rolled back, but this operation might fail
1735          *  also leaving us with dangling index entry.
1736          *
1737          *  - if creation is done first, is has to be undone if insertion
1738          *  fails, leaving us with leaked space, which is neither good, nor
1739          *  fatal.
1740          *
1741          * It seems that creation-first is simplest solution, but it is
1742          * sub-optimal in the frequent
1743          *
1744          *         $ mkdir foo
1745          *         $ mkdir foo
1746          *
1747          * case, because second mkdir is bound to create object, only to
1748          * destroy it immediately.
1749          *
1750          * To avoid this follow local file systems that do double lookup:
1751          *
1752          *     0. lookup -> -EEXIST (mdd_create_sanity_check())
1753          *
1754          *     1. create            (mdd_object_create_internal())
1755          *
1756          *     2. insert            (__mdd_index_insert(), lookup again)
1757          */
1758
1759         rc = mdd_la_get(env, mdd_pobj, pattr, BYPASS_CAPA);
1760         if (rc != 0)
1761                 RETURN(rc);
1762
1763         /* Sanity checks before big job. */
1764         rc = mdd_create_sanity_check(env, pobj, pattr, lname, attr, spec);
1765         if (rc)
1766                 RETURN(rc);
1767
1768         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_DQACQ_NET))
1769                 GOTO(out_free, rc = -EINPROGRESS);
1770
1771         if (!S_ISLNK(attr->la_mode)) {
1772                 struct lu_buf *acl_buf;
1773
1774                 acl_buf = mdd_buf_get(env, info->mti_xattr_buf,
1775                                 sizeof(info->mti_xattr_buf));
1776                 mdd_read_lock(env, mdd_pobj, MOR_TGT_PARENT);
1777                 rc = mdo_xattr_get(env, mdd_pobj, acl_buf,
1778                                 XATTR_NAME_ACL_DEFAULT, BYPASS_CAPA);
1779                 mdd_read_unlock(env, mdd_pobj);
1780                 if (rc > 0)
1781                         got_def_acl = rc;
1782                 else if (rc < 0 && rc != -EOPNOTSUPP && rc != -ENODATA)
1783                         GOTO(out_free, rc);
1784         }
1785
1786         mdd_object_make_hint(env, mdd_pobj, son, attr);
1787
1788         handle = mdd_trans_create(env, mdd);
1789         if (IS_ERR(handle))
1790                 GOTO(out_free, rc = PTR_ERR(handle));
1791
1792         rc = mdd_declare_create(env, mdd, mdd_pobj, son, lname, attr,
1793                                 got_def_acl, handle, spec);
1794         if (rc)
1795                 GOTO(out_stop, rc);
1796
1797         rc = mdd_trans_start(env, mdd, handle);
1798         if (rc)
1799                 GOTO(out_stop, rc);
1800
1801         dlh = mdd_pdo_write_lock(env, mdd_pobj, name, MOR_TGT_PARENT);
1802         if (dlh == NULL)
1803                 GOTO(out_trans, rc = -ENOMEM);
1804
1805         mdd_write_lock(env, son, MOR_TGT_CHILD);
1806         rc = mdd_object_create_internal(env, NULL, son, attr, handle, spec);
1807         if (rc) {
1808                 mdd_write_unlock(env, son);
1809                 GOTO(cleanup, rc);
1810         }
1811
1812         created = 1;
1813
1814 #ifdef CONFIG_FS_POSIX_ACL
1815         if (got_def_acl) {
1816                 struct lu_buf *acl_buf;
1817
1818                 acl_buf = mdd_buf_get(env, info->mti_xattr_buf, got_def_acl);
1819                 rc = __mdd_acl_init(env, son, acl_buf, &attr->la_mode, handle);
1820                 if (rc) {
1821                         mdd_write_unlock(env, son);
1822                         GOTO(cleanup, rc);
1823                 }
1824         }
1825 #endif
1826
1827         rc = mdd_object_initialize(env, mdo2fid(mdd_pobj), lname,
1828                                    son, attr, handle, spec);
1829
1830         /*
1831          * in case of replay we just set LOVEA provided by the client
1832          * XXX: I think it would be interesting to try "old" way where
1833          *      MDT calls this xattr_set(LOV) in a different transaction.
1834          *      probably this way we code can be made better.
1835          */
1836         if (rc == 0 && (spec->no_create ||
1837                         (spec->sp_cr_flags & MDS_OPEN_HAS_EA))) {
1838                 const struct lu_buf *buf;
1839
1840                 buf = mdd_buf_get_const(env, spec->u.sp_ea.eadata,
1841                                 spec->u.sp_ea.eadatalen);
1842                 rc = mdo_xattr_set(env, son, buf, XATTR_NAME_LOV, 0, handle,
1843                                 BYPASS_CAPA);
1844         }
1845
1846         if (rc == 0 && spec->sp_cr_flags & MDS_OPEN_VOLATILE)
1847                 rc = __mdd_orphan_add(env, son, handle);
1848
1849         mdd_write_unlock(env, son);
1850
1851         if (rc != 0)
1852                 /*
1853                  * Object has no links, so it will be destroyed when last
1854                  * reference is released. (XXX not now.)
1855                  */
1856                 GOTO(cleanup, rc);
1857
1858         initialized = 1;
1859
1860         if (!(spec->sp_cr_flags & MDS_OPEN_VOLATILE))
1861                 rc = __mdd_index_insert(env, mdd_pobj, mdo2fid(son),
1862                                         name, S_ISDIR(attr->la_mode), handle,
1863                                         mdd_object_capa(env, mdd_pobj));
1864
1865         if (rc != 0)
1866                 GOTO(cleanup, rc);
1867
1868         inserted = 1;
1869
1870         if (S_ISLNK(attr->la_mode)) {
1871                 struct lu_ucred  *uc = lu_ucred_assert(env);
1872                 struct dt_object *dt = mdd_object_child(son);
1873                 const char *target_name = spec->u.sp_symname;
1874                 int sym_len = strlen(target_name);
1875                 const struct lu_buf *buf;
1876                 loff_t pos = 0;
1877
1878                 buf = mdd_buf_get_const(env, target_name, sym_len);
1879                 rc = dt->do_body_ops->dbo_write(env, dt, buf, &pos, handle,
1880                                                 mdd_object_capa(env, son),
1881                                                 uc->uc_cap &
1882                                                 CFS_CAP_SYS_RESOURCE_MASK);
1883
1884                 if (rc == sym_len)
1885                         rc = 0;
1886                 else
1887                         GOTO(cleanup, rc = -EFAULT);
1888         }
1889
1890         /* volatile file creation does not update parent directory times */
1891         if (spec->sp_cr_flags & MDS_OPEN_VOLATILE)
1892                 GOTO(cleanup, rc = 0);
1893
1894         /* update parent directory mtime/ctime */
1895         *la = *attr;
1896         la->la_valid = LA_CTIME | LA_MTIME;
1897         rc = mdd_attr_check_set_internal(env, mdd_pobj, la, handle, 0);
1898         if (rc)
1899                 GOTO(cleanup, rc);
1900
1901         EXIT;
1902 cleanup:
1903         if (rc != 0 && created != 0) {
1904                 int rc2;
1905
1906                 if (inserted != 0) {
1907                         if (spec->sp_cr_flags & MDS_OPEN_VOLATILE)
1908                                 rc2 = __mdd_orphan_del(env, son, handle);
1909                         else
1910                                 rc2 = __mdd_index_delete(env, mdd_pobj, name,
1911                                                          S_ISDIR(attr->la_mode),
1912                                                          handle, BYPASS_CAPA);
1913                         if (rc2 != 0)
1914                                 goto out_stop;
1915                 }
1916
1917                 mdd_write_lock(env, son, MOR_TGT_CHILD);
1918                 if (initialized != 0 && S_ISDIR(attr->la_mode)) {
1919                         /* Drop the reference, no need to delete "."/"..",
1920                          * because the object to be destroied directly. */
1921                         rc2 = mdo_ref_del(env, son, handle);
1922                         if (rc2 != 0) {
1923                                 mdd_write_unlock(env, son);
1924                                 goto out_stop;
1925                         }
1926                 }
1927
1928                 rc2 = mdo_ref_del(env, son, handle);
1929                 if (rc2 != 0) {
1930                         mdd_write_unlock(env, son);
1931                         goto out_stop;
1932                 }
1933
1934                 mdo_destroy(env, son, handle);
1935                 mdd_write_unlock(env, son);
1936         }
1937
1938         mdd_pdo_write_unlock(env, mdd_pobj, dlh);
1939 out_trans:
1940         if (rc == 0 && fid_is_client_mdt_visible(mdo2fid(son)))
1941                 rc = mdd_changelog_ns_store(env, mdd,
1942                         S_ISDIR(attr->la_mode) ? CL_MKDIR :
1943                         S_ISREG(attr->la_mode) ? CL_CREATE :
1944                         S_ISLNK(attr->la_mode) ? CL_SOFTLINK : CL_MKNOD,
1945                         0, son, mdd_pobj, lname, handle);
1946 out_stop:
1947         mdd_trans_stop(env, mdd, rc, handle);
1948 out_free:
1949         /* The child object shouldn't be cached anymore */
1950         if (rc)
1951                 set_bit(LU_OBJECT_HEARD_BANSHEE,
1952                             &child->mo_lu.lo_header->loh_flags);
1953         return rc;
1954 }
1955
1956 /*
1957  * Get locks on parents in proper order
1958  * RETURN: < 0 - error, rename_order if successful
1959  */
1960 enum rename_order {
1961         MDD_RN_SAME,
1962         MDD_RN_SRCTGT,
1963         MDD_RN_TGTSRC
1964 };
1965
1966 static int mdd_rename_order(const struct lu_env *env,
1967                             struct mdd_device *mdd,
1968                             struct mdd_object *src_pobj,
1969                             struct mdd_object *tgt_pobj)
1970 {
1971         /* order of locking, 1 - tgt-src, 0 - src-tgt*/
1972         int rc;
1973         ENTRY;
1974
1975         if (src_pobj == tgt_pobj)
1976                 RETURN(MDD_RN_SAME);
1977
1978         /* compared the parent child relationship of src_p&tgt_p */
1979         if (lu_fid_eq(&mdd->mdd_root_fid, mdo2fid(src_pobj))){
1980                 rc = MDD_RN_SRCTGT;
1981         } else if (lu_fid_eq(&mdd->mdd_root_fid, mdo2fid(tgt_pobj))) {
1982                 rc = MDD_RN_TGTSRC;
1983         } else {
1984                 rc = mdd_is_parent(env, mdd, src_pobj, mdo2fid(tgt_pobj), NULL);
1985                 if (rc == -EREMOTE)
1986                         rc = 0;
1987
1988                 if (rc == 1)
1989                         rc = MDD_RN_TGTSRC;
1990                 else if (rc == 0)
1991                         rc = MDD_RN_SRCTGT;
1992         }
1993
1994         RETURN(rc);
1995 }
1996
1997 /* has not mdd_write{read}_lock on any obj yet. */
1998 static int mdd_rename_sanity_check(const struct lu_env *env,
1999                                    struct mdd_object *src_pobj,
2000                                    struct mdd_object *tgt_pobj,
2001                                    struct mdd_object *sobj,
2002                                    struct mdd_object *tobj,
2003                                    struct lu_attr *so_attr,
2004                                    struct lu_attr *tg_attr)
2005 {
2006         int rc = 0;
2007         ENTRY;
2008
2009         /* XXX: when get here, sobj must NOT be NULL,
2010          * the other case has been processed in cml_rename
2011          * before mdd_rename and enable MDS_PERM_BYPASS. */
2012         LASSERT(sobj);
2013
2014         rc = mdd_may_delete(env, src_pobj, sobj, so_attr, NULL, 1, 0);
2015         if (rc)
2016                 RETURN(rc);
2017
2018         /* XXX: when get here, "tobj == NULL" means tobj must
2019          * NOT exist (neither on remote MDS, such case has been
2020          * processed in cml_rename before mdd_rename and enable
2021          * MDS_PERM_BYPASS).
2022          * So check may_create, but not check may_unlink. */
2023         if (!tobj)
2024                 rc = mdd_may_create(env, tgt_pobj, NULL,
2025                                     (src_pobj != tgt_pobj), 0);
2026         else
2027                 rc = mdd_may_delete(env, tgt_pobj, tobj, tg_attr, so_attr,
2028                                     (src_pobj != tgt_pobj), 1);
2029
2030         if (!rc && !tobj && (src_pobj != tgt_pobj) &&
2031             S_ISDIR(so_attr->la_mode))
2032                 rc = __mdd_may_link(env, tgt_pobj);
2033
2034         RETURN(rc);
2035 }
2036
2037 static int mdd_declare_rename(const struct lu_env *env,
2038                               struct mdd_device *mdd,
2039                               struct mdd_object *mdd_spobj,
2040                               struct mdd_object *mdd_tpobj,
2041                               struct mdd_object *mdd_sobj,
2042                               struct mdd_object *mdd_tobj,
2043                               const struct lu_name *tname,
2044                               const struct lu_name *sname,
2045                               struct md_attr *ma,
2046                               struct thandle *handle)
2047 {
2048         int rc;
2049
2050         LASSERT(mdd_spobj);
2051         LASSERT(mdd_tpobj);
2052         LASSERT(mdd_sobj);
2053
2054         /* name from source dir */
2055         rc = mdo_declare_index_delete(env, mdd_spobj, sname->ln_name, handle);
2056         if (rc)
2057                 return rc;
2058
2059         /* .. from source child */
2060         if (S_ISDIR(mdd_object_type(mdd_sobj))) {
2061                 /* source child can be directory,
2062                  * counted by source dir's nlink */
2063                 rc = mdo_declare_ref_del(env, mdd_spobj, handle);
2064                 if (rc)
2065                         return rc;
2066
2067                 rc = mdo_declare_index_delete(env, mdd_sobj, dotdot, handle);
2068                 if (rc)
2069                         return rc;
2070
2071                 rc = mdo_declare_index_insert(env, mdd_sobj, mdo2fid(mdd_tpobj),
2072                                               dotdot, handle);
2073                 if (rc)
2074                         return rc;
2075
2076                 /* new target child can be directory,
2077                  * counted by target dir's nlink */
2078                 rc = mdo_declare_ref_add(env, mdd_tpobj, handle);
2079                 if (rc)
2080                         return rc;
2081
2082         }
2083
2084         rc = mdo_declare_attr_set(env, mdd_spobj, NULL, handle);
2085         if (rc)
2086                 return rc;
2087
2088         rc = mdo_declare_attr_set(env, mdd_sobj, NULL, handle);
2089         if (rc)
2090                 return rc;
2091         mdd_declare_links_add(env, mdd_sobj, handle);
2092         if (rc)
2093                 return rc;
2094
2095         rc = mdo_declare_attr_set(env, mdd_tpobj, NULL, handle);
2096         if (rc)
2097                 return rc;
2098
2099         /* new name */
2100         rc = mdo_declare_index_insert(env, mdd_tpobj, mdo2fid(mdd_sobj),
2101                         tname->ln_name, handle);
2102         if (rc)
2103                 return rc;
2104
2105         /* name from target dir (old name), we declare it unconditionally
2106          * as mdd_rename() calls delete unconditionally as well. so just
2107          * to balance declarations vs calls to change ... */
2108         rc = mdo_declare_index_delete(env, mdd_tpobj, tname->ln_name, handle);
2109         if (rc)
2110                 return rc;
2111
2112         if (mdd_tobj && mdd_object_exists(mdd_tobj)) {
2113                 /* delete target child in target parent directory */
2114                 rc = mdo_declare_ref_del(env, mdd_tobj, handle);
2115                 if (rc)
2116                         return rc;
2117
2118                 if (S_ISDIR(mdd_object_type(mdd_tobj))) {
2119                         /* target child can be directory,
2120                          * delete "." reference in target child directory */
2121                         rc = mdo_declare_ref_del(env, mdd_tobj, handle);
2122                         if (rc)
2123                                 return rc;
2124
2125                         /* delete ".." reference in target parent directory */
2126                         rc = mdo_declare_ref_del(env, mdd_tpobj, handle);
2127                         if (rc)
2128                                 return rc;
2129                 }
2130
2131                 rc = mdo_declare_attr_set(env, mdd_tobj, NULL, handle);
2132                 if (rc)
2133                         return rc;
2134
2135                 mdd_declare_links_add(env, mdd_tobj, handle);
2136                 if (rc)
2137                         return rc;
2138
2139                 rc = mdd_declare_finish_unlink(env, mdd_tobj, ma, handle);
2140                 if (rc)
2141                         return rc;
2142         }
2143
2144         rc = mdd_declare_changelog_ext_store(env, mdd, tname, sname, handle);
2145         if (rc)
2146                 return rc;
2147
2148         return rc;
2149 }
2150
2151 /* src object can be remote that is why we use only fid and type of object */
2152 static int mdd_rename(const struct lu_env *env,
2153                       struct md_object *src_pobj, struct md_object *tgt_pobj,
2154                       const struct lu_fid *lf, const struct lu_name *lsname,
2155                       struct md_object *tobj, const struct lu_name *ltname,
2156                       struct md_attr *ma)
2157 {
2158         const char *sname = lsname->ln_name;
2159         const char *tname = ltname->ln_name;
2160         struct lu_attr    *la = &mdd_env_info(env)->mti_la_for_fix;
2161         struct lu_attr    *so_attr = &mdd_env_info(env)->mti_cattr;
2162         struct lu_attr    *tg_attr = &mdd_env_info(env)->mti_pattr;
2163         struct mdd_object *mdd_spobj = md2mdd_obj(src_pobj); /* source parent */
2164         struct mdd_object *mdd_tpobj = md2mdd_obj(tgt_pobj);
2165         struct mdd_device *mdd = mdo2mdd(src_pobj);
2166         struct mdd_object *mdd_sobj = NULL;                  /* source object */
2167         struct mdd_object *mdd_tobj = NULL;
2168         struct dynlock_handle *sdlh, *tdlh;
2169         struct thandle *handle;
2170         const struct lu_fid *tpobj_fid = mdo2fid(mdd_tpobj);
2171         const struct lu_fid *spobj_fid = mdo2fid(mdd_spobj);
2172         bool is_dir;
2173         bool tobj_ref = 0;
2174         bool tobj_locked = 0;
2175         unsigned cl_flags = 0;
2176         int rc, rc2;
2177         ENTRY;
2178
2179         if (tobj)
2180                 mdd_tobj = md2mdd_obj(tobj);
2181
2182         mdd_sobj = mdd_object_find(env, mdd, lf);
2183
2184         handle = mdd_trans_create(env, mdd);
2185         if (IS_ERR(handle))
2186                 GOTO(out_pending, rc = PTR_ERR(handle));
2187
2188         rc = mdd_declare_rename(env, mdd, mdd_spobj, mdd_tpobj, mdd_sobj,
2189                                 mdd_tobj, lsname, ltname, ma, handle);
2190         if (rc)
2191                 GOTO(stop, rc);
2192
2193         rc = mdd_trans_start(env, mdd, handle);
2194         if (rc)
2195                 GOTO(stop, rc);
2196
2197         /* FIXME: Should consider tobj and sobj too in rename_lock. */
2198         rc = mdd_rename_order(env, mdd, mdd_spobj, mdd_tpobj);
2199         if (rc < 0)
2200                 GOTO(cleanup_unlocked, rc);
2201
2202         /* Get locks in determined order */
2203         if (rc == MDD_RN_SAME) {
2204                 sdlh = mdd_pdo_write_lock(env, mdd_spobj,
2205                                           sname, MOR_SRC_PARENT);
2206                 /* check hashes to determine do we need one lock or two */
2207                 if (mdd_name2hash(sname) != mdd_name2hash(tname))
2208                         tdlh = mdd_pdo_write_lock(env, mdd_tpobj, tname,
2209                                 MOR_TGT_PARENT);
2210                 else
2211                         tdlh = sdlh;
2212         } else if (rc == MDD_RN_SRCTGT) {
2213                 sdlh = mdd_pdo_write_lock(env, mdd_spobj, sname,MOR_SRC_PARENT);
2214                 tdlh = mdd_pdo_write_lock(env, mdd_tpobj, tname,MOR_TGT_PARENT);
2215         } else {
2216                 tdlh = mdd_pdo_write_lock(env, mdd_tpobj, tname,MOR_SRC_PARENT);
2217                 sdlh = mdd_pdo_write_lock(env, mdd_spobj, sname,MOR_TGT_PARENT);
2218         }
2219         if (sdlh == NULL || tdlh == NULL)
2220                 GOTO(cleanup, rc = -ENOMEM);
2221
2222         rc = mdd_la_get(env, mdd_sobj, so_attr,
2223                         mdd_object_capa(env, mdd_sobj));
2224         if (rc)
2225                 GOTO(cleanup, rc);
2226
2227         if (mdd_tobj) {
2228                 rc = mdd_la_get(env, mdd_tobj, tg_attr,
2229                                 mdd_object_capa(env, mdd_tobj));
2230                 if (rc)
2231                         GOTO(cleanup, rc);
2232         }
2233
2234         rc = mdd_rename_sanity_check(env, mdd_spobj, mdd_tpobj, mdd_sobj,
2235                                      mdd_tobj, so_attr, tg_attr);
2236         if (rc)
2237                 GOTO(cleanup, rc);
2238
2239         is_dir = S_ISDIR(so_attr->la_mode);
2240
2241         /* Remove source name from source directory */
2242         rc = __mdd_index_delete(env, mdd_spobj, sname, is_dir, handle,
2243                                 mdd_object_capa(env, mdd_spobj));
2244         if (rc)
2245                 GOTO(cleanup, rc);
2246
2247         /* "mv dir1 dir2" needs "dir1/.." link update */
2248         if (is_dir && mdd_sobj && !lu_fid_eq(spobj_fid, tpobj_fid)) {
2249                 rc = __mdd_index_delete_only(env, mdd_sobj, dotdot, handle,
2250                                         mdd_object_capa(env, mdd_sobj));
2251                 if (rc)
2252                         GOTO(fixup_spobj2, rc);
2253
2254                 rc = __mdd_index_insert_only(env, mdd_sobj, tpobj_fid, dotdot,
2255                                       handle, mdd_object_capa(env, mdd_sobj));
2256                 if (rc)
2257                         GOTO(fixup_spobj, rc);
2258         }
2259
2260         /* Remove target name from target directory
2261          * Here tobj can be remote one, so we do index_delete unconditionally
2262          * and -ENOENT is allowed.
2263          */
2264         rc = __mdd_index_delete(env, mdd_tpobj, tname, is_dir, handle,
2265                                 mdd_object_capa(env, mdd_tpobj));
2266         if (rc != 0) {
2267                 if (mdd_tobj) {
2268                         /* tname might been renamed to something else */
2269                         GOTO(fixup_spobj, rc);
2270                 }
2271                 if (rc != -ENOENT)
2272                         GOTO(fixup_spobj, rc);
2273         }
2274
2275         /* Insert new fid with target name into target dir */
2276         rc = __mdd_index_insert(env, mdd_tpobj, lf, tname, is_dir, handle,
2277                                 mdd_object_capa(env, mdd_tpobj));
2278         if (rc)
2279                 GOTO(fixup_tpobj, rc);
2280
2281         LASSERT(ma->ma_attr.la_valid & LA_CTIME);
2282         la->la_ctime = la->la_mtime = ma->ma_attr.la_ctime;
2283
2284         /* XXX: mdd_sobj must be local one if it is NOT NULL. */
2285         if (mdd_sobj) {
2286                 la->la_valid = LA_CTIME;
2287                 rc = mdd_attr_check_set_internal(env, mdd_sobj, la, handle, 0);
2288                 if (rc)
2289                         GOTO(fixup_tpobj, rc);
2290         }
2291
2292         /* Remove old target object
2293          * For tobj is remote case cmm layer has processed
2294          * and set tobj to NULL then. So when tobj is NOT NULL,
2295          * it must be local one.
2296          */
2297         if (tobj && mdd_object_exists(mdd_tobj)) {
2298                 mdd_write_lock(env, mdd_tobj, MOR_TGT_CHILD);
2299                 tobj_locked = 1;
2300                 if (mdd_is_dead_obj(mdd_tobj)) {
2301                         /* shld not be dead, something is wrong */
2302                         CERROR("tobj is dead, something is wrong\n");
2303                         rc = -EINVAL;
2304                         goto cleanup;
2305                 }
2306                 mdo_ref_del(env, mdd_tobj, handle);
2307
2308                 /* Remove dot reference. */
2309                 if (S_ISDIR(tg_attr->la_mode))
2310                         mdo_ref_del(env, mdd_tobj, handle);
2311                 tobj_ref = 1;
2312
2313                 /* fetch updated nlink */
2314                 rc = mdd_la_get(env, mdd_tobj, tg_attr,
2315                                 mdd_object_capa(env, mdd_tobj));
2316                 if (rc != 0) {
2317                         CERROR("%s: Failed to get nlink for tobj "
2318                                 DFID": rc = %d\n",
2319                                 mdd2obd_dev(mdd)->obd_name,
2320                                 PFID(tpobj_fid), rc);
2321                         GOTO(fixup_tpobj, rc);
2322                 }
2323
2324                 la->la_valid = LA_CTIME;
2325                 rc = mdd_attr_check_set_internal(env, mdd_tobj, la, handle, 0);
2326                 if (rc != 0) {
2327                         CERROR("%s: Failed to set ctime for tobj "
2328                                 DFID": rc = %d\n",
2329                                 mdd2obd_dev(mdd)->obd_name,
2330                                 PFID(tpobj_fid), rc);
2331                         GOTO(fixup_tpobj, rc);
2332                 }
2333
2334                 /* XXX: this transfer to ma will be removed with LOD/OSP */
2335                 ma->ma_attr = *tg_attr;
2336                 ma->ma_valid |= MA_INODE;
2337                 rc = mdd_finish_unlink(env, mdd_tobj, ma, handle);
2338                 if (rc != 0) {
2339                         CERROR("%s: Failed to unlink tobj "
2340                                 DFID": rc = %d\n",
2341                                 mdd2obd_dev(mdd)->obd_name,
2342                                 PFID(tpobj_fid), rc);
2343                         GOTO(fixup_tpobj, rc);
2344                 }
2345
2346                 /* fetch updated nlink */
2347                 rc = mdd_la_get(env, mdd_tobj, tg_attr,
2348                                 mdd_object_capa(env, mdd_tobj));
2349                 if (rc != 0) {
2350                         CERROR("%s: Failed to get nlink for tobj "
2351                                 DFID": rc = %d\n",
2352                                 mdd2obd_dev(mdd)->obd_name,
2353                                 PFID(tpobj_fid), rc);
2354                         GOTO(fixup_tpobj, rc);
2355                 }
2356                 /* XXX: this transfer to ma will be removed with LOD/OSP */
2357                 ma->ma_attr = *tg_attr;
2358                 ma->ma_valid |= MA_INODE;
2359
2360                 if (so_attr->la_nlink == 0)
2361                         cl_flags |= CLF_RENAME_LAST;
2362         }
2363
2364         la->la_valid = LA_CTIME | LA_MTIME;
2365         rc = mdd_attr_check_set_internal(env, mdd_spobj, la, handle, 0);
2366         if (rc)
2367                 GOTO(fixup_tpobj, rc);
2368
2369         if (mdd_spobj != mdd_tpobj) {
2370                 la->la_valid = LA_CTIME | LA_MTIME;
2371                 rc = mdd_attr_check_set_internal(env, mdd_tpobj, la,
2372                                                  handle, 0);
2373         }
2374
2375         if (rc == 0 && mdd_sobj) {
2376                 mdd_write_lock(env, mdd_sobj, MOR_SRC_CHILD);
2377                 rc = mdd_links_rename(env, mdd_sobj, mdo2fid(mdd_spobj), lsname,
2378                                       mdo2fid(mdd_tpobj), ltname, handle, 0, 0);
2379                 if (rc == -ENOENT)
2380                         /* Old files might not have EA entry */
2381                         mdd_links_add(env, mdd_sobj, mdo2fid(mdd_spobj),
2382                                       lsname, handle, 0);
2383                 mdd_write_unlock(env, mdd_sobj);
2384                 /* We don't fail the transaction if the link ea can't be
2385                    updated -- fid2path will use alternate lookup method. */
2386                 rc = 0;
2387         }
2388
2389         EXIT;
2390
2391 fixup_tpobj:
2392         if (rc) {
2393                 rc2 = __mdd_index_delete(env, mdd_tpobj, tname, is_dir, handle,
2394                                          BYPASS_CAPA);
2395                 if (rc2)
2396                         CWARN("tp obj fix error %d\n",rc2);
2397
2398                 if (mdd_tobj && mdd_object_exists(mdd_tobj) &&
2399                     !mdd_is_dead_obj(mdd_tobj)) {
2400                         if (tobj_ref) {
2401                                 mdo_ref_add(env, mdd_tobj, handle);
2402                                 if (is_dir)
2403                                         mdo_ref_add(env, mdd_tobj, handle);
2404                         }
2405
2406                         rc2 = __mdd_index_insert(env, mdd_tpobj,
2407                                          mdo2fid(mdd_tobj), tname,
2408                                          is_dir, handle,
2409                                          BYPASS_CAPA);
2410
2411                         if (rc2)
2412                                 CWARN("tp obj fix error %d\n",rc2);
2413                 }
2414         }
2415
2416 fixup_spobj:
2417         if (rc && is_dir && mdd_sobj) {
2418                 rc2 = __mdd_index_delete_only(env, mdd_sobj, dotdot, handle,
2419                                               BYPASS_CAPA);
2420
2421                 if (rc2)
2422                         CWARN("sp obj dotdot delete error %d\n",rc2);
2423
2424
2425                 rc2 = __mdd_index_insert_only(env, mdd_sobj, spobj_fid,
2426                                               dotdot, handle, BYPASS_CAPA);
2427                 if (rc2)
2428                         CWARN("sp obj dotdot insert error %d\n",rc2);
2429         }
2430
2431 fixup_spobj2:
2432         if (rc) {
2433                 rc2 = __mdd_index_insert(env, mdd_spobj,
2434                                          lf, sname, is_dir, handle, BYPASS_CAPA);
2435                 if (rc2)
2436                         CWARN("sp obj fix error %d\n",rc2);
2437         }
2438 cleanup:
2439         if (tobj_locked)
2440                 mdd_write_unlock(env, mdd_tobj);
2441         if (likely(tdlh) && sdlh != tdlh)
2442                 mdd_pdo_write_unlock(env, mdd_tpobj, tdlh);
2443         if (likely(sdlh))
2444                 mdd_pdo_write_unlock(env, mdd_spobj, sdlh);
2445 cleanup_unlocked:
2446         if (rc == 0)
2447                 rc = mdd_changelog_ext_ns_store(env, mdd, CL_RENAME, cl_flags,
2448                                                 mdd_tobj, tpobj_fid, lf,
2449                                                 spobj_fid, ltname, lsname,
2450                                                 handle);
2451
2452 stop:
2453         mdd_trans_stop(env, mdd, rc, handle);
2454 out_pending:
2455         mdd_object_put(env, mdd_sobj);
2456         return rc;
2457 }
2458
2459 int mdd_links_new(const struct lu_env *env, struct mdd_link_data *ldata)
2460 {
2461         ldata->ml_buf = mdd_buf_alloc(env, CFS_PAGE_SIZE);
2462         if (ldata->ml_buf->lb_buf == NULL)
2463                 return -ENOMEM;
2464         ldata->ml_leh = ldata->ml_buf->lb_buf;
2465         ldata->ml_leh->leh_magic = LINK_EA_MAGIC;
2466         ldata->ml_leh->leh_len = sizeof(struct link_ea_header);
2467         ldata->ml_leh->leh_reccount = 0;
2468         return 0;
2469 }
2470
2471 /** Read the link EA into a temp buffer.
2472  * Uses the mdd_thread_info::mti_big_buf since it is generally large.
2473  * A pointer to the buffer is stored in \a ldata::ml_buf.
2474  *
2475  * \retval 0 or error
2476  */
2477 int mdd_links_read(const struct lu_env *env, struct mdd_object *mdd_obj,
2478                    struct mdd_link_data *ldata)
2479 {
2480         struct lustre_capa *capa;
2481         struct link_ea_header *leh;
2482         int rc;
2483
2484         /* First try a small buf */
2485         LASSERT(env != NULL);
2486         ldata->ml_buf = mdd_buf_alloc(env, CFS_PAGE_SIZE);
2487         if (ldata->ml_buf->lb_buf == NULL)
2488                 return -ENOMEM;
2489
2490         if (!mdd_object_exists(mdd_obj))
2491                 return -ENODATA;
2492
2493         capa = mdd_object_capa(env, mdd_obj);
2494         rc = mdo_xattr_get(env, mdd_obj, ldata->ml_buf,
2495                            XATTR_NAME_LINK, capa);
2496         if (rc == -ERANGE) {
2497                 /* Buf was too small, figure out what we need. */
2498                 mdd_buf_put(ldata->ml_buf);
2499                 rc = mdo_xattr_get(env, mdd_obj, ldata->ml_buf,
2500                                    XATTR_NAME_LINK, capa);
2501                 if (rc < 0)
2502                         return rc;
2503                 ldata->ml_buf = mdd_buf_alloc(env, rc);
2504                 if (ldata->ml_buf->lb_buf == NULL)
2505                         return -ENOMEM;
2506                 rc = mdo_xattr_get(env, mdd_obj, ldata->ml_buf,
2507                                    XATTR_NAME_LINK, capa);
2508         }
2509         if (rc < 0)
2510                 return rc;
2511
2512         leh = ldata->ml_buf->lb_buf;
2513         if (leh->leh_magic == __swab32(LINK_EA_MAGIC)) {
2514                 leh->leh_magic = LINK_EA_MAGIC;
2515                 leh->leh_reccount = __swab32(leh->leh_reccount);
2516                 leh->leh_len = __swab64(leh->leh_len);
2517                 /* entries are swabbed by mdd_lee_unpack */
2518         }
2519         if (leh->leh_magic != LINK_EA_MAGIC)
2520                 return -EINVAL;
2521         if (leh->leh_reccount == 0)
2522                 return -ENODATA;
2523
2524         ldata->ml_leh = leh;
2525         return 0;
2526 }
2527
2528 /** Read the link EA into a temp buffer.
2529  * Uses the name_buf since it is generally large.
2530  * \retval IS_ERR err
2531  * \retval ptr to \a lu_buf (always \a mti_big_buf)
2532  */
2533 struct lu_buf *mdd_links_get(const struct lu_env *env,
2534                              struct mdd_object *mdd_obj)
2535 {
2536         struct mdd_link_data ldata = { 0 };
2537         int rc;
2538
2539         rc = mdd_links_read(env, mdd_obj, &ldata);
2540         return rc ? ERR_PTR(rc) : ldata.ml_buf;
2541 }
2542
2543 int mdd_links_write(const struct lu_env *env, struct mdd_object *mdd_obj,
2544                     struct mdd_link_data *ldata, struct thandle *handle)
2545 {
2546         const struct lu_buf *buf = mdd_buf_get_const(env, ldata->ml_buf->lb_buf,
2547                                                      ldata->ml_leh->leh_len);
2548         return mdo_xattr_set(env, mdd_obj, buf, XATTR_NAME_LINK, 0, handle,
2549                              mdd_object_capa(env, mdd_obj));
2550 }
2551
2552 /** Pack a link_ea_entry.
2553  * All elements are stored as chars to avoid alignment issues.
2554  * Numbers are always big-endian
2555  * \retval record length
2556  */
2557 static int mdd_lee_pack(struct link_ea_entry *lee, const struct lu_name *lname,
2558                         const struct lu_fid *pfid)
2559 {
2560         struct lu_fid   tmpfid;
2561         int             reclen;
2562
2563         fid_cpu_to_be(&tmpfid, pfid);
2564         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LINKEA_CRASH))
2565                 tmpfid.f_ver = ~0;
2566         memcpy(&lee->lee_parent_fid, &tmpfid, sizeof(tmpfid));
2567         memcpy(lee->lee_name, lname->ln_name, lname->ln_namelen);
2568         reclen = sizeof(struct link_ea_entry) + lname->ln_namelen;
2569
2570         lee->lee_reclen[0] = (reclen >> 8) & 0xff;
2571         lee->lee_reclen[1] = reclen & 0xff;
2572         return reclen;
2573 }
2574
2575 void mdd_lee_unpack(const struct link_ea_entry *lee, int *reclen,
2576                     struct lu_name *lname, struct lu_fid *pfid)
2577 {
2578         *reclen = (lee->lee_reclen[0] << 8) | lee->lee_reclen[1];
2579         memcpy(pfid, &lee->lee_parent_fid, sizeof(*pfid));
2580         fid_be_to_cpu(pfid, pfid);
2581         lname->ln_name = lee->lee_name;
2582         lname->ln_namelen = *reclen - sizeof(struct link_ea_entry);
2583 }
2584
2585 int mdd_declare_links_add(const struct lu_env *env,
2586                           struct mdd_object *mdd_obj,
2587                           struct thandle *handle)
2588 {
2589         int rc;
2590
2591         /* XXX: max size? */
2592         rc = mdo_declare_xattr_set(env, mdd_obj,
2593                              mdd_buf_get_const(env, NULL, 4096),
2594                              XATTR_NAME_LINK, 0, handle);
2595
2596         return rc;
2597 }
2598
2599 /** Add a record to the end of link ea buf */
2600 int mdd_links_add_buf(const struct lu_env *env, struct mdd_link_data *ldata,
2601                       const struct lu_name *lname, const struct lu_fid *pfid)
2602 {
2603         LASSERT(ldata->ml_leh != NULL);
2604
2605         if (lname == NULL || pfid == NULL)
2606                 return -EINVAL;
2607
2608         ldata->ml_reclen = lname->ln_namelen + sizeof(struct link_ea_entry);
2609         if (ldata->ml_leh->leh_len + ldata->ml_reclen >
2610             ldata->ml_buf->lb_len) {
2611                 if (mdd_buf_grow(env, ldata->ml_leh->leh_len +
2612                                  ldata->ml_reclen) < 0)
2613                         return -ENOMEM;
2614         }
2615
2616         ldata->ml_leh = ldata->ml_buf->lb_buf;
2617         ldata->ml_lee = ldata->ml_buf->lb_buf + ldata->ml_leh->leh_len;
2618         ldata->ml_reclen = mdd_lee_pack(ldata->ml_lee, lname, pfid);
2619         ldata->ml_leh->leh_len += ldata->ml_reclen;
2620         ldata->ml_leh->leh_reccount++;
2621         CDEBUG(D_INODE, "New link_ea name '%.*s' is added\n",
2622                lname->ln_namelen, lname->ln_name);
2623         return 0;
2624 }
2625
2626 /** Del the current record from the link ea buf */
2627 void mdd_links_del_buf(const struct lu_env *env, struct mdd_link_data *ldata,
2628                        const struct lu_name *lname)
2629 {
2630         LASSERT(ldata->ml_leh != NULL);
2631
2632         ldata->ml_leh->leh_reccount--;
2633         ldata->ml_leh->leh_len -= ldata->ml_reclen;
2634         memmove(ldata->ml_lee, (char *)ldata->ml_lee + ldata->ml_reclen,
2635                 (char *)ldata->ml_leh + ldata->ml_leh->leh_len -
2636                 (char *)ldata->ml_lee);
2637         CDEBUG(D_INODE, "Old link_ea name '%.*s' is removed\n",
2638                lname->ln_namelen, lname->ln_name);
2639
2640 }
2641
2642 /**
2643  * Check if such a link exists in linkEA.
2644  *
2645  * \param mdd_obj object being handled
2646  * \param pfid parent fid the link to be found for
2647  * \param lname name in the parent's directory entry pointing to this object
2648  * \param ldata link data the search to be done on
2649  *
2650  * \retval   0 success
2651  * \retval -ENOENT link does not exist
2652  * \retval -ve on error
2653  */
2654 int mdd_links_find(const struct lu_env *env, struct mdd_object *mdd_obj,
2655                    struct mdd_link_data *ldata, const struct lu_name *lname,
2656                    const struct lu_fid  *pfid)
2657 {
2658         struct lu_name *tmpname = &mdd_env_info(env)->mti_name2;
2659         struct lu_fid  *tmpfid = &mdd_env_info(env)->mti_fid;
2660         int count;
2661
2662         LASSERT(ldata->ml_leh != NULL);
2663
2664         /* link #0 */
2665         ldata->ml_lee = (struct link_ea_entry *)(ldata->ml_leh + 1);
2666
2667         for (count = 0; count < ldata->ml_leh->leh_reccount; count++) {
2668                 mdd_lee_unpack(ldata->ml_lee, &ldata->ml_reclen,
2669                                tmpname, tmpfid);
2670                 if (tmpname->ln_namelen == lname->ln_namelen &&
2671                     lu_fid_eq(tmpfid, pfid) &&
2672                     (strncmp(tmpname->ln_name, lname->ln_name,
2673                              tmpname->ln_namelen) == 0))
2674                         break;
2675                 ldata->ml_lee = (struct link_ea_entry *)((char *)ldata->ml_lee +
2676                                                          ldata->ml_reclen);
2677         }
2678
2679         if (count == ldata->ml_leh->leh_reccount) {
2680                 CDEBUG(D_INODE, "Old link_ea name '%.*s' not found\n",
2681                        lname->ln_namelen, lname->ln_name);
2682                 return -ENOENT;
2683         }
2684         return 0;
2685 }
2686
2687 static int __mdd_links_add(const struct lu_env *env,
2688                            struct mdd_object *mdd_obj,
2689                            struct mdd_link_data *ldata,
2690                            const struct lu_name *lname,
2691                            const struct lu_fid *pfid,
2692                            int first, int check)
2693 {
2694         int rc;
2695
2696         if (ldata->ml_leh == NULL) {
2697                 rc = first ? -ENODATA : mdd_links_read(env, mdd_obj, ldata);
2698                 if (rc) {
2699                         if (rc != -ENODATA)
2700                                 return rc;
2701                         rc = mdd_links_new(env, ldata);
2702                         if (rc)
2703                                 return rc;
2704                 }
2705         }
2706
2707         if (check) {
2708                 rc = mdd_links_find(env, mdd_obj, ldata, lname, pfid);
2709                 if (rc && rc != -ENOENT)
2710                         return rc;
2711                 if (rc == 0)
2712                         return -EEXIST;
2713         }
2714
2715         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LINKEA_MORE)) {
2716                 struct lu_fid *tfid = &mdd_env_info(env)->mti_fid2;
2717
2718                 *tfid = *pfid;
2719                 tfid->f_ver = ~0;
2720                 mdd_links_add_buf(env, ldata, lname, tfid);
2721         }
2722
2723         return mdd_links_add_buf(env, ldata, lname, pfid);
2724 }
2725
2726 static int __mdd_links_del(const struct lu_env *env,
2727                            struct mdd_object *mdd_obj,
2728                            struct mdd_link_data *ldata,
2729                            const struct lu_name *lname,
2730                            const struct lu_fid *pfid)
2731 {
2732         int rc;
2733
2734         if (ldata->ml_leh == NULL) {
2735                 rc = mdd_links_read(env, mdd_obj, ldata);
2736                 if (rc)
2737                         return rc;
2738         }
2739
2740         rc = mdd_links_find(env, mdd_obj, ldata, lname, pfid);
2741         if (rc)
2742                 return rc;
2743
2744         mdd_links_del_buf(env, ldata, lname);
2745         return 0;
2746 }
2747
2748 static int mdd_links_rename(const struct lu_env *env,
2749                             struct mdd_object *mdd_obj,
2750                             const struct lu_fid *oldpfid,
2751                             const struct lu_name *oldlname,
2752                             const struct lu_fid *newpfid,
2753                             const struct lu_name *newlname,
2754                             struct thandle *handle,
2755                             int first, int check)
2756 {
2757         struct mdd_link_data ldata = { 0 };
2758         int updated = 0;
2759         int rc2 = 0;
2760         int rc = 0;
2761         ENTRY;
2762
2763         if (OBD_FAIL_CHECK(OBD_FAIL_FID_IGIF))
2764                 return 0;
2765
2766         LASSERT(oldpfid != NULL || newpfid != NULL);
2767
2768         if (mdd_obj->mod_flags & DEAD_OBJ)
2769                 /* No more links, don't bother */
2770                 RETURN(0);
2771
2772         if (oldpfid != NULL) {
2773                 rc = __mdd_links_del(env, mdd_obj, &ldata,
2774                                      oldlname, oldpfid);
2775                 if (rc) {
2776                         if ((check == 0) ||
2777                             (rc != -ENODATA && rc != -ENOENT))
2778                                 GOTO(out, rc);
2779                         /* No changes done. */
2780                         rc = 0;
2781                 } else {
2782                         updated = 1;
2783                 }
2784         }
2785
2786         /* If renaming, add the new record */
2787         if (newpfid != NULL) {
2788                 /* even if the add fails, we still delete the out-of-date
2789                  * old link */
2790                 rc2 = __mdd_links_add(env, mdd_obj, &ldata,
2791                                       newlname, newpfid, first, check);
2792                 if (rc2 == -EEXIST)
2793                         rc2 = 0;
2794                 else if (rc2 == 0)
2795                         updated = 1;
2796         }
2797
2798         if (updated)
2799                 rc = mdd_links_write(env, mdd_obj, &ldata, handle);
2800         EXIT;
2801 out:
2802         if (rc == 0)
2803                 rc = rc2;
2804         if (rc) {
2805                 int error = 1;
2806                 if (rc == -EOVERFLOW || rc == - ENOENT)
2807                         error = 0;
2808                 if (oldpfid == NULL)
2809                         CDEBUG(error ? D_ERROR : D_OTHER,
2810                                "link_ea add '%.*s' failed %d "DFID"\n",
2811                                newlname->ln_namelen, newlname->ln_name,
2812                                rc, PFID(mdd_object_fid(mdd_obj)));
2813                 else if (newpfid == NULL)
2814                         CDEBUG(error ? D_ERROR : D_OTHER,
2815                                "link_ea del '%.*s' failed %d "DFID"\n",
2816                                oldlname->ln_namelen, oldlname->ln_name,
2817                                rc, PFID(mdd_object_fid(mdd_obj)));
2818                 else
2819                         CDEBUG(error ? D_ERROR : D_OTHER,
2820                                "link_ea rename '%.*s'->'%.*s' failed %d "
2821                                DFID"\n",
2822                                oldlname->ln_namelen, oldlname->ln_name,
2823                                newlname->ln_namelen, newlname->ln_name,
2824                                rc, PFID(mdd_object_fid(mdd_obj)));
2825         }
2826
2827         if (ldata.ml_buf && ldata.ml_buf->lb_len > OBD_ALLOC_BIG)
2828                 /* if we vmalloced a large buffer drop it */
2829                 mdd_buf_put(ldata.ml_buf);
2830
2831         return rc;
2832 }
2833
2834 static inline int mdd_links_add(const struct lu_env *env,
2835                                 struct mdd_object *mdd_obj,
2836                                 const struct lu_fid *pfid,
2837                                 const struct lu_name *lname,
2838                                 struct thandle *handle, int first)
2839 {
2840         return mdd_links_rename(env, mdd_obj, NULL, NULL,
2841                                 pfid, lname, handle, first, 0);
2842 }
2843
2844 static inline int mdd_links_del(const struct lu_env *env,
2845                                 struct mdd_object *mdd_obj,
2846                                 const struct lu_fid *pfid,
2847                                 const struct lu_name *lname,
2848                                 struct thandle *handle)
2849 {
2850         return mdd_links_rename(env, mdd_obj, pfid, lname,
2851                                 NULL, NULL, handle, 0, 0);
2852 }
2853
2854 const struct md_dir_operations mdd_dir_ops = {
2855         .mdo_is_subdir     = mdd_is_subdir,
2856         .mdo_lookup        = mdd_lookup,
2857         .mdo_create        = mdd_create,
2858         .mdo_rename        = mdd_rename,
2859         .mdo_link          = mdd_link,
2860         .mdo_unlink        = mdd_unlink,
2861         .mdo_create_data   = mdd_create_data,
2862 };