Whamcloud - gitweb
a0d78547885ef5acda7b5115362675e659fffa6c
[fs/lustre-release.git] / lustre / obdclass / llog_cat.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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2012, 2013, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/obdclass/llog_cat.c
37  *
38  * OST<->MDS recovery logging infrastructure.
39  *
40  * Invariants in implementation:
41  * - we do not share logs among different OST<->MDS connections, so that
42  *   if an OST or MDS fails it need only look at log(s) relevant to itself
43  *
44  * Author: Andreas Dilger <adilger@clusterfs.com>
45  * Author: Alexey Zhuravlev <alexey.zhuravlev@intel.com>
46  * Author: Mikhail Pershin <mike.pershin@intel.com>
47  */
48
49 #define DEBUG_SUBSYSTEM S_LOG
50
51 #ifndef __KERNEL__
52 #include <liblustre.h>
53 #endif
54
55 #include <obd_class.h>
56
57 #include "llog_internal.h"
58
59 /* Create a new log handle and add it to the open list.
60  * This log handle will be closed when all of the records in it are removed.
61  *
62  * Assumes caller has already pushed us into the kernel context and is locking.
63  */
64 static int llog_cat_new_log(const struct lu_env *env,
65                             struct llog_handle *cathandle,
66                             struct llog_handle *loghandle,
67                             struct thandle *th)
68 {
69
70         struct llog_log_hdr *llh;
71         struct llog_logid_rec rec = { { 0 }, };
72         int rc, index, bitmap_size;
73         ENTRY;
74
75         llh = cathandle->lgh_hdr;
76         bitmap_size = LLOG_BITMAP_SIZE(llh);
77
78         index = (cathandle->lgh_last_idx + 1) % bitmap_size;
79
80         /* maximum number of available slots in catlog is bitmap_size - 2 */
81         if (llh->llh_cat_idx == index) {
82                 CERROR("no free catalog slots for log...\n");
83                 RETURN(-ENOSPC);
84         }
85
86         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_LLOG_CREATE_FAILED))
87                 RETURN(-ENOSPC);
88
89         rc = llog_create(env, loghandle, th);
90         /* if llog is already created, no need to initialize it */
91         if (rc == -EEXIST) {
92                 RETURN(0);
93         } else if (rc != 0) {
94                 CERROR("%s: can't create new plain llog in catalog: rc = %d\n",
95                        loghandle->lgh_ctxt->loc_obd->obd_name, rc);
96                 RETURN(rc);
97         }
98
99         rc = llog_init_handle(env, loghandle,
100                               LLOG_F_IS_PLAIN | LLOG_F_ZAP_WHEN_EMPTY,
101                               &cathandle->lgh_hdr->llh_tgtuuid);
102         if (rc)
103                 GOTO(out_destroy, rc);
104
105         if (index == 0)
106                 index = 1;
107
108         spin_lock(&loghandle->lgh_hdr_lock);
109         llh->llh_count++;
110         if (ext2_set_bit(index, llh->llh_bitmap)) {
111                 CERROR("argh, index %u already set in log bitmap?\n",
112                        index);
113                 spin_unlock(&loghandle->lgh_hdr_lock);
114                 LBUG(); /* should never happen */
115         }
116         spin_unlock(&loghandle->lgh_hdr_lock);
117
118         cathandle->lgh_last_idx = index;
119         llh->llh_tail.lrt_index = index;
120
121         CDEBUG(D_RPCTRACE,"new recovery log "DOSTID":%x for index %u of catalog"
122                DOSTID"\n", POSTID(&loghandle->lgh_id.lgl_oi),
123                loghandle->lgh_id.lgl_ogen, index,
124                POSTID(&cathandle->lgh_id.lgl_oi));
125         /* build the record for this log in the catalog */
126         rec.lid_hdr.lrh_len = sizeof(rec);
127         rec.lid_hdr.lrh_index = index;
128         rec.lid_hdr.lrh_type = LLOG_LOGID_MAGIC;
129         rec.lid_id = loghandle->lgh_id;
130         rec.lid_tail.lrt_len = sizeof(rec);
131         rec.lid_tail.lrt_index = index;
132
133         /* update the catalog: header and record */
134         rc = llog_write_rec(env, cathandle, &rec.lid_hdr,
135                             &loghandle->u.phd.phd_cookie, 1, NULL, index, th);
136         if (rc < 0)
137                 GOTO(out_destroy, rc);
138
139         loghandle->lgh_hdr->llh_cat_idx = index;
140         RETURN(0);
141 out_destroy:
142         llog_destroy(env, loghandle);
143         RETURN(rc);
144 }
145
146 /* Open an existent log handle and add it to the open list.
147  * This log handle will be closed when all of the records in it are removed.
148  *
149  * Assumes caller has already pushed us into the kernel context and is locking.
150  * We return a lock on the handle to ensure nobody yanks it from us.
151  *
152  * This takes extra reference on llog_handle via llog_handle_get() and require
153  * this reference to be put by caller using llog_handle_put()
154  */
155 int llog_cat_id2handle(const struct lu_env *env, struct llog_handle *cathandle,
156                        struct llog_handle **res, struct llog_logid *logid)
157 {
158         struct llog_handle      *loghandle;
159         int                      rc = 0;
160
161         ENTRY;
162
163         if (cathandle == NULL)
164                 RETURN(-EBADF);
165
166         down_write(&cathandle->lgh_lock);
167         cfs_list_for_each_entry(loghandle, &cathandle->u.chd.chd_head,
168                                 u.phd.phd_entry) {
169                 struct llog_logid *cgl = &loghandle->lgh_id;
170
171                 if (ostid_id(&cgl->lgl_oi) == ostid_id(&logid->lgl_oi) &&
172                     ostid_seq(&cgl->lgl_oi) == ostid_seq(&logid->lgl_oi)) {
173                         if (cgl->lgl_ogen != logid->lgl_ogen) {
174                                 CERROR("%s: log "DOSTID" generation %x != %x\n",
175                                        loghandle->lgh_ctxt->loc_obd->obd_name,
176                                        POSTID(&logid->lgl_oi), cgl->lgl_ogen,
177                                        logid->lgl_ogen);
178                                 continue;
179                         }
180                         loghandle->u.phd.phd_cat_handle = cathandle;
181                         up_write(&cathandle->lgh_lock);
182                         GOTO(out, rc = 0);
183                 }
184         }
185         up_write(&cathandle->lgh_lock);
186
187         rc = llog_open(env, cathandle->lgh_ctxt, &loghandle, logid, NULL,
188                        LLOG_OPEN_EXISTS);
189         if (rc < 0) {
190                 CERROR("%s: error opening log id "DOSTID":%x: rc = %d\n",
191                        cathandle->lgh_ctxt->loc_obd->obd_name,
192                        POSTID(&logid->lgl_oi), logid->lgl_ogen, rc);
193                 RETURN(rc);
194         }
195
196         rc = llog_init_handle(env, loghandle, LLOG_F_IS_PLAIN, NULL);
197         if (rc < 0) {
198                 llog_close(env, loghandle);
199                 loghandle = NULL;
200                 RETURN(rc);
201         }
202
203         down_write(&cathandle->lgh_lock);
204         cfs_list_add(&loghandle->u.phd.phd_entry, &cathandle->u.chd.chd_head);
205         up_write(&cathandle->lgh_lock);
206
207         loghandle->u.phd.phd_cat_handle = cathandle;
208         loghandle->u.phd.phd_cookie.lgc_lgl = cathandle->lgh_id;
209         loghandle->u.phd.phd_cookie.lgc_index =
210                                 loghandle->lgh_hdr->llh_cat_idx;
211         EXIT;
212 out:
213         llog_handle_get(loghandle);
214         *res = loghandle;
215         return 0;
216 }
217
218 int llog_cat_close(const struct lu_env *env, struct llog_handle *cathandle)
219 {
220         struct llog_handle      *loghandle, *n;
221         int                      rc;
222
223         ENTRY;
224
225         cfs_list_for_each_entry_safe(loghandle, n, &cathandle->u.chd.chd_head,
226                                      u.phd.phd_entry) {
227                 struct llog_log_hdr     *llh = loghandle->lgh_hdr;
228                 int                      index;
229
230                 /* unlink open-not-created llogs */
231                 cfs_list_del_init(&loghandle->u.phd.phd_entry);
232                 llh = loghandle->lgh_hdr;
233                 if (loghandle->lgh_obj != NULL && llh != NULL &&
234                     (llh->llh_flags & LLOG_F_ZAP_WHEN_EMPTY) &&
235                     (llh->llh_count == 1)) {
236                         rc = llog_destroy(env, loghandle);
237                         if (rc)
238                                 CERROR("%s: failure destroying log during "
239                                        "cleanup: rc = %d\n",
240                                        loghandle->lgh_ctxt->loc_obd->obd_name,
241                                        rc);
242
243                         index = loghandle->u.phd.phd_cookie.lgc_index;
244                         llog_cat_cleanup(env, cathandle, NULL, index);
245                 }
246                 llog_close(env, loghandle);
247         }
248         /* if handle was stored in ctxt, remove it too */
249         if (cathandle->lgh_ctxt->loc_handle == cathandle)
250                 cathandle->lgh_ctxt->loc_handle = NULL;
251         rc = llog_close(env, cathandle);
252         RETURN(rc);
253 }
254 EXPORT_SYMBOL(llog_cat_close);
255
256 /**
257  * lockdep markers for nested struct llog_handle::lgh_lock locking.
258  */
259 enum {
260         LLOGH_CAT,
261         LLOGH_LOG
262 };
263
264 /** Return the currently active log handle.  If the current log handle doesn't
265  * have enough space left for the current record, start a new one.
266  *
267  * If reclen is 0, we only want to know what the currently active log is,
268  * otherwise we get a lock on this log so nobody can steal our space.
269  *
270  * Assumes caller has already pushed us into the kernel context and is locking.
271  *
272  * NOTE: loghandle is write-locked upon successful return
273  */
274 static struct llog_handle *llog_cat_current_log(struct llog_handle *cathandle,
275                                                 struct thandle *th)
276 {
277         struct llog_handle *loghandle = NULL;
278         ENTRY;
279
280         down_read_nested(&cathandle->lgh_lock, LLOGH_CAT);
281         loghandle = cathandle->u.chd.chd_current_log;
282         if (loghandle) {
283                 struct llog_log_hdr *llh;
284
285                 down_write_nested(&loghandle->lgh_lock, LLOGH_LOG);
286                 llh = loghandle->lgh_hdr;
287                 if (llh == NULL ||
288                     loghandle->lgh_last_idx < LLOG_BITMAP_SIZE(llh) - 1) {
289                         up_read(&cathandle->lgh_lock);
290                         RETURN(loghandle);
291                 } else {
292                         up_write(&loghandle->lgh_lock);
293                 }
294         }
295         up_read(&cathandle->lgh_lock);
296
297         /* time to use next log */
298
299         /* first, we have to make sure the state hasn't changed */
300         down_write_nested(&cathandle->lgh_lock, LLOGH_CAT);
301         loghandle = cathandle->u.chd.chd_current_log;
302         if (loghandle) {
303                 struct llog_log_hdr *llh;
304
305                 down_write_nested(&loghandle->lgh_lock, LLOGH_LOG);
306                 llh = loghandle->lgh_hdr;
307                 LASSERT(llh);
308                 if (loghandle->lgh_last_idx < LLOG_BITMAP_SIZE(llh) - 1) {
309                         up_write(&cathandle->lgh_lock);
310                         RETURN(loghandle);
311                 } else {
312                         up_write(&loghandle->lgh_lock);
313                 }
314         }
315
316         CDEBUG(D_INODE, "use next log\n");
317
318         loghandle = cathandle->u.chd.chd_next_log;
319         cathandle->u.chd.chd_current_log = loghandle;
320         cathandle->u.chd.chd_next_log = NULL;
321         down_write_nested(&loghandle->lgh_lock, LLOGH_LOG);
322         up_write(&cathandle->lgh_lock);
323         LASSERT(loghandle);
324         RETURN(loghandle);
325 }
326
327 /* Add a single record to the recovery log(s) using a catalog
328  * Returns as llog_write_record
329  *
330  * Assumes caller has already pushed us into the kernel context.
331  */
332 int llog_cat_add_rec(const struct lu_env *env, struct llog_handle *cathandle,
333                      struct llog_rec_hdr *rec, struct llog_cookie *reccookie,
334                      void *buf, struct thandle *th)
335 {
336         struct llog_handle *loghandle;
337         int rc;
338         ENTRY;
339
340         LASSERT(rec->lrh_len <= LLOG_CHUNK_SIZE);
341         loghandle = llog_cat_current_log(cathandle, th);
342         LASSERT(!IS_ERR(loghandle));
343
344         /* loghandle is already locked by llog_cat_current_log() for us */
345         if (!llog_exist(loghandle)) {
346                 rc = llog_cat_new_log(env, cathandle, loghandle, th);
347                 if (rc < 0) {
348                         up_write(&loghandle->lgh_lock);
349                         RETURN(rc);
350                 }
351         }
352         /* now let's try to add the record */
353         rc = llog_write_rec(env, loghandle, rec, reccookie, 1, buf, -1, th);
354         if (rc < 0)
355                 CDEBUG_LIMIT(rc == -ENOSPC ? D_HA : D_ERROR,
356                              "llog_write_rec %d: lh=%p\n", rc, loghandle);
357         up_write(&loghandle->lgh_lock);
358         if (rc == -ENOSPC) {
359                 /* try to use next log */
360                 loghandle = llog_cat_current_log(cathandle, th);
361                 LASSERT(!IS_ERR(loghandle));
362                 /* new llog can be created concurrently */
363                 if (!llog_exist(loghandle)) {
364                         rc = llog_cat_new_log(env, cathandle, loghandle, th);
365                         if (rc < 0) {
366                                 up_write(&loghandle->lgh_lock);
367                                 RETURN(rc);
368                         }
369                 }
370                 /* now let's try to add the record */
371                 rc = llog_write_rec(env, loghandle, rec, reccookie, 1, buf,
372                                     -1, th);
373                 if (rc < 0)
374                         CERROR("llog_write_rec %d: lh=%p\n", rc, loghandle);
375                 up_write(&loghandle->lgh_lock);
376         }
377
378         RETURN(rc);
379 }
380 EXPORT_SYMBOL(llog_cat_add_rec);
381
382 int llog_cat_declare_add_rec(const struct lu_env *env,
383                              struct llog_handle *cathandle,
384                              struct llog_rec_hdr *rec, struct thandle *th)
385 {
386         struct llog_handle      *loghandle, *next;
387         int                      rc = 0;
388
389         ENTRY;
390
391         if (cathandle->u.chd.chd_current_log == NULL) {
392                 /* declare new plain llog */
393                 down_write(&cathandle->lgh_lock);
394                 if (cathandle->u.chd.chd_current_log == NULL) {
395                         rc = llog_open(env, cathandle->lgh_ctxt, &loghandle,
396                                        NULL, NULL, LLOG_OPEN_NEW);
397                         if (rc == 0) {
398                                 cathandle->u.chd.chd_current_log = loghandle;
399                                 cfs_list_add_tail(&loghandle->u.phd.phd_entry,
400                                                   &cathandle->u.chd.chd_head);
401                         }
402                 }
403                 up_write(&cathandle->lgh_lock);
404         } else if (cathandle->u.chd.chd_next_log == NULL) {
405                 /* declare next plain llog */
406                 down_write(&cathandle->lgh_lock);
407                 if (cathandle->u.chd.chd_next_log == NULL) {
408                         rc = llog_open(env, cathandle->lgh_ctxt, &loghandle,
409                                        NULL, NULL, LLOG_OPEN_NEW);
410                         if (rc == 0) {
411                                 cathandle->u.chd.chd_next_log = loghandle;
412                                 cfs_list_add_tail(&loghandle->u.phd.phd_entry,
413                                                   &cathandle->u.chd.chd_head);
414                         }
415                 }
416                 up_write(&cathandle->lgh_lock);
417         }
418         if (rc)
419                 GOTO(out, rc);
420
421         if (!llog_exist(cathandle->u.chd.chd_current_log)) {
422                 rc = llog_declare_create(env, cathandle->u.chd.chd_current_log,
423                                          th);
424                 if (rc)
425                         GOTO(out, rc);
426                 llog_declare_write_rec(env, cathandle, NULL, -1, th);
427         }
428         /* declare records in the llogs */
429         rc = llog_declare_write_rec(env, cathandle->u.chd.chd_current_log,
430                                     rec, -1, th);
431         if (rc)
432                 GOTO(out, rc);
433
434         next = cathandle->u.chd.chd_next_log;
435         if (next) {
436                 if (!llog_exist(next)) {
437                         rc = llog_declare_create(env, next, th);
438                         llog_declare_write_rec(env, cathandle, NULL, -1, th);
439                 }
440                 llog_declare_write_rec(env, next, rec, -1, th);
441         }
442 out:
443         RETURN(rc);
444 }
445 EXPORT_SYMBOL(llog_cat_declare_add_rec);
446
447 int llog_cat_add(const struct lu_env *env, struct llog_handle *cathandle,
448                  struct llog_rec_hdr *rec, struct llog_cookie *reccookie,
449                  void *buf)
450 {
451         struct llog_ctxt        *ctxt;
452         struct dt_device        *dt;
453         struct thandle          *th = NULL;
454         int                      rc;
455
456         ctxt = cathandle->lgh_ctxt;
457         LASSERT(ctxt);
458         LASSERT(ctxt->loc_exp);
459
460         LASSERT(cathandle->lgh_obj != NULL);
461         dt = lu2dt_dev(cathandle->lgh_obj->do_lu.lo_dev);
462
463         th = dt_trans_create(env, dt);
464         if (IS_ERR(th))
465                 RETURN(PTR_ERR(th));
466
467         rc = llog_cat_declare_add_rec(env, cathandle, rec, th);
468         if (rc)
469                 GOTO(out_trans, rc);
470
471         rc = dt_trans_start_local(env, dt, th);
472         if (rc)
473                 GOTO(out_trans, rc);
474         rc = llog_cat_add_rec(env, cathandle, rec, reccookie, buf, th);
475 out_trans:
476         dt_trans_stop(env, dt, th);
477         RETURN(rc);
478 }
479 EXPORT_SYMBOL(llog_cat_add);
480
481 /* For each cookie in the cookie array, we clear the log in-use bit and either:
482  * - the log is empty, so mark it free in the catalog header and delete it
483  * - the log is not empty, just write out the log header
484  *
485  * The cookies may be in different log files, so we need to get new logs
486  * each time.
487  *
488  * Assumes caller has already pushed us into the kernel context.
489  */
490 int llog_cat_cancel_records(const struct lu_env *env,
491                             struct llog_handle *cathandle, int count,
492                             struct llog_cookie *cookies)
493 {
494         int i, index, rc = 0, failed = 0;
495
496         ENTRY;
497
498         for (i = 0; i < count; i++, cookies++) {
499                 struct llog_handle      *loghandle;
500                 struct llog_logid       *lgl = &cookies->lgc_lgl;
501                 int                      lrc;
502
503                 rc = llog_cat_id2handle(env, cathandle, &loghandle, lgl);
504                 if (rc) {
505                         CERROR("%s: cannot find handle for llog "DOSTID": %d\n",
506                                cathandle->lgh_ctxt->loc_obd->obd_name,
507                                POSTID(&lgl->lgl_oi), rc);
508                         failed++;
509                         continue;
510                 }
511
512                 lrc = llog_cancel_rec(env, loghandle, cookies->lgc_index);
513                 if (lrc == 1) {          /* log has been destroyed */
514                         index = loghandle->u.phd.phd_cookie.lgc_index;
515                         rc = llog_cat_cleanup(env, cathandle, loghandle,
516                                               index);
517                 } else if (lrc == -ENOENT) {
518                         if (rc == 0) /* ENOENT shouldn't rewrite any error */
519                                 rc = lrc;
520                 } else if (lrc < 0) {
521                         failed++;
522                         rc = lrc;
523                 }
524                 llog_handle_put(loghandle);
525         }
526         if (rc)
527                 CERROR("%s: fail to cancel %d of %d llog-records: rc = %d\n",
528                        cathandle->lgh_ctxt->loc_obd->obd_name, failed, count,
529                        rc);
530
531         RETURN(rc);
532 }
533 EXPORT_SYMBOL(llog_cat_cancel_records);
534
535 int llog_cat_process_cb(const struct lu_env *env, struct llog_handle *cat_llh,
536                         struct llog_rec_hdr *rec, void *data)
537 {
538         struct llog_process_data *d = data;
539         struct llog_logid_rec *lir = (struct llog_logid_rec *)rec;
540         struct llog_handle *llh;
541         int rc;
542
543         ENTRY;
544         if (rec->lrh_type != LLOG_LOGID_MAGIC) {
545                 CERROR("invalid record in catalog\n");
546                 RETURN(-EINVAL);
547         }
548         CDEBUG(D_HA, "processing log "DOSTID":%x at index %u of catalog "
549                DOSTID"\n", POSTID(&lir->lid_id.lgl_oi), lir->lid_id.lgl_ogen,
550                rec->lrh_index, POSTID(&cat_llh->lgh_id.lgl_oi));
551
552         rc = llog_cat_id2handle(env, cat_llh, &llh, &lir->lid_id);
553         if (rc) {
554                 CERROR("%s: cannot find handle for llog "DOSTID": %d\n",
555                        cat_llh->lgh_ctxt->loc_obd->obd_name,
556                        POSTID(&lir->lid_id.lgl_oi), rc);
557                 RETURN(rc);
558         }
559
560         if (rec->lrh_index < d->lpd_startcat) {
561                 /* Skip processing of the logs until startcat */
562                 rc = 0;
563         } else if (d->lpd_startidx > 0) {
564                 struct llog_process_cat_data cd;
565
566                 cd.lpcd_first_idx = d->lpd_startidx;
567                 cd.lpcd_last_idx = 0;
568                 rc = llog_process_or_fork(env, llh, d->lpd_cb, d->lpd_data,
569                                           &cd, false);
570                 /* Continue processing the next log from idx 0 */
571                 d->lpd_startidx = 0;
572         } else {
573                 rc = llog_process_or_fork(env, llh, d->lpd_cb, d->lpd_data,
574                                           NULL, false);
575         }
576
577         llog_handle_put(llh);
578
579         RETURN(rc);
580 }
581
582 int llog_cat_process_or_fork(const struct lu_env *env,
583                              struct llog_handle *cat_llh,
584                              llog_cb_t cb, void *data, int startcat,
585                              int startidx, bool fork)
586 {
587         struct llog_process_data d;
588         struct llog_log_hdr *llh = cat_llh->lgh_hdr;
589         int rc;
590         ENTRY;
591
592         LASSERT(llh->llh_flags & LLOG_F_IS_CAT);
593         d.lpd_data = data;
594         d.lpd_cb = cb;
595         d.lpd_startcat = startcat;
596         d.lpd_startidx = startidx;
597
598         if (llh->llh_cat_idx > cat_llh->lgh_last_idx) {
599                 struct llog_process_cat_data cd;
600
601                 CWARN("catlog "DOSTID" crosses index zero\n",
602                       POSTID(&cat_llh->lgh_id.lgl_oi));
603
604                 cd.lpcd_first_idx = llh->llh_cat_idx;
605                 cd.lpcd_last_idx = 0;
606                 rc = llog_process_or_fork(env, cat_llh, llog_cat_process_cb,
607                                           &d, &cd, fork);
608                 if (rc != 0)
609                         RETURN(rc);
610
611                 cd.lpcd_first_idx = 0;
612                 cd.lpcd_last_idx = cat_llh->lgh_last_idx;
613                 rc = llog_process_or_fork(env, cat_llh, llog_cat_process_cb,
614                                           &d, &cd, fork);
615         } else {
616                 rc = llog_process_or_fork(env, cat_llh, llog_cat_process_cb,
617                                           &d, NULL, fork);
618         }
619
620         RETURN(rc);
621 }
622 EXPORT_SYMBOL(llog_cat_process_or_fork);
623
624 int llog_cat_process(const struct lu_env *env, struct llog_handle *cat_llh,
625                      llog_cb_t cb, void *data, int startcat, int startidx)
626 {
627         return llog_cat_process_or_fork(env, cat_llh, cb, data, startcat,
628                                         startidx, false);
629 }
630 EXPORT_SYMBOL(llog_cat_process);
631
632 static int llog_cat_reverse_process_cb(const struct lu_env *env,
633                                        struct llog_handle *cat_llh,
634                                        struct llog_rec_hdr *rec, void *data)
635 {
636         struct llog_process_data *d = data;
637         struct llog_logid_rec *lir = (struct llog_logid_rec *)rec;
638         struct llog_handle *llh;
639         int rc;
640
641         if (le32_to_cpu(rec->lrh_type) != LLOG_LOGID_MAGIC) {
642                 CERROR("invalid record in catalog\n");
643                 RETURN(-EINVAL);
644         }
645         CDEBUG(D_HA, "processing log "DOSTID":%x at index %u of catalog "
646                DOSTID"\n", POSTID(&lir->lid_id.lgl_oi), lir->lid_id.lgl_ogen,
647                le32_to_cpu(rec->lrh_index), POSTID(&cat_llh->lgh_id.lgl_oi));
648
649         rc = llog_cat_id2handle(env, cat_llh, &llh, &lir->lid_id);
650         if (rc) {
651                 CERROR("%s: cannot find handle for llog "DOSTID": %d\n",
652                        cat_llh->lgh_ctxt->loc_obd->obd_name,
653                        POSTID(&lir->lid_id.lgl_oi), rc);
654                 RETURN(rc);
655         }
656
657         rc = llog_reverse_process(env, llh, d->lpd_cb, d->lpd_data, NULL);
658         llog_handle_put(llh);
659         RETURN(rc);
660 }
661
662 int llog_cat_reverse_process(const struct lu_env *env,
663                              struct llog_handle *cat_llh,
664                              llog_cb_t cb, void *data)
665 {
666         struct llog_process_data d;
667         struct llog_process_cat_data cd;
668         struct llog_log_hdr *llh = cat_llh->lgh_hdr;
669         int rc;
670         ENTRY;
671
672         LASSERT(llh->llh_flags & LLOG_F_IS_CAT);
673         d.lpd_data = data;
674         d.lpd_cb = cb;
675
676         if (llh->llh_cat_idx > cat_llh->lgh_last_idx) {
677                 CWARN("catalog "DOSTID" crosses index zero\n",
678                       POSTID(&cat_llh->lgh_id.lgl_oi));
679
680                 cd.lpcd_first_idx = 0;
681                 cd.lpcd_last_idx = cat_llh->lgh_last_idx;
682                 rc = llog_reverse_process(env, cat_llh,
683                                           llog_cat_reverse_process_cb,
684                                           &d, &cd);
685                 if (rc != 0)
686                         RETURN(rc);
687
688                 cd.lpcd_first_idx = le32_to_cpu(llh->llh_cat_idx);
689                 cd.lpcd_last_idx = 0;
690                 rc = llog_reverse_process(env, cat_llh,
691                                           llog_cat_reverse_process_cb,
692                                           &d, &cd);
693         } else {
694                 rc = llog_reverse_process(env, cat_llh,
695                                           llog_cat_reverse_process_cb,
696                                           &d, NULL);
697         }
698
699         RETURN(rc);
700 }
701 EXPORT_SYMBOL(llog_cat_reverse_process);
702
703 int llog_cat_set_first_idx(struct llog_handle *cathandle, int index)
704 {
705         struct llog_log_hdr *llh = cathandle->lgh_hdr;
706         int i, bitmap_size, idx;
707         ENTRY;
708
709         bitmap_size = LLOG_BITMAP_SIZE(llh);
710         if (llh->llh_cat_idx == (index - 1)) {
711                 idx = llh->llh_cat_idx + 1;
712                 llh->llh_cat_idx = idx;
713                 if (idx == cathandle->lgh_last_idx)
714                         goto out;
715                 for (i = (index + 1) % bitmap_size;
716                      i != cathandle->lgh_last_idx;
717                      i = (i + 1) % bitmap_size) {
718                         if (!ext2_test_bit(i, llh->llh_bitmap)) {
719                                 idx = llh->llh_cat_idx + 1;
720                                 llh->llh_cat_idx = idx;
721                         } else if (i == 0) {
722                                 llh->llh_cat_idx = 0;
723                         } else {
724                                 break;
725                         }
726                 }
727 out:
728                 CDEBUG(D_RPCTRACE, "set catlog "DOSTID" first idx %u\n",
729                        POSTID(&cathandle->lgh_id.lgl_oi), llh->llh_cat_idx);
730         }
731
732         RETURN(0);
733 }
734
735 /* Cleanup deleted plain llog traces from catalog */
736 int llog_cat_cleanup(const struct lu_env *env, struct llog_handle *cathandle,
737                      struct llog_handle *loghandle, int index)
738 {
739         int rc;
740
741         LASSERT(index);
742         if (loghandle != NULL) {
743                 /* remove destroyed llog from catalog list and
744                  * chd_current_log variable */
745                 down_write(&cathandle->lgh_lock);
746                 if (cathandle->u.chd.chd_current_log == loghandle)
747                         cathandle->u.chd.chd_current_log = NULL;
748                 cfs_list_del_init(&loghandle->u.phd.phd_entry);
749                 up_write(&cathandle->lgh_lock);
750                 LASSERT(index == loghandle->u.phd.phd_cookie.lgc_index);
751                 /* llog was opened and keep in a list, close it now */
752                 llog_close(env, loghandle);
753         }
754         /* remove plain llog entry from catalog by index */
755         llog_cat_set_first_idx(cathandle, index);
756         rc = llog_cancel_rec(env, cathandle, index);
757         if (rc == 0)
758                 CDEBUG(D_HA, "cancel plain log at index"
759                        " %u of catalog "DOSTID"\n",
760                        index, POSTID(&cathandle->lgh_id.lgl_oi));
761         return rc;
762 }
763
764 int cat_cancel_cb(const struct lu_env *env, struct llog_handle *cathandle,
765                   struct llog_rec_hdr *rec, void *data)
766 {
767         struct llog_logid_rec   *lir = (struct llog_logid_rec *)rec;
768         struct llog_handle      *loghandle;
769         struct llog_log_hdr     *llh;
770         int                      rc;
771
772         ENTRY;
773
774         if (rec->lrh_type != LLOG_LOGID_MAGIC) {
775                 CERROR("invalid record in catalog\n");
776                 RETURN(-EINVAL);
777         }
778
779         CDEBUG(D_HA, "processing log "DOSTID":%x at index %u of catalog "
780                DOSTID"\n", POSTID(&lir->lid_id.lgl_oi), lir->lid_id.lgl_ogen,
781                rec->lrh_index, POSTID(&cathandle->lgh_id.lgl_oi));
782
783         rc = llog_cat_id2handle(env, cathandle, &loghandle, &lir->lid_id);
784         if (rc) {
785                 CERROR("%s: cannot find handle for llog "DOSTID": %d\n",
786                        cathandle->lgh_ctxt->loc_obd->obd_name,
787                        POSTID(&lir->lid_id.lgl_oi), rc);
788                 if (rc == -ENOENT || rc == -ESTALE) {
789                         /* remove index from catalog */
790                         llog_cat_cleanup(env, cathandle, NULL, rec->lrh_index);
791                 }
792                 RETURN(rc);
793         }
794
795         llh = loghandle->lgh_hdr;
796         if ((llh->llh_flags & LLOG_F_ZAP_WHEN_EMPTY) &&
797             (llh->llh_count == 1)) {
798                 rc = llog_destroy(env, loghandle);
799                 if (rc)
800                         CERROR("%s: fail to destroy empty log: rc = %d\n",
801                                loghandle->lgh_ctxt->loc_obd->obd_name, rc);
802
803                 llog_cat_cleanup(env, cathandle, loghandle,
804                                  loghandle->u.phd.phd_cookie.lgc_index);
805         }
806         llog_handle_put(loghandle);
807
808         RETURN(rc);
809 }
810 EXPORT_SYMBOL(cat_cancel_cb);
811
812 /* helper to initialize catalog llog and process it to cancel */
813 int llog_cat_init_and_process(const struct lu_env *env,
814                               struct llog_handle *llh)
815 {
816         int rc;
817
818         rc = llog_init_handle(env, llh, LLOG_F_IS_CAT, NULL);
819         if (rc)
820                 RETURN(rc);
821
822         rc = llog_process_or_fork(env, llh, cat_cancel_cb, NULL, NULL, false);
823         if (rc)
824                 CERROR("%s: llog_process() with cat_cancel_cb failed: rc = "
825                        "%d\n", llh->lgh_ctxt->loc_obd->obd_name, rc);
826         RETURN(0);
827 }
828 EXPORT_SYMBOL(llog_cat_init_and_process);
829