Whamcloud - gitweb
b6992090867bc699af06e3b5bb7934206c5a4a15
[fs/lustre-release.git] / lustre / include / obd.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #ifndef __OBD_H
38 #define __OBD_H
39
40 #if defined(__linux__)
41 #include <linux/obd.h>
42 #elif defined(__APPLE__)
43 #include <darwin/obd.h>
44 #elif defined(__WINNT__)
45 #include <winnt/obd.h>
46 #else
47 #error Unsupported operating system.
48 #endif
49
50 #define IOC_OSC_TYPE         'h'
51 #define IOC_OSC_MIN_NR       20
52 #define IOC_OSC_SET_ACTIVE   _IOWR(IOC_OSC_TYPE, 21, struct obd_device *)
53 #define IOC_OSC_MAX_NR       50
54
55 #define IOC_MDC_TYPE         'i'
56 #define IOC_MDC_MIN_NR       20
57 /* Moved to lustre_user.h
58 #define IOC_MDC_LOOKUP       _IOWR(IOC_MDC_TYPE, 20, struct obd_ioctl_data *)
59 #define IOC_MDC_GETSTRIPE    _IOWR(IOC_MDC_TYPE, 21, struct lov_mds_md *) */
60 #define IOC_MDC_MAX_NR       50
61
62 #include <lustre/lustre_idl.h>
63 #include <lu_object.h>
64 #include <lu_ref.h>
65 #include <lustre_lib.h>
66 #include <lustre_export.h>
67 #include <lustre_quota.h>
68 #include <lustre_fld.h>
69 #include <lustre_capa.h>
70 #include <class_hash.h>
71
72 #include <libcfs/bitmap.h>
73
74
75 #define MAX_OBD_DEVICES 8192
76
77 /* this is really local to the OSC */
78 struct loi_oap_pages {
79         struct list_head        lop_pending;
80         struct list_head        lop_urgent;
81         struct list_head        lop_pending_group;
82         int                     lop_num_pending;
83 };
84
85 struct osc_async_rc {
86         int     ar_rc;
87         int     ar_force_sync;
88         __u64   ar_min_xid;
89 };
90
91 struct lov_oinfo {                 /* per-stripe data structure */
92         __u64 loi_id;              /* object ID on the target OST */
93         __u64 loi_gr;              /* object group on the target OST */
94         int loi_ost_idx;           /* OST stripe index in lov_tgt_desc->tgts */
95         int loi_ost_gen;           /* generation of this loi_ost_idx */
96
97         /* used by the osc to keep track of what objects to build into rpcs */
98         struct loi_oap_pages loi_read_lop;
99         struct loi_oap_pages loi_write_lop;
100         /* _cli_ is poorly named, it should be _ready_ */
101         struct list_head loi_cli_item;
102         struct list_head loi_write_item;
103         struct list_head loi_read_item;
104
105         unsigned long loi_kms_valid:1;
106         __u64 loi_kms;             /* known minimum size */
107         struct ost_lvb loi_lvb;
108         struct osc_async_rc     loi_ar;
109 };
110
111 static inline void loi_kms_set(struct lov_oinfo *oinfo, __u64 kms)
112 {
113         oinfo->loi_kms = kms;
114         oinfo->loi_kms_valid = 1;
115 }
116
117 static inline void loi_init(struct lov_oinfo *loi)
118 {
119         CFS_INIT_LIST_HEAD(&loi->loi_read_lop.lop_pending);
120         CFS_INIT_LIST_HEAD(&loi->loi_read_lop.lop_urgent);
121         CFS_INIT_LIST_HEAD(&loi->loi_read_lop.lop_pending_group);
122         CFS_INIT_LIST_HEAD(&loi->loi_write_lop.lop_pending);
123         CFS_INIT_LIST_HEAD(&loi->loi_write_lop.lop_urgent);
124         CFS_INIT_LIST_HEAD(&loi->loi_write_lop.lop_pending_group);
125         CFS_INIT_LIST_HEAD(&loi->loi_cli_item);
126         CFS_INIT_LIST_HEAD(&loi->loi_write_item);
127         CFS_INIT_LIST_HEAD(&loi->loi_read_item);
128 }
129
130 /*extent array item for describing the joined file extent info*/
131 struct lov_extent {
132         __u64 le_start;            /* extent start */
133         __u64 le_len;              /* extent length */
134         int   le_loi_idx;          /* extent #1 loi's index in lsm loi array */
135         int   le_stripe_count;     /* extent stripe count*/
136 };
137
138 /*Lov array info for describing joined file array EA info*/
139 struct lov_array_info {
140         struct llog_logid    lai_array_id;    /* MDS med llog object id */
141         unsigned             lai_ext_count; /* number of extent count */
142         struct lov_extent    *lai_ext_array; /* extent desc array */
143 };
144
145 struct lov_stripe_md {
146         spinlock_t       lsm_lock;
147         pid_t            lsm_lock_owner; /* debugging */
148
149         struct {
150                 /* Public members. */
151                 __u64 lw_object_id;        /* lov object id */
152                 __u64 lw_object_gr;        /* lov object group */
153                 __u64 lw_maxbytes;         /* maximum possible file size */
154
155                 /* LOV-private members start here -- only for use in lov/. */
156                 __u32 lw_magic;
157                 __u32 lw_stripe_size;      /* size of the stripe */
158                 __u32 lw_pattern;          /* striping pattern (RAID0, RAID1) */
159                 unsigned lw_stripe_count;  /* number of objects being striped over */
160                 char  lw_pool_name[LOV_MAXPOOLNAME]; /* pool name */
161         } lsm_wire;
162
163         struct lov_array_info *lsm_array; /*Only for joined file array info*/
164         struct lov_oinfo *lsm_oinfo[0];
165 };
166
167 #define lsm_object_id    lsm_wire.lw_object_id
168 #define lsm_object_gr    lsm_wire.lw_object_gr
169 #define lsm_maxbytes     lsm_wire.lw_maxbytes
170 #define lsm_magic        lsm_wire.lw_magic
171 #define lsm_stripe_size  lsm_wire.lw_stripe_size
172 #define lsm_pattern      lsm_wire.lw_pattern
173 #define lsm_stripe_count lsm_wire.lw_stripe_count
174 #define lsm_pool_name    lsm_wire.lw_pool_name
175
176 struct obd_info;
177
178 typedef int (*obd_enqueue_update_f)(void *cookie, int rc);
179
180 /* obd info for a particular level (lov, osc). */
181 struct obd_info {
182         /* Lock policy. It keeps an extent which is specific for a particular
183          * OSC. (e.g. lov_prep_enqueue_set initialises extent of the policy,
184          * and osc_enqueue passes it into ldlm_lock_match & ldlm_cli_enqueue. */
185         ldlm_policy_data_t      oi_policy;
186         /* Flags used for set request specific flags:
187            - while lock handling, the flags obtained on the enqueue
188            request are set here.
189            - while stats, the flags used for control delay/resend.
190          */
191         int                     oi_flags;
192         /* Lock handle specific for every OSC lock. */
193         struct lustre_handle   *oi_lockh;
194         /* lsm data specific for every OSC. */
195         struct lov_stripe_md   *oi_md;
196         /* obdo data specific for every OSC, if needed at all. */
197         struct obdo            *oi_oa;
198         /* statfs data specific for every OSC, if needed at all. */
199         struct obd_statfs      *oi_osfs;
200         /* An update callback which is called to update some data on upper
201          * level. E.g. it is used for update lsm->lsm_oinfo at every recieved
202          * request in osc level for enqueue requests. It is also possible to
203          * update some caller data from LOV layer if needed. */
204         obd_enqueue_update_f    oi_cb_up;
205         /* oss capability, its type is obd_capa in client to avoid copy.
206          * in contrary its type is lustre_capa in OSS. */
207         void                   *oi_capa;
208 };
209
210 /* compare all relevant fields. */
211 static inline int lov_stripe_md_cmp(struct lov_stripe_md *m1,
212                                     struct lov_stripe_md *m2)
213 {
214         /*
215          * ->lsm_wire contains padding, but it should be zeroed out during
216          * allocation.
217          */
218         return memcmp(&m1->lsm_wire, &m2->lsm_wire, sizeof m1->lsm_wire);
219 }
220
221 void lov_stripe_lock(struct lov_stripe_md *md);
222 void lov_stripe_unlock(struct lov_stripe_md *md);
223
224 struct obd_type {
225         struct list_head typ_chain;
226         struct obd_ops *typ_dt_ops;
227         struct md_ops *typ_md_ops;
228         cfs_proc_dir_entry_t *typ_procroot;
229         char *typ_name;
230         int  typ_refcnt;
231         struct lu_device_type *typ_lu;
232         spinlock_t obd_type_lock;
233 };
234
235 struct brw_page {
236         obd_off  off;
237         cfs_page_t *pg;
238         int count;
239         obd_flag flag;
240 };
241
242 /* Individual type definitions */
243
244 struct ost_server_data;
245
246 /* hold common fields for "target" device */
247 struct obd_device_target {
248         struct super_block       *obt_sb;
249         atomic_t                  obt_quotachecking;
250         struct lustre_quota_ctxt  obt_qctxt;
251         lustre_quota_version_t    obt_qfmt;
252         struct rw_semaphore       obt_rwsem;
253 };
254
255 /* llog contexts */
256 enum llog_ctxt_id {
257         LLOG_CONFIG_ORIG_CTXT  =  0,
258         LLOG_CONFIG_REPL_CTXT,
259         LLOG_MDS_OST_ORIG_CTXT,
260         LLOG_MDS_OST_REPL_CTXT,
261         LLOG_SIZE_ORIG_CTXT,
262         LLOG_SIZE_REPL_CTXT,
263         LLOG_RD1_ORIG_CTXT,
264         LLOG_RD1_REPL_CTXT,
265         LLOG_TEST_ORIG_CTXT,
266         LLOG_TEST_REPL_CTXT,
267         LLOG_LOVEA_ORIG_CTXT,
268         LLOG_LOVEA_REPL_CTXT,
269         LLOG_CHANGELOG_ORIG_CTXT,      /**< changelog generation on mdd */
270         LLOG_CHANGELOG_REPL_CTXT,      /**< changelog access on clients */
271         LLOG_CHANGELOG_USER_ORIG_CTXT, /**< for multiple changelog consumers */
272         LLOG_MAX_CTXTS
273 };
274
275 #define FILTER_SUBDIR_COUNT      32            /* set to zero for no subdirs */
276
277 struct filter_subdirs {
278        cfs_dentry_t *dentry[FILTER_SUBDIR_COUNT];
279 };
280
281
282 struct filter_ext {
283         __u64                fe_start;
284         __u64                fe_end;
285 };
286
287 struct filter_obd {
288         /* NB this field MUST be first */
289         struct obd_device_target fo_obt;
290         const char          *fo_fstype;
291         struct vfsmount     *fo_vfsmnt;
292
293         int                  fo_group_count;
294         cfs_dentry_t        *fo_dentry_O;
295         cfs_dentry_t       **fo_dentry_O_groups;
296         struct filter_subdirs   *fo_dentry_O_sub;
297         struct semaphore     fo_init_lock;      /* group initialization lock */
298         int                  fo_committed_group;
299
300
301         spinlock_t           fo_objidlock;      /* protect fo_lastobjid */
302         spinlock_t           fo_translock;      /* protect fsd_last_transno */
303         struct file         *fo_rcvd_filp;
304         struct file         *fo_health_check_filp;
305         struct lr_server_data *fo_fsd;
306         unsigned long       *fo_last_rcvd_slots;
307         __u64                fo_mount_count;
308
309         unsigned long        fo_destroys_in_progress;
310         struct semaphore     fo_create_locks[FILTER_SUBDIR_COUNT];
311
312         struct list_head     fo_export_list;
313         int                  fo_subdir_count;
314
315         obd_size             fo_tot_dirty;      /* protected by obd_osfs_lock */
316         obd_size             fo_tot_granted;    /* all values in bytes */
317         obd_size             fo_tot_pending;
318
319         obd_size             fo_readcache_max_filesize;
320         int                  fo_read_cache;
321         int                  fo_writethrough_cache;
322
323         struct obd_import   *fo_mdc_imp;
324         struct obd_uuid      fo_mdc_uuid;
325         struct lustre_handle fo_mdc_conn;
326         struct file        **fo_last_objid_files;
327         __u64               *fo_last_objids; /* last created objid for groups,
328                                               * protected by fo_objidlock */
329
330         struct semaphore     fo_alloc_lock;
331
332         atomic_t             fo_r_in_flight;
333         atomic_t             fo_w_in_flight;
334
335         /*
336          * per-filter pool of kiobuf's allocated by filter_common_setup() and
337          * torn down by filter_cleanup(). Contains OST_NUM_THREADS elements of
338          * which ->fo_iobuf_count were allocated.
339          *
340          * This pool contains kiobuf used by
341          * filter_{prep,commit}rw_{read,write}() and is shared by all OST
342          * threads.
343          *
344          * Locking: none, each OST thread uses only one element, determined by
345          * its "ordinal number", ->t_id.
346          */
347         struct filter_iobuf    **fo_iobuf_pool;
348         int                      fo_iobuf_count;
349
350         struct list_head         fo_llog_list;
351         spinlock_t               fo_llog_list_lock;
352
353         struct brw_stats         fo_filter_stats;
354         struct lustre_quota_ctxt fo_quota_ctxt;
355         spinlock_t               fo_quotacheck_lock;
356         atomic_t                 fo_quotachecking;
357
358         int                      fo_fmd_max_num; /* per exp filter_mod_data */
359         int                      fo_fmd_max_age; /* jiffies to fmd expiry */
360
361         /* sptlrpc stuff */
362         rwlock_t                 fo_sptlrpc_lock;
363         struct sptlrpc_rule_set  fo_sptlrpc_rset;
364
365         /* capability related */
366         unsigned int             fo_fl_oss_capa;
367         struct list_head         fo_capa_keys;
368         struct hlist_head       *fo_capa_hash;
369         struct llog_commit_master *fo_lcm;
370         int                      fo_sec_level;
371 };
372
373 #define OSC_MAX_RIF_DEFAULT       8
374 #define OSC_MAX_RIF_MAX         256
375 #define OSC_MAX_DIRTY_DEFAULT  (OSC_MAX_RIF_DEFAULT * 4)
376 #define OSC_MAX_DIRTY_MB_MAX   2048     /* arbitrary, but < MAX_LONG bytes */
377 #define OSC_DEFAULT_RESENDS      10
378
379 #define MDC_MAX_RIF_DEFAULT       8
380 #define MDC_MAX_RIF_MAX         512
381
382 struct mdc_rpc_lock;
383 struct obd_import;
384 struct client_obd {
385         struct rw_semaphore      cl_sem;
386         struct obd_uuid          cl_target_uuid;
387         struct obd_import       *cl_import; /* ptlrpc connection state */
388         int                      cl_conn_count;
389         /* max_mds_easize is purely a performance thing so we don't have to
390          * call obd_size_diskmd() all the time. */
391         int                      cl_default_mds_easize;
392         int                      cl_max_mds_easize;
393         int                      cl_max_mds_cookiesize;
394
395         enum lustre_sec_part     cl_sp_me;
396         enum lustre_sec_part     cl_sp_to;
397         struct sptlrpc_flavor    cl_flvr_mgc;   /* fixed flavor of mgc->mgs */
398
399         //struct llog_canceld_ctxt *cl_llcd; /* it's included by obd_llog_ctxt */
400         void                    *cl_llcd_offset;
401
402         /* the grant values are protected by loi_list_lock below */
403         long                     cl_dirty;         /* all _dirty_ in bytes */
404         long                     cl_dirty_max;     /* allowed w/o rpc */
405         long                     cl_dirty_transit; /* dirty synchronous */
406         long                     cl_avail_grant;   /* bytes of credit for ost */
407         long                     cl_lost_grant;    /* lost credits (trunc) */
408         struct list_head         cl_cache_waiters; /* waiting for cache/grant */
409
410         /* keep track of objects that have lois that contain pages which
411          * have been queued for async brw.  this lock also protects the
412          * lists of osc_client_pages that hang off of the loi */
413         /*
414          * ->cl_loi_list_lock protects consistency of
415          * ->cl_loi_{ready,read,write}_list. ->ap_make_ready() and
416          * ->ap_completion() call-backs are executed under this lock. As we
417          * cannot guarantee that these call-backs never block on all platforms
418          * (as a matter of fact they do block on Mac OS X), type of
419          * ->cl_loi_list_lock is platform dependent: it's a spin-lock on Linux
420          * and blocking mutex on Mac OS X. (Alternative is to make this lock
421          * blocking everywhere, but we don't want to slow down fast-path of
422          * our main platform.)
423          *
424          * Exact type of ->cl_loi_list_lock is defined in arch/obd.h together
425          * with client_obd_list_{un,}lock() and
426          * client_obd_list_lock_{init,done}() functions.
427          */
428         client_obd_lock_t        cl_loi_list_lock;
429         struct list_head         cl_loi_ready_list;
430         struct list_head         cl_loi_write_list;
431         struct list_head         cl_loi_read_list;
432         int                      cl_r_in_flight;
433         int                      cl_w_in_flight;
434         /* just a sum of the loi/lop pending numbers to be exported by /proc */
435         int                      cl_pending_w_pages;
436         int                      cl_pending_r_pages;
437         int                      cl_max_pages_per_rpc;
438         int                      cl_max_rpcs_in_flight;
439         struct obd_histogram     cl_read_rpc_hist;
440         struct obd_histogram     cl_write_rpc_hist;
441         struct obd_histogram     cl_read_page_hist;
442         struct obd_histogram     cl_write_page_hist;
443         struct obd_histogram     cl_read_offset_hist;
444         struct obd_histogram     cl_write_offset_hist;
445
446         /* number of in flight destroy rpcs is limited to max_rpcs_in_flight */
447         atomic_t                 cl_destroy_in_flight;
448         cfs_waitq_t              cl_destroy_waitq;
449
450         struct mdc_rpc_lock     *cl_rpc_lock;
451         struct mdc_rpc_lock     *cl_setattr_lock;
452         struct mdc_rpc_lock     *cl_close_lock;
453         struct osc_creator       cl_oscc;
454
455         /* mgc datastruct */
456         struct semaphore         cl_mgc_sem;
457         struct vfsmount         *cl_mgc_vfsmnt;
458         struct dentry           *cl_mgc_configs_dir;
459         atomic_t                 cl_mgc_refcount;
460         struct obd_export       *cl_mgc_mgsexp;
461
462         /* checksumming for data sent over the network */
463         unsigned int             cl_checksum:1; /* 0 = disabled, 1 = enabled */
464         /* supported checksum types that are worked out at connect time */
465         __u32                    cl_supp_cksum_types;
466         /* checksum algorithm to be used */
467         cksum_type_t             cl_cksum_type;
468
469         /* also protected by the poorly named _loi_list_lock lock above */
470         struct osc_async_rc      cl_ar;
471
472         /* used by quotacheck */
473         int                      cl_qchk_stat; /* quotacheck stat of the peer */
474
475         /* sequence manager */
476         struct lu_client_seq    *cl_seq;
477
478         atomic_t                 cl_resends; /* resend count */
479 };
480 #define obd2cli_tgt(obd) ((char *)(obd)->u.cli.cl_target_uuid.uuid)
481
482 #define CL_NOT_QUOTACHECKED 1   /* client->cl_qchk_stat init value */
483
484 struct mgs_obd {
485         struct ptlrpc_service           *mgs_service;
486         struct vfsmount                 *mgs_vfsmnt;
487         struct super_block              *mgs_sb;
488         struct dentry                   *mgs_configs_dir;
489         struct dentry                   *mgs_fid_de;
490         struct list_head                 mgs_fs_db_list;
491         struct semaphore                 mgs_sem;
492         cfs_proc_dir_entry_t            *mgs_proc_live;
493 };
494
495 struct mds_obd {
496         /* NB this field MUST be first */
497         struct obd_device_target         mds_obt;
498         struct ptlrpc_service           *mds_service;
499         struct ptlrpc_service           *mds_setattr_service;
500         struct ptlrpc_service           *mds_readpage_service;
501         struct vfsmount                 *mds_vfsmnt;
502         cfs_dentry_t                    *mds_fid_de;
503         int                              mds_max_mdsize;
504         int                              mds_max_cookiesize;
505         struct file                     *mds_rcvd_filp;
506         spinlock_t                       mds_transno_lock;
507         __u64                            mds_last_transno;
508         __u64                            mds_mount_count;
509         __u64                            mds_io_epoch;
510         unsigned long                    mds_atime_diff;
511         struct semaphore                 mds_epoch_sem;
512         struct ll_fid                    mds_rootfid;
513         struct lr_server_data           *mds_server_data;
514         cfs_dentry_t                    *mds_pending_dir;
515         cfs_dentry_t                    *mds_logs_dir;
516         cfs_dentry_t                    *mds_objects_dir;
517         struct llog_handle              *mds_cfg_llh;
518         struct obd_device               *mds_osc_obd; /* XXX lov_obd */
519         struct obd_uuid                  mds_lov_uuid;
520         char                            *mds_profile;
521         struct obd_export               *mds_osc_exp; /* XXX lov_exp */
522         struct lov_desc                  mds_lov_desc;
523         __u32                            mds_id;
524
525         /* mark pages dirty for write. */
526         bitmap_t                        *mds_lov_page_dirty;
527         /* array for store pages with obd_id */
528         void                           **mds_lov_page_array;
529         /* file for store objid */
530         struct file                     *mds_lov_objid_filp;
531         __u32                            mds_lov_objid_count;
532         __u32                            mds_lov_objid_max_index;
533         __u32                            mds_lov_objid_lastpage;
534         __u32                            mds_lov_objid_lastidx;
535
536         struct file                     *mds_health_check_filp;
537         unsigned long                   *mds_client_bitmap;
538 //        struct upcall_cache             *mds_group_hash;
539
540         struct lustre_quota_info         mds_quota_info;
541         struct semaphore                 mds_qonoff_sem;
542         struct semaphore                 mds_health_sem;
543         unsigned long                    mds_fl_user_xattr:1,
544                                          mds_fl_acl:1,
545                                          mds_evict_ost_nids:1,
546                                          mds_fl_cfglog:1,
547                                          mds_fl_synced:1,
548                                          mds_quota:1,
549                                          mds_fl_target:1; /* mds have one or
550                                                            * more targets */
551
552         struct upcall_cache             *mds_identity_cache;
553
554         /* for capability keys update */
555         struct lustre_capa_key          *mds_capa_keys;
556         struct rw_semaphore              mds_notify_lock;
557 };
558
559 /* lov objid */
560 extern __u32 mds_max_ost_index;
561
562 #define MDS_LOV_ALLOC_SIZE (CFS_PAGE_SIZE)
563
564 #define OBJID_PER_PAGE() (MDS_LOV_ALLOC_SIZE / sizeof(obd_id))
565
566 #define MDS_LOV_OBJID_PAGES_COUNT (mds_max_ost_index/OBJID_PER_PAGE())
567
568 extern int mds_lov_init_objids(struct obd_device *obd);
569 extern void mds_lov_destroy_objids(struct obd_device *obd);
570
571 struct obd_id_info {
572         __u32   idx;
573         obd_id  *data;
574 };
575
576 /* */
577
578 struct echo_obd {
579         struct obdo          eo_oa;
580         spinlock_t           eo_lock;
581         __u64                eo_lastino;
582         struct lustre_handle eo_nl_lock;
583         atomic_t             eo_prep;
584 };
585
586 struct ost_obd {
587         struct ptlrpc_service *ost_service;
588         struct ptlrpc_service *ost_create_service;
589         struct ptlrpc_service *ost_io_service;
590         struct semaphore       ost_health_sem;
591 };
592
593 struct echo_client_obd {
594         struct obd_export   *ec_exp;   /* the local connection to osc/lov */
595         spinlock_t           ec_lock;
596         struct list_head     ec_objects;
597         struct list_head     ec_locks;
598         int                  ec_nstripes;
599         __u64                ec_unique;
600 };
601
602 struct lov_qos_oss {
603         struct obd_uuid     lqo_uuid;       /* ptlrpc's c_remote_uuid */
604         struct list_head    lqo_oss_list;   /* link to lov_qos */
605         __u64               lqo_bavail;     /* total bytes avail on OSS */
606         __u64               lqo_penalty;    /* current penalty */
607         __u64               lqo_penalty_per_obj; /* penalty decrease every obj*/
608         time_t              lqo_used;       /* last used time, seconds */
609         __u32               lqo_ost_count;  /* number of osts on this oss */
610 };
611
612 struct ltd_qos {
613         struct lov_qos_oss *ltq_oss;         /* oss info */
614         __u64               ltq_penalty;     /* current penalty */
615         __u64               ltq_penalty_per_obj; /* penalty decrease every obj*/
616         __u64               ltq_weight;      /* net weighting */
617         time_t              ltq_used;        /* last used time, seconds */
618         unsigned int        ltq_usable:1;    /* usable for striping */
619 };
620
621 /* Generic subset of OSTs */
622 struct ost_pool {
623         __u32              *op_array;        /* array of index of
624                                                 lov_obd->lov_tgts */
625         unsigned int        op_count;        /* number of OSTs in the array */
626         unsigned int        op_size;         /* allocated size of lp_array */
627         struct rw_semaphore op_rw_sem;       /* to protect ost_pool use */
628 };
629
630 /* Round-robin allocator data */
631 struct lov_qos_rr {
632         __u32               lqr_start_idx;   /* start index of new inode */
633         __u32               lqr_offset_idx;  /* aliasing for start_idx  */
634         int                 lqr_start_count; /* reseed counter */
635         struct ost_pool     lqr_pool;        /* round-robin optimized list */
636         unsigned long       lqr_dirty:1;     /* recalc round-robin list */
637 };
638
639 /* Stripe placement optimization */
640 struct lov_qos {
641         struct list_head    lq_oss_list;    /* list of OSSs that targets use */
642         struct rw_semaphore lq_rw_sem;
643         __u32               lq_active_oss_count;
644         unsigned int        lq_prio_free;   /* priority for free space */
645         unsigned int        lq_threshold_rr;/* priority for rr */
646         struct lov_qos_rr   lq_rr;          /* round robin qos data */
647         unsigned long       lq_dirty:1,     /* recalc qos data */
648                             lq_same_space:1,/* the ost's all have approx.
649                                                the same space avail */
650                             lq_reset:1;     /* zero current penalties */
651 };
652
653 struct lov_tgt_desc {
654         struct list_head    ltd_kill;
655         struct obd_uuid     ltd_uuid;
656         struct obd_export  *ltd_exp;
657         struct ltd_qos      ltd_qos;     /* qos info per target */
658         __u32               ltd_gen;
659         __u32               ltd_index;   /* index in lov_obd->tgts */
660         unsigned long       ltd_active:1,/* is this target up for requests */
661                             ltd_activate:1,/* should this target be activated */
662                             ltd_reap:1;  /* should this target be deleted */
663 };
664
665 /* Pool metadata */
666 #define pool_tgt_size(_p)   _p->pool_obds.op_size
667 #define pool_tgt_count(_p)  _p->pool_obds.op_count
668 #define pool_tgt_array(_p)  _p->pool_obds.op_array
669 #define pool_tgt_rw_sem(_p) _p->pool_obds.op_rw_sem
670 #define pool_tgt(_p, _i)    _p->pool_lov->lov_tgts[_p->pool_obds.op_array[_i]]
671
672 struct pool_desc {
673         char                  pool_name[LOV_MAXPOOLNAME + 1]; /* name of pool */
674         struct ost_pool       pool_obds;              /* pool members */
675         atomic_t              pool_refcount;          /* pool ref. counter */
676         struct lov_qos_rr     pool_rr;                /* round robin qos */
677         struct hlist_node     pool_hash;              /* access by poolname */
678         struct list_head      pool_list;              /* serial access */
679         cfs_proc_dir_entry_t *pool_proc_entry;        /* file in /proc */
680         struct lov_obd       *pool_lov;               /* lov obd to which this
681                                                          pool belong */
682 };
683
684 struct lov_obd {
685         struct lov_desc         desc;
686         struct lov_tgt_desc   **lov_tgts;              /* sparse array */
687         struct ost_pool         lov_packed;            /* all OSTs in a packed
688                                                           array */
689         struct semaphore        lov_lock;
690         struct obd_connect_data lov_ocd;
691         struct lov_qos          lov_qos;               /* qos info per lov */
692         atomic_t                lov_refcount;
693         __u32                   lov_tgt_count;         /* how many OBD's */
694         __u32                   lov_active_tgt_count;  /* how many active */
695         __u32                   lov_death_row;/* tgts scheduled to be deleted */
696         __u32                   lov_tgt_size;   /* size of tgts array */
697         int                     lov_connects;
698         int                     lov_pool_count;
699         lustre_hash_t          *lov_pools_hash_body; /* used for key access */
700         struct list_head        lov_pool_list; /* used for sequential access */
701         cfs_proc_dir_entry_t   *lov_pool_proc_entry;
702         enum lustre_sec_part    lov_sp_me;
703 };
704
705 struct lmv_tgt_desc {
706         struct obd_uuid         ltd_uuid;
707         struct obd_export      *ltd_exp;
708         int                     ltd_active;   /* is this target up for requests */
709         int                     ltd_idx;
710         struct semaphore        ltd_fid_sem;
711 };
712
713 enum placement_policy {
714         PLACEMENT_CHAR_POLICY   = 0,
715         PLACEMENT_NID_POLICY    = 1,
716         PLACEMENT_INVAL_POLICY  = 2,
717         PLACEMENT_MAX_POLICY
718 };
719
720 typedef enum placement_policy placement_policy_t;
721
722 struct lmv_obd {
723         int                     refcount;
724         struct lu_client_fld    lmv_fld;
725         spinlock_t              lmv_lock;
726         placement_policy_t      lmv_placement;
727         struct lmv_desc         desc;
728         struct obd_uuid         cluuid;
729         struct obd_export       *exp;
730
731         int                     connected;
732         int                     max_easize;
733         int                     max_def_easize;
734         int                     max_cookiesize;
735         int                     server_timeout;
736         struct semaphore        init_sem;
737
738         struct lmv_tgt_desc     *tgts;
739         int                     tgts_size;
740
741         struct obd_connect_data *datas;
742         int                     datas_size;
743
744         struct obd_connect_data conn_data;
745 };
746
747 struct niobuf_local {
748         __u64 offset;
749         __u32 len;
750         __u32 flags;
751         cfs_page_t    *page;
752         cfs_dentry_t  *dentry;
753         int lnb_grant_used;
754         int rc;
755 };
756
757 #define LUSTRE_FLD_NAME         "fld"
758 #define LUSTRE_SEQ_NAME         "seq"
759
760 #define LUSTRE_CMM_NAME         "cmm"
761 #define LUSTRE_MDD_NAME         "mdd"
762 #define LUSTRE_OSD_NAME         "osd"
763 #define LUSTRE_VVP_NAME         "vvp"
764 #define LUSTRE_LMV_NAME         "lmv"
765 #define LUSTRE_CMM_MDC_NAME     "cmm-mdc"
766 #define LUSTRE_SLP_NAME         "slp"
767
768 /* obd device type names */
769  /* FIXME all the references to LUSTRE_MDS_NAME should be swapped with LUSTRE_MDT_NAME */
770 #define LUSTRE_MDS_NAME         "mds"
771 #define LUSTRE_MDT_NAME         "mdt"
772 #define LUSTRE_MDC_NAME         "mdc"
773 #define LUSTRE_OSS_NAME         "ost"       /* FIXME change name to oss */
774 #define LUSTRE_OST_NAME         "obdfilter" /* FIXME change name to ost */
775 #define LUSTRE_OSC_NAME         "osc"
776 #define LUSTRE_LOV_NAME         "lov"
777 #define LUSTRE_MGS_NAME         "mgs"
778 #define LUSTRE_MGC_NAME         "mgc"
779
780 #define LUSTRE_CACHEOBD_NAME    "cobd"
781 #define LUSTRE_ECHO_NAME        "obdecho"
782 #define LUSTRE_ECHO_CLIENT_NAME "echo_client"
783
784 /* Constant obd names (post-rename) */
785 #define LUSTRE_MDS_OBDNAME "MDS"
786 #define LUSTRE_OSS_OBDNAME "OSS"
787 #define LUSTRE_MGS_OBDNAME "MGS"
788 #define LUSTRE_MGC_OBDNAME "MGC"
789
790 /* Don't conflict with on-wire flags OBD_BRW_WRITE, etc */
791 #define N_LOCAL_TEMP_PAGE 0x10000000
792
793 struct obd_trans_info {
794         __u64                    oti_transno;
795         __u64                    oti_xid;
796         /* Only used on the server side for tracking acks. */
797         struct oti_req_ack_lock {
798                 struct lustre_handle lock;
799                 __u32                mode;
800         }                        oti_ack_locks[4];
801         void                    *oti_handle;
802         struct llog_cookie       oti_onecookie;
803         struct llog_cookie      *oti_logcookies;
804         int                      oti_numcookies;
805
806         /* initial thread handling transaction */
807         struct ptlrpc_thread *   oti_thread;
808         __u32                    oti_conn_cnt;
809
810         struct obd_uuid         *oti_ost_uuid;
811 };
812
813 static inline void oti_init(struct obd_trans_info *oti,
814                             struct ptlrpc_request *req)
815 {
816         if (oti == NULL)
817                 return;
818         memset(oti, 0, sizeof(*oti));
819
820         if (req == NULL)
821                 return;
822
823         oti->oti_xid = req->rq_xid;
824
825         if (req->rq_repmsg != NULL)
826                 oti->oti_transno = lustre_msg_get_transno(req->rq_repmsg);
827         oti->oti_thread = req->rq_svc_thread;
828         if (req->rq_reqmsg != NULL)
829                 oti->oti_conn_cnt = lustre_msg_get_conn_cnt(req->rq_reqmsg);
830 }
831
832 static inline void oti_alloc_cookies(struct obd_trans_info *oti,int num_cookies)
833 {
834         if (!oti)
835                 return;
836
837         if (num_cookies == 1)
838                 oti->oti_logcookies = &oti->oti_onecookie;
839         else
840                 OBD_ALLOC(oti->oti_logcookies,
841                           num_cookies * sizeof(oti->oti_onecookie));
842
843         oti->oti_numcookies = num_cookies;
844 }
845
846 static inline void oti_free_cookies(struct obd_trans_info *oti)
847 {
848         if (!oti || !oti->oti_logcookies)
849                 return;
850
851         if (oti->oti_logcookies == &oti->oti_onecookie)
852                 LASSERT(oti->oti_numcookies == 1);
853         else
854                 OBD_FREE(oti->oti_logcookies,
855                          oti->oti_numcookies * sizeof(oti->oti_onecookie));
856         oti->oti_logcookies = NULL;
857         oti->oti_numcookies = 0;
858 }
859
860 /*
861  * Events signalled through obd_notify() upcall-chain.
862  */
863 enum obd_notify_event {
864         /* Device connect start */
865         OBD_NOTIFY_CONNECT,
866         /* Device activated */
867         OBD_NOTIFY_ACTIVE,
868         /* Device deactivated */
869         OBD_NOTIFY_INACTIVE,
870         /* Device disconnected */
871         OBD_NOTIFY_DISCON,
872         /* Connect data for import were changed */
873         OBD_NOTIFY_OCD,
874         /* Sync request */
875         OBD_NOTIFY_SYNC_NONBLOCK,
876         OBD_NOTIFY_SYNC,
877         /* Configuration event */
878         OBD_NOTIFY_CONFIG
879 };
880
881 /* bit-mask flags for config events */
882 enum config_flags {
883         CONFIG_LOG      = 0x1,  /* finished processing config log */
884         CONFIG_SYNC     = 0x2,  /* mdt synced 1 ost */
885         CONFIG_TARGET   = 0x4   /* one target is added */
886 };
887
888 /*
889  * Data structure used to pass obd_notify()-event to non-obd listeners (llite
890  * and liblustre being main examples).
891  */
892 struct obd_notify_upcall {
893         int (*onu_upcall)(struct obd_device *host, struct obd_device *watched,
894                           enum obd_notify_event ev, void *owner);
895         /* Opaque datum supplied by upper layer listener */
896         void *onu_owner;
897 };
898
899 struct target_recovery_data {
900         svc_handler_t     trd_recovery_handler;
901         pid_t             trd_processing_task;
902         struct completion trd_starting;
903         struct completion trd_finishing;
904 };
905
906 enum filter_groups {
907         FILTER_GROUP_MDS0 = 0,
908         FILTER_GROUP_LLOG = 1,
909         FILTER_GROUP_ECHO = 2 ,
910         FILTER_GROUP_MDS1_N_BASE = 3
911 };
912
913 static inline __u64 obdo_mdsno(struct obdo *oa)
914 {
915         if (oa->o_gr)
916                 return oa->o_gr - FILTER_GROUP_MDS1_N_BASE;
917         return 0;
918 }
919
920 static inline int mdt_to_obd_objgrp(int mdtid)
921 {
922         if (mdtid)
923                 return FILTER_GROUP_MDS1_N_BASE + mdtid;
924         return 0;
925 }
926
927 /**
928   * In HEAD for CMD, the object is created in group number which is 3>=
929   * or indexing starts from 3. To test this assertions are added to disallow
930   * group 0. But to run 2.0 mds server on 1.8.x disk format (i.e. interop_mode)
931   * object in group 0 needs to be allowed.
932   * So for interop mode following changes needs to be done:
933   * 1. No need to assert on group 0 or allow group 0
934   * 2. The group number indexing starts from 0 instead of 3
935   */
936
937 #define CHECK_MDS_GROUP(group)          (group == FILTER_GROUP_MDS0 || \
938                                          group > FILTER_GROUP_MDS1_N_BASE)
939 #define LASSERT_MDS_GROUP(group)        LASSERT(CHECK_MDS_GROUP(group))
940
941 struct obd_llog_group {
942         struct list_head   olg_list;
943         int                olg_group;
944         struct llog_ctxt  *olg_ctxts[LLOG_MAX_CTXTS];
945         cfs_waitq_t        olg_waitq;
946         spinlock_t         olg_lock;
947         struct obd_export *olg_exp;
948         int                olg_initializing;
949         struct semaphore   olg_cat_processing;
950 };
951
952 /* corresponds to one of the obd's */
953 #define MAX_OBD_NAME 128
954 #define OBD_DEVICE_MAGIC        0XAB5CD6EF
955 #define OBD_DEV_BY_DEVNAME      0xffffd0de
956 struct obd_device {
957         struct obd_type        *obd_type;
958         __u32                   obd_magic;
959
960         /* common and UUID name of this device */
961         char                    obd_name[MAX_OBD_NAME];
962         struct obd_uuid         obd_uuid;
963
964         struct lu_device       *obd_lu_dev;
965
966         int                     obd_minor;
967         unsigned long obd_attached:1,      /* finished attach */
968                       obd_set_up:1,        /* finished setup */
969                       obd_recovering:1,    /* there are recoverable clients */
970                       obd_abort_recovery:1,/* somebody ioctl'ed us to abort */
971                       obd_replayable:1,    /* recovery is enabled; inform clients */
972                       obd_no_transno:1,    /* no committed-transno notification */
973                       obd_no_recov:1,      /* fail instead of retry messages */
974                       obd_req_replaying:1, /* replaying requests */
975                       obd_stopping:1,      /* started cleanup */
976                       obd_starting:1,      /* started setup */
977                       obd_force:1,         /* cleanup with > 0 obd refcount */
978                       obd_fail:1,          /* cleanup with failover */
979                       obd_async_recov:1,   /* allow asyncronous orphan cleanup */
980                       obd_no_conn:1,       /* deny new connections */
981                       obd_inactive:1;      /* device active/inactive
982                                            * (for /proc/status only!!) */
983         /* uuid-export hash body */
984         struct lustre_hash     *obd_uuid_hash;
985         /* nid-export hash body */
986         struct lustre_hash     *obd_nid_hash;
987         /* nid stats body */
988         struct lustre_hash     *obd_nid_stats_hash;
989         struct list_head        obd_nid_stats;
990         atomic_t                obd_refcount;
991         cfs_waitq_t             obd_refcount_waitq;
992         struct list_head        obd_exports;
993         int                     obd_num_exports;
994         spinlock_t              obd_nid_lock;
995         struct ldlm_namespace  *obd_namespace;
996         struct ptlrpc_client    obd_ldlm_client; /* XXX OST/MDS only */
997         /* a spinlock is OK for what we do now, may need a semaphore later */
998         spinlock_t              obd_dev_lock;
999         struct semaphore        obd_dev_sem;
1000         __u64                   obd_last_committed;
1001         struct fsfilt_operations *obd_fsops;
1002         spinlock_t              obd_osfs_lock;
1003         struct obd_statfs       obd_osfs;       /* locked by obd_osfs_lock */
1004         __u64                   obd_osfs_age;
1005         struct lvfs_run_ctxt    obd_lvfs_ctxt;
1006         struct obd_llog_group   obd_olg; /* default llog group */
1007         struct obd_device       *obd_observer;
1008         struct obd_notify_upcall obd_upcall;
1009         struct obd_export       *obd_self_export;
1010         /* list of exports in LRU order, for ping evictor, with obd_dev_lock */
1011         struct list_head        obd_exports_timed;
1012         time_t                  obd_eviction_timer; /* for ping evictor */
1013
1014         /* XXX encapsulate all this recovery data into one struct */
1015         svc_handler_t                    obd_recovery_handler;
1016         pid_t                            obd_processing_task;
1017
1018         int                              obd_max_recoverable_clients;
1019         int                              obd_connected_clients;
1020         int                              obd_recoverable_clients;
1021         spinlock_t                       obd_processing_task_lock; /* BH lock (timer) */
1022         __u64                            obd_next_recovery_transno;
1023         int                              obd_replayed_requests;
1024         int                              obd_requests_queued_for_recovery;
1025         cfs_waitq_t                      obd_next_transno_waitq;
1026         struct list_head                 obd_uncommitted_replies;
1027         spinlock_t                       obd_uncommitted_replies_lock;
1028         cfs_timer_t                      obd_recovery_timer;
1029         time_t                           obd_recovery_start; /* seconds */
1030         time_t                           obd_recovery_end; /* seconds, for lprocfs_status */
1031         time_t                           obd_recovery_max_time; /* seconds, bz13079 */
1032         int                              obd_recovery_timeout;
1033
1034         /* new recovery stuff from CMD2 */
1035         struct target_recovery_data      obd_recovery_data;
1036         int                              obd_replayed_locks;
1037         atomic_t                         obd_req_replay_clients;
1038         atomic_t                         obd_lock_replay_clients;
1039         struct list_head                 obd_req_replay_queue;
1040         struct list_head                 obd_lock_replay_queue;
1041         struct list_head                 obd_final_req_queue;
1042         int                              obd_recovery_stage;
1043
1044         union {
1045                 struct obd_device_target obt;
1046                 struct filter_obd filter;
1047                 struct mds_obd mds;
1048                 struct client_obd cli;
1049                 struct ost_obd ost;
1050                 struct echo_client_obd echo_client;
1051                 struct echo_obd echo;
1052                 struct lov_obd lov;
1053                 struct lmv_obd lmv;
1054                 struct mgs_obd mgs;
1055         } u;
1056         /* Fields used by LProcFS */
1057         unsigned int           obd_cntr_base;
1058         struct lprocfs_stats  *obd_stats;
1059
1060         unsigned int           md_cntr_base;
1061         struct lprocfs_stats  *md_stats;
1062
1063         cfs_proc_dir_entry_t  *obd_proc_entry;
1064         cfs_proc_dir_entry_t  *obd_proc_exports_entry;
1065         cfs_proc_dir_entry_t  *obd_svc_procroot;
1066         struct lprocfs_stats  *obd_svc_stats;
1067         atomic_t               obd_evict_inprogress;
1068         cfs_waitq_t            obd_evict_inprogress_waitq;
1069
1070         /**
1071          * Ldlm pool part. Save last calculated SLV and Limit.
1072          */
1073         rwlock_t               obd_pool_lock;
1074         int                    obd_pool_limit;
1075         __u64                  obd_pool_slv;
1076
1077         /**
1078          * A list of outstanding class_incref()'s against this obd. For
1079          * debugging.
1080          */
1081         struct lu_ref          obd_reference;
1082 };
1083
1084 #define OBD_LLOG_FL_SENDNOW     0x0001
1085
1086 enum obd_cleanup_stage {
1087 /* Special case hack for MDS LOVs */
1088         OBD_CLEANUP_EARLY,
1089 /* can be directly mapped to .ldto_device_fini() */
1090         OBD_CLEANUP_EXPORTS,
1091 };
1092
1093 /* get/set_info keys */
1094 #define KEY_BLOCKSIZE_BITS      "blocksize_bits"
1095 #define KEY_BLOCKSIZE           "blocksize"
1096 #define KEY_CAPA_KEY            "capa_key"
1097 #define KEY_CHANGELOG_CLEAR     "changelog_clear"
1098 #define KEY_CHECKSUM            "checksum"
1099 #define KEY_CLEAR_FS            "clear_fs"
1100 #define KEY_CONN_DATA           "conn_data"
1101 #define KEY_EVICT_BY_NID        "evict_by_nid"
1102 #define KEY_FIEMAP              "fiemap"
1103 #define KEY_FLUSH_CTX           "flush_ctx"
1104 #define KEY_INIT_RECOV_BACKUP   "init_recov_bk"
1105 #define KEY_INIT_RECOV          "initial_recov"
1106 #define KEY_LAST_ID             "last_id"
1107 #define KEY_LOCK_TO_STRIPE      "lock_to_stripe"
1108 #define KEY_LOVDESC             "lovdesc"
1109 #define KEY_LOV_IDX             "lov_idx"
1110 #define KEY_MAX_EASIZE          "max_easize"
1111 #define KEY_MDS_CONN            "mds_conn"
1112 #define KEY_MGSSEC              "mgssec"
1113 #define KEY_NEXT_ID             "next_id"
1114 #define KEY_READ_ONLY           "read-only"
1115 #define KEY_REGISTER_TARGET     "register_target"
1116 #define KEY_REVIMP_UPD          "revimp_update"
1117 #define KEY_SET_FS              "set_fs"
1118 #define KEY_SPTLRPC_CONF        "sptlrpc_conf"
1119 #define KEY_UNLINKED            "unlinked"
1120 /* XXX unused ?*/
1121 #define KEY_INTERMDS            "inter_mds"
1122 #define KEY_ASYNC               "async"
1123
1124 struct lu_context;
1125
1126 static inline int it_to_lock_mode(struct lookup_intent *it)
1127 {
1128         /* CREAT needs to be tested before open (both could be set) */
1129         if (it->it_op & IT_CREAT)
1130                 return LCK_CW;
1131         else if (it->it_op & (IT_READDIR | IT_GETATTR | IT_OPEN | IT_LOOKUP))
1132                 return LCK_CR;
1133
1134         LASSERTF(0, "Invalid it_op: %d\n", it->it_op);
1135         return -EINVAL;
1136 }
1137
1138 struct md_op_data {
1139         struct lu_fid           op_fid1; /* operation fid1 (usualy parent) */
1140         struct lu_fid           op_fid2; /* operation fid2 (usualy child) */
1141         struct lu_fid           op_fid3; /* 2 extra fids to find conflicting */
1142         struct lu_fid           op_fid4; /* to the operation locks. */
1143         mdsno_t                 op_mds;  /* what mds server open will go to */
1144         struct lustre_handle    op_handle;
1145         __u64                   op_mod_time;
1146         const char             *op_name;
1147         int                     op_namelen;
1148         __u32                   op_mode;
1149         struct lmv_stripe_md   *op_mea1;
1150         struct lmv_stripe_md   *op_mea2;
1151         __u32                   op_suppgids[2];
1152         __u32                   op_fsuid;
1153         __u32                   op_fsgid;
1154         cfs_cap_t               op_cap;
1155         void                   *op_data;
1156
1157         /* iattr fields and blocks. */
1158         struct iattr            op_attr;
1159 #ifdef __KERNEL__
1160 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,14)
1161         unsigned int            op_attr_flags;
1162 #endif
1163 #endif
1164         loff_t                  op_attr_blocks;
1165
1166         /* Size-on-MDS epoch and flags. */
1167         __u64                   op_ioepoch;
1168         __u32                   op_flags;
1169
1170         /* Capa fields */
1171         struct obd_capa        *op_capa1;
1172         struct obd_capa        *op_capa2;
1173
1174         /* Various operation flags. */
1175         __u32                   op_bias;
1176
1177         /* Operation type */
1178         __u32                   op_opc;
1179 };
1180
1181 struct md_enqueue_info;
1182 /* metadata stat-ahead */
1183 typedef int (* md_enqueue_cb_t)(struct ptlrpc_request *req,
1184                                 struct md_enqueue_info *minfo,
1185                                 int rc);
1186
1187 struct md_enqueue_info {
1188         struct md_op_data       mi_data;
1189         struct lookup_intent    mi_it;
1190         struct lustre_handle    mi_lockh;
1191         struct dentry          *mi_dentry;
1192         md_enqueue_cb_t         mi_cb;
1193         unsigned int            mi_generation;
1194         void                   *mi_cbdata;
1195 };
1196
1197 struct obd_ops {
1198         struct module *o_owner;
1199         int (*o_iocontrol)(unsigned int cmd, struct obd_export *exp, int len,
1200                            void *karg, void *uarg);
1201         int (*o_get_info)(struct obd_export *, __u32 keylen, void *key,
1202                           __u32 *vallen, void *val, struct lov_stripe_md *lsm);
1203         int (*o_set_info_async)(struct obd_export *, __u32 keylen, void *key,
1204                                 __u32 vallen, void *val,
1205                                 struct ptlrpc_request_set *set);
1206         int (*o_attach)(struct obd_device *dev, obd_count len, void *data);
1207         int (*o_detach)(struct obd_device *dev);
1208         int (*o_setup) (struct obd_device *dev, struct lustre_cfg *cfg);
1209         int (*o_precleanup)(struct obd_device *dev,
1210                             enum obd_cleanup_stage cleanup_stage);
1211         int (*o_cleanup)(struct obd_device *dev);
1212         int (*o_process_config)(struct obd_device *dev, obd_count len,
1213                                 void *data);
1214         int (*o_postrecov)(struct obd_device *dev);
1215         int (*o_add_conn)(struct obd_import *imp, struct obd_uuid *uuid,
1216                           int priority);
1217         int (*o_del_conn)(struct obd_import *imp, struct obd_uuid *uuid);
1218         /* connect to the target device with given connection
1219          * data. @ocd->ocd_connect_flags is modified to reflect flags actually
1220          * granted by the target, which are guaranteed to be a subset of flags
1221          * asked for. If @ocd == NULL, use default parameters. */
1222         int (*o_connect)(const struct lu_env *env,
1223                          struct obd_export **exp, struct obd_device *src,
1224                          struct obd_uuid *cluuid, struct obd_connect_data *ocd,
1225                          void *localdata);
1226         int (*o_reconnect)(const struct lu_env *env,
1227                            struct obd_export *exp, struct obd_device *src,
1228                            struct obd_uuid *cluuid,
1229                            struct obd_connect_data *ocd,
1230                            void *localdata);
1231         int (*o_disconnect)(struct obd_export *exp);
1232
1233         /* Initialize/finalize fids infrastructure. */
1234         int (*o_fid_init)(struct obd_export *exp);
1235         int (*o_fid_fini)(struct obd_export *exp);
1236
1237         /* Allocate new fid according to passed @hint. */
1238         int (*o_fid_alloc)(struct obd_export *exp, struct lu_fid *fid,
1239                            struct md_op_data *op_data);
1240
1241         /*
1242          * Object with @fid is getting deleted, we may want to do something
1243          * about this.
1244          */
1245         int (*o_fid_delete)(struct obd_export *exp, const struct lu_fid *fid);
1246
1247         int (*o_statfs)(struct obd_device *obd, struct obd_statfs *osfs,
1248                         __u64 max_age, __u32 flags);
1249         int (*o_statfs_async)(struct obd_device *obd, struct obd_info *oinfo,
1250                               __u64 max_age, struct ptlrpc_request_set *set);
1251         int (*o_packmd)(struct obd_export *exp, struct lov_mds_md **disk_tgt,
1252                         struct lov_stripe_md *mem_src);
1253         int (*o_unpackmd)(struct obd_export *exp,struct lov_stripe_md **mem_tgt,
1254                           struct lov_mds_md *disk_src, int disk_len);
1255         int (*o_checkmd)(struct obd_export *exp, struct obd_export *md_exp,
1256                          struct lov_stripe_md *mem_tgt);
1257         int (*o_preallocate)(struct lustre_handle *, obd_count *req,
1258                              obd_id *ids);
1259         /* FIXME: add fid capability support for create & destroy! */
1260         int (*o_precreate)(struct obd_export *exp);
1261         int (*o_create)(struct obd_export *exp,  struct obdo *oa,
1262                         struct lov_stripe_md **ea, struct obd_trans_info *oti);
1263         int (*o_destroy)(struct obd_export *exp, struct obdo *oa,
1264                          struct lov_stripe_md *ea, struct obd_trans_info *oti,
1265                          struct obd_export *md_exp, void *capa);
1266         int (*o_setattr)(struct obd_export *exp, struct obd_info *oinfo,
1267                          struct obd_trans_info *oti);
1268         int (*o_setattr_async)(struct obd_export *exp, struct obd_info *oinfo,
1269                                struct obd_trans_info *oti,
1270                                struct ptlrpc_request_set *rqset);
1271         int (*o_getattr)(struct obd_export *exp, struct obd_info *oinfo);
1272         int (*o_getattr_async)(struct obd_export *exp, struct obd_info *oinfo,
1273                                struct ptlrpc_request_set *set);
1274         int (*o_brw)(int rw, struct obd_export *exp, struct obd_info *oinfo,
1275                      obd_count oa_bufs, struct brw_page *pgarr,
1276                      struct obd_trans_info *oti);
1277         int (*o_merge_lvb)(struct obd_export *exp, struct lov_stripe_md *lsm,
1278                            struct ost_lvb *lvb, int kms_only);
1279         int (*o_adjust_kms)(struct obd_export *exp, struct lov_stripe_md *lsm,
1280                             obd_off size, int shrink);
1281         int (*o_punch)(struct obd_export *exp, struct obd_info *oinfo,
1282                        struct obd_trans_info *oti,
1283                        struct ptlrpc_request_set *rqset);
1284         int (*o_sync)(struct obd_export *exp, struct obdo *oa,
1285                       struct lov_stripe_md *ea, obd_size start, obd_size end,
1286                       void *capa);
1287         int (*o_migrate)(struct lustre_handle *conn, struct lov_stripe_md *dst,
1288                          struct lov_stripe_md *src, obd_size start,
1289                          obd_size end, struct obd_trans_info *oti);
1290         int (*o_copy)(struct lustre_handle *dstconn, struct lov_stripe_md *dst,
1291                       struct lustre_handle *srconn, struct lov_stripe_md *src,
1292                       obd_size start, obd_size end, struct obd_trans_info *);
1293         int (*o_iterate)(struct lustre_handle *conn,
1294                          int (*)(obd_id, obd_gr, void *),
1295                          obd_id *startid, obd_gr group, void *data);
1296         int (*o_preprw)(int cmd, struct obd_export *exp, struct obdo *oa,
1297                         int objcount, struct obd_ioobj *obj,
1298                         struct niobuf_remote *remote, int *nr_pages,
1299                         struct niobuf_local *local,
1300                         struct obd_trans_info *oti,
1301                         struct lustre_capa *capa);
1302         int (*o_commitrw)(int cmd, struct obd_export *exp, struct obdo *oa,
1303                           int objcount, struct obd_ioobj *obj,
1304                           struct niobuf_remote *remote, int pages,
1305                           struct niobuf_local *local,
1306                           struct obd_trans_info *oti, int rc);
1307         int (*o_enqueue)(struct obd_export *, struct obd_info *oinfo,
1308                          struct ldlm_enqueue_info *einfo,
1309                          struct ptlrpc_request_set *rqset);
1310         int (*o_change_cbdata)(struct obd_export *, struct lov_stripe_md *,
1311                                ldlm_iterator_t it, void *data);
1312         int (*o_cancel)(struct obd_export *, struct lov_stripe_md *md,
1313                         __u32 mode, struct lustre_handle *);
1314         int (*o_cancel_unused)(struct obd_export *, struct lov_stripe_md *,
1315                                int flags, void *opaque);
1316         int (*o_init_export)(struct obd_export *exp);
1317         int (*o_destroy_export)(struct obd_export *exp);
1318         int (*o_extent_calc)(struct obd_export *, struct lov_stripe_md *,
1319                              int cmd, obd_off *);
1320
1321         /* llog related obd_methods */
1322         int (*o_llog_init)(struct obd_device *obd, struct obd_llog_group *grp,
1323                            struct obd_device *disk_obd, int count,
1324                            struct llog_catid *logid, struct obd_uuid *uuid);
1325         int (*o_llog_finish)(struct obd_device *obd, int count);
1326         int (*o_llog_connect)(struct obd_export *, struct llogd_conn_body *);
1327
1328         /* metadata-only methods */
1329         int (*o_pin)(struct obd_export *, const struct lu_fid *fid,
1330                      struct obd_capa *, struct obd_client_handle *, int flag);
1331         int (*o_unpin)(struct obd_export *, struct obd_client_handle *, int);
1332
1333         int (*o_import_event)(struct obd_device *, struct obd_import *,
1334                               enum obd_import_event);
1335
1336         int (*o_notify)(struct obd_device *obd, struct obd_device *watched,
1337                         enum obd_notify_event ev, void *data);
1338
1339         int (*o_health_check)(struct obd_device *);
1340         struct obd_uuid *(*o_get_uuid) (struct obd_export *exp);
1341
1342         /* quota methods */
1343         int (*o_quotacheck)(struct obd_device *, struct obd_export *,
1344                             struct obd_quotactl *);
1345         int (*o_quotactl)(struct obd_device *, struct obd_export *,
1346                           struct obd_quotactl *);
1347         int (*o_quota_adjust_qunit)(struct obd_export *exp,
1348                                     struct quota_adjust_qunit *oqaq,
1349                                     struct lustre_quota_ctxt *qctxt);
1350
1351
1352         int (*o_ping)(struct obd_export *exp);
1353
1354         /* pools methods */
1355         int (*o_pool_new)(struct obd_device *obd, char *poolname);
1356         int (*o_pool_del)(struct obd_device *obd, char *poolname);
1357         int (*o_pool_add)(struct obd_device *obd, char *poolname,
1358                           char *ostname);
1359         int (*o_pool_rem)(struct obd_device *obd, char *poolname,
1360                           char *ostname);
1361         /*
1362          * NOTE: If adding ops, add another LPROCFS_OBD_OP_INIT() line
1363          * to lprocfs_alloc_obd_stats() in obdclass/lprocfs_status.c.
1364          * Also, add a wrapper function in include/linux/obd_class.h. */
1365 };
1366
1367 enum {
1368         LUSTRE_OPC_MKDIR    = (1 << 0),
1369         LUSTRE_OPC_SYMLINK  = (1 << 1),
1370         LUSTRE_OPC_MKNOD    = (1 << 2),
1371         LUSTRE_OPC_CREATE   = (1 << 3),
1372         LUSTRE_OPC_ANY      = (1 << 4)
1373 };
1374
1375 /* lmv structures */
1376 #define MEA_MAGIC_LAST_CHAR      0xb2221ca1
1377 #define MEA_MAGIC_ALL_CHARS      0xb222a11c
1378 #define MEA_MAGIC_HASH_SEGMENT   0xb222a11b
1379
1380 #define MAX_HASH_SIZE_32         0x7fffffffUL
1381 #define MAX_HASH_SIZE            0x7fffffffffffffffULL
1382 #define MAX_HASH_HIGHEST_BIT     0x1000000000000000ULL
1383
1384 struct lustre_md {
1385         struct mdt_body         *body;
1386         struct lov_stripe_md    *lsm;
1387         struct lmv_stripe_md    *mea;
1388 #ifdef CONFIG_FS_POSIX_ACL
1389         struct posix_acl        *posix_acl;
1390 #endif
1391         struct mdt_remote_perm  *remote_perm;
1392         struct obd_capa         *mds_capa;
1393         struct obd_capa         *oss_capa;
1394 };
1395
1396 struct md_open_data {
1397         struct obd_client_handle *mod_och;
1398         struct list_head          mod_replay_list;
1399 };
1400
1401 struct lookup_intent;
1402
1403 struct md_ops {
1404         int (*m_getstatus)(struct obd_export *, struct lu_fid *,
1405                            struct obd_capa **);
1406         int (*m_change_cbdata)(struct obd_export *, const struct lu_fid *,
1407                                ldlm_iterator_t, void *);
1408         int (*m_close)(struct obd_export *, struct md_op_data *,
1409                        struct md_open_data *, struct ptlrpc_request **);
1410         int (*m_create)(struct obd_export *, struct md_op_data *,
1411                         const void *, int, int, __u32, __u32, cfs_cap_t,
1412                         __u64, struct ptlrpc_request **);
1413         int (*m_done_writing)(struct obd_export *, struct md_op_data  *,
1414                               struct md_open_data *);
1415         int (*m_enqueue)(struct obd_export *, struct ldlm_enqueue_info *,
1416                          struct lookup_intent *, struct md_op_data *,
1417                          struct lustre_handle *, void *, int,
1418                          struct ptlrpc_request **, int);
1419         int (*m_getattr)(struct obd_export *, const struct lu_fid *,
1420                          struct obd_capa *, obd_valid, int,
1421                          struct ptlrpc_request **);
1422         int (*m_getattr_name)(struct obd_export *, const struct lu_fid *,
1423                               struct obd_capa *, const char *, int, obd_valid,
1424                               int, __u32, struct ptlrpc_request **);
1425         int (*m_intent_lock)(struct obd_export *, struct md_op_data *,
1426                              void *, int, struct lookup_intent *, int,
1427                              struct ptlrpc_request **,
1428                              ldlm_blocking_callback, int);
1429         int (*m_link)(struct obd_export *, struct md_op_data *,
1430                       struct ptlrpc_request **);
1431         int (*m_rename)(struct obd_export *, struct md_op_data *,
1432                         const char *, int, const char *, int,
1433                         struct ptlrpc_request **);
1434         int (*m_is_subdir)(struct obd_export *, const struct lu_fid *,
1435                            const struct lu_fid *,
1436                            struct ptlrpc_request **);
1437         int (*m_setattr)(struct obd_export *, struct md_op_data *, void *,
1438                          int , void *, int, struct ptlrpc_request **,
1439                          struct md_open_data **mod);
1440         int (*m_sync)(struct obd_export *, const struct lu_fid *,
1441                       struct obd_capa *, struct ptlrpc_request **);
1442         int (*m_readpage)(struct obd_export *, const struct lu_fid *,
1443                           struct obd_capa *, __u64, struct page *,
1444                           struct ptlrpc_request **);
1445
1446         int (*m_unlink)(struct obd_export *, struct md_op_data *,
1447                         struct ptlrpc_request **);
1448
1449         int (*m_setxattr)(struct obd_export *, const struct lu_fid *,
1450                           struct obd_capa *, obd_valid, const char *,
1451                           const char *, int, int, int, __u32,
1452                           struct ptlrpc_request **);
1453
1454         int (*m_getxattr)(struct obd_export *, const struct lu_fid *,
1455                           struct obd_capa *, obd_valid, const char *,
1456                           const char *, int, int, int,
1457                           struct ptlrpc_request **);
1458
1459         int (*m_init_ea_size)(struct obd_export *, int, int, int);
1460
1461         int (*m_get_lustre_md)(struct obd_export *, struct ptlrpc_request *,
1462                                struct obd_export *, struct obd_export *,
1463                                struct lustre_md *);
1464
1465         int (*m_free_lustre_md)(struct obd_export *, struct lustre_md *);
1466
1467         int (*m_set_open_replay_data)(struct obd_export *,
1468                                       struct obd_client_handle *,
1469                                       struct ptlrpc_request *);
1470         int (*m_clear_open_replay_data)(struct obd_export *,
1471                                         struct obd_client_handle *);
1472         int (*m_set_lock_data)(struct obd_export *, __u64 *, void *);
1473
1474         ldlm_mode_t (*m_lock_match)(struct obd_export *, int,
1475                                     const struct lu_fid *, ldlm_type_t,
1476                                     ldlm_policy_data_t *, ldlm_mode_t,
1477                                     struct lustre_handle *);
1478
1479         int (*m_cancel_unused)(struct obd_export *, const struct lu_fid *,
1480                                ldlm_policy_data_t *, ldlm_mode_t, int flags,
1481                                void *opaque);
1482         int (*m_renew_capa)(struct obd_export *, struct obd_capa *oc,
1483                             renew_capa_cb_t cb);
1484         int (*m_unpack_capa)(struct obd_export *, struct ptlrpc_request *,
1485                              const struct req_msg_field *, struct obd_capa **);
1486
1487         int (*m_get_remote_perm)(struct obd_export *, const struct lu_fid *,
1488                                  struct obd_capa *, __u32,
1489                                  struct ptlrpc_request **);
1490
1491         int (*m_intent_getattr_async)(struct obd_export *,
1492                                       struct md_enqueue_info *,
1493                                       struct ldlm_enqueue_info *);
1494
1495         int (*m_revalidate_lock)(struct obd_export *,
1496                                  struct lookup_intent *,
1497                                  struct lu_fid *);
1498
1499         /*
1500          * NOTE: If adding ops, add another LPROCFS_MD_OP_INIT() line to
1501          * lprocfs_alloc_md_stats() in obdclass/lprocfs_status.c. Also, add a
1502          * wrapper function in include/linux/obd_class.h.
1503          */
1504 };
1505
1506 struct lsm_operations {
1507         void (*lsm_free)(struct lov_stripe_md *);
1508         int (*lsm_destroy)(struct lov_stripe_md *, struct obdo *oa,
1509                            struct obd_export *md_exp);
1510         void (*lsm_stripe_by_index)(struct lov_stripe_md *, int *, obd_off *,
1511                                      unsigned long *);
1512         void (*lsm_stripe_by_offset)(struct lov_stripe_md *, int *, obd_off *,
1513                                      unsigned long *);
1514         obd_off (*lsm_stripe_offset_by_index)(struct lov_stripe_md *, int);
1515         obd_off (*lsm_stripe_offset_by_offset)(struct lov_stripe_md *, obd_off);
1516         int (*lsm_stripe_index_by_offset)(struct lov_stripe_md *, obd_off);
1517         int (*lsm_revalidate) (struct lov_stripe_md *, struct obd_device *obd);
1518         int (*lsm_lmm_verify) (struct lov_mds_md *lmm, int lmm_bytes,
1519                                int *stripe_count);
1520         int (*lsm_unpackmd) (struct lov_obd *lov, struct lov_stripe_md *lsm,
1521                              struct lov_mds_md *lmm);
1522 };
1523
1524 extern const struct lsm_operations lsm_v1_ops;
1525 extern const struct lsm_operations lsm_join_ops;
1526 extern const struct lsm_operations lsm_v3_ops;
1527 static inline const struct lsm_operations *lsm_op_find(int magic)
1528 {
1529         switch(magic) {
1530         case LOV_MAGIC_V1:
1531                return &lsm_v1_ops;
1532         case LOV_MAGIC_JOIN:
1533                return &lsm_join_ops;
1534         case LOV_MAGIC_V3:
1535                return &lsm_v3_ops;
1536         default:
1537                CERROR("Cannot recognize lsm_magic %d\n", magic);
1538                return NULL;
1539         }
1540 }
1541
1542 int lvfs_check_io_health(struct obd_device *obd, struct file *file);
1543
1544 /* Requests for obd_extent_calc() */
1545 #define OBD_CALC_STRIPE_START   1
1546 #define OBD_CALC_STRIPE_END     2
1547
1548 static inline void obd_transno_commit_cb(struct obd_device *obd, __u64 transno,
1549                                          int error)
1550 {
1551         if (error) {
1552                 CERROR("%s: transno "LPU64" commit error: %d\n",
1553                        obd->obd_name, transno, error);
1554                 return;
1555         }
1556         if (transno > obd->obd_last_committed) {
1557                 CDEBUG(D_HA, "%s: transno "LPD64" committed\n",
1558                        obd->obd_name, transno);
1559                 obd->obd_last_committed = transno;
1560                 ptlrpc_commit_replies (obd);
1561         } else {
1562                 CDEBUG(D_INFO, "%s: transno "LPD64" committed\n",
1563                        obd->obd_name, transno);
1564         }
1565 }
1566
1567 static inline void init_obd_quota_ops(quota_interface_t *interface,
1568                                       struct obd_ops *obd_ops)
1569 {
1570         if (!interface)
1571                 return;
1572
1573         LASSERT(obd_ops);
1574         obd_ops->o_quotacheck = QUOTA_OP(interface, check);
1575         obd_ops->o_quotactl = QUOTA_OP(interface, ctl);
1576         obd_ops->o_quota_adjust_qunit = QUOTA_OP(interface, adjust_qunit);
1577 }
1578
1579 static inline __u64 oinfo_mdsno(struct obd_info *oinfo)
1580 {
1581         return obdo_mdsno(oinfo->oi_oa);
1582 }
1583
1584 static inline struct lustre_capa *oinfo_capa(struct obd_info *oinfo)
1585 {
1586         return oinfo->oi_capa;
1587 }
1588
1589 #endif /* __OBD_H */