Whamcloud - gitweb
19c7315d497dd6f4129b84ad90aa85a46d1ea189
[fs/lustre-release.git] / lustre / osd-ldiskfs / osd_internal.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2015, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/osd/osd_internal.h
37  *
38  * Shared definitions and declarations for osd module
39  *
40  * Author: Nikita Danilov <nikita@clusterfs.com>
41  */
42
43 #ifndef _OSD_INTERNAL_H
44 #define _OSD_INTERNAL_H
45
46
47 /* struct mutex */
48 #include <linux/mutex.h>
49 /* struct rw_semaphore */
50 #include <linux/rwsem.h>
51 /* struct dentry */
52 #include <linux/dcache.h>
53 /* struct dirent64 */
54 #include <linux/dirent.h>
55 #include <linux/statfs.h>
56 #include <ldiskfs/ldiskfs.h>
57 #include <ldiskfs/ldiskfs_jbd2.h>
58
59 /* LUSTRE_OSD_NAME */
60 #include <obd.h>
61 /* class_register_type(), class_unregister_type(), class_get_type() */
62 #include <obd_class.h>
63 #include <lustre_disk.h>
64 #include <dt_object.h>
65 #include <lustre_quota.h>
66
67 #include "osd_oi.h"
68 #include "osd_iam.h"
69 #include "osd_scrub.h"
70 #include "osd_quota_fmt.h"
71
72 struct inode;
73 extern struct kmem_cache *dynlock_cachep;
74
75 #define OSD_COUNTERS (0)
76
77 /* ldiskfs special inode::i_state_flags need to be accessed with
78  * ldiskfs_{set,clear,test}_inode_state() only */
79
80 /* OI scrub should skip this inode. */
81 #define LDISKFS_STATE_LUSTRE_NOSCRUB    31
82 #define LDISKFS_STATE_LUSTRE_DESTROY    30
83
84 /** Enable thandle usage statistics */
85 #define OSD_THANDLE_STATS (0)
86
87 #define MAX_OBJID_GROUP (FID_SEQ_ECHO + 1)
88
89 #define OBJECTS         "OBJECTS"
90 #define ADMIN_USR       "admin_quotafile_v2.usr"
91 #define ADMIN_GRP       "admin_quotafile_v2.grp"
92
93 struct osd_directory {
94         struct iam_container od_container;
95         struct iam_descr     od_descr;
96 };
97
98 /*
99  * Object Index (oi) instance.
100  */
101 struct osd_oi {
102         /*
103          * underlying index object, where fid->id mapping in stored.
104          */
105         struct inode         *oi_inode;
106         struct osd_directory  oi_dir;
107 };
108
109 extern const int osd_dto_credits_noquota[];
110
111 struct osd_object {
112         struct dt_object        oo_dt;
113         /**
114          * Inode for file system object represented by this osd_object. This
115          * inode is pinned for the whole duration of lu_object life.
116          *
117          * Not modified concurrently (either setup early during object
118          * creation, or assigned by osd_object_create() under write lock).
119          */
120         struct inode           *oo_inode;
121         /**
122          * to protect index ops.
123          */
124         struct htree_lock_head *oo_hl_head;
125         struct rw_semaphore     oo_ext_idx_sem;
126         struct rw_semaphore     oo_sem;
127         struct osd_directory    *oo_dir;
128         /** protects inode attributes. */
129         spinlock_t              oo_guard;
130
131         __u32                   oo_destroyed:1;
132         /**
133          * Following two members are used to indicate the presence of dot and
134          * dotdot in the given directory. This is required for interop mode
135          * (b11826).
136          */
137         int                     oo_compat_dot_created;
138         int                     oo_compat_dotdot_created;
139
140         const struct lu_env    *oo_owner;
141 #ifdef CONFIG_LOCKDEP
142         struct lockdep_map      oo_dep_map;
143 #endif
144 };
145
146 struct osd_obj_seq {
147         /* protects on-fly initialization */
148         int              oos_subdir_count; /* subdir count for each seq */
149         struct dentry    *oos_root;        /* O/<seq> */
150         struct dentry    **oos_dirs;       /* O/<seq>/d0-dXX */
151         u64              oos_seq;          /* seq number */
152         struct list_head oos_seq_list;     /* list to seq_list */
153 };
154
155 struct osd_obj_map {
156         struct dentry    *om_root;        /* dentry for /O */
157         rwlock_t         om_seq_list_lock; /* lock for seq_list */
158         struct list_head om_seq_list;      /* list head for seq */
159         int              om_subdir_count;
160         struct mutex     om_dir_init_mutex;
161 };
162
163 struct osd_mdobj {
164         struct dentry   *om_root;      /* AGENT/<index> */
165         u64              om_index;     /* mdt index */
166         struct list_head om_list;      /* list to omm_list */
167 };
168
169 struct osd_mdobj_map {
170         struct dentry   *omm_remote_parent;
171 };
172
173 #define osd_ldiskfs_add_entry(handle, child, cinode, hlock) \
174         __ldiskfs_add_entry(handle, child, cinode, hlock)
175
176 #define OSD_OTABLE_IT_CACHE_SIZE        64
177 #define OSD_OTABLE_IT_CACHE_MASK        (~(OSD_OTABLE_IT_CACHE_SIZE - 1))
178
179 struct osd_inconsistent_item {
180         /* link into osd_scrub::os_inconsistent_items,
181          * protected by osd_scrub::os_lock. */
182         struct list_head       oii_list;
183
184         /* The right FID <=> ino#/gen mapping. */
185         struct osd_idmap_cache oii_cache;
186
187         unsigned int           oii_insert:1; /* insert or update mapping. */
188 };
189
190 struct osd_otable_cache {
191         struct osd_idmap_cache ooc_cache[OSD_OTABLE_IT_CACHE_SIZE];
192
193         /* Index for next cache slot to be filled. */
194         int                    ooc_producer_idx;
195
196         /* Index for next cache slot to be returned by it::next(). */
197         int                    ooc_consumer_idx;
198
199         /* How many items in ooc_cache. */
200         int                    ooc_cached_items;
201
202         /* Position for up layer LFSCK iteration pre-loading. */
203         __u32                  ooc_pos_preload;
204 };
205
206 struct osd_otable_it {
207         struct osd_device       *ooi_dev;
208         struct osd_otable_cache  ooi_cache;
209
210         /* The following bits can be updated/checked w/o lock protection.
211          * If more bits will be introduced in the future and need lock to
212          * protect, please add comment. */
213         unsigned long            ooi_used_outside:1, /* Some user out of OSD
214                                                       * uses the iteration. */
215                                  ooi_all_cached:1, /* No more entries can be
216                                                     * filled into cache. */
217                                  ooi_user_ready:1, /* The user out of OSD is
218                                                     * ready to iterate. */
219                                  ooi_waiting:1; /* it::next is waiting. */
220 };
221
222 struct osd_obj_orphan {
223         struct list_head oor_list;
224         struct lu_env   *oor_env; /* to identify "own" records */
225         __u32 oor_ino;
226 };
227
228 /*
229  * osd device.
230  */
231 struct osd_device {
232         /* super-class */
233         struct dt_device          od_dt_dev;
234         /* information about underlying file system */
235         struct vfsmount          *od_mnt;
236         /* object index */
237         struct osd_oi           **od_oi_table;
238         /* total number of OI containers */
239         int                       od_oi_count;
240         /*
241          * Fid Capability
242          */
243         unsigned int              od_fl_capa:1,
244                                   od_maybe_new:1,
245                                   od_noscrub:1,
246                                   od_igif_inoi:1,
247                                   od_check_ff:1,
248                                   od_is_ost:1,
249                                   od_index_in_idif:1;
250
251         __u32                     od_dirent_journal;
252         int                       od_index;
253         struct proc_dir_entry    *od_proc_entry;
254         struct lprocfs_stats     *od_stats;
255
256         spinlock_t                od_osfs_lock;
257
258         int                       od_connects;
259         struct lu_site            od_site;
260
261         struct osd_obj_map      *od_ost_map;
262         struct osd_mdobj_map    *od_mdt_map;
263
264         unsigned long long      od_readcache_max_filesize;
265         int                     od_read_cache;
266         int                     od_writethrough_cache;
267
268         struct brw_stats        od_brw_stats;
269         atomic_t                od_r_in_flight;
270         atomic_t                od_w_in_flight;
271
272         struct mutex              od_otable_mutex;
273         struct osd_otable_it     *od_otable_it;
274         struct osd_scrub          od_scrub;
275         struct list_head                  od_ios_list;
276
277         /* service name associated with the osd device */
278         char                      od_svname[MAX_OBD_NAME];
279         char                      od_mntdev[MAX_OBD_NAME];
280
281         /* quota slave instance */
282         struct qsd_instance      *od_quota_slave;
283
284         /* osd seq instance */
285         struct lu_client_seq    *od_cl_seq;
286         /* If the ratio of "the total OI mappings count" vs
287          * "the bad OI mappings count" is lower than the
288          * osd_device::od_full_scrub_ratio, then trigger
289          * OI scrub to scan the whole the device. */
290         __u64                    od_full_scrub_ratio;
291         /* If the speed of found bad OI mappings (per minute)
292          * exceeds the osd_device::od_full_scrub_threshold_rate,
293          * then trigger OI scrub to scan the whole device. */
294         __u64                    od_full_scrub_threshold_rate;
295
296         /* a list of orphaned agent inodes, protected with od_osfs_lock */
297         struct list_head         od_orphan_list;
298 };
299
300 enum osd_full_scrub_ratio {
301         /* Trigger OI scrub to scan the whole device directly. */
302         OFSR_DIRECTLY   = 0,
303
304         /* Because the bad OI mappings count cannot be larger than
305          * the total OI mappints count, then setting OFSR_NEVER means
306          * that the whole device scanning cannot be triggered by auto
307          * detected bad OI mappings during the RPC services. */
308         OFSR_NEVER      = 1,
309         OFSR_DEFAULT    = 10000,
310 };
311
312 #define FULL_SCRUB_THRESHOLD_RATE_DEFAULT       60
313
314 /* There are at most 10 uid/gids are affected in a transaction, and
315  * that's rename case:
316  * - 2 for source parent uid & gid;
317  * - 2 for source child uid & gid ('..' entry update when child is directory);
318  * - 2 for target parent uid & gid;
319  * - 2 for target child uid & gid (if the target child exists);
320  * - 2 for root uid & gid (last_rcvd, llog, etc);
321  *
322  * The 0 to (OSD_MAX_UGID_CNT - 1) bits of ot_id_type is for indicating
323  * the id type of each id in the ot_id_array.
324  */
325 #define OSD_MAX_UGID_CNT        10
326
327 enum {
328         OSD_OT_ATTR_SET         = 0,
329         OSD_OT_PUNCH            = 1,
330         OSD_OT_XATTR_SET        = 2,
331         OSD_OT_CREATE           = 3,
332         OSD_OT_DESTROY          = 4,
333         OSD_OT_REF_ADD          = 5,
334         OSD_OT_REF_DEL          = 6,
335         OSD_OT_WRITE            = 7,
336         OSD_OT_INSERT           = 8,
337         OSD_OT_DELETE           = 9,
338         OSD_OT_QUOTA            = 10,
339         OSD_OT_MAX              = 11
340 };
341
342 struct osd_thandle {
343         struct thandle          ot_super;
344         handle_t               *ot_handle;
345         struct ldiskfs_journal_cb_entry ot_jcb;
346         struct list_head       ot_commit_dcb_list;
347         struct list_head       ot_stop_dcb_list;
348         /* Link to the device, for debugging. */
349         struct lu_ref_link      ot_dev_link;
350         unsigned short          ot_credits;
351         unsigned short          ot_id_cnt;
352         unsigned short          ot_id_type;
353         int                     ot_remove_agents:1;
354         uid_t                   ot_id_array[OSD_MAX_UGID_CNT];
355         struct lquota_trans    *ot_quota_trans;
356 #if OSD_THANDLE_STATS
357         /** time when this handle was allocated */
358         cfs_time_t oth_alloced;
359
360         /** time when this thanle was started */
361         cfs_time_t oth_started;
362 #endif
363 };
364
365 /**
366  * Basic transaction credit op
367  */
368 enum dt_txn_op {
369         DTO_INDEX_INSERT,
370         DTO_INDEX_DELETE,
371         DTO_INDEX_UPDATE,
372         DTO_OBJECT_CREATE,
373         DTO_OBJECT_DELETE,
374         DTO_ATTR_SET_BASE,
375         DTO_XATTR_SET,
376         DTO_WRITE_BASE,
377         DTO_WRITE_BLOCK,
378         DTO_ATTR_SET_CHOWN,
379
380         DTO_NR
381 };
382
383 /*
384  * osd dev stats
385  */
386
387 #ifdef CONFIG_PROC_FS
388 enum {
389         LPROC_OSD_READ_BYTES    = 0,
390         LPROC_OSD_WRITE_BYTES   = 1,
391         LPROC_OSD_GET_PAGE      = 2,
392         LPROC_OSD_NO_PAGE       = 3,
393         LPROC_OSD_CACHE_ACCESS  = 4,
394         LPROC_OSD_CACHE_HIT     = 5,
395         LPROC_OSD_CACHE_MISS    = 6,
396
397 #if OSD_THANDLE_STATS
398         LPROC_OSD_THANDLE_STARTING,
399         LPROC_OSD_THANDLE_OPEN,
400         LPROC_OSD_THANDLE_CLOSING,
401 #endif
402         LPROC_OSD_LAST,
403 };
404 #endif
405
406 /**
407  * Storage representation for fids.
408  *
409  * Variable size, first byte contains the length of the whole record.
410  */
411 struct osd_fid_pack {
412         unsigned char fp_len;
413         char fp_area[sizeof(struct lu_fid)];
414 };
415
416 struct osd_it_ea_dirent {
417         struct lu_fid   oied_fid;
418         __u64           oied_ino;
419         __u64           oied_off;
420         unsigned short  oied_namelen;
421         unsigned int    oied_type;
422         char            oied_name[0];
423 } __attribute__((packed));
424
425 /**
426  * as osd_it_ea_dirent (in memory dirent struct for osd) is greater
427  * than lu_dirent struct. osd readdir reads less number of dirent than
428  * required for mdd dir page. so buffer size need to be increased so that
429  * there  would be one ext3 readdir for every mdd readdir page.
430  */
431
432 #define OSD_IT_EA_BUFSIZE       (PAGE_CACHE_SIZE + PAGE_CACHE_SIZE/4)
433
434 /**
435  * This is iterator's in-memory data structure in interoperability
436  * mode (i.e. iterator over ldiskfs style directory)
437  */
438 struct osd_it_ea {
439         struct osd_object       *oie_obj;
440         /** used in ldiskfs iterator, to stored file pointer */
441         struct file             oie_file;
442         /** how many entries have been read-cached from storage */
443         int                     oie_rd_dirent;
444         /** current entry is being iterated by caller */
445         int                     oie_it_dirent;
446         /** current processing entry */
447         struct osd_it_ea_dirent *oie_dirent;
448         /** buffer to hold entries, size == OSD_IT_EA_BUFSIZE */
449         void                    *oie_buf;
450         struct dentry           oie_dentry;
451 };
452
453 /**
454  * Iterator's in-memory data structure for IAM mode.
455  */
456 struct osd_it_iam {
457         struct osd_object     *oi_obj;
458         struct iam_path_descr *oi_ipd;
459         struct iam_iterator    oi_it;
460 };
461
462 struct osd_quota_leaf {
463         struct list_head        oql_link;
464         uint            oql_blk;
465 };
466
467 /**
468  * Iterator's in-memory data structure for quota file.
469  */
470 struct osd_it_quota {
471         struct osd_object       *oiq_obj;
472         /** tree blocks path to where the entry is stored */
473         uint                     oiq_blk[LUSTRE_DQTREEDEPTH + 1];
474         /** on-disk offset for current key where quota record can be found */
475         loff_t                   oiq_offset;
476         /** identifier for current quota record */
477         __u64                    oiq_id;
478         /** the record index in the leaf/index block */
479         uint                     oiq_index[LUSTRE_DQTREEDEPTH + 1];
480         /** list of already processed leaf blocks */
481         struct list_head         oiq_list;
482 };
483
484 #define MAX_BLOCKS_PER_PAGE (PAGE_CACHE_SIZE / 512)
485
486 struct osd_iobuf {
487         wait_queue_head_t  dr_wait;
488         atomic_t       dr_numreqs;  /* number of reqs being processed */
489         int                dr_max_pages;
490         int                dr_npages;
491         int                dr_error;
492         int                dr_frags;
493         unsigned int       dr_ignore_quota:1;
494         unsigned int       dr_elapsed_valid:1; /* we really did count time */
495         unsigned int       dr_rw:1;
496         struct lu_buf      dr_pg_buf;
497         struct page      **dr_pages;
498         struct lu_buf      dr_bl_buf;
499         sector_t          *dr_blocks;
500         unsigned long      dr_start_time;
501         unsigned long      dr_elapsed;  /* how long io took */
502         struct osd_device *dr_dev;
503         unsigned int       dr_init_at;  /* the line iobuf was initialized */
504 };
505
506 #define OSD_INS_CACHE_SIZE      8
507
508 struct osd_thread_info {
509         const struct lu_env   *oti_env;
510         /**
511          * used for index operations.
512          */
513         struct dentry          oti_obj_dentry;
514         struct dentry          oti_child_dentry;
515
516         /** dentry for Iterator context. */
517         struct dentry           oti_it_dentry;
518
519         union {
520                 /* fake struct file for osd_object_sync */
521                 struct file             oti_file;
522                 /* osd_statfs() */
523                 struct kstatfs          oti_ksfs;
524         };
525
526         struct htree_lock     *oti_hlock;
527
528         struct lu_fid          oti_fid;
529         struct lu_fid          oti_fid2;
530         struct lu_fid          oti_fid3;
531         struct osd_inode_id    oti_id;
532         struct osd_inode_id    oti_id2;
533         struct osd_inode_id    oti_id3;
534         struct ost_id          oti_ostid;
535
536         /*
537          * XXX temporary: for ->i_op calls.
538          */
539         struct timespec        oti_time;
540
541         /** osd_device reference, initialized in osd_trans_start() and
542             used in osd_trans_stop() */
543         struct osd_device     *oti_dev;
544
545         /**
546          * following ipd and it structures are used for osd_index_iam_lookup()
547          * these are defined separately as we might do index operation
548          * in open iterator session.
549          */
550
551         /** pre-allocated buffer used by oti_it_ea, size OSD_IT_EA_BUFSIZE */
552         void                    *oti_it_ea_buf;
553         unsigned int            oti_it_ea_buf_used:1;
554
555         /* IAM iterator for index operation. */
556         struct iam_iterator    oti_idx_it;
557
558         /** union to guarantee that ->oti_ipd[] has proper alignment. */
559         union {
560                 char           oti_name[48];
561                 char           oti_it_ipd[DX_IPD_MAX_SIZE];
562                 long long      oti_alignment_lieutenant;
563         };
564
565         union {
566                 char           oti_idx_ipd[DX_IPD_MAX_SIZE];
567                 long long      oti_alignment_lieutenant_colonel;
568         };
569
570         struct osd_idmap_cache oti_cache;
571
572         /* dedicated OI cache for insert (which needs inum) */
573         struct osd_idmap_cache *oti_ins_cache;
574         int                    oti_ins_cache_size;
575         int                    oti_ins_cache_used;
576
577         int                    oti_r_locks;
578         int                    oti_w_locks;
579         int                    oti_txns;
580         /** used in osd_fid_set() to put xattr */
581         struct lu_buf          oti_buf;
582         struct lu_buf          oti_big_buf;
583         /** used in osd_ea_fid_set() to set fid into common ea */
584         union {
585                 struct lustre_mdt_attrs oti_mdt_attrs;
586                 /* old LMA for compatibility */
587                 char                    oti_mdt_attrs_old[LMA_OLD_SIZE];
588                 struct filter_fid_old   oti_ff;
589                 struct filter_fid       oti_ff_new;
590         };
591         /** 0-copy IO */
592         struct osd_iobuf       oti_iobuf;
593         /* used to access objects in /O */
594         struct inode          *oti_inode;
595 #define OSD_FID_REC_SZ 32
596         char                   oti_ldp[OSD_FID_REC_SZ];
597         char                   oti_ldp2[OSD_FID_REC_SZ];
598
599         /* used by quota code */
600         union {
601 #ifdef HAVE_DQUOT_FS_DISK_QUOTA
602                 struct fs_disk_quota    oti_fdq;
603 #else
604                 struct if_dqblk         oti_dqblk;
605 #endif
606                 struct if_dqinfo        oti_dqinfo;
607         };
608         struct lquota_id_info   oti_qi;
609         struct lquota_trans     oti_quota_trans;
610         union lquota_rec        oti_quota_rec;
611         __u64                   oti_quota_id;
612         struct lu_seq_range     oti_seq_range;
613
614         /* Tracking for transaction credits, to allow debugging and optimizing
615          * cases where a large number of credits are being allocated for
616          * single transaction. */
617         unsigned int            oti_credits_before;
618         unsigned short          oti_declare_ops[OSD_OT_MAX];
619         unsigned short          oti_declare_ops_cred[OSD_OT_MAX];
620         unsigned short          oti_declare_ops_used[OSD_OT_MAX];
621 };
622
623 extern int ldiskfs_pdo;
624
625 static inline int __osd_xattr_get(struct inode *inode, struct dentry *dentry,
626                                   const char *name, void *buf, int len)
627 {
628         if (inode == NULL)
629                 return -EINVAL;
630
631         dentry->d_inode = inode;
632         dentry->d_sb = inode->i_sb;
633         return inode->i_op->getxattr(dentry, name, buf, len);
634 }
635
636 static inline int __osd_xattr_set(struct osd_thread_info *info,
637                                   struct inode *inode, const char *name,
638                                   const void *buf, int buflen, int fl)
639 {
640         struct dentry *dentry = &info->oti_child_dentry;
641
642         ll_vfs_dq_init(inode);
643         dentry->d_inode = inode;
644         dentry->d_sb = inode->i_sb;
645         return inode->i_op->setxattr(dentry, name, buf, buflen, fl);
646 }
647
648 #ifdef CONFIG_PROC_FS
649 /* osd_lproc.c */
650 extern struct lprocfs_vars lprocfs_osd_obd_vars[];
651 extern struct lprocfs_vars lprocfs_osd_module_vars[];
652 int osd_procfs_init(struct osd_device *osd, const char *name);
653 int osd_procfs_fini(struct osd_device *osd);
654 void osd_brw_stats_update(struct osd_device *osd, struct osd_iobuf *iobuf);
655 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(3, 0, 52, 0)
656 int osd_register_proc_index_in_idif(struct osd_device *osd);
657 #endif
658
659 #endif
660 int osd_statfs(const struct lu_env *env, struct dt_device *dev,
661                struct obd_statfs *sfs);
662 struct inode *osd_iget(struct osd_thread_info *info, struct osd_device *dev,
663                        struct osd_inode_id *id);
664 int osd_ea_fid_set(struct osd_thread_info *info, struct inode *inode,
665                    const struct lu_fid *fid, __u32 compat, __u32 incompat);
666 int osd_get_lma(struct osd_thread_info *info, struct inode *inode,
667                 struct dentry *dentry, struct lustre_mdt_attrs *lma);
668 void osd_add_oi_cache(struct osd_thread_info *info, struct osd_device *osd,
669                       struct osd_inode_id *id, const struct lu_fid *fid);
670 int osd_get_idif(struct osd_thread_info *info, struct inode *inode,
671                  struct dentry *dentry, struct lu_fid *fid);
672
673 int osd_obj_map_init(const struct lu_env *env, struct osd_device *osd);
674 void osd_obj_map_fini(struct osd_device *dev);
675 int osd_obj_map_lookup(struct osd_thread_info *info, struct osd_device *osd,
676                         const struct lu_fid *fid, struct osd_inode_id *id);
677 int osd_obj_map_insert(struct osd_thread_info *info, struct osd_device *osd,
678                        const struct lu_fid *fid, const struct osd_inode_id *id,
679                        handle_t *th);
680 int osd_obj_map_delete(struct osd_thread_info *info, struct osd_device *osd,
681                         const struct lu_fid *fid, handle_t *th);
682 int osd_obj_map_update(struct osd_thread_info *info, struct osd_device *osd,
683                        const struct lu_fid *fid, const struct osd_inode_id *id,
684                        handle_t *th);
685 int osd_obj_map_recover(struct osd_thread_info *info, struct osd_device *osd,
686                         struct inode *src_parent, struct dentry *src_child,
687                         const struct lu_fid *fid);
688 int osd_obj_spec_lookup(struct osd_thread_info *info, struct osd_device *osd,
689                         const struct lu_fid *fid, struct osd_inode_id *id);
690 int osd_obj_spec_insert(struct osd_thread_info *info, struct osd_device *osd,
691                         const struct lu_fid *fid, const struct osd_inode_id *id,
692                         handle_t *th);
693 int osd_obj_spec_update(struct osd_thread_info *info, struct osd_device *osd,
694                         const struct lu_fid *fid, const struct osd_inode_id *id,
695                         handle_t *th);
696
697 void osd_scrub_file_reset(struct osd_scrub *scrub, __u8 *uuid, __u64 flags);
698 int osd_scrub_file_store(struct osd_scrub *scrub);
699 char *osd_lf_fid2name(const struct lu_fid *fid);
700 int osd_scrub_start(struct osd_device *dev, __u32 flags);
701 int osd_scrub_setup(const struct lu_env *env, struct osd_device *dev);
702 void osd_scrub_cleanup(const struct lu_env *env, struct osd_device *dev);
703 int osd_oii_insert(struct osd_device *dev, struct osd_idmap_cache *oic,
704                    int insert);
705 int osd_oii_lookup(struct osd_device *dev, const struct lu_fid *fid,
706                    struct osd_inode_id *id);
707 int osd_scrub_dump(struct seq_file *m, struct osd_device *dev);
708
709 int osd_fld_lookup(const struct lu_env *env, struct osd_device *osd,
710                    u64 seq, struct lu_seq_range *range);
711
712 int osd_delete_from_remote_parent(const struct lu_env *env,
713                                   struct osd_device *osd,
714                                   struct osd_object *obj,
715                                   struct osd_thandle *oh);
716 int osd_add_to_remote_parent(const struct lu_env *env, struct osd_device *osd,
717                              struct osd_object *obj, struct osd_thandle *oh);
718 int osd_lookup_in_remote_parent(struct osd_thread_info *oti,
719                                 struct osd_device *osd,
720                                 const struct lu_fid *fid,
721                                 struct osd_inode_id *id);
722
723 int osd_ost_seq_exists(struct osd_thread_info *info, struct osd_device *osd,
724                        __u64 seq);
725 /* osd_quota_fmt.c */
726 int walk_tree_dqentry(const struct lu_env *env, struct osd_object *obj,
727                       int type, uint blk, int depth, uint index,
728                       struct osd_it_quota *it);
729 int walk_block_dqentry(const struct lu_env *env, struct osd_object *obj,
730                        int type, uint blk, uint index,
731                        struct osd_it_quota *it);
732 loff_t find_tree_dqentry(const struct lu_env *env,
733                          struct osd_object *obj, int type,
734                          qid_t dqid, uint blk, int depth,
735                          struct osd_it_quota *it);
736 /* osd_quota.c */
737 int osd_declare_qid(const struct lu_env *env, struct osd_thandle *oh,
738                     struct lquota_id_info *qi, struct osd_object *obj,
739                     bool enforce, int *flags);
740 int osd_declare_inode_qid(const struct lu_env *env, qid_t uid, qid_t gid,
741                           long long space, struct osd_thandle *oh,
742                           struct osd_object *obj, bool is_blk, int *flags,
743                           bool force);
744 const struct dt_rec *osd_quota_pack(struct osd_object *obj,
745                                     const struct dt_rec *rec,
746                                     union lquota_rec *quota_rec);
747 void osd_quota_unpack(struct osd_object *obj, const struct dt_rec *rec);
748 int osd_quota_migration(const struct lu_env *env, struct dt_object *dt);
749
750 #ifndef HAVE_I_UID_READ
751 static inline uid_t i_uid_read(const struct inode *inode)
752 {
753         return inode->i_uid;
754 }
755
756 static inline gid_t i_gid_read(const struct inode *inode)
757 {
758         return inode->i_gid;
759 }
760
761 static inline void i_uid_write(struct inode *inode, uid_t uid)
762 {
763         inode->i_uid = uid;
764 }
765
766 static inline void i_gid_write(struct inode *inode, gid_t gid)
767 {
768         inode->i_gid = gid;
769 }
770 #endif
771
772 #ifdef LDISKFS_HT_MISC
773 # define osd_journal_start_sb(sb, type, nblock) \
774                 ldiskfs_journal_start_sb(sb, type, nblock)
775 # define osd_ldiskfs_append(handle, inode, nblock) \
776                 ldiskfs_append(handle, inode, nblock)
777 # define osd_ldiskfs_find_entry(dir, name, de, inlined, lock) \
778                 __ldiskfs_find_entry(dir, name, de, inlined, lock)
779 # define osd_journal_start(inode, type, nblocks) \
780                 ldiskfs_journal_start(inode, type, nblocks)
781 # define osd_transaction_size(dev) \
782                 (osd_journal(dev)->j_max_transaction_buffers / 2)
783 #else
784 # define LDISKFS_HT_MISC        0
785 # define osd_journal_start_sb(sb, type, nblock) \
786                 ldiskfs_journal_start_sb(sb, nblock)
787
788 static inline struct buffer_head *osd_ldiskfs_append(handle_t *handle,
789                                                      struct inode *inode,
790                                                      ldiskfs_lblk_t *nblock)
791 {
792         struct buffer_head *bh;
793         int err = 0;
794
795         bh = ldiskfs_append(handle, inode, nblock, &err);
796         if (bh == NULL)
797                 bh = ERR_PTR(err);
798
799         return bh;
800 }
801
802 # define osd_ldiskfs_find_entry(dir, name, de, inlined, lock) \
803                 __ldiskfs_find_entry(dir, name, de, lock)
804 # define osd_journal_start(inode, type, nblocks) \
805                 ldiskfs_journal_start(inode, nblocks)
806 # define osd_transaction_size(dev) \
807                 (osd_journal(dev)->j_max_transaction_buffers)
808 #endif
809
810 /*
811  * Invariants, assertions.
812  */
813
814 /*
815  * XXX: do not enable this, until invariant checking code is made thread safe
816  * in the face of pdirops locking.
817  */
818 #define OSD_INVARIANT_CHECKS (0)
819
820 #if OSD_INVARIANT_CHECKS
821 static inline int osd_invariant(const struct osd_object *obj)
822 {
823         return
824                 obj != NULL &&
825                 ergo(obj->oo_inode != NULL,
826                      obj->oo_inode->i_sb == osd_sb(osd_obj2dev(obj)) &&
827                      atomic_read(&obj->oo_inode->i_count) > 0) &&
828                 ergo(obj->oo_dir != NULL &&
829                      obj->oo_dir->od_conationer.ic_object != NULL,
830                      obj->oo_dir->od_conationer.ic_object == obj->oo_inode);
831 }
832 #else
833 #define osd_invariant(obj) (1)
834 #endif
835
836 #define OSD_MAX_CACHE_SIZE OBD_OBJECT_EOF
837
838 extern const struct dt_index_operations osd_otable_ops;
839
840 static inline int osd_oi_fid2idx(struct osd_device *dev,
841                                  const struct lu_fid *fid)
842 {
843         return fid->f_seq & (dev->od_oi_count - 1);
844 }
845
846 static inline struct osd_oi *osd_fid2oi(struct osd_device *osd,
847                                         const struct lu_fid *fid)
848 {
849         LASSERTF(!fid_is_idif(fid), DFID"\n", PFID(fid));
850         LASSERTF(!fid_is_last_id(fid), DFID"\n", PFID(fid));
851         LASSERTF(osd->od_oi_table != NULL && osd->od_oi_count >= 1,
852                  DFID"\n", PFID(fid));
853         /* It can work even od_oi_count equals to 1 although it's unexpected,
854          * the only reason we set it to 1 is for performance measurement */
855         return osd->od_oi_table[osd_oi_fid2idx(osd, fid)];
856 }
857
858 extern const struct lu_device_operations  osd_lu_ops;
859
860 static inline int lu_device_is_osd(const struct lu_device *d)
861 {
862         return ergo(d != NULL && d->ld_ops != NULL, d->ld_ops == &osd_lu_ops);
863 }
864
865 static inline struct osd_device *osd_dt_dev(const struct dt_device *d)
866 {
867         LASSERT(lu_device_is_osd(&d->dd_lu_dev));
868         return container_of0(d, struct osd_device, od_dt_dev);
869 }
870
871 static inline struct osd_device *osd_dev(const struct lu_device *d)
872 {
873         LASSERT(lu_device_is_osd(d));
874         return osd_dt_dev(container_of0(d, struct dt_device, dd_lu_dev));
875 }
876
877 static inline struct osd_device *osd_obj2dev(const struct osd_object *o)
878 {
879         return osd_dev(o->oo_dt.do_lu.lo_dev);
880 }
881
882 static inline struct super_block *osd_sb(const struct osd_device *dev)
883 {
884         return dev->od_mnt->mnt_sb;
885 }
886
887 static inline int osd_object_is_root(const struct osd_object *obj)
888 {
889         return osd_sb(osd_obj2dev(obj))->s_root->d_inode == obj->oo_inode;
890 }
891
892 static inline struct osd_object *osd_obj(const struct lu_object *o)
893 {
894         LASSERT(lu_device_is_osd(o->lo_dev));
895         return container_of0(o, struct osd_object, oo_dt.do_lu);
896 }
897
898 static inline struct osd_object *osd_dt_obj(const struct dt_object *d)
899 {
900         return osd_obj(&d->do_lu);
901 }
902
903 static inline struct lu_device *osd2lu_dev(struct osd_device *osd)
904 {
905         return &osd->od_dt_dev.dd_lu_dev;
906 }
907
908 static inline journal_t *osd_journal(const struct osd_device *dev)
909 {
910         return LDISKFS_SB(osd_sb(dev))->s_journal;
911 }
912
913 static inline struct seq_server_site *osd_seq_site(struct osd_device *osd)
914 {
915         return osd->od_dt_dev.dd_lu_dev.ld_site->ld_seq_site;
916 }
917
918 static inline char *osd_name(struct osd_device *osd)
919 {
920         return osd->od_dt_dev.dd_lu_dev.ld_obd->obd_name;
921 }
922
923 static inline bool osd_is_ea_inode(struct inode *inode)
924 {
925         return !!(LDISKFS_I(inode)->i_flags & LDISKFS_EA_INODE_FL);
926 }
927
928 extern const struct dt_body_operations osd_body_ops;
929 extern struct lu_context_key osd_key;
930
931 static inline struct osd_thread_info *osd_oti_get(const struct lu_env *env)
932 {
933         return lu_context_key_get(&env->le_ctx, &osd_key);
934 }
935
936 extern const struct dt_body_operations osd_body_ops_new;
937
938 /**
939  * IAM Iterator
940  */
941 static inline
942 struct iam_path_descr *osd_it_ipd_get(const struct lu_env *env,
943                                       const struct iam_container *bag)
944 {
945         return bag->ic_descr->id_ops->id_ipd_alloc(bag,
946                                            osd_oti_get(env)->oti_it_ipd);
947 }
948
949 static inline
950 struct iam_path_descr *osd_idx_ipd_get(const struct lu_env *env,
951                                        const struct iam_container *bag)
952 {
953         return bag->ic_descr->id_ops->id_ipd_alloc(bag,
954                                            osd_oti_get(env)->oti_idx_ipd);
955 }
956
957 static inline void osd_ipd_put(const struct lu_env *env,
958                                const struct iam_container *bag,
959                                struct iam_path_descr *ipd)
960 {
961         bag->ic_descr->id_ops->id_ipd_free(ipd);
962 }
963
964 int osd_calc_bkmap_credits(struct super_block *sb, struct inode *inode,
965                            const loff_t size, const loff_t pos,
966                            const int blocks);
967
968 int osd_ldiskfs_read(struct inode *inode, void *buf, int size, loff_t *offs);
969 int osd_ldiskfs_write_record(struct inode *inode, void *buf, int bufsize,
970                              int write_NUL, loff_t *offs, handle_t *handle);
971
972 static inline
973 struct dentry *osd_child_dentry_by_inode(const struct lu_env *env,
974                                          struct inode *inode,
975                                          const char *name, const int namelen)
976 {
977         struct osd_thread_info *info = osd_oti_get(env);
978         struct dentry *child_dentry = &info->oti_child_dentry;
979         struct dentry *obj_dentry = &info->oti_obj_dentry;
980
981         obj_dentry->d_inode = inode;
982         obj_dentry->d_sb = inode->i_sb;
983         obj_dentry->d_name.hash = 0;
984
985         child_dentry->d_name.hash = 0;
986         child_dentry->d_parent = obj_dentry;
987         child_dentry->d_name.name = name;
988         child_dentry->d_name.len = namelen;
989         return child_dentry;
990 }
991
992 extern int osd_trans_declare_op2rb[];
993 extern int ldiskfs_track_declares_assert;
994 void osd_trans_dump_creds(const struct lu_env *env, struct thandle *th);
995
996 static inline void osd_trans_declare_op(const struct lu_env *env,
997                                         struct osd_thandle *oh,
998                                         unsigned int op, int credits)
999 {
1000         struct osd_thread_info *oti = osd_oti_get(env);
1001
1002         LASSERT(oh->ot_handle == NULL);
1003         if (unlikely(op >= OSD_OT_MAX)) {
1004                 if (unlikely(ldiskfs_track_declares_assert)) {
1005                         LASSERT(op < OSD_OT_MAX);
1006                 } else {
1007                         CWARN("%s: Invalid operation index %d\n",
1008                               osd_name(osd_dt_dev(oh->ot_super.th_dev)), op);
1009                         libcfs_debug_dumpstack(NULL);
1010                 }
1011         } else {
1012                 oti->oti_declare_ops[op]++;
1013                 oti->oti_declare_ops_cred[op] += credits;
1014         }
1015         oh->ot_credits += credits;
1016 }
1017
1018 static inline void osd_trans_exec_op(const struct lu_env *env,
1019                                      struct thandle *th, unsigned int op)
1020 {
1021         struct osd_thread_info *oti = osd_oti_get(env);
1022         struct osd_thandle     *oh  = container_of(th, struct osd_thandle,
1023                                                    ot_super);
1024         unsigned int            rb, left;
1025
1026         LASSERT(oh->ot_handle != NULL);
1027         if (unlikely(op >= OSD_OT_MAX)) {
1028                 if (unlikely(ldiskfs_track_declares_assert))
1029                         LASSERT(op < OSD_OT_MAX);
1030                 else {
1031                         CWARN("%s: Invalid operation index %d\n",
1032                               osd_name(osd_dt_dev(oh->ot_super.th_dev)), op);
1033                         libcfs_debug_dumpstack(NULL);
1034                         return;
1035                 }
1036         }
1037
1038         /* find rollback (or reverse) operation for the given one
1039          * such an operation doesn't require additional credits
1040          * as the same set of blocks are modified */
1041         rb = osd_trans_declare_op2rb[op];
1042
1043         /* check whether credits for this operation were reserved at all */
1044         if (unlikely(oti->oti_declare_ops_cred[op] == 0 &&
1045                      oti->oti_declare_ops_cred[rb] == 0)) {
1046                 /* the API is not perfect yet: CREATE does REF_ADD internally
1047                  * while DESTROY does not. To rollback CREATE the callers
1048                  * needs to call REF_DEL+DESTROY which is hard to detect using
1049                  * a simple table of rollback operations */
1050                 if (op == OSD_OT_REF_DEL &&
1051                     oti->oti_declare_ops_cred[OSD_OT_CREATE] > 0)
1052                         goto proceed;
1053                 if (op == OSD_OT_REF_ADD &&
1054                     oti->oti_declare_ops_cred[OSD_OT_DESTROY] > 0)
1055                         goto proceed;
1056                 osd_trans_dump_creds(env, th);
1057                 CERROR("%s: op = %d, rb = %d\n",
1058                        osd_name(osd_dt_dev(oh->ot_super.th_dev)), op, rb);
1059                 if (unlikely(ldiskfs_track_declares_assert))
1060                         LBUG();
1061         }
1062
1063 proceed:
1064         /* remember how many credits we have unused before the operation */
1065         oti->oti_credits_before = oh->ot_handle->h_buffer_credits;
1066         left = oti->oti_declare_ops_cred[op] - oti->oti_declare_ops_used[op];
1067         if (unlikely(oti->oti_credits_before < left)) {
1068                 osd_trans_dump_creds(env, th);
1069                 CERROR("%s: op = %d, rb = %d\n",
1070                        osd_name(osd_dt_dev(oh->ot_super.th_dev)), op, rb);
1071                 /* on a very small fs (testing?) it's possible that
1072                  * the transaction can't fit 1/4 of journal, so we
1073                  * just request less credits (see osd_trans_start()).
1074                  * ignore the same case here */
1075                 rb = osd_transaction_size(osd_dt_dev(th->th_dev));
1076                 if (unlikely(oh->ot_credits < rb)) {
1077                         if (unlikely(ldiskfs_track_declares_assert))
1078                                 LBUG();
1079                 }
1080         }
1081 }
1082
1083 static inline void osd_trans_exec_check(const struct lu_env *env,
1084                                         struct thandle *th,
1085                                         unsigned int op)
1086 {
1087         struct osd_thread_info *oti = osd_oti_get(env);
1088         struct osd_thandle     *oh  = container_of(th, struct osd_thandle,
1089                                                    ot_super);
1090         int                     used, over, quota;
1091
1092         /* how many credits have been used by the operation */
1093         used = oti->oti_credits_before - oh->ot_handle->h_buffer_credits;
1094
1095         if (unlikely(used < 0)) {
1096                 /* if some block was allocated and released in the same
1097                  * transaction, then it won't be a part of the transaction
1098                  * and delta can be negative */
1099                 return;
1100         }
1101
1102         if (used == 0) {
1103                 /* rollback operations (e.g. when we destroy just created
1104                  * object) should not consume any credits. there is no point
1105                  * to confuse the checks below */
1106                 return;
1107         }
1108
1109         oti->oti_declare_ops_used[op] += used;
1110         if (oti->oti_declare_ops_used[op] <= oti->oti_declare_ops_cred[op])
1111                 return;
1112
1113         /* we account quota for a whole transaction and any operation can
1114          * consume corresponding credits */
1115         over = oti->oti_declare_ops_used[op] -
1116                 oti->oti_declare_ops_cred[op];
1117         quota = oti->oti_declare_ops_cred[OSD_OT_QUOTA] -
1118                 oti->oti_declare_ops_used[OSD_OT_QUOTA];
1119         if (over <= quota) {
1120                 /* probably that credits were consumed by
1121                  * quota indirectly (in the depths of ldiskfs) */
1122                 oti->oti_declare_ops_used[OSD_OT_QUOTA] += over;
1123                 oti->oti_declare_ops_used[op] -= over;
1124         } else {
1125                 CWARN("op %d: used %u, used now %u, reserved %u\n",
1126                       op, oti->oti_declare_ops_used[op], used,
1127                       oti->oti_declare_ops_cred[op]);
1128                 osd_trans_dump_creds(env, th);
1129                 if (unlikely(ldiskfs_track_declares_assert))
1130                         LBUG();
1131         }
1132 }
1133
1134 /**
1135  * Helper function to pack the fid, ldiskfs stores fid in packed format.
1136  */
1137 static inline
1138 void osd_fid_pack(struct osd_fid_pack *pack, const struct dt_rec *fid,
1139                   struct lu_fid *befider)
1140 {
1141         fid_cpu_to_be(befider, (struct lu_fid *)fid);
1142         memcpy(pack->fp_area, befider, sizeof(*befider));
1143         pack->fp_len =  sizeof(*befider) + 1;
1144 }
1145
1146 static inline
1147 int osd_fid_unpack(struct lu_fid *fid, const struct osd_fid_pack *pack)
1148 {
1149         int result;
1150
1151         result = 0;
1152         switch (pack->fp_len) {
1153         case sizeof *fid + 1:
1154                 memcpy(fid, pack->fp_area, sizeof *fid);
1155                 fid_be_to_cpu(fid, fid);
1156                 break;
1157         default:
1158                 CERROR("Unexpected packed fid size: %d\n", pack->fp_len);
1159                 result = -EIO;
1160         }
1161         return result;
1162 }
1163
1164 /**
1165  * Quota/Accounting handling
1166  */
1167 extern const struct dt_index_operations osd_acct_index_ops;
1168 int osd_acct_obj_lookup(struct osd_thread_info *info, struct osd_device *osd,
1169                         const struct lu_fid *fid, struct osd_inode_id *id);
1170
1171 /* copy from fs/ext4/dir.c */
1172 static inline int is_32bit_api(void)
1173 {
1174 #ifdef CONFIG_COMPAT
1175         return is_compat_task();
1176 #else
1177         return (BITS_PER_LONG == 32);
1178 #endif
1179 }
1180
1181 static inline loff_t ldiskfs_get_htree_eof(struct file *filp)
1182 {
1183         if ((filp->f_mode & FMODE_32BITHASH) ||
1184             (!(filp->f_mode & FMODE_64BITHASH) && is_32bit_api()))
1185                 return LDISKFS_HTREE_EOF_32BIT;
1186         else
1187                 return LDISKFS_HTREE_EOF_64BIT;
1188 }
1189
1190 static inline int fid_is_internal(const struct lu_fid *fid)
1191 {
1192         return (!fid_is_namespace_visible(fid) && !fid_is_idif(fid));
1193 }
1194
1195 static inline unsigned long osd_remote_parent_ino(struct osd_device *dev)
1196 {
1197         return dev->od_mdt_map->omm_remote_parent->d_inode->i_ino;
1198 }
1199
1200 void ldiskfs_inc_count(handle_t *handle, struct inode *inode);
1201 void ldiskfs_dec_count(handle_t *handle, struct inode *inode);
1202
1203 void osd_fini_iobuf(struct osd_device *d, struct osd_iobuf *iobuf);
1204
1205 #endif /* _OSD_INTERNAL_H */