Whamcloud - gitweb
LU-11997 ptlrpc: Properly swab ll_fiemap_info_key
[fs/lustre-release.git] / lustre / obdclass / llog_test.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) 2003, 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/obdclass/llog_test.c
33  *
34  * Author: Phil Schwan <phil@clusterfs.com>
35  * Author: Mikhail Pershin <mike.pershin@intel.com>
36  */
37
38 #define DEBUG_SUBSYSTEM S_CLASS
39
40 #include <linux/module.h>
41 #include <linux/init.h>
42 #include <linux/kthread.h>
43 #include <linux/delay.h>
44 #include <linux/random.h>
45
46 #include <obd_class.h>
47 #include <lustre_fid.h>
48 #include <lustre_log.h>
49
50 /* This is slightly more than the number of records that can fit into a
51  * single llog file, because the llog_log_header takes up some of the
52  * space in the first block that cannot be used for the bitmap. */
53 static int llog_test_recnum = (LLOG_MIN_CHUNK_SIZE * 8);
54 static int llog_test_rand;
55 static struct obd_uuid uuid = { .uuid = "test_uuid" };
56 static struct llog_logid cat_logid;
57
58 struct llog_mini_rec {
59         struct llog_rec_hdr lmr_hdr;
60         struct llog_rec_tail lmr_tail;
61 } __attribute__((packed));
62
63 static int verify_handle(char *test, struct llog_handle *llh, int num_recs)
64 {
65         int i;
66         int last_idx = 0;
67         int active_recs = 0;
68
69         for (i = 0; i < LLOG_HDR_BITMAP_SIZE(llh->lgh_hdr); i++) {
70                 if (ext2_test_bit(i, LLOG_HDR_BITMAP(llh->lgh_hdr))) {
71                         last_idx = i;
72                         active_recs++;
73                 }
74         }
75
76         /* check the llog is sane at first, llh_count and lgh_last_idx*/
77         if (llh->lgh_hdr->llh_count != active_recs) {
78                 CERROR("%s: handle->count is %d, but there are %d recs found\n",
79                        test, llh->lgh_hdr->llh_count, active_recs);
80                 RETURN(-ERANGE);
81         }
82
83         if (llh->lgh_last_idx != LLOG_HDR_TAIL(llh->lgh_hdr)->lrt_index ||
84             (!(llh->lgh_hdr->llh_flags & LLOG_F_IS_CAT) &&
85              llh->lgh_last_idx < last_idx)) {
86                 CERROR("%s: lgh_last_idx is %d (%d in the header), last found %d\n",
87                        test, llh->lgh_last_idx,
88                        LLOG_HDR_TAIL(llh->lgh_hdr)->lrt_index, last_idx);
89                 RETURN(-ERANGE);
90         }
91
92         /* finally checks against expected value from the caller */
93         if (active_recs != num_recs) {
94                 CERROR("%s: expected %d active recs after write, found %d\n",
95                        test, num_recs, active_recs);
96                 RETURN(-ERANGE);
97         }
98
99         RETURN(0);
100 }
101
102 /* Test named-log create/open, close */
103 static int llog_test_1(const struct lu_env *env,
104                        struct obd_device *obd, char *name)
105 {
106         struct llog_handle *llh;
107         struct llog_ctxt *ctxt;
108         int rc;
109         int rc2;
110
111         ENTRY;
112
113         CWARN("1a: create a log with name: %s\n", name);
114         ctxt = llog_get_context(obd, LLOG_TEST_ORIG_CTXT);
115         LASSERT(ctxt);
116
117         rc = llog_open_create(env, ctxt, &llh, NULL, name);
118         if (rc) {
119                 CERROR("1a: llog_create with name %s failed: %d\n", name, rc);
120                 GOTO(out, rc);
121         }
122         rc = llog_init_handle(env, llh, LLOG_F_IS_PLAIN, &uuid);
123         if (rc) {
124                 CERROR("1a: can't init llog handle: %d\n", rc);
125                 GOTO(out_close, rc);
126         }
127
128         rc = verify_handle("1", llh, 1);
129
130         CWARN("1b: close newly-created log\n");
131 out_close:
132         rc2 = llog_close(env, llh);
133         if (rc2) {
134                 CERROR("1b: close log %s failed: %d\n", name, rc2);
135                 if (rc == 0)
136                         rc = rc2;
137         }
138 out:
139         llog_ctxt_put(ctxt);
140         RETURN(rc);
141 }
142
143 static int test_2_cancel_cb(const struct lu_env *env, struct llog_handle *llh,
144                             struct llog_rec_hdr *rec, void *data)
145 {
146         return LLOG_DEL_RECORD;
147 }
148
149 /* Test named-log reopen; returns opened log on success */
150 static int llog_test_2(const struct lu_env *env, struct obd_device *obd,
151                        char *name, struct llog_handle **llh)
152 {
153         struct llog_ctxt *ctxt;
154         struct llog_handle *lgh;
155         struct llog_logid  logid;
156         int rc;
157         struct llog_mini_rec lmr;
158
159         ENTRY;
160
161         CWARN("2a: re-open a log with name: %s\n", name);
162         ctxt = llog_get_context(obd, LLOG_TEST_ORIG_CTXT);
163         LASSERT(ctxt);
164
165         rc = llog_open(env, ctxt, llh, NULL, name, LLOG_OPEN_EXISTS);
166         if (rc) {
167                 CERROR("2a: re-open log with name %s failed: %d\n", name, rc);
168                 GOTO(out_put, rc);
169         }
170
171         rc = llog_init_handle(env, *llh, LLOG_F_IS_PLAIN, &uuid);
172         if (rc) {
173                 CERROR("2a: can't init llog handle: %d\n", rc);
174                 GOTO(out_close_llh, rc);
175         }
176
177         rc = verify_handle("2", *llh, 1);
178         if (rc)
179                 GOTO(out_close_llh, rc);
180
181         CWARN("2b: create a log without specified NAME & LOGID\n");
182         rc = llog_open_create(env, ctxt, &lgh, NULL, NULL);
183         if (rc) {
184                 CERROR("2b: create log failed\n");
185                 GOTO(out_close_llh, rc);
186         }
187         rc = llog_init_handle(env, lgh, LLOG_F_IS_PLAIN, &uuid);
188         if (rc) {
189                 CERROR("2b: can't init llog handle: %d\n", rc);
190                 GOTO(out_close, rc);
191         }
192
193         logid = lgh->lgh_id;
194
195         lmr.lmr_hdr.lrh_len = lmr.lmr_tail.lrt_len = LLOG_MIN_REC_SIZE;
196         lmr.lmr_hdr.lrh_type = 0xf02f02;
197
198         /* Check llog header values are correct after record add/cancel */
199         CWARN("2b: write 1 llog records, check llh_count\n");
200         rc = llog_write(env, lgh, &lmr.lmr_hdr, LLOG_NEXT_IDX);
201         if (rc < 0)
202                 GOTO(out_close, rc);
203
204         /* in-memory values after record addition */
205         rc = verify_handle("2b", lgh, 2);
206         if (rc < 0)
207                 GOTO(out_close, rc);
208
209         /* re-open llog to read on-disk values */
210         llog_close(env, lgh);
211
212         CWARN("2c: re-open the log by LOGID and verify llh_count\n");
213         rc = llog_open(env, ctxt, &lgh, &logid, NULL, LLOG_OPEN_EXISTS);
214         if (rc < 0) {
215                 CERROR("2c: re-open log by LOGID failed\n");
216                 GOTO(out_close_llh, rc);
217         }
218
219         rc = llog_init_handle(env, lgh, LLOG_F_IS_PLAIN, &uuid);
220         if (rc < 0) {
221                 CERROR("2c: can't init llog handle: %d\n", rc);
222                 GOTO(out_close, rc);
223         }
224
225         /* check values just read from disk */
226         rc = verify_handle("2c", lgh, 2);
227         if (rc < 0)
228                 GOTO(out_close, rc);
229
230         rc = llog_process(env, lgh, test_2_cancel_cb, NULL, NULL);
231         if (rc < 0)
232                 GOTO(out_close, rc);
233
234         /* in-memory values */
235         rc = verify_handle("2c", lgh, 1);
236         if (rc < 0)
237                 GOTO(out_close, rc);
238
239         /* re-open llog to get on-disk values */
240         llog_close(env, lgh);
241
242         rc = llog_open(env, ctxt, &lgh, &logid, NULL, LLOG_OPEN_EXISTS);
243         if (rc) {
244                 CERROR("2c: re-open log by LOGID failed\n");
245                 GOTO(out_close_llh, rc);
246         }
247
248         rc = llog_init_handle(env, lgh, LLOG_F_IS_PLAIN, &uuid);
249         if (rc) {
250                 CERROR("2c: can't init llog handle: %d\n", rc);
251                 GOTO(out_close, rc);
252         }
253
254         /* on-disk values after llog re-open */
255         rc = verify_handle("2c", lgh, 1);
256         if (rc < 0)
257                 GOTO(out_close, rc);
258
259         CWARN("2d: destroy this log\n");
260         rc = llog_destroy(env, lgh);
261         if (rc)
262                 CERROR("2d: destroy log failed\n");
263 out_close:
264         llog_close(env, lgh);
265 out_close_llh:
266         if (rc)
267                 llog_close(env, *llh);
268 out_put:
269         llog_ctxt_put(ctxt);
270
271         RETURN(rc);
272 }
273
274 static int test_3_rec_num;
275 static off_t test_3_rec_off;
276 static int test_3_paddings;
277 static int test_3_start_idx;
278
279 /*
280  * Test 3 callback.
281  * - check lgh_cur_offset correctness
282  * - check record index consistency
283  * - modify each record in-place
284  * - add new record during *last_idx processing
285  */
286 static int test3_check_n_add_cb(const struct lu_env *env,
287                                 struct llog_handle *lgh,
288                                 struct llog_rec_hdr *rec, void *data)
289 {
290         struct llog_gen_rec *lgr = (struct llog_gen_rec *)rec;
291         int *last_rec = data;
292         unsigned cur_idx = test_3_start_idx + test_3_rec_num;
293         int rc;
294
295         if (lgh->lgh_hdr->llh_flags & LLOG_F_IS_FIXSIZE) {
296                 LASSERT(lgh->lgh_hdr->llh_size > 0);
297                 if (lgh->lgh_cur_offset != lgh->lgh_hdr->llh_hdr.lrh_len +
298                                         (cur_idx - 1) * lgh->lgh_hdr->llh_size)
299                         CERROR("Wrong record offset in cur_off: %llu, should be %u\n",
300                                lgh->lgh_cur_offset,
301                                lgh->lgh_hdr->llh_hdr.lrh_len +
302                                (cur_idx - 1) * lgh->lgh_hdr->llh_size);
303         } else {
304                 size_t chunk_size = lgh->lgh_hdr->llh_hdr.lrh_len;
305
306                 /*
307                  * For variable size records the start offset is unknown, trust
308                  * the first value and check others are consistent with it.
309                  */
310                 if (test_3_rec_off == 0)
311                         test_3_rec_off = lgh->lgh_cur_offset;
312
313                 if (lgh->lgh_cur_offset != test_3_rec_off) {
314                         __u64 tmp = lgh->lgh_cur_offset;
315
316                         /* there can be padding record */
317                         if ((do_div(tmp, chunk_size) == 0) &&
318                             (lgh->lgh_cur_offset - test_3_rec_off <
319                              rec->lrh_len + LLOG_MIN_REC_SIZE)) {
320                                 test_3_rec_off = lgh->lgh_cur_offset;
321                                 test_3_paddings++;
322                         } else {
323                                 CERROR("Wrong record offset in cur_off: %llu"
324                                        ", should be %lld (rec len %u)\n",
325                                        lgh->lgh_cur_offset,
326                                        (long long)test_3_rec_off,
327                                        rec->lrh_len);
328                         }
329                 }
330                 test_3_rec_off += rec->lrh_len;
331         }
332
333         cur_idx += test_3_paddings;
334         if (cur_idx != rec->lrh_index)
335                 CERROR("Record with wrong index was read: %u, expected %u\n",
336                        rec->lrh_index, cur_idx);
337
338         /* modify all records in place */
339         lgr->lgr_gen.conn_cnt = rec->lrh_index;
340         rc = llog_write(env, lgh, rec, rec->lrh_index);
341         if (rc < 0)
342                 CERROR("cb_test_3: cannot modify record while processing\n");
343
344         /*
345          * Add new record to the llog at *last_rec position one by one to
346          * check that last block is re-read during processing
347          */
348         if (cur_idx == *last_rec || cur_idx == (*last_rec + 1)) {
349                 rc = llog_write(env, lgh, rec, LLOG_NEXT_IDX);
350                 if (rc < 0)
351                         CERROR("cb_test_3: cannot add new record while "
352                                "processing\n");
353         }
354         test_3_rec_num++;
355
356         return rc;
357 }
358
359 /* Check in-place modifications were done for all records*/
360 static int test3_check_cb(const struct lu_env *env, struct llog_handle *lgh,
361                           struct llog_rec_hdr *rec, void *data)
362 {
363         struct llog_gen_rec *lgr = (struct llog_gen_rec *)rec;
364
365         if (lgr->lgr_gen.conn_cnt != rec->lrh_index) {
366                 CERROR("cb_test_3: record %u is not modified\n",
367                        rec->lrh_index);
368                 return -EINVAL;
369         }
370         test_3_rec_num++;
371         return 0;
372 }
373
374 static int llog_test3_process(const struct lu_env *env,
375                               struct llog_handle *lgh,
376                               llog_cb_t cb, int start)
377 {
378         struct llog_process_cat_data cd;
379         int last_idx; /* new record will be injected here */
380         int rc = 0;
381
382         CWARN("test3: processing records from index %d to the end\n",
383               start);
384         cd.lpcd_first_idx = start - 1;
385         cd.lpcd_last_idx = 0;
386         test_3_rec_num = test_3_paddings = 0;
387         last_idx = lgh->lgh_last_idx;
388         rc = llog_process(env, lgh, cb, &last_idx, &cd);
389         if (rc < 0)
390                 return rc;
391         CWARN("test3: total %u records processed with %u paddings\n",
392               test_3_rec_num, test_3_paddings);
393         return test_3_rec_num;
394 }
395
396 /* Test plain llog functionality */
397 static int llog_test_3(const struct lu_env *env, struct obd_device *obd,
398                        struct llog_handle *llh)
399 {
400         char buf[128];
401         struct llog_rec_hdr *hdr = (void *)buf;
402         int rc, i;
403         int num_recs = 1; /* 1 for the header */
404         int expected;
405
406         ENTRY;
407
408         hdr->lrh_len = sizeof(struct llog_gen_rec);
409         hdr->lrh_type = LLOG_GEN_REC;
410         llh->lgh_hdr->llh_size = sizeof(struct llog_gen_rec);
411         llh->lgh_hdr->llh_flags |= LLOG_F_IS_FIXSIZE;
412
413         /*
414          * Fill the llog with 64-bytes records, use 1023 records,
415          * so last chunk will be partially full. Don't change this
416          * value until record size is changed.
417          */
418         CWARN("3a: write 1023 fixed-size llog records\n");
419         for (i = 0; i < 1023; i++) {
420                 rc = llog_write(env, llh, hdr, LLOG_NEXT_IDX);
421                 if (rc < 0) {
422                         CERROR("3a: write 1023 records failed at #%d: %d\n",
423                                i + 1, rc);
424                         RETURN(rc);
425                 }
426                 num_recs++;
427         }
428
429         rc = verify_handle("3a", llh, num_recs);
430         if (rc)
431                 RETURN(rc);
432
433         /*
434          * Test fixed-size records processing:
435          * - search the needed index
436          * - go through all records from that index
437          * - check all indices are growing monotonically and exist
438          * - modify each record
439          *
440          * NB: test3_check_n_add adds two new records while processing
441          * after last record. There were 1023 records created so the last chunk
442          * misses exactly one record. Therefore one of new records will be
443          * the last in the current chunk and second causes the new chunk to be
444          * created.
445          */
446         test_3_rec_off = 0;
447         test_3_start_idx = 501;
448         expected = 525;
449         rc = llog_test3_process(env, llh, test3_check_n_add_cb,
450                                 test_3_start_idx);
451         if (rc < 0)
452                 RETURN(rc);
453
454         /* extra record is created during llog_process() */
455         if (rc != expected) {
456                 CERROR("3a: process total %d records but expect %d\n",
457                        rc, expected);
458                 RETURN(-ERANGE);
459         }
460
461         num_recs += 2;
462
463         /* test modification in place */
464         rc = llog_test3_process(env, llh, test3_check_cb, test_3_start_idx);
465         if (rc < 0)
466                 RETURN(rc);
467
468         if (rc != expected) {
469                 CERROR("3a: process total %d records but expect %d\n",
470                        rc, expected);
471                 RETURN(-ERANGE);
472         }
473
474         CWARN("3b: write 566 variable size llog records\n");
475
476         /*
477          * Drop llh_size to 0 to mark llog as variable-size and write
478          * header to make this change permanent.
479          */
480         llh->lgh_hdr->llh_flags &= ~LLOG_F_IS_FIXSIZE;
481         llog_write(env, llh, &llh->lgh_hdr->llh_hdr, LLOG_HEADER_IDX);
482
483         hdr->lrh_type = OBD_CFG_REC;
484
485         /*
486          * there are 1025 64-bytes records in llog already,
487          * the last chunk contains single record, i.e. 64 bytes.
488          * Each pair of variable size records is 200 bytes, so
489          * we will have the following distribution per chunks:
490          * block 1: 64 + 80(80/120) + 80 + 48(pad) = 81 iterations
491          * block 2: 80(120/80) + 120 + 72(pad) = 81 itereations
492          * block 3: 80(80/120) + 80 + 112(pad) = 81 iterations
493          * -- the same as block 2 again and so on.
494          * block 7: 80(80/120) = 80 iterations and 192 bytes remain
495          * Total 6 * 81 + 80 = 566 itereations.
496          * Callback will add another 120 bytes in the end of the last chunk
497          * and another 120 bytes will cause padding (72 bytes) plus 120
498          * bytes in the new block.
499          */
500         for (i = 0; i < 566; i++) {
501                 if ((i % 2) == 0)
502                         hdr->lrh_len = 80;
503                 else
504                         hdr->lrh_len = 120;
505
506                 rc = llog_write(env, llh, hdr, LLOG_NEXT_IDX);
507                 if (rc < 0) {
508                         CERROR("3b: write 566 records failed at #%d: %d\n",
509                                i + 1, rc);
510                         RETURN(rc);
511                 }
512                 num_recs++;
513         }
514
515         rc = verify_handle("3b", llh, num_recs);
516         if (rc)
517                 RETURN(rc);
518
519         test_3_start_idx = 1026;
520         expected = 568;
521         rc = llog_test3_process(env, llh, test3_check_n_add_cb,
522                                 test_3_start_idx);
523         if (rc < 0)
524                 RETURN(rc);
525
526         if (rc != expected) {
527                 CERROR("3b: process total %d records but expect %d\n",
528                        rc, expected);
529                 RETURN(-ERANGE);
530         }
531
532         num_recs += 2;
533
534         /* test modification in place */
535         rc = llog_test3_process(env, llh, test3_check_cb, test_3_start_idx);
536         if (rc < 0)
537                 RETURN(rc);
538
539         if (rc != expected) {
540                 CERROR("3b: process total %d records but expect %d\n",
541                        rc, expected);
542                 RETURN(-ERANGE);
543         }
544
545         CWARN("3c: write records with variable size until BITMAP_SIZE, "
546               "return -ENOSPC\n");
547         while (num_recs < LLOG_HDR_BITMAP_SIZE(llh->lgh_hdr)) {
548                 if ((num_recs % 2) == 0)
549                         hdr->lrh_len = 80;
550                 else
551                         hdr->lrh_len = 128;
552
553                 rc = llog_write(env, llh, hdr, LLOG_NEXT_IDX);
554                 if (rc == -ENOSPC) {
555                         break;
556                 } else if (rc < 0) {
557                         CERROR("3c: write recs failed at #%d: %d\n",
558                                num_recs, rc);
559                         RETURN(rc);
560                 }
561                 num_recs++;
562         }
563
564         if (rc != -ENOSPC) {
565                 CWARN("3c: write record more than BITMAP size!\n");
566                 RETURN(-EINVAL);
567         }
568         CWARN("3c: wrote %d more records before end of llog is reached\n",
569               num_recs);
570
571         rc = verify_handle("3c", llh, num_recs);
572
573         RETURN(rc);
574 }
575
576 /* Test catalogue additions */
577 static int llog_test_4(const struct lu_env *env, struct obd_device *obd)
578 {
579         struct llog_handle *cath, *llh;
580         char name[10];
581         int rc, rc2, i, buflen;
582         struct llog_mini_rec lmr;
583         struct llog_cookie cookie;
584         struct llog_ctxt *ctxt;
585         int num_recs = 0;
586         char *buf;
587         struct llog_rec_hdr *rec;
588
589         ENTRY;
590
591         ctxt = llog_get_context(obd, LLOG_TEST_ORIG_CTXT);
592         LASSERT(ctxt);
593
594         lmr.lmr_hdr.lrh_len = lmr.lmr_tail.lrt_len = LLOG_MIN_REC_SIZE;
595         lmr.lmr_hdr.lrh_type = 0xf00f00;
596
597         sprintf(name, "%x", llog_test_rand + 1);
598         CWARN("4a: create a catalog log with name: %s\n", name);
599         rc = llog_open_create(env, ctxt, &cath, NULL, name);
600         if (rc) {
601                 CERROR("4a: llog_create with name %s failed: %d\n", name, rc);
602                 GOTO(ctxt_release, rc);
603         }
604         rc = llog_init_handle(env, cath, LLOG_F_IS_CAT, &uuid);
605         if (rc) {
606                 CERROR("4a: can't init llog handle: %d\n", rc);
607                 GOTO(out, rc);
608         }
609
610         num_recs++;
611         cat_logid = cath->lgh_id;
612
613         CWARN("4b: write 1 record into the catalog\n");
614         rc = llog_cat_add(env, cath, &lmr.lmr_hdr, &cookie);
615         if (rc != 1) {
616                 CERROR("4b: write 1 catalog record failed at: %d\n", rc);
617                 GOTO(out, rc);
618         }
619         num_recs++;
620         rc = verify_handle("4b", cath, 2);
621         if (rc)
622                 GOTO(out, rc);
623
624         rc = verify_handle("4b", cath->u.chd.chd_current_log, num_recs);
625         if (rc)
626                 GOTO(out, rc);
627
628         /* estimate the max number of record for the plain llog
629          * cause it depends on disk size
630          */
631         llh = cath->u.chd.chd_current_log;
632         if (llh->lgh_max_size != 0) {
633                 llog_test_recnum = (llh->lgh_max_size -
634                         sizeof(struct llog_log_hdr)) / LLOG_MIN_REC_SIZE;
635         }
636
637         if (llog_test_recnum >= LLOG_HDR_BITMAP_SIZE(llh->lgh_hdr))
638                 llog_test_recnum = LLOG_HDR_BITMAP_SIZE(llh->lgh_hdr) - 1;
639
640         CWARN("4c: cancel 1 log record\n");
641         rc = llog_cat_cancel_records(env, cath, 1, &cookie);
642         if (rc) {
643                 CERROR("4c: cancel 1 catalog based record failed: %d\n", rc);
644                 GOTO(out, rc);
645         }
646         num_recs--;
647
648         rc = verify_handle("4c", cath->u.chd.chd_current_log, num_recs);
649         if (rc)
650                 GOTO(out, rc);
651
652         CWARN("4d: write %d more log records\n", llog_test_recnum);
653         for (i = 0; i < llog_test_recnum; i++) {
654                 rc = llog_cat_add(env, cath, &lmr.lmr_hdr, NULL);
655                 if (rc) {
656                         CERROR("4d: write %d records failed at #%d: %d\n",
657                                llog_test_recnum, i + 1, rc);
658                         GOTO(out, rc);
659                 }
660                 num_recs++;
661         }
662
663         /* make sure new plain llog appears */
664         rc = verify_handle("4d", cath, 3);
665         if (rc)
666                 GOTO(out, rc);
667
668         CWARN("4e: add 5 large records, one record per block\n");
669         buflen = LLOG_MIN_CHUNK_SIZE;
670         OBD_ALLOC(buf, buflen);
671         if (buf == NULL)
672                 GOTO(out, rc = -ENOMEM);
673         for (i = 0; i < 5; i++) {
674                 rec = (void *)buf;
675                 rec->lrh_len = buflen;
676                 rec->lrh_type = OBD_CFG_REC;
677                 rc = llog_cat_add(env, cath, rec, NULL);
678                 if (rc) {
679                         CERROR("4e: write 5 records failed at #%d: %d\n",
680                                i + 1, rc);
681                         GOTO(out_free, rc);
682                 }
683                 num_recs++;
684         }
685 out_free:
686         OBD_FREE(buf, buflen);
687 out:
688         CWARN("4f: put newly-created catalog\n");
689         rc2 = llog_cat_close(env, cath);
690         if (rc2) {
691                 CERROR("4: close log %s failed: %d\n", name, rc2);
692                 if (rc == 0)
693                         rc = rc2;
694         }
695 ctxt_release:
696         llog_ctxt_put(ctxt);
697         RETURN(rc);
698 }
699
700 static int cat_counter;
701
702 static int cat_print_cb(const struct lu_env *env, struct llog_handle *llh,
703                         struct llog_rec_hdr *rec, void *data)
704 {
705         struct llog_logid_rec *lir = (struct llog_logid_rec *)rec;
706         struct lu_fid fid = {0};
707
708         if (rec->lrh_type != LLOG_LOGID_MAGIC) {
709                 CERROR("invalid record in catalog\n");
710                 RETURN(-EINVAL);
711         }
712
713         logid_to_fid(&lir->lid_id, &fid);
714
715         CWARN("seeing record at index %d - "DFID" in log "DFID"\n",
716               rec->lrh_index, PFID(&fid),
717               PFID(lu_object_fid(&llh->lgh_obj->do_lu)));
718
719         cat_counter++;
720
721         RETURN(0);
722 }
723
724 static int plain_counter;
725
726 static int plain_print_cb(const struct lu_env *env, struct llog_handle *llh,
727                           struct llog_rec_hdr *rec, void *data)
728 {
729         struct lu_fid fid = {0};
730
731         if (!(llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN)) {
732                 CERROR("log is not plain\n");
733                 RETURN(-EINVAL);
734         }
735
736         logid_to_fid(&llh->lgh_id, &fid);
737
738         CDEBUG(D_INFO, "seeing record at index %d in log "DFID"\n",
739                rec->lrh_index, PFID(&fid));
740
741         plain_counter++;
742
743         RETURN(0);
744 }
745
746 static int cancel_count;
747
748 static int llog_cancel_rec_cb(const struct lu_env *env,
749                               struct llog_handle *llh,
750                               struct llog_rec_hdr *rec, void *data)
751 {
752         struct llog_cookie cookie;
753
754         if (!(llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN)) {
755                 CERROR("log is not plain\n");
756                 RETURN(-EINVAL);
757         }
758
759         cookie.lgc_lgl = llh->lgh_id;
760         cookie.lgc_index = rec->lrh_index;
761
762         llog_cat_cancel_records(env, llh->u.phd.phd_cat_handle, 1, &cookie);
763         cancel_count++;
764         if (cancel_count == llog_test_recnum)
765                 RETURN(-LLOG_EEMPTY);
766         RETURN(0);
767 }
768
769 /* Test log and catalogue processing */
770 static int llog_test_5(const struct lu_env *env, struct obd_device *obd)
771 {
772         struct llog_handle *llh = NULL;
773         char name[10];
774         int rc, rc2;
775         struct llog_mini_rec lmr;
776         struct llog_ctxt *ctxt;
777
778         ENTRY;
779
780         ctxt = llog_get_context(obd, LLOG_TEST_ORIG_CTXT);
781         LASSERT(ctxt);
782
783         lmr.lmr_hdr.lrh_len = lmr.lmr_tail.lrt_len = LLOG_MIN_REC_SIZE;
784         lmr.lmr_hdr.lrh_type = 0xf00f00;
785
786         CWARN("5a: re-open catalog by id\n");
787         rc = llog_open(env, ctxt, &llh, &cat_logid, NULL, LLOG_OPEN_EXISTS);
788         if (rc) {
789                 CERROR("5a: llog_create with logid failed: %d\n", rc);
790                 GOTO(out_put, rc);
791         }
792
793         rc = llog_init_handle(env, llh, LLOG_F_IS_CAT, &uuid);
794         if (rc) {
795                 CERROR("5a: can't init llog handle: %d\n", rc);
796                 GOTO(out, rc);
797         }
798
799         CWARN("5b: print the catalog entries.. we expect 2\n");
800         cat_counter = 0;
801         rc = llog_process(env, llh, cat_print_cb, "test 5", NULL);
802         if (rc) {
803                 CERROR("5b: process with cat_print_cb failed: %d\n", rc);
804                 GOTO(out, rc);
805         }
806         if (cat_counter != 2) {
807                 CERROR("5b: %d entries in catalog\n", cat_counter);
808                 GOTO(out, rc = -EINVAL);
809         }
810
811         CWARN("5c: Cancel %d records, see one log zapped\n", llog_test_recnum);
812         cancel_count = 0;
813         rc = llog_cat_process(env, llh, llog_cancel_rec_cb, "foobar", 0, 0);
814         if (rc != -LLOG_EEMPTY) {
815                 CERROR("5c: process with llog_cancel_rec_cb failed: %d\n", rc);
816                 GOTO(out, rc);
817         }
818
819         CWARN("5c: print the catalog entries.. we expect 1\n");
820         cat_counter = 0;
821         rc = llog_process(env, llh, cat_print_cb, "test 5", NULL);
822         if (rc) {
823                 CERROR("5c: process with cat_print_cb failed: %d\n", rc);
824                 GOTO(out, rc);
825         }
826         if (cat_counter != 1) {
827                 CERROR("5c: %d entries in catalog\n", cat_counter);
828                 GOTO(out, rc = -EINVAL);
829         }
830
831         CWARN("5d: add 1 record to the log with many canceled empty pages\n");
832         rc = llog_cat_add(env, llh, &lmr.lmr_hdr, NULL);
833         if (rc) {
834                 CERROR("5d: add record to the log with many canceled empty "
835                        "pages failed\n");
836                 GOTO(out, rc);
837         }
838
839         CWARN("5e: print plain log entries.. expect 6\n");
840         plain_counter = 0;
841         rc = llog_cat_process(env, llh, plain_print_cb, "foobar", 0, 0);
842         if (rc) {
843                 CERROR("5e: process with plain_print_cb failed: %d\n", rc);
844                 GOTO(out, rc);
845         }
846         if (plain_counter != 6) {
847                 CERROR("5e: found %d records\n", plain_counter);
848                 GOTO(out, rc = -EINVAL);
849         }
850
851         CWARN("5f: print plain log entries reversely.. expect 6\n");
852         plain_counter = 0;
853         rc = llog_cat_reverse_process(env, llh, plain_print_cb, "foobar");
854         if (rc) {
855                 CERROR("5f: reversely process with plain_print_cb failed: "
856                        "%d\n", rc);
857                 GOTO(out, rc);
858         }
859         if (plain_counter != 6) {
860                 CERROR("5f: found %d records\n", plain_counter);
861                 GOTO(out, rc = -EINVAL);
862         }
863
864 out:
865         CWARN("5g: close re-opened catalog\n");
866         rc2 = llog_cat_close(env, llh);
867         if (rc2) {
868                 CERROR("5g: close log %s failed: %d\n", name, rc2);
869                 if (rc == 0)
870                         rc = rc2;
871         }
872 out_put:
873         llog_ctxt_put(ctxt);
874
875         RETURN(rc);
876 }
877
878 /* Test client api; open log by name and process */
879 static int llog_test_6(const struct lu_env *env, struct obd_device *obd,
880                        char *name)
881 {
882         struct obd_device *mgc_obd;
883         struct llog_ctxt *ctxt;
884         struct obd_uuid *mgs_uuid;
885         struct obd_export *exp;
886         struct obd_uuid uuid = { "LLOG_TEST6_UUID" };
887         struct llog_handle *llh = NULL;
888         struct llog_ctxt *nctxt;
889         int rc, rc2;
890
891         ctxt = llog_get_context(obd, LLOG_TEST_ORIG_CTXT);
892         LASSERT(ctxt);
893         mgs_uuid = &ctxt->loc_exp->exp_obd->obd_uuid;
894
895         CWARN("6a: re-open log %s using client API\n", name);
896         mgc_obd = class_find_client_obd(mgs_uuid, LUSTRE_MGC_NAME, NULL);
897         if (mgc_obd == NULL) {
898                 CERROR("6a: no MGC devices connected to %s found.\n",
899                        mgs_uuid->uuid);
900                 GOTO(ctxt_release, rc = -ENOENT);
901         }
902
903         rc = obd_connect(NULL, &exp, mgc_obd, &uuid,
904                          NULL /* obd_connect_data */, NULL);
905         if (rc != -EALREADY) {
906                 CERROR("6a: connect on connected MGC (%s) failed to return"
907                        " -EALREADY\n", mgc_obd->obd_name);
908                 if (rc == 0)
909                         obd_disconnect(exp);
910                 GOTO(ctxt_release, rc = -EINVAL);
911         }
912
913         nctxt = llog_get_context(mgc_obd, LLOG_CONFIG_REPL_CTXT);
914         rc = llog_open(env, nctxt, &llh, NULL, name, LLOG_OPEN_EXISTS);
915         if (rc) {
916                 CERROR("6a: llog_open failed %d\n", rc);
917                 GOTO(nctxt_put, rc);
918         }
919
920         rc = llog_init_handle(env, llh, LLOG_F_IS_PLAIN, NULL);
921         if (rc) {
922                 CERROR("6a: llog_init_handle failed %d\n", rc);
923                 GOTO(parse_out, rc);
924         }
925
926         plain_counter = 1; /* llog header is first record */
927         CWARN("6b: process log %s using client API\n", name);
928         rc = llog_process(env, llh, plain_print_cb, NULL, NULL);
929         if (rc)
930                 CERROR("6b: llog_process failed %d\n", rc);
931         CWARN("6b: processed %d records\n", plain_counter);
932
933         rc = verify_handle("6b", llh, plain_counter);
934         if (rc)
935                 GOTO(parse_out, rc);
936
937         plain_counter = 1; /* llog header is first record */
938         CWARN("6c: process log %s reversely using client API\n", name);
939         rc = llog_reverse_process(env, llh, plain_print_cb, NULL, NULL);
940         if (rc)
941                 CERROR("6c: llog_reverse_process failed %d\n", rc);
942         CWARN("6c: processed %d records\n", plain_counter);
943
944         rc = verify_handle("6c", llh, plain_counter);
945         if (rc)
946                 GOTO(parse_out, rc);
947
948 parse_out:
949         rc2 = llog_close(env, llh);
950         if (rc2) {
951                 CERROR("6: llog_close failed: rc = %d\n", rc2);
952                 if (rc == 0)
953                         rc = rc2;
954         }
955 nctxt_put:
956         llog_ctxt_put(nctxt);
957 ctxt_release:
958         llog_ctxt_put(ctxt);
959         RETURN(rc);
960 }
961
962 static union {
963         struct llog_rec_hdr             lrh;   /* common header */
964         struct llog_logid_rec           llr;   /* LLOG_LOGID_MAGIC */
965         struct llog_unlink64_rec        lur;   /* MDS_UNLINK64_REC */
966         struct llog_setattr64_rec       lsr64; /* MDS_SETATTR64_REC */
967         struct llog_setattr64_rec_v2    lsr64_v2; /* MDS_SETATTR64_REC */
968         struct llog_size_change_rec     lscr;  /* OST_SZ_REC */
969         struct llog_changelog_rec       lcr;   /* CHANGELOG_REC */
970         struct llog_changelog_user_rec  lcur;  /* CHANGELOG_USER_REC */
971         struct llog_gen_rec             lgr;   /* LLOG_GEN_REC */
972 } llog_records;
973
974 static int test_7_print_cb(const struct lu_env *env, struct llog_handle *llh,
975                            struct llog_rec_hdr *rec, void *data)
976 {
977         struct lu_fid fid = {0};
978
979         logid_to_fid(&llh->lgh_id, &fid);
980
981         CDEBUG(D_OTHER, "record type %#x at index %d in log "DFID"\n",
982                rec->lrh_type, rec->lrh_index, PFID(&fid));
983
984         plain_counter++;
985         return 0;
986 }
987
988 static int test_7_cancel_cb(const struct lu_env *env, struct llog_handle *llh,
989                             struct llog_rec_hdr *rec, void *data)
990 {
991         plain_counter++;
992         /* test LLOG_DEL_RECORD is working */
993         return LLOG_DEL_RECORD;
994 }
995
996 static int llog_test_7_sub(const struct lu_env *env, struct llog_ctxt *ctxt)
997 {
998         struct llog_handle *llh;
999         int rc = 0, i, process_count;
1000         int num_recs = 0;
1001
1002         ENTRY;
1003
1004         rc = llog_open_create(env, ctxt, &llh, NULL, NULL);
1005         if (rc) {
1006                 CERROR("7_sub: create log failed\n");
1007                 RETURN(rc);
1008         }
1009
1010         rc = llog_init_handle(env, llh,
1011                               LLOG_F_IS_PLAIN | LLOG_F_ZAP_WHEN_EMPTY,
1012                               &uuid);
1013         if (rc) {
1014                 CERROR("7_sub: can't init llog handle: %d\n", rc);
1015                 GOTO(out_close, rc);
1016         }
1017         for (i = 0; i < LLOG_HDR_BITMAP_SIZE(llh->lgh_hdr); i++) {
1018                 rc = llog_write(env, llh, &llog_records.lrh, LLOG_NEXT_IDX);
1019                 if (rc == -ENOSPC) {
1020                         break;
1021                 } else if (rc < 0) {
1022                         CERROR("7_sub: write recs failed at #%d: %d\n",
1023                                i + 1, rc);
1024                         GOTO(out_close, rc);
1025                 }
1026                 num_recs++;
1027         }
1028         if (rc != -ENOSPC) {
1029                 CWARN("7_sub: write record more than BITMAP size!\n");
1030                 GOTO(out_close, rc = -EINVAL);
1031         }
1032
1033         rc = verify_handle("7_sub", llh, num_recs + 1);
1034         if (rc) {
1035                 CERROR("7_sub: verify handle failed: %d\n", rc);
1036                 GOTO(out_close, rc);
1037         }
1038         if (num_recs < LLOG_HDR_BITMAP_SIZE(llh->lgh_hdr) - 1)
1039                 CWARN("7_sub: records are not aligned, written %d from %u\n",
1040                       num_recs, LLOG_HDR_BITMAP_SIZE(llh->lgh_hdr) - 1);
1041
1042         plain_counter = 0;
1043         rc = llog_process(env, llh, test_7_print_cb, "test 7", NULL);
1044         if (rc) {
1045                 CERROR("7_sub: llog process failed: %d\n", rc);
1046                 GOTO(out_close, rc);
1047         }
1048         process_count = plain_counter;
1049         if (process_count != num_recs) {
1050                 CERROR("7_sub: processed %d records from %d total\n",
1051                        process_count, num_recs);
1052                 GOTO(out_close, rc = -EINVAL);
1053         }
1054
1055         plain_counter = 0;
1056         rc = llog_reverse_process(env, llh, test_7_cancel_cb, "test 7", NULL);
1057         if (rc && rc != LLOG_DEL_PLAIN) {
1058                 CERROR("7_sub: reverse llog process failed: %d\n", rc);
1059                 GOTO(out_close, rc);
1060         }
1061         if (process_count != plain_counter) {
1062                 CERROR("7_sub: Reverse/direct processing found different"
1063                        "number of records: %d/%d\n",
1064                        plain_counter, process_count);
1065                 GOTO(out_close, rc = -EINVAL);
1066         }
1067         if (llog_exist(llh)) {
1068                 CERROR("7_sub: llog exists but should be zapped\n");
1069                 GOTO(out_close, rc = -EEXIST);
1070         }
1071
1072         rc = verify_handle("7_sub", llh, 1);
1073 out_close:
1074         if (rc)
1075                 llog_destroy(env, llh);
1076         llog_close(env, llh);
1077         RETURN(rc);
1078 }
1079
1080 /* Test all llog records writing and processing */
1081 static int llog_test_7(const struct lu_env *env, struct obd_device *obd)
1082 {
1083         struct llog_ctxt *ctxt;
1084         int rc;
1085
1086         ENTRY;
1087
1088         ctxt = llog_get_context(obd, LLOG_TEST_ORIG_CTXT);
1089
1090         CWARN("7a: test llog_logid_rec\n");
1091         llog_records.llr.lid_hdr.lrh_len = sizeof(llog_records.llr);
1092         llog_records.llr.lid_tail.lrt_len = sizeof(llog_records.llr);
1093         llog_records.llr.lid_hdr.lrh_type = LLOG_LOGID_MAGIC;
1094
1095         rc = llog_test_7_sub(env, ctxt);
1096         if (rc) {
1097                 CERROR("7a: llog_logid_rec test failed\n");
1098                 GOTO(out, rc);
1099         }
1100
1101         CWARN("7b: test llog_unlink64_rec\n");
1102         llog_records.lur.lur_hdr.lrh_len = sizeof(llog_records.lur);
1103         llog_records.lur.lur_tail.lrt_len = sizeof(llog_records.lur);
1104         llog_records.lur.lur_hdr.lrh_type = MDS_UNLINK64_REC;
1105
1106         rc = llog_test_7_sub(env, ctxt);
1107         if (rc) {
1108                 CERROR("7b: llog_unlink_rec test failed\n");
1109                 GOTO(out, rc);
1110         }
1111
1112         CWARN("7c: test llog_setattr64_rec\n");
1113         llog_records.lsr64.lsr_hdr.lrh_len = sizeof(llog_records.lsr64);
1114         llog_records.lsr64.lsr_tail.lrt_len = sizeof(llog_records.lsr64);
1115         llog_records.lsr64.lsr_hdr.lrh_type = MDS_SETATTR64_REC;
1116
1117         rc = llog_test_7_sub(env, ctxt);
1118         if (rc) {
1119                 CERROR("7c: llog_setattr64_rec test failed\n");
1120                 GOTO(out, rc);
1121         }
1122
1123         CWARN("7d: test llog_size_change_rec\n");
1124         llog_records.lscr.lsc_hdr.lrh_len = sizeof(llog_records.lscr);
1125         llog_records.lscr.lsc_tail.lrt_len = sizeof(llog_records.lscr);
1126         llog_records.lscr.lsc_hdr.lrh_type = OST_SZ_REC;
1127
1128         rc = llog_test_7_sub(env, ctxt);
1129         if (rc) {
1130                 CERROR("7d: llog_size_change_rec test failed\n");
1131                 GOTO(out, rc);
1132         }
1133
1134         CWARN("7e: test llog_changelog_rec\n");
1135         /* Direct access to cr_do_not_use: peculiar case for this test */
1136         llog_records.lcr.cr_hdr.lrh_len = sizeof(llog_records.lcr);
1137         llog_records.lcr.cr_do_not_use.lrt_len = sizeof(llog_records.lcr);
1138         llog_records.lcr.cr_hdr.lrh_type = CHANGELOG_REC;
1139
1140         rc = llog_test_7_sub(env, ctxt);
1141         if (rc) {
1142                 CERROR("7e: llog_changelog_rec test failed\n");
1143                 GOTO(out, rc);
1144         }
1145
1146         CWARN("7f: test llog_changelog_user_rec\n");
1147         llog_records.lcur.cur_hdr.lrh_len = sizeof(llog_records.lcur);
1148         llog_records.lcur.cur_tail.lrt_len = sizeof(llog_records.lcur);
1149         llog_records.lcur.cur_hdr.lrh_type = CHANGELOG_USER_REC;
1150
1151         rc = llog_test_7_sub(env, ctxt);
1152         if (rc) {
1153                 CERROR("7f: llog_changelog_user_rec test failed\n");
1154                 GOTO(out, rc);
1155         }
1156
1157         CWARN("7g: test llog_gen_rec\n");
1158         llog_records.lgr.lgr_hdr.lrh_len = sizeof(llog_records.lgr);
1159         llog_records.lgr.lgr_tail.lrt_len = sizeof(llog_records.lgr);
1160         llog_records.lgr.lgr_hdr.lrh_type = LLOG_GEN_REC;
1161
1162         rc = llog_test_7_sub(env, ctxt);
1163         if (rc) {
1164                 CERROR("7g: llog_size_change_rec test failed\n");
1165                 GOTO(out, rc);
1166         }
1167
1168         CWARN("7h: test llog_setattr64_rec_v2\n");
1169         llog_records.lsr64.lsr_hdr.lrh_len = sizeof(llog_records.lsr64_v2);
1170         llog_records.lsr64.lsr_tail.lrt_len = sizeof(llog_records.lsr64_v2);
1171         llog_records.lsr64.lsr_hdr.lrh_type = MDS_SETATTR64_REC;
1172
1173         rc = llog_test_7_sub(env, ctxt);
1174         if (rc) {
1175                 CERROR("7h: llog_setattr64_rec_v2 test failed\n");
1176                 GOTO(out, rc);
1177         }
1178 out:
1179         llog_ctxt_put(ctxt);
1180         RETURN(rc);
1181 }
1182
1183 static int test_8_cb(const struct lu_env *env, struct llog_handle *llh,
1184                           struct llog_rec_hdr *rec, void *data)
1185 {
1186         plain_counter++;
1187         return 0;
1188 }
1189
1190 static int llog_test_8(const struct lu_env *env, struct obd_device *obd)
1191 {
1192         struct llog_handle *llh = NULL;
1193         char name[10];
1194         int rc, rc2, i;
1195         int orig_counter;
1196         struct llog_mini_rec lmr;
1197         struct llog_ctxt *ctxt;
1198         struct dt_object *obj = NULL;
1199
1200         ENTRY;
1201
1202         ctxt = llog_get_context(obd, LLOG_TEST_ORIG_CTXT);
1203         LASSERT(ctxt);
1204
1205         lmr.lmr_hdr.lrh_len = lmr.lmr_tail.lrt_len = LLOG_MIN_REC_SIZE;
1206         lmr.lmr_hdr.lrh_type = 0xf00f00;
1207
1208         CWARN("8a: fill the first plain llog\n");
1209         rc = llog_open(env, ctxt, &llh, &cat_logid, NULL, LLOG_OPEN_EXISTS);
1210         if (rc) {
1211                 CERROR("8a: llog_create with logid failed: %d\n", rc);
1212                 GOTO(out_put, rc);
1213         }
1214
1215         rc = llog_init_handle(env, llh, LLOG_F_IS_CAT, &uuid);
1216         if (rc) {
1217                 CERROR("8a: can't init llog handle: %d\n", rc);
1218                 GOTO(out, rc);
1219         }
1220
1221         plain_counter = 0;
1222         rc = llog_cat_process(env, llh, test_8_cb, "foobar", 0, 0);
1223         if (rc != 0) {
1224                 CERROR("5a: process with test_8_cb failed: %d\n", rc);
1225                 GOTO(out, rc);
1226         }
1227         orig_counter = plain_counter;
1228
1229         for (i = 0; i < 100; i++) {
1230                 rc = llog_cat_add(env, llh, &lmr.lmr_hdr, NULL);
1231                 if (rc) {
1232                         CERROR("5a: add record failed\n");
1233                         GOTO(out, rc);
1234                 }
1235         }
1236
1237         /* grab the current plain llog, we'll corrupt it later */
1238         obj = llh->u.chd.chd_current_log->lgh_obj;
1239         LASSERT(obj);
1240         lu_object_get(&obj->do_lu);
1241         CWARN("8a: pin llog "DFID"\n", PFID(lu_object_fid(&obj->do_lu)));
1242
1243         rc2 = llog_cat_close(env, llh);
1244         if (rc2) {
1245                 CERROR("8a: close log %s failed: %d\n", name, rc2);
1246                 if (rc == 0)
1247                         rc = rc2;
1248                 GOTO(out_put, rc);
1249         }
1250
1251         CWARN("8b: fill the second plain llog\n");
1252         rc = llog_open(env, ctxt, &llh, &cat_logid, NULL, LLOG_OPEN_EXISTS);
1253         if (rc) {
1254                 CERROR("8b: llog_create with logid failed: %d\n", rc);
1255                 GOTO(out_put, rc);
1256         }
1257
1258         rc = llog_init_handle(env, llh, LLOG_F_IS_CAT, &uuid);
1259         if (rc) {
1260                 CERROR("8b: can't init llog handle: %d\n", rc);
1261                 GOTO(out, rc);
1262         }
1263
1264         for (i = 0; i < 100; i++) {
1265                 rc = llog_cat_add(env, llh, &lmr.lmr_hdr, NULL);
1266                 if (rc) {
1267                         CERROR("8b: add record failed\n");
1268                         GOTO(out, rc);
1269                 }
1270         }
1271         CWARN("8b: second llog "DFID"\n",
1272               PFID(lu_object_fid(&llh->u.chd.chd_current_log->lgh_obj->do_lu)));
1273
1274         rc2 = llog_cat_close(env, llh);
1275         if (rc2) {
1276                 CERROR("8b: close log %s failed: %d\n", name, rc2);
1277                 if (rc == 0)
1278                         rc = rc2;
1279                 GOTO(out_put, rc);
1280         }
1281
1282         /* Here was 8c: drop two records from the first plain llog
1283          * llog_truncate was bad idea cause it creates a wrong state,
1284          * lgh_last_idx is wrong and two records belongs to zeroed buffer
1285          */
1286
1287         CWARN("8d: count survived records\n");
1288         rc = llog_open(env, ctxt, &llh, &cat_logid, NULL, LLOG_OPEN_EXISTS);
1289         if (rc) {
1290                 CERROR("8d: llog_create with logid failed: %d\n", rc);
1291                 GOTO(out_put, rc);
1292         }
1293
1294         rc = llog_init_handle(env, llh, LLOG_F_IS_CAT, &uuid);
1295         if (rc) {
1296                 CERROR("8d: can't init llog handle: %d\n", rc);
1297                 GOTO(out, rc);
1298         }
1299
1300         plain_counter = 0;
1301         rc = llog_cat_process(env, llh, test_8_cb, "foobar", 0, 0);
1302         if (rc != 0) {
1303                 CERROR("8d: process with test_8_cb failed: %d\n", rc);
1304                 GOTO(out, rc);
1305         }
1306
1307         if (orig_counter + 200 != plain_counter) {
1308                 CERROR("found %d records (expected %d)\n", plain_counter,
1309                        orig_counter + 200);
1310                 rc = -EIO;
1311         }
1312
1313 out:
1314         CWARN("8d: close re-opened catalog\n");
1315         rc2 = llog_cat_close(env, llh);
1316         if (rc2) {
1317                 CERROR("8d: close log %s failed: %d\n", name, rc2);
1318                 if (rc == 0)
1319                         rc = rc2;
1320         }
1321 out_put:
1322         llog_ctxt_put(ctxt);
1323
1324         if (obj != NULL)
1325                 dt_object_put(env, obj);
1326
1327         RETURN(rc);
1328 }
1329
1330 static int llog_test_9_sub(const struct lu_env *env, struct llog_ctxt *ctxt)
1331 {
1332         struct llog_handle *llh;
1333         struct lu_fid fid;
1334         int rc = 0;
1335
1336         ENTRY;
1337
1338         rc = llog_open_create(env, ctxt, &llh, NULL, NULL);
1339         if (rc != 0) {
1340                 CERROR("9_sub: create log failed\n");
1341                 RETURN(rc);
1342         }
1343
1344         rc = llog_init_handle(env, llh,
1345                               LLOG_F_IS_PLAIN | LLOG_F_ZAP_WHEN_EMPTY,
1346                               &uuid);
1347         if (rc != 0) {
1348                 CERROR("9_sub: can't init llog handle: %d\n", rc);
1349                 GOTO(out_close, rc);
1350         }
1351
1352         logid_to_fid(&llh->lgh_id, &fid);
1353         fid_to_logid(&fid, &llog_records.llr.lid_id);
1354         rc = llog_write(env, llh, &llog_records.lrh, LLOG_NEXT_IDX);
1355         if (rc < 0) {
1356                 CERROR("9_sub: write recs failed at #1: %d\n", rc);
1357                 GOTO(out_close, rc);
1358         }
1359         /* The below message is checked in sanity.sh test_60a (run-llog.sh) */
1360         CWARN("9_sub: record type %x in log "DFID_NOBRACE"\n",
1361               llog_records.lrh.lrh_type, PFID(&fid));
1362 out_close:
1363         llog_close(env, llh);
1364         RETURN(rc);
1365 }
1366
1367 /* Prepare different types of llog records for llog_reader test*/
1368 static int llog_test_9(const struct lu_env *env, struct obd_device *obd)
1369 {
1370         struct llog_ctxt *ctxt;
1371         int rc;
1372
1373         ENTRY;
1374
1375         ctxt = llog_get_context(obd, LLOG_TEST_ORIG_CTXT);
1376
1377         CWARN("9a: test llog_logid_rec\n");
1378         llog_records.llr.lid_hdr.lrh_len = sizeof(llog_records.llr);
1379         llog_records.llr.lid_tail.lrt_len = sizeof(llog_records.llr);
1380         llog_records.llr.lid_hdr.lrh_type = LLOG_LOGID_MAGIC;
1381
1382         rc = llog_test_9_sub(env, ctxt);
1383         if (rc != 0) {
1384                 CERROR("9a: llog_logid_rec test failed\n");
1385                 GOTO(out, rc);
1386         }
1387
1388         CWARN("9b: test llog_obd_cfg_rec\n");
1389         llog_records.lscr.lsc_hdr.lrh_len = sizeof(llog_records.lscr);
1390         llog_records.lscr.lsc_tail.lrt_len = sizeof(llog_records.lscr);
1391         llog_records.lscr.lsc_hdr.lrh_type = OBD_CFG_REC;
1392
1393         rc = llog_test_9_sub(env, ctxt);
1394         if (rc != 0) {
1395                 CERROR("9b: llog_obd_cfg_rec test failed\n");
1396                 GOTO(out, rc);
1397         }
1398
1399         CWARN("9c: test llog_changelog_rec\n");
1400         /* Direct access to cr_do_not_use: peculiar case for this test */
1401         llog_records.lcr.cr_hdr.lrh_len = sizeof(llog_records.lcr);
1402         llog_records.lcr.cr_do_not_use.lrt_len = sizeof(llog_records.lcr);
1403         llog_records.lcr.cr_hdr.lrh_type = CHANGELOG_REC;
1404
1405         rc = llog_test_9_sub(env, ctxt);
1406         if (rc != 0) {
1407                 CERROR("9c: llog_changelog_rec test failed\n");
1408                 GOTO(out, rc);
1409         }
1410
1411         CWARN("9d: test llog_changelog_user_rec\n");
1412         llog_records.lcur.cur_hdr.lrh_len = sizeof(llog_records.lcur);
1413         llog_records.lcur.cur_tail.lrt_len = sizeof(llog_records.lcur);
1414         llog_records.lcur.cur_hdr.lrh_type = CHANGELOG_USER_REC;
1415
1416         rc = llog_test_9_sub(env, ctxt);
1417         if (rc != 0) {
1418                 CERROR("9d: llog_changelog_user_rec test failed\n");
1419                 GOTO(out, rc);
1420         }
1421
1422 out:
1423         llog_ctxt_put(ctxt);
1424         RETURN(rc);
1425 }
1426
1427 struct llog_process_info {
1428         struct llog_handle *lpi_loghandle;
1429         llog_cb_t lpi_cb;
1430         void *lpi_cbdata;
1431         void *lpi_catdata;
1432         int lpi_rc;
1433         struct completion lpi_completion;
1434         const struct lu_env *lpi_env;
1435         struct task_struct *lpi_reftask;
1436 };
1437
1438
1439 static int llog_test_process_thread(void *arg)
1440 {
1441         struct llog_process_info *lpi = arg;
1442         int rc;
1443
1444         rc = llog_cat_process_or_fork(NULL, lpi->lpi_loghandle, lpi->lpi_cb,
1445                                       NULL, lpi->lpi_cbdata, 1, 0, true);
1446
1447         complete(&lpi->lpi_completion);
1448
1449         lpi->lpi_rc = rc;
1450         if (rc)
1451                 CWARN("10h: Error during catalog processing %d\n", rc);
1452         return rc;
1453 }
1454
1455 static int cat_check_old_cb(const struct lu_env *env, struct llog_handle *llh,
1456                         struct llog_rec_hdr *rec, void *data)
1457 {
1458         struct llog_logid_rec *lir = (struct llog_logid_rec *)rec;
1459         struct lu_fid fid = {0};
1460         struct lu_fid *prev_fid = data;
1461
1462         if (rec->lrh_type != LLOG_LOGID_MAGIC) {
1463                 CERROR("invalid record in catalog\n");
1464                 RETURN(-EINVAL);
1465         }
1466
1467         logid_to_fid(&lir->lid_id, &fid);
1468
1469         CWARN("seeing record at index %d - "DFID" in log "DFID"\n",
1470               rec->lrh_index, PFID(&fid),
1471               PFID(lu_object_fid(&llh->lgh_obj->do_lu)));
1472
1473         if (prev_fid->f_oid > fid.f_oid) {
1474                 CWARN("processing old record, fail\n");
1475                 prev_fid->f_oid = 0xbad;
1476                 RETURN(-LLOG_EEMPTY);
1477         }
1478
1479         if (prev_fid->f_oid == 0) {
1480                 cfs_fail_loc = OBD_FAIL_ONCE | OBD_FAIL_LLOG_PROCESS_TIMEOUT;
1481                 cfs_fail_val = (unsigned int) (llh->lgh_id.lgl_oi.oi.oi_id &
1482                                                0xFFFFFFFF);
1483                 msleep(1 * MSEC_PER_SEC);
1484         }
1485         *prev_fid = fid;
1486
1487         RETURN(0);
1488 }
1489
1490 /* test catalog wrap around */
1491 static int llog_test_10(const struct lu_env *env, struct obd_device *obd)
1492 {
1493         struct llog_handle *cath;
1494         char name[10];
1495         int rc, rc2, i, enospc, eok;
1496         struct llog_mini_rec lmr;
1497         struct llog_ctxt *ctxt;
1498         struct lu_attr la;
1499         __u64 cat_max_size;
1500         struct dt_device *dt;
1501
1502         ENTRY;
1503
1504         ctxt = llog_get_context(obd, LLOG_TEST_ORIG_CTXT);
1505         LASSERT(ctxt);
1506
1507         lmr.lmr_hdr.lrh_len = lmr.lmr_tail.lrt_len = LLOG_MIN_REC_SIZE;
1508         lmr.lmr_hdr.lrh_type = 0xf00f00;
1509
1510         snprintf(name, sizeof(name), "%x", llog_test_rand + 2);
1511         CWARN("10a: create a catalog log with name: %s\n", name);
1512         rc = llog_open_create(env, ctxt, &cath, NULL, name);
1513         if (rc) {
1514                 CERROR("10a: llog_create with name %s failed: %d\n", name, rc);
1515                 GOTO(ctxt_release, rc);
1516         }
1517         rc = llog_init_handle(env, cath, LLOG_F_IS_CAT, &uuid);
1518         if (rc) {
1519                 CERROR("10a: can't init llog handle: %d\n", rc);
1520                 GOTO(out, rc);
1521         }
1522
1523         cat_logid = cath->lgh_id;
1524         dt = lu2dt_dev(cath->lgh_obj->do_lu.lo_dev);
1525
1526         /*
1527          * sync device to commit all recent LLOG changes to disk and avoid
1528          * to consume a huge space with delayed journal commit callbacks
1529          * particularly on low memory nodes or VMs
1530          */
1531         rc = dt_sync(env, dt);
1532         if (rc) {
1533                 CERROR("10c: sync failed: %d\n", rc);
1534                 GOTO(out, rc);
1535         }
1536
1537         /* force catalog wrap for 5th plain LLOG */
1538         cfs_fail_loc = CFS_FAIL_SKIP|OBD_FAIL_CAT_RECORDS;
1539         cfs_fail_val = 4;
1540
1541         CWARN("10b: write %d log records\n", llog_test_recnum);
1542         for (i = 0; i < llog_test_recnum; i++) {
1543                 rc = llog_cat_add(env, cath, &lmr.lmr_hdr, NULL);
1544                 if (rc) {
1545                         CERROR("10b: write %d records failed at #%d: %d\n",
1546                                llog_test_recnum, i + 1, rc);
1547                         GOTO(out, rc);
1548                 }
1549         }
1550
1551         /* make sure 2 new plain llog appears in catalog (+1 with hdr) */
1552         rc = verify_handle("10b", cath, 3);
1553         if (rc)
1554                 GOTO(out, rc);
1555
1556         /*
1557          * sync device to commit all recent LLOG changes to disk and avoid
1558          * to consume a huge space with delayed journal commit callbacks
1559          * particularly on low memory nodes or VMs
1560          */
1561         rc = dt_sync(env, dt);
1562         if (rc) {
1563                 CERROR("10b: sync failed: %d\n", rc);
1564                 GOTO(out, rc);
1565         }
1566
1567         CWARN("10c: write %d more log records\n", 2 * llog_test_recnum);
1568         for (i = 0; i < 2 * llog_test_recnum; i++) {
1569                 rc = llog_cat_add(env, cath, &lmr.lmr_hdr, NULL);
1570                 if (rc) {
1571                         CERROR("10c: write %d records failed at #%d: %d\n",
1572                                2*llog_test_recnum, i + 1, rc);
1573                         GOTO(out, rc);
1574                 }
1575         }
1576
1577         /* make sure 2 new plain llog appears in catalog (+1 with hdr) */
1578         rc = verify_handle("10c", cath, 5);
1579         if (rc)
1580                 GOTO(out, rc);
1581
1582         /*
1583          * sync device to commit all recent LLOG changes to disk and avoid
1584          * to consume a huge space with delayed journal commit callbacks
1585          * particularly on low memory nodes or VMs
1586          */
1587         rc = dt_sync(env, dt);
1588         if (rc) {
1589                 CERROR("10c: sync failed: %d\n", rc);
1590                 GOTO(out, rc);
1591         }
1592
1593         /*
1594          * fill last allocated plain LLOG and reach -ENOSPC condition
1595          * because no slot available in Catalog
1596          */
1597         enospc = 0;
1598         eok = 0;
1599         CWARN("10c: write %d more log records\n", llog_test_recnum);
1600         for (i = 0; i < llog_test_recnum; i++) {
1601                 rc = llog_cat_add(env, cath, &lmr.lmr_hdr, NULL);
1602                 if (rc && rc != -ENOSPC) {
1603                         CERROR("10c: write %d records failed at #%d: %d\n",
1604                                llog_test_recnum, i + 1, rc);
1605                         GOTO(out, rc);
1606                 }
1607                 /*
1608                  * after last added plain LLOG has filled up, all new
1609                  * records add should fail with -ENOSPC
1610                  */
1611                 if (rc == -ENOSPC) {
1612                         enospc++;
1613                 } else {
1614                         enospc = 0;
1615                         eok++;
1616                 }
1617         }
1618
1619         if ((enospc == 0) && (enospc+eok != llog_test_recnum)) {
1620                 CERROR("10c: all last records adds should have failed with"
1621                        " -ENOSPC\n");
1622                 GOTO(out, rc = -EINVAL);
1623         }
1624
1625         CWARN("10c: wrote %d records then %d failed with ENOSPC\n", eok,
1626               enospc);
1627
1628         /* make sure no new record in Catalog */
1629         rc = verify_handle("10c", cath, 5);
1630         if (rc)
1631                 GOTO(out, rc);
1632
1633         /* Catalog should have reached its max size for test */
1634         rc = dt_attr_get(env, cath->lgh_obj, &la);
1635         if (rc) {
1636                 CERROR("10c: failed to get catalog attrs: %d\n", rc);
1637                 GOTO(out, rc);
1638         }
1639         cat_max_size = la.la_size;
1640
1641         /*
1642          * cancel all 1st plain llog records to empty it, this will also cause
1643          * its catalog entry to be freed for next forced wrap in 10e
1644          */
1645         CWARN("10d: Cancel %d records, see one log zapped\n", llog_test_recnum);
1646         cancel_count = 0;
1647         rc = llog_cat_process(env, cath, llog_cancel_rec_cb, "foobar", 0, 0);
1648         if (rc != -LLOG_EEMPTY) {
1649                 CERROR("10d: process with llog_cancel_rec_cb failed: %d\n", rc);
1650                 /*
1651                  * need to indicate error if for any reason llog_test_recnum is
1652                  * not reached
1653                  */
1654                 if (rc == 0)
1655                         rc = -ERANGE;
1656                 GOTO(out, rc);
1657         }
1658
1659         CWARN("10d: print the catalog entries.. we expect 3\n");
1660         cat_counter = 0;
1661         rc = llog_process(env, cath, cat_print_cb, "test 10", NULL);
1662         if (rc) {
1663                 CERROR("10d: process with cat_print_cb failed: %d\n", rc);
1664                 GOTO(out, rc);
1665         }
1666         if (cat_counter != 3) {
1667                 CERROR("10d: %d entries in catalog\n", cat_counter);
1668                 GOTO(out, rc = -EINVAL);
1669         }
1670
1671         /* verify one down in catalog (+1 with hdr) */
1672         rc = verify_handle("10d", cath, 4);
1673         if (rc)
1674                 GOTO(out, rc);
1675
1676         /*
1677          * sync device to commit all recent LLOG changes to disk and avoid
1678          * to consume a huge space with delayed journal commit callbacks
1679          * particularly on low memory nodes or VMs
1680          */
1681         rc = dt_sync(env, dt);
1682         if (rc) {
1683                 CERROR("10d: sync failed: %d\n", rc);
1684                 GOTO(out, rc);
1685         }
1686
1687         enospc = 0;
1688         eok = 0;
1689         CWARN("10e: write %d more log records\n", llog_test_recnum);
1690         for (i = 0; i < llog_test_recnum; i++) {
1691                 rc = llog_cat_add(env, cath, &lmr.lmr_hdr, NULL);
1692                 if (rc && rc != -ENOSPC) {
1693                         CERROR("10e: write %d records failed at #%d: %d\n",
1694                                llog_test_recnum, i + 1, rc);
1695                         GOTO(out, rc);
1696                 }
1697                 /*
1698                  * after last added plain LLOG has filled up, all new
1699                  * records add should fail with -ENOSPC
1700                  */
1701                 if (rc == -ENOSPC) {
1702                         enospc++;
1703                 } else {
1704                         enospc = 0;
1705                         eok++;
1706                 }
1707         }
1708
1709         if ((enospc == 0) && (enospc+eok != llog_test_recnum)) {
1710                 CERROR("10e: all last records adds should have failed with"
1711                        " -ENOSPC\n");
1712                 GOTO(out, rc = -EINVAL);
1713         }
1714
1715         CWARN("10e: wrote %d records then %d failed with ENOSPC\n", eok,
1716               enospc);
1717
1718         CWARN("10e: print the catalog entries.. we expect 4\n");
1719         cat_counter = 0;
1720         rc = llog_cat_process_or_fork(env, cath, cat_print_cb, NULL, "test 10",
1721                                       0, 0, false);
1722         if (rc) {
1723                 CERROR("10e: process with cat_print_cb failed: %d\n", rc);
1724                 GOTO(out, rc);
1725         }
1726         if (cat_counter != 4) {
1727                 CERROR("10e: %d entries in catalog\n", cat_counter);
1728                 GOTO(out, rc = -EINVAL);
1729         }
1730
1731         /* make sure 1 new plain llog appears in catalog (+1 with hdr) */
1732         rc = verify_handle("10e", cath, 5);
1733         if (rc)
1734                 GOTO(out, rc);
1735
1736         /* verify catalog has wrap around */
1737         if (cath->lgh_last_idx > cath->lgh_hdr->llh_cat_idx) {
1738                 CERROR("10e: catalog failed to wrap around\n");
1739                 GOTO(out, rc = -EINVAL);
1740         }
1741
1742         rc = dt_attr_get(env, cath->lgh_obj, &la);
1743         if (rc) {
1744                 CERROR("10e: failed to get catalog attrs: %d\n", rc);
1745                 GOTO(out, rc);
1746         }
1747
1748         if (la.la_size != cat_max_size) {
1749                 CERROR("10e: catalog size has changed after it has wrap around,"
1750                        " current size = %llu, expected size = %llu\n",
1751                        la.la_size, cat_max_size);
1752                 GOTO(out, rc = -EINVAL);
1753         }
1754         CWARN("10e: catalog successfully wrap around, last_idx %d, first %d\n",
1755               cath->lgh_last_idx, cath->lgh_hdr->llh_cat_idx);
1756
1757         /*
1758          * sync device to commit all recent LLOG changes to disk and avoid
1759          * to consume a huge space with delayed journal commit callbacks
1760          * particularly on low memory nodes or VMs
1761          */
1762         rc = dt_sync(env, dt);
1763         if (rc) {
1764                 CERROR("10e: sync failed: %d\n", rc);
1765                 GOTO(out, rc);
1766         }
1767
1768         /*
1769          * cancel more records to free one more slot in Catalog
1770          * see if it is re-allocated when adding more records
1771          */
1772         CWARN("10f: Cancel %d records, see one log zapped\n", llog_test_recnum);
1773         cancel_count = 0;
1774         rc = llog_cat_process(env, cath, llog_cancel_rec_cb, "foobar", 0, 0);
1775         if (rc != -LLOG_EEMPTY) {
1776                 CERROR("10f: process with llog_cancel_rec_cb failed: %d\n", rc);
1777                 /*
1778                  * need to indicate error if for any reason llog_test_recnum is
1779                  * not reached
1780                  */
1781                 if (rc == 0)
1782                         rc = -ERANGE;
1783                 GOTO(out, rc);
1784         }
1785
1786         CWARN("10f: print the catalog entries.. we expect 3\n");
1787         cat_counter = 0;
1788         rc = llog_cat_process_or_fork(env, cath, cat_print_cb, NULL, "test 10",
1789                                       0, 0, false);
1790         if (rc) {
1791                 CERROR("10f: process with cat_print_cb failed: %d\n", rc);
1792                 GOTO(out, rc);
1793         }
1794         if (cat_counter != 3) {
1795                 CERROR("10f: %d entries in catalog\n", cat_counter);
1796                 GOTO(out, rc = -EINVAL);
1797         }
1798
1799         /* verify one down in catalog (+1 with hdr) */
1800         rc = verify_handle("10f", cath, 4);
1801         if (rc)
1802                 GOTO(out, rc);
1803
1804         /*
1805          * sync device to commit all recent LLOG changes to disk and avoid
1806          * to consume a huge space with delayed journal commit callbacks
1807          * particularly on low memory nodes or VMs
1808          */
1809         rc = dt_sync(env, dt);
1810         if (rc) {
1811                 CERROR("10f: sync failed: %d\n", rc);
1812                 GOTO(out, rc);
1813         }
1814
1815         enospc = 0;
1816         eok = 0;
1817         CWARN("10f: write %d more log records\n", llog_test_recnum);
1818         for (i = 0; i < llog_test_recnum; i++) {
1819                 rc = llog_cat_add(env, cath, &lmr.lmr_hdr, NULL);
1820                 if (rc && rc != -ENOSPC) {
1821                         CERROR("10f: write %d records failed at #%d: %d\n",
1822                                llog_test_recnum, i + 1, rc);
1823                         GOTO(out, rc);
1824                 }
1825                 /*
1826                  * after last added plain LLOG has filled up, all new
1827                  * records add should fail with -ENOSPC
1828                  */
1829                 if (rc == -ENOSPC) {
1830                         enospc++;
1831                 } else {
1832                         enospc = 0;
1833                         eok++;
1834                 }
1835         }
1836
1837         if ((enospc == 0) && (enospc+eok != llog_test_recnum)) {
1838                 CERROR("10f: all last records adds should have failed with"
1839                        " -ENOSPC\n");
1840                 GOTO(out, rc = -EINVAL);
1841         }
1842
1843         CWARN("10f: wrote %d records then %d failed with ENOSPC\n", eok,
1844               enospc);
1845
1846         /* make sure 1 new plain llog appears in catalog (+1 with hdr) */
1847         rc = verify_handle("10f", cath, 5);
1848         if (rc)
1849                 GOTO(out, rc);
1850
1851         /* verify lgh_last_idx = llh_cat_idx = 2 now */
1852         if (cath->lgh_last_idx != cath->lgh_hdr->llh_cat_idx ||
1853             cath->lgh_last_idx != 2) {
1854                 CERROR("10f: lgh_last_idx = %d vs 2, llh_cat_idx = %d vs 2\n",
1855                        cath->lgh_last_idx, cath->lgh_hdr->llh_cat_idx);
1856                 GOTO(out, rc = -EINVAL);
1857         }
1858
1859         rc = dt_attr_get(env, cath->lgh_obj, &la);
1860         if (rc) {
1861                 CERROR("10f: failed to get catalog attrs: %d\n", rc);
1862                 GOTO(out, rc);
1863         }
1864
1865         if (la.la_size != cat_max_size) {
1866                 CERROR("10f: catalog size has changed after it has wrap around,"
1867                        " current size = %llu, expected size = %llu\n",
1868                        la.la_size, cat_max_size);
1869                 GOTO(out, rc = -EINVAL);
1870         }
1871
1872         /*
1873          * sync device to commit all recent LLOG changes to disk and avoid
1874          * to consume a huge space with delayed journal commit callbacks
1875          * particularly on low memory nodes or VMs
1876          */
1877         rc = dt_sync(env, dt);
1878         if (rc) {
1879                 CERROR("10f: sync failed: %d\n", rc);
1880                 GOTO(out, rc);
1881         }
1882
1883         /* will llh_cat_idx also successfully wrap ? */
1884
1885         /*
1886          * cancel all records in the plain LLOGs referenced by 2 last indexes in
1887          * Catalog
1888          */
1889
1890         /* cancel more records to free one more slot in Catalog */
1891         CWARN("10g: Cancel %d records, see one log zapped\n", llog_test_recnum);
1892         cancel_count = 0;
1893         rc = llog_cat_process(env, cath, llog_cancel_rec_cb, "foobar", 0, 0);
1894         if (rc != -LLOG_EEMPTY) {
1895                 CERROR("10g: process with llog_cancel_rec_cb failed: %d\n", rc);
1896                 /* need to indicate error if for any reason llog_test_recnum is
1897                  * not reached */
1898                 if (rc == 0)
1899                         rc = -ERANGE;
1900                 GOTO(out, rc);
1901         }
1902
1903         CWARN("10g: print the catalog entries.. we expect 3\n");
1904         cat_counter = 0;
1905         rc = llog_cat_process_or_fork(env, cath, cat_print_cb, NULL, "test 10",
1906                                       0, 0, false);
1907         if (rc) {
1908                 CERROR("10g: process with cat_print_cb failed: %d\n", rc);
1909                 GOTO(out, rc);
1910         }
1911         if (cat_counter != 3) {
1912                 CERROR("10g: %d entries in catalog\n", cat_counter);
1913                 GOTO(out, rc = -EINVAL);
1914         }
1915
1916         /* verify one down in catalog (+1 with hdr) */
1917         rc = verify_handle("10g", cath, 4);
1918         if (rc)
1919                 GOTO(out, rc);
1920
1921         /*
1922          * sync device to commit all recent LLOG changes to disk and avoid
1923          * to consume a huge space with delayed journal commit callbacks
1924          * particularly on low memory nodes or VMs
1925          */
1926         rc = dt_sync(env, dt);
1927         if (rc) {
1928                 CERROR("10g: sync failed: %d\n", rc);
1929                 GOTO(out, rc);
1930         }
1931
1932         /* cancel more records to free one more slot in Catalog */
1933         CWARN("10g: Cancel %d records, see one log zapped\n", llog_test_recnum);
1934         cancel_count = 0;
1935         rc = llog_cat_process(env, cath, llog_cancel_rec_cb, "foobar", 0, 0);
1936         if (rc != -LLOG_EEMPTY) {
1937                 CERROR("10g: process with llog_cancel_rec_cb failed: %d\n", rc);
1938                 /*
1939                  * need to indicate error if for any reason llog_test_recnum is
1940                  * not reached
1941                  */
1942                 if (rc == 0)
1943                         rc = -ERANGE;
1944                 GOTO(out, rc);
1945         }
1946
1947         CWARN("10g: print the catalog entries.. we expect 2\n");
1948         cat_counter = 0;
1949         rc = llog_cat_process_or_fork(env, cath, cat_print_cb, NULL, "test 10",
1950                                       0, 0, false);
1951         if (rc) {
1952                 CERROR("10g: process with cat_print_cb failed: %d\n", rc);
1953                 GOTO(out, rc);
1954         }
1955         if (cat_counter != 2) {
1956                 CERROR("10g: %d entries in catalog\n", cat_counter);
1957                 GOTO(out, rc = -EINVAL);
1958         }
1959
1960         /* verify one down in catalog (+1 with hdr) */
1961         rc = verify_handle("10g", cath, 3);
1962         if (rc)
1963                 GOTO(out, rc);
1964
1965         /* verify lgh_last_idx = 2 and llh_cat_idx = 0 now */
1966         if (cath->lgh_hdr->llh_cat_idx != 0 ||
1967             cath->lgh_last_idx != 2) {
1968                 CERROR("10g: lgh_last_idx = %d vs 2, llh_cat_idx = %d vs 0\n",
1969                        cath->lgh_last_idx, cath->lgh_hdr->llh_cat_idx);
1970                 GOTO(out, rc = -EINVAL);
1971         }
1972
1973         /*
1974          * sync device to commit all recent LLOG changes to disk and avoid
1975          * to consume a huge space with delayed journal commit callbacks
1976          * particularly on low memory nodes or VMs
1977          */
1978         rc = dt_sync(env, dt);
1979         if (rc) {
1980                 CERROR("10g: sync failed: %d\n", rc);
1981                 GOTO(out, rc);
1982         }
1983
1984         /* cancel more records to free one more slot in Catalog */
1985         CWARN("10g: Cancel %d records, see one log zapped\n", llog_test_recnum);
1986         cancel_count = 0;
1987         rc = llog_cat_process(env, cath, llog_cancel_rec_cb, "foobar", 0, 0);
1988         if (rc != -LLOG_EEMPTY) {
1989                 CERROR("10g: process with llog_cancel_rec_cb failed: %d\n", rc);
1990                 /*
1991                  * need to indicate error if for any reason llog_test_recnum is
1992                  * not reached
1993                  */
1994                 if (rc == 0)
1995                         rc = -ERANGE;
1996                 GOTO(out, rc);
1997         }
1998
1999         CWARN("10g: print the catalog entries.. we expect 1\n");
2000         cat_counter = 0;
2001         rc = llog_cat_process_or_fork(env, cath, cat_print_cb, NULL, "test 10",
2002                                       0, 0, false);
2003         if (rc) {
2004                 CERROR("10g: process with cat_print_cb failed: %d\n", rc);
2005                 GOTO(out, rc);
2006         }
2007         if (cat_counter != 1) {
2008                 CERROR("10g: %d entries in catalog\n", cat_counter);
2009                 GOTO(out, rc = -EINVAL);
2010         }
2011
2012         /* verify one down in catalog (+1 with hdr) */
2013         rc = verify_handle("10g", cath, 2);
2014         if (rc)
2015                 GOTO(out, rc);
2016
2017         /* verify lgh_last_idx = 2 and llh_cat_idx = 1 now */
2018         if (cath->lgh_hdr->llh_cat_idx != 1 ||
2019             cath->lgh_last_idx != 2) {
2020                 CERROR("10g: lgh_last_idx = %d vs 2, llh_cat_idx = %d vs 1\n",
2021                        cath->lgh_last_idx, cath->lgh_hdr->llh_cat_idx);
2022                 GOTO(out, rc = -EINVAL);
2023         }
2024
2025         CWARN("10g: llh_cat_idx has also successfully wrapped!\n");
2026
2027         /*
2028          * catalog has only one valid entry other slots has outdated
2029          * records. Trying to race the llog_thread_process with llog_add
2030          * llog_thread_process read buffer and loop record on it.
2031          * llog_add adds a record and mark a record in bitmap.
2032          * llog_thread_process process record with old data.
2033          */
2034         {
2035         struct llog_process_info lpi;
2036         struct lu_fid test_fid = {0};
2037
2038         lpi.lpi_loghandle = cath;
2039         lpi.lpi_cb = cat_check_old_cb;
2040         lpi.lpi_catdata = NULL;
2041         lpi.lpi_cbdata = &test_fid;
2042         init_completion(&lpi.lpi_completion);
2043
2044         kthread_run(llog_test_process_thread, &lpi, "llog_test_process_thread");
2045
2046         msleep(1 * MSEC_PER_SEC / 2);
2047         enospc = 0;
2048         eok = 0;
2049         CWARN("10h: write %d more log records\n", llog_test_recnum);
2050         for (i = 0; i < llog_test_recnum; i++) {
2051                 rc = llog_cat_add(env, cath, &lmr.lmr_hdr, NULL);
2052                 if (rc && rc != -ENOSPC) {
2053                         CERROR("10h: write %d records failed at #%d: %d\n",
2054                                llog_test_recnum, i + 1, rc);
2055                         GOTO(out, rc);
2056                 }
2057                 /*
2058                  * after last added plain LLOG has filled up, all new
2059                  * records add should fail with -ENOSPC
2060                  */
2061                 if (rc == -ENOSPC) {
2062                         enospc++;
2063                 } else {
2064                         enospc = 0;
2065                         eok++;
2066                 }
2067         }
2068
2069         if ((enospc == 0) && (enospc+eok != llog_test_recnum)) {
2070                 CERROR("10h: all last records adds should have failed with"
2071                        " -ENOSPC\n");
2072                 GOTO(out, rc = -EINVAL);
2073         }
2074
2075         CWARN("10h: wrote %d records then %d failed with ENOSPC\n", eok,
2076               enospc);
2077
2078         wait_for_completion(&lpi.lpi_completion);
2079
2080         if (lpi.lpi_rc != 0) {
2081                 CERROR("10h: race happened, old record was processed\n");
2082                 GOTO(out, rc = -EINVAL);
2083         }
2084         }
2085 out:
2086         cfs_fail_loc = 0;
2087         cfs_fail_val = 0;
2088
2089         CWARN("10: put newly-created catalog\n");
2090         rc2 = llog_cat_close(env, cath);
2091         if (rc2) {
2092                 CERROR("10: close log %s failed: %d\n", name, rc2);
2093                 if (rc == 0)
2094                         rc = rc2;
2095         }
2096 ctxt_release:
2097         llog_ctxt_put(ctxt);
2098         RETURN(rc);
2099 }
2100
2101 /*
2102  * -------------------------------------------------------------------------
2103  * Tests above, boring obd functions below
2104  * -------------------------------------------------------------------------
2105  */
2106 static int llog_run_tests(const struct lu_env *env, struct obd_device *obd)
2107 {
2108         struct llog_handle *llh = NULL;
2109         struct llog_ctxt *ctxt;
2110         int rc, err;
2111         char name[10];
2112
2113         ENTRY;
2114         ctxt = llog_get_context(obd, LLOG_TEST_ORIG_CTXT);
2115         LASSERT(ctxt);
2116
2117         sprintf(name, "%x", llog_test_rand);
2118
2119         rc = llog_test_1(env, obd, name);
2120         if (rc)
2121                 GOTO(cleanup_ctxt, rc);
2122
2123         rc = llog_test_2(env, obd, name, &llh);
2124         if (rc)
2125                 GOTO(cleanup_ctxt, rc);
2126
2127         rc = llog_test_3(env, obd, llh);
2128         if (rc)
2129                 GOTO(cleanup, rc);
2130
2131         rc = llog_test_4(env, obd);
2132         if (rc)
2133                 GOTO(cleanup, rc);
2134
2135         rc = llog_test_5(env, obd);
2136         if (rc)
2137                 GOTO(cleanup, rc);
2138
2139         rc = llog_test_6(env, obd, name);
2140         if (rc)
2141                 GOTO(cleanup, rc);
2142
2143         rc = llog_test_7(env, obd);
2144         if (rc)
2145                 GOTO(cleanup, rc);
2146
2147         rc = llog_test_8(env, obd);
2148         if (rc)
2149                 GOTO(cleanup, rc);
2150
2151         rc = llog_test_9(env, obd);
2152         if (rc != 0)
2153                 GOTO(cleanup, rc);
2154
2155         rc = llog_test_10(env, obd);
2156         if (rc)
2157                 GOTO(cleanup, rc);
2158
2159 cleanup:
2160         err = llog_destroy(env, llh);
2161         if (err)
2162                 CERROR("cleanup: llog_destroy failed: %d\n", err);
2163         llog_close(env, llh);
2164         if (rc == 0)
2165                 rc = err;
2166 cleanup_ctxt:
2167         llog_ctxt_put(ctxt);
2168         return rc;
2169 }
2170
2171 static int llog_test_cleanup(struct obd_device *obd)
2172 {
2173         struct obd_device *tgt;
2174         struct lu_env env;
2175         int rc;
2176
2177         ENTRY;
2178
2179         rc = lu_env_init(&env, LCT_LOCAL | LCT_MG_THREAD);
2180         if (rc)
2181                 RETURN(rc);
2182
2183         tgt = obd->obd_lvfs_ctxt.dt->dd_lu_dev.ld_obd;
2184         rc = llog_cleanup(&env, llog_get_context(tgt, LLOG_TEST_ORIG_CTXT));
2185         if (rc)
2186                 CERROR("failed to llog_test_llog_finish: %d\n", rc);
2187         lu_env_fini(&env);
2188         RETURN(rc);
2189 }
2190
2191 static int llog_test_setup(struct obd_device *obd, struct lustre_cfg *lcfg)
2192 {
2193         struct obd_device *tgt;
2194         struct llog_ctxt *ctxt;
2195         struct dt_object *o;
2196         struct lu_env env;
2197         struct lu_context test_session;
2198         int rc;
2199
2200         ENTRY;
2201
2202         if (lcfg->lcfg_bufcount < 2) {
2203                 CERROR("requires a TARGET OBD name\n");
2204                 RETURN(-EINVAL);
2205         }
2206
2207         if (lcfg->lcfg_buflens[1] < 1) {
2208                 CERROR("requires a TARGET OBD name\n");
2209                 RETURN(-EINVAL);
2210         }
2211
2212         /* disk obd */
2213         tgt = class_name2obd(lustre_cfg_string(lcfg, 1));
2214         if (!tgt || !tgt->obd_attached || !tgt->obd_set_up) {
2215                 CERROR("target device not attached or not set up (%s)\n",
2216                         lustre_cfg_string(lcfg, 1));
2217                 RETURN(-EINVAL);
2218         }
2219
2220         rc = lu_env_init(&env, LCT_LOCAL | LCT_MG_THREAD);
2221         if (rc)
2222                 RETURN(rc);
2223
2224         rc = lu_context_init(&test_session, LCT_SERVER_SESSION);
2225         if (rc)
2226                 GOTO(cleanup_env, rc);
2227         test_session.lc_thread = (struct ptlrpc_thread *)current;
2228         lu_context_enter(&test_session);
2229         env.le_ses = &test_session;
2230
2231         CWARN("Setup llog-test device over %s device\n",
2232               lustre_cfg_string(lcfg, 1));
2233
2234         OBD_SET_CTXT_MAGIC(&obd->obd_lvfs_ctxt);
2235         obd->obd_lvfs_ctxt.dt = lu2dt_dev(tgt->obd_lu_dev);
2236
2237         rc = llog_setup(&env, tgt, &tgt->obd_olg, LLOG_TEST_ORIG_CTXT, tgt,
2238                         &llog_osd_ops);
2239         if (rc)
2240                 GOTO(cleanup_session, rc);
2241
2242         /* use MGS llog dir for tests */
2243         ctxt = llog_get_context(tgt, LLOG_CONFIG_ORIG_CTXT);
2244         LASSERT(ctxt);
2245         o = ctxt->loc_dir;
2246         llog_ctxt_put(ctxt);
2247
2248         ctxt = llog_get_context(tgt, LLOG_TEST_ORIG_CTXT);
2249         LASSERT(ctxt);
2250         ctxt->loc_dir = o;
2251         llog_ctxt_put(ctxt);
2252
2253         llog_test_rand = prandom_u32();
2254
2255         rc = llog_run_tests(&env, tgt);
2256         if (rc)
2257                 llog_test_cleanup(obd);
2258 cleanup_session:
2259         lu_context_exit(&test_session);
2260         lu_context_fini(&test_session);
2261 cleanup_env:
2262         lu_env_fini(&env);
2263         RETURN(rc);
2264 }
2265
2266 static struct obd_ops llog_obd_ops = {
2267         .o_owner       = THIS_MODULE,
2268         .o_setup       = llog_test_setup,
2269         .o_cleanup     = llog_test_cleanup,
2270 };
2271
2272 static int __init llog_test_init(void)
2273 {
2274         return class_register_type(&llog_obd_ops, NULL, false, NULL,
2275                                    "llog_test", NULL);
2276 }
2277
2278 static void __exit llog_test_exit(void)
2279 {
2280         class_unregister_type("llog_test");
2281 }
2282
2283 MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
2284 MODULE_DESCRIPTION("Lustre Log test module");
2285 MODULE_VERSION(LUSTRE_VERSION_STRING);
2286 MODULE_LICENSE("GPL");
2287
2288 module_init(llog_test_init);
2289 module_exit(llog_test_exit);