Whamcloud - gitweb
LU-10308 misc: update Intel copyright messages for 2017
[fs/lustre-release.git] / lustre / osp / osp_sync.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) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lustre/osp/osp_sync.c
33  *
34  * Lustre OST Proxy Device
35  *
36  * Author: Alex Zhuravlev <alexey.zhuravlev@intel.com>
37  * Author: Mikhail Pershin <mike.pershin@intel.com>
38  */
39
40 #define DEBUG_SUBSYSTEM S_MDS
41
42 #include <linux/kthread.h>
43 #include <lustre_log.h>
44 #include <lustre_update.h>
45 #include "osp_internal.h"
46
47 /*
48  * this is a components of OSP implementing synchronization between MDS and OST
49  * it llogs all interesting changes (currently it's uig/gid change and object
50  * destroy) atomically, then makes sure changes hit OST storage
51  *
52  * we have 4 queues of work:
53  *
54  * the first queue is llog itself, once read a change is stored in 2nd queue
55  * in form of RPC (but RPC isn't fired yet).
56  *
57  * the second queue (opd_sync_waiting_for_commit) holds changes awaiting local
58  * commit. once change is committed locally it migrates onto 3rd queue.
59  *
60  * the third queue (opd_sync_committed_here) holds changes committed locally,
61  * but not sent to OST (as the pipe can be full). once pipe becomes non-full
62  * we take a change from the queue and fire corresponded RPC.
63  *
64  * once RPC is reported committed by OST (using regular last_committed mech.)
65  * the change jumps into 4th queue (opd_sync_committed_there), now we can
66  * cancel corresponded llog record and release RPC
67  *
68  * opd_sync_changes is a number of unread llog records (to be processed).
69  * notice this number doesn't include llog records from previous boots.
70  * with OSP_SYNC_THRESHOLD we try to batch processing a bit (TO BE IMPLEMENTED)
71  *
72  * opd_sync_rpcs_in_progress is total number of requests in above 2-4 queues.
73  * we control this with OSP_MAX_RPCS_IN_PROGRESS so that OSP don't consume
74  * too much memory -- how to deal with 1000th OSTs ? batching could help?
75  *
76  * opd_sync_rpcs_in_flight is a number of RPC in flight.
77  * we control this with OSP_MAX_RPCS_IN_FLIGHT
78  */
79
80 /* XXX: do math to learn reasonable threshold
81  * should it be ~ number of changes fitting bulk? */
82
83 #define OSP_SYNC_THRESHOLD              10
84 #define OSP_MAX_RPCS_IN_FLIGHT          8
85 #define OSP_MAX_RPCS_IN_PROGRESS        4096
86
87 #define OSP_JOB_MAGIC           0x26112005
88
89 struct osp_job_req_args {
90         /** bytes reserved for ptlrpc_replay_req() */
91         struct ptlrpc_replay_async_args jra_raa;
92         struct list_head                jra_committed_link;
93         struct list_head                jra_in_flight_link;
94         struct llog_cookie              jra_lcookie;
95         __u32                           jra_magic;
96 };
97
98 static int osp_sync_add_commit_cb(const struct lu_env *env,
99                                   struct osp_device *d, struct thandle *th);
100
101 static inline int osp_sync_running(struct osp_device *d)
102 {
103         return !!(d->opd_sync_thread.t_flags & SVC_RUNNING);
104 }
105
106 /**
107  * Check status: whether OSP thread has stopped
108  *
109  * \param[in] d         OSP device
110  *
111  * \retval 0            still running
112  * \retval 1            stopped
113  */
114 static inline int osp_sync_stopped(struct osp_device *d)
115 {
116         return !!(d->opd_sync_thread.t_flags & SVC_STOPPED);
117 }
118
119 /*
120  ** Check for new changes to sync
121  *
122  * \param[in] d         OSP device
123  *
124  * \retval 1            there are changes
125  * \retval 0            there are no changes
126  */
127 static inline int osp_sync_has_new_job(struct osp_device *d)
128 {
129         return atomic_read(&d->opd_sync_changes) > 0 ||
130                 d->opd_sync_prev_done == 0;
131 }
132
133 static inline int osp_sync_in_flight_conflict(struct osp_device *d,
134                                              struct llog_rec_hdr *h)
135 {
136         struct osp_job_req_args *jra;
137         struct ost_id            ostid;
138         int                      conflict = 0;
139
140         if (h == NULL || h->lrh_type == LLOG_GEN_REC ||
141             list_empty(&d->opd_sync_in_flight_list))
142                 return conflict;
143
144         memset(&ostid, 0, sizeof(ostid));
145         switch (h->lrh_type) {
146         case MDS_UNLINK_REC: {
147                 struct llog_unlink_rec *unlink = (struct llog_unlink_rec *)h;
148
149                 ostid_set_seq(&ostid, unlink->lur_oseq);
150                 if (ostid_set_id(&ostid, unlink->lur_oid)) {
151                         CERROR("Bad %llu to set " DOSTID "\n",
152                                (unsigned long long)(unlink->lur_oid),
153                                POSTID(&ostid));
154                         return 1;
155                 }
156                 }
157                 break;
158         case MDS_UNLINK64_REC:
159                 fid_to_ostid(&((struct llog_unlink64_rec *)h)->lur_fid, &ostid);
160                 break;
161         case MDS_SETATTR64_REC:
162                 ostid = ((struct llog_setattr64_rec *)h)->lsr_oi;
163                 break;
164         default:
165                 LBUG();
166         }
167
168         spin_lock(&d->opd_sync_lock);
169         list_for_each_entry(jra, &d->opd_sync_in_flight_list,
170                             jra_in_flight_link) {
171                 struct ptlrpc_request   *req;
172                 struct ost_body         *body;
173
174                 LASSERT(jra->jra_magic == OSP_JOB_MAGIC);
175
176                 req = container_of((void *)jra, struct ptlrpc_request,
177                                    rq_async_args);
178                 body = req_capsule_client_get(&req->rq_pill,
179                                               &RMF_OST_BODY);
180                 LASSERT(body);
181
182                 if (memcmp(&ostid, &body->oa.o_oi, sizeof(ostid)) == 0) {
183                         conflict = 1;
184                         break;
185                 }
186         }
187         spin_unlock(&d->opd_sync_lock);
188
189         return conflict;
190 }
191
192 static inline int osp_sync_rpcs_in_progress_low(struct osp_device *d)
193 {
194         return atomic_read(&d->opd_sync_rpcs_in_progress) <
195                 d->opd_sync_max_rpcs_in_progress;
196 }
197
198 /**
199  * Check for room in the network pipe to OST
200  *
201  * \param[in] d         OSP device
202  *
203  * \retval 1            there is room
204  * \retval 0            no room, the pipe is full
205  */
206 static inline int osp_sync_rpcs_in_flight_low(struct osp_device *d)
207 {
208         return atomic_read(&d->opd_sync_rpcs_in_flight) <
209                 d->opd_sync_max_rpcs_in_flight;
210 }
211
212 /**
213  * Wake up check for the main sync thread
214  *
215  * \param[in] d         OSP device
216  *
217  * \retval 1            time to wake up
218  * \retval 0            no need to wake up
219  */
220 static inline int osp_sync_has_work(struct osp_device *osp)
221 {
222         /* has new/old changes and low in-progress? */
223         if (osp_sync_has_new_job(osp) && osp_sync_rpcs_in_progress_low(osp) &&
224             osp_sync_rpcs_in_flight_low(osp) && osp->opd_imp_connected)
225                 return 1;
226
227         /* has remotely committed? */
228         if (!list_empty(&osp->opd_sync_committed_there))
229                 return 1;
230
231         return 0;
232 }
233
234 void osp_sync_check_for_work(struct osp_device *osp)
235 {
236         if (osp_sync_has_work(osp))
237                 wake_up(&osp->opd_sync_waitq);
238 }
239
240 static inline __u64 osp_sync_correct_id(struct osp_device *d,
241                                         struct llog_rec_hdr *rec)
242 {
243         /*
244          * llog use cyclic store with 32 bit lrh_id
245          * so overflow lrh_id is possible. Range between
246          * last_processed and last_committed is less than
247          * 64745 ^ 2 and less than 2^32 - 1
248          */
249         __u64 correct_id = d->opd_sync_last_committed_id;
250
251         if ((correct_id & 0xffffffffULL) < rec->lrh_id)
252                 correct_id -= 0x100000000ULL;
253
254         correct_id &= ~0xffffffffULL;
255         correct_id |= rec->lrh_id;
256
257         return correct_id;
258 }
259
260 /**
261  * Check and return ready-for-new status.
262  *
263  * The thread processing llog record uses this function to check whether
264  * it's time to take another record and process it. The number of conditions
265  * must be met: the connection should be ready, RPCs in flight not exceeding
266  * the limit, the record is committed locally, etc (see the lines below).
267  *
268  * \param[in] d         OSP device
269  * \param[in] rec       next llog record to process
270  *
271  * \retval 0            not ready
272  * \retval 1            ready
273  */
274 static inline int osp_sync_can_process_new(struct osp_device *d,
275                                            struct llog_rec_hdr *rec)
276 {
277         LASSERT(d);
278
279         if (unlikely(atomic_read(&d->opd_sync_barrier) > 0))
280                 return 0;
281         if (unlikely(osp_sync_in_flight_conflict(d, rec)))
282                 return 0;
283         if (!osp_sync_rpcs_in_progress_low(d))
284                 return 0;
285         if (!osp_sync_rpcs_in_flight_low(d))
286                 return 0;
287         if (!d->opd_imp_connected)
288                 return 0;
289         if (d->opd_sync_prev_done == 0)
290                 return 1;
291         if (atomic_read(&d->opd_sync_changes) == 0)
292                 return 0;
293         if (rec == NULL)
294                 return 1;
295         /* notice "<" not "<=" */
296         if (osp_sync_correct_id(d, rec) < d->opd_sync_last_committed_id)
297                 return 1;
298         return 0;
299 }
300
301 /**
302  * Declare intention to add a new change.
303  *
304  * With regard to OSD API, we have to declare any changes ahead. In this
305  * case we declare an intention to add a llog record representing the
306  * change on the local storage.
307  *
308  * \param[in] env       LU environment provided by the caller
309  * \param[in] o         OSP object
310  * \param[in] type      type of change: MDS_UNLINK64_REC or MDS_SETATTR64_REC
311  * \param[in] th        transaction handle (local)
312  *
313  * \retval 0            on success
314  * \retval negative     negated errno on error
315  */
316 int osp_sync_declare_add(const struct lu_env *env, struct osp_object *o,
317                          llog_op_type type, struct thandle *th)
318 {
319         struct osp_thread_info  *osi = osp_env_info(env);
320         struct osp_device       *d = lu2osp_dev(o->opo_obj.do_lu.lo_dev);
321         struct llog_ctxt        *ctxt;
322         struct thandle          *storage_th;
323         int                      rc;
324
325         ENTRY;
326
327         /* it's a layering violation, to access internals of th,
328          * but we can do this as a sanity check, for a while */
329         LASSERT(th->th_top != NULL);
330         storage_th = thandle_get_sub_by_dt(env, th->th_top, d->opd_storage);
331         if (IS_ERR(storage_th))
332                 RETURN(PTR_ERR(storage_th));
333
334         switch (type) {
335         case MDS_UNLINK64_REC:
336                 osi->osi_hdr.lrh_len = sizeof(struct llog_unlink64_rec);
337                 break;
338         case MDS_SETATTR64_REC:
339                 osi->osi_hdr.lrh_len = sizeof(struct llog_setattr64_rec_v2);
340                 break;
341         default:
342                 LBUG();
343         }
344
345         ctxt = llog_get_context(d->opd_obd, LLOG_MDS_OST_ORIG_CTXT);
346         LASSERT(ctxt);
347
348         rc = llog_declare_add(env, ctxt->loc_handle, &osi->osi_hdr,
349                               storage_th);
350         llog_ctxt_put(ctxt);
351
352         RETURN(rc);
353 }
354
355 /**
356  * Generate a llog record for a given change.
357  *
358  * Generates a llog record for the change passed. The change can be of two
359  * types: unlink and setattr. The record gets an ID which later will be
360  * used to track commit status of the change. For unlink changes, the caller
361  * can supply a starting FID and the count of the objects to destroy. For
362  * setattr the caller should apply attributes to apply.
363  *
364  *
365  * \param[in] env       LU environment provided by the caller
366  * \param[in] d         OSP device
367  * \param[in] fid       fid of the object the change should be applied to
368  * \param[in] type      type of change: MDS_UNLINK64_REC or MDS_SETATTR64_REC
369  * \param[in] count     count of objects to destroy
370  * \param[in] th        transaction handle (local)
371  * \param[in] attr      attributes for setattr
372  *
373  * \retval 0            on success
374  * \retval negative     negated errno on error
375  */
376 static int osp_sync_add_rec(const struct lu_env *env, struct osp_device *d,
377                             const struct lu_fid *fid, llog_op_type type,
378                             int count, struct thandle *th,
379                             const struct lu_attr *attr)
380 {
381         struct osp_thread_info  *osi = osp_env_info(env);
382         struct llog_ctxt        *ctxt;
383         struct thandle          *storage_th;
384         bool                     immediate_commit_cb = false;
385         int                      rc;
386
387         ENTRY;
388
389         /* it's a layering violation, to access internals of th,
390          * but we can do this as a sanity check, for a while */
391         LASSERT(th->th_top != NULL);
392         storage_th = thandle_get_sub_by_dt(env, th->th_top, d->opd_storage);
393         if (IS_ERR(storage_th))
394                 RETURN(PTR_ERR(storage_th));
395
396         switch (type) {
397         case MDS_UNLINK64_REC:
398                 osi->osi_hdr.lrh_len = sizeof(osi->osi_unlink);
399                 osi->osi_hdr.lrh_type = MDS_UNLINK64_REC;
400                 osi->osi_unlink.lur_fid  = *fid;
401                 osi->osi_unlink.lur_count = count;
402                 break;
403         case MDS_SETATTR64_REC:
404                 rc = fid_to_ostid(fid, &osi->osi_oi);
405                 LASSERT(rc == 0);
406                 osi->osi_hdr.lrh_len = sizeof(osi->osi_setattr);
407                 osi->osi_hdr.lrh_type = MDS_SETATTR64_REC;
408                 osi->osi_setattr.lsr_oi  = osi->osi_oi;
409                 LASSERT(attr);
410                 osi->osi_setattr.lsr_uid = attr->la_uid;
411                 osi->osi_setattr.lsr_gid = attr->la_gid;
412                 osi->osi_setattr.lsr_layout_version = attr->la_layout_version;
413                 osi->osi_setattr.lsr_projid = attr->la_projid;
414                 osi->osi_setattr.lsr_valid =
415                         ((attr->la_valid & LA_UID) ? OBD_MD_FLUID : 0) |
416                         ((attr->la_valid & LA_GID) ? OBD_MD_FLGID : 0) |
417                         ((attr->la_valid & LA_PROJID) ? OBD_MD_FLPROJID : 0);
418                 if (attr->la_valid & LA_LAYOUT_VERSION) {
419                         osi->osi_setattr.lsr_valid |= OBD_MD_LAYOUT_VERSION;
420
421                         /* FLR: the layout version has to be transferred to
422                          * OST objects ASAP, otherwise clients will have to
423                          * experience delay to be able to write OST objects. */
424                         immediate_commit_cb = true;
425                 }
426                 break;
427         default:
428                 LBUG();
429         }
430
431         /* we keep the same id, but increment it when the callback
432          * is registered, so that all records upto the one taken
433          * by the callback are subject to processing */
434         spin_lock(&d->opd_sync_lock);
435         osi->osi_hdr.lrh_id = d->opd_sync_last_used_id;
436         spin_unlock(&d->opd_sync_lock);
437
438         ctxt = llog_get_context(d->opd_obd, LLOG_MDS_OST_ORIG_CTXT);
439         if (ctxt == NULL)
440                 RETURN(-ENOMEM);
441
442         rc = llog_add(env, ctxt->loc_handle, &osi->osi_hdr, &osi->osi_cookie,
443                       storage_th);
444         llog_ctxt_put(ctxt);
445
446         if (likely(rc >= 0)) {
447                 CDEBUG(D_OTHER, "%s: new record "DFID":%x.%u: rc = %d\n",
448                        d->opd_obd->obd_name,
449                        PFID(&osi->osi_cookie.lgc_lgl.lgl_oi.oi_fid),
450                        osi->osi_cookie.lgc_lgl.lgl_ogen,
451                        osi->osi_cookie.lgc_index, rc);
452                 atomic_inc(&d->opd_sync_changes);
453         }
454
455         if (immediate_commit_cb)
456                 rc = osp_sync_add_commit_cb(env, d, th);
457         else
458                 rc = osp_sync_add_commit_cb_1s(env, d, th);
459
460         /* return 0 always here, error case just cause no llog record */
461         RETURN(0);
462 }
463
464 int osp_sync_add(const struct lu_env *env, struct osp_object *o,
465                  llog_op_type type, struct thandle *th,
466                  const struct lu_attr *attr)
467 {
468         return osp_sync_add_rec(env, lu2osp_dev(o->opo_obj.do_lu.lo_dev),
469                                 lu_object_fid(&o->opo_obj.do_lu), type, 1,
470                                 th, attr);
471 }
472
473 int osp_sync_gap(const struct lu_env *env, struct osp_device *d,
474                         struct lu_fid *fid, int lost, struct thandle *th)
475 {
476         return osp_sync_add_rec(env, d, fid, MDS_UNLINK64_REC, lost, th, NULL);
477 }
478
479 /*
480  * it's quite obvious we can't maintain all the structures in the memory:
481  * while OST is down, MDS can be processing thousands and thousands of unlinks
482  * filling persistent llogs and in-core respresentation
483  *
484  * this doesn't scale at all. so we need basically the following:
485  * a) destroy/setattr append llog records
486  * b) once llog has grown to X records, we process first Y committed records
487  *
488  *  once record R is found via llog_process(), it becomes committed after any
489  *  subsequent commit callback (at the most)
490  */
491
492 /**
493  * ptlrpc commit callback.
494  *
495  * The callback is called by PTLRPC when a RPC is reported committed by the
496  * target (OST). We register the callback for the every RPC applying a change
497  * from the llog. This way we know then the llog records can be cancelled.
498  * Notice the callback can be called when OSP is finishing. We can detect this
499  * checking that actual transno in the request is less or equal of known
500  * committed transno (see osp_sync_process_committed() for the details).
501  * XXX: this is pretty expensive and can be improved later using batching.
502  *
503  * \param[in] req       request
504  */
505 static void osp_sync_request_commit_cb(struct ptlrpc_request *req)
506 {
507         struct osp_device *d = req->rq_cb_data;
508         struct osp_job_req_args *jra;
509
510         CDEBUG(D_HA, "commit req %p, transno %llu\n", req, req->rq_transno);
511
512         if (unlikely(req->rq_transno == 0))
513                 return;
514
515         /* do not do any opd_sync_rpcs_* accounting here
516          * it's done in osp_sync_interpret sooner or later */
517         LASSERT(d);
518
519         jra = ptlrpc_req_async_args(req);
520         LASSERT(jra->jra_magic == OSP_JOB_MAGIC);
521         LASSERT(list_empty(&jra->jra_committed_link));
522
523         ptlrpc_request_addref(req);
524
525         spin_lock(&d->opd_sync_lock);
526         list_add(&jra->jra_committed_link, &d->opd_sync_committed_there);
527         spin_unlock(&d->opd_sync_lock);
528
529         /* XXX: some batching wouldn't hurt */
530         wake_up(&d->opd_sync_waitq);
531 }
532
533 /**
534  * RPC interpretation callback.
535  *
536  * The callback is called by ptlrpc when RPC is replied. Now we have to decide
537  * whether we should:
538  *  - put request on a special list to wait until it's committed by the target,
539  *    if the request is successful
540  *  - schedule llog record cancel if no target object is found
541  *  - try later (essentially after reboot) in case of unexpected error
542  *
543  * \param[in] env       LU environment provided by the caller
544  * \param[in] req       request replied
545  * \param[in] aa        callback data
546  * \param[in] rc        result of RPC
547  *
548  * \retval 0            always
549  */
550 static int osp_sync_interpret(const struct lu_env *env,
551                               struct ptlrpc_request *req, void *aa, int rc)
552 {
553         struct osp_device *d = req->rq_cb_data;
554         struct osp_job_req_args *jra = aa;
555
556         if (jra->jra_magic != OSP_JOB_MAGIC) {
557                 DEBUG_REQ(D_ERROR, req, "bad magic %u\n", jra->jra_magic);
558                 LBUG();
559         }
560         LASSERT(d);
561
562         CDEBUG(D_HA, "reply req %p/%d, rc %d, transno %u\n", req,
563                atomic_read(&req->rq_refcount),
564                rc, (unsigned) req->rq_transno);
565
566         if (rc == -ENOENT) {
567                 /*
568                  * we tried to destroy object or update attributes,
569                  * but object doesn't exist anymore - cancell llog record
570                  */
571                 LASSERT(req->rq_transno == 0);
572                 LASSERT(list_empty(&jra->jra_committed_link));
573
574                 ptlrpc_request_addref(req);
575
576                 spin_lock(&d->opd_sync_lock);
577                 list_add(&jra->jra_committed_link,
578                          &d->opd_sync_committed_there);
579                 spin_unlock(&d->opd_sync_lock);
580
581                 wake_up(&d->opd_sync_waitq);
582         } else if (rc) {
583                 struct obd_import *imp = req->rq_import;
584                 /*
585                  * error happened, we'll try to repeat on next boot ?
586                  */
587                 LASSERTF(req->rq_transno == 0 || rc == -EIO ||
588                          req->rq_import_generation < imp->imp_generation,
589                          "transno %llu, rc %d, gen: req %d, imp %d\n",
590                          req->rq_transno, rc, req->rq_import_generation,
591                          imp->imp_generation);
592                 if (req->rq_transno == 0) {
593                         /* this is the last time we see the request
594                          * if transno is not zero, then commit cb
595                          * will be called at some point */
596                         LASSERT(atomic_read(&d->opd_sync_rpcs_in_progress) > 0);
597                         atomic_dec(&d->opd_sync_rpcs_in_progress);
598                 }
599
600                 wake_up(&d->opd_sync_waitq);
601         } else if (d->opd_pre != NULL &&
602                    unlikely(d->opd_pre_status == -ENOSPC)) {
603                 /*
604                  * if current status is -ENOSPC (lack of free space on OST)
605                  * then we should poll OST immediately once object destroy
606                  * is replied
607                  */
608                 osp_statfs_need_now(d);
609         }
610
611         spin_lock(&d->opd_sync_lock);
612         list_del_init(&jra->jra_in_flight_link);
613         spin_unlock(&d->opd_sync_lock);
614         LASSERT(atomic_read(&d->opd_sync_rpcs_in_flight) > 0);
615         atomic_dec(&d->opd_sync_rpcs_in_flight);
616         if (unlikely(atomic_read(&d->opd_sync_barrier) > 0))
617                 wake_up(&d->opd_sync_barrier_waitq);
618         CDEBUG(D_OTHER, "%s: %d in flight, %d in progress\n",
619                d->opd_obd->obd_name, atomic_read(&d->opd_sync_rpcs_in_flight),
620                atomic_read(&d->opd_sync_rpcs_in_progress));
621
622         osp_sync_check_for_work(d);
623
624         return 0;
625 }
626
627 /*
628  ** Add request to ptlrpc queue.
629  *
630  * This is just a tiny helper function to put the request on the sending list
631  *
632  * \param[in] d         OSP device
633  * \param[in] llh       llog handle where the record is stored
634  * \param[in] h         llog record
635  * \param[in] req       request
636  */
637 static void osp_sync_send_new_rpc(struct osp_device *d,
638                                   struct llog_handle *llh,
639                                   struct llog_rec_hdr *h,
640                                   struct ptlrpc_request *req)
641 {
642         struct osp_job_req_args *jra;
643
644         LASSERT(atomic_read(&d->opd_sync_rpcs_in_flight) <=
645                 d->opd_sync_max_rpcs_in_flight);
646
647         jra = ptlrpc_req_async_args(req);
648         jra->jra_magic = OSP_JOB_MAGIC;
649         jra->jra_lcookie.lgc_lgl = llh->lgh_id;
650         jra->jra_lcookie.lgc_subsys = LLOG_MDS_OST_ORIG_CTXT;
651         jra->jra_lcookie.lgc_index = h->lrh_index;
652         INIT_LIST_HEAD(&jra->jra_committed_link);
653         spin_lock(&d->opd_sync_lock);
654         list_add_tail(&jra->jra_in_flight_link, &d->opd_sync_in_flight_list);
655         spin_unlock(&d->opd_sync_lock);
656
657         ptlrpcd_add_req(req);
658 }
659
660
661 /**
662  * Allocate and prepare RPC for a new change.
663  *
664  * The function allocates and initializes an RPC which will be sent soon to
665  * apply the change to the target OST. The request is initialized from the
666  * llog record passed. Notice only the fields common to all type of changes
667  * are initialized.
668  *
669  * \param[in] d         OSP device
670  * \param[in] op        type of the change
671  * \param[in] format    request format to be used
672  *
673  * \retval pointer              new request on success
674  * \retval ERR_PTR(errno)       on error
675  */
676 static struct ptlrpc_request *osp_sync_new_job(struct osp_device *d,
677                                                ost_cmd_t op,
678                                                const struct req_format *format)
679 {
680         struct ptlrpc_request   *req;
681         struct obd_import       *imp;
682         int                      rc;
683
684         /* Prepare the request */
685         imp = d->opd_obd->u.cli.cl_import;
686         LASSERT(imp);
687
688         if (OBD_FAIL_CHECK(OBD_FAIL_OSP_CHECK_ENOMEM))
689                 RETURN(ERR_PTR(-ENOMEM));
690
691         req = ptlrpc_request_alloc(imp, format);
692         if (req == NULL)
693                 RETURN(ERR_PTR(-ENOMEM));
694
695         rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, op);
696         if (rc) {
697                 ptlrpc_req_finished(req);
698                 return ERR_PTR(rc);
699         }
700
701         req->rq_interpret_reply = osp_sync_interpret;
702         req->rq_commit_cb = osp_sync_request_commit_cb;
703         req->rq_cb_data = d;
704
705         ptlrpc_request_set_replen(req);
706
707         return req;
708 }
709
710 /**
711  * Generate a request for setattr change.
712  *
713  * The function prepares a new RPC, initializes it with setattr specific
714  * bits and send the RPC.
715  *
716  * \param[in] d         OSP device
717  * \param[in] llh       llog handle where the record is stored
718  * \param[in] h         llog record
719  *
720  * \retval 0            on success
721  * \retval 1            on invalid record
722  * \retval negative     negated errno on error
723  */
724 static int osp_sync_new_setattr_job(struct osp_device *d,
725                                     struct llog_handle *llh,
726                                     struct llog_rec_hdr *h)
727 {
728         struct llog_setattr64_rec       *rec = (struct llog_setattr64_rec *)h;
729         struct ptlrpc_request           *req;
730         struct ost_body                 *body;
731
732         ENTRY;
733         LASSERT(h->lrh_type == MDS_SETATTR64_REC);
734
735         if (OBD_FAIL_CHECK(OBD_FAIL_OSP_CHECK_INVALID_REC))
736                 RETURN(1);
737
738         /* lsr_valid can only be 0 or HAVE OBD_MD_{FLUID, FLGID, FLPROJID} set,
739          * so no bits other than these should be set. */
740         if ((rec->lsr_valid & ~(OBD_MD_FLUID | OBD_MD_FLGID |
741             OBD_MD_FLPROJID | OBD_MD_LAYOUT_VERSION)) != 0) {
742                 CERROR("%s: invalid setattr record, lsr_valid:%llu\n",
743                         d->opd_obd->obd_name, rec->lsr_valid);
744                 /* return 1 on invalid record */
745                 RETURN(1);
746         }
747
748         req = osp_sync_new_job(d, OST_SETATTR, &RQF_OST_SETATTR);
749         if (IS_ERR(req))
750                 RETURN(PTR_ERR(req));
751
752         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
753         LASSERT(body);
754         body->oa.o_oi = rec->lsr_oi;
755         body->oa.o_uid = rec->lsr_uid;
756         body->oa.o_gid = rec->lsr_gid;
757         body->oa.o_valid = OBD_MD_FLGROUP | OBD_MD_FLID;
758         if (h->lrh_len > sizeof(struct llog_setattr64_rec)) {
759                 struct llog_setattr64_rec_v2 *rec_v2 = (typeof(rec_v2))rec;
760                 body->oa.o_projid = rec_v2->lsr_projid;
761                 body->oa.o_layout_version = rec_v2->lsr_layout_version;
762         }
763
764         /* old setattr record (prior 2.6.0) doesn't have 'valid' stored,
765          * we assume that both UID and GID are valid in that case. */
766         if (rec->lsr_valid == 0)
767                 body->oa.o_valid |= (OBD_MD_FLUID | OBD_MD_FLGID);
768         else
769                 body->oa.o_valid |= rec->lsr_valid;
770
771         if (body->oa.o_valid & OBD_MD_LAYOUT_VERSION) {
772                 OBD_FAIL_TIMEOUT(OBD_FAIL_FLR_LV_DELAY, cfs_fail_val);
773                 if (unlikely(OBD_FAIL_CHECK(OBD_FAIL_FLR_LV_INC)))
774                         ++body->oa.o_layout_version;
775         }
776
777         osp_sync_send_new_rpc(d, llh, h, req);
778         RETURN(0);
779 }
780
781 /**
782  * Generate a request for unlink change.
783  *
784  * The function prepares a new RPC, initializes it with unlink(destroy)
785  * specific bits and sends the RPC. The function is used to handle
786  * llog_unlink_rec which were used in the older versions of Lustre.
787  * Current version uses llog_unlink_rec64.
788  *
789  * \param[in] d         OSP device
790  * \param[in] llh       llog handle where the record is stored
791  * \param[in] h         llog record
792  *
793  * \retval 0            on success
794  * \retval negative     negated errno on error
795  */
796 static int osp_sync_new_unlink_job(struct osp_device *d,
797                                    struct llog_handle *llh,
798                                    struct llog_rec_hdr *h)
799 {
800         struct llog_unlink_rec  *rec = (struct llog_unlink_rec *)h;
801         struct ptlrpc_request   *req;
802         struct ost_body         *body;
803         int rc;
804
805         ENTRY;
806         LASSERT(h->lrh_type == MDS_UNLINK_REC);
807
808         req = osp_sync_new_job(d, OST_DESTROY, &RQF_OST_DESTROY);
809         if (IS_ERR(req))
810                 RETURN(PTR_ERR(req));
811
812         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
813         LASSERT(body);
814         ostid_set_seq(&body->oa.o_oi, rec->lur_oseq);
815         rc = ostid_set_id(&body->oa.o_oi, rec->lur_oid);
816         if (rc)
817                 return rc;
818         body->oa.o_misc = rec->lur_count;
819         body->oa.o_valid = OBD_MD_FLGROUP | OBD_MD_FLID;
820         if (rec->lur_count)
821                 body->oa.o_valid |= OBD_MD_FLOBJCOUNT;
822
823         osp_sync_send_new_rpc(d, llh, h, req);
824         RETURN(0);
825 }
826
827 /**
828  * Generate a request for unlink change.
829  *
830  * The function prepares a new RPC, initializes it with unlink(destroy)
831  * specific bits and sends the RPC. Depending on the target (MDT or OST)
832  * two different protocols are used. For MDT we use OUT (basically OSD API
833  * updates transferred via a network). For OST we still use the old
834  * protocol (OBD?), originally for compatibility. Later we can start to
835  * use OUT for OST as well, this will allow batching and better code
836  * unification.
837  *
838  * \param[in] d         OSP device
839  * \param[in] llh       llog handle where the record is stored
840  * \param[in] h         llog record
841  *
842  * \retval 0            on success
843  * \retval negative     negated errno on error
844  */
845 static int osp_sync_new_unlink64_job(struct osp_device *d,
846                                      struct llog_handle *llh,
847                                      struct llog_rec_hdr *h)
848 {
849         struct llog_unlink64_rec        *rec = (struct llog_unlink64_rec *)h;
850         struct ptlrpc_request           *req = NULL;
851         struct ost_body                 *body;
852         int                              rc;
853
854         ENTRY;
855         LASSERT(h->lrh_type == MDS_UNLINK64_REC);
856         req = osp_sync_new_job(d, OST_DESTROY, &RQF_OST_DESTROY);
857         if (IS_ERR(req))
858                 RETURN(PTR_ERR(req));
859
860         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
861         if (body == NULL)
862                 RETURN(-EFAULT);
863         rc = fid_to_ostid(&rec->lur_fid, &body->oa.o_oi);
864         if (rc < 0)
865                 RETURN(rc);
866         body->oa.o_misc = rec->lur_count;
867         body->oa.o_valid = OBD_MD_FLGROUP | OBD_MD_FLID |
868                            OBD_MD_FLOBJCOUNT;
869         osp_sync_send_new_rpc(d, llh, h, req);
870         RETURN(0);
871 }
872
873 /**
874  * Process llog records.
875  *
876  * This function is called to process the llog records committed locally.
877  * In the recovery model used by OSP we can apply a change to a remote
878  * target once corresponding transaction (like posix unlink) is committed
879  * locally so can't revert.
880  * Depending on the llog record type, a given handler is called that is
881  * responsible for preparing and sending the RPC to apply the change.
882  * Special record type LLOG_GEN_REC marking a reboot is cancelled right away.
883  *
884  * \param[in] env       LU environment provided by the caller
885  * \param[in] d         OSP device
886  * \param[in] llh       llog handle where the record is stored
887  * \param[in] rec       llog record
888  */
889 static void osp_sync_process_record(const struct lu_env *env,
890                                     struct osp_device *d,
891                                     struct llog_handle *llh,
892                                     struct llog_rec_hdr *rec)
893 {
894         struct llog_handle      *cathandle = llh->u.phd.phd_cat_handle;
895         struct llog_cookie       cookie;
896         int                      rc = 0;
897
898         ENTRY;
899
900         cookie.lgc_lgl = llh->lgh_id;
901         cookie.lgc_subsys = LLOG_MDS_OST_ORIG_CTXT;
902         cookie.lgc_index = rec->lrh_index;
903
904         d->opd_sync_last_catalog_idx = llh->lgh_hdr->llh_cat_idx;
905
906         if (unlikely(rec->lrh_type == LLOG_GEN_REC)) {
907                 struct llog_gen_rec *gen = (struct llog_gen_rec *)rec;
908
909                 /* we're waiting for the record generated by this instance */
910                 LASSERT(d->opd_sync_prev_done == 0);
911                 if (!memcmp(&d->opd_sync_generation, &gen->lgr_gen,
912                             sizeof(gen->lgr_gen))) {
913                         CDEBUG(D_HA, "processed all old entries\n");
914                         d->opd_sync_prev_done = 1;
915                 }
916
917                 /* cancel any generation record */
918                 rc = llog_cat_cancel_records(env, cathandle, 1, &cookie);
919
920                 RETURN_EXIT;
921         }
922
923         /*
924          * now we prepare and fill requests to OST, put them on the queue
925          * and fire after next commit callback
926          */
927
928         /* notice we increment counters before sending RPC, to be consistent
929          * in RPC interpret callback which may happen very quickly */
930         atomic_inc(&d->opd_sync_rpcs_in_flight);
931         atomic_inc(&d->opd_sync_rpcs_in_progress);
932
933         switch (rec->lrh_type) {
934         /* case MDS_UNLINK_REC is kept for compatibility */
935         case MDS_UNLINK_REC:
936                 rc = osp_sync_new_unlink_job(d, llh, rec);
937                 break;
938         case MDS_UNLINK64_REC:
939                 rc = osp_sync_new_unlink64_job(d, llh, rec);
940                 break;
941         case MDS_SETATTR64_REC:
942                 rc = osp_sync_new_setattr_job(d, llh, rec);
943                 break;
944         default:
945                 CERROR("%s: unknown record type: %x\n", d->opd_obd->obd_name,
946                        rec->lrh_type);
947                 /* treat "unknown record type" as "invalid" */
948                 rc = 1;
949                 break;
950         }
951
952         /* For all kinds of records, not matter successful or not,
953          * we should decrease changes and bump last_processed_id.
954          */
955         if (d->opd_sync_prev_done) {
956                 LASSERT(atomic_read(&d->opd_sync_changes) > 0);
957                 atomic_dec(&d->opd_sync_changes);
958                 wake_up(&d->opd_sync_barrier_waitq);
959         }
960         atomic64_inc(&d->opd_sync_processed_recs);
961         if (rc != 0) {
962                 atomic_dec(&d->opd_sync_rpcs_in_flight);
963                 atomic_dec(&d->opd_sync_rpcs_in_progress);
964         }
965
966         CDEBUG(D_OTHER, "%s: %d in flight, %d in progress\n",
967                d->opd_obd->obd_name, atomic_read(&d->opd_sync_rpcs_in_flight),
968                atomic_read(&d->opd_sync_rpcs_in_progress));
969
970         /* Delete the invalid record */
971         if (rc == 1) {
972                 rc = llog_cat_cancel_records(env, cathandle, 1, &cookie);
973                 if (rc != 0)
974                         CERROR("%s: can't delete invalid record: "
975                                "fid = "DFID", rec_id = %u, rc = %d\n",
976                                d->opd_obd->obd_name,
977                                PFID(lu_object_fid(&cathandle->lgh_obj->do_lu)),
978                                rec->lrh_id, rc);
979         }
980
981         CDEBUG(D_HA, "found record %x, %d, idx %u, id %u\n",
982                rec->lrh_type, rec->lrh_len, rec->lrh_index, rec->lrh_id);
983
984         RETURN_EXIT;
985 }
986
987 /**
988  * Cancel llog records for the committed changes.
989  *
990  * The function walks through the list of the committed RPCs and cancels
991  * corresponding llog records. see osp_sync_request_commit_cb() for the
992  * details.
993  *
994  * \param[in] env       LU environment provided by the caller
995  * \param[in] d         OSP device
996  */
997 static void osp_sync_process_committed(const struct lu_env *env,
998                                        struct osp_device *d)
999 {
1000         struct obd_device       *obd = d->opd_obd;
1001         struct obd_import       *imp = obd->u.cli.cl_import;
1002         struct ost_body         *body;
1003         struct ptlrpc_request   *req;
1004         struct llog_ctxt        *ctxt;
1005         struct llog_handle      *llh;
1006         struct list_head         list;
1007         int                      rc, done = 0;
1008
1009         ENTRY;
1010
1011         if (list_empty(&d->opd_sync_committed_there))
1012                 return;
1013
1014         /*
1015          * if current status is -ENOSPC (lack of free space on OST)
1016          * then we should poll OST immediately once object destroy
1017          * is committed.
1018          * notice: we do this upon commit as well because some backends
1019          * (like DMU) do not release space right away.
1020          */
1021         if (d->opd_pre != NULL && unlikely(d->opd_pre_status == -ENOSPC))
1022                 osp_statfs_need_now(d);
1023
1024         /*
1025          * now cancel them all
1026          * XXX: can we improve this using some batching?
1027          *      with batch RPC that'll happen automatically?
1028          * XXX: can we store ctxt in lod_device and save few cycles ?
1029          */
1030         ctxt = llog_get_context(obd, LLOG_MDS_OST_ORIG_CTXT);
1031         LASSERT(ctxt);
1032
1033         llh = ctxt->loc_handle;
1034         LASSERT(llh);
1035
1036         INIT_LIST_HEAD(&list);
1037         spin_lock(&d->opd_sync_lock);
1038         list_splice(&d->opd_sync_committed_there, &list);
1039         INIT_LIST_HEAD(&d->opd_sync_committed_there);
1040         spin_unlock(&d->opd_sync_lock);
1041
1042         while (!list_empty(&list)) {
1043                 struct osp_job_req_args *jra;
1044
1045                 jra = list_entry(list.next, struct osp_job_req_args,
1046                                  jra_committed_link);
1047                 LASSERT(jra->jra_magic == OSP_JOB_MAGIC);
1048                 list_del_init(&jra->jra_committed_link);
1049
1050                 req = container_of((void *)jra, struct ptlrpc_request,
1051                                    rq_async_args);
1052                 body = req_capsule_client_get(&req->rq_pill,
1053                                               &RMF_OST_BODY);
1054                 LASSERT(body);
1055                 /* import can be closing, thus all commit cb's are
1056                  * called we can check committness directly */
1057                 if (req->rq_import_generation == imp->imp_generation) {
1058                         rc = llog_cat_cancel_records(env, llh, 1,
1059                                                      &jra->jra_lcookie);
1060                         if (rc)
1061                                 CERROR("%s: can't cancel record: %d\n",
1062                                        obd->obd_name, rc);
1063                 } else {
1064                         DEBUG_REQ(D_OTHER, req, "imp_committed = %llu",
1065                                   imp->imp_peer_committed_transno);
1066                 }
1067                 ptlrpc_req_finished(req);
1068                 done++;
1069         }
1070
1071         llog_ctxt_put(ctxt);
1072
1073         LASSERT(atomic_read(&d->opd_sync_rpcs_in_progress) >= done);
1074         atomic_sub(done, &d->opd_sync_rpcs_in_progress);
1075         CDEBUG(D_OTHER, "%s: %d in flight, %d in progress\n",
1076                d->opd_obd->obd_name, atomic_read(&d->opd_sync_rpcs_in_flight),
1077                atomic_read(&d->opd_sync_rpcs_in_progress));
1078
1079         osp_sync_check_for_work(d);
1080
1081         /* wake up the thread if requested to stop:
1082          * it might be waiting for in-progress to complete */
1083         if (unlikely(osp_sync_running(d) == 0))
1084                 wake_up(&d->opd_sync_waitq);
1085
1086         EXIT;
1087 }
1088
1089 /**
1090  * The core of the syncing mechanism.
1091  *
1092  * This is a callback called by the llog processing function. Essentially it
1093  * suspends llog processing until there is a record to process (it's supposed
1094  * to be committed locally). The function handles RPCs committed by the target
1095  * and cancels corresponding llog records.
1096  *
1097  * \param[in] env       LU environment provided by the caller
1098  * \param[in] llh       llog handle we're processing
1099  * \param[in] rec       current llog record
1100  * \param[in] data      callback data containing a pointer to the device
1101  *
1102  * \retval 0                    to ask the caller (llog_process()) to continue
1103  * \retval LLOG_PROC_BREAK      to ask the caller to break
1104  */
1105 static int osp_sync_process_queues(const struct lu_env *env,
1106                                    struct llog_handle *llh,
1107                                    struct llog_rec_hdr *rec,
1108                                    void *data)
1109 {
1110         struct osp_device       *d = data;
1111
1112         do {
1113                 struct l_wait_info lwi = { 0 };
1114
1115                 if (!osp_sync_running(d)) {
1116                         CDEBUG(D_HA, "stop llog processing\n");
1117                         return LLOG_PROC_BREAK;
1118                 }
1119
1120                 /* process requests committed by OST */
1121                 osp_sync_process_committed(env, d);
1122
1123                 /* if we there are changes to be processed and we have
1124                  * resources for this ... do now */
1125                 if (osp_sync_can_process_new(d, rec)) {
1126                         if (llh == NULL) {
1127                                 /* ask llog for another record */
1128                                 CDEBUG(D_HA, "%u changes, %u in progress,"
1129                                      " %u in flight\n",
1130                                      atomic_read(&d->opd_sync_changes),
1131                                      atomic_read(&d->opd_sync_rpcs_in_progress),
1132                                      atomic_read(&d->opd_sync_rpcs_in_flight));
1133                                 return 0;
1134                         }
1135                         osp_sync_process_record(env, d, llh, rec);
1136                         llh = NULL;
1137                         rec = NULL;
1138                 }
1139
1140                 l_wait_event(d->opd_sync_waitq,
1141                              !osp_sync_running(d) ||
1142                              osp_sync_can_process_new(d, rec) ||
1143                              !list_empty(&d->opd_sync_committed_there),
1144                              &lwi);
1145         } while (1);
1146 }
1147
1148 /**
1149  * OSP sync thread.
1150  *
1151  * This thread runs llog_cat_process() scanner calling our callback
1152  * to process llog records. in the callback we implement tricky
1153  * state machine as we don't want to start scanning of the llog again
1154  * and again, also we don't want to process too many records and send
1155  * too many RPCs a time. so, depending on current load (num of changes
1156  * being synced to OST) the callback can suspend awaiting for some
1157  * new conditions, like syncs completed.
1158  *
1159  * In order to process llog records left by previous boots and to allow
1160  * llog_process_thread() to find something (otherwise it'd just exit
1161  * immediately) we add a special GENERATATION record on each boot.
1162  *
1163  * \param[in] _arg      a pointer to thread's arguments
1164  *
1165  * \retval 0            on success
1166  * \retval negative     negated errno on error
1167  */
1168 static int osp_sync_thread(void *_arg)
1169 {
1170         struct osp_device       *d = _arg;
1171         struct ptlrpc_thread    *thread = &d->opd_sync_thread;
1172         struct l_wait_info       lwi = { 0 };
1173         struct llog_ctxt        *ctxt;
1174         struct obd_device       *obd = d->opd_obd;
1175         struct llog_handle      *llh;
1176         struct lu_env            env;
1177         int                      rc, count;
1178         bool                     wrapped;
1179
1180         ENTRY;
1181
1182         rc = lu_env_init(&env, LCT_LOCAL);
1183         if (rc) {
1184                 CERROR("%s: can't initialize env: rc = %d\n",
1185                        obd->obd_name, rc);
1186
1187                 spin_lock(&d->opd_sync_lock);
1188                 thread->t_flags = SVC_STOPPED;
1189                 spin_unlock(&d->opd_sync_lock);
1190                 wake_up(&thread->t_ctl_waitq);
1191
1192                 RETURN(rc);
1193         }
1194
1195         spin_lock(&d->opd_sync_lock);
1196         thread->t_flags = SVC_RUNNING;
1197         spin_unlock(&d->opd_sync_lock);
1198         wake_up(&thread->t_ctl_waitq);
1199
1200         ctxt = llog_get_context(obd, LLOG_MDS_OST_ORIG_CTXT);
1201         if (ctxt == NULL) {
1202                 CERROR("can't get appropriate context\n");
1203                 GOTO(out, rc = -EINVAL);
1204         }
1205
1206         llh = ctxt->loc_handle;
1207         if (llh == NULL) {
1208                 CERROR("can't get llh\n");
1209                 llog_ctxt_put(ctxt);
1210                 GOTO(out, rc = -EINVAL);
1211         }
1212
1213         /*
1214          * Catalog processing stops when it processed last catalog record
1215          * with index equal to the end of catalog bitmap. Or if it is wrapped,
1216          * processing stops with index equal to the lgh_last_idx. We need to
1217          * continue processing.
1218          */
1219         d->opd_sync_last_catalog_idx = 0;
1220         do {
1221                 int     size;
1222
1223                 wrapped = (llh->lgh_hdr->llh_cat_idx >= llh->lgh_last_idx &&
1224                            llh->lgh_hdr->llh_count > 1);
1225
1226                 rc = llog_cat_process(&env, llh, osp_sync_process_queues, d,
1227                                       d->opd_sync_last_catalog_idx, 0);
1228
1229                 size = OBD_FAIL_PRECHECK(OBD_FAIL_CAT_RECORDS) ?
1230                        cfs_fail_val : (LLOG_HDR_BITMAP_SIZE(llh->lgh_hdr) - 1);
1231                 /* processing reaches catalog bottom */
1232                 if (d->opd_sync_last_catalog_idx == size)
1233                         d->opd_sync_last_catalog_idx = 0;
1234                 else if (wrapped)
1235                         /* If catalog is wrapped we can`t predict last index of
1236                          * processing because lgh_last_idx could be changed.
1237                          * Starting form the next one */
1238                         d->opd_sync_last_catalog_idx++;
1239
1240         } while (rc == 0 && (wrapped || d->opd_sync_last_catalog_idx == 0));
1241
1242         if (rc < 0) {
1243                 CERROR("%s: llog process with osp_sync_process_queues "
1244                        "failed: %d\n", d->opd_obd->obd_name, rc);
1245                 GOTO(close, rc);
1246         }
1247         LASSERTF(rc == 0 || rc == LLOG_PROC_BREAK,
1248                  "%u changes, %u in progress, %u in flight: %d\n",
1249                  atomic_read(&d->opd_sync_changes),
1250                  atomic_read(&d->opd_sync_rpcs_in_progress),
1251                  atomic_read(&d->opd_sync_rpcs_in_flight), rc);
1252
1253         /* we don't expect llog_process_thread() to exit till umount */
1254         LASSERTF(thread->t_flags != SVC_RUNNING,
1255                  "%u changes, %u in progress, %u in flight\n",
1256                  atomic_read(&d->opd_sync_changes),
1257                  atomic_read(&d->opd_sync_rpcs_in_progress),
1258                  atomic_read(&d->opd_sync_rpcs_in_flight));
1259
1260         /* wait till all the requests are completed */
1261         count = 0;
1262         while (atomic_read(&d->opd_sync_rpcs_in_progress) > 0) {
1263                 osp_sync_process_committed(&env, d);
1264
1265                 lwi = LWI_TIMEOUT(cfs_time_seconds(5), NULL, NULL);
1266                 rc = l_wait_event(d->opd_sync_waitq,
1267                                 atomic_read(&d->opd_sync_rpcs_in_progress) == 0,
1268                                   &lwi);
1269                 if (rc == -ETIMEDOUT)
1270                         count++;
1271                 LASSERTF(count < 10, "%s: %d %d %sempty\n",
1272                          d->opd_obd->obd_name,
1273                          atomic_read(&d->opd_sync_rpcs_in_progress),
1274                          atomic_read(&d->opd_sync_rpcs_in_flight),
1275                          list_empty(&d->opd_sync_committed_there) ? "" : "!");
1276
1277         }
1278
1279 close:
1280         llog_cat_close(&env, llh);
1281         rc = llog_cleanup(&env, ctxt);
1282         if (rc)
1283                 CERROR("can't cleanup llog: %d\n", rc);
1284 out:
1285         LASSERTF(atomic_read(&d->opd_sync_rpcs_in_progress) == 0,
1286                  "%s: %d %d %sempty\n", d->opd_obd->obd_name,
1287                  atomic_read(&d->opd_sync_rpcs_in_progress),
1288                  atomic_read(&d->opd_sync_rpcs_in_flight),
1289                  list_empty(&d->opd_sync_committed_there) ? "" : "!");
1290
1291         thread->t_flags = SVC_STOPPED;
1292
1293         wake_up(&thread->t_ctl_waitq);
1294
1295         lu_env_fini(&env);
1296
1297         RETURN(0);
1298 }
1299
1300 /**
1301  * Initialize llog.
1302  *
1303  * Initializes the llog. Specific llog to be used depends on the type of the
1304  * target OSP represents (OST or MDT). The function adds appends a new llog
1305  * record to mark the place where the records associated with this boot
1306  * start.
1307  *
1308  * \param[in] env       LU environment provided by the caller
1309  * \param[in] d         OSP device
1310  *
1311  * \retval 0            on success
1312  * \retval negative     negated errno on error
1313  */
1314 static int osp_sync_llog_init(const struct lu_env *env, struct osp_device *d)
1315 {
1316         struct osp_thread_info  *osi = osp_env_info(env);
1317         struct lu_fid           *fid = &osi->osi_fid;
1318         struct llog_handle      *lgh = NULL;
1319         struct obd_device       *obd = d->opd_obd;
1320         struct llog_ctxt        *ctxt;
1321         int                     rc;
1322
1323         ENTRY;
1324
1325         LASSERT(obd);
1326
1327         /*
1328          * open llog corresponding to our OST
1329          */
1330         OBD_SET_CTXT_MAGIC(&obd->obd_lvfs_ctxt);
1331         obd->obd_lvfs_ctxt.dt = d->opd_storage;
1332
1333         lu_local_obj_fid(fid, LLOG_CATALOGS_OID);
1334
1335         rc = llog_osd_get_cat_list(env, d->opd_storage, d->opd_index, 1,
1336                                    &osi->osi_cid, fid);
1337         if (rc < 0) {
1338                 if (rc != -EFAULT) {
1339                         CERROR("%s: can't get id from catalogs: rc = %d\n",
1340                                obd->obd_name, rc);
1341                         RETURN(rc);
1342                 }
1343
1344                 /* After sparse OST indices is supported, the CATALOG file
1345                  * may become a sparse file that results in failure on
1346                  * reading. Skip this error as the llog will be created
1347                  * later */
1348                 memset(&osi->osi_cid, 0, sizeof(osi->osi_cid));
1349                 rc = 0;
1350         }
1351
1352         CDEBUG(D_INFO, "%s: Init llog for %d - catid "DFID":%x\n",
1353                obd->obd_name, d->opd_index,
1354                PFID(&osi->osi_cid.lci_logid.lgl_oi.oi_fid),
1355                osi->osi_cid.lci_logid.lgl_ogen);
1356
1357         rc = llog_setup(env, obd, &obd->obd_olg, LLOG_MDS_OST_ORIG_CTXT,
1358                         d->opd_storage->dd_lu_dev.ld_obd,
1359                         &osp_mds_ost_orig_logops);
1360         if (rc)
1361                 RETURN(rc);
1362
1363         ctxt = llog_get_context(obd, LLOG_MDS_OST_ORIG_CTXT);
1364         LASSERT(ctxt);
1365
1366         if (likely(logid_id(&osi->osi_cid.lci_logid) != 0)) {
1367                 rc = llog_open(env, ctxt, &lgh, &osi->osi_cid.lci_logid, NULL,
1368                                LLOG_OPEN_EXISTS);
1369                 /* re-create llog if it is missing */
1370                 if (rc == -ENOENT)
1371                         logid_set_id(&osi->osi_cid.lci_logid, 0);
1372                 else if (rc < 0)
1373                         GOTO(out_cleanup, rc);
1374         }
1375
1376         if (unlikely(logid_id(&osi->osi_cid.lci_logid) == 0)) {
1377                 rc = llog_open_create(env, ctxt, &lgh, NULL, NULL);
1378                 if (rc < 0)
1379                         GOTO(out_cleanup, rc);
1380                 osi->osi_cid.lci_logid = lgh->lgh_id;
1381         }
1382
1383         LASSERT(lgh != NULL);
1384         ctxt->loc_handle = lgh;
1385
1386         rc = llog_init_handle(env, lgh, LLOG_F_IS_CAT, NULL);
1387         if (rc)
1388                 GOTO(out_close, rc);
1389
1390         rc = llog_osd_put_cat_list(env, d->opd_storage, d->opd_index, 1,
1391                                    &osi->osi_cid, fid);
1392         if (rc)
1393                 GOTO(out_close, rc);
1394
1395         /*
1396          * put a mark in the llog till which we'll be processing
1397          * old records restless
1398          */
1399         d->opd_sync_generation.mnt_cnt = cfs_time_current();
1400         d->opd_sync_generation.conn_cnt = cfs_time_current();
1401
1402         osi->osi_hdr.lrh_type = LLOG_GEN_REC;
1403         osi->osi_hdr.lrh_len = sizeof(osi->osi_gen);
1404
1405         memcpy(&osi->osi_gen.lgr_gen, &d->opd_sync_generation,
1406                sizeof(osi->osi_gen.lgr_gen));
1407
1408         rc = llog_cat_add(env, lgh, &osi->osi_gen.lgr_hdr, &osi->osi_cookie);
1409         if (rc < 0)
1410                 GOTO(out_close, rc);
1411         llog_ctxt_put(ctxt);
1412         RETURN(0);
1413 out_close:
1414         llog_cat_close(env, lgh);
1415 out_cleanup:
1416         llog_cleanup(env, ctxt);
1417         RETURN(rc);
1418 }
1419
1420 /**
1421  * Cleanup llog used for syncing.
1422  *
1423  * Closes and cleanups the llog. The function is called when the device is
1424  * shutting down.
1425  *
1426  * \param[in] env       LU environment provided by the caller
1427  * \param[in] d         OSP device
1428  */
1429 static void osp_sync_llog_fini(const struct lu_env *env, struct osp_device *d)
1430 {
1431         struct llog_ctxt *ctxt;
1432
1433         ctxt = llog_get_context(d->opd_obd, LLOG_MDS_OST_ORIG_CTXT);
1434         if (ctxt) {
1435                 llog_cat_close(env, ctxt->loc_handle);
1436                 llog_cleanup(env, ctxt);
1437         }
1438 }
1439
1440 /**
1441  * Initialization of the sync component of OSP.
1442  *
1443  * Initializes the llog and starts a new thread to handle the changes to
1444  * the remote target (OST or MDT).
1445  *
1446  * \param[in] env       LU environment provided by the caller
1447  * \param[in] d         OSP device
1448  *
1449  * \retval 0            on success
1450  * \retval negative     negated errno on error
1451  */
1452 int osp_sync_init(const struct lu_env *env, struct osp_device *d)
1453 {
1454         struct l_wait_info       lwi = { 0 };
1455         struct task_struct      *task;
1456         int                      rc;
1457
1458         ENTRY;
1459
1460         d->opd_sync_max_rpcs_in_flight = OSP_MAX_RPCS_IN_FLIGHT;
1461         d->opd_sync_max_rpcs_in_progress = OSP_MAX_RPCS_IN_PROGRESS;
1462         spin_lock_init(&d->opd_sync_lock);
1463         init_waitqueue_head(&d->opd_sync_waitq);
1464         init_waitqueue_head(&d->opd_sync_barrier_waitq);
1465         thread_set_flags(&d->opd_sync_thread, SVC_INIT);
1466         init_waitqueue_head(&d->opd_sync_thread.t_ctl_waitq);
1467         INIT_LIST_HEAD(&d->opd_sync_in_flight_list);
1468         INIT_LIST_HEAD(&d->opd_sync_committed_there);
1469
1470         if (d->opd_storage->dd_rdonly)
1471                 RETURN(0);
1472
1473         /*
1474          * initialize llog storing changes
1475          */
1476         rc = osp_sync_llog_init(env, d);
1477         if (rc) {
1478                 CERROR("%s: can't initialize llog: rc = %d\n",
1479                        d->opd_obd->obd_name, rc);
1480                 GOTO(err_id, rc);
1481         }
1482
1483         /*
1484          * Start synchronization thread
1485          */
1486         task = kthread_run(osp_sync_thread, d, "osp-syn-%u-%u",
1487                            d->opd_index, d->opd_group);
1488         if (IS_ERR(task)) {
1489                 rc = PTR_ERR(task);
1490                 CERROR("%s: cannot start sync thread: rc = %d\n",
1491                        d->opd_obd->obd_name, rc);
1492                 GOTO(err_llog, rc);
1493         }
1494
1495         l_wait_event(d->opd_sync_thread.t_ctl_waitq,
1496                      osp_sync_running(d) || osp_sync_stopped(d), &lwi);
1497
1498         RETURN(0);
1499 err_llog:
1500         osp_sync_llog_fini(env, d);
1501 err_id:
1502         return rc;
1503 }
1504
1505 /**
1506  * Stop the syncing thread.
1507  *
1508  * Asks the syncing thread to stop and wait until it's stopped.
1509  *
1510  * \param[in] d         OSP device
1511  *
1512  * \retval              0
1513  */
1514 int osp_sync_fini(struct osp_device *d)
1515 {
1516         struct ptlrpc_thread *thread = &d->opd_sync_thread;
1517
1518         ENTRY;
1519
1520         if (!thread_is_init(thread) && !thread_is_stopped(thread)) {
1521                 thread->t_flags = SVC_STOPPING;
1522                 wake_up(&d->opd_sync_waitq);
1523                 wait_event(thread->t_ctl_waitq, thread_is_stopped(thread));
1524         }
1525
1526         RETURN(0);
1527 }
1528
1529 struct osp_last_committed_cb {
1530         struct dt_txn_commit_cb  ospc_cb;
1531         struct osp_device       *ospc_dev;
1532         __u64                    ospc_transno;
1533 };
1534
1535 void osp_sync_local_commit_cb(struct lu_env *env, struct thandle *th,
1536                               struct dt_txn_commit_cb *dcb, int err)
1537 {
1538         struct osp_last_committed_cb    *cb;
1539         struct osp_device               *d;
1540
1541         cb = container_of0(dcb, struct osp_last_committed_cb, ospc_cb);
1542         d = cb->ospc_dev;
1543
1544         CDEBUG(D_HA, "%s: %llu committed\n", d->opd_obd->obd_name,
1545                cb->ospc_transno);
1546
1547         spin_lock(&d->opd_sync_lock);
1548         if (cb->ospc_transno > d->opd_sync_last_committed_id)
1549                 d->opd_sync_last_committed_id = cb->ospc_transno;
1550         spin_unlock(&d->opd_sync_lock);
1551
1552         osp_sync_check_for_work(d);
1553         lu_device_put(osp2lu_dev(d));
1554         if (atomic_dec_and_test(&d->opd_commits_registered))
1555                 wake_up(&d->opd_sync_waitq);
1556
1557         OBD_FREE_PTR(cb);
1558 }
1559
1560 static int osp_sync_add_commit_cb(const struct lu_env *env,
1561                                   struct osp_device *d, struct thandle *th)
1562 {
1563         struct osp_last_committed_cb    *cb;
1564         struct dt_txn_commit_cb         *dcb;
1565         int                              rc = 0;
1566
1567         OBD_ALLOC_PTR(cb);
1568         if (cb == NULL)
1569                 return -ENOMEM;
1570         cb->ospc_dev = d;
1571         dcb = &cb->ospc_cb;
1572         dcb->dcb_func = osp_sync_local_commit_cb;
1573         spin_lock(&d->opd_sync_lock);
1574         cb->ospc_transno = ++d->opd_sync_last_used_id;
1575         spin_unlock(&d->opd_sync_lock);
1576
1577         rc = dt_trans_cb_add(th, dcb);
1578         CDEBUG(D_HA, "%s: add commit cb at %llu, next at %llu, rc = %d\n",
1579                d->opd_obd->obd_name, (unsigned long long) cfs_time_current(),
1580                (unsigned long long) d->opd_sync_next_commit_cb, rc);
1581
1582         if (likely(rc == 0)) {
1583                 lu_device_get(osp2lu_dev(d));
1584                 atomic_inc(&d->opd_commits_registered);
1585         } else
1586                 OBD_FREE_PTR(cb);
1587
1588         return rc;
1589 }
1590
1591 /* add the commit callback every second */
1592 int osp_sync_add_commit_cb_1s(const struct lu_env *env, struct osp_device *d,
1593                               struct thandle *th)
1594 {
1595         bool add = false;
1596
1597         /* fast path */
1598         if (cfs_time_before(cfs_time_current(), d->opd_sync_next_commit_cb))
1599                 return 0;
1600
1601         spin_lock(&d->opd_sync_lock);
1602         if (cfs_time_aftereq(cfs_time_current(), d->opd_sync_next_commit_cb)) {
1603                 add = true;
1604                 d->opd_sync_next_commit_cb = cfs_time_shift(1);
1605         }
1606         spin_unlock(&d->opd_sync_lock);
1607
1608         if (!add)
1609                 return 0;
1610
1611         return osp_sync_add_commit_cb(env, d, th);
1612 }
1613
1614 /*
1615  * generate an empty transaction and hook the commit callback in
1616  * then force transaction commit
1617  */
1618 void osp_sync_force(const struct lu_env *env, struct osp_device *d)
1619 {
1620         struct thandle *th;
1621         int rc;
1622
1623         th = dt_trans_create(env, d->opd_storage);
1624         if (IS_ERR(th)) {
1625                 CERROR("%s: can't sync\n", d->opd_obd->obd_name);
1626                 return;
1627         }
1628         rc = dt_trans_start_local(env, d->opd_storage, th);
1629         if (rc == 0) {
1630                 CDEBUG(D_OTHER, "%s: sync forced, %d changes\n",
1631                        d->opd_obd->obd_name,
1632                        atomic_read(&d->opd_sync_changes));
1633                 rc = osp_sync_add_commit_cb(env, d, th);
1634                 dt_trans_stop(env, d->opd_storage, th);
1635         }
1636
1637         dt_commit_async(env, d->opd_storage);
1638 }