Whamcloud - gitweb
LU-1302 llog: modify llog_write/llog_add to support OSD
[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.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) 2011, 2012, Intel, Inc.
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_test.c
37  *
38  * Author: Phil Schwan <phil@clusterfs.com>
39  * Author: Mikhail Pershin <mike.pershin@intel.com>
40  */
41
42 #define DEBUG_SUBSYSTEM S_CLASS
43
44 #include <linux/module.h>
45 #include <linux/init.h>
46
47 #include <obd_class.h>
48 #include <lustre_fid.h>
49 #include <lustre_log.h>
50
51 /* This is slightly more than the number of records that can fit into a
52  * single llog file, because the llog_log_header takes up some of the
53  * space in the first block that cannot be used for the bitmap. */
54 #define LLOG_TEST_RECNUM  (LLOG_CHUNK_SIZE * 8)
55
56 static int llog_test_rand;
57 static struct obd_uuid uuid = { .uuid = "test_uuid" };
58 static struct llog_logid cat_logid;
59
60 struct llog_mini_rec {
61         struct llog_rec_hdr     lmr_hdr;
62         struct llog_rec_tail    lmr_tail;
63 } __attribute__((packed));
64
65 static int verify_handle(char *test, struct llog_handle *llh, int num_recs)
66 {
67         int i;
68         int last_idx = 0;
69         int active_recs = 0;
70
71         for (i = 0; i < LLOG_BITMAP_BYTES * 8; i++) {
72                 if (ext2_test_bit(i, llh->lgh_hdr->llh_bitmap)) {
73                         last_idx = i;
74                         active_recs++;
75                 }
76         }
77
78         if (active_recs != num_recs) {
79                 CERROR("%s: expected %d active recs after write, found %d\n",
80                        test, num_recs, active_recs);
81                 RETURN(-ERANGE);
82         }
83
84         if (llh->lgh_hdr->llh_count != num_recs) {
85                 CERROR("%s: handle->count is %d, expected %d after write\n",
86                        test, llh->lgh_hdr->llh_count, num_recs);
87                 RETURN(-ERANGE);
88         }
89
90         if (llh->lgh_last_idx < last_idx) {
91                 CERROR("%s: handle->last_idx is %d, expected %d after write\n",
92                        test, llh->lgh_last_idx, last_idx);
93                 RETURN(-ERANGE);
94         }
95
96         RETURN(0);
97 }
98
99 /* Test named-log create/open, close */
100 static int llog_test_1(const struct lu_env *env,
101                        struct obd_device *obd, char *name)
102 {
103         struct llog_handle      *llh;
104         struct llog_ctxt        *ctxt;
105         int rc;
106         int rc2;
107
108         ENTRY;
109
110         CWARN("1a: create a log with name: %s\n", name);
111         ctxt = llog_get_context(obd, LLOG_TEST_ORIG_CTXT);
112         LASSERT(ctxt);
113
114         rc = llog_open_create(env, ctxt, &llh, NULL, name);
115         if (rc) {
116                 CERROR("1a: llog_create with name %s failed: %d\n", name, rc);
117                 GOTO(out, rc);
118         }
119         rc = llog_init_handle(env, llh, LLOG_F_IS_PLAIN, &uuid);
120         if (rc) {
121                 CERROR("1a: can't init llog handle: %d\n", rc);
122                 GOTO(out_close, rc);
123         }
124
125         rc = verify_handle("1", llh, 1);
126
127         CWARN("1b: close newly-created log\n");
128 out_close:
129         rc2 = llog_close(env, llh);
130         if (rc2) {
131                 CERROR("1b: close log %s failed: %d\n", name, rc2);
132                 if (rc == 0)
133                         rc = rc2;
134         }
135 out:
136         llog_ctxt_put(ctxt);
137         RETURN(rc);
138 }
139
140 /* Test named-log reopen; returns opened log on success */
141 static int llog_test_2(const struct lu_env *env, struct obd_device *obd,
142                        char *name, struct llog_handle **llh)
143 {
144         struct llog_ctxt        *ctxt;
145         struct llog_handle      *loghandle;
146         struct llog_logid        logid;
147         int                      rc;
148
149         ENTRY;
150
151         CWARN("2a: re-open a log with name: %s\n", name);
152         ctxt = llog_get_context(obd, LLOG_TEST_ORIG_CTXT);
153         LASSERT(ctxt);
154
155         rc = llog_open(env, ctxt, llh, NULL, name, LLOG_OPEN_EXISTS);
156         if (rc) {
157                 CERROR("2a: re-open log with name %s failed: %d\n", name, rc);
158                 GOTO(out_put, rc);
159         }
160
161         llog_init_handle(env, *llh, LLOG_F_IS_PLAIN, &uuid);
162         if (rc) {
163                 CERROR("2a: can't init llog handle: %d\n", rc);
164                 GOTO(out_close_llh, rc);
165         }
166
167         rc = verify_handle("2", *llh, 1);
168         if (rc)
169                 GOTO(out_close_llh, rc);
170
171         /* XXX: there is known issue with tests 2b, MGS is not able to create
172          * anonymous llog, exit now to allow following tests run.
173          * It is fixed in upcoming llog over OSD code */
174         GOTO(out_put, rc);
175
176         CWARN("2b: create a log without specified NAME & LOGID\n");
177         rc = llog_open_create(env, ctxt, &loghandle, NULL, NULL);
178         if (rc) {
179                 CERROR("2b: create log failed\n");
180                 GOTO(out_close_llh, rc);
181         }
182         rc = llog_init_handle(env, loghandle, LLOG_F_IS_PLAIN, &uuid);
183         if (rc) {
184                 CERROR("2b: can't init llog handle: %d\n", rc);
185                 GOTO(out_close, rc);
186         }
187
188         logid = loghandle->lgh_id;
189         llog_close(env, loghandle);
190
191         CWARN("2c: re-open the log by LOGID\n");
192         rc = llog_open(env, ctxt, &loghandle, &logid, NULL, LLOG_OPEN_EXISTS);
193         if (rc) {
194                 CERROR("2c: re-open log by LOGID failed\n");
195                 GOTO(out_close_llh, rc);
196         }
197
198         rc = llog_init_handle(env, loghandle, LLOG_F_IS_PLAIN, &uuid);
199         if (rc) {
200                 CERROR("2c: can't init llog handle: %d\n", rc);
201                 GOTO(out_close, rc);
202         }
203
204         CWARN("2b: destroy this log\n");
205         rc = llog_destroy(env, loghandle);
206         if (rc)
207                 CERROR("2d: destroy log failed\n");
208 out_close:
209         llog_close(env, loghandle);
210 out_close_llh:
211         if (rc)
212                 llog_close(env, *llh);
213 out_put:
214         llog_ctxt_put(ctxt);
215
216         RETURN(rc);
217 }
218
219 /* Test record writing, single and in bulk */
220 static int llog_test_3(const struct lu_env *env, struct obd_device *obd,
221                        struct llog_handle *llh)
222 {
223         struct llog_gen_rec      lgr;
224         int                      rc, i;
225         int                      num_recs = 1; /* 1 for the header */
226
227         ENTRY;
228
229         lgr.lgr_hdr.lrh_len = lgr.lgr_tail.lrt_len = sizeof(lgr);
230         lgr.lgr_hdr.lrh_type = LLOG_GEN_REC;
231
232         CWARN("3a: write one create_rec\n");
233         rc = llog_write(env, llh,  &lgr.lgr_hdr, NULL, 0, NULL, -1);
234         num_recs++;
235         if (rc < 0) {
236                 CERROR("3a: write one log record failed: %d\n", rc);
237                 RETURN(rc);
238         }
239
240         rc = verify_handle("3a", llh, num_recs);
241         if (rc)
242                 RETURN(rc);
243
244         CWARN("3b: write 10 cfg log records with 8 bytes bufs\n");
245         for (i = 0; i < 10; i++) {
246                 struct llog_rec_hdr     hdr;
247                 char                    buf[8];
248
249                 hdr.lrh_len = 8;
250                 hdr.lrh_type = OBD_CFG_REC;
251                 memset(buf, 0, sizeof buf);
252                 rc = llog_write(env, llh, &hdr, NULL, 0, buf, -1);
253                 if (rc < 0) {
254                         CERROR("3b: write 10 records failed at #%d: %d\n",
255                                i + 1, rc);
256                         RETURN(rc);
257                 }
258                 num_recs++;
259         }
260
261         rc = verify_handle("3b", llh, num_recs);
262         if (rc)
263                 RETURN(rc);
264
265         CWARN("3c: write 1000 more log records\n");
266         for (i = 0; i < 1000; i++) {
267                 rc = llog_write(env, llh, &lgr.lgr_hdr, NULL, 0, NULL, -1);
268                 if (rc < 0) {
269                         CERROR("3c: write 1000 records failed at #%d: %d\n",
270                                i + 1, rc);
271                         RETURN(rc);
272                 }
273                 num_recs++;
274         }
275
276         rc = verify_handle("3c", llh, num_recs);
277         if (rc)
278                 RETURN(rc);
279
280         CWARN("3d: write log more than BITMAP_SIZE, return -ENOSPC\n");
281         for (i = 0; i < LLOG_BITMAP_SIZE(llh->lgh_hdr) + 1; i++) {
282                 struct llog_rec_hdr     hdr;
283                 char                    buf_even[24];
284                 char                    buf_odd[32];
285
286                 memset(buf_odd, 0, sizeof buf_odd);
287                 memset(buf_even, 0, sizeof buf_even);
288                 if ((i % 2) == 0) {
289                         hdr.lrh_len = 24;
290                         hdr.lrh_type = OBD_CFG_REC;
291                         rc = llog_write(env, llh, &hdr, NULL, 0, buf_even, -1);
292                 } else {
293                         hdr.lrh_len = 32;
294                         hdr.lrh_type = OBD_CFG_REC;
295                         rc = llog_write(env, llh, &hdr, NULL, 0, buf_odd, -1);
296                 }
297                 if (rc == -ENOSPC) {
298                         break;
299                 } else if (rc < 0) {
300                         CERROR("3d: write recs failed at #%d: %d\n",
301                                i + 1, rc);
302                         RETURN(rc);
303                 }
304                 num_recs++;
305         }
306         if (rc != -ENOSPC) {
307                 CWARN("3d: write record more than BITMAP size!\n");
308                 RETURN(-EINVAL);
309         }
310         CWARN("3d: wrote %d more records before end of llog is reached\n",
311               num_recs);
312
313         rc = verify_handle("3d", llh, num_recs);
314
315         RETURN(rc);
316 }
317
318 /* Test catalogue additions */
319 static int llog_test_4(const struct lu_env *env, struct obd_device *obd)
320 {
321         struct llog_handle      *cath;
322         char                     name[10];
323         int                      rc, rc2, i, buflen;
324         struct llog_mini_rec     lmr;
325         struct llog_cookie       cookie;
326         struct llog_ctxt        *ctxt;
327         int                      num_recs = 0;
328         char                    *buf;
329         struct llog_rec_hdr      rec;
330
331         ENTRY;
332
333         ctxt = llog_get_context(obd, LLOG_TEST_ORIG_CTXT);
334         LASSERT(ctxt);
335
336         lmr.lmr_hdr.lrh_len = lmr.lmr_tail.lrt_len = LLOG_MIN_REC_SIZE;
337         lmr.lmr_hdr.lrh_type = 0xf00f00;
338
339         sprintf(name, "%x", llog_test_rand + 1);
340         CWARN("4a: create a catalog log with name: %s\n", name);
341         rc = llog_open_create(env, ctxt, &cath, NULL, name);
342         if (rc) {
343                 CERROR("4a: llog_create with name %s failed: %d\n", name, rc);
344                 GOTO(ctxt_release, rc);
345         }
346         llog_init_handle(env, cath, LLOG_F_IS_CAT, &uuid);
347         if (rc) {
348                 CERROR("4a: can't init llog handle: %d\n", rc);
349                 GOTO(out, rc);
350         }
351
352         num_recs++;
353         cat_logid = cath->lgh_id;
354
355         /* XXX: there is known issue with tests 4b, MGS is not able to add
356          * anonymous plain llog, si we exit now to allow following tests run.
357          * It is fixed in upcoming llog over OSD code */
358         GOTO(out, rc);
359
360         CWARN("4b: write 1 record into the catalog\n");
361         rc = llog_cat_add(env, cath, &lmr.lmr_hdr, &cookie, NULL);
362         if (rc != 1) {
363                 CERROR("4b: write 1 catalog record failed at: %d\n", rc);
364                 GOTO(out, rc);
365         }
366         num_recs++;
367         rc = verify_handle("4b", cath, 2);
368         if (rc)
369                 GOTO(out, rc);
370
371         rc = verify_handle("4b", cath->u.chd.chd_current_log, num_recs);
372         if (rc)
373                 GOTO(out, rc);
374
375         CWARN("4c: cancel 1 log record\n");
376         rc = llog_cat_cancel_records(env, cath, 1, &cookie);
377         if (rc) {
378                 CERROR("4c: cancel 1 catalog based record failed: %d\n", rc);
379                 GOTO(out, rc);
380         }
381         num_recs--;
382
383         rc = verify_handle("4c", cath->u.chd.chd_current_log, num_recs);
384         if (rc)
385                 GOTO(out, rc);
386
387         CWARN("4d: write %d more log records\n", LLOG_TEST_RECNUM);
388         for (i = 0; i < LLOG_TEST_RECNUM; i++) {
389                 rc = llog_cat_add(env, cath, &lmr.lmr_hdr, NULL, NULL);
390                 if (rc) {
391                         CERROR("4d: write %d records failed at #%d: %d\n",
392                                LLOG_TEST_RECNUM, i + 1, rc);
393                         GOTO(out, rc);
394                 }
395                 num_recs++;
396         }
397
398         /* make sure new plain llog appears */
399         rc = verify_handle("4d", cath, 3);
400         if (rc)
401                 GOTO(out, rc);
402
403         CWARN("4e: add 5 large records, one record per block\n");
404         buflen = LLOG_CHUNK_SIZE - sizeof(struct llog_rec_hdr) -
405                  sizeof(struct llog_rec_tail);
406         OBD_ALLOC(buf, buflen);
407         if (buf == NULL)
408                 GOTO(out, rc = -ENOMEM);
409         for (i = 0; i < 5; i++) {
410                 rec.lrh_len = buflen;
411                 rec.lrh_type = OBD_CFG_REC;
412                 rc = llog_cat_add(env, cath, &rec, NULL, buf);
413                 if (rc) {
414                         CERROR("4e: write 5 records failed at #%d: %d\n",
415                                i + 1, rc);
416                         GOTO(out_free, rc);
417                 }
418                 num_recs++;
419         }
420 out_free:
421         OBD_FREE(buf, buflen);
422 out:
423         CWARN("4f: put newly-created catalog\n");
424         rc2 = llog_cat_close(env, cath);
425         if (rc2) {
426                 CERROR("4: close log %s failed: %d\n", name, rc2);
427                 if (rc == 0)
428                         rc = rc2;
429         }
430 ctxt_release:
431         llog_ctxt_put(ctxt);
432         RETURN(rc);
433 }
434
435 static int cat_counter;
436
437 static int cat_print_cb(const struct lu_env *env, struct llog_handle *llh,
438                         struct llog_rec_hdr *rec, void *data)
439 {
440         struct llog_logid_rec   *lir = (struct llog_logid_rec *)rec;
441
442         if (rec->lrh_type != LLOG_LOGID_MAGIC) {
443                 CERROR("invalid record in catalog\n");
444                 RETURN(-EINVAL);
445         }
446
447         CWARN("seeing record at index %d - "LPX64":%x in log "LPX64"\n",
448               rec->lrh_index, lir->lid_id.lgl_oid,
449               lir->lid_id.lgl_ogen, llh->lgh_id.lgl_oid);
450
451         cat_counter++;
452
453         RETURN(0);
454 }
455
456 static int plain_counter;
457
458 static int plain_print_cb(const struct lu_env *env, struct llog_handle *llh,
459                           struct llog_rec_hdr *rec, void *data)
460 {
461         if (!(llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN)) {
462                 CERROR("log is not plain\n");
463                 RETURN(-EINVAL);
464         }
465
466         CDEBUG(D_INFO, "seeing record at index %d in log "LPX64"\n",
467               rec->lrh_index, llh->lgh_id.lgl_oid);
468
469         plain_counter++;
470
471         RETURN(0);
472 }
473
474 static int cancel_count;
475
476 static int llog_cancel_rec_cb(const struct lu_env *env,
477                               struct llog_handle *llh,
478                               struct llog_rec_hdr *rec, void *data)
479 {
480         struct llog_cookie cookie;
481
482         if (!(llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN)) {
483                 CERROR("log is not plain\n");
484                 RETURN(-EINVAL);
485         }
486
487         cookie.lgc_lgl = llh->lgh_id;
488         cookie.lgc_index = rec->lrh_index;
489
490         llog_cat_cancel_records(env, llh->u.phd.phd_cat_handle, 1, &cookie);
491         cancel_count++;
492         if (cancel_count == LLOG_TEST_RECNUM)
493                 RETURN(-LLOG_EEMPTY);
494         RETURN(0);
495 }
496
497 /* Test log and catalogue processing */
498 static int llog_test_5(const struct lu_env *env, struct obd_device *obd)
499 {
500         struct llog_handle      *llh = NULL;
501         char                     name[10];
502         int                      rc, rc2;
503         struct llog_mini_rec     lmr;
504         struct llog_ctxt        *ctxt;
505
506         ENTRY;
507
508         ctxt = llog_get_context(obd, LLOG_TEST_ORIG_CTXT);
509         LASSERT(ctxt);
510
511         lmr.lmr_hdr.lrh_len = lmr.lmr_tail.lrt_len = LLOG_MIN_REC_SIZE;
512         lmr.lmr_hdr.lrh_type = 0xf00f00;
513
514         CWARN("5a: re-open catalog by id\n");
515         rc = llog_open(env, ctxt, &llh, &cat_logid, NULL, LLOG_OPEN_EXISTS);
516         if (rc) {
517                 CERROR("5a: llog_create with logid failed: %d\n", rc);
518                 GOTO(out_put, rc);
519         }
520
521         llog_init_handle(env, llh, LLOG_F_IS_CAT, &uuid);
522         if (rc) {
523                 CERROR("5a: can't init llog handle: %d\n", rc);
524                 GOTO(out, rc);
525         }
526
527         /* XXX: depends on tests 4 which is not working yet */
528         GOTO(out, rc);
529
530         CWARN("5b: print the catalog entries.. we expect 2\n");
531         cat_counter = 0;
532         rc = llog_process(env, llh, cat_print_cb, "test 5", NULL);
533         if (rc) {
534                 CERROR("5b: process with cat_print_cb failed: %d\n", rc);
535                 GOTO(out, rc);
536         }
537         if (cat_counter != 2) {
538                 CERROR("5b: %d entries in catalog\n", cat_counter);
539                 GOTO(out, rc = -EINVAL);
540         }
541
542         CWARN("5c: Cancel %d records, see one log zapped\n", LLOG_TEST_RECNUM);
543         cancel_count = 0;
544         rc = llog_cat_process(env, llh, llog_cancel_rec_cb, "foobar", 0, 0);
545         if (rc != -LLOG_EEMPTY) {
546                 CERROR("5c: process with cat_cancel_cb failed: %d\n", rc);
547                 GOTO(out, rc);
548         }
549
550         CWARN("5c: print the catalog entries.. we expect 1\n");
551         cat_counter = 0;
552         rc = llog_process(env, llh, cat_print_cb, "test 5", NULL);
553         if (rc) {
554                 CERROR("5c: process with cat_print_cb failed: %d\n", rc);
555                 GOTO(out, rc);
556         }
557         if (cat_counter != 1) {
558                 CERROR("5c: %d entries in catalog\n", cat_counter);
559                 GOTO(out, rc = -EINVAL);
560         }
561
562         CWARN("5d: add 1 record to the log with many canceled empty pages\n");
563         rc = llog_cat_add(env, llh, &lmr.lmr_hdr, NULL, NULL);
564         if (rc) {
565                 CERROR("5d: add record to the log with many canceled empty "
566                        "pages failed\n");
567                 GOTO(out, rc);
568         }
569
570         CWARN("5e: print plain log entries.. expect 6\n");
571         plain_counter = 0;
572         rc = llog_cat_process(env, llh, plain_print_cb, "foobar", 0, 0);
573         if (rc) {
574                 CERROR("5e: process with plain_print_cb failed: %d\n", rc);
575                 GOTO(out, rc);
576         }
577         if (plain_counter != 6) {
578                 CERROR("5e: found %d records\n", plain_counter);
579                 GOTO(out, rc = -EINVAL);
580         }
581
582         CWARN("5f: print plain log entries reversely.. expect 6\n");
583         plain_counter = 0;
584         rc = llog_cat_reverse_process(env, llh, plain_print_cb, "foobar");
585         if (rc) {
586                 CERROR("5f: reversely process with plain_print_cb failed:"
587                        "%d\n", rc);
588                 GOTO(out, rc);
589         }
590         if (plain_counter != 6) {
591                 CERROR("5f: found %d records\n", plain_counter);
592                 GOTO(out, rc = -EINVAL);
593         }
594
595 out:
596         CWARN("5g: close re-opened catalog\n");
597         rc2 = llog_cat_close(env, llh);
598         if (rc2) {
599                 CERROR("5g: close log %s failed: %d\n", name, rc2);
600                 if (rc == 0)
601                         rc = rc2;
602         }
603 out_put:
604         llog_ctxt_put(ctxt);
605
606         RETURN(rc);
607 }
608
609 /* Test client api; open log by name and process */
610 static int llog_test_6(const struct lu_env *env, struct obd_device *obd,
611                        char *name)
612 {
613         struct obd_device       *mgc_obd;
614         struct llog_ctxt        *ctxt;
615         struct obd_uuid         *mgs_uuid;
616         struct obd_export       *exp;
617         struct obd_uuid          uuid = { "LLOG_TEST6_UUID" };
618         struct llog_handle      *llh = NULL;
619         struct llog_ctxt        *nctxt;
620         int                      rc, rc2;
621
622         ctxt = llog_get_context(obd, LLOG_TEST_ORIG_CTXT);
623         LASSERT(ctxt);
624         mgs_uuid = &ctxt->loc_exp->exp_obd->obd_uuid;
625
626         CWARN("6a: re-open log %s using client API\n", name);
627         mgc_obd = class_find_client_obd(mgs_uuid, LUSTRE_MGC_NAME, NULL);
628         if (mgc_obd == NULL) {
629                 CERROR("6a: no MGC devices connected to %s found.\n",
630                        mgs_uuid->uuid);
631                 GOTO(ctxt_release, rc = -ENOENT);
632         }
633
634         rc = obd_connect(NULL, &exp, mgc_obd, &uuid,
635                          NULL /* obd_connect_data */, NULL);
636         if (rc != -EALREADY) {
637                 CERROR("6a: connect on connected MDC (%s) failed to return"
638                        " -EALREADY", mgc_obd->obd_name);
639                 if (rc == 0)
640                         obd_disconnect(exp);
641                 GOTO(ctxt_release, rc = -EINVAL);
642         }
643
644         nctxt = llog_get_context(mgc_obd, LLOG_CONFIG_REPL_CTXT);
645         rc = llog_open(env, nctxt, &llh, NULL, name, LLOG_OPEN_EXISTS);
646         if (rc) {
647                 CERROR("6a: llog_open failed %d\n", rc);
648                 GOTO(nctxt_put, rc);
649         }
650
651         rc = llog_init_handle(env, llh, LLOG_F_IS_PLAIN, NULL);
652         if (rc) {
653                 CERROR("6a: llog_init_handle failed %d\n", rc);
654                 GOTO(parse_out, rc);
655         }
656
657         plain_counter = 1; /* llog header is first record */
658         CWARN("6b: process log %s using client API\n", name);
659         rc = llog_process(env, llh, plain_print_cb, NULL, NULL);
660         if (rc)
661                 CERROR("6b: llog_process failed %d\n", rc);
662         CWARN("6b: processed %d records\n", plain_counter);
663
664         rc = verify_handle("6b", llh, plain_counter);
665         if (rc)
666                 GOTO(parse_out, rc);
667
668         plain_counter = 1; /* llog header is first record */
669         CWARN("6c: process log %s reversely using client API\n", name);
670         rc = llog_reverse_process(env, llh, plain_print_cb, NULL, NULL);
671         if (rc)
672                 CERROR("6c: llog_reverse_process failed %d\n", rc);
673         CWARN("6c: processed %d records\n", plain_counter);
674
675         rc = verify_handle("6c", llh, plain_counter);
676         if (rc)
677                 GOTO(parse_out, rc);
678
679 parse_out:
680         rc2 = llog_close(env, llh);
681         if (rc2) {
682                 CERROR("6: llog_close failed: rc = %d\n", rc2);
683                 if (rc == 0)
684                         rc = rc2;
685         }
686 nctxt_put:
687         llog_ctxt_put(nctxt);
688 ctxt_release:
689         llog_ctxt_put(ctxt);
690         RETURN(rc);
691 }
692
693 static union {
694         struct llog_rec_hdr             lrh;   /* common header */
695         struct llog_logid_rec           llr;   /* LLOG_LOGID_MAGIC */
696         struct llog_unlink64_rec        lur;   /* MDS_UNLINK64_REC */
697         struct llog_setattr64_rec       lsr64; /* MDS_SETATTR64_REC */
698         struct llog_size_change_rec     lscr;  /* OST_SZ_REC */
699         struct llog_changelog_rec       lcr;   /* CHANGELOG_REC */
700         struct llog_changelog_user_rec  lcur;  /* CHANGELOG_USER_REC */
701         struct llog_gen_rec             lgr;   /* LLOG_GEN_REC */
702 } llog_records;
703
704 static int test_7_print_cb(const struct lu_env *env, struct llog_handle *llh,
705                            struct llog_rec_hdr *rec, void *data)
706 {
707         struct lu_fid fid;
708
709         logid_to_fid(&llh->lgh_id, &fid);
710
711         CDEBUG(D_OTHER, "record type %#x at index %d in log "DFID"\n",
712                rec->lrh_type, rec->lrh_index, PFID(&fid));
713
714         plain_counter++;
715         return 0;
716 }
717
718 static int test_7_cancel_cb(const struct lu_env *env, struct llog_handle *llh,
719                             struct llog_rec_hdr *rec, void *data)
720 {
721         plain_counter++;
722         /* test LLOG_DEL_RECORD is working */
723         return LLOG_DEL_RECORD;
724 }
725
726 static int llog_test_7_sub(const struct lu_env *env, struct llog_ctxt *ctxt)
727 {
728         struct llog_handle      *llh;
729         int                      rc = 0, i, process_count;
730         int                      num_recs = 0;
731
732         ENTRY;
733
734         rc = llog_open_create(env, ctxt, &llh, NULL, "llt_test7");
735         if (rc) {
736                 CERROR("7_sub: create log failed\n");
737                 RETURN(rc);
738         }
739
740         rc = llog_init_handle(env, llh,
741                               LLOG_F_IS_PLAIN | LLOG_F_ZAP_WHEN_EMPTY,
742                               &uuid);
743         if (rc) {
744                 CERROR("7_sub: can't init llog handle: %d\n", rc);
745                 GOTO(out_close, rc);
746         }
747         for (i = 0; i < LLOG_BITMAP_SIZE(llh->lgh_hdr); i++) {
748                 rc = llog_write(env, llh, &llog_records.lrh, NULL, 0,
749                                 NULL, -1);
750                 if (rc == -ENOSPC) {
751                         break;
752                 } else if (rc < 0) {
753                         CERROR("7_sub: write recs failed at #%d: %d\n",
754                                i + 1, rc);
755                         GOTO(out_close, rc);
756                 }
757                 num_recs++;
758         }
759         if (rc != -ENOSPC) {
760                 CWARN("7_sub: write record more than BITMAP size!\n");
761                 GOTO(out_close, rc = -EINVAL);
762         }
763
764         rc = verify_handle("7_sub", llh, num_recs + 1);
765         if (rc) {
766                 CERROR("7_sub: verify handle failed: %d\n", rc);
767                 GOTO(out_close, rc);
768         }
769         if (num_recs < LLOG_BITMAP_SIZE(llh->lgh_hdr) - 1)
770                 CWARN("7_sub: records are not aligned, written %d from %u\n",
771                       num_recs, LLOG_BITMAP_SIZE(llh->lgh_hdr) - 1);
772
773         plain_counter = 0;
774         rc = llog_process(env, llh, test_7_print_cb, "test 7", NULL);
775         if (rc) {
776                 CERROR("7_sub: llog process failed: %d\n", rc);
777                 GOTO(out_close, rc);
778         }
779         process_count = plain_counter;
780         if (process_count != num_recs) {
781                 CERROR("7_sub: processed %d records from %d total\n",
782                        process_count, num_recs);
783                 GOTO(out_close, rc = -EINVAL);
784         }
785
786         plain_counter = 0;
787         rc = llog_reverse_process(env, llh, test_7_cancel_cb, "test 7", NULL);
788         if (rc) {
789                 CERROR("7_sub: reverse llog process failed: %d\n", rc);
790                 GOTO(out_close, rc);
791         }
792         if (process_count != plain_counter) {
793                 CERROR("7_sub: Reverse/direct processing found different"
794                        "number of records: %d/%d\n",
795                        plain_counter, process_count);
796                 GOTO(out_close, rc = -EINVAL);
797         }
798         if (llog_exist(llh)) {
799                 CERROR("7_sub: llog exists but should be zapped\n");
800                 GOTO(out_close, rc = -EEXIST);
801         }
802
803         rc = verify_handle("7_sub", llh, 1);
804 out_close:
805         if (rc)
806                 llog_destroy(env, llh);
807         llog_close(env, llh);
808         RETURN(rc);
809 }
810
811 /* Test all llog records writing and processing */
812 static int llog_test_7(const struct lu_env *env, struct obd_device *obd)
813 {
814         struct llog_ctxt        *ctxt;
815         int                      rc;
816
817         ENTRY;
818
819         ctxt = llog_get_context(obd, LLOG_TEST_ORIG_CTXT);
820
821         CWARN("7a: test llog_logid_rec\n");
822         llog_records.llr.lid_hdr.lrh_len = sizeof(llog_records.llr);
823         llog_records.llr.lid_tail.lrt_len = sizeof(llog_records.llr);
824         llog_records.llr.lid_hdr.lrh_type = LLOG_LOGID_MAGIC;
825
826         rc = llog_test_7_sub(env, ctxt);
827         if (rc) {
828                 CERROR("7a: llog_logid_rec test failed\n");
829                 GOTO(out, rc);
830         }
831
832         CWARN("7b: test llog_unlink64_rec\n");
833         llog_records.lur.lur_hdr.lrh_len = sizeof(llog_records.lur);
834         llog_records.lur.lur_tail.lrt_len = sizeof(llog_records.lur);
835         llog_records.lur.lur_hdr.lrh_type = MDS_UNLINK64_REC;
836
837         rc = llog_test_7_sub(env, ctxt);
838         if (rc) {
839                 CERROR("7b: llog_unlink_rec test failed\n");
840                 GOTO(out, rc);
841         }
842
843         CWARN("7c: test llog_setattr64_rec\n");
844         llog_records.lsr64.lsr_hdr.lrh_len = sizeof(llog_records.lsr64);
845         llog_records.lsr64.lsr_tail.lrt_len = sizeof(llog_records.lsr64);
846         llog_records.lsr64.lsr_hdr.lrh_type = MDS_SETATTR64_REC;
847
848         rc = llog_test_7_sub(env, ctxt);
849         if (rc) {
850                 CERROR("7c: llog_setattr64_rec test failed\n");
851                 GOTO(out, rc);
852         }
853
854         CWARN("7d: test llog_size_change_rec\n");
855         llog_records.lscr.lsc_hdr.lrh_len = sizeof(llog_records.lscr);
856         llog_records.lscr.lsc_tail.lrt_len = sizeof(llog_records.lscr);
857         llog_records.lscr.lsc_hdr.lrh_type = OST_SZ_REC;
858
859         rc = llog_test_7_sub(env, ctxt);
860         if (rc) {
861                 CERROR("7d: llog_size_change_rec test failed\n");
862                 GOTO(out, rc);
863         }
864
865         CWARN("7e: test llog_changelog_rec\n");
866         llog_records.lcr.cr_hdr.lrh_len = sizeof(llog_records.lcr);
867         llog_records.lcr.cr_tail.lrt_len = sizeof(llog_records.lcr);
868         llog_records.lcr.cr_hdr.lrh_type = CHANGELOG_REC;
869
870         rc = llog_test_7_sub(env, ctxt);
871         if (rc) {
872                 CERROR("7e: llog_changelog_rec test failed\n");
873                 GOTO(out, rc);
874         }
875
876         CWARN("7f: test llog_changelog_user_rec\n");
877         llog_records.lcur.cur_hdr.lrh_len = sizeof(llog_records.lcur);
878         llog_records.lcur.cur_tail.lrt_len = sizeof(llog_records.lcur);
879         llog_records.lcur.cur_hdr.lrh_type = CHANGELOG_USER_REC;
880
881         rc = llog_test_7_sub(env, ctxt);
882         if (rc) {
883                 CERROR("7f: llog_changelog_user_rec test failed\n");
884                 GOTO(out, rc);
885         }
886
887         CWARN("7g: test llog_gen_rec\n");
888         llog_records.lgr.lgr_hdr.lrh_len = sizeof(llog_records.lgr);
889         llog_records.lgr.lgr_tail.lrt_len = sizeof(llog_records.lgr);
890         llog_records.lgr.lgr_hdr.lrh_type = LLOG_GEN_REC;
891
892         rc = llog_test_7_sub(env, ctxt);
893         if (rc) {
894                 CERROR("7g: llog_size_change_rec test failed\n");
895                 GOTO(out, rc);
896         }
897 out:
898         llog_ctxt_put(ctxt);
899         RETURN(rc);
900 }
901
902 /* -------------------------------------------------------------------------
903  * Tests above, boring obd functions below
904  * ------------------------------------------------------------------------- */
905 static int llog_run_tests(const struct lu_env *env, struct obd_device *obd)
906 {
907         struct llog_handle      *llh = NULL;
908         struct lvfs_run_ctxt     saved;
909         struct llog_ctxt        *ctxt;
910         int                      rc, err;
911         char                     name[10];
912
913         ENTRY;
914         ctxt = llog_get_context(obd, LLOG_TEST_ORIG_CTXT);
915         LASSERT(ctxt);
916
917         sprintf(name, "%x", llog_test_rand);
918         push_ctxt(&saved, &ctxt->loc_exp->exp_obd->obd_lvfs_ctxt, NULL);
919
920         rc = llog_test_1(env, obd, name);
921         if (rc)
922                 GOTO(cleanup_ctxt, rc);
923
924         rc = llog_test_2(env, obd, name, &llh);
925         if (rc)
926                 GOTO(cleanup_ctxt, rc);
927
928         rc = llog_test_3(env, obd, llh);
929         if (rc)
930                 GOTO(cleanup, rc);
931
932         rc = llog_test_4(env, obd);
933         if (rc)
934                 GOTO(cleanup, rc);
935
936         rc = llog_test_5(env, obd);
937         if (rc)
938                 GOTO(cleanup, rc);
939
940         rc = llog_test_6(env, obd, name);
941         if (rc)
942                 GOTO(cleanup, rc);
943
944         rc = llog_test_7(env, obd);
945         if (rc)
946                 GOTO(cleanup, rc);
947
948 cleanup:
949         err = llog_destroy(env, llh);
950         if (err)
951                 CERROR("cleanup: llog_destroy failed: %d\n", err);
952         llog_close(env, llh);
953         if (rc == 0)
954                 rc = err;
955 cleanup_ctxt:
956         pop_ctxt(&saved, &ctxt->loc_exp->exp_obd->obd_lvfs_ctxt, NULL);
957         llog_ctxt_put(ctxt);
958         return rc;
959 }
960
961 #ifdef LPROCFS
962 static struct lprocfs_vars lprocfs_llog_test_obd_vars[] = { {0} };
963 static struct lprocfs_vars lprocfs_llog_test_module_vars[] = { {0} };
964 static void lprocfs_llog_test_init_vars(struct lprocfs_static_vars *lvars)
965 {
966     lvars->module_vars  = lprocfs_llog_test_module_vars;
967     lvars->obd_vars     = lprocfs_llog_test_obd_vars;
968 }
969 #endif
970
971 static int llog_test_cleanup(struct obd_device *obd)
972 {
973         int rc;
974
975         rc = llog_cleanup(llog_get_context(obd, LLOG_TEST_ORIG_CTXT));
976         if (rc)
977                 CERROR("failed to llog_test_llog_finish: %d\n", rc);
978         return rc;
979 }
980
981 static int llog_test_setup(struct obd_device *obd, struct lustre_cfg *lcfg)
982 {
983         struct obd_device *tgt;
984         struct lu_env env;
985         int rc;
986
987         ENTRY;
988
989         if (lcfg->lcfg_bufcount < 2) {
990                 CERROR("requires a TARGET OBD name\n");
991                 RETURN(-EINVAL);
992         }
993
994         if (lcfg->lcfg_buflens[1] < 1) {
995                 CERROR("requires a TARGET OBD name\n");
996                 RETURN(-EINVAL);
997         }
998
999         /* disk obd */
1000         tgt = class_name2obd(lustre_cfg_string(lcfg, 1));
1001         if (!tgt || !tgt->obd_attached || !tgt->obd_set_up) {
1002                 CERROR("target device not attached or not set up (%s)\n",
1003                        lustre_cfg_string(lcfg, 1));
1004                 RETURN(-EINVAL);
1005         }
1006
1007         rc = lu_env_init(&env, LCT_LOCAL | LCT_MG_THREAD);
1008         if (rc)
1009                 RETURN(rc);
1010
1011         CWARN("Setup llog-test device over %s device\n",
1012               lustre_cfg_string(lcfg, 1));
1013
1014         rc = llog_setup(obd, &obd->obd_olg, LLOG_TEST_ORIG_CTXT, tgt, 0, NULL,
1015                         &llog_lvfs_ops);
1016         if (rc)
1017                 GOTO(cleanup_env, rc);
1018
1019         llog_test_rand = cfs_rand();
1020
1021         rc = llog_run_tests(&env, obd);
1022         if (rc)
1023                 llog_test_cleanup(obd);
1024 cleanup_env:
1025         lu_env_fini(&env);
1026         RETURN(rc);
1027 }
1028
1029 static struct obd_ops llog_obd_ops = {
1030         .o_owner       = THIS_MODULE,
1031         .o_setup       = llog_test_setup,
1032         .o_cleanup     = llog_test_cleanup,
1033 };
1034
1035 static int __init llog_test_init(void)
1036 {
1037         struct lprocfs_static_vars lvars;
1038
1039         lprocfs_llog_test_init_vars(&lvars);
1040         return class_register_type(&llog_obd_ops, NULL,
1041                                    lvars.module_vars, "llog_test", NULL);
1042 }
1043
1044 static void __exit llog_test_exit(void)
1045 {
1046         class_unregister_type("llog_test");
1047 }
1048
1049 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
1050 MODULE_DESCRIPTION("llog test module");
1051 MODULE_LICENSE("GPL");
1052
1053 module_init(llog_test_init);
1054 module_exit(llog_test_exit);