Whamcloud - gitweb
LU-15635 ldiskfs: Interface change fix server v5.10
[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(&init_user_ns, 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                 osd_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                         osd_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         rc = osd_get_lma(info, inode, dentry, &info->oti_ost_attrs);
730         if (rc == -ENODATA) {
731                 rc = osd_get_idif(info, inode, dentry, oi_fid);
732                 if (rc > 0 || rc == -ENODATA) {
733                         oi_fid = NULL;
734                         rc = 0;
735                 }
736         }
737         iput(inode);
738
739         if (rc != 0)
740                 GOTO(out, rc);
741
742         /*
743          * If the OST-object has neither FID-in-LMA nor FID-in-ff, it is
744          * either a crashed object or a uninitialized one. Replace it.
745          */
746         if (oi_fid != NULL && lu_fid_eq(fid, oi_fid)) {
747                 CERROR("%s: the FID "DFID" is used by two objects: "
748                        "%u/%u %u/%u\n", osd_name(osd), PFID(fid),
749                        oi_id->oii_ino, oi_id->oii_gen,
750                        id->oii_ino, id->oii_gen);
751                 GOTO(out, rc = -EEXIST);
752         }
753
754         if (fid_is_idif(fid) && oi_fid != NULL && fid_is_idif(oi_fid)) {
755                 __u32 idx1 = fid_idif_ost_idx(fid);
756                 __u32 idx2 = fid_idif_ost_idx(oi_fid);
757                 struct ost_id *ostid = &info->oti_ostid;
758                 struct lu_fid *tfid = &info->oti_fid3;
759
760                 LASSERTF(idx1 == 0 || idx1 == osd->od_index,
761                          "invalid given FID "DFID", not match the "
762                          "device index %u\n", PFID(fid), osd->od_index);
763
764                 if (idx1 != idx2) {
765                         if (idx1 == 0 && idx2 == osd->od_index) {
766                                 fid_to_ostid(fid, ostid);
767                                 ostid_to_fid(tfid, ostid, idx2);
768                                 if (lu_fid_eq(tfid, oi_fid)) {
769                                         CERROR("%s: the FID "DFID" is used by "
770                                                "two objects(2): %u/%u %u/%u\n",
771                                                osd_name(osd), PFID(fid),
772                                                oi_id->oii_ino, oi_id->oii_gen,
773                                                id->oii_ino, id->oii_gen);
774
775                                         GOTO(out, rc = -EEXIST);
776                                 }
777                         } else if (idx2 == 0 && idx1 == osd->od_index) {
778                                 fid_to_ostid(oi_fid, ostid);
779                                 ostid_to_fid(tfid, ostid, idx1);
780                                 if (lu_fid_eq(tfid, fid)) {
781                                         CERROR("%s: the FID "DFID" is used by "
782                                                "two objects(2): %u/%u %u/%u\n",
783                                                osd_name(osd), PFID(fid),
784                                                oi_id->oii_ino, oi_id->oii_gen,
785                                                id->oii_ino, id->oii_gen);
786
787                                         GOTO(out, rc = -EEXIST);
788                                 }
789                         }
790                 }
791         }
792
793 update:
794         /*
795          * There may be temporary inconsistency: On one hand, the new
796          * object may be referenced by multiple entries, which is out
797          * of our control unless we traverse the whole /O completely,
798          * which is non-flat order and inefficient, should be avoided;
799          * On the other hand, the old object may become orphan if it
800          * is still valid. Since it was referenced by an invalid entry,
801          * making it as invisible temporary may be not worse. OI scrub
802          * will process it later.
803          */
804         rc = ldiskfs_journal_get_write_access(th, bh);
805         if (rc != 0)
806                 GOTO(out, rc);
807
808         de->inode = cpu_to_le32(id->oii_ino);
809         rc = ldiskfs_handle_dirty_metadata(th, NULL, bh);
810
811         GOTO(out, rc);
812
813 out:
814         if (!IS_ERR(bh))
815                 brelse(bh);
816         inode_unlock(parent);
817         return rc;
818 }
819
820 int osd_obj_del_entry(struct osd_thread_info *info, struct osd_device *osd,
821                       struct dentry *dird, char *name, int namelen,
822                       handle_t *th)
823 {
824         struct ldiskfs_dir_entry_2 *de;
825         struct buffer_head *bh;
826         struct dentry *child;
827         struct inode *dir = dird->d_inode;
828         int rc;
829
830         ENTRY;
831
832         LASSERT(th != NULL);
833         LASSERT(th->h_transaction != NULL);
834
835         child = &info->oti_child_dentry;
836         child->d_name.hash = 0;
837         child->d_name.name = name;
838         child->d_name.len = namelen;
839         child->d_parent = dird;
840         child->d_inode = NULL;
841
842         dquot_initialize(dir);
843         inode_lock(dir);
844         bh = osd_ldiskfs_find_entry(dir, &child->d_name, &de, NULL, NULL);
845         if (IS_ERR(bh)) {
846                 rc = PTR_ERR(bh);
847         } else {
848                 rc = ldiskfs_delete_entry(th, dir, de, bh);
849                 brelse(bh);
850         }
851         inode_unlock(dir);
852
853         RETURN(rc);
854 }
855
856 static int osd_obj_add_entry(struct osd_thread_info *info,
857                              struct osd_device *osd,
858                              struct dentry *dir, char *name,
859                              const struct osd_inode_id *id,
860                              handle_t *th)
861 {
862         struct dentry *child;
863         struct inode *inode;
864         int rc;
865
866         ENTRY;
867
868         if (OBD_FAIL_CHECK(OBD_FAIL_OSD_COMPAT_NO_ENTRY))
869                 RETURN(0);
870
871         LASSERT(th != NULL);
872         LASSERT(th->h_transaction != NULL);
873
874         inode = info->oti_inode;
875         if (unlikely(inode == NULL)) {
876                 struct ldiskfs_inode_info *lii;
877
878                 OBD_ALLOC_PTR(lii);
879                 if (lii == NULL)
880                         RETURN(-ENOMEM);
881                 inode = info->oti_inode = &lii->vfs_inode;
882         }
883
884         inode->i_sb = osd_sb(osd);
885         osd_id_to_inode(inode, id);
886         inode->i_mode = S_IFREG; /* for type in ldiskfs dir entry */
887
888         child = &info->oti_child_dentry;
889         child->d_name.hash = 0;
890         child->d_name.name = name;
891         child->d_name.len = strlen(name);
892         child->d_parent = dir;
893         child->d_inode = inode;
894
895         if (OBD_FAIL_CHECK(OBD_FAIL_OSD_COMPAT_INVALID_ENTRY))
896                 inode->i_ino++;
897
898         dquot_initialize(dir->d_inode);
899         inode_lock(dir->d_inode);
900         rc = osd_ldiskfs_add_entry(info, osd, th, child, inode, NULL);
901         inode_unlock(dir->d_inode);
902
903         RETURN(rc);
904 }
905
906 /**
907  * Use %llu for legacy OST sequences, but use %llx for new
908  * sequences names, so that the O/{seq}/dN/{oid} more closely
909  * follows the DFID/PFID format. This makes it easier to map from
910  * debug messages to objects in the future, and the legacy space
911  * of FID_SEQ_OST_MDT0 will be unused in the future.
912  **/
913 static inline void osd_seq_name(char *seq_name, size_t name_size, u64 seq)
914 {
915         snprintf(seq_name, name_size,
916                  (fid_seq_is_rsvd(seq) ||
917                   fid_seq_is_mdt0(seq)) ? "%llu" : "%llx",
918                  fid_seq_is_idif(seq) ? 0 : seq);
919 }
920
921 /* external locking is required */
922 static int osd_seq_load_locked(struct osd_thread_info *info,
923                                struct osd_device *osd,
924                                struct osd_obj_seq *osd_seq)
925 {
926         struct osd_obj_map *map = osd->od_ost_map;
927         struct dentry *seq_dir;
928         int rc = 0;
929         int i;
930         char dir_name[32];
931
932         ENTRY;
933
934         if (osd_seq->oos_root != NULL)
935                 RETURN(0);
936
937         LASSERT(map);
938         LASSERT(map->om_root);
939
940         osd_seq_name(dir_name, sizeof(dir_name), osd_seq->oos_seq);
941
942         seq_dir = simple_mkdir(info->oti_env, osd, map->om_root, NULL, dir_name,
943                                LMAC_NOT_IN_OI | LMAC_FID_ON_OST, 0755, NULL);
944         if (IS_ERR(seq_dir))
945                 GOTO(out_err, rc = PTR_ERR(seq_dir));
946         else if (seq_dir->d_inode == NULL)
947                 GOTO(out_put, rc = -EFAULT);
948
949         osd_seq->oos_root = seq_dir;
950
951         LASSERT(osd_seq->oos_dirs == NULL);
952         OBD_ALLOC_PTR_ARRAY(osd_seq->oos_dirs, osd_seq->oos_subdir_count);
953         if (osd_seq->oos_dirs == NULL)
954                 GOTO(out_put, rc = -ENOMEM);
955
956         for (i = 0; i < osd_seq->oos_subdir_count; i++) {
957                 struct dentry   *dir;
958
959                 snprintf(dir_name, sizeof(dir_name), "d%u", i);
960                 dir = simple_mkdir(info->oti_env, osd, osd_seq->oos_root, NULL,
961                                    dir_name, LMAC_NOT_IN_OI | LMAC_FID_ON_OST,
962                                    0700, NULL);
963                 if (IS_ERR(dir)) {
964                         GOTO(out_free, rc = PTR_ERR(dir));
965                 } else if (dir->d_inode == NULL) {
966                         dput(dir);
967                         GOTO(out_free, rc = -EFAULT);
968                 }
969
970                 osd_seq->oos_dirs[i] = dir;
971         }
972
973         if (rc != 0) {
974 out_free:
975                 for (i = 0; i < osd_seq->oos_subdir_count; i++) {
976                         if (osd_seq->oos_dirs[i] != NULL)
977                                 dput(osd_seq->oos_dirs[i]);
978                 }
979                 OBD_FREE_PTR_ARRAY(osd_seq->oos_dirs,
980                                    osd_seq->oos_subdir_count);
981 out_put:
982                 dput(seq_dir);
983                 osd_seq->oos_root = NULL;
984         }
985 out_err:
986         RETURN(rc);
987 }
988
989 struct osd_obj_seq *osd_seq_load(struct osd_thread_info *info,
990                                  struct osd_device *osd, u64 seq)
991 {
992         struct osd_obj_map *map;
993         struct osd_obj_seq *osd_seq;
994         int rc = 0;
995
996         ENTRY;
997
998         map = osd->od_ost_map;
999         LASSERT(map);
1000         LASSERT(map->om_root);
1001
1002         osd_seq = osd_seq_find(map, seq);
1003         if (likely(osd_seq != NULL))
1004                 RETURN(osd_seq);
1005
1006         /* Serializing init process */
1007         mutex_lock(&map->om_dir_init_mutex);
1008
1009         /* Check whether the seq has been added */
1010         read_lock(&map->om_seq_list_lock);
1011         osd_seq = osd_seq_find_locked(map, seq);
1012         if (osd_seq != NULL) {
1013                 read_unlock(&map->om_seq_list_lock);
1014                 GOTO(cleanup, rc = 0);
1015         }
1016         read_unlock(&map->om_seq_list_lock);
1017
1018         OBD_ALLOC_PTR(osd_seq);
1019         if (osd_seq == NULL)
1020                 GOTO(cleanup, rc = -ENOMEM);
1021
1022         INIT_LIST_HEAD(&osd_seq->oos_seq_list);
1023         osd_seq->oos_seq = seq;
1024         /*
1025          * Init subdir count to be 32, but each seq can have
1026          * different subdir count
1027          */
1028         osd_seq->oos_subdir_count = map->om_subdir_count;
1029         rc = osd_seq_load_locked(info, osd, osd_seq);
1030         if (rc != 0)
1031                 GOTO(cleanup, rc);
1032
1033         write_lock(&map->om_seq_list_lock);
1034         list_add(&osd_seq->oos_seq_list, &map->om_seq_list);
1035         write_unlock(&map->om_seq_list_lock);
1036
1037 cleanup:
1038         mutex_unlock(&map->om_dir_init_mutex);
1039         if (rc != 0) {
1040                 if (osd_seq != NULL)
1041                         OBD_FREE_PTR(osd_seq);
1042                 RETURN(ERR_PTR(rc));
1043         }
1044
1045         RETURN(osd_seq);
1046 }
1047
1048 int osd_obj_map_lookup(struct osd_thread_info *info, struct osd_device *dev,
1049                        const struct lu_fid *fid, struct osd_inode_id *id)
1050 {
1051         struct osd_obj_map *map;
1052         struct osd_obj_seq *osd_seq;
1053         struct dentry *d_seq;
1054         struct dentry *child;
1055         struct ost_id *ostid = &info->oti_ostid;
1056         int dirn;
1057         char name[32];
1058         struct ldiskfs_dir_entry_2 *de;
1059         struct buffer_head *bh;
1060         struct inode *dir;
1061         struct inode *inode;
1062
1063         ENTRY;
1064
1065         /* on the very first lookup we find and open directories */
1066         map = dev->od_ost_map;
1067         LASSERT(map);
1068         LASSERT(map->om_root);
1069
1070         fid_to_ostid(fid, ostid);
1071         osd_seq = osd_seq_load(info, dev, ostid_seq(ostid));
1072         if (IS_ERR(osd_seq))
1073                 RETURN(PTR_ERR(osd_seq));
1074
1075         dirn = ostid_id(ostid) & (osd_seq->oos_subdir_count - 1);
1076         d_seq = osd_seq->oos_dirs[dirn];
1077         LASSERT(d_seq);
1078
1079         osd_oid_name(name, sizeof(name), fid, ostid_id(ostid));
1080
1081         child = &info->oti_child_dentry;
1082         child->d_parent = d_seq;
1083         child->d_name.hash = 0;
1084         child->d_name.name = name;
1085         /* XXX: we can use rc from sprintf() instead of strlen() */
1086         child->d_name.len = strlen(name);
1087
1088         dir = d_seq->d_inode;
1089         inode_lock(dir);
1090         bh = osd_ldiskfs_find_entry(dir, &child->d_name, &de, NULL, NULL);
1091         inode_unlock(dir);
1092
1093         if (IS_ERR(bh))
1094                 RETURN(PTR_ERR(bh));
1095
1096         osd_id_gen(id, le32_to_cpu(de->inode), OSD_OII_NOGEN);
1097         brelse(bh);
1098
1099         inode = osd_iget(info, dev, id);
1100         if (IS_ERR(inode)) {
1101                 int rc = PTR_ERR(inode);
1102
1103                 RETURN(rc == -ENOENT ? -ESTALE : rc);
1104         }
1105
1106         iput(inode);
1107         RETURN(0);
1108 }
1109
1110 int osd_obj_map_insert(struct osd_thread_info *info,
1111                        struct osd_device *osd,
1112                        const struct lu_fid *fid,
1113                        const struct osd_inode_id *id,
1114                        handle_t *th)
1115 {
1116         struct osd_obj_map *map;
1117         struct osd_obj_seq *osd_seq;
1118         struct dentry *d;
1119         struct ost_id *ostid = &info->oti_ostid;
1120         u64 oid;
1121         int dirn, rc = 0;
1122         char name[32];
1123
1124         ENTRY;
1125
1126         map = osd->od_ost_map;
1127         LASSERT(map);
1128
1129         /* map fid to seq:objid */
1130         fid_to_ostid(fid, ostid);
1131
1132         oid = ostid_id(ostid);
1133         osd_seq = osd_seq_load(info, osd, ostid_seq(ostid));
1134         if (IS_ERR(osd_seq))
1135                 RETURN(PTR_ERR(osd_seq));
1136
1137         dirn = oid & (osd_seq->oos_subdir_count - 1);
1138         d = osd_seq->oos_dirs[dirn];
1139         LASSERT(d);
1140
1141         osd_oid_name(name, sizeof(name), fid, oid);
1142
1143 again:
1144         rc = osd_obj_add_entry(info, osd, d, name, id, th);
1145         if (rc == -EEXIST) {
1146                 rc = osd_obj_update_entry(info, osd, d, name, fid, id, th);
1147                 if (unlikely(rc == -ENOENT))
1148                         goto again;
1149
1150                 if (unlikely(rc == 1))
1151                         RETURN(0);
1152         }
1153
1154         RETURN(rc);
1155 }
1156
1157 int osd_obj_map_delete(struct osd_thread_info *info, struct osd_device *osd,
1158                        const struct lu_fid *fid, handle_t *th)
1159 {
1160         struct osd_obj_map *map;
1161         struct osd_obj_seq *osd_seq;
1162         struct dentry *d;
1163         struct ost_id *ostid = &info->oti_ostid;
1164         int dirn, rc = 0;
1165         char name[32];
1166
1167         ENTRY;
1168
1169         map = osd->od_ost_map;
1170         LASSERT(map);
1171
1172         /* map fid to seq:objid */
1173         fid_to_ostid(fid, ostid);
1174
1175         osd_seq = osd_seq_load(info, osd, ostid_seq(ostid));
1176         if (IS_ERR(osd_seq))
1177                 GOTO(cleanup, rc = PTR_ERR(osd_seq));
1178
1179         dirn = ostid_id(ostid) & (osd_seq->oos_subdir_count - 1);
1180         d = osd_seq->oos_dirs[dirn];
1181         LASSERT(d);
1182
1183         osd_oid_name(name, sizeof(name), fid, ostid_id(ostid));
1184         rc = osd_obj_del_entry(info, osd, d, name, strlen(name), th);
1185 cleanup:
1186         RETURN(rc);
1187 }
1188
1189 int osd_obj_map_update(struct osd_thread_info *info,
1190                        struct osd_device *osd,
1191                        const struct lu_fid *fid,
1192                        const struct osd_inode_id *id,
1193                        handle_t *th)
1194 {
1195         struct osd_obj_seq *osd_seq;
1196         struct dentry *d;
1197         struct ost_id *ostid = &info->oti_ostid;
1198         int dirn, rc = 0;
1199         char name[32];
1200
1201         ENTRY;
1202
1203         fid_to_ostid(fid, ostid);
1204         osd_seq = osd_seq_load(info, osd, ostid_seq(ostid));
1205         if (IS_ERR(osd_seq))
1206                 RETURN(PTR_ERR(osd_seq));
1207
1208         dirn = ostid_id(ostid) & (osd_seq->oos_subdir_count - 1);
1209         d = osd_seq->oos_dirs[dirn];
1210         LASSERT(d);
1211
1212         osd_oid_name(name, sizeof(name), fid, ostid_id(ostid));
1213         rc = osd_obj_update_entry(info, osd, d, name, fid, id, th);
1214
1215         RETURN(rc);
1216 }
1217
1218 int osd_obj_map_recover(struct osd_thread_info *info,
1219                         struct osd_device *osd,
1220                         struct inode *src_parent,
1221                         struct dentry *src_child,
1222                         const struct lu_fid *fid)
1223 {
1224         struct osd_obj_seq *osd_seq;
1225         struct dentry *tgt_parent;
1226         struct dentry *tgt_child = &info->oti_child_dentry;
1227         struct inode *dir;
1228         struct inode *inode = src_child->d_inode;
1229         struct ost_id *ostid = &info->oti_ostid;
1230         handle_t *jh;
1231         struct ldiskfs_dir_entry_2 *de;
1232         struct buffer_head *bh;
1233         char name[32];
1234         int dirn;
1235         int rc = 0;
1236
1237         ENTRY;
1238
1239         if (fid_is_last_id(fid)) {
1240                 osd_seq = osd_seq_load(info, osd, fid_seq(fid));
1241                 if (IS_ERR(osd_seq))
1242                         RETURN(PTR_ERR(osd_seq));
1243
1244                 tgt_parent = osd_seq->oos_root;
1245                 tgt_child->d_name.name = "LAST_ID";
1246                 tgt_child->d_name.len = strlen("LAST_ID");
1247         } else {
1248                 fid_to_ostid(fid, ostid);
1249                 osd_seq = osd_seq_load(info, osd, ostid_seq(ostid));
1250                 if (IS_ERR(osd_seq))
1251                         RETURN(PTR_ERR(osd_seq));
1252
1253                 dirn = ostid_id(ostid) & (osd_seq->oos_subdir_count - 1);
1254                 tgt_parent = osd_seq->oos_dirs[dirn];
1255                 osd_oid_name(name, sizeof(name), fid, ostid_id(ostid));
1256                 tgt_child->d_name.name = name;
1257                 tgt_child->d_name.len = strlen(name);
1258         }
1259         LASSERT(tgt_parent != NULL);
1260
1261         dir = tgt_parent->d_inode;
1262         tgt_child->d_name.hash = 0;
1263         tgt_child->d_parent = tgt_parent;
1264         tgt_child->d_inode = inode;
1265
1266         /* The non-initialized src_child may be destroyed. */
1267         jh = osd_journal_start_sb(osd_sb(osd), LDISKFS_HT_MISC,
1268                                 osd_dto_credits_noquota[DTO_INDEX_DELETE] +
1269                                 osd_dto_credits_noquota[DTO_INDEX_INSERT] +
1270                                 osd_dto_credits_noquota[DTO_OBJECT_DELETE]);
1271         if (IS_ERR(jh))
1272                 RETURN(PTR_ERR(jh));
1273
1274         dquot_initialize(src_parent);
1275         dquot_initialize(dir);
1276
1277         inode_lock(dir);
1278         bh = osd_ldiskfs_find_entry(dir, &tgt_child->d_name, &de, NULL, NULL);
1279         if (!IS_ERR(bh)) {
1280                 /*
1281                  * XXX: If some other object occupied the same slot. And If such
1282                  *      inode is zero-sized and with SUID+SGID, then means it is
1283                  *      a new created one. Maybe we can remove it and insert the
1284                  *      original one back to the /O/<seq>/d<x>. But there are
1285                  *      something to be considered:
1286                  *
1287                  *      1) The OST-object under /lost+found has crashed LMA.
1288                  *         So it should not conflict with the current one.
1289                  *
1290                  *      2) There are race conditions that: someone may just want
1291                  *         to modify the current one. Even if the OI scrub takes
1292                  *         the object lock when remove the current one, it still
1293                  *         cause the modification to be lost becasue the target
1294                  *         has been removed when the RPC service thread waiting
1295                  *         for the lock.
1296                  *
1297                  *      So keep it there before we have suitable solution.
1298                  */
1299                 brelse(bh);
1300                 inode_unlock(dir);
1301                 ldiskfs_journal_stop(jh);
1302
1303                 rc = -EEXIST;
1304                 /* If the src object has never been modified, then remove it. */
1305                 if (inode->i_size == 0 && inode->i_mode & S_ISUID &&
1306                     inode->i_mode & S_ISGID) {
1307                         rc = vfs_unlink(&init_user_ns, src_parent, src_child);
1308                         if (unlikely(rc == -ENOENT))
1309                                 rc = 0;
1310                 }
1311                 if (rc)
1312                         RETURN(rc);
1313         }
1314
1315         bh = osd_ldiskfs_find_entry(src_parent, &src_child->d_name, &de,
1316                                     NULL, NULL);
1317         if (unlikely(IS_ERR(bh)))
1318                 GOTO(unlock, rc = PTR_ERR(bh));
1319
1320         rc = ldiskfs_delete_entry(jh, src_parent, de, bh);
1321         brelse(bh);
1322         if (rc != 0)
1323                 GOTO(unlock, rc);
1324
1325         rc = osd_ldiskfs_add_entry(info, osd, jh, tgt_child, inode, NULL);
1326
1327         GOTO(unlock, rc);
1328
1329 unlock:
1330         inode_unlock(dir);
1331         ldiskfs_journal_stop(jh);
1332         return rc;
1333 }
1334
1335 static struct dentry *
1336 osd_object_spec_find(struct osd_thread_info *info, struct osd_device *osd,
1337                      const struct lu_fid *fid, char **name)
1338 {
1339         struct dentry *root = ERR_PTR(-ENOENT);
1340
1341         if (fid_is_last_id(fid)) {
1342                 struct osd_obj_seq *osd_seq;
1343
1344                 /* on creation of LAST_ID we create O/<seq> hierarchy */
1345                 osd_seq = osd_seq_load(info, osd, fid_seq(fid));
1346                 if (IS_ERR(osd_seq))
1347                         RETURN((struct dentry *)osd_seq);
1348
1349                 *name = "LAST_ID";
1350                 root = osd_seq->oos_root;
1351         } else {
1352                 *name = osd_lf_fid2name(fid);
1353                 if (*name == NULL)
1354                         CWARN("UNKNOWN COMPAT FID "DFID"\n", PFID(fid));
1355                 else if ((*name)[0])
1356                         root = osd_sb(osd)->s_root;
1357         }
1358
1359         return root;
1360 }
1361
1362 int osd_obj_spec_update(struct osd_thread_info *info, struct osd_device *osd,
1363                         const struct lu_fid *fid, const struct osd_inode_id *id,
1364                         handle_t *th)
1365 {
1366         struct dentry *root;
1367         char *name = NULL;
1368         int rc;
1369
1370         ENTRY;
1371
1372         root = osd_object_spec_find(info, osd, fid, &name);
1373         if (!IS_ERR(root)) {
1374                 rc = osd_obj_update_entry(info, osd, root, name, fid, id, th);
1375         } else {
1376                 rc = PTR_ERR(root);
1377                 if (rc == -ENOENT)
1378                         rc = 1;
1379         }
1380
1381         RETURN(rc);
1382 }
1383
1384 int osd_obj_spec_insert(struct osd_thread_info *info, struct osd_device *osd,
1385                         const struct lu_fid *fid, const struct osd_inode_id *id,
1386                         handle_t *th)
1387 {
1388         struct dentry *root;
1389         char *name = NULL;
1390         int rc;
1391
1392         ENTRY;
1393
1394         root = osd_object_spec_find(info, osd, fid, &name);
1395         if (!IS_ERR(root)) {
1396                 rc = osd_obj_add_entry(info, osd, root, name, id, th);
1397         } else {
1398                 rc = PTR_ERR(root);
1399                 if (rc == -ENOENT)
1400                         rc = 0;
1401         }
1402
1403         RETURN(rc);
1404 }
1405
1406 int osd_obj_spec_lookup(struct osd_thread_info *info, struct osd_device *osd,
1407                         const struct lu_fid *fid, struct osd_inode_id *id,
1408                         enum oi_check_flags flags)
1409 {
1410         struct dentry *root;
1411         struct dentry *dentry;
1412         struct inode *inode;
1413         char *name = NULL;
1414         int rc = -ENOENT;
1415
1416         ENTRY;
1417
1418         if (fid_is_last_id(fid)) {
1419                 struct osd_obj_seq *osd_seq;
1420
1421                 osd_seq = osd_seq_load(info, osd, fid_seq(fid));
1422                 if (IS_ERR(osd_seq))
1423                         RETURN(PTR_ERR(osd_seq));
1424                 root = osd_seq->oos_root;
1425                 name = "LAST_ID";
1426         } else {
1427                 root = osd_sb(osd)->s_root;
1428                 name = osd_lf_fid2name(fid);
1429                 if (name == NULL || strlen(name) == 0)
1430                         RETURN(-ENOENT);
1431         }
1432
1433         dentry = osd_lookup_one_len_common(osd, name, root, strlen(name),
1434                                            flags);
1435         if (!IS_ERR(dentry)) {
1436                 inode = dentry->d_inode;
1437                 if (inode) {
1438                         if (is_bad_inode(inode)) {
1439                                 rc = -EIO;
1440                         } else {
1441                                 osd_id_gen(id, inode->i_ino,
1442                                            inode->i_generation);
1443                                 rc = 0;
1444                         }
1445                 }
1446                 /*
1447                  * if dentry is accessible after osd_compat_spec_insert it
1448                  * will still contain NULL inode, so don't keep it in cache
1449                  */
1450                 d_invalidate(dentry);
1451                 dput(dentry);
1452         }
1453
1454         RETURN(rc);
1455 }
1456
1457 #ifndef HAVE_BIO_INTEGRITY_ENABLED
1458 bool bio_integrity_enabled(struct bio *bio)
1459 {
1460         struct blk_integrity *bi = blk_get_integrity(bio_get_disk(bio));
1461
1462         if (bio_op(bio) != REQ_OP_READ && bio_op(bio) != REQ_OP_WRITE)
1463                 return false;
1464
1465         if (!bio_sectors(bio))
1466                 return false;
1467
1468          /* Already protected? */
1469         if (bio_integrity(bio))
1470                 return false;
1471
1472         if (bi == NULL)
1473                 return false;
1474
1475         if (bio_data_dir(bio) == READ && bi->profile->verify_fn != NULL &&
1476             (bi->flags & BLK_INTEGRITY_VERIFY))
1477                 return true;
1478
1479         if (bio_data_dir(bio) == WRITE && bi->profile->generate_fn != NULL &&
1480             (bi->flags & BLK_INTEGRITY_GENERATE))
1481                 return true;
1482
1483         return false;
1484 }
1485 #endif