Whamcloud - gitweb
b21d5afac577abee7e8f6fe6b490ba1041080964
[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                          enum 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, enum 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                  enum 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                                                enum ost_cmd 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                 /* flush all pending records ASAP */
921                 osp_sync_force(env, d);
922
923                 RETURN_EXIT;
924         }
925
926         /*
927          * now we prepare and fill requests to OST, put them on the queue
928          * and fire after next commit callback
929          */
930
931         /* notice we increment counters before sending RPC, to be consistent
932          * in RPC interpret callback which may happen very quickly */
933         atomic_inc(&d->opd_sync_rpcs_in_flight);
934         atomic_inc(&d->opd_sync_rpcs_in_progress);
935
936         switch (rec->lrh_type) {
937         /* case MDS_UNLINK_REC is kept for compatibility */
938         case MDS_UNLINK_REC:
939                 rc = osp_sync_new_unlink_job(d, llh, rec);
940                 break;
941         case MDS_UNLINK64_REC:
942                 rc = osp_sync_new_unlink64_job(d, llh, rec);
943                 break;
944         case MDS_SETATTR64_REC:
945                 rc = osp_sync_new_setattr_job(d, llh, rec);
946                 break;
947         default:
948                 CERROR("%s: unknown record type: %x\n", d->opd_obd->obd_name,
949                        rec->lrh_type);
950                 /* treat "unknown record type" as "invalid" */
951                 rc = 1;
952                 break;
953         }
954
955         /* For all kinds of records, not matter successful or not,
956          * we should decrease changes and bump last_processed_id.
957          */
958         if (d->opd_sync_prev_done) {
959                 LASSERT(atomic_read(&d->opd_sync_changes) > 0);
960                 atomic_dec(&d->opd_sync_changes);
961                 wake_up(&d->opd_sync_barrier_waitq);
962         }
963         atomic64_inc(&d->opd_sync_processed_recs);
964         if (rc != 0) {
965                 atomic_dec(&d->opd_sync_rpcs_in_flight);
966                 atomic_dec(&d->opd_sync_rpcs_in_progress);
967         }
968
969         CDEBUG(D_OTHER, "%s: %d in flight, %d in progress\n",
970                d->opd_obd->obd_name, atomic_read(&d->opd_sync_rpcs_in_flight),
971                atomic_read(&d->opd_sync_rpcs_in_progress));
972
973         /* Delete the invalid record */
974         if (rc == 1) {
975                 rc = llog_cat_cancel_records(env, cathandle, 1, &cookie);
976                 if (rc != 0)
977                         CERROR("%s: can't delete invalid record: "
978                                "fid = "DFID", rec_id = %u, rc = %d\n",
979                                d->opd_obd->obd_name,
980                                PFID(lu_object_fid(&cathandle->lgh_obj->do_lu)),
981                                rec->lrh_id, rc);
982         }
983
984         CDEBUG(D_HA, "found record %x, %d, idx %u, id %u\n",
985                rec->lrh_type, rec->lrh_len, rec->lrh_index, rec->lrh_id);
986
987         RETURN_EXIT;
988 }
989
990 /**
991  * Cancel llog records for the committed changes.
992  *
993  * The function walks through the list of the committed RPCs and cancels
994  * corresponding llog records. see osp_sync_request_commit_cb() for the
995  * details.
996  *
997  * \param[in] env       LU environment provided by the caller
998  * \param[in] d         OSP device
999  */
1000 static void osp_sync_process_committed(const struct lu_env *env,
1001                                        struct osp_device *d)
1002 {
1003         struct obd_device       *obd = d->opd_obd;
1004         struct obd_import       *imp = obd->u.cli.cl_import;
1005         struct ost_body         *body;
1006         struct ptlrpc_request   *req;
1007         struct llog_ctxt        *ctxt;
1008         struct llog_handle      *llh;
1009         struct list_head         list;
1010         int                      rc, done = 0;
1011
1012         ENTRY;
1013
1014         if (list_empty(&d->opd_sync_committed_there))
1015                 return;
1016
1017         /*
1018          * if current status is -ENOSPC (lack of free space on OST)
1019          * then we should poll OST immediately once object destroy
1020          * is committed.
1021          * notice: we do this upon commit as well because some backends
1022          * (like DMU) do not release space right away.
1023          */
1024         if (d->opd_pre != NULL && unlikely(d->opd_pre_status == -ENOSPC))
1025                 osp_statfs_need_now(d);
1026
1027         /*
1028          * now cancel them all
1029          * XXX: can we improve this using some batching?
1030          *      with batch RPC that'll happen automatically?
1031          * XXX: can we store ctxt in lod_device and save few cycles ?
1032          */
1033         ctxt = llog_get_context(obd, LLOG_MDS_OST_ORIG_CTXT);
1034         LASSERT(ctxt);
1035
1036         llh = ctxt->loc_handle;
1037         LASSERT(llh);
1038
1039         INIT_LIST_HEAD(&list);
1040         spin_lock(&d->opd_sync_lock);
1041         list_splice(&d->opd_sync_committed_there, &list);
1042         INIT_LIST_HEAD(&d->opd_sync_committed_there);
1043         spin_unlock(&d->opd_sync_lock);
1044
1045         while (!list_empty(&list)) {
1046                 struct osp_job_req_args *jra;
1047
1048                 jra = list_entry(list.next, struct osp_job_req_args,
1049                                  jra_committed_link);
1050                 LASSERT(jra->jra_magic == OSP_JOB_MAGIC);
1051                 list_del_init(&jra->jra_committed_link);
1052
1053                 req = container_of((void *)jra, struct ptlrpc_request,
1054                                    rq_async_args);
1055                 body = req_capsule_client_get(&req->rq_pill,
1056                                               &RMF_OST_BODY);
1057                 LASSERT(body);
1058                 /* import can be closing, thus all commit cb's are
1059                  * called we can check committness directly */
1060                 if (req->rq_import_generation == imp->imp_generation) {
1061                         rc = llog_cat_cancel_records(env, llh, 1,
1062                                                      &jra->jra_lcookie);
1063                         if (rc)
1064                                 CERROR("%s: can't cancel record: %d\n",
1065                                        obd->obd_name, rc);
1066                 } else {
1067                         DEBUG_REQ(D_OTHER, req, "imp_committed = %llu",
1068                                   imp->imp_peer_committed_transno);
1069                 }
1070                 ptlrpc_req_finished(req);
1071                 done++;
1072         }
1073
1074         llog_ctxt_put(ctxt);
1075
1076         LASSERT(atomic_read(&d->opd_sync_rpcs_in_progress) >= done);
1077         atomic_sub(done, &d->opd_sync_rpcs_in_progress);
1078         CDEBUG(D_OTHER, "%s: %d in flight, %d in progress\n",
1079                d->opd_obd->obd_name, atomic_read(&d->opd_sync_rpcs_in_flight),
1080                atomic_read(&d->opd_sync_rpcs_in_progress));
1081
1082         osp_sync_check_for_work(d);
1083
1084         /* wake up the thread if requested to stop:
1085          * it might be waiting for in-progress to complete */
1086         if (unlikely(osp_sync_running(d) == 0))
1087                 wake_up(&d->opd_sync_waitq);
1088
1089         EXIT;
1090 }
1091
1092 /**
1093  * The core of the syncing mechanism.
1094  *
1095  * This is a callback called by the llog processing function. Essentially it
1096  * suspends llog processing until there is a record to process (it's supposed
1097  * to be committed locally). The function handles RPCs committed by the target
1098  * and cancels corresponding llog records.
1099  *
1100  * \param[in] env       LU environment provided by the caller
1101  * \param[in] llh       llog handle we're processing
1102  * \param[in] rec       current llog record
1103  * \param[in] data      callback data containing a pointer to the device
1104  *
1105  * \retval 0                    to ask the caller (llog_process()) to continue
1106  * \retval LLOG_PROC_BREAK      to ask the caller to break
1107  */
1108 static int osp_sync_process_queues(const struct lu_env *env,
1109                                    struct llog_handle *llh,
1110                                    struct llog_rec_hdr *rec,
1111                                    void *data)
1112 {
1113         struct osp_device       *d = data;
1114
1115         do {
1116                 struct l_wait_info lwi = { 0 };
1117
1118                 if (!osp_sync_running(d)) {
1119                         CDEBUG(D_HA, "stop llog processing\n");
1120                         return LLOG_PROC_BREAK;
1121                 }
1122
1123                 /* process requests committed by OST */
1124                 osp_sync_process_committed(env, d);
1125
1126                 /* if we there are changes to be processed and we have
1127                  * resources for this ... do now */
1128                 if (osp_sync_can_process_new(d, rec)) {
1129                         if (llh == NULL) {
1130                                 /* ask llog for another record */
1131                                 CDEBUG(D_HA, "%u changes, %u in progress,"
1132                                      " %u in flight\n",
1133                                      atomic_read(&d->opd_sync_changes),
1134                                      atomic_read(&d->opd_sync_rpcs_in_progress),
1135                                      atomic_read(&d->opd_sync_rpcs_in_flight));
1136                                 return 0;
1137                         }
1138                         osp_sync_process_record(env, d, llh, rec);
1139                         llh = NULL;
1140                         rec = NULL;
1141                 }
1142
1143                 l_wait_event(d->opd_sync_waitq,
1144                              !osp_sync_running(d) ||
1145                              osp_sync_can_process_new(d, rec) ||
1146                              !list_empty(&d->opd_sync_committed_there),
1147                              &lwi);
1148         } while (1);
1149 }
1150
1151 /**
1152  * OSP sync thread.
1153  *
1154  * This thread runs llog_cat_process() scanner calling our callback
1155  * to process llog records. in the callback we implement tricky
1156  * state machine as we don't want to start scanning of the llog again
1157  * and again, also we don't want to process too many records and send
1158  * too many RPCs a time. so, depending on current load (num of changes
1159  * being synced to OST) the callback can suspend awaiting for some
1160  * new conditions, like syncs completed.
1161  *
1162  * In order to process llog records left by previous boots and to allow
1163  * llog_process_thread() to find something (otherwise it'd just exit
1164  * immediately) we add a special GENERATATION record on each boot.
1165  *
1166  * \param[in] _arg      a pointer to thread's arguments
1167  *
1168  * \retval 0            on success
1169  * \retval negative     negated errno on error
1170  */
1171 static int osp_sync_thread(void *_arg)
1172 {
1173         struct osp_device       *d = _arg;
1174         struct ptlrpc_thread    *thread = &d->opd_sync_thread;
1175         struct l_wait_info       lwi = { 0 };
1176         struct llog_ctxt        *ctxt;
1177         struct obd_device       *obd = d->opd_obd;
1178         struct llog_handle      *llh;
1179         struct lu_env            env;
1180         int                      rc, count;
1181         bool                     wrapped;
1182
1183         ENTRY;
1184
1185         rc = lu_env_init(&env, LCT_LOCAL);
1186         if (rc) {
1187                 CERROR("%s: can't initialize env: rc = %d\n",
1188                        obd->obd_name, rc);
1189
1190                 spin_lock(&d->opd_sync_lock);
1191                 thread->t_flags = SVC_STOPPED;
1192                 spin_unlock(&d->opd_sync_lock);
1193                 wake_up(&thread->t_ctl_waitq);
1194
1195                 RETURN(rc);
1196         }
1197
1198         spin_lock(&d->opd_sync_lock);
1199         thread->t_flags = SVC_RUNNING;
1200         spin_unlock(&d->opd_sync_lock);
1201         wake_up(&thread->t_ctl_waitq);
1202
1203         ctxt = llog_get_context(obd, LLOG_MDS_OST_ORIG_CTXT);
1204         if (ctxt == NULL) {
1205                 CERROR("can't get appropriate context\n");
1206                 GOTO(out, rc = -EINVAL);
1207         }
1208
1209         llh = ctxt->loc_handle;
1210         if (llh == NULL) {
1211                 CERROR("can't get llh\n");
1212                 llog_ctxt_put(ctxt);
1213                 GOTO(out, rc = -EINVAL);
1214         }
1215
1216         /*
1217          * Catalog processing stops when it processed last catalog record
1218          * with index equal to the end of catalog bitmap. Or if it is wrapped,
1219          * processing stops with index equal to the lgh_last_idx. We need to
1220          * continue processing.
1221          */
1222         d->opd_sync_last_catalog_idx = 0;
1223         do {
1224                 int     size;
1225
1226                 wrapped = (llh->lgh_hdr->llh_cat_idx >= llh->lgh_last_idx &&
1227                            llh->lgh_hdr->llh_count > 1);
1228
1229                 rc = llog_cat_process(&env, llh, osp_sync_process_queues, d,
1230                                       d->opd_sync_last_catalog_idx, 0);
1231
1232                 size = OBD_FAIL_PRECHECK(OBD_FAIL_CAT_RECORDS) ?
1233                        cfs_fail_val : (LLOG_HDR_BITMAP_SIZE(llh->lgh_hdr) - 1);
1234                 /* processing reaches catalog bottom */
1235                 if (d->opd_sync_last_catalog_idx == size)
1236                         d->opd_sync_last_catalog_idx = 0;
1237                 else if (wrapped)
1238                         /* If catalog is wrapped we can`t predict last index of
1239                          * processing because lgh_last_idx could be changed.
1240                          * Starting form the next one */
1241                         d->opd_sync_last_catalog_idx++;
1242
1243         } while (rc == 0 && (wrapped || d->opd_sync_last_catalog_idx == 0));
1244
1245         if (rc < 0) {
1246                 CERROR("%s: llog process with osp_sync_process_queues "
1247                        "failed: %d\n", d->opd_obd->obd_name, rc);
1248                 GOTO(close, rc);
1249         }
1250         LASSERTF(rc == 0 || rc == LLOG_PROC_BREAK,
1251                  "%u changes, %u in progress, %u in flight: %d\n",
1252                  atomic_read(&d->opd_sync_changes),
1253                  atomic_read(&d->opd_sync_rpcs_in_progress),
1254                  atomic_read(&d->opd_sync_rpcs_in_flight), rc);
1255
1256         /* we don't expect llog_process_thread() to exit till umount */
1257         LASSERTF(thread->t_flags != SVC_RUNNING,
1258                  "%u changes, %u in progress, %u in flight\n",
1259                  atomic_read(&d->opd_sync_changes),
1260                  atomic_read(&d->opd_sync_rpcs_in_progress),
1261                  atomic_read(&d->opd_sync_rpcs_in_flight));
1262
1263         /* wait till all the requests are completed */
1264         count = 0;
1265         while (atomic_read(&d->opd_sync_rpcs_in_progress) > 0) {
1266                 osp_sync_process_committed(&env, d);
1267
1268                 lwi = LWI_TIMEOUT(cfs_time_seconds(5), NULL, NULL);
1269                 rc = l_wait_event(d->opd_sync_waitq,
1270                                 atomic_read(&d->opd_sync_rpcs_in_progress) == 0,
1271                                   &lwi);
1272                 if (rc == -ETIMEDOUT)
1273                         count++;
1274                 LASSERTF(count < 10, "%s: %d %d %sempty\n",
1275                          d->opd_obd->obd_name,
1276                          atomic_read(&d->opd_sync_rpcs_in_progress),
1277                          atomic_read(&d->opd_sync_rpcs_in_flight),
1278                          list_empty(&d->opd_sync_committed_there) ? "" : "!");
1279
1280         }
1281
1282 close:
1283         llog_cat_close(&env, llh);
1284         rc = llog_cleanup(&env, ctxt);
1285         if (rc)
1286                 CERROR("can't cleanup llog: %d\n", rc);
1287 out:
1288         LASSERTF(atomic_read(&d->opd_sync_rpcs_in_progress) == 0,
1289                  "%s: %d %d %sempty\n", d->opd_obd->obd_name,
1290                  atomic_read(&d->opd_sync_rpcs_in_progress),
1291                  atomic_read(&d->opd_sync_rpcs_in_flight),
1292                  list_empty(&d->opd_sync_committed_there) ? "" : "!");
1293
1294         thread->t_flags = SVC_STOPPED;
1295
1296         wake_up(&thread->t_ctl_waitq);
1297
1298         lu_env_fini(&env);
1299
1300         RETURN(0);
1301 }
1302
1303 /**
1304  * Initialize llog.
1305  *
1306  * Initializes the llog. Specific llog to be used depends on the type of the
1307  * target OSP represents (OST or MDT). The function adds appends a new llog
1308  * record to mark the place where the records associated with this boot
1309  * start.
1310  *
1311  * \param[in] env       LU environment provided by the caller
1312  * \param[in] d         OSP device
1313  *
1314  * \retval 0            on success
1315  * \retval negative     negated errno on error
1316  */
1317 static int osp_sync_llog_init(const struct lu_env *env, struct osp_device *d)
1318 {
1319         struct osp_thread_info  *osi = osp_env_info(env);
1320         struct lu_fid           *fid = &osi->osi_fid;
1321         struct llog_handle      *lgh = NULL;
1322         struct obd_device       *obd = d->opd_obd;
1323         struct llog_ctxt        *ctxt;
1324         int                     rc;
1325
1326         ENTRY;
1327
1328         LASSERT(obd);
1329
1330         /*
1331          * open llog corresponding to our OST
1332          */
1333         OBD_SET_CTXT_MAGIC(&obd->obd_lvfs_ctxt);
1334         obd->obd_lvfs_ctxt.dt = d->opd_storage;
1335
1336         lu_local_obj_fid(fid, LLOG_CATALOGS_OID);
1337
1338         rc = llog_osd_get_cat_list(env, d->opd_storage, d->opd_index, 1,
1339                                    &osi->osi_cid, fid);
1340         if (rc < 0) {
1341                 if (rc != -EFAULT) {
1342                         CERROR("%s: can't get id from catalogs: rc = %d\n",
1343                                obd->obd_name, rc);
1344                         RETURN(rc);
1345                 }
1346
1347                 /* After sparse OST indices is supported, the CATALOG file
1348                  * may become a sparse file that results in failure on
1349                  * reading. Skip this error as the llog will be created
1350                  * later */
1351                 memset(&osi->osi_cid, 0, sizeof(osi->osi_cid));
1352                 rc = 0;
1353         }
1354
1355         CDEBUG(D_INFO, "%s: Init llog for %d - catid "DFID":%x\n",
1356                obd->obd_name, d->opd_index,
1357                PFID(&osi->osi_cid.lci_logid.lgl_oi.oi_fid),
1358                osi->osi_cid.lci_logid.lgl_ogen);
1359
1360         rc = llog_setup(env, obd, &obd->obd_olg, LLOG_MDS_OST_ORIG_CTXT,
1361                         d->opd_storage->dd_lu_dev.ld_obd,
1362                         &llog_common_cat_ops);
1363         if (rc)
1364                 RETURN(rc);
1365
1366         ctxt = llog_get_context(obd, LLOG_MDS_OST_ORIG_CTXT);
1367         LASSERT(ctxt);
1368
1369         if (likely(logid_id(&osi->osi_cid.lci_logid) != 0)) {
1370                 rc = llog_open(env, ctxt, &lgh, &osi->osi_cid.lci_logid, NULL,
1371                                LLOG_OPEN_EXISTS);
1372                 /* re-create llog if it is missing */
1373                 if (rc == -ENOENT)
1374                         logid_set_id(&osi->osi_cid.lci_logid, 0);
1375                 else if (rc < 0)
1376                         GOTO(out_cleanup, rc);
1377         }
1378
1379         if (unlikely(logid_id(&osi->osi_cid.lci_logid) == 0)) {
1380                 rc = llog_open_create(env, ctxt, &lgh, NULL, NULL);
1381                 if (rc < 0)
1382                         GOTO(out_cleanup, rc);
1383                 osi->osi_cid.lci_logid = lgh->lgh_id;
1384         }
1385
1386         LASSERT(lgh != NULL);
1387         ctxt->loc_handle = lgh;
1388
1389         rc = llog_init_handle(env, lgh, LLOG_F_IS_CAT, NULL);
1390         if (rc)
1391                 GOTO(out_close, rc);
1392
1393         rc = llog_osd_put_cat_list(env, d->opd_storage, d->opd_index, 1,
1394                                    &osi->osi_cid, fid);
1395         if (rc)
1396                 GOTO(out_close, rc);
1397
1398         /*
1399          * put a mark in the llog till which we'll be processing
1400          * old records restless
1401          */
1402         d->opd_sync_generation.mnt_cnt = ktime_get_ns();
1403         d->opd_sync_generation.conn_cnt = ktime_get_ns();
1404
1405         osi->osi_hdr.lrh_type = LLOG_GEN_REC;
1406         osi->osi_hdr.lrh_len = sizeof(osi->osi_gen);
1407
1408         memcpy(&osi->osi_gen.lgr_gen, &d->opd_sync_generation,
1409                sizeof(osi->osi_gen.lgr_gen));
1410
1411         rc = llog_cat_add(env, lgh, &osi->osi_gen.lgr_hdr, &osi->osi_cookie);
1412         if (rc < 0)
1413                 GOTO(out_close, rc);
1414         llog_ctxt_put(ctxt);
1415         RETURN(0);
1416 out_close:
1417         llog_cat_close(env, lgh);
1418 out_cleanup:
1419         llog_cleanup(env, ctxt);
1420         RETURN(rc);
1421 }
1422
1423 /**
1424  * Cleanup llog used for syncing.
1425  *
1426  * Closes and cleanups the llog. The function is called when the device is
1427  * shutting down.
1428  *
1429  * \param[in] env       LU environment provided by the caller
1430  * \param[in] d         OSP device
1431  */
1432 static void osp_sync_llog_fini(const struct lu_env *env, struct osp_device *d)
1433 {
1434         struct llog_ctxt *ctxt;
1435
1436         ctxt = llog_get_context(d->opd_obd, LLOG_MDS_OST_ORIG_CTXT);
1437         if (ctxt) {
1438                 llog_cat_close(env, ctxt->loc_handle);
1439                 llog_cleanup(env, ctxt);
1440         }
1441 }
1442
1443 /**
1444  * Initialization of the sync component of OSP.
1445  *
1446  * Initializes the llog and starts a new thread to handle the changes to
1447  * the remote target (OST or MDT).
1448  *
1449  * \param[in] env       LU environment provided by the caller
1450  * \param[in] d         OSP device
1451  *
1452  * \retval 0            on success
1453  * \retval negative     negated errno on error
1454  */
1455 int osp_sync_init(const struct lu_env *env, struct osp_device *d)
1456 {
1457         struct l_wait_info       lwi = { 0 };
1458         struct task_struct      *task;
1459         int                      rc;
1460
1461         ENTRY;
1462
1463         d->opd_sync_max_rpcs_in_flight = OSP_MAX_RPCS_IN_FLIGHT;
1464         d->opd_sync_max_rpcs_in_progress = OSP_MAX_RPCS_IN_PROGRESS;
1465         spin_lock_init(&d->opd_sync_lock);
1466         init_waitqueue_head(&d->opd_sync_waitq);
1467         init_waitqueue_head(&d->opd_sync_barrier_waitq);
1468         thread_set_flags(&d->opd_sync_thread, SVC_INIT);
1469         init_waitqueue_head(&d->opd_sync_thread.t_ctl_waitq);
1470         INIT_LIST_HEAD(&d->opd_sync_in_flight_list);
1471         INIT_LIST_HEAD(&d->opd_sync_committed_there);
1472
1473         if (d->opd_storage->dd_rdonly)
1474                 RETURN(0);
1475
1476         /*
1477          * initialize llog storing changes
1478          */
1479         rc = osp_sync_llog_init(env, d);
1480         if (rc) {
1481                 CERROR("%s: can't initialize llog: rc = %d\n",
1482                        d->opd_obd->obd_name, rc);
1483                 GOTO(err_id, rc);
1484         }
1485
1486         /*
1487          * Start synchronization thread
1488          */
1489         task = kthread_run(osp_sync_thread, d, "osp-syn-%u-%u",
1490                            d->opd_index, d->opd_group);
1491         if (IS_ERR(task)) {
1492                 rc = PTR_ERR(task);
1493                 CERROR("%s: cannot start sync thread: rc = %d\n",
1494                        d->opd_obd->obd_name, rc);
1495                 GOTO(err_llog, rc);
1496         }
1497
1498         l_wait_event(d->opd_sync_thread.t_ctl_waitq,
1499                      osp_sync_running(d) || osp_sync_stopped(d), &lwi);
1500
1501         RETURN(0);
1502 err_llog:
1503         osp_sync_llog_fini(env, d);
1504 err_id:
1505         return rc;
1506 }
1507
1508 /**
1509  * Stop the syncing thread.
1510  *
1511  * Asks the syncing thread to stop and wait until it's stopped.
1512  *
1513  * \param[in] d         OSP device
1514  *
1515  * \retval              0
1516  */
1517 int osp_sync_fini(struct osp_device *d)
1518 {
1519         struct ptlrpc_thread *thread = &d->opd_sync_thread;
1520
1521         ENTRY;
1522
1523         if (!thread_is_init(thread) && !thread_is_stopped(thread)) {
1524                 thread->t_flags = SVC_STOPPING;
1525                 wake_up(&d->opd_sync_waitq);
1526                 wait_event(thread->t_ctl_waitq, thread_is_stopped(thread));
1527         }
1528
1529         RETURN(0);
1530 }
1531
1532 struct osp_last_committed_cb {
1533         struct dt_txn_commit_cb  ospc_cb;
1534         struct osp_device       *ospc_dev;
1535         __u64                    ospc_transno;
1536 };
1537
1538 void osp_sync_local_commit_cb(struct lu_env *env, struct thandle *th,
1539                               struct dt_txn_commit_cb *dcb, int err)
1540 {
1541         struct osp_last_committed_cb    *cb;
1542         struct osp_device               *d;
1543
1544         cb = container_of0(dcb, struct osp_last_committed_cb, ospc_cb);
1545         d = cb->ospc_dev;
1546
1547         CDEBUG(D_HA, "%s: %llu committed\n", d->opd_obd->obd_name,
1548                cb->ospc_transno);
1549
1550         spin_lock(&d->opd_sync_lock);
1551         if (cb->ospc_transno > d->opd_sync_last_committed_id)
1552                 d->opd_sync_last_committed_id = cb->ospc_transno;
1553         spin_unlock(&d->opd_sync_lock);
1554
1555         osp_sync_check_for_work(d);
1556         lu_device_put(osp2lu_dev(d));
1557         if (atomic_dec_and_test(&d->opd_commits_registered))
1558                 wake_up(&d->opd_sync_waitq);
1559
1560         OBD_FREE_PTR(cb);
1561 }
1562
1563 static int osp_sync_add_commit_cb(const struct lu_env *env,
1564                                   struct osp_device *d, struct thandle *th)
1565 {
1566         struct osp_last_committed_cb    *cb;
1567         struct dt_txn_commit_cb         *dcb;
1568         int                              rc = 0;
1569
1570         OBD_ALLOC_PTR(cb);
1571         if (cb == NULL)
1572                 return -ENOMEM;
1573         cb->ospc_dev = d;
1574         dcb = &cb->ospc_cb;
1575         dcb->dcb_func = osp_sync_local_commit_cb;
1576         spin_lock(&d->opd_sync_lock);
1577         cb->ospc_transno = ++d->opd_sync_last_used_id;
1578         spin_unlock(&d->opd_sync_lock);
1579
1580         rc = dt_trans_cb_add(th, dcb);
1581         CDEBUG(D_HA, "%s: add commit cb at %lluns, next at %lluns, rc = %d\n",
1582                d->opd_obd->obd_name, ktime_get_ns(),
1583                ktime_to_ns(d->opd_sync_next_commit_cb), rc);
1584
1585         if (likely(rc == 0)) {
1586                 lu_device_get(osp2lu_dev(d));
1587                 atomic_inc(&d->opd_commits_registered);
1588         } else
1589                 OBD_FREE_PTR(cb);
1590
1591         return rc;
1592 }
1593
1594 /* add the commit callback every second */
1595 int osp_sync_add_commit_cb_1s(const struct lu_env *env, struct osp_device *d,
1596                               struct thandle *th)
1597 {
1598         ktime_t now = ktime_get();
1599         bool add = false;
1600
1601         /* fast path */
1602         if (ktime_before(now, d->opd_sync_next_commit_cb))
1603                 return 0;
1604
1605         spin_lock(&d->opd_sync_lock);
1606         if (ktime_before(d->opd_sync_next_commit_cb, now)) {
1607                 add = true;
1608                 d->opd_sync_next_commit_cb = ktime_add_ns(now, NSEC_PER_SEC);
1609         }
1610         spin_unlock(&d->opd_sync_lock);
1611
1612         if (!add)
1613                 return 0;
1614
1615         return osp_sync_add_commit_cb(env, d, th);
1616 }
1617
1618 /*
1619  * generate an empty transaction and hook the commit callback in
1620  * then force transaction commit
1621  */
1622 void osp_sync_force(const struct lu_env *env, struct osp_device *d)
1623 {
1624         struct thandle *th;
1625         int rc;
1626
1627         th = dt_trans_create(env, d->opd_storage);
1628         if (IS_ERR(th)) {
1629                 CERROR("%s: can't sync\n", d->opd_obd->obd_name);
1630                 return;
1631         }
1632         rc = dt_trans_start_local(env, d->opd_storage, th);
1633         if (rc == 0) {
1634                 CDEBUG(D_OTHER, "%s: sync forced, %d changes\n",
1635                        d->opd_obd->obd_name,
1636                        atomic_read(&d->opd_sync_changes));
1637                 rc = osp_sync_add_commit_cb(env, d, th);
1638                 dt_trans_stop(env, d->opd_storage, th);
1639         }
1640
1641         dt_commit_async(env, d->opd_storage);
1642 }