Whamcloud - gitweb
95777eda2e0b9802c2ab773940d709dac6d375c3
[fs/lustre-release.git] / lustre / osp / osp_trans.c
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) 2014, 2017, Intel Corporation.
24  */
25 /*
26  * lustre/osp/osp_trans.c
27  *
28  *
29  * 1. OSP (Object Storage Proxy) transaction methods
30  *
31  * Implement OSP layer transaction related interfaces for the dt_device API
32  * dt_device_operations.
33  *
34  *
35  * 2. Handle asynchronous idempotent operations
36  *
37  * The OSP uses OUT (Object Unified Target) RPC to talk with other server
38  * (MDT or OST) for kinds of operations, such as create, unlink, insert,
39  * delete, lookup, set_(x)attr, get_(x)attr, and etc. To reduce the number
40  * of RPCs, we allow multiple operations to be packaged together in single
41  * OUT RPC.
42  *
43  * For the asynchronous idempotent operations, such as get_(x)attr, related
44  * RPCs will be inserted into an osp_device based shared asynchronous request
45  * queue - osp_device::opd_async_requests. When the queue is full, all the
46  * requests in the queue will be packaged into a single OUT RPC and given to
47  * the ptlrpcd daemon (for sending), then the queue is purged and other new
48  * requests can be inserted into it.
49  *
50  * When the asynchronous idempotent operation inserts the request into the
51  * shared queue, it will register an interpreter. When the packaged OUT RPC
52  * is replied (or failed to be sent out), all the registered interpreters
53  * will be called one by one to handle each own result.
54  *
55  *
56  * There are three kinds of transactions
57  *
58  * 1. Local transaction, all of updates of the transaction are in the local MDT.
59  * 2. Remote transaction, all of updates of the transaction are in one remote
60  * MDT, which only happens in LFSCK now.
61  * 3. Distribute transaction, updates for the transaction are in mulitple MDTs.
62  *
63  * Author: Di Wang <di.wang@intel.com>
64  * Author: Fan, Yong <fan.yong@intel.com>
65  */
66
67 #define DEBUG_SUBSYSTEM S_MDS
68
69 #include <lustre_net.h>
70 #include "osp_internal.h"
71
72 /**
73  * The argument for the interpreter callback of osp request.
74  */
75 struct osp_update_args {
76         struct osp_update_request *oaua_update;
77         atomic_t                 *oaua_count;
78         wait_queue_head_t        *oaua_waitq;
79         bool                      oaua_flow_control;
80         const struct lu_env      *oaua_update_env;
81 };
82
83 /**
84  * Call back for each update request.
85  */
86 struct osp_update_callback {
87         /* list in the osp_update_request::our_cb_items */
88         struct list_head                 ouc_list;
89
90         /* The target of the async update request. */
91         struct osp_object               *ouc_obj;
92
93         /* The data used by or_interpreter. */
94         void                            *ouc_data;
95
96         /* The interpreter function called after the async request handled. */
97         osp_update_interpreter_t        ouc_interpreter;
98 };
99
100 /**
101  * Allocate new update request
102  *
103  * Allocate new update request and insert it to the req_update_list.
104  *
105  * \param [in] our      osp_udate_request where to create a new
106  *                      update request
107  *
108  * \retval      0 if creation succeeds.
109  * \retval      negative errno if creation fails.
110  */
111 int osp_object_update_request_create(struct osp_update_request *our,
112                                      size_t size)
113 {
114         struct osp_update_request_sub *ours;
115         struct object_update_request *ourq;
116
117         OBD_ALLOC_PTR(ours);
118         if (ours == NULL)
119                 return -ENOMEM;
120
121         /* The object update request will be added to an SG list for
122          * bulk transfer. Some IB HW cannot handle partial pages in SG
123          * lists (since they create gaps in memory regions) so we
124          * round the size up to the next multiple of PAGE_SIZE. See
125          * LU-9983. */
126         LASSERT(size > 0);
127         size = round_up(size, PAGE_SIZE);
128         OBD_ALLOC_LARGE(ourq, size);
129         if (ourq == NULL) {
130                 OBD_FREE_PTR(ours);
131                 return -ENOMEM;
132         }
133
134         ourq->ourq_magic = UPDATE_REQUEST_MAGIC;
135         ourq->ourq_count = 0;
136         ours->ours_req = ourq;
137         ours->ours_req_size = size;
138         INIT_LIST_HEAD(&ours->ours_list);
139         list_add_tail(&ours->ours_list, &our->our_req_list);
140         our->our_req_nr++;
141
142         return 0;
143 }
144
145 /**
146  * Get current update request
147  *
148  * Get current object update request from our_req_list in
149  * osp_update_request, because we always insert the new update
150  * request in the last position, so the last update request
151  * in the list will be the current update req.
152  *
153  * \param[in] our       osp update request where to get the
154  *                      current object update.
155  *
156  * \retval              the current object update.
157  **/
158 struct osp_update_request_sub *
159 osp_current_object_update_request(struct osp_update_request *our)
160 {
161         if (list_empty(&our->our_req_list))
162                 return NULL;
163
164         return list_entry(our->our_req_list.prev, struct osp_update_request_sub,
165                           ours_list);
166 }
167
168 /**
169  * Allocate and initialize osp_update_request
170  *
171  * osp_update_request is being used to track updates being executed on
172  * this dt_device(OSD or OSP). The update buffer will be 4k initially,
173  * and increased if needed.
174  *
175  * \param [in] dt       dt device
176  *
177  * \retval              osp_update_request being allocated if succeed
178  * \retval              ERR_PTR(errno) if failed
179  */
180 struct osp_update_request *osp_update_request_create(struct dt_device *dt)
181 {
182         struct osp_update_request *our;
183         int rc;
184
185         OBD_ALLOC_PTR(our);
186         if (our == NULL)
187                 return ERR_PTR(-ENOMEM);
188
189         INIT_LIST_HEAD(&our->our_req_list);
190         INIT_LIST_HEAD(&our->our_cb_items);
191         INIT_LIST_HEAD(&our->our_list);
192         INIT_LIST_HEAD(&our->our_invalidate_cb_list);
193         spin_lock_init(&our->our_list_lock);
194
195         rc = osp_object_update_request_create(our, PAGE_SIZE);
196         if (rc != 0) {
197                 OBD_FREE_PTR(our);
198                 return ERR_PTR(rc);
199         }
200         return our;
201 }
202
203 void osp_update_request_destroy(const struct lu_env *env,
204                                 struct osp_update_request *our)
205 {
206         struct osp_update_request_sub *ours;
207         struct osp_update_request_sub *tmp;
208
209         if (our == NULL)
210                 return;
211
212         list_for_each_entry_safe(ours, tmp, &our->our_req_list, ours_list) {
213                 list_del(&ours->ours_list);
214                 if (ours->ours_req != NULL)
215                         OBD_FREE_LARGE(ours->ours_req, ours->ours_req_size);
216                 OBD_FREE_PTR(ours);
217         }
218
219         if (!list_empty(&our->our_invalidate_cb_list)) {
220                 struct lu_env lenv;
221                 struct osp_object *obj;
222                 struct osp_object *next;
223
224                 if (env == NULL) {
225                         lu_env_init(&lenv, LCT_MD_THREAD | LCT_DT_THREAD);
226                         env = &lenv;
227                 }
228
229                 list_for_each_entry_safe(obj, next,
230                                          &our->our_invalidate_cb_list,
231                                          opo_invalidate_cb_list) {
232                         spin_lock(&obj->opo_lock);
233                         list_del_init(&obj->opo_invalidate_cb_list);
234                         spin_unlock(&obj->opo_lock);
235
236                         dt_object_put(env, &obj->opo_obj);
237                 }
238
239                 if (env == &lenv)
240                         lu_env_fini(&lenv);
241         }
242
243         OBD_FREE_PTR(our);
244 }
245
246 static void
247 object_update_request_dump(const struct object_update_request *ourq,
248                            unsigned int mask)
249 {
250         unsigned int i;
251         size_t total_size = 0;
252
253         for (i = 0; i < ourq->ourq_count; i++) {
254                 struct object_update    *update;
255                 size_t                  size = 0;
256
257                 update = object_update_request_get(ourq, i, &size);
258                 LASSERT(update != NULL);
259                 CDEBUG(mask, "i = %u fid = "DFID" op = %s "
260                        "params = %d batchid = %llu size = %zu repsize %u\n",
261                        i, PFID(&update->ou_fid),
262                        update_op_str(update->ou_type),
263                        update->ou_params_count,
264                        update->ou_batchid, size,
265                        (unsigned)update->ou_result_size);
266
267                 total_size += size;
268         }
269
270         CDEBUG(mask, "updates = %p magic = %x count = %d size = %zu\n", ourq,
271                ourq->ourq_magic, ourq->ourq_count, total_size);
272 }
273
274 /**
275  * Prepare inline update request
276  *
277  * Prepare OUT update ptlrpc inline request, and the request usually includes
278  * one update buffer, which does not need bulk transfer.
279  *
280  * \param[in] env       execution environment
281  * \param[in] req       ptlrpc request
282  * \param[in] ours      sub osp_update_request to be packed
283  *
284  * \retval              0 if packing succeeds
285  * \retval              negative errno if packing fails
286  */
287 int osp_prep_inline_update_req(const struct lu_env *env,
288                                struct ptlrpc_request *req,
289                                struct osp_update_request *our,
290                                int repsize)
291 {
292         struct osp_update_request_sub *ours;
293         struct out_update_header *ouh;
294         __u32 update_req_size;
295         int rc;
296
297         ours = list_entry(our->our_req_list.next,
298                           struct osp_update_request_sub, ours_list);
299         update_req_size = object_update_request_size(ours->ours_req);
300         req_capsule_set_size(&req->rq_pill, &RMF_OUT_UPDATE_HEADER, RCL_CLIENT,
301                              update_req_size + sizeof(*ouh));
302
303         rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, OUT_UPDATE);
304         if (rc != 0)
305                 RETURN(rc);
306
307         ouh = req_capsule_client_get(&req->rq_pill, &RMF_OUT_UPDATE_HEADER);
308         ouh->ouh_magic = OUT_UPDATE_HEADER_MAGIC;
309         ouh->ouh_count = 1;
310         ouh->ouh_inline_length = update_req_size;
311         ouh->ouh_reply_size = repsize;
312
313         memcpy(ouh->ouh_inline_data, ours->ours_req, update_req_size);
314
315         req_capsule_set_size(&req->rq_pill, &RMF_OUT_UPDATE_REPLY,
316                              RCL_SERVER, repsize);
317
318         ptlrpc_request_set_replen(req);
319         req->rq_request_portal = OUT_PORTAL;
320         req->rq_reply_portal = OSC_REPLY_PORTAL;
321
322         RETURN(rc);
323 }
324
325 /**
326  * Prepare update request.
327  *
328  * Prepare OUT update ptlrpc request, and the request usually includes
329  * all of updates (stored in \param ureq) from one operation.
330  *
331  * \param[in] env       execution environment
332  * \param[in] imp       import on which ptlrpc request will be sent
333  * \param[in] ureq      hold all of updates which will be packed into the req
334  * \param[in] reqp      request to be created
335  *
336  * \retval              0 if preparation succeeds.
337  * \retval              negative errno if preparation fails.
338  */
339 int osp_prep_update_req(const struct lu_env *env, struct obd_import *imp,
340                         struct osp_update_request *our,
341                         struct ptlrpc_request **reqp)
342 {
343         struct ptlrpc_request           *req;
344         struct ptlrpc_bulk_desc         *desc;
345         struct osp_update_request_sub   *ours;
346         const struct object_update_request *ourq;
347         struct out_update_header        *ouh;
348         struct out_update_buffer        *oub;
349         __u32                           buf_count = 0;
350         int                             page_count = 0;
351         int                             repsize = 0;
352         struct object_update_reply      *reply;
353         int                             rc, i;
354         int                             total = 0;
355         ENTRY;
356
357         list_for_each_entry(ours, &our->our_req_list, ours_list) {
358                 object_update_request_dump(ours->ours_req, D_INFO);
359
360                 ourq = ours->ours_req;
361                 for (i = 0; i < ourq->ourq_count; i++) {
362                         struct object_update    *update;
363                         size_t                  size = 0;
364
365
366                         /* XXX: it's very inefficient to lookup update
367                          *      this way, iterating from the beginning
368                          *      each time */
369                         update = object_update_request_get(ourq, i, &size);
370                         LASSERT(update != NULL);
371
372                         repsize += sizeof(reply->ourp_lens[0]);
373                         repsize += sizeof(struct object_update_result);
374                         repsize += update->ou_result_size;
375                 }
376
377                 buf_count++;
378         }
379         repsize += sizeof(*reply);
380         if (repsize < OUT_UPDATE_REPLY_SIZE)
381                 repsize = OUT_UPDATE_REPLY_SIZE;
382         LASSERT(buf_count > 0);
383
384         req = ptlrpc_request_alloc(imp, &RQF_OUT_UPDATE);
385         if (req == NULL)
386                 RETURN(-ENOMEM);
387
388         if (buf_count == 1) {
389                 ours = list_entry(our->our_req_list.next,
390                                   struct osp_update_request_sub, ours_list);
391
392                 /* Let's check if it can be packed inline */
393                 if (object_update_request_size(ours->ours_req) +
394                     sizeof(struct out_update_header) <
395                                 OUT_UPDATE_MAX_INLINE_SIZE) {
396                         rc = osp_prep_inline_update_req(env, req, our, repsize);
397                         if (rc == 0)
398                                 *reqp = req;
399                         GOTO(out_req, rc);
400                 }
401         }
402
403         req_capsule_set_size(&req->rq_pill, &RMF_OUT_UPDATE_HEADER, RCL_CLIENT,
404                              sizeof(struct osp_update_request));
405
406         req_capsule_set_size(&req->rq_pill, &RMF_OUT_UPDATE_BUF, RCL_CLIENT,
407                              buf_count * sizeof(*oub));
408
409         rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, OUT_UPDATE);
410         if (rc != 0)
411                 GOTO(out_req, rc);
412
413         ouh = req_capsule_client_get(&req->rq_pill, &RMF_OUT_UPDATE_HEADER);
414         ouh->ouh_magic = OUT_UPDATE_HEADER_MAGIC;
415         ouh->ouh_count = buf_count;
416         ouh->ouh_inline_length = 0;
417         ouh->ouh_reply_size = repsize;
418         oub = req_capsule_client_get(&req->rq_pill, &RMF_OUT_UPDATE_BUF);
419         list_for_each_entry(ours, &our->our_req_list, ours_list) {
420                 oub->oub_size = ours->ours_req_size;
421                 oub++;
422                 /* First *and* last might be partial pages, hence +1 */
423                 page_count += DIV_ROUND_UP(ours->ours_req_size, PAGE_SIZE) + 1;
424         }
425
426         req->rq_bulk_write = 1;
427         desc = ptlrpc_prep_bulk_imp(req, page_count,
428                 MD_MAX_BRW_SIZE >> LNET_MTU_BITS,
429                 PTLRPC_BULK_GET_SOURCE,
430                 MDS_BULK_PORTAL, &ptlrpc_bulk_kiov_nopin_ops);
431         if (desc == NULL)
432                 GOTO(out_req, rc = -ENOMEM);
433
434         /* NB req now owns desc and will free it when it gets freed */
435         list_for_each_entry(ours, &our->our_req_list, ours_list) {
436                 desc->bd_frag_ops->add_iov_frag(desc, ours->ours_req,
437                                                 ours->ours_req_size);
438                 total += ours->ours_req_size;
439         }
440         CDEBUG(D_OTHER, "total %d in %u\n", total, our->our_update_nr);
441
442         req_capsule_set_size(&req->rq_pill, &RMF_OUT_UPDATE_REPLY,
443                              RCL_SERVER, repsize);
444
445         ptlrpc_request_set_replen(req);
446         req->rq_request_portal = OUT_PORTAL;
447         req->rq_reply_portal = OSC_REPLY_PORTAL;
448         *reqp = req;
449
450 out_req:
451         if (rc < 0)
452                 ptlrpc_req_finished(req);
453
454         RETURN(rc);
455 }
456
457 /**
458  * Send update RPC.
459  *
460  * Send update request to the remote MDT synchronously.
461  *
462  * \param[in] env       execution environment
463  * \param[in] imp       import on which ptlrpc request will be sent
464  * \param[in] our       hold all of updates which will be packed into the req
465  * \param[in] reqp      request to be created
466  *
467  * \retval              0 if RPC succeeds.
468  * \retval              negative errno if RPC fails.
469  */
470 int osp_remote_sync(const struct lu_env *env, struct osp_device *osp,
471                     struct osp_update_request *our,
472                     struct ptlrpc_request **reqp)
473 {
474         struct obd_import       *imp = osp->opd_obd->u.cli.cl_import;
475         struct ptlrpc_request   *req = NULL;
476         int                     rc;
477         ENTRY;
478
479         rc = osp_prep_update_req(env, imp, our, &req);
480         if (rc != 0)
481                 RETURN(rc);
482
483         osp_set_req_replay(osp, req);
484         req->rq_allow_intr = 1;
485
486         /* Note: some dt index api might return non-zero result here, like
487          * osd_index_ea_lookup, so we should only check rc < 0 here */
488         rc = ptlrpc_queue_wait(req);
489         our->our_rc = rc;
490         if (rc < 0 || reqp == NULL)
491                 ptlrpc_req_finished(req);
492         else
493                 *reqp = req;
494
495         RETURN(rc);
496 }
497
498 /**
499  * Invalidate all objects in the osp thandle
500  *
501  * invalidate all of objects in the update request, which will be called
502  * when the transaction is aborted.
503  *
504  * \param[in] oth       osp thandle.
505  */
506 static void osp_thandle_invalidate_object(const struct lu_env *env,
507                                           struct osp_thandle *oth,
508                                           int result)
509 {
510         struct osp_update_request *our = oth->ot_our;
511         struct osp_object *obj;
512         struct osp_object *next;
513
514         if (our == NULL)
515                 return;
516
517         list_for_each_entry_safe(obj, next, &our->our_invalidate_cb_list,
518                                  opo_invalidate_cb_list) {
519                 if (result < 0)
520                         osp_invalidate(env, &obj->opo_obj);
521
522                 spin_lock(&obj->opo_lock);
523                 list_del_init(&obj->opo_invalidate_cb_list);
524                 spin_unlock(&obj->opo_lock);
525
526                 dt_object_put(env, &obj->opo_obj);
527         }
528 }
529
530 static void osp_trans_stop_cb(const struct lu_env *env,
531                               struct osp_thandle *oth, int result)
532 {
533         struct dt_txn_commit_cb *dcb;
534         struct dt_txn_commit_cb *tmp;
535
536         /* call per-transaction stop callbacks if any */
537         list_for_each_entry_safe(dcb, tmp, &oth->ot_stop_dcb_list,
538                                  dcb_linkage) {
539                 LASSERTF(dcb->dcb_magic == TRANS_COMMIT_CB_MAGIC,
540                          "commit callback entry: magic=%x name='%s'\n",
541                          dcb->dcb_magic, dcb->dcb_name);
542                 list_del_init(&dcb->dcb_linkage);
543                 dcb->dcb_func(NULL, &oth->ot_super, dcb, result);
544         }
545
546         osp_thandle_invalidate_object(env, oth, result);
547 }
548
549 /**
550  * Allocate an osp request and initialize it with the given parameters.
551  *
552  * \param[in] obj               pointer to the operation target
553  * \param[in] data              pointer to the data used by the interpreter
554  * \param[in] interpreter       pointer to the interpreter function
555  *
556  * \retval                      pointer to the asychronous request
557  * \retval                      NULL if the allocation failed
558  */
559 static struct osp_update_callback *
560 osp_update_callback_init(struct osp_object *obj, void *data,
561                          osp_update_interpreter_t interpreter)
562 {
563         struct osp_update_callback *ouc;
564
565         OBD_ALLOC_PTR(ouc);
566         if (ouc == NULL)
567                 return NULL;
568
569         lu_object_get(osp2lu_obj(obj));
570         INIT_LIST_HEAD(&ouc->ouc_list);
571         ouc->ouc_obj = obj;
572         ouc->ouc_data = data;
573         ouc->ouc_interpreter = interpreter;
574
575         return ouc;
576 }
577
578 /**
579  * Destroy the osp_update_callback.
580  *
581  * \param[in] env       pointer to the thread context
582  * \param[in] ouc       pointer to osp_update_callback
583  */
584 static void osp_update_callback_fini(const struct lu_env *env,
585                                      struct osp_update_callback *ouc)
586 {
587         LASSERT(list_empty(&ouc->ouc_list));
588
589         lu_object_put(env, osp2lu_obj(ouc->ouc_obj));
590         OBD_FREE_PTR(ouc);
591 }
592
593 /**
594  * Interpret the packaged OUT RPC results.
595  *
596  * For every packaged sub-request, call its registered interpreter function.
597  * Then destroy the sub-request.
598  *
599  * \param[in] env       pointer to the thread context
600  * \param[in] req       pointer to the RPC
601  * \param[in] arg       pointer to data used by the interpreter
602  * \param[in] rc        the RPC return value
603  *
604  * \retval              0 for success
605  * \retval              negative error number on failure
606  */
607 static int osp_update_interpret(const struct lu_env *env,
608                                 struct ptlrpc_request *req, void *args, int rc)
609 {
610         struct object_update_reply *reply = NULL;
611         struct osp_update_args *oaua = args;
612         struct osp_update_request *our = oaua->oaua_update;
613         struct osp_thandle *oth;
614         struct osp_update_callback *ouc;
615         struct osp_update_callback *next;
616         int count = 0;
617         int index = 0;
618         int rc1 = 0;
619
620         ENTRY;
621
622         if (our == NULL)
623                 RETURN(0);
624
625         /* Sigh env might be NULL in some cases, see
626          * this calling path.
627          * osp_send_update_thread()
628          *  ptlrpc_set_wait() ----> null env.
629          *   ptlrpc_check_set()
630          *    osp_update_interpret()
631          * Let's use env in oaua for this case.
632          */
633         if (env == NULL)
634                 env = oaua->oaua_update_env;
635
636         oaua->oaua_update = NULL;
637         oth = our->our_th;
638         if (oaua->oaua_flow_control) {
639                 struct osp_device *osp;
640
641                 LASSERT(oth != NULL);
642                 osp = dt2osp_dev(oth->ot_super.th_dev);
643                 obd_put_request_slot(&osp->opd_obd->u.cli);
644         }
645
646         /* Unpack the results from the reply message. */
647         if (req->rq_repmsg != NULL && req->rq_replied) {
648                 reply = req_capsule_server_sized_get(&req->rq_pill,
649                                                      &RMF_OUT_UPDATE_REPLY,
650                                                      OUT_UPDATE_REPLY_SIZE);
651                 if (reply == NULL || reply->ourp_magic != UPDATE_REPLY_MAGIC) {
652                         if (rc == 0)
653                                 rc = -EPROTO;
654                 } else {
655                         count = reply->ourp_count;
656                 }
657         }
658
659         list_for_each_entry_safe(ouc, next, &our->our_cb_items, ouc_list) {
660                 list_del_init(&ouc->ouc_list);
661
662                 /* The peer may only have handled some requests (indicated
663                  * by the 'count') in the packaged OUT RPC, we can only get
664                  * results for the handled part. */
665                 if (index < count && reply->ourp_lens[index] > 0 && rc >= 0) {
666                         struct object_update_result *result;
667
668                         result = object_update_result_get(reply, index, NULL);
669                         if (result == NULL)
670                                 rc1 = rc = -EPROTO;
671                         else
672                                 rc1 = rc = result->our_rc;
673                 } else if (rc1 >= 0) {
674                         /* The peer did not handle these request, let's return
675                          * -EINVAL to update interpret for now */
676                         if (rc >= 0)
677                                 rc1 = -EINVAL;
678                         else
679                                 rc1 = rc;
680                 }
681
682                 if (ouc->ouc_interpreter != NULL)
683                         ouc->ouc_interpreter(env, reply, req, ouc->ouc_obj,
684                                              ouc->ouc_data, index, rc1);
685
686                 osp_update_callback_fini(env, ouc);
687                 index++;
688         }
689
690         if (oaua->oaua_count != NULL && atomic_dec_and_test(oaua->oaua_count))
691                 wake_up(oaua->oaua_waitq);
692
693         if (oth != NULL) {
694                 /* oth and osp_update_requests will be destoryed in
695                  * osp_thandle_put */
696                 osp_trans_stop_cb(env, oth, rc);
697                 osp_thandle_put(env, oth);
698         } else {
699                 osp_update_request_destroy(env, our);
700         }
701
702         RETURN(rc);
703 }
704
705 /**
706  * Pack all the requests in the shared asynchronous idempotent request queue
707  * into a single OUT RPC that will be given to the background ptlrpcd daemon.
708  *
709  * \param[in] env       pointer to the thread context
710  * \param[in] osp       pointer to the OSP device
711  * \param[in] our       pointer to the shared queue
712  *
713  * \retval              0 for success
714  * \retval              negative error number on failure
715  */
716 int osp_unplug_async_request(const struct lu_env *env,
717                              struct osp_device *osp,
718                              struct osp_update_request *our)
719 {
720         struct osp_update_args  *args;
721         struct ptlrpc_request   *req = NULL;
722         int                      rc;
723
724         rc = osp_prep_update_req(env, osp->opd_obd->u.cli.cl_import,
725                                  our, &req);
726         if (rc != 0) {
727                 struct osp_update_callback *ouc;
728                 struct osp_update_callback *next;
729
730                 list_for_each_entry_safe(ouc, next,
731                                          &our->our_cb_items, ouc_list) {
732                         list_del_init(&ouc->ouc_list);
733                         if (ouc->ouc_interpreter != NULL)
734                                 ouc->ouc_interpreter(env, NULL, NULL,
735                                                      ouc->ouc_obj,
736                                                      ouc->ouc_data, 0, rc);
737                         osp_update_callback_fini(env, ouc);
738                 }
739                 osp_update_request_destroy(env, our);
740         } else {
741                 args = ptlrpc_req_async_args(args, req);
742                 args->oaua_update = our;
743                 args->oaua_count = NULL;
744                 args->oaua_waitq = NULL;
745                 /* Note: this is asynchronous call for the request, so the
746                  * interrupte cb and current function will be different
747                  * thread, so we need use different env */
748                 args->oaua_update_env = NULL;
749                 args->oaua_flow_control = false;
750                 req->rq_interpret_reply = osp_update_interpret;
751                 ptlrpcd_add_req(req);
752         }
753
754         return rc;
755 }
756
757 /**
758  * Find or create (if NOT exist or purged) the shared asynchronous idempotent
759  * request queue - osp_device::opd_async_requests.
760  *
761  * If the osp_device::opd_async_requests is not NULL, then return it directly;
762  * otherwise create new osp_update_request and attach it to opd_async_requests.
763  *
764  * \param[in] osp       pointer to the OSP device
765  *
766  * \retval              pointer to the shared queue
767  * \retval              negative error number on failure
768  */
769 static struct osp_update_request *
770 osp_find_or_create_async_update_request(struct osp_device *osp)
771 {
772         struct osp_update_request *our = osp->opd_async_requests;
773
774         if (our != NULL)
775                 return our;
776
777         our = osp_update_request_create(&osp->opd_dt_dev);
778         if (IS_ERR(our))
779                 return our;
780
781         osp->opd_async_requests = our;
782
783         return our;
784 }
785
786 /**
787  * Insert an osp_update_callback into the osp_update_request.
788  *
789  * Insert an osp_update_callback to the osp_update_request. Usually each update
790  * in the osp_update_request will have one correspondent callback, and these
791  * callbacks will be called in rq_interpret_reply.
792  *
793  * \param[in] env               pointer to the thread context
794  * \param[in] obj               pointer to the operation target object
795  * \param[in] data              pointer to the data used by the interpreter
796  * \param[in] interpreter       pointer to the interpreter function
797  *
798  * \retval                      0 for success
799  * \retval                      negative error number on failure
800  */
801 int osp_insert_update_callback(const struct lu_env *env,
802                                struct osp_update_request *our,
803                                struct osp_object *obj, void *data,
804                                osp_update_interpreter_t interpreter)
805 {
806         struct osp_update_callback  *ouc;
807
808         ouc = osp_update_callback_init(obj, data, interpreter);
809         if (ouc == NULL)
810                 RETURN(-ENOMEM);
811
812         list_add_tail(&ouc->ouc_list, &our->our_cb_items);
813
814         return 0;
815 }
816
817 /**
818  * Insert an asynchronous idempotent request to the shared request queue that
819  * is attached to the osp_device.
820  *
821  * This function generates a new osp_async_request with the given parameters,
822  * then tries to insert the request into the osp_device-based shared request
823  * queue. If the queue is full, then triggers the packaged OUT RPC to purge
824  * the shared queue firstly, and then re-tries.
825  *
826  * NOTE: must hold the osp::opd_async_requests_mutex to serialize concurrent
827  *       osp_insert_async_request call from others.
828  *
829  * \param[in] env               pointer to the thread context
830  * \param[in] op                operation type, see 'enum update_type'
831  * \param[in] obj               pointer to the operation target
832  * \param[in] count             array size of the subsequent \a lens and \a bufs
833  * \param[in] lens              buffer length array for the subsequent \a bufs
834  * \param[in] bufs              the buffers to compose the request
835  * \param[in] data              pointer to the data used by the interpreter
836  * \param[in] repsize           how many bytes the caller allocated for \a data
837  * \param[in] interpreter       pointer to the interpreter function
838  *
839  * \retval                      0 for success
840  * \retval                      negative error number on failure
841  */
842 int osp_insert_async_request(const struct lu_env *env, enum update_type op,
843                              struct osp_object *obj, int count,
844                              __u16 *lens, const void **bufs,
845                              void *data, __u32 repsize,
846                              osp_update_interpreter_t interpreter)
847 {
848         struct osp_device               *osp;
849         struct osp_update_request       *our;
850         struct object_update            *object_update;
851         size_t                          max_update_size;
852         struct object_update_request    *ureq;
853         struct osp_update_request_sub   *ours;
854         int                             rc = 0;
855         ENTRY;
856
857         osp = lu2osp_dev(osp2lu_obj(obj)->lo_dev);
858         our = osp_find_or_create_async_update_request(osp);
859         if (IS_ERR(our))
860                 RETURN(PTR_ERR(our));
861
862 again:
863         ours = osp_current_object_update_request(our);
864
865         ureq = ours->ours_req;
866         max_update_size = ours->ours_req_size -
867                           object_update_request_size(ureq);
868
869         object_update = update_buffer_get_update(ureq, ureq->ourq_count);
870         rc = out_update_pack(env, object_update, &max_update_size, op,
871                              lu_object_fid(osp2lu_obj(obj)), count, lens, bufs,
872                              repsize);
873         /* The queue is full. */
874         if (rc == -E2BIG) {
875                 osp->opd_async_requests = NULL;
876                 mutex_unlock(&osp->opd_async_requests_mutex);
877
878                 rc = osp_unplug_async_request(env, osp, our);
879                 mutex_lock(&osp->opd_async_requests_mutex);
880                 if (rc != 0)
881                         RETURN(rc);
882
883                 our = osp_find_or_create_async_update_request(osp);
884                 if (IS_ERR(our))
885                         RETURN(PTR_ERR(our));
886
887                 goto again;
888         } else {
889                 if (rc < 0)
890                         RETURN(rc);
891
892                 ureq->ourq_count++;
893                 our->our_update_nr++;
894         }
895
896         rc = osp_insert_update_callback(env, our, obj, data, interpreter);
897
898         RETURN(rc);
899 }
900
901 int osp_trans_update_request_create(struct thandle *th)
902 {
903         struct osp_thandle              *oth = thandle_to_osp_thandle(th);
904         struct osp_update_request       *our;
905
906         if (oth->ot_our != NULL)
907                 return 0;
908
909         our = osp_update_request_create(th->th_dev);
910         if (IS_ERR(our)) {
911                 th->th_result = PTR_ERR(our);
912                 return PTR_ERR(our);
913         }
914
915         oth->ot_our = our;
916         our->our_th = oth;
917
918         return 0;
919 }
920
921 void osp_thandle_destroy(const struct lu_env *env,
922                          struct osp_thandle *oth)
923 {
924         LASSERT(oth->ot_magic == OSP_THANDLE_MAGIC);
925         LASSERT(list_empty(&oth->ot_commit_dcb_list));
926         LASSERT(list_empty(&oth->ot_stop_dcb_list));
927         if (oth->ot_our != NULL)
928                 osp_update_request_destroy(env, oth->ot_our);
929         OBD_FREE_PTR(oth);
930 }
931
932 /**
933  * The OSP layer dt_device_operations::dt_trans_create() interface
934  * to create a transaction.
935  *
936  * There are two kinds of transactions that will involve OSP:
937  *
938  * 1) If the transaction only contains the updates on remote server
939  *    (MDT or OST), such as re-generating the lost OST-object for
940  *    LFSCK, then it is a remote transaction. For remote transaction,
941  *    the upper layer caller (such as the LFSCK engine) will call the
942  *    dt_trans_create() (with the OSP dt_device as the parameter),
943  *    then the call will be directed to the osp_trans_create() that
944  *    creates the transaction handler and returns it to the caller.
945  *
946  * 2) If the transcation contains both local and remote updates,
947  *    such as cross MDTs create under DNE mode, then the upper layer
948  *    caller will not trigger osp_trans_create(). Instead, it will
949  *    call dt_trans_create() on other dt_device, such as LOD that
950  *    will generate the transaction handler. Such handler will be
951  *    used by the whole transaction in subsequent sub-operations.
952  *
953  * \param[in] env       pointer to the thread context
954  * \param[in] d         pointer to the OSP dt_device
955  *
956  * \retval              pointer to the transaction handler
957  * \retval              negative error number on failure
958  */
959 struct thandle *osp_trans_create(const struct lu_env *env, struct dt_device *d)
960 {
961         struct osp_thandle              *oth;
962         struct thandle                  *th = NULL;
963         ENTRY;
964
965         OBD_ALLOC_PTR(oth);
966         if (unlikely(oth == NULL))
967                 RETURN(ERR_PTR(-ENOMEM));
968
969         oth->ot_magic = OSP_THANDLE_MAGIC;
970         th = &oth->ot_super;
971         th->th_dev = d;
972
973         atomic_set(&oth->ot_refcount, 1);
974         INIT_LIST_HEAD(&oth->ot_commit_dcb_list);
975         INIT_LIST_HEAD(&oth->ot_stop_dcb_list);
976
977         RETURN(th);
978 }
979
980 /**
981  * Add commit callback to transaction.
982  *
983  * Add commit callback to the osp thandle, which will be called
984  * when the thandle is committed remotely.
985  *
986  * \param[in] th        the thandle
987  * \param[in] dcb       commit callback structure
988  *
989  * \retval              only return 0 for now.
990  */
991 int osp_trans_cb_add(struct thandle *th, struct dt_txn_commit_cb *dcb)
992 {
993         struct osp_thandle *oth = thandle_to_osp_thandle(th);
994
995         LASSERT(dcb->dcb_magic == TRANS_COMMIT_CB_MAGIC);
996         LASSERT(&dcb->dcb_func != NULL);
997         if (dcb->dcb_flags & DCB_TRANS_STOP)
998                 list_add(&dcb->dcb_linkage, &oth->ot_stop_dcb_list);
999         else
1000                 list_add(&dcb->dcb_linkage, &oth->ot_commit_dcb_list);
1001         return 0;
1002 }
1003
1004 static void osp_trans_commit_cb(struct osp_thandle *oth, int result)
1005 {
1006         struct dt_txn_commit_cb *dcb;
1007         struct dt_txn_commit_cb *tmp;
1008
1009         LASSERT(atomic_read(&oth->ot_refcount) > 0);
1010         /* call per-transaction callbacks if any */
1011         list_for_each_entry_safe(dcb, tmp, &oth->ot_commit_dcb_list,
1012                                  dcb_linkage) {
1013                 LASSERTF(dcb->dcb_magic == TRANS_COMMIT_CB_MAGIC,
1014                          "commit callback entry: magic=%x name='%s'\n",
1015                          dcb->dcb_magic, dcb->dcb_name);
1016                 list_del_init(&dcb->dcb_linkage);
1017                 dcb->dcb_func(NULL, &oth->ot_super, dcb, result);
1018         }
1019 }
1020
1021 static void osp_request_commit_cb(struct ptlrpc_request *req)
1022 {
1023         struct thandle          *th = req->rq_cb_data;
1024         struct osp_thandle      *oth;
1025         __u64                   last_committed_transno = 0;
1026         int                     result = req->rq_status;
1027         ENTRY;
1028
1029         if (th == NULL)
1030                 RETURN_EXIT;
1031
1032         oth = thandle_to_osp_thandle(th);
1033         if (req->rq_repmsg != NULL &&
1034             lustre_msg_get_last_committed(req->rq_repmsg))
1035                 last_committed_transno =
1036                         lustre_msg_get_last_committed(req->rq_repmsg);
1037
1038         if (last_committed_transno <
1039                 req->rq_import->imp_peer_committed_transno)
1040                 last_committed_transno =
1041                         req->rq_import->imp_peer_committed_transno;
1042
1043         CDEBUG(D_HA, "trans no %llu committed transno %llu\n",
1044                req->rq_transno, last_committed_transno);
1045
1046         /* If the transaction is not really committed, mark result = 1 */
1047         if (req->rq_transno != 0 &&
1048             (req->rq_transno > last_committed_transno) && result == 0)
1049                 result = 1;
1050
1051         osp_trans_commit_cb(oth, result);
1052         req->rq_committed = 1;
1053         osp_thandle_put(NULL, oth);
1054         EXIT;
1055 }
1056
1057 /**
1058  * callback of osp transaction
1059  *
1060  * Call all of callbacks for this osp thandle. This will only be
1061  * called in error handler path. In the normal processing path,
1062  * these callback will be called in osp_request_commit_cb() and
1063  * osp_update_interpret().
1064  *
1065  * \param [in] env      execution environment
1066  * \param [in] oth      osp thandle
1067  * \param [in] rc       result of the osp thandle
1068  */
1069 void osp_trans_callback(const struct lu_env *env,
1070                         struct osp_thandle *oth, int rc)
1071 {
1072         struct osp_update_callback *ouc;
1073         struct osp_update_callback *next;
1074
1075         if (oth->ot_our != NULL) {
1076                 list_for_each_entry_safe(ouc, next,
1077                                          &oth->ot_our->our_cb_items, ouc_list) {
1078                         list_del_init(&ouc->ouc_list);
1079                         if (ouc->ouc_interpreter != NULL)
1080                                 ouc->ouc_interpreter(env, NULL, NULL,
1081                                                      ouc->ouc_obj,
1082                                                      ouc->ouc_data, 0, rc);
1083                         osp_update_callback_fini(env, ouc);
1084                 }
1085         }
1086         osp_trans_stop_cb(env, oth, rc);
1087         osp_trans_commit_cb(oth, rc);
1088 }
1089
1090 /**
1091  * Send the request for remote updates.
1092  *
1093  * Send updates to the remote MDT. Prepare the request by osp_update_req
1094  * and send them to remote MDT, for sync request, it will wait
1095  * until the reply return, otherwise hand it to ptlrpcd.
1096  *
1097  * Please refer to osp_trans_create() for transaction type.
1098  *
1099  * \param[in] env               pointer to the thread context
1100  * \param[in] osp               pointer to the OSP device
1101  * \param[in] our               pointer to the osp_update_request
1102  *
1103  * \retval                      0 for success
1104  * \retval                      negative error number on failure
1105  */
1106 static int osp_send_update_req(const struct lu_env *env,
1107                                struct osp_device *osp,
1108                                struct osp_update_request *our)
1109 {
1110         struct osp_update_args  *args;
1111         struct ptlrpc_request   *req;
1112         struct osp_thandle      *oth = our->our_th;
1113         struct osp_updates      *ou = osp->opd_update;
1114         int     rc = 0;
1115         ENTRY;
1116
1117         LASSERT(oth != NULL);
1118         LASSERT(osp->opd_obd);
1119
1120         if (ou && ou->ou_generation != our->our_generation) {
1121                 const struct lnet_processid *peer;
1122
1123                 rc = -ESTALE;
1124                 osp_trans_callback(env, oth, rc);
1125                 peer = &osp->opd_obd->u.cli.cl_import->imp_connection->c_peer;
1126                 CDEBUG(D_HA, "%s: stale tx to %s: gen %llu != %llu: rc = %d\n",
1127                        osp->opd_obd->obd_name, libcfs_nidstr(&peer->nid),
1128                        osp->opd_update->ou_generation, our->our_generation, rc);
1129                 RETURN(rc);
1130         }
1131
1132         rc = osp_prep_update_req(env, osp->opd_obd->u.cli.cl_import,
1133                                  our, &req);
1134         if (rc != 0) {
1135                 osp_trans_callback(env, oth, rc);
1136                 RETURN(rc);
1137         }
1138
1139         args = ptlrpc_req_async_args(args, req);
1140         args->oaua_update = our;
1141         /* set env to NULL, in case the interrupt cb and current function
1142          * are in different thread */
1143         args->oaua_update_env = NULL;
1144         osp_thandle_get(oth); /* hold for update interpret */
1145         req->rq_interpret_reply = osp_update_interpret;
1146         if (!oth->ot_super.th_wait_submit && !oth->ot_super.th_sync) {
1147                 if (!osp->opd_imp_active || !osp->opd_imp_connected) {
1148                         osp_trans_callback(env, oth, rc);
1149                         osp_thandle_put(env, oth);
1150                         GOTO(out, rc = -ENOTCONN);
1151                 }
1152
1153                 rc = obd_get_request_slot(&osp->opd_obd->u.cli);
1154                 if (rc != 0) {
1155                         osp_trans_callback(env, oth, rc);
1156                         osp_thandle_put(env, oth);
1157                         GOTO(out, rc = -ENOTCONN);
1158                 }
1159                 args->oaua_flow_control = true;
1160
1161                 if (!osp->opd_connect_mdt) {
1162                         down_read(&osp->opd_async_updates_rwsem);
1163                         args->oaua_count = &osp->opd_async_updates_count;
1164                         args->oaua_waitq = &osp->opd_sync_barrier_waitq;
1165                         up_read(&osp->opd_async_updates_rwsem);
1166                         atomic_inc(args->oaua_count);
1167                 }
1168
1169                 ptlrpcd_add_req(req);
1170                 req = NULL;
1171         } else {
1172                 osp_thandle_get(oth); /* hold for commit callback */
1173                 req->rq_commit_cb = osp_request_commit_cb;
1174                 req->rq_cb_data = &oth->ot_super;
1175                 args->oaua_flow_control = false;
1176
1177                 /* If the transaction is created during MDT recoverying
1178                  * process, it means this is an recovery update, we need
1179                  * to let OSP send it anyway without checking recoverying
1180                  * status, in case the other target is being recoveried
1181                  * at the same time, and if we wait here for the import
1182                  * to be recoveryed, it might cause deadlock */
1183                 osp_set_req_replay(osp, req);
1184
1185                 /* Because this req will be synchronus, i.e. it will be called
1186                  * in the same thread, so it will be safe to use current
1187                  * env */
1188                 args->oaua_update_env = env;
1189                 if (osp->opd_connect_mdt)
1190                         osp_get_rpc_lock(osp);
1191                 rc = ptlrpc_queue_wait(req);
1192                 if (osp->opd_connect_mdt)
1193                         osp_put_rpc_lock(osp);
1194
1195                 /* We use rq_queued_time to distinguish between local
1196                  * and remote -ENOMEM. */
1197                 if ((rc == -ENOMEM && req->rq_queued_time == 0) ||
1198                     (req->rq_transno == 0 && !req->rq_committed)) {
1199                         if (args->oaua_update != NULL) {
1200                                 /* If osp_update_interpret is not being called,
1201                                  * release the osp_thandle */
1202                                 args->oaua_update = NULL;
1203                                 osp_thandle_put(env, oth);
1204                         }
1205
1206                         req->rq_cb_data = NULL;
1207                         rc = rc == 0 ? req->rq_status : rc;
1208                         osp_trans_callback(env, oth, rc);
1209                         osp_thandle_put(env, oth);
1210                         GOTO(out, rc);
1211                 }
1212         }
1213 out:
1214         if (req != NULL)
1215                 ptlrpc_req_finished(req);
1216
1217         RETURN(rc);
1218 }
1219
1220 /**
1221  * Get local thandle for osp_thandle
1222  *
1223  * Get the local OSD thandle from the OSP thandle. Currently, there
1224  * are a few OSP API (osp_create() and osp_sync_add()) needs
1225  * to update the object on local OSD device.
1226  *
1227  * If the osp_thandle comes from normal stack (MDD->LOD->OSP), then
1228  * we will get local thandle by thandle_get_sub_by_dt.
1229  *
1230  * If the osp_thandle is remote thandle (th_top == NULL, only used
1231  * by LFSCK), then it will create a local thandle, and stop it in
1232  * osp_trans_stop(). And this only happens on OSP for OST.
1233  *
1234  * These are temporary solution, once OSP accessing OSD object is
1235  * being fixed properly, this function should be removed. XXX
1236  *
1237  * \param[in] env               pointer to the thread context
1238  * \param[in] th                pointer to the transaction handler
1239  * \param[in] dt                pointer to the OSP device
1240  *
1241  * \retval                      pointer to the local thandle
1242  * \retval                      ERR_PTR(errno) if it fails.
1243  **/
1244 struct thandle *osp_get_storage_thandle(const struct lu_env *env,
1245                                         struct thandle *th,
1246                                         struct osp_device *osp)
1247 {
1248         struct osp_thandle      *oth;
1249         struct thandle          *local_th;
1250
1251         if (th->th_top != NULL)
1252                 return thandle_get_sub_by_dt(env, th->th_top,
1253                                              osp->opd_storage);
1254
1255         LASSERT(!osp->opd_connect_mdt);
1256         oth = thandle_to_osp_thandle(th);
1257         if (oth->ot_storage_th != NULL)
1258                 return oth->ot_storage_th;
1259
1260         local_th = dt_trans_create(env, osp->opd_storage);
1261         if (IS_ERR(local_th))
1262                 return local_th;
1263
1264         oth->ot_storage_th = local_th;
1265
1266         return local_th;
1267 }
1268
1269 /**
1270  * Set version for the transaction
1271  *
1272  * Set the version for the transaction and add the request to
1273  * the sending list, then after transaction stop, the request
1274  * will be sent in the order of version by the sending thread.
1275  *
1276  * \param [in] oth      osp thandle to be set version.
1277  *
1278  * \retval              0 if set version succeeds
1279  *                      negative errno if set version fails.
1280  */
1281 int osp_check_and_set_rpc_version(struct osp_thandle *oth,
1282                                   struct osp_object *obj)
1283 {
1284         struct osp_device *osp = dt2osp_dev(oth->ot_super.th_dev);
1285         struct osp_updates *ou = osp->opd_update;
1286
1287         if (ou == NULL)
1288                 return -EIO;
1289
1290         if (oth->ot_our->our_version != 0)
1291                 return 0;
1292
1293         spin_lock(&ou->ou_lock);
1294         spin_lock(&oth->ot_our->our_list_lock);
1295         if (obj->opo_stale) {
1296                 spin_unlock(&oth->ot_our->our_list_lock);
1297                 spin_unlock(&ou->ou_lock);
1298                 return -ESTALE;
1299         }
1300
1301         /* Assign the version and add it to the sending list */
1302         osp_thandle_get(oth);
1303         oth->ot_our->our_version = ou->ou_version++;
1304         oth->ot_our->our_generation = ou->ou_generation;
1305         list_add_tail(&oth->ot_our->our_list,
1306                       &osp->opd_update->ou_list);
1307         oth->ot_our->our_req_ready = 0;
1308         spin_unlock(&oth->ot_our->our_list_lock);
1309         spin_unlock(&ou->ou_lock);
1310
1311         LASSERT(oth->ot_super.th_wait_submit == 1);
1312         CDEBUG(D_INFO, "%s: version %llu gen %llu oth:version %p:%llu\n",
1313                osp->opd_obd->obd_name, ou->ou_version, ou->ou_generation, oth,
1314                oth->ot_our->our_version);
1315
1316         return 0;
1317 }
1318
1319 /**
1320  * Get next OSP update request in the sending list
1321  * Get next OSP update request in the sending list by version number, next
1322  * request will be
1323  * 1. transaction which does not have a version number.
1324  * 2. transaction whose version == opd_rpc_version.
1325  *
1326  * \param [in] ou       osp update structure.
1327  * \param [out] ourp    the pointer holding the next update request.
1328  *
1329  * \retval              true if getting the next transaction.
1330  * \retval              false if not getting the next transaction.
1331  */
1332 static bool
1333 osp_get_next_request(struct osp_updates *ou, struct osp_update_request **ourp)
1334 {
1335         struct osp_update_request *our;
1336         struct osp_update_request *tmp;
1337         bool                    got_req = false;
1338
1339         spin_lock(&ou->ou_lock);
1340         list_for_each_entry_safe(our, tmp, &ou->ou_list, our_list) {
1341                 LASSERT(our->our_th != NULL);
1342                 CDEBUG(D_HA, "ou %p version %llu rpc_version %llu\n",
1343                        ou, our->our_version, ou->ou_rpc_version);
1344                 spin_lock(&our->our_list_lock);
1345                 /* Find next osp_update_request in the list */
1346                 if (our->our_version == ou->ou_rpc_version &&
1347                     our->our_req_ready) {
1348                         list_del_init(&our->our_list);
1349                         spin_unlock(&our->our_list_lock);
1350                         *ourp = our;
1351                         got_req = true;
1352                         break;
1353                 }
1354                 spin_unlock(&our->our_list_lock);
1355         }
1356         spin_unlock(&ou->ou_lock);
1357
1358         return got_req;
1359 }
1360
1361 /**
1362  * Invalidate update request
1363  *
1364  * Invalidate update request in the OSP sending list, so all of
1365  * requests in the sending list will return error, which happens
1366  * when it finds one update (with writing llog) requests fails or
1367  * the OSP is evicted by remote target. see osp_send_update_thread().
1368  *
1369  * \param[in] osp       OSP device whose update requests will be
1370  *                      invalidated.
1371  **/
1372 void osp_invalidate_request(struct osp_device *osp)
1373 {
1374         struct lu_env env;
1375         struct osp_updates *ou = osp->opd_update;
1376         struct osp_update_request *our;
1377         struct osp_update_request *tmp;
1378         LIST_HEAD(list);
1379         int                     rc;
1380         ENTRY;
1381
1382         if (ou == NULL)
1383                 return;
1384
1385         rc = lu_env_init(&env, osp->opd_dt_dev.dd_lu_dev.ld_type->ldt_ctx_tags);
1386         if (rc < 0) {
1387                 CERROR("%s: init env error: rc = %d\n", osp->opd_obd->obd_name,
1388                        rc);
1389
1390                 spin_lock(&ou->ou_lock);
1391                 ou->ou_generation++;
1392                 spin_unlock(&ou->ou_lock);
1393
1394                 return;
1395         }
1396
1397         spin_lock(&ou->ou_lock);
1398         /* invalidate all of request in the sending list */
1399         list_for_each_entry_safe(our, tmp, &ou->ou_list, our_list) {
1400                 spin_lock(&our->our_list_lock);
1401                 if (our->our_req_ready) {
1402                         list_move(&our->our_list, &list);
1403                 } else {
1404                         /* this thandle won't be forwarded to
1405                          * the dedicated thread, so drop the
1406                          * reference here */
1407                         osp_thandle_put(&env, our->our_th);
1408                         list_del_init(&our->our_list);
1409                 }
1410
1411                 if (our->our_th->ot_super.th_result == 0)
1412                         our->our_th->ot_super.th_result = -EIO;
1413
1414                 if (our->our_version >= ou->ou_rpc_version)
1415                         ou->ou_rpc_version = our->our_version + 1;
1416                 spin_unlock(&our->our_list_lock);
1417
1418                 CDEBUG(D_HA, "%s invalidate our %p\n", osp->opd_obd->obd_name,
1419                        our);
1420         }
1421
1422         /* Increase the generation, then the update request with old generation
1423          * will fail with -EIO. */
1424         ou->ou_generation++;
1425         spin_unlock(&ou->ou_lock);
1426
1427         /* invalidate all of request in the sending list */
1428         list_for_each_entry_safe(our, tmp, &list, our_list) {
1429                 spin_lock(&our->our_list_lock);
1430                 list_del_init(&our->our_list);
1431                 spin_unlock(&our->our_list_lock);
1432                 osp_trans_callback(&env, our->our_th,
1433                                    our->our_th->ot_super.th_result);
1434                 osp_thandle_put(&env, our->our_th);
1435         }
1436         lu_env_fini(&env);
1437 }
1438
1439 /**
1440  * Sending update thread
1441  *
1442  * Create thread to send update request to other MDTs, this thread will pull
1443  * out update request from the list in OSP by version number, i.e. it will
1444  * make sure the update request with lower version number will be sent first.
1445  *
1446  * \param[in] arg       hold the OSP device.
1447  *
1448  * \retval              0 if the thread is created successfully.
1449  * \retal               negative error if the thread is not created
1450  *                      successfully.
1451  */
1452 int osp_send_update_thread(void *arg)
1453 {
1454         struct lu_env           *env;
1455         struct osp_device       *osp = arg;
1456         struct osp_updates      *ou = osp->opd_update;
1457         struct osp_update_request *our = NULL;
1458         int                     rc;
1459         ENTRY;
1460
1461         LASSERT(ou != NULL);
1462         env = &ou->ou_env;
1463
1464         while (1) {
1465                 our = NULL;
1466                 wait_event_idle(ou->ou_waitq,
1467                                 kthread_should_stop() ||
1468                                 osp_get_next_request(ou, &our));
1469
1470                 if (kthread_should_stop()) {
1471                         if (our != NULL) {
1472                                 osp_trans_callback(env, our->our_th, -EINTR);
1473                                 osp_thandle_put(env, our->our_th);
1474                         }
1475                         break;
1476                 }
1477
1478                 LASSERT(our->our_th != NULL);
1479                 if (our->our_th->ot_super.th_result != 0) {
1480                         osp_trans_callback(env, our->our_th,
1481                                 our->our_th->ot_super.th_result);
1482                         rc = our->our_th->ot_super.th_result;
1483                 } else if (OBD_FAIL_CHECK(OBD_FAIL_INVALIDATE_UPDATE)) {
1484                         rc = -EIO;
1485                         osp_trans_callback(env, our->our_th, rc);
1486                 } else {
1487                         rc = osp_send_update_req(env, osp, our);
1488                 }
1489
1490                 /* Update the rpc version */
1491                 spin_lock(&ou->ou_lock);
1492                 if (our->our_version == ou->ou_rpc_version)
1493                         ou->ou_rpc_version++;
1494                 spin_unlock(&ou->ou_lock);
1495
1496                 /* If one update request fails, let's fail all of the requests
1497                  * in the sending list, because the request in the sending
1498                  * list are dependent on either other, continue sending these
1499                  * request might cause llog or filesystem corruption */
1500                 if (rc < 0)
1501                         osp_invalidate_request(osp);
1502
1503                 /* Balanced for thandle_get in osp_check_and_set_rpc_version */
1504                 osp_thandle_put(env, our->our_th);
1505         }
1506
1507         RETURN(0);
1508 }
1509
1510 /**
1511  * The OSP layer dt_device_operations::dt_trans_start() interface
1512  * to start the transaction.
1513  *
1514  * If the transaction is a remote transaction, then related remote
1515  * updates will be triggered in the osp_trans_stop().
1516  * Please refer to osp_trans_create() for transaction type.
1517  *
1518  * \param[in] env               pointer to the thread context
1519  * \param[in] dt                pointer to the OSP dt_device
1520  * \param[in] th                pointer to the transaction handler
1521  *
1522  * \retval                      0 for success
1523  * \retval                      negative error number on failure
1524  */
1525 int osp_trans_start(const struct lu_env *env, struct dt_device *dt,
1526                     struct thandle *th)
1527 {
1528         struct osp_thandle      *oth = thandle_to_osp_thandle(th);
1529         struct osp_device       *osp = dt2osp_dev(dt);
1530         struct osp_updates      *ou = osp->opd_update;
1531
1532         if (ou) {
1533                 LASSERT(oth->ot_our);
1534                 oth->ot_our->our_generation = ou->ou_generation;
1535         }
1536         if (oth->ot_super.th_sync)
1537                 oth->ot_our->our_flags |= UPDATE_FL_SYNC;
1538         /* For remote thandle, if there are local thandle, start it here*/
1539         if (is_only_remote_trans(th) && oth->ot_storage_th != NULL)
1540                 return dt_trans_start(env, oth->ot_storage_th->th_dev,
1541                                       oth->ot_storage_th);
1542         return 0;
1543 }
1544
1545 /**
1546  * The OSP layer dt_device_operations::dt_trans_stop() interface
1547  * to stop the transaction.
1548  *
1549  * If the transaction is a remote transaction, related remote
1550  * updates will be triggered at the end of this function.
1551  *
1552  * For synchronous mode update or any failed update, the request
1553  * will be destroyed explicitly when the osp_trans_stop().
1554  *
1555  * Please refer to osp_trans_create() for transaction type.
1556  *
1557  * \param[in] env               pointer to the thread context
1558  * \param[in] dt                pointer to the OSP dt_device
1559  * \param[in] th                pointer to the transaction handler
1560  *
1561  * \retval                      0 for success
1562  * \retval                      negative error number on failure
1563  */
1564 int osp_trans_stop(const struct lu_env *env, struct dt_device *dt,
1565                    struct thandle *th)
1566 {
1567         struct osp_thandle       *oth = thandle_to_osp_thandle(th);
1568         struct osp_update_request *our = oth->ot_our;
1569         struct osp_device        *osp = dt2osp_dev(dt);
1570         int                      rc = 0;
1571         ENTRY;
1572
1573         /* For remote transaction, if there is local storage thandle,
1574          * stop it first */
1575         if (oth->ot_storage_th != NULL && th->th_top == NULL) {
1576                 dt_trans_stop(env, oth->ot_storage_th->th_dev,
1577                               oth->ot_storage_th);
1578                 oth->ot_storage_th = NULL;
1579         }
1580
1581         if (our == NULL || list_empty(&our->our_req_list)) {
1582                 osp_trans_callback(env, oth, th->th_result);
1583                 GOTO(out, rc = th->th_result);
1584         }
1585
1586         if (!osp->opd_connect_mdt) {
1587                 osp_trans_callback(env, oth, th->th_result);
1588                 rc = osp_send_update_req(env, osp, oth->ot_our);
1589                 GOTO(out, rc);
1590         }
1591
1592         if (osp->opd_update == NULL) {
1593                 osp_trans_callback(env, oth, -EIO);
1594                 GOTO(out, rc = -EIO);
1595         }
1596
1597         CDEBUG(D_HA, "%s: add oth %p with version %llu\n",
1598                osp->opd_obd->obd_name, oth, our->our_version);
1599
1600         LASSERT(our->our_req_ready == 0);
1601         spin_lock(&our->our_list_lock);
1602         if (likely(!list_empty(&our->our_list))) {
1603                 /* notify sending thread */
1604                 our->our_req_ready = 1;
1605                 wake_up(&osp->opd_update->ou_waitq);
1606                 spin_unlock(&our->our_list_lock);
1607         } else if (th->th_result == 0) {
1608                 /* if the request does not needs to be serialized,
1609                  * read-only request etc, let's send it right away */
1610                 spin_unlock(&our->our_list_lock);
1611                 rc = osp_send_update_req(env, osp, our);
1612         } else {
1613                 spin_unlock(&our->our_list_lock);
1614                 osp_trans_callback(env, oth, th->th_result);
1615         }
1616 out:
1617         osp_thandle_put(env, oth);
1618
1619         RETURN(rc);
1620 }