Whamcloud - gitweb
f838e2317993ad0fd30f5eabfd93a742154956a4
[fs/lustre-release.git] / lustre / ofd / ofd_objects.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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2014, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lustre/ofd/ofd_objects.c
33  *
34  * This file contains OSD API methods related to OBD Filter Device (OFD)
35  * object operations.
36  *
37  * Author: Alex Zhuravlev <alexey.zhuravlev@intel.com>
38  * Author: Mikhail Pershin <mike.pershin@intel.com>
39  */
40
41 #define DEBUG_SUBSYSTEM S_FILTER
42
43 #include <dt_object.h>
44 #include <lustre/lustre_idl.h>
45 #include <lustre_lfsck.h>
46
47 #include "ofd_internal.h"
48
49 /**
50  * Get object version from disk and check it.
51  *
52  * This function checks object version from disk with
53  * ofd_thread_info::fti_pre_version filled from incoming RPC. This is part of
54  * VBR (Version-Based Recovery) and ensures that object has the same version
55  * upon replay as it has during original modification.
56  *
57  * \param[in]  info     execution thread OFD private data
58  * \param[in]  fo       OFD object
59  *
60  * \retval              0 if version matches
61  * \retval              -EOVERFLOW on version mismatch
62  */
63 static int ofd_version_get_check(struct ofd_thread_info *info,
64                                  struct ofd_object *fo)
65 {
66         dt_obj_version_t curr_version;
67
68         LASSERT(ofd_object_exists(fo));
69
70         if (info->fti_exp == NULL)
71                 RETURN(0);
72
73         curr_version = dt_version_get(info->fti_env, ofd_object_child(fo));
74         if ((__s64)curr_version == -EOPNOTSUPP)
75                 RETURN(0);
76         /* VBR: version is checked always because costs nothing */
77         if (info->fti_pre_version != 0 &&
78             info->fti_pre_version != curr_version) {
79                 CDEBUG(D_INODE, "Version mismatch %#llx != %#llx\n",
80                        info->fti_pre_version, curr_version);
81                 spin_lock(&info->fti_exp->exp_lock);
82                 info->fti_exp->exp_vbr_failed = 1;
83                 spin_unlock(&info->fti_exp->exp_lock);
84                 RETURN (-EOVERFLOW);
85         }
86         info->fti_pre_version = curr_version;
87         RETURN(0);
88 }
89
90 /**
91  * Get OFD object by FID.
92  *
93  * This function finds OFD slice of compound object with the given FID.
94  *
95  * \param[in] env       execution environment
96  * \param[in] ofd       OFD device
97  * \param[in] fid       FID of the object
98  *
99  * \retval              pointer to the found ofd_object
100  * \retval              ERR_PTR(errno) in case of error
101  */
102 struct ofd_object *ofd_object_find(const struct lu_env *env,
103                                    struct ofd_device *ofd,
104                                    const struct lu_fid *fid)
105 {
106         struct ofd_object *fo;
107         struct lu_object  *o;
108
109         ENTRY;
110
111         o = lu_object_find(env, &ofd->ofd_dt_dev.dd_lu_dev, fid, NULL);
112         if (likely(!IS_ERR(o)))
113                 fo = ofd_obj(o);
114         else
115                 fo = ERR_CAST(o); /* return error */
116
117         RETURN(fo);
118 }
119
120 /**
121  * Get FID of parent MDT object.
122  *
123  * This function reads extended attribute XATTR_NAME_FID of OFD object which
124  * contains the MDT parent object FID and saves it in ofd_object::ofo_ff.
125  *
126  * The filter_fid::ff_parent::f_ver field currently holds
127  * the OST-object index in the parent MDT-object's layout EA,
128  * not the actual FID::f_ver of the parent. We therefore access
129  * it via the macro f_stripe_idx.
130  *
131  * \param[in] env       execution environment
132  * \param[in] fo        OFD object
133  *
134  * \retval              0 if successful
135  * \retval              -ENODATA if there is no such xattr
136  * \retval              negative value on error
137  */
138 int ofd_object_ff_load(const struct lu_env *env, struct ofd_object *fo)
139 {
140         struct ofd_thread_info *info = ofd_info(env);
141         struct filter_fid *ff = &fo->ofo_ff;
142         struct lu_buf *buf = &info->fti_buf;
143         int rc = 0;
144
145         if (fid_is_sane(&ff->ff_parent))
146                 return 0;
147
148         buf->lb_buf = ff;
149         buf->lb_len = sizeof(*ff);
150         rc = dt_xattr_get(env, ofd_object_child(fo), buf, XATTR_NAME_FID);
151         if (rc < 0)
152                 return rc;
153
154         if (unlikely(rc < sizeof(struct lu_fid))) {
155                 fid_zero(&ff->ff_parent);
156
157                 return -ENODATA;
158         }
159
160         filter_fid_le_to_cpu(ff, ff, rc);
161
162         return 0;
163 }
164
165 /**
166  * Precreate the given number \a nr of objects in the given sequence \a oseq.
167  *
168  * This function precreates new OST objects in the given sequence.
169  * The precreation starts from \a id and creates \a nr objects sequentially.
170  *
171  * Notes:
172  * This function may create fewer objects than requested.
173  *
174  * We mark object SUID+SGID to flag it for accepting UID+GID from client on
175  * first write. Currently the permission bits on the OST are never used,
176  * so this is OK.
177  *
178  * Initialize a/c/m time so any client timestamp will always be newer and
179  * update the inode. The ctime = 0 case is also handled specially in
180  * osd_inode_setattr(). See LU-221, LU-1042 for details.
181  *
182  * \param[in] env       execution environment
183  * \param[in] ofd       OFD device
184  * \param[in] id        object ID to start precreation from
185  * \param[in] oseq      object sequence
186  * \param[in] nr        number of objects to precreate
187  * \param[in] sync      synchronous precreation flag
188  *
189  * \retval              0 if successful
190  * \retval              negative value on error
191  */
192 int ofd_precreate_objects(const struct lu_env *env, struct ofd_device *ofd,
193                           u64 id, struct ofd_seq *oseq, int nr, int sync)
194 {
195         struct ofd_thread_info  *info = ofd_info(env);
196         struct ofd_object       *fo = NULL;
197         struct dt_object        *next;
198         struct thandle          *th;
199         struct ofd_object       **batch;
200         struct lu_fid           *fid = &info->fti_fid;
201         u64                     tmp;
202         int                     rc;
203         int                     rc2;
204         int                     i;
205         int                     objects = 0;
206         int                     nr_saved = nr;
207
208         ENTRY;
209
210         /* Don't create objects beyond the valid range for this SEQ */
211         if (unlikely(fid_seq_is_mdt0(ostid_seq(&oseq->os_oi)) &&
212                      (id + nr) >= IDIF_MAX_OID)) {
213                 CERROR("%s:"DOSTID" hit the IDIF_MAX_OID (1<<48)!\n",
214                        ofd_name(ofd), id, ostid_seq(&oseq->os_oi));
215                 RETURN(rc = -ENOSPC);
216         } else if (unlikely(!fid_seq_is_mdt0(ostid_seq(&oseq->os_oi)) &&
217                             (id + nr) >= OBIF_MAX_OID)) {
218                 CERROR("%s:"DOSTID" hit the OBIF_MAX_OID (1<<32)!\n",
219                        ofd_name(ofd), id, ostid_seq(&oseq->os_oi));
220                 RETURN(rc = -ENOSPC);
221         }
222
223         OBD_ALLOC(batch, nr_saved * sizeof(struct ofd_object *));
224         if (batch == NULL)
225                 RETURN(-ENOMEM);
226
227         info->fti_attr.la_valid = LA_TYPE | LA_MODE;
228         info->fti_attr.la_mode = S_IFREG | S_ISUID | S_ISGID | 0666;
229         info->fti_dof.dof_type = dt_mode_to_dft(S_IFREG);
230
231         info->fti_attr.la_valid |= LA_ATIME | LA_MTIME | LA_CTIME;
232         info->fti_attr.la_atime = 0;
233         info->fti_attr.la_mtime = 0;
234         info->fti_attr.la_ctime = 0;
235
236         LASSERT(id != 0);
237
238         /* prepare objects */
239         *fid = *lu_object_fid(&oseq->os_lastid_obj->do_lu);
240         for (i = 0; i < nr; i++) {
241                 rc = fid_set_id(fid, id + i);
242                 if (rc != 0) {
243                         if (i == 0)
244                                 GOTO(out, rc);
245
246                         nr = i;
247                         break;
248                 }
249
250                 fo = ofd_object_find(env, ofd, fid);
251                 if (IS_ERR(fo)) {
252                         if (i == 0)
253                                 GOTO(out, rc = PTR_ERR(fo));
254
255                         nr = i;
256                         break;
257                 }
258
259                 ofd_write_lock(env, fo);
260                 batch[i] = fo;
261         }
262         info->fti_buf.lb_buf = &tmp;
263         info->fti_buf.lb_len = sizeof(tmp);
264         info->fti_off = 0;
265
266         th = ofd_trans_create(env, ofd);
267         if (IS_ERR(th))
268                 GOTO(out, rc = PTR_ERR(th));
269
270         th->th_sync |= sync;
271
272         rc = dt_declare_record_write(env, oseq->os_lastid_obj, &info->fti_buf,
273                                      info->fti_off, th);
274         if (rc)
275                 GOTO(trans_stop, rc);
276
277         for (i = 0; i < nr; i++) {
278                 fo = batch[i];
279                 LASSERT(fo);
280
281                 if (unlikely(ofd_object_exists(fo))) {
282                         /* object may exist being re-created by write replay */
283                         CDEBUG(D_INODE, "object %#llx/%#llx exists: "
284                                DFID"\n", ostid_seq(&oseq->os_oi), id,
285                                PFID(lu_object_fid(&fo->ofo_obj.do_lu)));
286                         continue;
287                 }
288
289                 next = ofd_object_child(fo);
290                 LASSERT(next != NULL);
291
292                 rc = dt_declare_create(env, next, &info->fti_attr, NULL,
293                                        &info->fti_dof, th);
294                 if (rc < 0) {
295                         if (i == 0)
296                                 GOTO(trans_stop, rc);
297
298                         nr = i;
299                         break;
300                 }
301         }
302
303         rc = dt_trans_start_local(env, ofd->ofd_osd, th);
304         if (rc)
305                 GOTO(trans_stop, rc);
306
307         CDEBUG(D_OTHER, "%s: create new object "DFID" nr %d\n",
308                ofd_name(ofd), PFID(fid), nr);
309
310          /* When the LFSCK scanning the whole device to verify the LAST_ID file
311           * consistency, it will load the last_id into RAM firstly, and compare
312           * the last_id with each OST-object's ID. If the later one is larger,
313           * then it will regard the LAST_ID file crashed. But during the LFSCK
314           * scanning, the OFD may continue to create new OST-objects. Those new
315           * created OST-objects will have larger IDs than the LFSCK known ones.
316           * So from the LFSCK view, it needs to re-load the last_id from disk
317           * file, and if the latest last_id is still smaller than the object's
318           * ID, then the LAST_ID file is real crashed.
319           *
320           * To make above mechanism to work, before OFD pre-create OST-objects,
321           * it needs to update the LAST_ID file firstly, otherwise, the LFSCK
322           * may cannot get latest last_id although new OST-object created. */
323         if (!OBD_FAIL_CHECK(OBD_FAIL_LFSCK_SKIP_LASTID)) {
324                 tmp = cpu_to_le64(id + nr - 1);
325                 dt_write_lock(env, oseq->os_lastid_obj, 0);
326                 rc = dt_record_write(env, oseq->os_lastid_obj,
327                                      &info->fti_buf, &info->fti_off, th);
328                 dt_write_unlock(env, oseq->os_lastid_obj);
329                 if (rc != 0)
330                         GOTO(trans_stop, rc);
331         }
332
333         for (i = 0; i < nr; i++) {
334                 fo = batch[i];
335                 LASSERT(fo);
336
337                 /* Only the new created objects need to be recorded. */
338                 if (ofd->ofd_osd->dd_record_fid_accessed) {
339                         struct lfsck_req_local *lrl = &ofd_info(env)->fti_lrl;
340
341                         lfsck_pack_rfa(lrl, lu_object_fid(&fo->ofo_obj.do_lu),
342                                        LEL_FID_ACCESSED, LFSCK_TYPE_LAYOUT);
343                         lfsck_in_notify_local(env, ofd->ofd_osd, lrl, NULL);
344                 }
345
346                 if (likely(!ofd_object_exists(fo) &&
347                            !OBD_FAIL_CHECK(OBD_FAIL_LFSCK_DANGLING))) {
348                         next = ofd_object_child(fo);
349                         LASSERT(next != NULL);
350
351                         rc = dt_create(env, next, &info->fti_attr, NULL,
352                                        &info->fti_dof, th);
353                         if (rc < 0) {
354                                 if (i == 0)
355                                         GOTO(trans_stop, rc);
356
357                                 rc = 0;
358                                 break;
359                         }
360                         LASSERT(ofd_object_exists(fo));
361                 }
362                 ofd_seq_last_oid_set(oseq, id + i);
363         }
364
365         objects = i;
366         /* NOT all the wanted objects have been created,
367          * set the LAST_ID as the real created. */
368         if (unlikely(objects < nr)) {
369                 int rc1;
370
371                 info->fti_off = 0;
372                 tmp = cpu_to_le64(ofd_seq_last_oid(oseq));
373                 dt_write_lock(env, oseq->os_lastid_obj, 0);
374                 rc1 = dt_record_write(env, oseq->os_lastid_obj,
375                                       &info->fti_buf, &info->fti_off, th);
376                 dt_write_unlock(env, oseq->os_lastid_obj);
377                 if (rc1 != 0)
378                         CERROR("%s: fail to reset the LAST_ID for seq (%#llx"
379                                ") from %llu to %llu\n", ofd_name(ofd),
380                                ostid_seq(&oseq->os_oi), id + nr - 1,
381                                ofd_seq_last_oid(oseq));
382         }
383
384 trans_stop:
385         rc2 = ofd_trans_stop(env, ofd, th, rc);
386         if (rc2)
387                 CERROR("%s: failed to stop transaction: rc = %d\n",
388                        ofd_name(ofd), rc2);
389         if (!rc)
390                 rc = rc2;
391 out:
392         for (i = 0; i < nr_saved; i++) {
393                 fo = batch[i];
394                 if (fo) {
395                         ofd_write_unlock(env, fo);
396                         ofd_object_put(env, fo);
397                 }
398         }
399         OBD_FREE(batch, nr_saved * sizeof(struct ofd_object *));
400
401         CDEBUG((objects == 0 && rc == 0) ? D_ERROR : D_OTHER,
402                "created %d/%d objects: %d\n", objects, nr_saved, rc);
403
404         LASSERT(ergo(objects == 0, rc < 0));
405         RETURN(objects > 0 ? objects : rc);
406 }
407
408 /**
409  * Fix the OFD object ownership.
410  *
411  * If the object still has SUID+SGID bits set, meaning that it was precreated
412  * by the MDT before it was assigned to any file, (see ofd_precreate_objects())
413  * then we will accept the UID+GID if sent by the client for initializing the
414  * ownership of this object.  We only allow this to happen once (so clear these
415  * bits) and later only allow setattr.
416  *
417  * \param[in] env        execution environment
418  * \param[in] fo         OFD object
419  * \param[in] la         object attributes
420  * \param[in] is_setattr was this function called from setattr or not
421  *
422  * \retval              0 if successful
423  * \retval              negative value on error
424  */
425 int ofd_attr_handle_ugid(const struct lu_env *env, struct ofd_object *fo,
426                          struct lu_attr *la, int is_setattr)
427 {
428         struct ofd_thread_info  *info = ofd_info(env);
429         struct lu_attr          *ln = &info->fti_attr2;
430         __u32                    mask = 0;
431         int                      rc;
432
433         ENTRY;
434
435         if (!(la->la_valid & LA_UID) && !(la->la_valid & LA_GID))
436                 RETURN(0);
437
438         rc = dt_attr_get(env, ofd_object_child(fo), ln);
439         if (rc != 0)
440                 RETURN(rc);
441
442         LASSERT(ln->la_valid & LA_MODE);
443
444         if (!is_setattr) {
445                 if (!(ln->la_mode & S_ISUID))
446                         la->la_valid &= ~LA_UID;
447                 if (!(ln->la_mode & S_ISGID))
448                         la->la_valid &= ~LA_GID;
449         }
450
451         if ((la->la_valid & LA_UID) && (ln->la_mode & S_ISUID))
452                 mask |= S_ISUID;
453         if ((la->la_valid & LA_GID) && (ln->la_mode & S_ISGID))
454                 mask |= S_ISGID;
455         if (mask != 0) {
456                 if (!(la->la_valid & LA_MODE) || !is_setattr) {
457                         la->la_mode = ln->la_mode;
458                         la->la_valid |= LA_MODE;
459                 }
460                 la->la_mode &= ~mask;
461         }
462
463         RETURN(0);
464 }
465
466 /**
467  * Set OFD object attributes.
468  *
469  * This function sets OFD object attributes taken from incoming request.
470  * It sets not only regular attributes but also XATTR_NAME_FID extended
471  * attribute if needed. The "fid" xattr allows the object's MDT parent inode
472  * to be found and verified by LFSCK and other tools in case of inconsistency.
473  *
474  * \param[in] env       execution environment
475  * \param[in] fo        OFD object
476  * \param[in] la        object attributes
477  * \param[in] ff        filter_fid structure, contains additional attributes
478  *
479  * \retval              0 if successful
480  * \retval              negative value on error
481  */
482 int ofd_attr_set(const struct lu_env *env, struct ofd_object *fo,
483                  struct lu_attr *la, struct filter_fid *ff)
484 {
485         struct ofd_thread_info  *info = ofd_info(env);
486         struct ofd_device       *ofd = ofd_obj2dev(fo);
487         struct thandle          *th;
488         struct ofd_mod_data     *fmd;
489         int                     ff_needed = 0;
490         int                     rc;
491         int                     rc2;
492         ENTRY;
493
494         ofd_write_lock(env, fo);
495         if (!ofd_object_exists(fo))
496                 GOTO(unlock, rc = -ENOENT);
497
498         if (la->la_valid & (LA_ATIME | LA_MTIME | LA_CTIME)) {
499                 fmd = ofd_fmd_get(info->fti_exp, &fo->ofo_header.loh_fid);
500                 if (fmd && fmd->fmd_mactime_xid < info->fti_xid)
501                         fmd->fmd_mactime_xid = info->fti_xid;
502                 ofd_fmd_put(info->fti_exp, fmd);
503         }
504
505         /* VBR: version recovery check */
506         rc = ofd_version_get_check(info, fo);
507         if (rc)
508                 GOTO(unlock, rc);
509
510         rc = ofd_attr_handle_ugid(env, fo, la, 1 /* is_setattr */);
511         if (rc != 0)
512                 GOTO(unlock, rc);
513
514         if (ff != NULL) {
515                 rc = ofd_object_ff_load(env, fo);
516                 if (rc == -ENODATA)
517                         ff_needed = 1;
518                 else if (rc < 0)
519                         GOTO(unlock, rc);
520         }
521
522         th = ofd_trans_create(env, ofd);
523         if (IS_ERR(th))
524                 GOTO(unlock, rc = PTR_ERR(th));
525
526         rc = dt_declare_attr_set(env, ofd_object_child(fo), la, th);
527         if (rc)
528                 GOTO(stop, rc);
529
530         if (ff_needed) {
531                 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_UNMATCHED_PAIR1))
532                         ff->ff_parent.f_oid = cpu_to_le32(1UL << 31);
533                 else if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_UNMATCHED_PAIR2))
534                         le32_add_cpu(&ff->ff_parent.f_oid, -1);
535
536                 info->fti_buf.lb_buf = ff;
537                 info->fti_buf.lb_len = sizeof(*ff);
538                 rc = dt_declare_xattr_set(env, ofd_object_child(fo),
539                                           &info->fti_buf, XATTR_NAME_FID, 0,
540                                           th);
541                 if (rc)
542                         GOTO(stop, rc);
543         }
544
545         rc = ofd_trans_start(env, ofd, la->la_valid & LA_SIZE ? fo : NULL, th);
546         if (rc)
547                 GOTO(stop, rc);
548
549         rc = dt_attr_set(env, ofd_object_child(fo), la, th);
550         if (rc)
551                 GOTO(stop, rc);
552
553         if (ff_needed) {
554                 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_NOPFID))
555                         GOTO(stop, rc);
556
557                 rc = dt_xattr_set(env, ofd_object_child(fo), &info->fti_buf,
558                                   XATTR_NAME_FID, 0, th);
559                 if (!rc)
560                         filter_fid_le_to_cpu(&fo->ofo_ff, ff, sizeof(*ff));
561         }
562
563         GOTO(stop, rc);
564
565 stop:
566         rc2 = ofd_trans_stop(env, ofd, th, rc);
567         if (rc2)
568                 CERROR("%s: failed to stop transaction: rc = %d\n",
569                        ofd_name(ofd), rc2);
570         if (!rc)
571                 rc = rc2;
572
573 unlock:
574         ofd_write_unlock(env, fo);
575
576         return rc;
577 }
578
579 /**
580  * Truncate/punch OFD object.
581  *
582  * This function frees all of the allocated object's space from the \a start
583  * offset to the \a end offset. For truncate() operations the \a end offset
584  * is OBD_OBJECT_EOF. The functionality to punch holes in an object via
585  * fallocate(FALLOC_FL_PUNCH_HOLE) is not yet implemented (see LU-3606).
586  *
587  * \param[in] env       execution environment
588  * \param[in] fo        OFD object
589  * \param[in] start     start offset to punch from
590  * \param[in] end       end of punch
591  * \param[in] la        object attributes
592  * \param[in] ff        filter_fid structure
593  * \param[in] oa        obdo struct from incoming request
594  *
595  * \retval              0 if successful
596  * \retval              negative value on error
597  */
598 int ofd_object_punch(const struct lu_env *env, struct ofd_object *fo,
599                      __u64 start, __u64 end, struct lu_attr *la,
600                      struct filter_fid *ff, struct obdo *oa)
601 {
602         struct ofd_thread_info  *info = ofd_info(env);
603         struct ofd_device       *ofd = ofd_obj2dev(fo);
604         struct ofd_mod_data     *fmd;
605         struct dt_object        *dob = ofd_object_child(fo);
606         struct thandle          *th;
607         int                     ff_needed = 0;
608         int                     rc;
609         int                     rc2;
610
611         ENTRY;
612
613         /* we support truncate, not punch yet */
614         LASSERT(end == OBD_OBJECT_EOF);
615
616         ofd_write_lock(env, fo);
617         fmd = ofd_fmd_get(info->fti_exp, &fo->ofo_header.loh_fid);
618         if (fmd && fmd->fmd_mactime_xid < info->fti_xid)
619                 fmd->fmd_mactime_xid = info->fti_xid;
620         ofd_fmd_put(info->fti_exp, fmd);
621
622         if (!ofd_object_exists(fo))
623                 GOTO(unlock, rc = -ENOENT);
624
625         if (ofd->ofd_lfsck_verify_pfid && oa->o_valid & OBD_MD_FLFID) {
626                 rc = ofd_verify_ff(env, fo, oa);
627                 if (rc != 0)
628                         GOTO(unlock, rc);
629         }
630
631         /* VBR: version recovery check */
632         rc = ofd_version_get_check(info, fo);
633         if (rc)
634                 GOTO(unlock, rc);
635
636         rc = ofd_attr_handle_ugid(env, fo, la, 0 /* !is_setattr */);
637         if (rc != 0)
638                 GOTO(unlock, rc);
639
640         if (ff != NULL) {
641                 rc = ofd_object_ff_load(env, fo);
642                 if (rc == -ENODATA)
643                         ff_needed = 1;
644                 else if (rc < 0)
645                         GOTO(unlock, rc);
646         }
647
648         th = ofd_trans_create(env, ofd);
649         if (IS_ERR(th))
650                 GOTO(unlock, rc = PTR_ERR(th));
651
652         rc = dt_declare_attr_set(env, dob, la, th);
653         if (rc)
654                 GOTO(stop, rc);
655
656         rc = dt_declare_punch(env, dob, start, OBD_OBJECT_EOF, th);
657         if (rc)
658                 GOTO(stop, rc);
659
660         if (ff_needed) {
661                 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_UNMATCHED_PAIR1))
662                         ff->ff_parent.f_oid = cpu_to_le32(1UL << 31);
663                 else if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_UNMATCHED_PAIR2))
664                         le32_add_cpu(&ff->ff_parent.f_oid, -1);
665
666                 info->fti_buf.lb_buf = ff;
667                 info->fti_buf.lb_len = sizeof(*ff);
668                 rc = dt_declare_xattr_set(env, ofd_object_child(fo),
669                                           &info->fti_buf, XATTR_NAME_FID, 0,
670                                           th);
671                 if (rc)
672                         GOTO(stop, rc);
673         }
674
675         rc = ofd_trans_start(env, ofd, fo, th);
676         if (rc)
677                 GOTO(stop, rc);
678
679         rc = dt_punch(env, dob, start, OBD_OBJECT_EOF, th);
680         if (rc)
681                 GOTO(stop, rc);
682
683         rc = dt_attr_set(env, dob, la, th);
684         if (rc)
685                 GOTO(stop, rc);
686
687         if (ff_needed) {
688                 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_NOPFID))
689                         GOTO(stop, rc);
690
691                 rc = dt_xattr_set(env, ofd_object_child(fo), &info->fti_buf,
692                                   XATTR_NAME_FID, 0, th);
693                 if (!rc)
694                         filter_fid_le_to_cpu(&fo->ofo_ff, ff, sizeof(*ff));
695         }
696
697         GOTO(stop, rc);
698
699 stop:
700         rc2 = ofd_trans_stop(env, ofd, th, rc);
701         if (rc2 != 0)
702                 CERROR("%s: failed to stop transaction: rc = %d\n",
703                        ofd_name(ofd), rc2);
704         if (!rc)
705                 rc = rc2;
706 unlock:
707         ofd_write_unlock(env, fo);
708
709         return rc;
710 }
711
712 /**
713  * Destroy OFD object.
714  *
715  * This function destroys OFD object. If object wasn't used at all (orphan)
716  * then local transaction is used, which means the transaction data is not
717  * returned back in reply.
718  *
719  * \param[in] env       execution environment
720  * \param[in] fo        OFD object
721  * \param[in] orphan    flag to indicate that object is orphaned
722  *
723  * \retval              0 if successful
724  * \retval              negative value on error
725  */
726 int ofd_object_destroy(const struct lu_env *env, struct ofd_object *fo,
727                        int orphan)
728 {
729         struct ofd_device       *ofd = ofd_obj2dev(fo);
730         struct thandle          *th;
731         int                     rc = 0;
732         int                     rc2;
733
734         ENTRY;
735
736         ofd_write_lock(env, fo);
737         if (!ofd_object_exists(fo))
738                 GOTO(unlock, rc = -ENOENT);
739
740         th = ofd_trans_create(env, ofd);
741         if (IS_ERR(th))
742                 GOTO(unlock, rc = PTR_ERR(th));
743
744         rc = dt_declare_ref_del(env, ofd_object_child(fo), th);
745         if (rc < 0)
746                 GOTO(stop, rc);
747
748         rc = dt_declare_destroy(env, ofd_object_child(fo), th);
749         if (rc < 0)
750                 GOTO(stop, rc);
751
752         if (orphan)
753                 rc = dt_trans_start_local(env, ofd->ofd_osd, th);
754         else
755                 rc = ofd_trans_start(env, ofd, NULL, th);
756         if (rc)
757                 GOTO(stop, rc);
758
759         ofd_fmd_drop(ofd_info(env)->fti_exp, &fo->ofo_header.loh_fid);
760
761         dt_ref_del(env, ofd_object_child(fo), th);
762         dt_destroy(env, ofd_object_child(fo), th);
763 stop:
764         rc2 = ofd_trans_stop(env, ofd, th, rc);
765         if (rc2)
766                 CERROR("%s failed to stop transaction: %d\n",
767                        ofd_name(ofd), rc2);
768         if (!rc)
769                 rc = rc2;
770 unlock:
771         ofd_write_unlock(env, fo);
772         RETURN(rc);
773 }
774
775 /**
776  * Get OFD object attributes.
777  *
778  * This function gets OFD object regular attributes. It is used to serve
779  * incoming request as well as for local OFD purposes.
780  *
781  * \param[in] env       execution environment
782  * \param[in] fo        OFD object
783  * \param[in] la        object attributes
784  *
785  * \retval              0 if successful
786  * \retval              negative value on error
787  */
788 int ofd_attr_get(const struct lu_env *env, struct ofd_object *fo,
789                  struct lu_attr *la)
790 {
791         int rc = 0;
792
793         ENTRY;
794
795         if (ofd_object_exists(fo)) {
796                 rc = dt_attr_get(env, ofd_object_child(fo), la);
797         } else {
798                 rc = -ENOENT;
799         }
800         RETURN(rc);
801 }