Whamcloud - gitweb
LU-2785 osc: remove unused obd methods
[fs/lustre-release.git] / lustre / include / obd.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2013, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
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 #define IOC_MDC_MAX_NR       50
58
59 #include <lustre/lustre_idl.h>
60 #include <lustre_lib.h>
61 #include <libcfs/bitmap.h>
62 #ifdef HAVE_SERVER_SUPPORT
63 # include <lu_target.h>
64 # include <obd_target.h>
65 #endif
66 #include <lu_ref.h>
67 #include <lustre_export.h>
68 #include <lustre_fid.h>
69 #include <lustre_fld.h>
70 #include <lustre_capa.h>
71 #include <lvfs.h>
72
73 #define MAX_OBD_DEVICES 8192
74
75 struct osc_async_rc {
76         int     ar_rc;
77         int     ar_force_sync;
78         __u64   ar_min_xid;
79 };
80
81 struct lov_oinfo {                 /* per-stripe data structure */
82         struct ost_id   loi_oi;    /* object ID/Sequence on the target OST */
83         int loi_ost_idx;           /* OST stripe index in lov_tgt_desc->tgts */
84         int loi_ost_gen;           /* generation of this loi_ost_idx */
85
86         unsigned long loi_kms_valid:1;
87         __u64 loi_kms;             /* known minimum size */
88         struct ost_lvb loi_lvb;
89         struct osc_async_rc     loi_ar;
90 };
91
92 static inline void loi_kms_set(struct lov_oinfo *oinfo, __u64 kms)
93 {
94         oinfo->loi_kms = kms;
95         oinfo->loi_kms_valid = 1;
96 }
97
98 static inline void loi_init(struct lov_oinfo *loi)
99 {
100 }
101
102 struct lov_stripe_md {
103         atomic_t        lsm_refc;
104         spinlock_t      lsm_lock;
105         pid_t           lsm_lock_owner; /* debugging */
106
107         /* maximum possible file size, might change as OSTs status changes,
108          * e.g. disconnected, deactivated */
109         __u64            lsm_maxbytes;
110         struct {
111                 /* Public members. */
112                 struct ost_id lw_object_oi; /* lov object id/seq */
113
114                 /* LOV-private members start here -- only for use in lov/. */
115                 __u32 lw_magic;
116                 __u32 lw_stripe_size;      /* size of the stripe */
117                 __u32 lw_pattern;          /* striping pattern (RAID0, RAID1) */
118                 __u16 lw_stripe_count;  /* number of objects being striped over */
119                 __u16 lw_layout_gen;       /* generation of the layout */
120                 char  lw_pool_name[LOV_MAXPOOLNAME]; /* pool name */
121         } lsm_wire;
122
123         struct lov_oinfo *lsm_oinfo[0];
124 };
125
126 #define lsm_oi           lsm_wire.lw_object_oi
127 #define lsm_magic        lsm_wire.lw_magic
128 #define lsm_layout_gen   lsm_wire.lw_layout_gen
129 #define lsm_stripe_size  lsm_wire.lw_stripe_size
130 #define lsm_pattern      lsm_wire.lw_pattern
131 #define lsm_stripe_count lsm_wire.lw_stripe_count
132 #define lsm_pool_name    lsm_wire.lw_pool_name
133
134 static inline bool lsm_is_released(struct lov_stripe_md *lsm)
135 {
136         return !!(lsm->lsm_pattern & LOV_PATTERN_F_RELEASED);
137 }
138
139 static inline bool lsm_has_objects(struct lov_stripe_md *lsm)
140 {
141         if (lsm == NULL)
142                 return false;
143         if (lsm_is_released(lsm))
144                 return false;
145         return true;
146 }
147
148 static inline int lov_stripe_md_size(unsigned int stripe_count)
149 {
150         struct lov_stripe_md lsm;
151
152         return sizeof(lsm) + stripe_count * sizeof(lsm.lsm_oinfo[0]);
153 }
154
155 struct obd_info;
156
157 typedef int (*obd_enqueue_update_f)(void *cookie, int rc);
158
159 /* obd info for a particular level (lov, osc). */
160 struct obd_info {
161         /* Lock policy. It keeps an extent which is specific for a particular
162          * OSC. (e.g. lov_prep_enqueue_set initialises extent of the policy,
163          * and osc_enqueue passes it into ldlm_lock_match & ldlm_cli_enqueue. */
164         ldlm_policy_data_t      oi_policy;
165         /* Flags used for set request specific flags:
166            - while lock handling, the flags obtained on the enqueue
167            request are set here.
168            - while stats, the flags used for control delay/resend.
169            - while setattr, the flags used for distinguish punch operation
170          */
171         __u64                   oi_flags;
172         /* Lock handle specific for every OSC lock. */
173         struct lustre_handle   *oi_lockh;
174         /* lsm data specific for every OSC. */
175         struct lov_stripe_md   *oi_md;
176         /* obdo data specific for every OSC, if needed at all. */
177         struct obdo            *oi_oa;
178         /* statfs data specific for every OSC, if needed at all. */
179         struct obd_statfs      *oi_osfs;
180         /* An update callback which is called to update some data on upper
181          * level. E.g. it is used for update lsm->lsm_oinfo at every recieved
182          * request in osc level for enqueue requests. It is also possible to
183          * update some caller data from LOV layer if needed. */
184         obd_enqueue_update_f    oi_cb_up;
185         /* oss capability, its type is obd_capa in client to avoid copy.
186          * in contrary its type is lustre_capa in OSS. */
187         void                   *oi_capa;
188         /* transfer jobid from ost_sync() to filter_sync()... */
189         char                   *oi_jobid;
190 };
191
192 struct obd_type {
193         cfs_list_t typ_chain;
194         struct obd_ops *typ_dt_ops;
195         struct md_ops *typ_md_ops;
196         cfs_proc_dir_entry_t *typ_procroot;
197         char *typ_name;
198         int  typ_refcnt;
199         struct lu_device_type *typ_lu;
200         spinlock_t obd_type_lock;
201 };
202
203 struct brw_page {
204         obd_off  off;
205         struct page *pg;
206         int count;
207         obd_flag flag;
208 };
209
210 /* llog contexts */
211 enum llog_ctxt_id {
212         LLOG_CONFIG_ORIG_CTXT  =  0,
213         LLOG_CONFIG_REPL_CTXT,
214         LLOG_MDS_OST_ORIG_CTXT,
215         LLOG_MDS_OST_REPL_CTXT,
216         LLOG_SIZE_ORIG_CTXT,
217         LLOG_SIZE_REPL_CTXT,
218         LLOG_RD1_ORIG_CTXT,
219         LLOG_RD1_REPL_CTXT,
220         LLOG_TEST_ORIG_CTXT,
221         LLOG_TEST_REPL_CTXT,
222         LLOG_LOVEA_ORIG_CTXT,
223         LLOG_LOVEA_REPL_CTXT,
224         LLOG_CHANGELOG_ORIG_CTXT,       /**< changelog generation on mdd */
225         LLOG_CHANGELOG_REPL_CTXT,       /**< changelog access on clients */
226         LLOG_CHANGELOG_USER_ORIG_CTXT,  /**< for multiple changelog consumers */
227         LLOG_AGENT_ORIG_CTXT,           /**< agent requests generation on cdt */
228         LLOG_MAX_CTXTS
229 };
230
231 struct timeout_item {
232         enum timeout_event ti_event;
233         cfs_time_t         ti_timeout;
234         timeout_cb_t       ti_cb;
235         void              *ti_cb_data;
236         cfs_list_t         ti_obd_list;
237         cfs_list_t         ti_chain;
238 };
239
240 #define OSC_MAX_RIF_DEFAULT       8
241 #define MDS_OSC_MAX_RIF_DEFAULT   50
242 #define OSC_MAX_RIF_MAX         256
243 #define OSC_MAX_DIRTY_DEFAULT  (OSC_MAX_RIF_DEFAULT * 4)
244 #define OSC_MAX_DIRTY_MB_MAX   2048     /* arbitrary, but < MAX_LONG bytes */
245 #define OSC_DEFAULT_RESENDS      10
246
247 /* possible values for fo_sync_lock_cancel */
248 enum {
249         NEVER_SYNC_ON_CANCEL = 0,
250         BLOCKING_SYNC_ON_CANCEL = 1,
251         ALWAYS_SYNC_ON_CANCEL = 2,
252         NUM_SYNC_ON_CANCEL_STATES
253 };
254
255 #define MDC_MAX_RIF_DEFAULT       8
256 #define MDC_MAX_RIF_MAX         512
257
258 struct mdc_rpc_lock;
259 struct obd_import;
260 struct client_obd {
261         struct rw_semaphore  cl_sem;
262         struct obd_uuid          cl_target_uuid;
263         struct obd_import       *cl_import; /* ptlrpc connection state */
264         int                      cl_conn_count;
265         /* max_mds_easize is purely a performance thing so we don't have to
266          * call obd_size_diskmd() all the time. */
267         int                      cl_default_mds_easize;
268         int                      cl_max_mds_easize;
269         int                      cl_max_mds_cookiesize;
270
271         enum lustre_sec_part     cl_sp_me;
272         enum lustre_sec_part     cl_sp_to;
273         struct sptlrpc_flavor    cl_flvr_mgc;   /* fixed flavor of mgc->mgs */
274
275         /* the grant values are protected by loi_list_lock below */
276         long                     cl_dirty;         /* all _dirty_ in bytes */
277         long                     cl_dirty_max;     /* allowed w/o rpc */
278         long                     cl_dirty_transit; /* dirty synchronous */
279         long                     cl_avail_grant;   /* bytes of credit for ost */
280         long                     cl_lost_grant;    /* lost credits (trunc) */
281
282         /* since we allocate grant by blocks, we don't know how many grant will
283          * be used to add a page into cache. As a solution, we reserve maximum
284          * grant before trying to dirty a page and unreserve the rest.
285          * See osc_{reserve|unreserve}_grant for details. */
286         long                 cl_reserved_grant;
287         cfs_list_t           cl_cache_waiters; /* waiting for cache/grant */
288         cfs_time_t           cl_next_shrink_grant;   /* jiffies */
289         cfs_list_t           cl_grant_shrink_list;  /* Timeout event list */
290         int                  cl_grant_shrink_interval; /* seconds */
291
292         /* A chunk is an optimal size used by osc_extent to determine
293          * the extent size. A chunk is max(PAGE_CACHE_SIZE, OST block size) */
294         int                  cl_chunkbits;
295         int                  cl_chunk;
296         int                  cl_extent_tax; /* extent overhead, by bytes */
297
298         /* keep track of objects that have lois that contain pages which
299          * have been queued for async brw.  this lock also protects the
300          * lists of osc_client_pages that hang off of the loi */
301         /*
302          * ->cl_loi_list_lock protects consistency of
303          * ->cl_loi_{ready,read,write}_list. ->ap_make_ready() and
304          * ->ap_completion() call-backs are executed under this lock. As we
305          * cannot guarantee that these call-backs never block on all platforms
306          * (as a matter of fact they do block on Mac OS X), type of
307          * ->cl_loi_list_lock is platform dependent: it's a spin-lock on Linux
308          * and blocking mutex on Mac OS X. (Alternative is to make this lock
309          * blocking everywhere, but we don't want to slow down fast-path of
310          * our main platform.)
311          *
312          * Exact type of ->cl_loi_list_lock is defined in arch/obd.h together
313          * with client_obd_list_{un,}lock() and
314          * client_obd_list_lock_{init,done}() functions.
315          *
316          * NB by Jinshan: though field names are still _loi_, but actually
317          * osc_object{}s are in the list.
318          */
319         client_obd_lock_t        cl_loi_list_lock;
320         cfs_list_t               cl_loi_ready_list;
321         cfs_list_t               cl_loi_hp_ready_list;
322         cfs_list_t               cl_loi_write_list;
323         cfs_list_t               cl_loi_read_list;
324         int                      cl_r_in_flight;
325         int                      cl_w_in_flight;
326         /* just a sum of the loi/lop pending numbers to be exported by /proc */
327         atomic_t                 cl_pending_w_pages;
328         atomic_t                 cl_pending_r_pages;
329         __u32                    cl_max_pages_per_rpc;
330         int                      cl_max_rpcs_in_flight;
331         struct obd_histogram     cl_read_rpc_hist;
332         struct obd_histogram     cl_write_rpc_hist;
333         struct obd_histogram     cl_read_page_hist;
334         struct obd_histogram     cl_write_page_hist;
335         struct obd_histogram     cl_read_offset_hist;
336         struct obd_histogram     cl_write_offset_hist;
337
338         /* lru for osc caching pages */
339         struct cl_client_cache  *cl_cache;
340         cfs_list_t               cl_lru_osc; /* member of cl_cache->ccc_lru */
341         atomic_t                *cl_lru_left;
342         atomic_t                 cl_lru_busy;
343         atomic_t                 cl_lru_shrinkers;
344         atomic_t                 cl_lru_in_list;
345         cfs_list_t               cl_lru_list; /* lru page list */
346         client_obd_lock_t        cl_lru_list_lock; /* page list protector */
347         atomic_t                 cl_unstable_count;
348
349         /* number of in flight destroy rpcs is limited to max_rpcs_in_flight */
350         atomic_t             cl_destroy_in_flight;
351         wait_queue_head_t        cl_destroy_waitq;
352
353         struct mdc_rpc_lock     *cl_rpc_lock;
354         struct mdc_rpc_lock     *cl_close_lock;
355
356         /* mgc datastruct */
357         struct semaphore         cl_mgc_sem;
358         struct local_oid_storage *cl_mgc_los;
359         struct dt_object        *cl_mgc_configs_dir;
360         atomic_t             cl_mgc_refcount;
361         struct obd_export       *cl_mgc_mgsexp;
362
363         /* checksumming for data sent over the network */
364         unsigned int             cl_checksum:1; /* 0 = disabled, 1 = enabled */
365         /* supported checksum types that are worked out at connect time */
366         __u32                    cl_supp_cksum_types;
367         /* checksum algorithm to be used */
368         cksum_type_t             cl_cksum_type;
369
370         /* also protected by the poorly named _loi_list_lock lock above */
371         struct osc_async_rc      cl_ar;
372
373         /* used by quotacheck when the servers are older than 2.4 */
374         int                      cl_qchk_stat; /* quotacheck stat of the peer */
375 #define CL_NOT_QUOTACHECKED 1   /* client->cl_qchk_stat init value */
376 #if LUSTRE_VERSION_CODE >= OBD_OCD_VERSION(2, 7, 50, 0)
377 #warning "please consider removing quotacheck compatibility code"
378 #endif
379
380         /* sequence manager */
381         struct lu_client_seq    *cl_seq;
382
383         atomic_t             cl_resends; /* resend count */
384
385         /* ptlrpc work for writeback in ptlrpcd context */
386         void                    *cl_writeback_work;
387         void                    *cl_lru_work;
388         /* hash tables for osc_quota_info */
389         cfs_hash_t              *cl_quota_hash[MAXQUOTAS];
390 };
391 #define obd2cli_tgt(obd) ((char *)(obd)->u.cli.cl_target_uuid.uuid)
392
393 struct obd_id_info {
394         __u32   idx;
395         obd_id  *data;
396 };
397
398 struct echo_client_obd {
399         struct obd_export       *ec_exp;   /* the local connection to osc/lov */
400         spinlock_t              ec_lock;
401         cfs_list_t           ec_objects;
402         cfs_list_t           ec_locks;
403         int                  ec_nstripes;
404         __u64                ec_unique;
405 };
406
407 /* Generic subset of OSTs */
408 struct ost_pool {
409         __u32              *op_array;      /* array of index of
410                                                    lov_obd->lov_tgts */
411         unsigned int        op_count;      /* number of OSTs in the array */
412         unsigned int        op_size;       /* allocated size of lp_array */
413         struct rw_semaphore op_rw_sem;     /* to protect ost_pool use */
414 };
415
416 /* allow statfs data caching for 1 second */
417 #define OBD_STATFS_CACHE_SECONDS 1
418
419 struct lov_tgt_desc {
420         cfs_list_t          ltd_kill;
421         struct obd_uuid     ltd_uuid;
422         struct obd_device  *ltd_obd;
423         struct obd_export  *ltd_exp;
424         __u32               ltd_gen;
425         __u32               ltd_index;   /* index in lov_obd->tgts */
426         unsigned long       ltd_active:1,/* is this target up for requests */
427                             ltd_activate:1,/* should  target be activated */
428                             ltd_reap:1;  /* should this target be deleted */
429 };
430
431 struct lov_obd {
432         struct lov_desc         desc;
433         struct lov_tgt_desc   **lov_tgts;               /* sparse array */
434         struct ost_pool         lov_packed;             /* all OSTs in a packed
435                                                            array */
436         struct mutex            lov_lock;
437         struct obd_connect_data lov_ocd;
438         atomic_t                lov_refcount;
439         __u32                   lov_death_row;  /* tgts scheduled to be deleted */
440         __u32                   lov_tgt_size;   /* size of tgts array */
441         int                     lov_connects;
442         int                     lov_pool_count;
443         cfs_hash_t             *lov_pools_hash_body; /* used for key access */
444         cfs_list_t              lov_pool_list;  /* used for sequential access */
445         cfs_proc_dir_entry_t   *lov_pool_proc_entry;
446         enum lustre_sec_part    lov_sp_me;
447
448         /* Cached LRU and unstable data from upper layer */
449         void                   *lov_cache;
450
451         struct rw_semaphore     lov_notify_lock;
452 };
453
454 struct lmv_tgt_desc {
455         struct obd_uuid         ltd_uuid;
456         struct obd_export       *ltd_exp;
457         int                     ltd_idx;
458         struct mutex            ltd_fid_mutex;
459         unsigned long           ltd_active:1; /* target up for requests */
460 };
461
462 enum placement_policy {
463         PLACEMENT_CHAR_POLICY   = 0,
464         PLACEMENT_NID_POLICY    = 1,
465         PLACEMENT_INVAL_POLICY  = 2,
466         PLACEMENT_MAX_POLICY
467 };
468
469 typedef enum placement_policy placement_policy_t;
470
471 struct lmv_obd {
472         int                     refcount;
473         struct lu_client_fld    lmv_fld;
474         spinlock_t              lmv_lock;
475         placement_policy_t      lmv_placement;
476         struct lmv_desc         desc;
477         struct obd_uuid         cluuid;
478         struct obd_export       *exp;
479
480         struct mutex            init_mutex;
481         int                     connected;
482         int                     max_easize;
483         int                     max_def_easize;
484         int                     max_cookiesize;
485         int                     server_timeout;
486
487         int                     tgts_size; /* size of tgts array */
488         struct lmv_tgt_desc     **tgts;
489
490         struct obd_connect_data conn_data;
491 };
492
493 struct niobuf_local {
494         __u64           lnb_file_offset;
495         __u32           lnb_page_offset;
496         __u32           len;
497         __u32           flags;
498         struct page     *page;
499         struct dentry   *dentry;
500         int             lnb_grant_used;
501         int             rc;
502 };
503
504 #define LUSTRE_FLD_NAME         "fld"
505 #define LUSTRE_SEQ_NAME         "seq"
506
507 #define LUSTRE_MDD_NAME         "mdd"
508 #define LUSTRE_OSD_LDISKFS_NAME "osd-ldiskfs"
509 #define LUSTRE_OSD_ZFS_NAME     "osd-zfs"
510 #define LUSTRE_VVP_NAME         "vvp"
511 #define LUSTRE_LMV_NAME         "lmv"
512 #define LUSTRE_SLP_NAME         "slp"
513 #define LUSTRE_LOD_NAME         "lod"
514 #define LUSTRE_OSP_NAME         "osp"
515 #define LUSTRE_LWP_NAME         "lwp"
516
517 /* obd device type names */
518  /* FIXME all the references to LUSTRE_MDS_NAME should be swapped with LUSTRE_MDT_NAME */
519 #define LUSTRE_MDS_NAME         "mds"
520 #define LUSTRE_MDT_NAME         "mdt"
521 #define LUSTRE_MDC_NAME         "mdc"
522 #define LUSTRE_OSS_NAME         "ost"       /* FIXME change name to oss */
523 #define LUSTRE_OST_NAME         "obdfilter" /* FIXME change name to ost */
524 #define LUSTRE_OSC_NAME         "osc"
525 #define LUSTRE_LOV_NAME         "lov"
526 #define LUSTRE_MGS_NAME         "mgs"
527 #define LUSTRE_MGC_NAME         "mgc"
528
529 #define LUSTRE_ECHO_NAME        "obdecho"
530 #define LUSTRE_ECHO_CLIENT_NAME "echo_client"
531 #define LUSTRE_QMT_NAME         "qmt"
532
533 /* Constant obd names (post-rename) */
534 #define LUSTRE_MDS_OBDNAME "MDS"
535 #define LUSTRE_OSS_OBDNAME "OSS"
536 #define LUSTRE_MGS_OBDNAME "MGS"
537 #define LUSTRE_MGC_OBDNAME "MGC"
538
539 static inline int is_osp_on_mdt(char *name)
540 {
541         char   *ptr;
542
543         ptr = strrchr(name, '-');
544         if (ptr == NULL) {
545                 CERROR("%s is not a obdname\n", name);
546                 return 0;
547         }
548
549         /* 1.8 OSC/OSP name on MDT is fsname-OSTxxxx-osc */
550         if (strncmp(ptr + 1, "osc", 3) == 0)
551                 return 1;
552
553         if (strncmp(ptr + 1, "MDT", 3) != 0)
554                 return 0;
555
556         while (*(--ptr) != '-' && ptr != name);
557
558         if (ptr == name)
559                 return 0;
560
561         if (strncmp(ptr + 1, LUSTRE_OSP_NAME, strlen(LUSTRE_OSP_NAME)) != 0 &&
562             strncmp(ptr + 1, LUSTRE_OSC_NAME, strlen(LUSTRE_OSC_NAME)) != 0)
563                 return 0;
564
565         return 1;
566 }
567
568 /* Don't conflict with on-wire flags OBD_BRW_WRITE, etc */
569 #define N_LOCAL_TEMP_PAGE 0x10000000
570
571 struct obd_trans_info {
572         __u64                    oti_transno;
573         __u64                    oti_xid;
574         /* Only used on the server side for tracking acks. */
575         struct oti_req_ack_lock {
576                 struct lustre_handle lock;
577                 __u32                mode;
578         }                        oti_ack_locks[4];
579         void                    *oti_handle;
580         struct llog_cookie       oti_onecookie;
581         struct llog_cookie      *oti_logcookies;
582         int                      oti_numcookies;
583         /** synchronous write is needed */
584         unsigned long            oti_sync_write:1;
585
586         /* initial thread handling transaction */
587         struct ptlrpc_thread *   oti_thread;
588         __u32                    oti_conn_cnt;
589         /** VBR: versions */
590         __u64                    oti_pre_version;
591         /** JobID */
592         char                    *oti_jobid;
593
594         struct obd_uuid         *oti_ost_uuid;
595 };
596
597 static inline void oti_init(struct obd_trans_info *oti,
598                             struct ptlrpc_request *req)
599 {
600         if (oti == NULL)
601                 return;
602         memset(oti, 0, sizeof(*oti));
603
604         if (req == NULL)
605                 return;
606
607         oti->oti_xid = req->rq_xid;
608         /** VBR: take versions from request */
609         if (req->rq_reqmsg != NULL &&
610             lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY) {
611                 __u64 *pre_version = lustre_msg_get_versions(req->rq_reqmsg);
612                 oti->oti_pre_version = pre_version ? pre_version[0] : 0;
613                 oti->oti_transno = lustre_msg_get_transno(req->rq_reqmsg);
614         }
615
616         /** called from mds_create_objects */
617         if (req->rq_repmsg != NULL)
618                 oti->oti_transno = lustre_msg_get_transno(req->rq_repmsg);
619         oti->oti_thread = req->rq_svc_thread;
620         if (req->rq_reqmsg != NULL)
621                 oti->oti_conn_cnt = lustre_msg_get_conn_cnt(req->rq_reqmsg);
622 }
623
624 static inline void oti_alloc_cookies(struct obd_trans_info *oti,int num_cookies)
625 {
626         if (!oti)
627                 return;
628
629         if (num_cookies == 1)
630                 oti->oti_logcookies = &oti->oti_onecookie;
631         else
632                 OBD_ALLOC_LARGE(oti->oti_logcookies,
633                                 num_cookies * sizeof(oti->oti_onecookie));
634
635         oti->oti_numcookies = num_cookies;
636 }
637
638 static inline void oti_free_cookies(struct obd_trans_info *oti)
639 {
640         if (!oti || !oti->oti_logcookies)
641                 return;
642
643         if (oti->oti_logcookies == &oti->oti_onecookie)
644                 LASSERT(oti->oti_numcookies == 1);
645         else
646                 OBD_FREE_LARGE(oti->oti_logcookies,
647                                oti->oti_numcookies*sizeof(oti->oti_onecookie));
648         oti->oti_logcookies = NULL;
649         oti->oti_numcookies = 0;
650 }
651
652 /*
653  * Events signalled through obd_notify() upcall-chain.
654  */
655 enum obd_notify_event {
656         /* target added */
657         OBD_NOTIFY_CREATE,
658         /* Device connect start */
659         OBD_NOTIFY_CONNECT,
660         /* Device activated */
661         OBD_NOTIFY_ACTIVE,
662         /* Device deactivated */
663         OBD_NOTIFY_INACTIVE,
664         /* Device disconnected */
665         OBD_NOTIFY_DISCON,
666         /* Connect data for import were changed */
667         OBD_NOTIFY_OCD,
668         /* Sync request */
669         OBD_NOTIFY_SYNC_NONBLOCK,
670         OBD_NOTIFY_SYNC,
671         /* Configuration event */
672         OBD_NOTIFY_CONFIG,
673         /* Administratively deactivate/activate event */
674         OBD_NOTIFY_DEACTIVATE,
675         OBD_NOTIFY_ACTIVATE
676 };
677
678 /* bit-mask flags for config events */
679 enum config_flags {
680         CONFIG_LOG      = 0x1,  /* finished processing config log */
681         CONFIG_SYNC     = 0x2,  /* mdt synced 1 ost */
682         CONFIG_TARGET   = 0x4   /* one target is added */
683 };
684
685 /*
686  * Data structure used to pass obd_notify()-event to non-obd listeners (llite
687  * and liblustre being main examples).
688  */
689 struct obd_notify_upcall {
690         int (*onu_upcall)(struct obd_device *host, struct obd_device *watched,
691                           enum obd_notify_event ev, void *owner, void *data);
692         /* Opaque datum supplied by upper layer listener */
693         void *onu_owner;
694 };
695
696 struct target_recovery_data {
697         svc_handler_t           trd_recovery_handler;
698         pid_t                   trd_processing_task;
699         struct completion       trd_starting;
700         struct completion       trd_finishing;
701 };
702
703 struct obd_llog_group {
704         int                olg_seq;
705         struct llog_ctxt   *olg_ctxts[LLOG_MAX_CTXTS];
706         wait_queue_head_t  olg_waitq;
707         spinlock_t         olg_lock;
708         struct mutex       olg_cat_processing;
709 };
710
711 /* corresponds to one of the obd's */
712 #define OBD_DEVICE_MAGIC        0XAB5CD6EF
713 #define OBD_DEV_BY_DEVNAME      0xffffd0de
714
715 struct obd_device {
716         struct obd_type         *obd_type;
717         __u32                    obd_magic;
718
719         /* common and UUID name of this device */
720         char                     obd_name[MAX_OBD_NAME];
721         struct obd_uuid          obd_uuid;
722         int                      obd_minor;
723         struct lu_device        *obd_lu_dev;
724
725         /* bitfield modification is protected by obd_dev_lock */
726         unsigned long
727                 obd_attached:1,         /* finished attach */
728                 obd_set_up:1,           /* finished setup */
729                 obd_recovering:1,       /* there are recoverable clients */
730                 obd_abort_recovery:1,   /* recovery expired */
731                 obd_version_recov:1,    /* obd uses version checking */
732                 obd_replayable:1,       /* recovery is enabled;
733                                          * inform clients */
734                 obd_no_transno:1,       /* no committed-transno notification */
735                 obd_no_recov:1,         /* fail instead of retry messages */
736                 obd_stopping:1,         /* started cleanup */
737                 obd_starting:1,         /* started setup */
738                 obd_force:1,            /* cleanup with > 0 obd refcount */
739                 obd_fail:1,             /* cleanup with failover */
740                 obd_async_recov:1,      /* allow asynchronous orphan cleanup */
741                 obd_no_conn:1,          /* deny new connections */
742                 obd_inactive:1,         /* device active/inactive
743                                          * (for /proc/status only!!) */
744                 obd_no_ir:1,            /* no imperative recovery. */
745                 obd_process_conf:1,     /* device is processing mgs config */
746                 obd_uses_nid_stats:1;   /* maintain per-client OBD stats */
747
748         /* use separate field as it is set in interrupt to don't mess with
749          * protection of other bits using _bh lock */
750         unsigned long obd_recovery_expired:1;
751         /* uuid-export hash body */
752         cfs_hash_t             *obd_uuid_hash;
753         /* nid-export hash body */
754         cfs_hash_t             *obd_nid_hash;
755         /* nid stats body */
756         cfs_hash_t             *obd_nid_stats_hash;
757         cfs_list_t              obd_nid_stats;
758         atomic_t            obd_refcount;
759         cfs_list_t              obd_exports;
760         cfs_list_t              obd_unlinked_exports;
761         cfs_list_t              obd_delayed_exports;
762         struct list_head        obd_lwp_list;
763         int                     obd_num_exports;
764         spinlock_t              obd_nid_lock;
765         struct ldlm_namespace  *obd_namespace;
766         struct ptlrpc_client    obd_ldlm_client; /* XXX OST/MDS only */
767         /* a spinlock is OK for what we do now, may need a semaphore later */
768         spinlock_t              obd_dev_lock; /* protect OBD bitfield above */
769         struct mutex            obd_dev_mutex;
770         __u64                   obd_last_committed;
771         spinlock_t              obd_osfs_lock;
772         struct obd_statfs       obd_osfs;       /* locked by obd_osfs_lock */
773         __u64                   obd_osfs_age;
774         struct lvfs_run_ctxt    obd_lvfs_ctxt;
775         struct obd_llog_group   obd_olg;        /* default llog group */
776         struct obd_device       *obd_observer;
777         struct rw_semaphore     obd_observer_link_sem;
778         struct obd_notify_upcall obd_upcall;
779         struct obd_export       *obd_self_export;
780         struct obd_export       *obd_lwp_export;
781         /* list of exports in LRU order, for ping evictor, with obd_dev_lock */
782         cfs_list_t              obd_exports_timed;
783         time_t                  obd_eviction_timer; /* for ping evictor */
784
785         int                     obd_max_recoverable_clients;
786         atomic_t                obd_connected_clients;
787         int                     obd_stale_clients;
788         int                     obd_delayed_clients;
789         /* this lock protects all recovery list_heads, timer and
790          * obd_next_recovery_transno value */
791         spinlock_t                       obd_recovery_task_lock;
792         __u64                            obd_next_recovery_transno;
793         int                              obd_replayed_requests;
794         int                              obd_requests_queued_for_recovery;
795         wait_queue_head_t                obd_next_transno_waitq;
796         /* protected by obd_recovery_task_lock */
797         struct timer_list                obd_recovery_timer;
798         time_t                           obd_recovery_start; /* seconds */
799         time_t                           obd_recovery_end; /* seconds, for lprocfs_status */
800         int                              obd_recovery_time_hard;
801         int                              obd_recovery_timeout;
802         int                              obd_recovery_ir_factor;
803
804         /* new recovery stuff from CMD2 */
805         struct target_recovery_data      obd_recovery_data;
806         int                              obd_replayed_locks;
807         atomic_t                     obd_req_replay_clients;
808         atomic_t                     obd_lock_replay_clients;
809         /* all lists are protected by obd_recovery_task_lock */
810         cfs_list_t                       obd_req_replay_queue;
811         cfs_list_t                       obd_lock_replay_queue;
812         cfs_list_t                       obd_final_req_queue;
813
814         union {
815 #ifdef HAVE_SERVER_SUPPORT
816                 struct obd_device_target obt;
817                 struct filter_obd filter;
818                 struct ost_obd ost;
819                 struct echo_obd echo;
820 #endif
821                 struct client_obd cli;
822                 struct echo_client_obd echo_client;
823                 struct lov_obd lov;
824                 struct lmv_obd lmv;
825         } u;
826         /* Fields used by LProcFS */
827         unsigned int           obd_cntr_base;
828         struct lprocfs_stats  *obd_stats;
829
830         unsigned int           obd_md_cntr_base;
831         struct lprocfs_stats  *obd_md_stats;
832
833         struct proc_dir_entry   *obd_proc_entry;
834         struct proc_dir_entry   *obd_proc_exports_entry;
835         void                    *obd_proc_private;      /* type private PDEs */
836         struct proc_dir_entry   *obd_svc_procroot;
837         struct lprocfs_stats    *obd_svc_stats;
838         struct lprocfs_seq_vars *obd_vars;
839         atomic_t                obd_evict_inprogress;
840         wait_queue_head_t       obd_evict_inprogress_waitq;
841         cfs_list_t              obd_evict_list; /* protected with pet_lock */
842
843         /**
844          * Ldlm pool part. Save last calculated SLV and Limit.
845          */
846         rwlock_t                obd_pool_lock;
847         int                    obd_pool_limit;
848         __u64                  obd_pool_slv;
849
850         /**
851          * A list of outstanding class_incref()'s against this obd. For
852          * debugging.
853          */
854         struct lu_ref          obd_reference;
855
856         int                    obd_conn_inprogress;
857 };
858
859 #define OBD_LLOG_FL_SENDNOW     0x0001
860 #define OBD_LLOG_FL_EXIT        0x0002
861
862 enum obd_cleanup_stage {
863 /* Special case hack for MDS LOVs */
864         OBD_CLEANUP_EARLY,
865 /* can be directly mapped to .ldto_device_fini() */
866         OBD_CLEANUP_EXPORTS,
867 };
868
869 /* get/set_info keys */
870 #define KEY_ASYNC               "async"
871 #define KEY_BLOCKSIZE_BITS      "blocksize_bits"
872 #define KEY_BLOCKSIZE           "blocksize"
873 #define KEY_CAPA_KEY            "capa_key"
874 #define KEY_CHANGELOG_CLEAR     "changelog_clear"
875 #define KEY_FID2PATH            "fid2path"
876 #define KEY_CHECKSUM            "checksum"
877 #define KEY_CLEAR_FS            "clear_fs"
878 #define KEY_CONN_DATA           "conn_data"
879 #define KEY_EVICT_BY_NID        "evict_by_nid"
880 #define KEY_FIEMAP              "fiemap"
881 #define KEY_FLUSH_CTX           "flush_ctx"
882 #define KEY_GRANT_SHRINK        "grant_shrink"
883 #define KEY_HSM_COPYTOOL_SEND   "hsm_send"
884 #define KEY_INIT_RECOV_BACKUP   "init_recov_bk"
885 #define KEY_INIT_RECOV          "initial_recov"
886 #define KEY_INTERMDS            "inter_mds"
887 #define KEY_LAST_ID             "last_id"
888 #define KEY_LAST_FID            "last_fid"
889 #define KEY_LOCK_TO_STRIPE      "lock_to_stripe"
890 #define KEY_LOVDESC             "lovdesc"
891 #define KEY_LOV_IDX             "lov_idx"
892 #define KEY_MAX_EASIZE          "max_easize"
893 #define KEY_MDS_CONN            "mds_conn"
894 #define KEY_MGSSEC              "mgssec"
895 #define KEY_NEXT_ID             "next_id"
896 #define KEY_READ_ONLY           "read-only"
897 #define KEY_REGISTER_TARGET     "register_target"
898 #define KEY_SET_FS              "set_fs"
899 #define KEY_TGT_COUNT           "tgt_count"
900 /*      KEY_SET_INFO in lustre_idl.h */
901 #define KEY_SPTLRPC_CONF        "sptlrpc_conf"
902 #define KEY_CONNECT_FLAG        "connect_flags"
903 #define KEY_SYNC_LOCK_CANCEL    "sync_lock_cancel"
904
905 #define KEY_CACHE_SET           "cache_set"
906 #define KEY_CACHE_LRU_SHRINK    "cache_lru_shrink"
907 #define KEY_CHANGELOG_INDEX     "changelog_index"
908 #define KEY_OSP_CONNECTED       "osp_connected"
909
910 struct lu_context;
911
912 /* /!\ must be coherent with include/linux/namei.h on patched kernel */
913 #define IT_OPEN     (1 << 0)
914 #define IT_CREAT    (1 << 1)
915 #define IT_READDIR  (1 << 2)
916 #define IT_GETATTR  (1 << 3)
917 #define IT_LOOKUP   (1 << 4)
918 #define IT_UNLINK   (1 << 5)
919 #define IT_TRUNC    (1 << 6)
920 #define IT_GETXATTR (1 << 7)
921 #define IT_EXEC     (1 << 8)
922 #define IT_PIN      (1 << 9)
923 #define IT_LAYOUT   (1 << 10)
924 #define IT_QUOTA_DQACQ (1 << 11)
925 #define IT_QUOTA_CONN  (1 << 12)
926 #define IT_SETXATTR (1 << 13)
927
928 static inline int it_to_lock_mode(struct lookup_intent *it)
929 {
930         /* CREAT needs to be tested before open (both could be set) */
931         if (it->it_op & IT_CREAT)
932                 return LCK_CW;
933         else if (it->it_op & (IT_GETATTR | IT_OPEN | IT_LOOKUP |
934                               IT_LAYOUT))
935                 return LCK_CR;
936         else if (it->it_op &  IT_READDIR)
937                 return LCK_PR;
938         else if (it->it_op &  IT_GETXATTR)
939                 return LCK_PR;
940         else if (it->it_op &  IT_SETXATTR)
941                 return LCK_PW;
942
943         LASSERTF(0, "Invalid it_op: %d\n", it->it_op);
944         return -EINVAL;
945 }
946
947 struct md_op_data {
948         struct lu_fid           op_fid1; /* operation fid1 (usualy parent) */
949         struct lu_fid           op_fid2; /* operation fid2 (usualy child) */
950         struct lu_fid           op_fid3; /* 2 extra fids to find conflicting */
951         struct lu_fid           op_fid4; /* to the operation locks. */
952         mdsno_t                 op_mds;  /* what mds server open will go to */
953         struct lustre_handle    op_handle;
954         obd_time                op_mod_time;
955         const char             *op_name;
956         int                     op_namelen;
957         __u32                   op_mode;
958         struct lmv_stripe_md   *op_mea1;
959         struct lmv_stripe_md   *op_mea2;
960         __u32                   op_suppgids[2];
961         __u32                   op_fsuid;
962         __u32                   op_fsgid;
963         cfs_cap_t               op_cap;
964         void                   *op_data;
965
966         /* iattr fields and blocks. */
967         struct iattr            op_attr;
968 #ifdef __KERNEL__
969         unsigned int            op_attr_flags;
970 #endif
971         __u64                   op_valid;
972         loff_t                  op_attr_blocks;
973
974         /* Size-on-MDS epoch and flags. */
975         __u64                   op_ioepoch;
976         __u32                   op_flags;
977
978         /* Capa fields */
979         struct obd_capa        *op_capa1;
980         struct obd_capa        *op_capa2;
981
982         /* Various operation flags. */
983         enum mds_op_bias        op_bias;
984
985         /* Used by readdir */
986         __u64                   op_hash_offset;
987
988         /* Used by readdir */
989         __u32                   op_npages;
990
991         /* used to transfer info between the stacks of MD client
992          * see enum op_cli_flags */
993         __u32                   op_cli_flags;
994
995         /* File object data version for HSM release, on client */
996         __u64                   op_data_version;
997         struct lustre_handle    op_lease_handle;
998 };
999
1000 #define op_stripe_offset        op_ioepoch
1001 #define op_max_pages            op_valid
1002
1003 struct md_callback {
1004         int (*md_blocking_ast)(struct ldlm_lock *lock,
1005                                struct ldlm_lock_desc *desc,
1006                                void *data, int flag);
1007 };
1008
1009 struct md_enqueue_info;
1010 /* metadata stat-ahead */
1011 typedef int (* md_enqueue_cb_t)(struct ptlrpc_request *req,
1012                                 struct md_enqueue_info *minfo,
1013                                 int rc);
1014
1015 struct md_enqueue_info {
1016         struct md_op_data       mi_data;
1017         struct lookup_intent    mi_it;
1018         struct lustre_handle    mi_lockh;
1019         struct inode           *mi_dir;
1020         md_enqueue_cb_t         mi_cb;
1021         __u64                   mi_cbdata;
1022         unsigned int            mi_generation;
1023 };
1024
1025 struct obd_ops {
1026         struct module *o_owner;
1027         int (*o_iocontrol)(unsigned int cmd, struct obd_export *exp, int len,
1028                            void *karg, void *uarg);
1029         int (*o_get_info)(const struct lu_env *env, struct obd_export *,
1030                           __u32 keylen, void *key, __u32 *vallen, void *val,
1031                           struct lov_stripe_md *lsm);
1032         int (*o_set_info_async)(const struct lu_env *, struct obd_export *,
1033                                 __u32 keylen, void *key,
1034                                 __u32 vallen, void *val,
1035                                 struct ptlrpc_request_set *set);
1036         int (*o_attach)(struct obd_device *dev, obd_count len, void *data);
1037         int (*o_detach)(struct obd_device *dev);
1038         int (*o_setup) (struct obd_device *dev, struct lustre_cfg *cfg);
1039         int (*o_precleanup)(struct obd_device *dev,
1040                             enum obd_cleanup_stage cleanup_stage);
1041         int (*o_cleanup)(struct obd_device *dev);
1042         int (*o_process_config)(struct obd_device *dev, obd_count len,
1043                                 void *data);
1044         int (*o_postrecov)(struct obd_device *dev);
1045         int (*o_add_conn)(struct obd_import *imp, struct obd_uuid *uuid,
1046                           int priority);
1047         int (*o_del_conn)(struct obd_import *imp, struct obd_uuid *uuid);
1048         /* connect to the target device with given connection
1049          * data. @ocd->ocd_connect_flags is modified to reflect flags actually
1050          * granted by the target, which are guaranteed to be a subset of flags
1051          * asked for. If @ocd == NULL, use default parameters. */
1052         int (*o_connect)(const struct lu_env *env,
1053                          struct obd_export **exp, struct obd_device *src,
1054                          struct obd_uuid *cluuid, struct obd_connect_data *ocd,
1055                          void *localdata);
1056         int (*o_reconnect)(const struct lu_env *env,
1057                            struct obd_export *exp, struct obd_device *src,
1058                            struct obd_uuid *cluuid,
1059                            struct obd_connect_data *ocd,
1060                            void *localdata);
1061         int (*o_disconnect)(struct obd_export *exp);
1062
1063         /* Initialize/finalize fids infrastructure. */
1064         int (*o_fid_init)(struct obd_device *obd,
1065                           struct obd_export *exp, enum lu_cli_type type);
1066         int (*o_fid_fini)(struct obd_device *obd);
1067
1068         /* Allocate new fid according to passed @hint. */
1069         int (*o_fid_alloc)(struct obd_export *exp, struct lu_fid *fid,
1070                            struct md_op_data *op_data);
1071
1072         /*
1073          * Object with @fid is getting deleted, we may want to do something
1074          * about this.
1075          */
1076         int (*o_statfs)(const struct lu_env *, struct obd_export *exp,
1077                         struct obd_statfs *osfs, __u64 max_age, __u32 flags);
1078         int (*o_statfs_async)(struct obd_export *exp, struct obd_info *oinfo,
1079                               __u64 max_age, struct ptlrpc_request_set *set);
1080         int (*o_packmd)(struct obd_export *exp, struct lov_mds_md **disk_tgt,
1081                         struct lov_stripe_md *mem_src);
1082         int (*o_unpackmd)(struct obd_export *exp,struct lov_stripe_md **mem_tgt,
1083                           struct lov_mds_md *disk_src, int disk_len);
1084         int (*o_create)(const struct lu_env *env, struct obd_export *exp,
1085                         struct obdo *oa, struct lov_stripe_md **ea,
1086                         struct obd_trans_info *oti);
1087         int (*o_create_async)(struct obd_export *exp,  struct obd_info *oinfo,
1088                               struct lov_stripe_md **ea,
1089                               struct obd_trans_info *oti);
1090         int (*o_destroy)(const struct lu_env *env, struct obd_export *exp,
1091                          struct obdo *oa, struct lov_stripe_md *ea,
1092                          struct obd_trans_info *oti, struct obd_export *md_exp,
1093                          void *capa);
1094         int (*o_setattr)(const struct lu_env *, struct obd_export *exp,
1095                          struct obd_info *oinfo, struct obd_trans_info *oti);
1096         int (*o_setattr_async)(struct obd_export *exp, struct obd_info *oinfo,
1097                                struct obd_trans_info *oti,
1098                                struct ptlrpc_request_set *rqset);
1099         int (*o_getattr)(const struct lu_env *env, struct obd_export *exp,
1100                          struct obd_info *oinfo);
1101         int (*o_getattr_async)(struct obd_export *exp, struct obd_info *oinfo,
1102                                struct ptlrpc_request_set *set);
1103         int (*o_preprw)(const struct lu_env *env, int cmd,
1104                         struct obd_export *exp, struct obdo *oa, int objcount,
1105                         struct obd_ioobj *obj, struct niobuf_remote *remote,
1106                         int *nr_pages, struct niobuf_local *local,
1107                         struct obd_trans_info *oti, struct lustre_capa *capa);
1108         int (*o_commitrw)(const struct lu_env *env, int cmd,
1109                           struct obd_export *exp, struct obdo *oa,
1110                           int objcount, struct obd_ioobj *obj,
1111                           struct niobuf_remote *remote, int pages,
1112                           struct niobuf_local *local,
1113                           struct obd_trans_info *oti, int rc);
1114         int (*o_change_cbdata)(struct obd_export *, struct lov_stripe_md *,
1115                                ldlm_iterator_t it, void *data);
1116         int (*o_find_cbdata)(struct obd_export *, struct lov_stripe_md *,
1117                              ldlm_iterator_t it, void *data);
1118         int (*o_init_export)(struct obd_export *exp);
1119         int (*o_destroy_export)(struct obd_export *exp);
1120
1121         /* llog related obd_methods */
1122         int (*o_llog_init)(struct obd_device *obd, struct obd_llog_group *grp,
1123                            struct obd_device *disk_obd, int *idx);
1124         int (*o_llog_finish)(struct obd_device *obd, int count);
1125         int (*o_llog_connect)(struct obd_export *, struct llogd_conn_body *);
1126
1127         /* metadata-only methods */
1128         int (*o_pin)(struct obd_export *, const struct lu_fid *fid,
1129                      struct obd_capa *, struct obd_client_handle *, int flag);
1130         int (*o_unpin)(struct obd_export *, struct obd_client_handle *, int);
1131
1132         int (*o_import_event)(struct obd_device *, struct obd_import *,
1133                               enum obd_import_event);
1134
1135         int (*o_notify)(struct obd_device *obd, struct obd_device *watched,
1136                         enum obd_notify_event ev, void *data);
1137
1138         int (*o_health_check)(const struct lu_env *env, struct obd_device *);
1139         struct obd_uuid *(*o_get_uuid) (struct obd_export *exp);
1140
1141         /* quota methods */
1142         int (*o_quotacheck)(struct obd_device *, struct obd_export *,
1143                             struct obd_quotactl *);
1144         int (*o_quotactl)(struct obd_device *, struct obd_export *,
1145                           struct obd_quotactl *);
1146
1147         int (*o_ping)(const struct lu_env *, struct obd_export *exp);
1148
1149         /* pools methods */
1150         int (*o_pool_new)(struct obd_device *obd, char *poolname);
1151         int (*o_pool_del)(struct obd_device *obd, char *poolname);
1152         int (*o_pool_add)(struct obd_device *obd, char *poolname,
1153                           char *ostname);
1154         int (*o_pool_rem)(struct obd_device *obd, char *poolname,
1155                           char *ostname);
1156         void (*o_getref)(struct obd_device *obd);
1157         void (*o_putref)(struct obd_device *obd);
1158         /*
1159          * NOTE: If adding ops, add another LPROCFS_OBD_OP_INIT() line
1160          * to lprocfs_alloc_obd_stats() in obdclass/lprocfs_status.c.
1161          * Also, add a wrapper function in include/linux/obd_class.h. */
1162 };
1163
1164 /* lmv structures */
1165 struct lustre_md {
1166         struct mdt_body         *body;
1167         struct lov_stripe_md    *lsm;
1168         struct lmv_stripe_md    *lmv;
1169 #ifdef CONFIG_FS_POSIX_ACL
1170         struct posix_acl        *posix_acl;
1171 #endif
1172         struct mdt_remote_perm  *remote_perm;
1173         struct obd_capa         *mds_capa;
1174         struct obd_capa         *oss_capa;
1175         __u64                   lm_flags;
1176 };
1177
1178 struct md_open_data {
1179         struct obd_client_handle        *mod_och;
1180         struct ptlrpc_request           *mod_open_req;
1181         struct ptlrpc_request           *mod_close_req;
1182         atomic_t                         mod_refcount;
1183         bool                             mod_is_create;
1184 };
1185
1186 struct lookup_intent;
1187 struct cl_attr;
1188
1189 struct md_ops {
1190         /* Every operation from MD_STATS_FIRST_OP up to and including
1191          * MD_STATS_LAST_OP will be counted by EXP_MD_OP_INCREMENT()
1192          * and will appear in /proc/fs/lustre/{lmv,mdc}/.../md_stats.
1193          * Operations after MD_STATS_LAST_OP are excluded from stats.
1194          * There are a few reasons for doing this: we prune the 17
1195          * counters which will be of minimal use in understanding
1196          * metadata utilization, we save memory by allocating 15
1197          * instead of 32 counters, we save cycles by not counting.
1198          *
1199          * MD_STATS_FIRST_OP must be the first member of md_ops.
1200          */
1201 #define MD_STATS_FIRST_OP m_close
1202         int (*m_close)(struct obd_export *, struct md_op_data *,
1203                        struct md_open_data *, struct ptlrpc_request **);
1204
1205         int (*m_create)(struct obd_export *, struct md_op_data *,
1206                         const void *, int, int, __u32, __u32, cfs_cap_t,
1207                         __u64, struct ptlrpc_request **);
1208
1209         int (*m_enqueue)(struct obd_export *, struct ldlm_enqueue_info *,
1210                          struct lookup_intent *, struct md_op_data *,
1211                          struct lustre_handle *, void *, int,
1212                          struct ptlrpc_request **, __u64);
1213
1214         int (*m_getattr)(struct obd_export *, struct md_op_data *,
1215                          struct ptlrpc_request **);
1216
1217         int (*m_intent_lock)(struct obd_export *, struct md_op_data *,
1218                              void *, int, struct lookup_intent *, int,
1219                              struct ptlrpc_request **,
1220                              ldlm_blocking_callback, __u64);
1221
1222         int (*m_link)(struct obd_export *, struct md_op_data *,
1223                       struct ptlrpc_request **);
1224
1225         int (*m_rename)(struct obd_export *, struct md_op_data *,
1226                         const char *, int, const char *, int,
1227                         struct ptlrpc_request **);
1228
1229         int (*m_setattr)(struct obd_export *, struct md_op_data *, void *,
1230                          int , void *, int, struct ptlrpc_request **,
1231                          struct md_open_data **mod);
1232
1233         int (*m_fsync)(struct obd_export *, const struct lu_fid *,
1234                        struct obd_capa *, struct ptlrpc_request **);
1235
1236         int (*m_readpage)(struct obd_export *, struct md_op_data *,
1237                           struct page **, struct ptlrpc_request **);
1238
1239         int (*m_read_entry)(struct obd_export *, struct md_op_data *,
1240                             struct md_callback *cb_op, struct lu_dirent **ld,
1241                             struct page **ppage);
1242
1243         int (*m_unlink)(struct obd_export *, struct md_op_data *,
1244                         struct ptlrpc_request **);
1245
1246         int (*m_setxattr)(struct obd_export *, const struct lu_fid *,
1247                           struct obd_capa *, obd_valid, const char *,
1248                           const char *, int, int, int, __u32,
1249                           struct ptlrpc_request **);
1250
1251         int (*m_getxattr)(struct obd_export *, const struct lu_fid *,
1252                           struct obd_capa *, obd_valid, const char *,
1253                           const char *, int, int, int,
1254                           struct ptlrpc_request **);
1255
1256         int (*m_intent_getattr_async)(struct obd_export *,
1257                                       struct md_enqueue_info *,
1258                                       struct ldlm_enqueue_info *);
1259
1260         int (*m_revalidate_lock)(struct obd_export *, struct lookup_intent *,
1261                                  struct lu_fid *, __u64 *bits);
1262 #define MD_STATS_LAST_OP m_revalidate_lock
1263
1264         int (*m_getstatus)(struct obd_export *, struct lu_fid *,
1265                            struct obd_capa **);
1266
1267         int (*m_null_inode)(struct obd_export *, const struct lu_fid *);
1268
1269         int (*m_find_cbdata)(struct obd_export *, const struct lu_fid *,
1270                              ldlm_iterator_t, void *);
1271
1272         int (*m_done_writing)(struct obd_export *, struct md_op_data  *,
1273                               struct md_open_data *);
1274
1275         int (*m_getattr_name)(struct obd_export *, struct md_op_data *,
1276                               struct ptlrpc_request **);
1277
1278         int (*m_is_subdir)(struct obd_export *, const struct lu_fid *,
1279                            const struct lu_fid *,
1280                            struct ptlrpc_request **);
1281
1282         int (*m_init_ea_size)(struct obd_export *, int, int, int);
1283
1284         int (*m_get_lustre_md)(struct obd_export *, struct ptlrpc_request *,
1285                                struct obd_export *, struct obd_export *,
1286                                struct lustre_md *);
1287
1288         int (*m_free_lustre_md)(struct obd_export *, struct lustre_md *);
1289
1290         int (*m_merge_attr)(struct obd_export *,
1291                             const struct lmv_stripe_md *lsm,
1292                             struct cl_attr *attr);
1293
1294         int (*m_update_lsm_md)(struct obd_export *, struct lmv_stripe_md *lsm,
1295                                struct mdt_body *, ldlm_blocking_callback);
1296
1297         int (*m_set_open_replay_data)(struct obd_export *,
1298                                       struct obd_client_handle *,
1299                                       struct lookup_intent *);
1300
1301         int (*m_clear_open_replay_data)(struct obd_export *,
1302                                         struct obd_client_handle *);
1303
1304         int (*m_set_lock_data)(struct obd_export *, __u64 *, void *, __u64 *);
1305
1306         ldlm_mode_t (*m_lock_match)(struct obd_export *, __u64,
1307                                     const struct lu_fid *, ldlm_type_t,
1308                                     ldlm_policy_data_t *, ldlm_mode_t,
1309                                     struct lustre_handle *);
1310
1311         int (*m_cancel_unused)(struct obd_export *, const struct lu_fid *,
1312                                ldlm_policy_data_t *, ldlm_mode_t,
1313                                ldlm_cancel_flags_t flags, void *opaque);
1314
1315         int (*m_renew_capa)(struct obd_export *, struct obd_capa *oc,
1316                             renew_capa_cb_t cb);
1317
1318         int (*m_unpack_capa)(struct obd_export *, struct ptlrpc_request *,
1319                              const struct req_msg_field *, struct obd_capa **);
1320
1321         int (*m_get_remote_perm)(struct obd_export *, const struct lu_fid *,
1322                                  struct obd_capa *, __u32,
1323                                  struct ptlrpc_request **);
1324 };
1325
1326 struct lsm_operations {
1327         void (*lsm_free)(struct lov_stripe_md *);
1328         int (*lsm_destroy)(struct lov_stripe_md *, struct obdo *oa,
1329                            struct obd_export *md_exp);
1330         void (*lsm_stripe_by_index)(struct lov_stripe_md *, int *, obd_off *,
1331                                     obd_off *);
1332         void (*lsm_stripe_by_offset)(struct lov_stripe_md *, int *, obd_off *,
1333                                      obd_off *);
1334         int (*lsm_lmm_verify) (struct lov_mds_md *lmm, int lmm_bytes,
1335                                __u16 *stripe_count);
1336         int (*lsm_unpackmd) (struct lov_obd *lov, struct lov_stripe_md *lsm,
1337                              struct lov_mds_md *lmm);
1338 };
1339
1340 extern const struct lsm_operations lsm_v1_ops;
1341 extern const struct lsm_operations lsm_v3_ops;
1342 static inline const struct lsm_operations *lsm_op_find(int magic)
1343 {
1344         switch(magic) {
1345         case LOV_MAGIC_V1:
1346                return &lsm_v1_ops;
1347         case LOV_MAGIC_V3:
1348                return &lsm_v3_ops;
1349         default:
1350                CERROR("Cannot recognize lsm_magic %08x\n", magic);
1351                return NULL;
1352         }
1353 }
1354
1355 /* Requests for obd_extent_calc() */
1356 #define OBD_CALC_STRIPE_START   1
1357 #define OBD_CALC_STRIPE_END     2
1358
1359 static inline struct lustre_capa *oinfo_capa(struct obd_info *oinfo)
1360 {
1361         return oinfo->oi_capa;
1362 }
1363
1364 static inline struct md_open_data *obd_mod_alloc(void)
1365 {
1366         struct md_open_data *mod;
1367         OBD_ALLOC_PTR(mod);
1368         if (mod == NULL)
1369                 return NULL;
1370         atomic_set(&mod->mod_refcount, 1);
1371         return mod;
1372 }
1373
1374 #define obd_mod_get(mod) atomic_inc(&(mod)->mod_refcount)
1375 #define obd_mod_put(mod)                                          \
1376 ({                                                                \
1377         if (atomic_dec_and_test(&(mod)->mod_refcount)) {          \
1378                 if ((mod)->mod_open_req)                          \
1379                         ptlrpc_req_finished((mod)->mod_open_req); \
1380                 OBD_FREE_PTR(mod);                                \
1381         }                                                         \
1382 })
1383
1384 void obdo_from_inode(struct obdo *dst, struct inode *src, obd_flag valid);
1385 void obdo_set_parent_fid(struct obdo *dst, const struct lu_fid *parent);
1386
1387 /* return 1 if client should be resend request */
1388 static inline int client_should_resend(int resend, struct client_obd *cli)
1389 {
1390         return atomic_read(&cli->cl_resends) ?
1391                atomic_read(&cli->cl_resends) > resend : 1;
1392 }
1393
1394 /**
1395  * Return device name for this device
1396  *
1397  * XXX: lu_device is declared before obd_device, while a pointer pointing
1398  * back to obd_device in lu_device, so this helper function defines here
1399  * instead of in lu_object.h
1400  */
1401 static inline const char *lu_dev_name(const struct lu_device *lu_dev)
1402 {
1403         return lu_dev->ld_obd->obd_name;
1404 }
1405
1406 static inline bool filename_is_volatile(const char *name, int namelen, int *idx)
1407 {
1408         const char      *start;
1409         char            *end;
1410
1411         if (strncmp(name, LUSTRE_VOLATILE_HDR, LUSTRE_VOLATILE_HDR_LEN) != 0)
1412                 return false;
1413
1414         /* caller does not care of idx */
1415         if (idx == NULL)
1416                 return true;
1417
1418         /* volatile file, the MDT can be set from name */
1419         /* name format is LUSTRE_VOLATILE_HDR:[idx]: */
1420         /* if no MDT is specified, use std way */
1421         if (namelen < LUSTRE_VOLATILE_HDR_LEN + 2)
1422                 goto bad_format;
1423         /* test for no MDT idx case */
1424         if ((*(name + LUSTRE_VOLATILE_HDR_LEN) == ':') &&
1425             (*(name + LUSTRE_VOLATILE_HDR_LEN + 1) == ':')) {
1426                 *idx = -1;
1427                 return true;
1428         }
1429         /* we have an idx, read it */
1430         start = name + LUSTRE_VOLATILE_HDR_LEN + 1;
1431         *idx = strtoul(start, &end, 16);
1432         /* error cases:
1433          * no digit, no trailing :, negative value
1434          */
1435         if (((*idx == 0) && (end == start)) ||
1436             (*end != ':') || (*idx < 0))
1437                 goto bad_format;
1438
1439         return true;
1440 bad_format:
1441         /* bad format of mdt idx, we cannot return an error
1442          * to caller so we use hash algo */
1443         CERROR("Bad volatile file name format: %s\n",
1444                name + LUSTRE_VOLATILE_HDR_LEN);
1445         return false;
1446 }
1447
1448 static inline int cli_brw_size(struct obd_device *obd)
1449 {
1450         LASSERT(obd != NULL);
1451         return obd->u.cli.cl_max_pages_per_rpc << PAGE_CACHE_SHIFT;
1452 }
1453
1454 #endif /* __OBD_H */