Whamcloud - gitweb
LU-11952 mdt: fix reconstruct open
[fs/lustre-release.git] / lustre / include / lu_target.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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  */
31
32 #ifndef _LUSTRE_LU_TARGET_H
33 #define _LUSTRE_LU_TARGET_H
34
35 #include <dt_object.h>
36 #include <lustre_export.h>
37 #include <lustre_update.h>
38 #include <lustre_disk.h>
39 #include <lustre_lfsck.h>
40 #include <lu_object.h>
41
42 /* Each one represents a distribute transaction replay
43  * operation, and updates on each MDTs are linked to
44  * dtr_sub_list */
45 struct distribute_txn_replay_req {
46         /* update record, may be vmalloc'd */
47         struct llog_update_record *dtrq_lur;
48         int                     dtrq_lur_size;
49
50         /* linked to the distribute transaction replay
51          * list (tdtd_replay_list) */
52         struct list_head        dtrq_list;
53         __u64                   dtrq_master_transno;
54         __u64                   dtrq_batchid;
55         __u64                   dtrq_xid;
56
57         /* all of sub updates are linked here */
58         struct list_head        dtrq_sub_list;
59         spinlock_t              dtrq_sub_list_lock;
60
61         /* If the local update has been executed during replay */
62         __u32                   dtrq_local_update_executed:1;
63 };
64
65 /* Each one represents a sub replay item under a distribute
66  * transaction. A distribute transaction will be operated in
67  * two or more MDTs, and updates on each MDT will be represented
68  * by this structure */
69 struct distribute_txn_replay_req_sub {
70         __u32                   dtrqs_mdt_index;
71
72         /* All of cookies for the update will be linked here */
73         spinlock_t              dtrqs_cookie_list_lock;
74         struct list_head        dtrqs_cookie_list;
75         struct list_head        dtrqs_list;
76 };
77
78 struct target_distribute_txn_data;
79 typedef int (*distribute_txn_replay_handler_t)(struct lu_env *env,
80                                        struct target_distribute_txn_data *tdtd,
81                                        struct distribute_txn_replay_req *dtrq);
82 typedef char *(*target_show_update_logs_retrievers_t)(void *data, int *size,
83                                                       int *count);
84 struct target_distribute_txn_data {
85         /* Distribution ID is used to identify updates log on different
86          * MDTs for one operation */
87         spinlock_t              tdtd_batchid_lock;
88         __u64                   tdtd_batchid;
89         struct lu_target        *tdtd_lut;
90         struct dt_object        *tdtd_batchid_obj;
91         struct dt_device        *tdtd_dt;
92
93         /* Committed batchid for distribute transaction */
94         __u64                   tdtd_committed_batchid;
95
96         /* List for distribute transaction */
97         struct list_head        tdtd_list;
98
99         /* Threads to manage distribute transaction */
100         struct task_struct      *tdtd_commit_task;
101         atomic_t                tdtd_refcount;
102         struct lu_env           tdtd_env;
103
104         /* recovery update */
105         distribute_txn_replay_handler_t tdtd_replay_handler;
106         struct list_head                tdtd_replay_list;
107         struct list_head                tdtd_replay_finish_list;
108         spinlock_t                      tdtd_replay_list_lock;
109         /* last replay update transno */
110         __u32                           tdtd_replay_ready:1;
111
112         /* Manage the llog recovery threads */
113         atomic_t                tdtd_recovery_threads_count;
114         wait_queue_head_t       tdtd_recovery_threads_waitq;
115         target_show_update_logs_retrievers_t
116                                 tdtd_show_update_logs_retrievers;
117         void                    *tdtd_show_retrievers_cbdata;
118 };
119
120 struct tg_grants_data {
121         /* grants: all values in bytes */
122         /* grant lock to protect all grant counters */
123         spinlock_t               tgd_grant_lock;
124         /* total amount of dirty data reported by clients in incoming obdo */
125         u64                      tgd_tot_dirty;
126         /* sum of filesystem space granted to clients for async writes */
127         u64                      tgd_tot_granted;
128         /* grant used by I/Os in progress (between prepare and commit) */
129         u64                      tgd_tot_pending;
130         /* amount of available space in percentage that is never used for
131          * grants, used on MDT to always keep space for metadata. */
132         u64                      tgd_reserved_pcnt;
133         /* number of clients using grants */
134         int                      tgd_tot_granted_clients;
135         /* shall we grant space to clients not
136          * supporting OBD_CONNECT_GRANT_PARAM? */
137         unsigned int             tgd_grant_compat_disable:1,
138         /* if 1 then LBUG on grant miscount, CERROR otherwise */
139                                  tgd_lbug_on_grant_miscount:1;
140         /* protect all statfs-related counters */
141         spinlock_t               tgd_osfs_lock;
142         time64_t                 tgd_osfs_age;
143         int                      tgd_blockbits;
144         /* counters used during statfs update, protected by ofd_osfs_lock.
145          * record when some statfs refresh are in progress */
146         int                      tgd_statfs_inflight;
147         /* writes between prep & commit which might be accounted twice in
148          * ofd_osfs.os_bavail */
149         u64                      tgd_osfs_unstable;
150         /* track writes completed while statfs refresh is underway.
151          * tracking is only effective when ofd_statfs_inflight > 1 */
152         u64                      tgd_osfs_inflight;
153         /* statfs optimization: we cache a bit  */
154         struct obd_statfs        tgd_osfs;
155 };
156
157 struct lu_target {
158         struct obd_device       *lut_obd;
159         struct dt_device        *lut_bottom;
160         struct dt_device_param   lut_dt_conf;
161
162         struct target_distribute_txn_data *lut_tdtd;
163
164         /* supported opcodes and handlers for this target */
165         struct tgt_opc_slice    *lut_slice;
166         __u32                    lut_reply_fail_id;
167         __u32                    lut_request_fail_id;
168
169         /* sptlrpc rules */
170         rwlock_t                 lut_sptlrpc_lock;
171         struct sptlrpc_rule_set  lut_sptlrpc_rset;
172         spinlock_t               lut_flags_lock;
173         unsigned int             lut_syncjournal:1,
174                                  lut_sync_lock_cancel:2,
175                                  /* e.g. OST node */
176                                  lut_no_reconstruct:1,
177                                  /* enforce recovery for local clients */
178                                  lut_local_recovery:1,
179                                  lut_cksum_t10pi_enforce:1;
180         /* checksum types supported on this node */
181         enum cksum_types         lut_cksum_types_supported;
182         /** last_rcvd file */
183         struct dt_object        *lut_last_rcvd;
184         /* transaction callbacks */
185         struct dt_txn_callback   lut_txn_cb;
186         /** server data in last_rcvd file */
187         struct lr_server_data    lut_lsd;
188         /** Server last transaction number */
189         __u64                    lut_last_transno;
190         /** Lock protecting last transaction number */
191         spinlock_t               lut_translock;
192         /** Lock protecting client bitmap */
193         spinlock_t               lut_client_bitmap_lock;
194         /** Bitmap of known clients */
195         unsigned long           *lut_client_bitmap;
196         /* Number of clients supporting multiple modify RPCs
197          * recorded in the bitmap */
198         atomic_t                 lut_num_clients;
199         /* Client generation to identify client slot reuse */
200         atomic_t                 lut_client_generation;
201         /** reply_data file */
202         struct dt_object        *lut_reply_data;
203         /** Bitmap of used slots in the reply data file */
204         unsigned long           **lut_reply_bitmap;
205         /** target sync count, used for debug & test */
206         atomic_t                 lut_sync_count;
207
208         /** cross MDT locks which should trigger Sync-on-Lock-Cancel */
209         spinlock_t               lut_slc_locks_guard;
210         struct list_head         lut_slc_locks;
211
212         /* target grants fields */
213         struct tg_grants_data    lut_tgd;
214
215         /* target tunables */
216         const struct attribute  **lut_attrs;
217
218         /* FMD (file modification data) values */
219         int                      lut_fmd_max_num;
220         time64_t                 lut_fmd_max_age;
221 };
222
223 #define LUT_FMD_MAX_NUM_DEFAULT 128
224 #define LUT_FMD_MAX_AGE_DEFAULT (obd_timeout + 10)
225
226 /* number of slots in reply bitmap */
227 #define LUT_REPLY_SLOTS_PER_CHUNK (1<<20)
228 #define LUT_REPLY_SLOTS_MAX_CHUNKS 16
229
230 #define TRD_INDEX_MEMORY -1
231
232 /**
233  * Target reply data
234  */
235 struct tg_reply_data {
236         /** chain of reply data anchored in tg_export_data */
237         struct list_head        trd_list;
238         /** copy of on-disk reply data */
239         struct lsd_reply_data   trd_reply;
240         /** versions for Version Based Recovery */
241         __u64                   trd_pre_versions[4];
242         /** slot index in reply_data file */
243         int                     trd_index;
244         /** tag the client used */
245         __u16                   trd_tag;
246         /** child fid to reconstruct open */
247         struct lu_fid           trd_object;
248 };
249
250 extern struct lu_context_key tgt_session_key;
251
252 struct tgt_session_info {
253         /*
254          * The following members will be filled explicitly
255          * with specific data in tgt_ses_init().
256          */
257         struct req_capsule      *tsi_pill;
258
259         /*
260          * Lock request for "habeo clavis" operations.
261          */
262         struct ldlm_request     *tsi_dlm_req;
263
264         /* although we have export in req, there are cases when it is not
265          * available, e.g. closing files upon export destroy */
266         struct obd_export       *tsi_exp;
267         const struct lu_env     *tsi_env;
268         struct lu_target        *tsi_tgt;
269
270         const struct mdt_body   *tsi_mdt_body;
271         struct ost_body         *tsi_ost_body;
272         struct lu_object        *tsi_corpus;
273
274         struct lu_fid            tsi_fid;
275         struct ldlm_res_id       tsi_resid;
276
277         /* object affected by VBR, for last_rcvd_update */
278         struct dt_object        *tsi_vbr_obj;
279         /* open child object, for last_rcvd_update */
280         struct dt_object        *tsi_open_obj;
281         /* opdata for mdt_reint_open(), has the same value as
282          * ldlm_reply:lock_policy_res1.  The tgt_update_last_rcvd() stores
283          * this value onto disk for recovery when tgt_txn_stop_cb() is called.
284          */
285         __u64                    tsi_opdata;
286
287         /*
288          * Additional fail id that can be set by handler.
289          */
290         int                      tsi_reply_fail_id;
291         bool                     tsi_preprocessed;
292         /* request JobID */
293         char                    *tsi_jobid;
294
295         /* update replay */
296         __u64                   tsi_xid;
297         __u32                   tsi_result;
298         __u32                   tsi_client_gen;
299 };
300
301 static inline struct tgt_session_info *tgt_ses_info(const struct lu_env *env)
302 {
303         struct tgt_session_info *tsi;
304
305         LASSERT(env->le_ses != NULL);
306         tsi = lu_context_key_get(env->le_ses, &tgt_session_key);
307         LASSERT(tsi);
308         return tsi;
309 }
310
311 static inline void tgt_vbr_obj_set(const struct lu_env *env,
312                                    struct dt_object *obj)
313 {
314         struct tgt_session_info *tsi;
315
316         if (env->le_ses != NULL) {
317                 tsi = tgt_ses_info(env);
318                 tsi->tsi_vbr_obj = obj;
319         }
320 }
321
322 static inline void tgt_open_obj_set(const struct lu_env *env,
323                                    struct dt_object *obj)
324 {
325         struct tgt_session_info *tsi;
326
327         if (env->le_ses != NULL) {
328                 tsi = tgt_ses_info(env);
329                 tsi->tsi_open_obj = obj;
330         }
331 }
332
333 static inline void tgt_opdata_set(const struct lu_env *env, __u64 flags)
334 {
335         struct tgt_session_info *tsi;
336
337         if (env->le_ses != NULL) {
338                 tsi = tgt_ses_info(env);
339                 tsi->tsi_opdata |= flags;
340         }
341 }
342
343 static inline void tgt_opdata_clear(const struct lu_env *env, __u64 flags)
344 {
345         struct tgt_session_info *tsi;
346
347         if (env->le_ses != NULL) {
348                 tsi = tgt_ses_info(env);
349                 tsi->tsi_opdata &= ~flags;
350         }
351 }
352
353 /*
354  * Generic unified target support.
355  */
356 enum tgt_handler_flags {
357         /*
358          * struct *_body is passed in the incoming message, and object
359          * identified by this fid exists on disk.
360          */
361         HAS_BODY        = BIT(0),
362         /*
363          * struct ldlm_request is passed in the incoming message.
364          */
365         HAS_KEY         = BIT(1),
366         /*
367          * this request has fixed reply format, so that reply message can be
368          * packed by generic code.
369          */
370         HAS_REPLY       = BIT(2),
371         /*
372          * this request will modify something, so check whether the file system
373          * is readonly or not, then return -EROFS to client asap if necessary.
374          */
375         IS_MUTABLE      = BIT(3)
376 };
377
378 struct tgt_handler {
379         /* The name of this handler. */
380         const char              *th_name;
381         /* Fail id, check at the beginning */
382         int                      th_fail_id;
383         /* Operation code */
384         __u32                    th_opc;
385         /* Flags in enum tgt_handler_flags */
386         __u32                    th_flags;
387         /* Request version for this opcode */
388         enum lustre_msg_version  th_version;
389         /* Handler function */
390         int                     (*th_act)(struct tgt_session_info *tsi);
391         /* Handler function for high priority requests */
392         void                    (*th_hp)(struct tgt_session_info *tsi);
393         /* Request format for this request */
394         const struct req_format *th_fmt;
395 };
396
397 struct tgt_opc_slice {
398         __u32                    tos_opc_start; /* First op code */
399         __u32                    tos_opc_end; /* Last op code */
400         struct tgt_handler      *tos_hs; /* Registered handler */
401 };
402
403 static inline struct ptlrpc_request *tgt_ses_req(struct tgt_session_info *tsi)
404 {
405         return tsi->tsi_pill ? tsi->tsi_pill->rc_req : NULL;
406 }
407
408 static inline __u64 tgt_conn_flags(struct tgt_session_info *tsi)
409 {
410         LASSERT(tsi->tsi_exp);
411         return exp_connect_flags(tsi->tsi_exp);
412 }
413
414 static inline int req_is_replay(struct ptlrpc_request *req)
415 {
416         LASSERT(req->rq_reqmsg);
417         return !!(lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY);
418 }
419
420 static inline bool tgt_is_multimodrpcs_client(struct obd_export *exp)
421 {
422         return exp_connect_flags(exp) & OBD_CONNECT_MULTIMODRPCS;
423 }
424
425 static inline bool tgt_is_increasing_xid_client(struct obd_export *exp)
426 {
427         return exp_connect_flags2(exp) & OBD_CONNECT2_INC_XID;
428 }
429
430 /* target/tgt_handler.c */
431 int tgt_request_handle(struct ptlrpc_request *req);
432 char *tgt_name(struct lu_target *tgt);
433 void tgt_counter_incr(struct obd_export *exp, int opcode);
434 int tgt_connect_check_sptlrpc(struct ptlrpc_request *req,
435                               struct obd_export *exp);
436 int tgt_adapt_sptlrpc_conf(struct lu_target *tgt);
437 int tgt_connect(struct tgt_session_info *tsi);
438 int tgt_disconnect(struct tgt_session_info *uti);
439 int tgt_obd_ping(struct tgt_session_info *tsi);
440 int tgt_enqueue(struct tgt_session_info *tsi);
441 int tgt_convert(struct tgt_session_info *tsi);
442 int tgt_bl_callback(struct tgt_session_info *tsi);
443 int tgt_cp_callback(struct tgt_session_info *tsi);
444 int tgt_llog_open(struct tgt_session_info *tsi);
445 int tgt_llog_read_header(struct tgt_session_info *tsi);
446 int tgt_llog_next_block(struct tgt_session_info *tsi);
447 int tgt_llog_prev_block(struct tgt_session_info *tsi);
448 int tgt_sec_ctx_init(struct tgt_session_info *tsi);
449 int tgt_sec_ctx_init_cont(struct tgt_session_info *tsi);
450 int tgt_sec_ctx_fini(struct tgt_session_info *tsi);
451 int tgt_sendpage(struct tgt_session_info *tsi, struct lu_rdpg *rdpg, int nob);
452 int tgt_send_buffer(struct tgt_session_info *tsi, struct lu_rdbuf *rdbuf);
453 int tgt_validate_obdo(struct tgt_session_info *tsi, struct obdo *oa);
454 int tgt_sync(const struct lu_env *env, struct lu_target *tgt,
455              struct dt_object *obj, __u64 start, __u64 end);
456
457 int tgt_io_thread_init(struct ptlrpc_thread *thread);
458 void tgt_io_thread_done(struct ptlrpc_thread *thread);
459
460 int tgt_mdt_data_lock(struct ldlm_namespace *ns, struct ldlm_res_id *res_id,
461                       struct lustre_handle *lh, int mode, __u64 *flags);
462 int tgt_extent_lock(const struct lu_env *env, struct ldlm_namespace *ns,
463                     struct ldlm_res_id *res_id, __u64 start, __u64 end,
464                     struct lustre_handle *lh, int mode, __u64 *flags);
465 void tgt_data_unlock(struct lustre_handle *lh, enum ldlm_mode mode);
466 int tgt_brw_read(struct tgt_session_info *tsi);
467 int tgt_brw_write(struct tgt_session_info *tsi);
468 int tgt_lseek(struct tgt_session_info *tsi);
469 int tgt_hpreq_handler(struct ptlrpc_request *req);
470 void tgt_register_lfsck_in_notify_local(int (*notify)(const struct lu_env *,
471                                                       struct dt_device *,
472                                                       struct lfsck_req_local *,
473                                                       struct thandle *));
474 void tgt_register_lfsck_in_notify(int (*notify)(const struct lu_env *,
475                                                 struct dt_device *,
476                                                 struct lfsck_request *));
477 void tgt_register_lfsck_query(int (*query)(const struct lu_env *,
478                                            struct dt_device *,
479                                            struct lfsck_request *,
480                                            struct lfsck_reply *,
481                                            struct lfsck_query *));
482 int req_can_reconstruct(struct ptlrpc_request *req, struct tg_reply_data *trd);
483
484 extern struct tgt_handler tgt_sec_ctx_handlers[];
485 extern struct tgt_handler tgt_lfsck_handlers[];
486 extern struct tgt_handler tgt_obd_handlers[];
487 extern struct tgt_handler tgt_dlm_handlers[];
488 extern struct tgt_handler tgt_llog_handlers[];
489 extern struct tgt_handler tgt_out_handlers[];
490 extern struct tgt_handler fld_handlers[];
491 extern struct tgt_handler seq_handlers[];
492
493 typedef void (*tgt_cb_t)(struct lu_target *lut, __u64 transno,
494                          void *data, int err);
495 struct tgt_commit_cb {
496         tgt_cb_t  tgt_cb_func;
497         void     *tgt_cb_data;
498 };
499
500 int tgt_hpreq_handler(struct ptlrpc_request *req);
501
502 /* target/tgt_main.c */
503 void tgt_boot_epoch_update(struct lu_target *lut);
504 void tgt_save_slc_lock(struct lu_target *lut, struct ldlm_lock *lock,
505                        __u64 transno);
506 void tgt_discard_slc_lock(struct lu_target *lut, struct ldlm_lock *lock);
507 int tgt_init(const struct lu_env *env, struct lu_target *lut,
508              struct obd_device *obd, struct dt_device *dt,
509              struct tgt_opc_slice *slice,
510              int request_fail_id, int reply_fail_id);
511 void tgt_fini(const struct lu_env *env, struct lu_target *lut);
512 int tgt_client_alloc(struct obd_export *exp);
513 void tgt_client_free(struct obd_export *exp);
514 int tgt_client_del(const struct lu_env *env, struct obd_export *exp);
515 int tgt_client_add(const struct lu_env *env, struct obd_export *exp, int);
516 int tgt_client_new(const struct lu_env *env, struct obd_export *exp);
517 int tgt_server_data_update(const struct lu_env *env, struct lu_target *tg,
518                            int sync);
519 int tgt_reply_data_init(const struct lu_env *env, struct lu_target *tgt);
520 int tgt_lookup_reply(struct ptlrpc_request *req, struct tg_reply_data *trd);
521 int tgt_mk_reply_data(const struct lu_env *env, struct lu_target *tgt,
522                       struct tg_export_data *ted, struct ptlrpc_request *req,
523                       __u64 opdata, struct thandle *th, bool write_update,
524                       __u64 transno);
525 struct tg_reply_data *tgt_lookup_reply_by_xid(struct tg_export_data *ted,
526                                                __u64 xid);
527 int tgt_tunables_init(struct lu_target *lut);
528 void tgt_tunables_fini(struct lu_target *lut);
529 void tgt_mask_cksum_types(struct lu_target *lut, enum cksum_types *cksum_types);
530
531 /* target/tgt_grant.c */
532 static inline int exp_grant_param_supp(struct obd_export *exp)
533 {
534         return !!(exp_connect_flags(exp) & OBD_CONNECT_GRANT_PARAM);
535 }
536
537 /* Blocksize used for client not supporting OBD_CONNECT_GRANT_PARAM.
538  * That's 4KB=2^12 which is the biggest block size known to work whatever
539  * the client's page size is. */
540 #define COMPAT_BSIZE_SHIFT 12
541
542 void tgt_grant_sanity_check(struct obd_device *obd, const char *func);
543 void tgt_grant_connect(const struct lu_env *env, struct obd_export *exp,
544                        struct obd_connect_data *data, bool new_conn);
545 void tgt_grant_discard(struct obd_export *exp);
546 void tgt_grant_prepare_read(const struct lu_env *env, struct obd_export *exp,
547                             struct obdo *oa);
548 void tgt_grant_prepare_write(const struct lu_env *env, struct obd_export *exp,
549                              struct obdo *oa, struct niobuf_remote *rnb,
550                              int niocount);
551 void tgt_grant_commit(struct obd_export *exp, unsigned long grant_used, int rc);
552 int tgt_grant_commit_cb_add(struct thandle *th, struct obd_export *exp,
553                             unsigned long grant);
554 long tgt_grant_create(const struct lu_env *env, struct obd_export *exp,
555                       s64 *nr);
556 int tgt_statfs_internal(const struct lu_env *env, struct lu_target *lut,
557                         struct obd_statfs *osfs, time64_t max_age,
558                         int *from_cache);
559 ssize_t tot_dirty_show(struct kobject *kobj, struct attribute *attr,
560                        char *buf);
561 ssize_t tot_granted_show(struct kobject *kobj, struct attribute *attr,
562                          char *buf);
563 ssize_t tot_pending_show(struct kobject *kobj, struct attribute *attr,
564                          char *buf);
565 ssize_t grant_compat_disable_show(struct kobject *kobj, struct attribute *attr,
566                                   char *buf);
567 ssize_t grant_compat_disable_store(struct kobject *kobj,
568                                    struct attribute *attr,
569                                    const char *buffer, size_t count);
570 ssize_t lbug_on_grant_miscount_show(struct kobject *kobj,
571                                     struct attribute *attr, char *buf);
572 ssize_t lbug_on_grant_miscount_store(struct kobject *kobj,
573                                      struct attribute *attr,
574                                      const char *buffer, size_t count);
575 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 16, 53, 0)
576 ssize_t sync_lock_cancel_show(struct kobject *kobj,
577                               struct attribute *attr, char *buf);
578 ssize_t sync_lock_cancel_store(struct kobject *kobj, struct attribute *attr,
579                                const char *buffer, size_t count);
580 #endif
581
582 /* FMD */
583 void tgt_fmd_update(struct obd_export *exp, const struct lu_fid *fid,
584                     __u64 xid);
585 bool tgt_fmd_check(struct obd_export *exp, const struct lu_fid *fid,
586                    __u64 xid);
587 #ifdef DO_FMD_DROP
588 void tgt_fmd_drop(struct obd_export *exp, const struct lu_fid *fid);
589 #else
590 #define tgt_fmd_drop(exp, fid) do {} while (0)
591 #endif
592
593 /* target/update_trans.c */
594 int distribute_txn_init(const struct lu_env *env,
595                         struct lu_target *lut,
596                         struct target_distribute_txn_data *tdtd,
597                         __u32 index);
598 void distribute_txn_fini(const struct lu_env *env,
599                          struct target_distribute_txn_data *tdtd);
600
601 /* target/update_recovery.c */
602 int insert_update_records_to_replay_list(struct target_distribute_txn_data *,
603                                          struct llog_update_record *,
604                                          struct llog_cookie *, __u32);
605 void dtrq_list_dump(struct target_distribute_txn_data *tdtd,
606                     unsigned int mask);
607 void dtrq_list_destroy(struct target_distribute_txn_data *tdtd);
608 int distribute_txn_replay_handle(struct lu_env *env,
609                            struct target_distribute_txn_data *tdtd,
610                            struct distribute_txn_replay_req *dtrq);
611 __u64 distribute_txn_get_next_transno(struct target_distribute_txn_data *tdtd);
612 struct distribute_txn_replay_req *
613 distribute_txn_get_next_req(struct target_distribute_txn_data *tdtd);
614 void dtrq_destroy(struct distribute_txn_replay_req *dtrq);
615 struct distribute_txn_replay_req_sub *
616 dtrq_sub_lookup(struct distribute_txn_replay_req *dtrq, __u32 mdt_index);
617 struct distribute_txn_replay_req *
618 distribute_txn_lookup_finish_list(struct target_distribute_txn_data *tdtd,
619                                   __u64 transno);
620 bool is_req_replayed_by_update(struct ptlrpc_request *req);
621 enum {
622         ESERIOUS = 0x0001000
623 };
624
625 static inline int err_serious(int rc)
626 {
627         LASSERT(rc < 0);
628         return -(-rc | ESERIOUS);
629 }
630
631 static inline int clear_serious(int rc)
632 {
633         if (rc < 0)
634                 rc = -(-rc & ~ESERIOUS);
635         return rc;
636 }
637
638 static inline int is_serious(int rc)
639 {
640         return (rc < 0 && -rc & ESERIOUS);
641 }
642
643 /*
644  * Unified target generic handers macros and generic functions.
645  */
646 #define TGT_RPC_HANDLER_HP(base, flags, opc, fn, hp, fmt, version)      \
647 [opc - base] = {                                                        \
648         .th_name        = #opc,                                         \
649         .th_fail_id     = OBD_FAIL_ ## opc ## _NET,                     \
650         .th_opc         = opc,                                          \
651         .th_flags       = flags,                                        \
652         .th_act         = fn,                                           \
653         .th_fmt         = fmt,                                          \
654         .th_version     = version,                                      \
655         .th_hp          = hp,                                           \
656 }
657 #define TGT_RPC_HANDLER(base, flags, opc, fn, fmt, version)             \
658         TGT_RPC_HANDLER_HP(base, flags, opc, fn, NULL, fmt, version)
659
660 /* MDT Request with a format known in advance */
661 #define TGT_MDT_HDL(flags, name, fn)                                    \
662         TGT_RPC_HANDLER(MDS_FIRST_OPC, flags, name, fn, &RQF_ ## name,  \
663                         LUSTRE_MDS_VERSION)
664 /* Request with a format we do not yet know */
665 #define TGT_MDT_HDL_VAR(flags, name, fn)                                \
666         TGT_RPC_HANDLER(MDS_FIRST_OPC, flags, name, fn, NULL,           \
667                         LUSTRE_MDS_VERSION)
668
669 /* OST Request with a format known in advance */
670 #define TGT_OST_HDL(flags, name, fn)                                    \
671         TGT_RPC_HANDLER(OST_FIRST_OPC, flags, name, fn, &RQF_ ## name,  \
672                         LUSTRE_OST_VERSION)
673 #define TGT_OST_HDL_HP(flags, name, fn, hp)                             \
674         TGT_RPC_HANDLER_HP(OST_FIRST_OPC, flags, name, fn, hp,          \
675                            &RQF_ ## name, LUSTRE_OST_VERSION)
676
677 /* MGS request with a format known in advance */
678 #define TGT_MGS_HDL(flags, name, fn)                                    \
679         TGT_RPC_HANDLER(MGS_FIRST_OPC, flags, name, fn, &RQF_ ## name,  \
680                         LUSTRE_MGS_VERSION)
681 #define TGT_MGS_HDL_VAR(flags, name, fn)                                \
682         TGT_RPC_HANDLER(MGS_FIRST_OPC, flags, name, fn, NULL,           \
683                         LUSTRE_MGS_VERSION)
684
685 /*
686  * OBD handler macros and generic functions.
687  */
688 #define TGT_OBD_HDL(flags, name, fn)                                    \
689         TGT_RPC_HANDLER(OBD_FIRST_OPC, flags, name, fn, &RQF_ ## name,  \
690                         LUSTRE_OBD_VERSION)
691 #define TGT_OBD_HDL_VAR(flags, name, fn)                                \
692         TGT_RPC_HANDLER(OBD_FIRST_OPC, flags, name, fn, NULL,           \
693                         LUSTRE_OBD_VERSION)
694
695 /*
696  * DLM handler macros and generic functions.
697  */
698 #define TGT_DLM_HDL_VAR(flags, name, fn)                                \
699         TGT_RPC_HANDLER(LDLM_FIRST_OPC, flags, name, fn, NULL,          \
700                         LUSTRE_DLM_VERSION)
701 #define TGT_DLM_HDL(flags, name, fn)                                    \
702         TGT_RPC_HANDLER(LDLM_FIRST_OPC, flags, name, fn, &RQF_ ## name, \
703                         LUSTRE_DLM_VERSION)
704
705 /*
706  * LLOG handler macros and generic functions.
707  */
708 #define TGT_LLOG_HDL_VAR(flags, name, fn)                               \
709         TGT_RPC_HANDLER(LLOG_FIRST_OPC, flags, name, fn, NULL,          \
710                         LUSTRE_LOG_VERSION)
711 #define TGT_LLOG_HDL(flags, name, fn)                                   \
712         TGT_RPC_HANDLER(LLOG_FIRST_OPC, flags, name, fn, &RQF_ ## name, \
713                         LUSTRE_LOG_VERSION)
714
715 /*
716  * Sec context handler macros and generic functions.
717  */
718 #define TGT_SEC_HDL_VAR(flags, name, fn)                                \
719         TGT_RPC_HANDLER(SEC_FIRST_OPC, flags, name, fn, NULL,           \
720                         LUSTRE_OBD_VERSION)
721
722 #define TGT_QUOTA_HDL(flags, name, fn)                                  \
723         TGT_RPC_HANDLER(QUOTA_DQACQ, flags, name, fn, &RQF_ ## name,    \
724                         LUSTRE_MDS_VERSION)
725
726 /* Sequence service handlers */
727 #define TGT_SEQ_HDL(flags, name, fn)                                    \
728         TGT_RPC_HANDLER(SEQ_QUERY, flags, name, fn, &RQF_ ## name,      \
729                         LUSTRE_MDS_VERSION)
730
731 /* FID Location Database handlers */
732 #define TGT_FLD_HDL_VAR(flags, name, fn)                                \
733         TGT_RPC_HANDLER(FLD_QUERY, flags, name, fn, NULL,               \
734                         LUSTRE_MDS_VERSION)
735
736 /* LFSCK handlers */
737 #define TGT_LFSCK_HDL(flags, name, fn)                                  \
738         TGT_RPC_HANDLER(LFSCK_FIRST_OPC, flags, name, fn,               \
739                         &RQF_ ## name, LUSTRE_OBD_VERSION)
740
741 /* Request with a format known in advance */
742 #define TGT_UPDATE_HDL(flags, name, fn)                                 \
743         TGT_RPC_HANDLER(OUT_UPDATE, flags, name, fn, &RQF_ ## name,     \
744                         LUSTRE_MDS_VERSION)
745
746 #endif /* __LUSTRE_LU_TARGET_H */