Whamcloud - gitweb
8c956205baa03a7da43459bd670887e1cca65708
[fs/lustre-release.git] / lustre / osd-ldiskfs / osd_compat.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) 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  *
31  * lustre/osd/osd_compat.c
32  *
33  * on-disk structure for managing /O
34  *
35  * Author: Alex Zhuravlev <bzzz@whamcloud.com>
36  */
37
38 /* prerequisite for linux/xattr.h */
39 #include <linux/types.h>
40 /* prerequisite for linux/xattr.h */
41 #include <linux/fs.h>
42 /* XATTR_{REPLACE,CREATE} */
43 #include <linux/xattr.h>
44
45 /*
46  * struct OBD_{ALLOC,FREE}*()
47  * OBD_FAIL_CHECK
48  */
49 #include <obd_support.h>
50
51 #include "osd_internal.h"
52 #include "osd_oi.h"
53
54 static void osd_push_ctxt(const struct osd_device *dev,
55                           struct lvfs_run_ctxt *newctxt,
56                           struct lvfs_run_ctxt *save)
57 {
58         OBD_SET_CTXT_MAGIC(newctxt);
59         newctxt->pwdmnt = dev->od_mnt;
60         newctxt->pwd = dev->od_mnt->mnt_root;
61         newctxt->umask = current_umask();
62         newctxt->dt = NULL;
63
64         push_ctxt(save, newctxt);
65 }
66
67 struct dentry *osd_lookup_one_len_common(struct osd_device *dev,
68                                          const char *name,
69                                          struct dentry *base, int len,
70                                          enum oi_check_flags flags)
71 {
72         struct dentry *dchild;
73
74         /*
75          * We can't use inode_is_locked() directly since we can't know
76          * if the current thread context took the lock earlier or if
77          * another thread context took the lock. OI_LOCKED tells us
78          * if the current thread context has already taken the lock.
79          */
80         if (!(flags & OI_LOCKED)) {
81                 /* If another thread took this lock already we will
82                  * just have to wait until the other thread is done.
83                  */
84                 inode_lock(base->d_inode);
85                 dchild = lookup_one_len(name, base, len);
86                 inode_unlock(base->d_inode);
87         } else {
88                 /* This thread context already has taken the lock.
89                  * Other threads will have to wait until we are done.
90                  */
91                 dchild = lookup_one_len(name, base, len);
92         }
93         if (IS_ERR(dchild))
94                 return dchild;
95
96         if (dchild->d_inode && unlikely(is_bad_inode(dchild->d_inode))) {
97                 CERROR("%s: bad inode returned %lu/%u: rc = -ENOENT\n",
98                        osd_name(dev), dchild->d_inode->i_ino,
99                        dchild->d_inode->i_generation);
100                 dput(dchild);
101                 dchild = ERR_PTR(-ENOENT);
102         }
103
104         return dchild;
105 }
106
107 /**
108  * osd_lookup_one_len_unlocked
109  *
110  * @dev:        obd device we are searching
111  * @name:       pathname component to lookup
112  * @base:       base directory to lookup from
113  * @len:        maximum length @len should be interpreted to
114  *
115  * Unlike osd_lookup_one_len, this should be called without the parent
116  * i_mutex held, and will take the i_mutex itself.
117  */
118 struct dentry *osd_lookup_one_len_unlocked(struct osd_device *dev,
119                                            const char *name,
120                                            struct dentry *base, int len)
121 {
122         return osd_lookup_one_len_common(dev, name, base, len, ~OI_LOCKED);
123 }
124
125 /**
126  * osd_lookup_one_len - lookup single pathname component
127  *
128  * @dev:        obd device we are searching
129  * @name:       pathname component to lookup
130  * @base:       base directory to lookup from
131  * @len:        maximum length @len should be interpreted to
132  *
133  * The caller must hold inode lock
134  */
135 struct dentry *osd_lookup_one_len(struct osd_device *dev, const char *name,
136                                   struct dentry *base, int len)
137 {
138         return osd_lookup_one_len_common(dev, name, base, len, OI_LOCKED);
139 }
140
141 /* utility to make a directory */
142 static struct dentry *
143 simple_mkdir(const struct lu_env *env, struct osd_device *osd,
144              struct dentry *dir, const struct lu_fid *fid,
145              const char *name, __u32 compat, int mode, bool *created)
146 {
147         struct osd_thread_info *info = osd_oti_get(env);
148         struct lu_fid *tfid = &info->oti_fid3;
149         struct inode *inode;
150         struct dentry *dchild;
151         int err = 0;
152
153         ENTRY;
154
155         // ASSERT_KERNEL_CTXT("kernel doing mkdir outside kernel context\n");
156         CDEBUG(D_INODE, "creating directory %.*s\n", (int)strlen(name), name);
157         dchild = osd_lookup_one_len_unlocked(osd, name, dir, strlen(name));
158         if (IS_ERR(dchild))
159                 RETURN(dchild);
160
161         inode = dchild->d_inode;
162         if (inode) {
163                 struct lustre_mdt_attrs *lma = &info->oti_ost_attrs.loa_lma;
164                 int old_mode = inode->i_mode;
165
166                 if (created)
167                         *created = false;
168
169                 if (!S_ISDIR(old_mode)) {
170                         CERROR("found %s (%lu/%u) is mode %o\n", name,
171                                inode->i_ino, inode->i_generation, old_mode);
172                         GOTO(out_err, err = -ENOTDIR);
173                 }
174
175                 if (unlikely(osd->od_dt_dev.dd_rdonly))
176                         RETURN(dchild);
177
178                 /* Fixup directory permissions if necessary */
179                 if ((old_mode & S_IALLUGO) != (mode & S_IALLUGO)) {
180                         CDEBUG(D_CONFIG,
181                                "fixing permissions on %s from %o to %o\n",
182                                name, old_mode, mode);
183                         inode->i_mode = (mode & S_IALLUGO) |
184                                         (old_mode & ~S_IALLUGO);
185                         mark_inode_dirty(inode);
186                 }
187
188                 err = osd_get_lma(info, inode, &info->oti_obj_dentry,
189                                   &info->oti_ost_attrs);
190                 if (err == -ENODATA)
191                         goto set_fid;
192
193                 if (err)
194                         GOTO(out_err, err);
195
196                 if ((fid && !lu_fid_eq(fid, &lma->lma_self_fid)) ||
197                     lma->lma_compat != compat)
198                         goto set_fid;
199
200                 RETURN(dchild);
201         }
202
203         err = vfs_mkdir(dir->d_inode, dchild, mode);
204         if (err)
205                 GOTO(out_err, err);
206
207         inode = dchild->d_inode;
208         if (created)
209                 *created = true;
210
211 set_fid:
212         if (fid)
213                 *tfid = *fid;
214         else
215                 lu_igif_build(tfid, inode->i_ino, inode->i_generation);
216         err = osd_ea_fid_set(info, inode, tfid, compat, 0);
217         if (err)
218                 GOTO(out_err, err);
219
220         RETURN(dchild);
221
222 out_err:
223         dput(dchild);
224         return ERR_PTR(err);
225 }
226
227 static int osd_last_rcvd_subdir_count(struct osd_device *osd)
228 {
229         struct lr_server_data lsd;
230         struct dentry *dlast;
231         loff_t off;
232         int rc = 0;
233         int count = OBJ_SUBDIR_COUNT;
234
235         ENTRY;
236
237         dlast = osd_lookup_one_len_unlocked(osd, LAST_RCVD, osd_sb(osd)->s_root,
238                                             strlen(LAST_RCVD));
239         if (IS_ERR(dlast))
240                 return PTR_ERR(dlast);
241         else if (dlast->d_inode == NULL)
242                 goto out;
243
244         off = 0;
245         rc = osd_ldiskfs_read(dlast->d_inode, &lsd, sizeof(lsd), &off);
246         if (rc == sizeof(lsd)) {
247                 CDEBUG(D_INFO,
248                       "read last_rcvd header, uuid = %s, subdir count = %d\n",
249                       lsd.lsd_uuid, lsd.lsd_subdir_count);
250                 if (le16_to_cpu(lsd.lsd_subdir_count) > 0)
251                         count = le16_to_cpu(lsd.lsd_subdir_count);
252         } else if (rc != 0) {
253                 CERROR("Can't read last_rcvd file, rc = %d\n", rc);
254                 if (rc > 0)
255                         rc = -EFAULT;
256                 dput(dlast);
257                 return rc;
258         }
259 out:
260         dput(dlast);
261         LASSERT(count > 0);
262         return count;
263 }
264
265 static int osd_mdt_init(const struct lu_env *env, struct osd_device *dev)
266 {
267         struct lvfs_run_ctxt new;
268         struct lvfs_run_ctxt save;
269         struct dentry *parent;
270         struct osd_mdobj_map *omm;
271         struct dentry *d;
272         struct osd_thread_info *info = osd_oti_get(env);
273         struct lu_fid *fid = &info->oti_fid3;
274         int rc = 0;
275
276         ENTRY;
277
278         OBD_ALLOC_PTR(dev->od_mdt_map);
279         if (dev->od_mdt_map == NULL)
280                 RETURN(-ENOMEM);
281
282         omm = dev->od_mdt_map;
283
284         parent = osd_sb(dev)->s_root;
285         osd_push_ctxt(dev, &new, &save);
286
287         lu_local_obj_fid(fid, REMOTE_PARENT_DIR_OID);
288         d = simple_mkdir(env, dev, parent, fid, REMOTE_PARENT_DIR,
289                          LMAC_NOT_IN_OI, 0755, NULL);
290         if (IS_ERR(d))
291                 GOTO(cleanup, rc = PTR_ERR(d));
292
293         omm->omm_remote_parent = d;
294
295         GOTO(cleanup, rc = 0);
296
297 cleanup:
298         pop_ctxt(&save, &new);
299         if (rc) {
300                 if (omm->omm_remote_parent != NULL)
301                         dput(omm->omm_remote_parent);
302                 OBD_FREE_PTR(omm);
303                 dev->od_mdt_map = NULL;
304         }
305         return rc;
306 }
307
308 static void osd_mdt_fini(struct osd_device *osd)
309 {
310         struct osd_mdobj_map *omm = osd->od_mdt_map;
311
312         if (omm == NULL)
313                 return;
314
315         if (omm->omm_remote_parent)
316                 dput(omm->omm_remote_parent);
317
318         OBD_FREE_PTR(omm);
319         osd->od_ost_map = NULL;
320 }
321
322 int osd_add_to_remote_parent(const struct lu_env *env, struct osd_device *osd,
323                              struct osd_object *obj, struct osd_thandle *oh)
324 {
325         struct osd_mdobj_map *omm = osd->od_mdt_map;
326         struct osd_thread_info *oti = osd_oti_get(env);
327         struct lustre_mdt_attrs *lma = &oti->oti_ost_attrs.loa_lma;
328         char *name = oti->oti_name;
329         struct osd_thread_info *info = osd_oti_get(env);
330         struct dentry *dentry;
331         struct dentry *parent;
332         int rc;
333
334         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_NO_AGENTENT))
335                 RETURN(0);
336
337         /*
338          * Set REMOTE_PARENT in lma, so other process like unlink or lfsck
339          * can identify this object quickly
340          */
341         rc = osd_get_lma(oti, obj->oo_inode, &oti->oti_obj_dentry,
342                          &oti->oti_ost_attrs);
343         if (rc)
344                 RETURN(rc);
345
346         lma->lma_incompat |= LMAI_REMOTE_PARENT;
347         lustre_lma_swab(lma);
348         rc = __osd_xattr_set(oti, obj->oo_inode, XATTR_NAME_LMA, lma,
349                              sizeof(*lma), XATTR_REPLACE);
350         if (rc)
351                 RETURN(rc);
352
353         parent = omm->omm_remote_parent;
354         sprintf(name, DFID_NOBRACE, PFID(lu_object_fid(&obj->oo_dt.do_lu)));
355         dentry = osd_child_dentry_by_inode(env, parent->d_inode,
356                                            name, strlen(name));
357         inode_lock(parent->d_inode);
358         rc = osd_ldiskfs_add_entry(info, osd, oh->ot_handle, dentry,
359                                    obj->oo_inode, NULL);
360         if (!rc && S_ISDIR(obj->oo_inode->i_mode))
361                 ldiskfs_inc_count(oh->ot_handle, parent->d_inode);
362         else if (unlikely(rc == -EEXIST))
363                 rc = 0;
364         if (!rc)
365                 lu_object_set_agent_entry(&obj->oo_dt.do_lu);
366         CDEBUG(D_INODE, "%s: create agent entry for %s: rc = %d\n",
367                osd_name(osd), name, rc);
368         mark_inode_dirty(parent->d_inode);
369         inode_unlock(parent->d_inode);
370         RETURN(rc);
371 }
372
373 int osd_delete_from_remote_parent(const struct lu_env *env,
374                                   struct osd_device *osd,
375                                   struct osd_object *obj,
376                                   struct osd_thandle *oh, bool destroy)
377 {
378         struct osd_mdobj_map *omm = osd->od_mdt_map;
379         struct osd_thread_info *oti = osd_oti_get(env);
380         struct lustre_mdt_attrs *lma = &oti->oti_ost_attrs.loa_lma;
381         char *name = oti->oti_name;
382         struct dentry *dentry;
383         struct dentry *parent;
384         struct ldiskfs_dir_entry_2 *de;
385         struct buffer_head *bh;
386         int rc;
387
388         parent = omm->omm_remote_parent;
389         sprintf(name, DFID_NOBRACE, PFID(lu_object_fid(&obj->oo_dt.do_lu)));
390         dentry = osd_child_dentry_by_inode(env, parent->d_inode,
391                                            name, strlen(name));
392         inode_lock(parent->d_inode);
393         bh = osd_ldiskfs_find_entry(parent->d_inode, &dentry->d_name, &de,
394                                     NULL, NULL);
395         if (IS_ERR(bh)) {
396                 inode_unlock(parent->d_inode);
397                 rc = PTR_ERR(bh);
398                 if (unlikely(rc == -ENOENT))
399                         rc = 0;
400         } else {
401                 rc = ldiskfs_delete_entry(oh->ot_handle, parent->d_inode,
402                                           de, bh);
403                 if (!rc && S_ISDIR(obj->oo_inode->i_mode))
404                         ldiskfs_dec_count(oh->ot_handle, parent->d_inode);
405                 mark_inode_dirty(parent->d_inode);
406                 inode_unlock(parent->d_inode);
407                 brelse(bh);
408                 CDEBUG(D_INODE, "%s: remove agent entry for %s: rc = %d\n",
409                        osd_name(osd), name, rc);
410         }
411
412         if (destroy || rc) {
413                 if (!rc)
414                         lu_object_clear_agent_entry(&obj->oo_dt.do_lu);
415
416                 RETURN(rc);
417         }
418
419         rc = osd_get_lma(oti, obj->oo_inode, &oti->oti_obj_dentry,
420                          &oti->oti_ost_attrs);
421         if (rc)
422                 RETURN(rc);
423
424         /* Get rid of REMOTE_PARENT flag from incompat */
425         lma->lma_incompat &= ~LMAI_REMOTE_PARENT;
426         lustre_lma_swab(lma);
427         rc = __osd_xattr_set(oti, obj->oo_inode, XATTR_NAME_LMA, lma,
428                              sizeof(*lma), XATTR_REPLACE);
429         if (!rc)
430                 lu_object_clear_agent_entry(&obj->oo_dt.do_lu);
431         RETURN(rc);
432 }
433
434 int osd_lookup_in_remote_parent(struct osd_thread_info *oti,
435                                 struct osd_device *osd,
436                                 const struct lu_fid *fid,
437                                 struct osd_inode_id *id)
438 {
439         struct osd_mdobj_map *omm = osd->od_mdt_map;
440         char *name = oti->oti_name;
441         struct dentry *parent;
442         struct dentry *dentry;
443         struct ldiskfs_dir_entry_2 *de;
444         struct buffer_head *bh;
445         int rc;
446
447         ENTRY;
448
449         if (unlikely(osd->od_is_ost))
450                 RETURN(-ENOENT);
451
452         parent = omm->omm_remote_parent;
453         sprintf(name, DFID_NOBRACE, PFID(fid));
454         dentry = osd_child_dentry_by_inode(oti->oti_env, parent->d_inode,
455                                            name, strlen(name));
456         inode_lock(parent->d_inode);
457         bh = osd_ldiskfs_find_entry(parent->d_inode, &dentry->d_name, &de,
458                                     NULL, NULL);
459         if (IS_ERR(bh)) {
460                 rc = PTR_ERR(bh);
461         } else {
462                 struct inode *inode;
463
464                 osd_id_gen(id, le32_to_cpu(de->inode), OSD_OII_NOGEN);
465                 brelse(bh);
466                 inode = osd_iget(oti, osd, id);
467                 if (IS_ERR(inode)) {
468                         rc = PTR_ERR(inode);
469                         if (rc == -ESTALE)
470                                 rc = -ENOENT;
471                 } else {
472                         iput(inode);
473                         rc = 0;
474                 }
475         }
476         inode_unlock(parent->d_inode);
477         if (rc == 0)
478                 osd_add_oi_cache(oti, osd, id, fid);
479         RETURN(rc);
480 }
481
482 /*
483  * directory structure on legacy OST:
484  *
485  * O/<seq>/d0-31/<objid>
486  * O/<seq>/LAST_ID
487  * last_rcvd
488  * LAST_GROUP
489  * CONFIGS
490  *
491  */
492 static int osd_ost_init(const struct lu_env *env, struct osd_device *dev)
493 {
494         struct lvfs_run_ctxt new;
495         struct lvfs_run_ctxt save;
496         struct dentry *d;
497         int rc;
498         bool created = false;
499
500         ENTRY;
501
502         OBD_ALLOC_PTR(dev->od_ost_map);
503         if (dev->od_ost_map == NULL)
504                 RETURN(-ENOMEM);
505
506         /* to get subdir count from last_rcvd */
507         rc = osd_last_rcvd_subdir_count(dev);
508         if (rc < 0)
509                 GOTO(cleanup_alloc, rc);
510
511         dev->od_ost_map->om_subdir_count = rc;
512         INIT_LIST_HEAD(&dev->od_ost_map->om_seq_list);
513         rwlock_init(&dev->od_ost_map->om_seq_list_lock);
514         mutex_init(&dev->od_ost_map->om_dir_init_mutex);
515
516         osd_push_ctxt(dev, &new, &save);
517         d = simple_mkdir(env, dev, osd_sb(dev)->s_root, NULL, "O",
518                          LMAC_NOT_IN_OI | LMAC_FID_ON_OST, 0755, &created);
519         if (IS_ERR(d))
520                 GOTO(cleanup_ctxt, rc = PTR_ERR(d));
521
522         if (created)
523                 /* It is quite probably that the device is new formatted. */
524                 dev->od_maybe_new = 1;
525
526         dev->od_ost_map->om_root = d;
527
528         pop_ctxt(&save, &new);
529         RETURN(0);
530
531 cleanup_ctxt:
532         pop_ctxt(&save, &new);
533 cleanup_alloc:
534         OBD_FREE_PTR(dev->od_ost_map);
535         return rc;
536 }
537
538 static void osd_seq_free(struct osd_obj_seq *osd_seq)
539 {
540         int j;
541
542         if (osd_seq->oos_dirs) {
543                 for (j = 0; j < osd_seq->oos_subdir_count; j++) {
544                         if (osd_seq->oos_dirs[j])
545                                 dput(osd_seq->oos_dirs[j]);
546                 }
547                 OBD_FREE_PTR_ARRAY(osd_seq->oos_dirs,
548                                    osd_seq->oos_subdir_count);
549         }
550
551         if (osd_seq->oos_root)
552                 dput(osd_seq->oos_root);
553
554         OBD_FREE_PTR(osd_seq);
555 }
556
557 static void osd_ost_fini(struct osd_device *osd)
558 {
559         struct osd_obj_seq *osd_seq;
560         struct osd_obj_seq *tmp;
561         struct osd_obj_map *map = osd->od_ost_map;
562
563         ENTRY;
564
565         if (map == NULL)
566                 return;
567
568         write_lock(&map->om_seq_list_lock);
569         list_for_each_entry_safe(osd_seq, tmp, &map->om_seq_list,
570                                  oos_seq_list) {
571                 list_del_init(&osd_seq->oos_seq_list);
572                 write_unlock(&map->om_seq_list_lock);
573                 osd_seq_free(osd_seq);
574                 write_lock(&map->om_seq_list_lock);
575         }
576         write_unlock(&map->om_seq_list_lock);
577         if (map->om_root)
578                 dput(map->om_root);
579         OBD_FREE_PTR(map);
580         osd->od_ost_map = NULL;
581         EXIT;
582 }
583
584 static int osd_index_backup_dir_init(const struct lu_env *env,
585                                      struct osd_device *dev)
586 {
587         struct lu_fid *fid = &osd_oti_get(env)->oti_fid;
588         struct lvfs_run_ctxt new;
589         struct lvfs_run_ctxt save;
590         struct dentry *dentry;
591         int rc = 0;
592
593         ENTRY;
594
595         lu_local_obj_fid(fid, INDEX_BACKUP_OID);
596         osd_push_ctxt(dev, &new, &save);
597         dentry = simple_mkdir(env, dev, osd_sb(dev)->s_root, fid,
598                               INDEX_BACKUP_DIR, LMAC_NOT_IN_OI, 0755, NULL);
599         if (IS_ERR(dentry)) {
600                 rc = PTR_ERR(dentry);
601         } else {
602                 dev->od_index_backup_inode = igrab(dentry->d_inode);
603                 dput(dentry);
604         }
605         pop_ctxt(&save, &new);
606
607         RETURN(rc);
608 }
609
610 static void osd_index_backup_dir_fini(struct osd_device *dev)
611 {
612         iput(dev->od_index_backup_inode);
613         dev->od_index_backup_inode = NULL;
614 }
615
616 int osd_obj_map_init(const struct lu_env *env, struct osd_device *dev)
617 {
618         int rc;
619         bool mdt_init = false;
620
621         ENTRY;
622
623         rc = osd_ost_init(env, dev);
624         if (rc)
625                 RETURN(rc);
626
627         if (!dev->od_is_ost) {
628                 rc = osd_mdt_init(env, dev);
629                 if (rc) {
630                         osd_ost_fini(dev);
631                         RETURN(rc);
632                 }
633
634                 mdt_init = true;
635         }
636
637         rc = osd_index_backup_dir_init(env, dev);
638         if (rc) {
639                 osd_ost_fini(dev);
640                 if (mdt_init)
641                         osd_mdt_fini(dev);
642         }
643
644         RETURN(rc);
645 }
646
647 static struct osd_obj_seq *osd_seq_find_locked(struct osd_obj_map *map, u64 seq)
648 {
649         struct osd_obj_seq *osd_seq;
650
651         list_for_each_entry(osd_seq, &map->om_seq_list, oos_seq_list) {
652                 if (osd_seq->oos_seq == seq)
653                         return osd_seq;
654         }
655         return NULL;
656 }
657
658 static struct osd_obj_seq *osd_seq_find(struct osd_obj_map *map, u64 seq)
659 {
660         struct osd_obj_seq *osd_seq;
661
662         read_lock(&map->om_seq_list_lock);
663         osd_seq = osd_seq_find_locked(map, seq);
664         read_unlock(&map->om_seq_list_lock);
665         return osd_seq;
666 }
667
668 void osd_obj_map_fini(struct osd_device *dev)
669 {
670         osd_index_backup_dir_fini(dev);
671         osd_ost_fini(dev);
672         osd_mdt_fini(dev);
673 }
674
675 /**
676  * Update the specified OI mapping.
677  *
678  * \retval   1, changed nothing
679  * \retval   0, changed successfully
680  * \retval -ve, on error
681  */
682 static int osd_obj_update_entry(struct osd_thread_info *info,
683                                 struct osd_device *osd,
684                                 struct dentry *dir, const char *name,
685                                 const struct lu_fid *fid,
686                                 const struct osd_inode_id *id,
687                                 handle_t *th)
688 {
689         struct inode *parent = dir->d_inode;
690         struct dentry *child;
691         struct ldiskfs_dir_entry_2 *de;
692         struct buffer_head *bh;
693         struct inode *inode;
694         struct dentry *dentry = &info->oti_obj_dentry;
695         struct osd_inode_id *oi_id = &info->oti_id3;
696         struct lustre_mdt_attrs *lma = &info->oti_ost_attrs.loa_lma;
697         struct lu_fid *oi_fid = &lma->lma_self_fid;
698         int rc;
699
700         ENTRY;
701
702         LASSERT(th != NULL);
703         LASSERT(th->h_transaction != NULL);
704
705         child = &info->oti_child_dentry;
706         child->d_parent = dir;
707         child->d_name.hash = 0;
708         child->d_name.name = name;
709         child->d_name.len = strlen(name);
710
711         dquot_initialize(parent);
712         inode_lock(parent);
713         bh = osd_ldiskfs_find_entry(parent, &child->d_name, &de, NULL, NULL);
714         if (IS_ERR(bh))
715                 GOTO(out, rc = PTR_ERR(bh));
716
717         if (le32_to_cpu(de->inode) == id->oii_ino)
718                 GOTO(out, rc = 1);
719
720         osd_id_gen(oi_id, le32_to_cpu(de->inode), OSD_OII_NOGEN);
721         inode = osd_iget(info, osd, oi_id);
722         if (IS_ERR(inode)) {
723                 rc = PTR_ERR(inode);
724                 if (rc == -ENOENT || rc == -ESTALE)
725                         goto update;
726                 GOTO(out, rc);
727         }
728
729         /*
730          * The EA inode should NOT be in OI, old OI scrub may added
731          * such OI mapping by wrong, replace it.
732          */
733         if (unlikely(osd_is_ea_inode(inode))) {
734                 iput(inode);
735                 goto update;
736         }
737
738         rc = osd_get_lma(info, inode, dentry, &info->oti_ost_attrs);
739         if (rc == -ENODATA) {
740                 rc = osd_get_idif(info, inode, dentry, oi_fid);
741                 if (rc > 0 || rc == -ENODATA) {
742                         oi_fid = NULL;
743                         rc = 0;
744                 }
745         }
746         iput(inode);
747
748         if (rc != 0)
749                 GOTO(out, rc);
750
751         /*
752          * If the OST-object has neither FID-in-LMA nor FID-in-ff, it is
753          * either a crashed object or a uninitialized one. Replace it.
754          */
755         if (oi_fid != NULL && lu_fid_eq(fid, oi_fid)) {
756                 CERROR("%s: the FID "DFID" is used by two objects: "
757                        "%u/%u %u/%u\n", osd_name(osd), PFID(fid),
758                        oi_id->oii_ino, oi_id->oii_gen,
759                        id->oii_ino, id->oii_gen);
760                 GOTO(out, rc = -EEXIST);
761         }
762
763         if (fid_is_idif(fid) && oi_fid != NULL && fid_is_idif(oi_fid)) {
764                 __u32 idx1 = fid_idif_ost_idx(fid);
765                 __u32 idx2 = fid_idif_ost_idx(oi_fid);
766                 struct ost_id *ostid = &info->oti_ostid;
767                 struct lu_fid *tfid = &info->oti_fid3;
768
769                 LASSERTF(idx1 == 0 || idx1 == osd->od_index,
770                          "invalid given FID "DFID", not match the "
771                          "device index %u\n", PFID(fid), osd->od_index);
772
773                 if (idx1 != idx2) {
774                         if (idx1 == 0 && idx2 == osd->od_index) {
775                                 fid_to_ostid(fid, ostid);
776                                 ostid_to_fid(tfid, ostid, idx2);
777                                 if (lu_fid_eq(tfid, oi_fid)) {
778                                         CERROR("%s: the FID "DFID" is used by "
779                                                "two objects(2): %u/%u %u/%u\n",
780                                                osd_name(osd), PFID(fid),
781                                                oi_id->oii_ino, oi_id->oii_gen,
782                                                id->oii_ino, id->oii_gen);
783
784                                         GOTO(out, rc = -EEXIST);
785                                 }
786                         } else if (idx2 == 0 && idx1 == osd->od_index) {
787                                 fid_to_ostid(oi_fid, ostid);
788                                 ostid_to_fid(tfid, ostid, idx1);
789                                 if (lu_fid_eq(tfid, fid)) {
790                                         CERROR("%s: the FID "DFID" is used by "
791                                                "two objects(2): %u/%u %u/%u\n",
792                                                osd_name(osd), PFID(fid),
793                                                oi_id->oii_ino, oi_id->oii_gen,
794                                                id->oii_ino, id->oii_gen);
795
796                                         GOTO(out, rc = -EEXIST);
797                                 }
798                         }
799                 }
800         }
801
802 update:
803         /*
804          * There may be temporary inconsistency: On one hand, the new
805          * object may be referenced by multiple entries, which is out
806          * of our control unless we traverse the whole /O completely,
807          * which is non-flat order and inefficient, should be avoided;
808          * On the other hand, the old object may become orphan if it
809          * is still valid. Since it was referenced by an invalid entry,
810          * making it as invisible temporary may be not worse. OI scrub
811          * will process it later.
812          */
813         rc = ldiskfs_journal_get_write_access(th, bh);
814         if (rc != 0)
815                 GOTO(out, rc);
816
817         de->inode = cpu_to_le32(id->oii_ino);
818         rc = ldiskfs_handle_dirty_metadata(th, NULL, bh);
819
820         GOTO(out, rc);
821
822 out:
823         if (!IS_ERR(bh))
824                 brelse(bh);
825         inode_unlock(parent);
826         return rc;
827 }
828
829 static int osd_obj_del_entry(struct osd_thread_info *info,
830                              struct osd_device *osd,
831                              struct dentry *dird, char *name,
832                              handle_t *th)
833 {
834         struct ldiskfs_dir_entry_2 *de;
835         struct buffer_head *bh;
836         struct dentry *child;
837         struct inode *dir = dird->d_inode;
838         int rc;
839
840         ENTRY;
841
842         LASSERT(th != NULL);
843         LASSERT(th->h_transaction != NULL);
844
845         child = &info->oti_child_dentry;
846         child->d_name.hash = 0;
847         child->d_name.name = name;
848         child->d_name.len = strlen(name);
849         child->d_parent = dird;
850         child->d_inode = NULL;
851
852         dquot_initialize(dir);
853         inode_lock(dir);
854         bh = osd_ldiskfs_find_entry(dir, &child->d_name, &de, NULL, NULL);
855         if (IS_ERR(bh)) {
856                 rc = PTR_ERR(bh);
857         } else {
858                 rc = ldiskfs_delete_entry(th, dir, de, bh);
859                 brelse(bh);
860         }
861         inode_unlock(dir);
862
863         RETURN(rc);
864 }
865
866 static int osd_obj_add_entry(struct osd_thread_info *info,
867                              struct osd_device *osd,
868                              struct dentry *dir, char *name,
869                              const struct osd_inode_id *id,
870                              handle_t *th)
871 {
872         struct dentry *child;
873         struct inode *inode;
874         int rc;
875
876         ENTRY;
877
878         if (OBD_FAIL_CHECK(OBD_FAIL_OSD_COMPAT_NO_ENTRY))
879                 RETURN(0);
880
881         LASSERT(th != NULL);
882         LASSERT(th->h_transaction != NULL);
883
884         inode = info->oti_inode;
885         if (unlikely(inode == NULL)) {
886                 struct ldiskfs_inode_info *lii;
887
888                 OBD_ALLOC_PTR(lii);
889                 if (lii == NULL)
890                         RETURN(-ENOMEM);
891                 inode = info->oti_inode = &lii->vfs_inode;
892         }
893
894         inode->i_sb = osd_sb(osd);
895         osd_id_to_inode(inode, id);
896         inode->i_mode = S_IFREG; /* for type in ldiskfs dir entry */
897
898         child = &info->oti_child_dentry;
899         child->d_name.hash = 0;
900         child->d_name.name = name;
901         child->d_name.len = strlen(name);
902         child->d_parent = dir;
903         child->d_inode = inode;
904
905         if (OBD_FAIL_CHECK(OBD_FAIL_OSD_COMPAT_INVALID_ENTRY))
906                 inode->i_ino++;
907
908         dquot_initialize(dir->d_inode);
909         inode_lock(dir->d_inode);
910         rc = osd_ldiskfs_add_entry(info, osd, th, child, inode, NULL);
911         inode_unlock(dir->d_inode);
912
913         RETURN(rc);
914 }
915
916 /**
917  * Use %llu for legacy OST sequences, but use %llx for new
918  * sequences names, so that the O/{seq}/dN/{oid} more closely
919  * follows the DFID/PFID format. This makes it easier to map from
920  * debug messages to objects in the future, and the legacy space
921  * of FID_SEQ_OST_MDT0 will be unused in the future.
922  **/
923 static inline void osd_seq_name(char *seq_name, size_t name_size, u64 seq)
924 {
925         snprintf(seq_name, name_size,
926                  (fid_seq_is_rsvd(seq) ||
927                   fid_seq_is_mdt0(seq)) ? "%llu" : "%llx",
928                  fid_seq_is_idif(seq) ? 0 : seq);
929 }
930
931 static inline void osd_oid_name(char *name, size_t name_size,
932                                 const struct lu_fid *fid, u64 id)
933 {
934         snprintf(name, name_size,
935                  (fid_seq_is_rsvd(fid_seq(fid)) ||
936                   fid_seq_is_mdt0(fid_seq(fid)) ||
937                   fid_seq_is_idif(fid_seq(fid))) ? "%llu" : "%llx", id);
938 }
939
940 /* external locking is required */
941 static int osd_seq_load_locked(struct osd_thread_info *info,
942                                struct osd_device *osd,
943                                struct osd_obj_seq *osd_seq)
944 {
945         struct osd_obj_map *map = osd->od_ost_map;
946         struct dentry *seq_dir;
947         int rc = 0;
948         int i;
949         char dir_name[32];
950
951         ENTRY;
952
953         if (osd_seq->oos_root != NULL)
954                 RETURN(0);
955
956         LASSERT(map);
957         LASSERT(map->om_root);
958
959         osd_seq_name(dir_name, sizeof(dir_name), osd_seq->oos_seq);
960
961         seq_dir = simple_mkdir(info->oti_env, osd, map->om_root, NULL, dir_name,
962                                LMAC_NOT_IN_OI | LMAC_FID_ON_OST, 0755, NULL);
963         if (IS_ERR(seq_dir))
964                 GOTO(out_err, rc = PTR_ERR(seq_dir));
965         else if (seq_dir->d_inode == NULL)
966                 GOTO(out_put, rc = -EFAULT);
967
968         osd_seq->oos_root = seq_dir;
969
970         LASSERT(osd_seq->oos_dirs == NULL);
971         OBD_ALLOC_PTR_ARRAY(osd_seq->oos_dirs, osd_seq->oos_subdir_count);
972         if (osd_seq->oos_dirs == NULL)
973                 GOTO(out_put, rc = -ENOMEM);
974
975         for (i = 0; i < osd_seq->oos_subdir_count; i++) {
976                 struct dentry   *dir;
977
978                 snprintf(dir_name, sizeof(dir_name), "d%u", i);
979                 dir = simple_mkdir(info->oti_env, osd, osd_seq->oos_root, NULL,
980                                    dir_name, LMAC_NOT_IN_OI | LMAC_FID_ON_OST,
981                                    0700, NULL);
982                 if (IS_ERR(dir)) {
983                         GOTO(out_free, rc = PTR_ERR(dir));
984                 } else if (dir->d_inode == NULL) {
985                         dput(dir);
986                         GOTO(out_free, rc = -EFAULT);
987                 }
988
989                 osd_seq->oos_dirs[i] = dir;
990         }
991
992         if (rc != 0) {
993 out_free:
994                 for (i = 0; i < osd_seq->oos_subdir_count; i++) {
995                         if (osd_seq->oos_dirs[i] != NULL)
996                                 dput(osd_seq->oos_dirs[i]);
997                 }
998                 OBD_FREE_PTR_ARRAY(osd_seq->oos_dirs,
999                                    osd_seq->oos_subdir_count);
1000 out_put:
1001                 dput(seq_dir);
1002                 osd_seq->oos_root = NULL;
1003         }
1004 out_err:
1005         RETURN(rc);
1006 }
1007
1008 static struct osd_obj_seq *osd_seq_load(struct osd_thread_info *info,
1009                                         struct osd_device *osd, u64 seq)
1010 {
1011         struct osd_obj_map *map;
1012         struct osd_obj_seq *osd_seq;
1013         int rc = 0;
1014
1015         ENTRY;
1016
1017         map = osd->od_ost_map;
1018         LASSERT(map);
1019         LASSERT(map->om_root);
1020
1021         osd_seq = osd_seq_find(map, seq);
1022         if (likely(osd_seq != NULL))
1023                 RETURN(osd_seq);
1024
1025         /* Serializing init process */
1026         mutex_lock(&map->om_dir_init_mutex);
1027
1028         /* Check whether the seq has been added */
1029         read_lock(&map->om_seq_list_lock);
1030         osd_seq = osd_seq_find_locked(map, seq);
1031         if (osd_seq != NULL) {
1032                 read_unlock(&map->om_seq_list_lock);
1033                 GOTO(cleanup, rc = 0);
1034         }
1035         read_unlock(&map->om_seq_list_lock);
1036
1037         OBD_ALLOC_PTR(osd_seq);
1038         if (osd_seq == NULL)
1039                 GOTO(cleanup, rc = -ENOMEM);
1040
1041         INIT_LIST_HEAD(&osd_seq->oos_seq_list);
1042         osd_seq->oos_seq = seq;
1043         /*
1044          * Init subdir count to be 32, but each seq can have
1045          * different subdir count
1046          */
1047         osd_seq->oos_subdir_count = map->om_subdir_count;
1048         rc = osd_seq_load_locked(info, osd, osd_seq);
1049         if (rc != 0)
1050                 GOTO(cleanup, rc);
1051
1052         write_lock(&map->om_seq_list_lock);
1053         list_add(&osd_seq->oos_seq_list, &map->om_seq_list);
1054         write_unlock(&map->om_seq_list_lock);
1055
1056 cleanup:
1057         mutex_unlock(&map->om_dir_init_mutex);
1058         if (rc != 0) {
1059                 if (osd_seq != NULL)
1060                         OBD_FREE_PTR(osd_seq);
1061                 RETURN(ERR_PTR(rc));
1062         }
1063
1064         RETURN(osd_seq);
1065 }
1066
1067 int osd_obj_map_lookup(struct osd_thread_info *info, struct osd_device *dev,
1068                        const struct lu_fid *fid, struct osd_inode_id *id)
1069 {
1070         struct osd_obj_map *map;
1071         struct osd_obj_seq *osd_seq;
1072         struct dentry *d_seq;
1073         struct dentry *child;
1074         struct ost_id *ostid = &info->oti_ostid;
1075         int dirn;
1076         char name[32];
1077         struct ldiskfs_dir_entry_2 *de;
1078         struct buffer_head *bh;
1079         struct inode *dir;
1080         struct inode *inode;
1081
1082         ENTRY;
1083
1084         /* on the very first lookup we find and open directories */
1085         map = dev->od_ost_map;
1086         LASSERT(map);
1087         LASSERT(map->om_root);
1088
1089         fid_to_ostid(fid, ostid);
1090         osd_seq = osd_seq_load(info, dev, ostid_seq(ostid));
1091         if (IS_ERR(osd_seq))
1092                 RETURN(PTR_ERR(osd_seq));
1093
1094         dirn = ostid_id(ostid) & (osd_seq->oos_subdir_count - 1);
1095         d_seq = osd_seq->oos_dirs[dirn];
1096         LASSERT(d_seq);
1097
1098         osd_oid_name(name, sizeof(name), fid, ostid_id(ostid));
1099
1100         child = &info->oti_child_dentry;
1101         child->d_parent = d_seq;
1102         child->d_name.hash = 0;
1103         child->d_name.name = name;
1104         /* XXX: we can use rc from sprintf() instead of strlen() */
1105         child->d_name.len = strlen(name);
1106
1107         dir = d_seq->d_inode;
1108         inode_lock(dir);
1109         bh = osd_ldiskfs_find_entry(dir, &child->d_name, &de, NULL, NULL);
1110         inode_unlock(dir);
1111
1112         if (IS_ERR(bh))
1113                 RETURN(PTR_ERR(bh));
1114
1115         osd_id_gen(id, le32_to_cpu(de->inode), OSD_OII_NOGEN);
1116         brelse(bh);
1117
1118         inode = osd_iget(info, dev, id);
1119         if (IS_ERR(inode)) {
1120                 int rc = PTR_ERR(inode);
1121
1122                 RETURN(rc == -ENOENT ? -ESTALE : rc);
1123         }
1124
1125         iput(inode);
1126         RETURN(0);
1127 }
1128
1129 int osd_obj_map_insert(struct osd_thread_info *info,
1130                        struct osd_device *osd,
1131                        const struct lu_fid *fid,
1132                        const struct osd_inode_id *id,
1133                        handle_t *th)
1134 {
1135         struct osd_obj_map *map;
1136         struct osd_obj_seq *osd_seq;
1137         struct dentry *d;
1138         struct ost_id *ostid = &info->oti_ostid;
1139         u64 oid;
1140         int dirn, rc = 0;
1141         char name[32];
1142
1143         ENTRY;
1144
1145         map = osd->od_ost_map;
1146         LASSERT(map);
1147
1148         /* map fid to seq:objid */
1149         fid_to_ostid(fid, ostid);
1150
1151         oid = ostid_id(ostid);
1152         osd_seq = osd_seq_load(info, osd, ostid_seq(ostid));
1153         if (IS_ERR(osd_seq))
1154                 RETURN(PTR_ERR(osd_seq));
1155
1156         dirn = oid & (osd_seq->oos_subdir_count - 1);
1157         d = osd_seq->oos_dirs[dirn];
1158         LASSERT(d);
1159
1160         osd_oid_name(name, sizeof(name), fid, oid);
1161
1162 again:
1163         rc = osd_obj_add_entry(info, osd, d, name, id, th);
1164         if (rc == -EEXIST) {
1165                 rc = osd_obj_update_entry(info, osd, d, name, fid, id, th);
1166                 if (unlikely(rc == -ENOENT))
1167                         goto again;
1168
1169                 if (unlikely(rc == 1))
1170                         RETURN(0);
1171         }
1172
1173         RETURN(rc);
1174 }
1175
1176 int osd_obj_map_delete(struct osd_thread_info *info, struct osd_device *osd,
1177                        const struct lu_fid *fid, handle_t *th)
1178 {
1179         struct osd_obj_map *map;
1180         struct osd_obj_seq *osd_seq;
1181         struct dentry *d;
1182         struct ost_id *ostid = &info->oti_ostid;
1183         int dirn, rc = 0;
1184         char name[32];
1185
1186         ENTRY;
1187
1188         map = osd->od_ost_map;
1189         LASSERT(map);
1190
1191         /* map fid to seq:objid */
1192         fid_to_ostid(fid, ostid);
1193
1194         osd_seq = osd_seq_load(info, osd, ostid_seq(ostid));
1195         if (IS_ERR(osd_seq))
1196                 GOTO(cleanup, rc = PTR_ERR(osd_seq));
1197
1198         dirn = ostid_id(ostid) & (osd_seq->oos_subdir_count - 1);
1199         d = osd_seq->oos_dirs[dirn];
1200         LASSERT(d);
1201
1202         osd_oid_name(name, sizeof(name), fid, ostid_id(ostid));
1203         rc = osd_obj_del_entry(info, osd, d, name, th);
1204 cleanup:
1205         RETURN(rc);
1206 }
1207
1208 int osd_obj_map_update(struct osd_thread_info *info,
1209                        struct osd_device *osd,
1210                        const struct lu_fid *fid,
1211                        const struct osd_inode_id *id,
1212                        handle_t *th)
1213 {
1214         struct osd_obj_seq *osd_seq;
1215         struct dentry *d;
1216         struct ost_id *ostid = &info->oti_ostid;
1217         int dirn, rc = 0;
1218         char name[32];
1219
1220         ENTRY;
1221
1222         fid_to_ostid(fid, ostid);
1223         osd_seq = osd_seq_load(info, osd, ostid_seq(ostid));
1224         if (IS_ERR(osd_seq))
1225                 RETURN(PTR_ERR(osd_seq));
1226
1227         dirn = ostid_id(ostid) & (osd_seq->oos_subdir_count - 1);
1228         d = osd_seq->oos_dirs[dirn];
1229         LASSERT(d);
1230
1231         osd_oid_name(name, sizeof(name), fid, ostid_id(ostid));
1232         rc = osd_obj_update_entry(info, osd, d, name, fid, id, th);
1233
1234         RETURN(rc);
1235 }
1236
1237 int osd_obj_map_recover(struct osd_thread_info *info,
1238                         struct osd_device *osd,
1239                         struct inode *src_parent,
1240                         struct dentry *src_child,
1241                         const struct lu_fid *fid)
1242 {
1243         struct osd_obj_seq *osd_seq;
1244         struct dentry *tgt_parent;
1245         struct dentry *tgt_child = &info->oti_child_dentry;
1246         struct inode *dir;
1247         struct inode *inode = src_child->d_inode;
1248         struct ost_id *ostid = &info->oti_ostid;
1249         handle_t *jh;
1250         struct ldiskfs_dir_entry_2 *de;
1251         struct buffer_head *bh;
1252         char name[32];
1253         int dirn;
1254         int rc = 0;
1255
1256         ENTRY;
1257
1258         if (fid_is_last_id(fid)) {
1259                 osd_seq = osd_seq_load(info, osd, fid_seq(fid));
1260                 if (IS_ERR(osd_seq))
1261                         RETURN(PTR_ERR(osd_seq));
1262
1263                 tgt_parent = osd_seq->oos_root;
1264                 tgt_child->d_name.name = "LAST_ID";
1265                 tgt_child->d_name.len = strlen("LAST_ID");
1266         } else {
1267                 fid_to_ostid(fid, ostid);
1268                 osd_seq = osd_seq_load(info, osd, ostid_seq(ostid));
1269                 if (IS_ERR(osd_seq))
1270                         RETURN(PTR_ERR(osd_seq));
1271
1272                 dirn = ostid_id(ostid) & (osd_seq->oos_subdir_count - 1);
1273                 tgt_parent = osd_seq->oos_dirs[dirn];
1274                 osd_oid_name(name, sizeof(name), fid, ostid_id(ostid));
1275                 tgt_child->d_name.name = name;
1276                 tgt_child->d_name.len = strlen(name);
1277         }
1278         LASSERT(tgt_parent != NULL);
1279
1280         dir = tgt_parent->d_inode;
1281         tgt_child->d_name.hash = 0;
1282         tgt_child->d_parent = tgt_parent;
1283         tgt_child->d_inode = inode;
1284
1285         /* The non-initialized src_child may be destroyed. */
1286         jh = osd_journal_start_sb(osd_sb(osd), LDISKFS_HT_MISC,
1287                                 osd_dto_credits_noquota[DTO_INDEX_DELETE] +
1288                                 osd_dto_credits_noquota[DTO_INDEX_INSERT] +
1289                                 osd_dto_credits_noquota[DTO_OBJECT_DELETE]);
1290         if (IS_ERR(jh))
1291                 RETURN(PTR_ERR(jh));
1292
1293         dquot_initialize(src_parent);
1294         dquot_initialize(dir);
1295
1296         inode_lock(dir);
1297         bh = osd_ldiskfs_find_entry(dir, &tgt_child->d_name, &de, NULL, NULL);
1298         if (!IS_ERR(bh)) {
1299                 /*
1300                  * XXX: If some other object occupied the same slot. And If such
1301                  *      inode is zero-sized and with SUID+SGID, then means it is
1302                  *      a new created one. Maybe we can remove it and insert the
1303                  *      original one back to the /O/<seq>/d<x>. But there are
1304                  *      something to be considered:
1305                  *
1306                  *      1) The OST-object under /lost+found has crashed LMA.
1307                  *         So it should not conflict with the current one.
1308                  *
1309                  *      2) There are race conditions that: someone may just want
1310                  *         to modify the current one. Even if the OI scrub takes
1311                  *         the object lock when remove the current one, it still
1312                  *         cause the modification to be lost becasue the target
1313                  *         has been removed when the RPC service thread waiting
1314                  *         for the lock.
1315                  *
1316                  *      So keep it there before we have suitable solution.
1317                  */
1318                 brelse(bh);
1319                 inode_unlock(dir);
1320                 ldiskfs_journal_stop(jh);
1321
1322                 rc = -EEXIST;
1323                 /* If the src object has never been modified, then remove it. */
1324                 if (inode->i_size == 0 && inode->i_mode & S_ISUID &&
1325                     inode->i_mode & S_ISGID) {
1326                         rc = ll_vfs_unlink(src_parent, src_child);
1327                         if (unlikely(rc == -ENOENT))
1328                                 rc = 0;
1329                 }
1330                 if (rc)
1331                         RETURN(rc);
1332         }
1333
1334         bh = osd_ldiskfs_find_entry(src_parent, &src_child->d_name, &de,
1335                                     NULL, NULL);
1336         if (unlikely(IS_ERR(bh)))
1337                 GOTO(unlock, rc = PTR_ERR(bh));
1338
1339         rc = ldiskfs_delete_entry(jh, src_parent, de, bh);
1340         brelse(bh);
1341         if (rc != 0)
1342                 GOTO(unlock, rc);
1343
1344         rc = osd_ldiskfs_add_entry(info, osd, jh, tgt_child, inode, NULL);
1345
1346         GOTO(unlock, rc);
1347
1348 unlock:
1349         inode_unlock(dir);
1350         ldiskfs_journal_stop(jh);
1351         return rc;
1352 }
1353
1354 static struct dentry *
1355 osd_object_spec_find(struct osd_thread_info *info, struct osd_device *osd,
1356                      const struct lu_fid *fid, char **name)
1357 {
1358         struct dentry *root = ERR_PTR(-ENOENT);
1359
1360         if (fid_is_last_id(fid)) {
1361                 struct osd_obj_seq *osd_seq;
1362
1363                 /* on creation of LAST_ID we create O/<seq> hierarchy */
1364                 osd_seq = osd_seq_load(info, osd, fid_seq(fid));
1365                 if (IS_ERR(osd_seq))
1366                         RETURN((struct dentry *)osd_seq);
1367
1368                 *name = "LAST_ID";
1369                 root = osd_seq->oos_root;
1370         } else {
1371                 *name = osd_lf_fid2name(fid);
1372                 if (*name == NULL)
1373                         CWARN("UNKNOWN COMPAT FID "DFID"\n", PFID(fid));
1374                 else if ((*name)[0])
1375                         root = osd_sb(osd)->s_root;
1376         }
1377
1378         return root;
1379 }
1380
1381 int osd_obj_spec_update(struct osd_thread_info *info, struct osd_device *osd,
1382                         const struct lu_fid *fid, const struct osd_inode_id *id,
1383                         handle_t *th)
1384 {
1385         struct dentry *root;
1386         char *name = NULL;
1387         int rc;
1388
1389         ENTRY;
1390
1391         root = osd_object_spec_find(info, osd, fid, &name);
1392         if (!IS_ERR(root)) {
1393                 rc = osd_obj_update_entry(info, osd, root, name, fid, id, th);
1394         } else {
1395                 rc = PTR_ERR(root);
1396                 if (rc == -ENOENT)
1397                         rc = 1;
1398         }
1399
1400         RETURN(rc);
1401 }
1402
1403 int osd_obj_spec_insert(struct osd_thread_info *info, struct osd_device *osd,
1404                         const struct lu_fid *fid, const struct osd_inode_id *id,
1405                         handle_t *th)
1406 {
1407         struct dentry *root;
1408         char *name = NULL;
1409         int rc;
1410
1411         ENTRY;
1412
1413         root = osd_object_spec_find(info, osd, fid, &name);
1414         if (!IS_ERR(root)) {
1415                 rc = osd_obj_add_entry(info, osd, root, name, id, th);
1416         } else {
1417                 rc = PTR_ERR(root);
1418                 if (rc == -ENOENT)
1419                         rc = 0;
1420         }
1421
1422         RETURN(rc);
1423 }
1424
1425 int osd_obj_spec_lookup(struct osd_thread_info *info, struct osd_device *osd,
1426                         const struct lu_fid *fid, struct osd_inode_id *id,
1427                         enum oi_check_flags flags)
1428 {
1429         struct dentry *root;
1430         struct dentry *dentry;
1431         struct inode *inode;
1432         char *name = NULL;
1433         int rc = -ENOENT;
1434
1435         ENTRY;
1436
1437         if (fid_is_last_id(fid)) {
1438                 struct osd_obj_seq *osd_seq;
1439
1440                 osd_seq = osd_seq_load(info, osd, fid_seq(fid));
1441                 if (IS_ERR(osd_seq))
1442                         RETURN(PTR_ERR(osd_seq));
1443                 root = osd_seq->oos_root;
1444                 name = "LAST_ID";
1445         } else {
1446                 root = osd_sb(osd)->s_root;
1447                 name = osd_lf_fid2name(fid);
1448                 if (name == NULL || strlen(name) == 0)
1449                         RETURN(-ENOENT);
1450         }
1451
1452         dentry = osd_lookup_one_len_common(osd, name, root, strlen(name),
1453                                            flags);
1454         if (!IS_ERR(dentry)) {
1455                 inode = dentry->d_inode;
1456                 if (inode) {
1457                         if (is_bad_inode(inode)) {
1458                                 rc = -EIO;
1459                         } else {
1460                                 osd_id_gen(id, inode->i_ino,
1461                                            inode->i_generation);
1462                                 rc = 0;
1463                         }
1464                 }
1465                 /*
1466                  * if dentry is accessible after osd_compat_spec_insert it
1467                  * will still contain NULL inode, so don't keep it in cache
1468                  */
1469                 d_invalidate(dentry);
1470                 dput(dentry);
1471         }
1472
1473         RETURN(rc);
1474 }
1475
1476 #ifndef HAVE_BIO_INTEGRITY_ENABLED
1477 bool bio_integrity_enabled(struct bio *bio)
1478 {
1479         struct blk_integrity *bi = blk_get_integrity(bio_get_disk(bio));
1480
1481         if (bio_op(bio) != REQ_OP_READ && bio_op(bio) != REQ_OP_WRITE)
1482                 return false;
1483
1484         if (!bio_sectors(bio))
1485                 return false;
1486
1487          /* Already protected? */
1488         if (bio_integrity(bio))
1489                 return false;
1490
1491         if (bi == NULL)
1492                 return false;
1493
1494         if (bio_data_dir(bio) == READ && bi->profile->verify_fn != NULL &&
1495             (bi->flags & BLK_INTEGRITY_VERIFY))
1496                 return true;
1497
1498         if (bio_data_dir(bio) == WRITE && bi->profile->generate_fn != NULL &&
1499             (bi->flags & BLK_INTEGRITY_GENERATE))
1500                 return true;
1501
1502         return false;
1503 }
1504 #endif