Whamcloud - gitweb
LU-17705 ptlrpc: replace synchronize_rcu() with rcu_barrier()
[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         int     rc = 0;
1114         ENTRY;
1115
1116         LASSERT(oth != NULL);
1117         rc = osp_prep_update_req(env, osp->opd_obd->u.cli.cl_import,
1118                                  our, &req);
1119         if (rc != 0) {
1120                 osp_trans_callback(env, oth, rc);
1121                 RETURN(rc);
1122         }
1123
1124         args = ptlrpc_req_async_args(args, req);
1125         args->oaua_update = our;
1126         /* set env to NULL, in case the interrupt cb and current function
1127          * are in different thread */
1128         args->oaua_update_env = NULL;
1129         osp_thandle_get(oth); /* hold for update interpret */
1130         req->rq_interpret_reply = osp_update_interpret;
1131         if (!oth->ot_super.th_wait_submit && !oth->ot_super.th_sync) {
1132                 if (!osp->opd_imp_active || !osp->opd_imp_connected) {
1133                         osp_trans_callback(env, oth, rc);
1134                         osp_thandle_put(env, oth);
1135                         GOTO(out, rc = -ENOTCONN);
1136                 }
1137
1138                 rc = obd_get_request_slot(&osp->opd_obd->u.cli);
1139                 if (rc != 0) {
1140                         osp_trans_callback(env, oth, rc);
1141                         osp_thandle_put(env, oth);
1142                         GOTO(out, rc = -ENOTCONN);
1143                 }
1144                 args->oaua_flow_control = true;
1145
1146                 if (!osp->opd_connect_mdt) {
1147                         down_read(&osp->opd_async_updates_rwsem);
1148                         args->oaua_count = &osp->opd_async_updates_count;
1149                         args->oaua_waitq = &osp->opd_sync_barrier_waitq;
1150                         up_read(&osp->opd_async_updates_rwsem);
1151                         atomic_inc(args->oaua_count);
1152                 }
1153
1154                 ptlrpcd_add_req(req);
1155                 req = NULL;
1156         } else {
1157                 osp_thandle_get(oth); /* hold for commit callback */
1158                 req->rq_commit_cb = osp_request_commit_cb;
1159                 req->rq_cb_data = &oth->ot_super;
1160                 args->oaua_flow_control = false;
1161
1162                 /* If the transaction is created during MDT recoverying
1163                  * process, it means this is an recovery update, we need
1164                  * to let OSP send it anyway without checking recoverying
1165                  * status, in case the other target is being recoveried
1166                  * at the same time, and if we wait here for the import
1167                  * to be recoveryed, it might cause deadlock */
1168                 osp_set_req_replay(osp, req);
1169
1170                 /* Because this req will be synchronus, i.e. it will be called
1171                  * in the same thread, so it will be safe to use current
1172                  * env */
1173                 args->oaua_update_env = env;
1174                 if (osp->opd_connect_mdt)
1175                         osp_get_rpc_lock(osp);
1176                 rc = ptlrpc_queue_wait(req);
1177                 if (osp->opd_connect_mdt)
1178                         osp_put_rpc_lock(osp);
1179
1180                 /* We use rq_queued_time to distinguish between local
1181                  * and remote -ENOMEM. */
1182                 if ((rc == -ENOMEM && req->rq_queued_time == 0) ||
1183                     (req->rq_transno == 0 && !req->rq_committed)) {
1184                         if (args->oaua_update != NULL) {
1185                                 /* If osp_update_interpret is not being called,
1186                                  * release the osp_thandle */
1187                                 args->oaua_update = NULL;
1188                                 osp_thandle_put(env, oth);
1189                         }
1190
1191                         req->rq_cb_data = NULL;
1192                         rc = rc == 0 ? req->rq_status : rc;
1193                         osp_trans_callback(env, oth, rc);
1194                         osp_thandle_put(env, oth);
1195                         GOTO(out, rc);
1196                 }
1197         }
1198 out:
1199         if (req != NULL)
1200                 ptlrpc_req_finished(req);
1201
1202         RETURN(rc);
1203 }
1204
1205 /**
1206  * Get local thandle for osp_thandle
1207  *
1208  * Get the local OSD thandle from the OSP thandle. Currently, there
1209  * are a few OSP API (osp_create() and osp_sync_add()) needs
1210  * to update the object on local OSD device.
1211  *
1212  * If the osp_thandle comes from normal stack (MDD->LOD->OSP), then
1213  * we will get local thandle by thandle_get_sub_by_dt.
1214  *
1215  * If the osp_thandle is remote thandle (th_top == NULL, only used
1216  * by LFSCK), then it will create a local thandle, and stop it in
1217  * osp_trans_stop(). And this only happens on OSP for OST.
1218  *
1219  * These are temporary solution, once OSP accessing OSD object is
1220  * being fixed properly, this function should be removed. XXX
1221  *
1222  * \param[in] env               pointer to the thread context
1223  * \param[in] th                pointer to the transaction handler
1224  * \param[in] dt                pointer to the OSP device
1225  *
1226  * \retval                      pointer to the local thandle
1227  * \retval                      ERR_PTR(errno) if it fails.
1228  **/
1229 struct thandle *osp_get_storage_thandle(const struct lu_env *env,
1230                                         struct thandle *th,
1231                                         struct osp_device *osp)
1232 {
1233         struct osp_thandle      *oth;
1234         struct thandle          *local_th;
1235
1236         if (th->th_top != NULL)
1237                 return thandle_get_sub_by_dt(env, th->th_top,
1238                                              osp->opd_storage);
1239
1240         LASSERT(!osp->opd_connect_mdt);
1241         oth = thandle_to_osp_thandle(th);
1242         if (oth->ot_storage_th != NULL)
1243                 return oth->ot_storage_th;
1244
1245         local_th = dt_trans_create(env, osp->opd_storage);
1246         if (IS_ERR(local_th))
1247                 return local_th;
1248
1249         oth->ot_storage_th = local_th;
1250
1251         return local_th;
1252 }
1253
1254 /**
1255  * Set version for the transaction
1256  *
1257  * Set the version for the transaction and add the request to
1258  * the sending list, then after transaction stop, the request
1259  * will be sent in the order of version by the sending thread.
1260  *
1261  * \param [in] oth      osp thandle to be set version.
1262  *
1263  * \retval              0 if set version succeeds
1264  *                      negative errno if set version fails.
1265  */
1266 int osp_check_and_set_rpc_version(struct osp_thandle *oth,
1267                                   struct osp_object *obj)
1268 {
1269         struct osp_device *osp = dt2osp_dev(oth->ot_super.th_dev);
1270         struct osp_updates *ou = osp->opd_update;
1271
1272         if (ou == NULL)
1273                 return -EIO;
1274
1275         if (oth->ot_our->our_version != 0)
1276                 return 0;
1277
1278         spin_lock(&ou->ou_lock);
1279         spin_lock(&oth->ot_our->our_list_lock);
1280         if (obj->opo_stale) {
1281                 spin_unlock(&oth->ot_our->our_list_lock);
1282                 spin_unlock(&ou->ou_lock);
1283                 return -ESTALE;
1284         }
1285
1286         /* Assign the version and add it to the sending list */
1287         osp_thandle_get(oth);
1288         oth->ot_our->our_version = ou->ou_version++;
1289         oth->ot_our->our_generation = ou->ou_generation;
1290         list_add_tail(&oth->ot_our->our_list,
1291                       &osp->opd_update->ou_list);
1292         oth->ot_our->our_req_ready = 0;
1293         spin_unlock(&oth->ot_our->our_list_lock);
1294         spin_unlock(&ou->ou_lock);
1295
1296         LASSERT(oth->ot_super.th_wait_submit == 1);
1297         CDEBUG(D_INFO, "%s: version %llu gen %llu oth:version %p:%llu\n",
1298                osp->opd_obd->obd_name, ou->ou_version, ou->ou_generation, oth,
1299                oth->ot_our->our_version);
1300
1301         return 0;
1302 }
1303
1304 /**
1305  * Get next OSP update request in the sending list
1306  * Get next OSP update request in the sending list by version number, next
1307  * request will be
1308  * 1. transaction which does not have a version number.
1309  * 2. transaction whose version == opd_rpc_version.
1310  *
1311  * \param [in] ou       osp update structure.
1312  * \param [out] ourp    the pointer holding the next update request.
1313  *
1314  * \retval              true if getting the next transaction.
1315  * \retval              false if not getting the next transaction.
1316  */
1317 static bool
1318 osp_get_next_request(struct osp_updates *ou, struct osp_update_request **ourp)
1319 {
1320         struct osp_update_request *our;
1321         struct osp_update_request *tmp;
1322         bool                    got_req = false;
1323
1324         spin_lock(&ou->ou_lock);
1325         list_for_each_entry_safe(our, tmp, &ou->ou_list, our_list) {
1326                 LASSERT(our->our_th != NULL);
1327                 CDEBUG(D_HA, "ou %p version %llu rpc_version %llu\n",
1328                        ou, our->our_version, ou->ou_rpc_version);
1329                 spin_lock(&our->our_list_lock);
1330                 /* Find next osp_update_request in the list */
1331                 if (our->our_version == ou->ou_rpc_version &&
1332                     our->our_req_ready) {
1333                         list_del_init(&our->our_list);
1334                         spin_unlock(&our->our_list_lock);
1335                         *ourp = our;
1336                         got_req = true;
1337                         break;
1338                 }
1339                 spin_unlock(&our->our_list_lock);
1340         }
1341         spin_unlock(&ou->ou_lock);
1342
1343         return got_req;
1344 }
1345
1346 /**
1347  * Invalidate update request
1348  *
1349  * Invalidate update request in the OSP sending list, so all of
1350  * requests in the sending list will return error, which happens
1351  * when it finds one update (with writing llog) requests fails or
1352  * the OSP is evicted by remote target. see osp_send_update_thread().
1353  *
1354  * \param[in] osp       OSP device whose update requests will be
1355  *                      invalidated.
1356  **/
1357 void osp_invalidate_request(struct osp_device *osp)
1358 {
1359         struct lu_env env;
1360         struct osp_updates *ou = osp->opd_update;
1361         struct osp_update_request *our;
1362         struct osp_update_request *tmp;
1363         LIST_HEAD(list);
1364         int                     rc;
1365         ENTRY;
1366
1367         if (ou == NULL)
1368                 return;
1369
1370         rc = lu_env_init(&env, osp->opd_dt_dev.dd_lu_dev.ld_type->ldt_ctx_tags);
1371         if (rc < 0) {
1372                 CERROR("%s: init env error: rc = %d\n", osp->opd_obd->obd_name,
1373                        rc);
1374
1375                 spin_lock(&ou->ou_lock);
1376                 ou->ou_generation++;
1377                 spin_unlock(&ou->ou_lock);
1378
1379                 return;
1380         }
1381
1382         spin_lock(&ou->ou_lock);
1383         /* invalidate all of request in the sending list */
1384         list_for_each_entry_safe(our, tmp, &ou->ou_list, our_list) {
1385                 spin_lock(&our->our_list_lock);
1386                 if (our->our_req_ready)
1387                         list_move(&our->our_list, &list);
1388                 else
1389                         list_del_init(&our->our_list);
1390
1391                 if (our->our_th->ot_super.th_result == 0)
1392                         our->our_th->ot_super.th_result = -EIO;
1393
1394                 if (our->our_version >= ou->ou_rpc_version)
1395                         ou->ou_rpc_version = our->our_version + 1;
1396                 spin_unlock(&our->our_list_lock);
1397
1398                 CDEBUG(D_HA, "%s invalidate our %p\n", osp->opd_obd->obd_name,
1399                        our);
1400         }
1401
1402         /* Increase the generation, then the update request with old generation
1403          * will fail with -EIO. */
1404         ou->ou_generation++;
1405         spin_unlock(&ou->ou_lock);
1406
1407         /* invalidate all of request in the sending list */
1408         list_for_each_entry_safe(our, tmp, &list, our_list) {
1409                 spin_lock(&our->our_list_lock);
1410                 list_del_init(&our->our_list);
1411                 spin_unlock(&our->our_list_lock);
1412                 osp_trans_callback(&env, our->our_th,
1413                                    our->our_th->ot_super.th_result);
1414                 osp_thandle_put(&env, our->our_th);
1415         }
1416         lu_env_fini(&env);
1417 }
1418
1419 /**
1420  * Sending update thread
1421  *
1422  * Create thread to send update request to other MDTs, this thread will pull
1423  * out update request from the list in OSP by version number, i.e. it will
1424  * make sure the update request with lower version number will be sent first.
1425  *
1426  * \param[in] arg       hold the OSP device.
1427  *
1428  * \retval              0 if the thread is created successfully.
1429  * \retal               negative error if the thread is not created
1430  *                      successfully.
1431  */
1432 int osp_send_update_thread(void *arg)
1433 {
1434         struct lu_env           *env;
1435         struct osp_device       *osp = arg;
1436         struct osp_updates      *ou = osp->opd_update;
1437         struct osp_update_request *our = NULL;
1438         int                     rc;
1439         ENTRY;
1440
1441         LASSERT(ou != NULL);
1442         env = &ou->ou_env;
1443
1444         while (1) {
1445                 our = NULL;
1446                 wait_event_idle(ou->ou_waitq,
1447                                 kthread_should_stop() ||
1448                                 osp_get_next_request(ou, &our));
1449
1450                 if (kthread_should_stop()) {
1451                         if (our != NULL) {
1452                                 osp_trans_callback(env, our->our_th, -EINTR);
1453                                 osp_thandle_put(env, our->our_th);
1454                         }
1455                         break;
1456                 }
1457
1458                 LASSERT(our->our_th != NULL);
1459                 if (our->our_th->ot_super.th_result != 0) {
1460                         osp_trans_callback(env, our->our_th,
1461                                 our->our_th->ot_super.th_result);
1462                         rc = our->our_th->ot_super.th_result;
1463                 } else if (ou->ou_generation != our->our_generation ||
1464                            OBD_FAIL_CHECK(OBD_FAIL_INVALIDATE_UPDATE)) {
1465                         rc = -EIO;
1466                         osp_trans_callback(env, our->our_th, rc);
1467                 } else {
1468                         rc = osp_send_update_req(env, osp, our);
1469                 }
1470
1471                 /* Update the rpc version */
1472                 spin_lock(&ou->ou_lock);
1473                 if (our->our_version == ou->ou_rpc_version)
1474                         ou->ou_rpc_version++;
1475                 spin_unlock(&ou->ou_lock);
1476
1477                 /* If one update request fails, let's fail all of the requests
1478                  * in the sending list, because the request in the sending
1479                  * list are dependent on either other, continue sending these
1480                  * request might cause llog or filesystem corruption */
1481                 if (rc < 0)
1482                         osp_invalidate_request(osp);
1483
1484                 /* Balanced for thandle_get in osp_check_and_set_rpc_version */
1485                 osp_thandle_put(env, our->our_th);
1486         }
1487
1488         RETURN(0);
1489 }
1490
1491 /**
1492  * The OSP layer dt_device_operations::dt_trans_start() interface
1493  * to start the transaction.
1494  *
1495  * If the transaction is a remote transaction, then related remote
1496  * updates will be triggered in the osp_trans_stop().
1497  * Please refer to osp_trans_create() for transaction type.
1498  *
1499  * \param[in] env               pointer to the thread context
1500  * \param[in] dt                pointer to the OSP dt_device
1501  * \param[in] th                pointer to the transaction handler
1502  *
1503  * \retval                      0 for success
1504  * \retval                      negative error number on failure
1505  */
1506 int osp_trans_start(const struct lu_env *env, struct dt_device *dt,
1507                     struct thandle *th)
1508 {
1509         struct osp_thandle      *oth = thandle_to_osp_thandle(th);
1510
1511         if (oth->ot_super.th_sync)
1512                 oth->ot_our->our_flags |= UPDATE_FL_SYNC;
1513         /* For remote thandle, if there are local thandle, start it here*/
1514         if (is_only_remote_trans(th) && oth->ot_storage_th != NULL)
1515                 return dt_trans_start(env, oth->ot_storage_th->th_dev,
1516                                       oth->ot_storage_th);
1517         return 0;
1518 }
1519
1520 /**
1521  * The OSP layer dt_device_operations::dt_trans_stop() interface
1522  * to stop the transaction.
1523  *
1524  * If the transaction is a remote transaction, related remote
1525  * updates will be triggered at the end of this function.
1526  *
1527  * For synchronous mode update or any failed update, the request
1528  * will be destroyed explicitly when the osp_trans_stop().
1529  *
1530  * Please refer to osp_trans_create() for transaction type.
1531  *
1532  * \param[in] env               pointer to the thread context
1533  * \param[in] dt                pointer to the OSP dt_device
1534  * \param[in] th                pointer to the transaction handler
1535  *
1536  * \retval                      0 for success
1537  * \retval                      negative error number on failure
1538  */
1539 int osp_trans_stop(const struct lu_env *env, struct dt_device *dt,
1540                    struct thandle *th)
1541 {
1542         struct osp_thandle       *oth = thandle_to_osp_thandle(th);
1543         struct osp_update_request *our = oth->ot_our;
1544         struct osp_device        *osp = dt2osp_dev(dt);
1545         int                      rc = 0;
1546         ENTRY;
1547
1548         /* For remote transaction, if there is local storage thandle,
1549          * stop it first */
1550         if (oth->ot_storage_th != NULL && th->th_top == NULL) {
1551                 dt_trans_stop(env, oth->ot_storage_th->th_dev,
1552                               oth->ot_storage_th);
1553                 oth->ot_storage_th = NULL;
1554         }
1555
1556         if (our == NULL || list_empty(&our->our_req_list)) {
1557                 osp_trans_callback(env, oth, th->th_result);
1558                 GOTO(out, rc = th->th_result);
1559         }
1560
1561         if (!osp->opd_connect_mdt) {
1562                 osp_trans_callback(env, oth, th->th_result);
1563                 rc = osp_send_update_req(env, osp, oth->ot_our);
1564                 GOTO(out, rc);
1565         }
1566
1567         if (osp->opd_update == NULL) {
1568                 osp_trans_callback(env, oth, -EIO);
1569                 GOTO(out, rc = -EIO);
1570         }
1571
1572         CDEBUG(D_HA, "%s: add oth %p with version %llu\n",
1573                osp->opd_obd->obd_name, oth, our->our_version);
1574
1575         LASSERT(our->our_req_ready == 0);
1576         spin_lock(&our->our_list_lock);
1577         if (likely(!list_empty(&our->our_list))) {
1578                 /* notify sending thread */
1579                 our->our_req_ready = 1;
1580                 wake_up(&osp->opd_update->ou_waitq);
1581                 spin_unlock(&our->our_list_lock);
1582         } else if (th->th_result == 0) {
1583                 /* if the request does not needs to be serialized,
1584                  * read-only request etc, let's send it right away */
1585                 spin_unlock(&our->our_list_lock);
1586                 rc = osp_send_update_req(env, osp, our);
1587         } else {
1588                 spin_unlock(&our->our_list_lock);
1589                 osp_trans_callback(env, oth, th->th_result);
1590         }
1591 out:
1592         osp_thandle_put(env, oth);
1593
1594         RETURN(rc);
1595 }