4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
16 * You should have received a copy of the GNU General Public License
17 * version 2 along with this program; If not, see
18 * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
20 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21 * CA 95054 USA or visit www.sun.com if you need additional information or
27 * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
28 * Use is subject to license terms.
30 * Copyright (c) 2012, 2013, Intel Corporation.
33 * This file is part of Lustre, http://www.lustre.org/
34 * Lustre is a trademark of Sun Microsystems, Inc.
36 * lustre/osd/osd_compat.c
38 * on-disk structure for managing /O
40 * Author: Alex Zhuravlev <bzzz@whamcloud.com>
43 /* LUSTRE_VERSION_CODE */
44 #include <lustre_ver.h>
45 /* prerequisite for linux/xattr.h */
46 #include <linux/types.h>
47 /* prerequisite for linux/xattr.h */
49 /* XATTR_{REPLACE,CREATE} */
50 #include <linux/xattr.h>
53 * struct OBD_{ALLOC,FREE}*()
56 #include <obd_support.h>
58 #include "osd_internal.h"
61 static void osd_push_ctxt(const struct osd_device *dev,
62 struct lvfs_run_ctxt *newctxt,
63 struct lvfs_run_ctxt *save)
65 OBD_SET_CTXT_MAGIC(newctxt);
66 newctxt->pwdmnt = dev->od_mnt;
67 newctxt->pwd = dev->od_mnt->mnt_root;
68 newctxt->fs = get_ds();
70 push_ctxt(save, newctxt);
73 /* utility to make a directory */
74 static struct dentry *simple_mkdir(struct dentry *dir, struct vfsmount *mnt,
75 const char *name, int mode, int fix)
77 struct dentry *dchild;
81 // ASSERT_KERNEL_CTXT("kernel doing mkdir outside kernel context\n");
82 CDEBUG(D_INODE, "creating directory %.*s\n", (int)strlen(name), name);
83 dchild = ll_lookup_one_len(name, dir, strlen(name));
87 if (dchild->d_inode) {
88 int old_mode = dchild->d_inode->i_mode;
89 if (!S_ISDIR(old_mode)) {
90 CERROR("found %s (%lu/%u) is mode %o\n", name,
91 dchild->d_inode->i_ino,
92 dchild->d_inode->i_generation, old_mode);
93 GOTO(out_err, err = -ENOTDIR);
96 /* Fixup directory permissions if necessary */
97 if (fix && (old_mode & S_IALLUGO) != (mode & S_IALLUGO)) {
99 "fixing permissions on %s from %o to %o\n",
100 name, old_mode, mode);
101 dchild->d_inode->i_mode = (mode & S_IALLUGO) |
102 (old_mode & ~S_IALLUGO);
103 mark_inode_dirty(dchild->d_inode);
105 GOTO(out_up, dchild);
108 err = vfs_mkdir(dir->d_inode, dchild, mode);
116 dchild = ERR_PTR(err);
121 int osd_last_rcvd_subdir_count(struct osd_device *osd)
123 struct lr_server_data lsd;
124 struct dentry *dlast;
127 int count = OBJ_SUBDIR_COUNT;
131 dlast = ll_lookup_one_len(LAST_RCVD, osd_sb(osd)->s_root,
134 return PTR_ERR(dlast);
135 else if (dlast->d_inode == NULL)
139 rc = osd_ldiskfs_read(dlast->d_inode, &lsd, sizeof(lsd), &off);
140 if (rc == sizeof(lsd)) {
141 CDEBUG(D_INFO, "read last_rcvd header, uuid = %s, "
142 "subdir count = %d\n", lsd.lsd_uuid,
143 lsd.lsd_subdir_count);
144 if (le16_to_cpu(lsd.lsd_subdir_count) > 0)
145 count = le16_to_cpu(lsd.lsd_subdir_count);
146 } else if (rc != 0) {
147 CERROR("Can't read last_rcvd file, rc = %d\n", rc);
159 static const char remote_parent_dir[] = "REMOTE_PARENT_DIR";
160 static int osd_mdt_init(const struct lu_env *env, struct osd_device *dev)
162 struct lvfs_run_ctxt new;
163 struct lvfs_run_ctxt save;
164 struct dentry *parent;
165 struct osd_mdobj_map *omm;
167 struct osd_thread_info *info = osd_oti_get(env);
168 struct lu_fid *fid = &info->oti_fid3;
172 OBD_ALLOC_PTR(dev->od_mdt_map);
173 if (dev->od_mdt_map == NULL)
176 omm = dev->od_mdt_map;
178 parent = osd_sb(dev)->s_root;
179 osd_push_ctxt(dev, &new, &save);
181 d = simple_mkdir(parent, dev->od_mnt, remote_parent_dir,
184 GOTO(cleanup, rc = PTR_ERR(d));
186 ldiskfs_set_inode_state(d->d_inode, LDISKFS_STATE_LUSTRE_NO_OI);
187 omm->omm_remote_parent = d;
189 /* Set LMA for remote parent inode */
190 lu_local_obj_fid(fid, REMOTE_PARENT_DIR_OID);
191 rc = osd_ea_fid_set(info, d->d_inode, fid, LMAC_NOT_IN_OI, 0);
196 pop_ctxt(&save, &new);
198 if (omm->omm_remote_parent != NULL)
199 dput(omm->omm_remote_parent);
201 dev->od_mdt_map = NULL;
206 static void osd_mdt_fini(struct osd_device *osd)
208 struct osd_mdobj_map *omm = osd->od_mdt_map;
213 if (omm->omm_remote_parent)
214 dput(omm->omm_remote_parent);
217 osd->od_ost_map = NULL;
220 int osd_add_to_remote_parent(const struct lu_env *env, struct osd_device *osd,
221 struct osd_object *obj, struct osd_thandle *oh)
223 struct osd_mdobj_map *omm = osd->od_mdt_map;
224 struct osd_thread_info *oti = osd_oti_get(env);
225 struct lustre_mdt_attrs *lma = &oti->oti_mdt_attrs;
226 char *name = oti->oti_name;
227 struct dentry *dentry;
228 struct dentry *parent;
231 /* Set REMOTE_PARENT in lma, so other process like unlink or lfsck
232 * can identify this object quickly */
233 rc = osd_get_lma(oti, obj->oo_inode, &oti->oti_obj_dentry, lma);
237 lma->lma_incompat |= LMAI_REMOTE_PARENT;
238 lustre_lma_swab(lma);
239 rc = __osd_xattr_set(oti, obj->oo_inode, XATTR_NAME_LMA, lma,
240 sizeof(*lma), XATTR_REPLACE);
244 parent = omm->omm_remote_parent;
245 sprintf(name, DFID_NOBRACE, PFID(lu_object_fid(&obj->oo_dt.do_lu)));
246 dentry = osd_child_dentry_by_inode(env, parent->d_inode,
248 mutex_lock(&parent->d_inode->i_mutex);
249 rc = osd_ldiskfs_add_entry(oh->ot_handle, dentry, obj->oo_inode,
251 CDEBUG(D_INODE, "%s: add %s:%lu to remote parent %lu.\n", osd_name(osd),
252 name, obj->oo_inode->i_ino, parent->d_inode->i_ino);
253 ldiskfs_inc_count(oh->ot_handle, parent->d_inode);
254 mark_inode_dirty(parent->d_inode);
255 mutex_unlock(&parent->d_inode->i_mutex);
259 int osd_delete_from_remote_parent(const struct lu_env *env,
260 struct osd_device *osd,
261 struct osd_object *obj,
262 struct osd_thandle *oh)
264 struct osd_mdobj_map *omm = osd->od_mdt_map;
265 struct osd_thread_info *oti = osd_oti_get(env);
266 struct lustre_mdt_attrs *lma = &oti->oti_mdt_attrs;
267 char *name = oti->oti_name;
268 struct dentry *dentry;
269 struct dentry *parent;
270 struct ldiskfs_dir_entry_2 *de;
271 struct buffer_head *bh;
274 /* Check lma to see whether it is remote object */
275 rc = osd_get_lma(oti, obj->oo_inode, &oti->oti_obj_dentry, lma);
279 if (likely(!(lma->lma_incompat & LMAI_REMOTE_PARENT)))
282 parent = omm->omm_remote_parent;
283 sprintf(name, DFID_NOBRACE, PFID(lu_object_fid(&obj->oo_dt.do_lu)));
284 dentry = osd_child_dentry_by_inode(env, parent->d_inode,
286 mutex_lock(&parent->d_inode->i_mutex);
287 bh = osd_ldiskfs_find_entry(parent->d_inode, &dentry->d_name, &de,
290 mutex_unlock(&parent->d_inode->i_mutex);
293 CDEBUG(D_INODE, "%s: el %s:%lu to remote parent %lu.\n", osd_name(osd),
294 name, obj->oo_inode->i_ino, parent->d_inode->i_ino);
295 rc = ldiskfs_delete_entry(oh->ot_handle, parent->d_inode, de, bh);
296 ldiskfs_dec_count(oh->ot_handle, parent->d_inode);
297 mark_inode_dirty(parent->d_inode);
298 mutex_unlock(&parent->d_inode->i_mutex);
301 /* Get rid of REMOTE_PARENT flag from incompat */
302 lma->lma_incompat &= ~LMAI_REMOTE_PARENT;
303 lustre_lma_swab(lma);
304 rc = __osd_xattr_set(oti, obj->oo_inode, XATTR_NAME_LMA, lma,
305 sizeof(*lma), XATTR_REPLACE);
309 int osd_lookup_in_remote_parent(struct osd_thread_info *oti,
310 struct osd_device *osd,
311 const struct lu_fid *fid,
312 struct osd_inode_id *id)
314 struct osd_mdobj_map *omm = osd->od_mdt_map;
315 char *name = oti->oti_name;
316 struct dentry *parent;
317 struct dentry *dentry;
318 struct ldiskfs_dir_entry_2 *de;
319 struct buffer_head *bh;
323 parent = omm->omm_remote_parent;
324 sprintf(name, DFID_NOBRACE, PFID(fid));
325 dentry = osd_child_dentry_by_inode(oti->oti_env, parent->d_inode,
327 mutex_lock(&parent->d_inode->i_mutex);
328 bh = osd_ldiskfs_find_entry(parent->d_inode, &dentry->d_name, &de,
334 osd_id_gen(id, le32_to_cpu(de->inode), OSD_OII_NOGEN);
337 mutex_unlock(&parent->d_inode->i_mutex);
339 osd_add_oi_cache(oti, osd, id, fid);
344 * directory structure on legacy OST:
346 * O/<seq>/d0-31/<objid>
353 static int osd_ost_init(const struct lu_env *env, struct osd_device *dev)
355 struct lvfs_run_ctxt new;
356 struct lvfs_run_ctxt save;
357 struct dentry *rootd = osd_sb(dev)->s_root;
359 struct osd_thread_info *info = osd_oti_get(env);
361 struct lu_fid *fid = &info->oti_fid3;
365 OBD_ALLOC_PTR(dev->od_ost_map);
366 if (dev->od_ost_map == NULL)
369 /* to get subdir count from last_rcvd */
370 rc = osd_last_rcvd_subdir_count(dev);
372 OBD_FREE_PTR(dev->od_ost_map);
376 dev->od_ost_map->om_subdir_count = rc;
379 CFS_INIT_LIST_HEAD(&dev->od_ost_map->om_seq_list);
380 rwlock_init(&dev->od_ost_map->om_seq_list_lock);
381 sema_init(&dev->od_ost_map->om_dir_init_sem, 1);
383 osd_push_ctxt(dev, &new, &save);
385 d = ll_lookup_one_len("O", rootd, strlen("O"));
387 GOTO(cleanup, rc = PTR_ERR(d));
388 if (d->d_inode == NULL) {
390 /* The lookup() may be called again inside simple_mkdir().
391 * Since the repeated lookup() only be called for "/O" at
392 * mount time, it will not affect the whole performance. */
393 d = simple_mkdir(rootd, dev->od_mnt, "O", 0755, 1);
395 GOTO(cleanup, rc = PTR_ERR(d));
397 /* It is quite probably that the device is new formatted. */
398 dev->od_maybe_new = 1;
402 ldiskfs_set_inode_state(inode, LDISKFS_STATE_LUSTRE_NO_OI);
403 dev->od_ost_map->om_root = d;
405 /* 'What the @fid is' is not imporatant, because the object
406 * has no OI mapping, and only is visible inside the OSD.*/
407 lu_igif_build(fid, inode->i_ino, inode->i_generation);
408 rc = osd_ea_fid_set(info, inode, fid,
409 LMAC_NOT_IN_OI | LMAC_FID_ON_OST, 0);
414 pop_ctxt(&new, &save);
416 OBD_FREE_PTR(dev->od_ost_map);
422 static void osd_seq_free(struct osd_obj_map *map,
423 struct osd_obj_seq *osd_seq)
427 cfs_list_del_init(&osd_seq->oos_seq_list);
429 if (osd_seq->oos_dirs) {
430 for (j = 0; j < osd_seq->oos_subdir_count; j++) {
431 if (osd_seq->oos_dirs[j])
432 dput(osd_seq->oos_dirs[j]);
434 OBD_FREE(osd_seq->oos_dirs,
435 sizeof(struct dentry *) * osd_seq->oos_subdir_count);
438 if (osd_seq->oos_root)
439 dput(osd_seq->oos_root);
441 OBD_FREE_PTR(osd_seq);
444 static void osd_ost_fini(struct osd_device *osd)
446 struct osd_obj_seq *osd_seq;
447 struct osd_obj_seq *tmp;
448 struct osd_obj_map *map = osd->od_ost_map;
454 write_lock(&map->om_seq_list_lock);
455 cfs_list_for_each_entry_safe(osd_seq, tmp,
458 osd_seq_free(map, osd_seq);
460 write_unlock(&map->om_seq_list_lock);
464 osd->od_ost_map = NULL;
468 int osd_obj_map_init(const struct lu_env *env, struct osd_device *dev)
473 /* prepare structures for OST */
474 rc = osd_ost_init(env, dev);
478 /* prepare structures for MDS */
479 rc = osd_mdt_init(env, dev);
484 struct osd_obj_seq *osd_seq_find_locked(struct osd_obj_map *map, obd_seq seq)
486 struct osd_obj_seq *osd_seq;
488 cfs_list_for_each_entry(osd_seq, &map->om_seq_list, oos_seq_list) {
489 if (osd_seq->oos_seq == seq)
495 struct osd_obj_seq *osd_seq_find(struct osd_obj_map *map, obd_seq seq)
497 struct osd_obj_seq *osd_seq;
499 read_lock(&map->om_seq_list_lock);
500 osd_seq = osd_seq_find_locked(map, seq);
501 read_unlock(&map->om_seq_list_lock);
505 void osd_obj_map_fini(struct osd_device *dev)
512 * Update the specified OI mapping.
514 * \retval 1, changed nothing
515 * \retval 0, changed successfully
516 * \retval -ve, on error
518 static int osd_obj_update_entry(struct osd_thread_info *info,
519 struct osd_device *osd,
520 struct dentry *dir, const char *name,
521 const struct lu_fid *fid,
522 const struct osd_inode_id *id,
525 struct inode *parent = dir->d_inode;
526 struct dentry *child;
527 struct ldiskfs_dir_entry_2 *de;
528 struct buffer_head *bh;
530 struct dentry *dentry = &info->oti_obj_dentry;
531 struct osd_inode_id *oi_id = &info->oti_id3;
532 struct lustre_mdt_attrs *lma = &info->oti_mdt_attrs;
533 struct lu_fid *oi_fid = &lma->lma_self_fid;
538 LASSERT(th->h_transaction != NULL);
540 child = &info->oti_child_dentry;
541 child->d_parent = dir;
542 child->d_name.hash = 0;
543 child->d_name.name = name;
544 child->d_name.len = strlen(name);
546 ll_vfs_dq_init(parent);
547 mutex_lock(&parent->i_mutex);
548 bh = osd_ldiskfs_find_entry(parent, &child->d_name, &de, NULL, NULL);
550 GOTO(out, rc = -ENOENT);
552 if (le32_to_cpu(de->inode) == id->oii_ino)
555 osd_id_gen(oi_id, le32_to_cpu(de->inode), OSD_OII_NOGEN);
556 inode = osd_iget(info, osd, oi_id);
559 if (rc == -ENOENT || rc == -ESTALE)
564 rc = osd_get_lma(info, inode, dentry, lma);
565 if (rc == -ENODATA) {
566 rc = osd_get_idif(info, inode, dentry, oi_fid);
574 /* If the OST-object has neither FID-in-LMA nor FID-in-ff, it is
575 * either a crashed object or a uninitialized one. Replace it. */
576 if (rc == -ENODATA || oi_fid == NULL)
582 if (lu_fid_eq(fid, oi_fid)) {
583 CERROR("%s: the FID "DFID" is used by two objects: "
584 "%u/%u %u/%u\n", osd_name(osd), PFID(fid),
585 oi_id->oii_ino, oi_id->oii_gen,
586 id->oii_ino, id->oii_gen);
587 GOTO(out, rc = -EEXIST);
591 /* There may be temporary inconsistency: On one hand, the new
592 * object may be referenced by multiple entries, which is out
593 * of our control unless we traverse the whole /O completely,
594 * which is non-flat order and inefficient, should be avoided;
595 * On the other hand, the old object may become orphan if it
596 * is still valid. Since it was referenced by an invalid entry,
597 * making it as invisible temporary may be not worse. OI scrub
598 * will process it later. */
599 rc = ldiskfs_journal_get_write_access(th, bh);
603 de->inode = cpu_to_le32(id->oii_ino);
604 rc = ldiskfs_journal_dirty_metadata(th, bh);
610 mutex_unlock(&parent->i_mutex);
614 static int osd_obj_del_entry(struct osd_thread_info *info,
615 struct osd_device *osd,
616 struct dentry *dird, char *name,
619 struct ldiskfs_dir_entry_2 *de;
620 struct buffer_head *bh;
621 struct dentry *child;
622 struct inode *dir = dird->d_inode;
627 LASSERT(th->h_transaction != NULL);
630 child = &info->oti_child_dentry;
631 child->d_name.hash = 0;
632 child->d_name.name = name;
633 child->d_name.len = strlen(name);
634 child->d_parent = dird;
635 child->d_inode = NULL;
638 mutex_lock(&dir->i_mutex);
640 bh = osd_ldiskfs_find_entry(dir, &child->d_name, &de, NULL, NULL);
642 rc = ldiskfs_delete_entry(th, dir, de, bh);
645 mutex_unlock(&dir->i_mutex);
650 int osd_obj_add_entry(struct osd_thread_info *info,
651 struct osd_device *osd,
652 struct dentry *dir, char *name,
653 const struct osd_inode_id *id,
656 struct dentry *child;
662 if (OBD_FAIL_CHECK(OBD_FAIL_OSD_COMPAT_NO_ENTRY))
666 LASSERT(th->h_transaction != NULL);
668 inode = &info->oti_inode;
669 inode->i_sb = osd_sb(osd);
670 osd_id_to_inode(inode, id);
671 inode->i_mode = S_IFREG; /* for type in ldiskfs dir entry */
673 child = &info->oti_child_dentry;
674 child->d_name.hash = 0;
675 child->d_name.name = name;
676 child->d_name.len = strlen(name);
677 child->d_parent = dir;
678 child->d_inode = inode;
680 if (OBD_FAIL_CHECK(OBD_FAIL_OSD_COMPAT_INVALID_ENTRY))
683 ll_vfs_dq_init(dir->d_inode);
684 mutex_lock(&dir->d_inode->i_mutex);
685 rc = osd_ldiskfs_add_entry(th, child, inode, NULL);
686 mutex_unlock(&dir->d_inode->i_mutex);
692 * Use LPU64 for legacy OST sequences, but use LPX64i for new
693 * sequences names, so that the O/{seq}/dN/{oid} more closely
694 * follows the DFID/PFID format. This makes it easier to map from
695 * debug messages to objects in the future, and the legacy space
696 * of FID_SEQ_OST_MDT0 will be unused in the future.
698 static inline void osd_seq_name(char *seq_name, size_t name_size, obd_seq seq)
700 snprintf(seq_name, name_size,
701 (fid_seq_is_rsvd(seq) ||
702 fid_seq_is_mdt0(seq)) ? LPU64 : LPX64i,
703 fid_seq_is_idif(seq) ? 0 : seq);
706 static inline void osd_oid_name(char *name, size_t name_size,
707 const struct lu_fid *fid, obd_id id)
709 snprintf(name, name_size,
710 (fid_seq_is_rsvd(fid_seq(fid)) ||
711 fid_seq_is_mdt0(fid_seq(fid)) ||
712 fid_seq_is_idif(fid_seq(fid))) ? LPU64 : LPX64i, id);
715 /* external locking is required */
716 static int osd_seq_load_locked(struct osd_thread_info *info,
717 struct osd_device *osd,
718 struct osd_obj_seq *osd_seq)
720 struct osd_obj_map *map = osd->od_ost_map;
721 struct dentry *seq_dir;
723 struct lu_fid *fid = &info->oti_fid3;
729 if (osd_seq->oos_root != NULL)
733 LASSERT(map->om_root);
735 osd_seq_name(dir_name, sizeof(dir_name), osd_seq->oos_seq);
737 seq_dir = simple_mkdir(map->om_root, osd->od_mnt, dir_name, 0755, 1);
739 GOTO(out_err, rc = PTR_ERR(seq_dir));
740 else if (seq_dir->d_inode == NULL)
741 GOTO(out_put, rc = -EFAULT);
743 inode = seq_dir->d_inode;
744 ldiskfs_set_inode_state(inode, LDISKFS_STATE_LUSTRE_NO_OI);
745 osd_seq->oos_root = seq_dir;
747 /* 'What the @fid is' is not imporatant, because the object
748 * has no OI mapping, and only is visible inside the OSD.*/
749 lu_igif_build(fid, inode->i_ino, inode->i_generation);
750 rc = osd_ea_fid_set(info, inode, fid,
751 LMAC_NOT_IN_OI | LMAC_FID_ON_OST, 0);
755 LASSERT(osd_seq->oos_dirs == NULL);
756 OBD_ALLOC(osd_seq->oos_dirs,
757 sizeof(seq_dir) * osd_seq->oos_subdir_count);
758 if (osd_seq->oos_dirs == NULL)
759 GOTO(out_put, rc = -ENOMEM);
761 for (i = 0; i < osd_seq->oos_subdir_count; i++) {
764 snprintf(dir_name, sizeof(dir_name), "d%u", i);
765 dir = simple_mkdir(osd_seq->oos_root, osd->od_mnt, dir_name,
768 GOTO(out_free, rc = PTR_ERR(dir));
769 } else if (dir->d_inode == NULL) {
771 GOTO(out_free, rc = -EFAULT);
774 inode = dir->d_inode;
775 ldiskfs_set_inode_state(inode, LDISKFS_STATE_LUSTRE_NO_OI);
776 osd_seq->oos_dirs[i] = dir;
778 /* 'What the @fid is' is not imporatant, because the object
779 * has no OI mapping, and only is visible inside the OSD.*/
780 lu_igif_build(fid, inode->i_ino, inode->i_generation);
781 rc = osd_ea_fid_set(info, inode, fid,
782 LMAC_NOT_IN_OI | LMAC_FID_ON_OST, 0);
789 for (i = 0; i < osd_seq->oos_subdir_count; i++) {
790 if (osd_seq->oos_dirs[i] != NULL)
791 dput(osd_seq->oos_dirs[i]);
793 OBD_FREE(osd_seq->oos_dirs,
794 sizeof(seq_dir) * osd_seq->oos_subdir_count);
797 osd_seq->oos_root = NULL;
803 static struct osd_obj_seq *osd_seq_load(struct osd_thread_info *info,
804 struct osd_device *osd, obd_seq seq)
806 struct osd_obj_map *map;
807 struct osd_obj_seq *osd_seq;
811 map = osd->od_ost_map;
813 LASSERT(map->om_root);
815 osd_seq = osd_seq_find(map, seq);
816 if (likely(osd_seq != NULL))
819 /* Serializing init process */
820 down(&map->om_dir_init_sem);
822 /* Check whether the seq has been added */
823 read_lock(&map->om_seq_list_lock);
824 osd_seq = osd_seq_find_locked(map, seq);
825 if (osd_seq != NULL) {
826 read_unlock(&map->om_seq_list_lock);
827 GOTO(cleanup, rc = 0);
829 read_unlock(&map->om_seq_list_lock);
831 OBD_ALLOC_PTR(osd_seq);
833 GOTO(cleanup, rc = -ENOMEM);
835 CFS_INIT_LIST_HEAD(&osd_seq->oos_seq_list);
836 osd_seq->oos_seq = seq;
837 /* Init subdir count to be 32, but each seq can have
838 * different subdir count */
839 osd_seq->oos_subdir_count = map->om_subdir_count;
840 rc = osd_seq_load_locked(info, osd, osd_seq);
844 write_lock(&map->om_seq_list_lock);
845 cfs_list_add(&osd_seq->oos_seq_list, &map->om_seq_list);
846 write_unlock(&map->om_seq_list_lock);
849 up(&map->om_dir_init_sem);
852 OBD_FREE_PTR(osd_seq);
859 int osd_obj_map_lookup(struct osd_thread_info *info, struct osd_device *dev,
860 const struct lu_fid *fid, struct osd_inode_id *id)
862 struct osd_obj_map *map;
863 struct osd_obj_seq *osd_seq;
864 struct dentry *d_seq;
865 struct dentry *child;
866 struct ost_id *ostid = &info->oti_ostid;
869 struct ldiskfs_dir_entry_2 *de;
870 struct buffer_head *bh;
875 /* on the very first lookup we find and open directories */
877 map = dev->od_ost_map;
879 LASSERT(map->om_root);
881 fid_to_ostid(fid, ostid);
882 osd_seq = osd_seq_load(info, dev, ostid_seq(ostid));
884 RETURN(PTR_ERR(osd_seq));
886 dirn = ostid_id(ostid) & (osd_seq->oos_subdir_count - 1);
887 d_seq = osd_seq->oos_dirs[dirn];
890 osd_oid_name(name, sizeof(name), fid, ostid_id(ostid));
892 child = &info->oti_child_dentry;
893 child->d_parent = d_seq;
894 child->d_name.hash = 0;
895 child->d_name.name = name;
896 /* XXX: we can use rc from sprintf() instead of strlen() */
897 child->d_name.len = strlen(name);
899 dir = d_seq->d_inode;
900 mutex_lock(&dir->i_mutex);
901 bh = osd_ldiskfs_find_entry(dir, &child->d_name, &de, NULL, NULL);
902 mutex_unlock(&dir->i_mutex);
907 osd_id_gen(id, le32_to_cpu(de->inode), OSD_OII_NOGEN);
910 inode = osd_iget(info, dev, id);
912 RETURN(PTR_ERR(inode));
918 int osd_obj_map_insert(struct osd_thread_info *info,
919 struct osd_device *osd,
920 const struct lu_fid *fid,
921 const struct osd_inode_id *id,
924 struct osd_obj_map *map;
925 struct osd_obj_seq *osd_seq;
927 struct ost_id *ostid = &info->oti_ostid;
933 map = osd->od_ost_map;
936 /* map fid to seq:objid */
937 fid_to_ostid(fid, ostid);
939 oid = ostid_id(ostid);
940 osd_seq = osd_seq_load(info, osd, ostid_seq(ostid));
942 RETURN(PTR_ERR(osd_seq));
944 dirn = oid & (osd_seq->oos_subdir_count - 1);
945 d = osd_seq->oos_dirs[dirn];
948 osd_oid_name(name, sizeof(name), fid, oid);
951 rc = osd_obj_add_entry(info, osd, d, name, id, th);
953 rc = osd_obj_update_entry(info, osd, d, name, fid, id, th);
954 if (unlikely(rc == -ENOENT))
957 if (unlikely(rc == 1))
964 int osd_obj_map_delete(struct osd_thread_info *info, struct osd_device *osd,
965 const struct lu_fid *fid, handle_t *th)
967 struct osd_obj_map *map;
968 struct osd_obj_seq *osd_seq;
970 struct ost_id *ostid = &info->oti_ostid;
975 map = osd->od_ost_map;
978 /* map fid to seq:objid */
979 fid_to_ostid(fid, ostid);
981 osd_seq = osd_seq_load(info, osd, ostid_seq(ostid));
983 GOTO(cleanup, rc = PTR_ERR(osd_seq));
985 dirn = ostid_id(ostid) & (osd_seq->oos_subdir_count - 1);
986 d = osd_seq->oos_dirs[dirn];
989 osd_oid_name(name, sizeof(name), fid, ostid_id(ostid));
990 rc = osd_obj_del_entry(info, osd, d, name, th);
995 int osd_obj_map_update(struct osd_thread_info *info,
996 struct osd_device *osd,
997 const struct lu_fid *fid,
998 const struct osd_inode_id *id,
1001 struct osd_obj_seq *osd_seq;
1003 struct ost_id *ostid = &info->oti_ostid;
1008 fid_to_ostid(fid, ostid);
1009 osd_seq = osd_seq_load(info, osd, ostid_seq(ostid));
1010 if (IS_ERR(osd_seq))
1011 RETURN(PTR_ERR(osd_seq));
1013 dirn = ostid_id(ostid) & (osd_seq->oos_subdir_count - 1);
1014 d = osd_seq->oos_dirs[dirn];
1017 osd_oid_name(name, sizeof(name), fid, ostid_id(ostid));
1018 rc = osd_obj_update_entry(info, osd, d, name, fid, id, th);
1023 int osd_obj_map_recover(struct osd_thread_info *info,
1024 struct osd_device *osd,
1025 struct inode *src_parent,
1026 struct dentry *src_child,
1027 const struct lu_fid *fid)
1029 struct osd_obj_seq *osd_seq;
1030 struct dentry *tgt_parent;
1031 struct dentry *tgt_child = &info->oti_child_dentry;
1033 struct inode *inode = src_child->d_inode;
1034 struct ost_id *ostid = &info->oti_ostid;
1036 struct ldiskfs_dir_entry_2 *de;
1037 struct buffer_head *bh;
1043 if (fid_is_last_id(fid)) {
1044 osd_seq = osd_seq_load(info, osd, fid_seq(fid));
1045 if (IS_ERR(osd_seq))
1046 RETURN(PTR_ERR(osd_seq));
1048 tgt_parent = osd_seq->oos_root;
1049 tgt_child->d_name.name = "LAST_ID";
1050 tgt_child->d_name.len = strlen("LAST_ID");
1052 fid_to_ostid(fid, ostid);
1053 osd_seq = osd_seq_load(info, osd, ostid_seq(ostid));
1054 if (IS_ERR(osd_seq))
1055 RETURN(PTR_ERR(osd_seq));
1057 dirn = ostid_id(ostid) & (osd_seq->oos_subdir_count - 1);
1058 tgt_parent = osd_seq->oos_dirs[dirn];
1059 osd_oid_name(name, sizeof(name), fid, ostid_id(ostid));
1060 tgt_child->d_name.name = name;
1061 tgt_child->d_name.len = strlen(name);
1063 LASSERT(tgt_parent != NULL);
1065 dir = tgt_parent->d_inode;
1066 tgt_child->d_name.hash = 0;
1067 tgt_child->d_parent = tgt_parent;
1068 tgt_child->d_inode = inode;
1070 /* The non-initialized src_child may be destroyed. */
1071 jh = osd_journal_start_sb(osd_sb(osd), LDISKFS_HT_MISC,
1072 osd_dto_credits_noquota[DTO_INDEX_DELETE] +
1073 osd_dto_credits_noquota[DTO_INDEX_INSERT] +
1074 osd_dto_credits_noquota[DTO_OBJECT_DELETE]);
1076 RETURN(PTR_ERR(jh));
1078 ll_vfs_dq_init(src_parent);
1079 ll_vfs_dq_init(dir);
1081 mutex_lock(&src_parent->i_mutex);
1082 mutex_lock(&dir->i_mutex);
1083 bh = osd_ldiskfs_find_entry(dir, &tgt_child->d_name, &de, NULL, NULL);
1085 /* XXX: If some other object occupied the same slot. And If such
1086 * inode is zero-sized and with SUID+SGID, then means it is
1087 * a new created one. Maybe we can remove it and insert the
1088 * original one back to the /O/<seq>/d<x>. But there are
1089 * something to be considered:
1091 * 1) The OST-object under /lost+found has crashed LMA.
1092 * So it should not conflict with the current one.
1094 * 2) There are race conditions that: someone may just want
1095 * to modify the current one. Even if the OI scrub takes
1096 * the object lock when remove the current one, it still
1097 * cause the modification to be lost becasue the target
1098 * has been removed when the RPC service thread waiting
1101 * So keep it there before we have suitable solution. */
1103 mutex_unlock(&dir->i_mutex);
1104 mutex_unlock(&src_parent->i_mutex);
1105 ldiskfs_journal_stop(jh);
1108 /* If the src object has never been modified, then remove it. */
1109 if (inode->i_size == 0 && inode->i_mode & S_ISUID &&
1110 inode->i_mode & S_ISGID) {
1111 rc = vfs_unlink(src_parent, src_child);
1112 if (unlikely(rc == -ENOENT))
1118 bh = osd_ldiskfs_find_entry(src_parent, &src_child->d_name, &de,
1120 if (unlikely(bh == NULL))
1121 GOTO(unlock, rc = -ENOENT);
1123 rc = ldiskfs_delete_entry(jh, src_parent, de, bh);
1128 rc = osd_ldiskfs_add_entry(jh, tgt_child, inode, NULL);
1133 mutex_unlock(&dir->i_mutex);
1134 mutex_unlock(&src_parent->i_mutex);
1135 ldiskfs_journal_stop(jh);
1139 static struct dentry *
1140 osd_object_spec_find(struct osd_thread_info *info, struct osd_device *osd,
1141 const struct lu_fid *fid, char **name)
1143 struct dentry *root = ERR_PTR(-ENOENT);
1145 if (fid_is_last_id(fid)) {
1146 struct osd_obj_seq *osd_seq;
1148 /* on creation of LAST_ID we create O/<seq> hierarchy */
1149 osd_seq = osd_seq_load(info, osd, fid_seq(fid));
1150 if (IS_ERR(osd_seq))
1151 RETURN((struct dentry *)osd_seq);
1154 root = osd_seq->oos_root;
1156 *name = osd_lf_fid2name(fid);
1158 CWARN("UNKNOWN COMPAT FID "DFID"\n", PFID(fid));
1159 else if ((*name)[0])
1160 root = osd_sb(osd)->s_root;
1166 int osd_obj_spec_update(struct osd_thread_info *info, struct osd_device *osd,
1167 const struct lu_fid *fid, const struct osd_inode_id *id,
1170 struct dentry *root;
1175 root = osd_object_spec_find(info, osd, fid, &name);
1176 if (!IS_ERR(root)) {
1177 rc = osd_obj_update_entry(info, osd, root, name, fid, id, th);
1187 int osd_obj_spec_insert(struct osd_thread_info *info, struct osd_device *osd,
1188 const struct lu_fid *fid, const struct osd_inode_id *id,
1191 struct dentry *root;
1196 root = osd_object_spec_find(info, osd, fid, &name);
1197 if (!IS_ERR(root)) {
1198 rc = osd_obj_add_entry(info, osd, root, name, id, th);
1208 int osd_obj_spec_lookup(struct osd_thread_info *info, struct osd_device *osd,
1209 const struct lu_fid *fid, struct osd_inode_id *id)
1211 struct dentry *root;
1212 struct dentry *dentry;
1213 struct inode *inode;
1218 if (fid_is_last_id(fid)) {
1219 struct osd_obj_seq *osd_seq;
1221 osd_seq = osd_seq_load(info, osd, fid_seq(fid));
1222 if (IS_ERR(osd_seq))
1223 RETURN(PTR_ERR(osd_seq));
1224 root = osd_seq->oos_root;
1227 root = osd_sb(osd)->s_root;
1228 name = osd_lf_fid2name(fid);
1229 if (name == NULL || strlen(name) == 0)
1233 dentry = ll_lookup_one_len(name, root, strlen(name));
1234 if (!IS_ERR(dentry)) {
1235 inode = dentry->d_inode;
1237 if (is_bad_inode(inode)) {
1240 osd_id_gen(id, inode->i_ino,
1241 inode->i_generation);
1245 /* if dentry is accessible after osd_compat_spec_insert it
1246 * will still contain NULL inode, so don't keep it in cache */
1247 d_invalidate(dentry);