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