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