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