4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
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
23 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Use is subject to license terms.
26 * Copyright (c) 2012, 2017, Intel Corporation.
29 * This file is part of Lustre, http://www.lustre.org/
31 * lustre/obdclass/llog.c
33 * OST<->MDS recovery logging infrastructure.
34 * Invariants in implementation:
35 * - we do not share logs among different OST<->MDS connections, so that
36 * if an OST or MDS fails it need only look at log(s) relevant to itself
38 * Author: Andreas Dilger <adilger@clusterfs.com>
39 * Author: Alex Zhuravlev <bzzz@whamcloud.com>
40 * Author: Mikhail Pershin <tappro@whamcloud.com>
43 #define DEBUG_SUBSYSTEM S_LOG
45 #include <linux/pid_namespace.h>
46 #include <linux/kthread.h>
47 #include <llog_swab.h>
48 #include <lustre_log.h>
49 #include <obd_support.h>
50 #include <obd_class.h>
51 #include "llog_internal.h"
54 * Allocate a new log or catalog handle
55 * Used inside llog_open().
57 static struct llog_handle *llog_alloc_handle(void)
59 struct llog_handle *loghandle;
61 OBD_ALLOC_PTR(loghandle);
62 if (loghandle == NULL)
65 init_rwsem(&loghandle->lgh_lock);
66 mutex_init(&loghandle->lgh_hdr_mutex);
67 init_rwsem(&loghandle->lgh_last_sem);
68 INIT_LIST_HEAD(&loghandle->u.phd.phd_entry);
69 refcount_set(&loghandle->lgh_refcount, 1);
75 * Free llog handle and header data if exists. Used in llog_close() only
77 static void llog_free_handle(struct llog_handle *loghandle)
79 LASSERT(loghandle != NULL);
81 /* failed llog_init_handle */
82 if (loghandle->lgh_hdr == NULL)
85 if (loghandle->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN)
86 LASSERT(list_empty(&loghandle->u.phd.phd_entry));
87 else if (loghandle->lgh_hdr->llh_flags & LLOG_F_IS_CAT)
88 LASSERT(list_empty(&loghandle->u.chd.chd_head));
89 OBD_FREE_LARGE(loghandle->lgh_hdr, loghandle->lgh_hdr_size);
91 OBD_FREE_PTR(loghandle);
94 struct llog_handle *llog_handle_get(struct llog_handle *loghandle)
96 if (refcount_inc_not_zero(&loghandle->lgh_refcount))
101 int llog_handle_put(const struct lu_env *env, struct llog_handle *loghandle)
105 if (refcount_dec_and_test(&loghandle->lgh_refcount)) {
106 const struct llog_operations *lop;
108 rc = llog_handle2ops(loghandle, &lop);
111 rc = lop->lop_close(env, loghandle);
115 llog_free_handle(loghandle);
120 static int llog_declare_destroy(const struct lu_env *env,
121 struct llog_handle *handle,
124 const struct llog_operations *lop;
129 rc = llog_handle2ops(handle, &lop);
132 if (lop->lop_declare_destroy == NULL)
135 rc = lop->lop_declare_destroy(env, handle, th);
140 int llog_trans_destroy(const struct lu_env *env, struct llog_handle *handle,
143 const struct llog_operations *lop;
147 rc = llog_handle2ops(handle, &lop);
150 if (lop->lop_destroy == NULL)
153 LASSERT(handle->lgh_obj != NULL);
154 if (!llog_exist(handle))
157 rc = lop->lop_destroy(env, handle, th);
162 int llog_destroy(const struct lu_env *env, struct llog_handle *handle)
164 const struct llog_operations *lop;
165 struct dt_device *dt;
171 rc = llog_handle2ops(handle, &lop);
174 if (lop->lop_destroy == NULL)
177 if (handle->lgh_obj == NULL) {
178 /* if lgh_obj == NULL, then it is from client side destroy */
179 rc = lop->lop_destroy(env, handle, NULL);
183 if (!llog_exist(handle))
186 dt = lu2dt_dev(handle->lgh_obj->do_lu.lo_dev);
188 if (unlikely(unlikely(dt->dd_rdonly)))
191 th = dt_trans_create(env, dt);
195 rc = llog_declare_destroy(env, handle, th);
199 rc = dt_trans_start_local(env, dt, th);
203 rc = lop->lop_destroy(env, handle, th);
206 dt_trans_stop(env, dt, th);
210 EXPORT_SYMBOL(llog_destroy);
212 /* returns negative on error; 0 if success; 1 if success & log destroyed */
213 int llog_cancel_arr_rec(const struct lu_env *env, struct llog_handle *loghandle,
216 struct llog_thread_info *lgi = llog_info(env);
217 struct dt_device *dt;
218 struct llog_log_hdr *llh;
223 bool subtract_count = false;
227 LASSERT(loghandle != NULL);
228 LASSERT(loghandle->lgh_ctxt != NULL);
229 LASSERT(loghandle->lgh_obj != NULL);
231 llh = loghandle->lgh_hdr;
233 CDEBUG(D_RPCTRACE, "Canceling %d records, first %d in log "DFID"\n",
234 num, index[0], PFID(&loghandle->lgh_id.lgl_oi.oi_fid));
236 dt = lu2dt_dev(loghandle->lgh_obj->do_lu.lo_dev);
238 if (unlikely(unlikely(dt->dd_rdonly)))
241 th = dt_trans_create(env, dt);
245 rc = llog_declare_write_rec(env, loghandle, &llh->llh_hdr, 0, th);
249 if ((llh->llh_flags & LLOG_F_ZAP_WHEN_EMPTY)) {
250 rc = llog_declare_destroy(env, loghandle, th);
255 th->th_wait_submit = 1;
256 rc = dt_trans_start_local(env, dt, th);
260 down_write(&loghandle->lgh_lock);
262 mutex_lock(&loghandle->lgh_hdr_mutex);
263 for (i = 0; i < num; ++i) {
265 CERROR("Can't cancel index 0 which is header\n");
266 GOTO(out_unlock, rc = -EINVAL);
268 if (!__test_and_clear_bit_le(index[i], LLOG_HDR_BITMAP(llh))) {
269 CDEBUG(D_RPCTRACE, "Catalog index %u already clear?\n",
271 GOTO(out_unlock, rc = -ENOENT);
274 loghandle->lgh_hdr->llh_count -= num;
275 subtract_count = true;
277 /* Since llog_process_thread use lgi_cookie, it`s better to save them
278 * and restore after using
280 tmp_lgc_index = lgi->lgi_cookie.lgc_index;
281 /* Pass this index to llog_osd_write_rec(), which will use the index
282 * to only update the necesary bitmap. */
283 lgi->lgi_cookie.lgc_index = index[0];
285 rc = llog_write_rec(env, loghandle, &llh->llh_hdr, (num != 1 ? NULL :
286 &lgi->lgi_cookie), LLOG_HEADER_IDX, th);
287 lgi->lgi_cookie.lgc_index = tmp_lgc_index;
290 GOTO(out_unlock, rc);
292 if ((llh->llh_flags & LLOG_F_ZAP_WHEN_EMPTY) &&
293 (llh->llh_count == 1) &&
294 ((loghandle->lgh_last_idx == LLOG_HDR_BITMAP_SIZE(llh) - 1) ||
295 (loghandle->u.phd.phd_cat_handle != NULL &&
296 loghandle->u.phd.phd_cat_handle->u.chd.chd_current_log !=
298 /* never try to destroy it again */
299 llh->llh_flags &= ~LLOG_F_ZAP_WHEN_EMPTY;
300 rc = llog_trans_destroy(env, loghandle, th);
302 /* Sigh, can not destroy the final plain llog, but
303 * the bitmap has been clearly, so the record can not
304 * be accessed anymore, let's return 0 for now, and
305 * the orphan will be handled by LFSCK. */
306 CERROR("%s: can't destroy empty llog "DFID": rc = %d\n",
307 loghandle2name(loghandle),
308 PFID(&loghandle->lgh_id.lgl_oi.oi_fid), rc);
309 GOTO(out_unlock, rc = 0);
316 /* restore bitmap while holding a mutex */
317 if (subtract_count) {
318 loghandle->lgh_hdr->llh_count += num;
319 subtract_count = false;
321 for (i = i - 1; i >= 0; i--)
322 set_bit_le(index[i], LLOG_HDR_BITMAP(llh));
324 mutex_unlock(&loghandle->lgh_hdr_mutex);
325 up_write(&loghandle->lgh_lock);
327 rc1 = dt_trans_stop(env, dt, th);
331 mutex_lock(&loghandle->lgh_hdr_mutex);
333 loghandle->lgh_hdr->llh_count += num;
334 for (i = i - 1; i >= 0; i--)
335 set_bit_le(index[i], LLOG_HDR_BITMAP(llh));
336 mutex_unlock(&loghandle->lgh_hdr_mutex);
341 int llog_cancel_rec(const struct lu_env *env, struct llog_handle *loghandle,
344 return llog_cancel_arr_rec(env, loghandle, 1, &index);
347 int llog_read_header(const struct lu_env *env, struct llog_handle *handle,
348 const struct obd_uuid *uuid)
350 const struct llog_operations *lop;
354 rc = llog_handle2ops(handle, &lop);
358 if (lop->lop_read_header == NULL)
361 rc = lop->lop_read_header(env, handle);
362 if (rc == LLOG_EEMPTY) {
363 struct llog_log_hdr *llh = handle->lgh_hdr;
365 /* lrh_len should be initialized in llog_init_handle */
366 handle->lgh_last_idx = 0; /* header is record with index 0 */
367 llh->llh_count = 1; /* for the header record */
368 llh->llh_hdr.lrh_type = LLOG_HDR_MAGIC;
369 LASSERT(handle->lgh_ctxt->loc_chunk_size >=
370 LLOG_MIN_CHUNK_SIZE);
371 llh->llh_hdr.lrh_len = handle->lgh_ctxt->loc_chunk_size;
372 llh->llh_hdr.lrh_index = 0;
373 llh->llh_timestamp = ktime_get_real_seconds();
375 memcpy(&llh->llh_tgtuuid, uuid,
376 sizeof(llh->llh_tgtuuid));
377 llh->llh_bitmap_offset = offsetof(typeof(*llh), llh_bitmap);
378 /* Since update llog header might also call this function,
379 * let's reset the bitmap to 0 here */
380 memset(LLOG_HDR_BITMAP(llh), 0, llh->llh_hdr.lrh_len -
381 llh->llh_bitmap_offset -
382 sizeof(llh->llh_tail));
383 set_bit_le(0, LLOG_HDR_BITMAP(llh));
384 LLOG_HDR_TAIL(llh)->lrt_len = llh->llh_hdr.lrh_len;
385 LLOG_HDR_TAIL(llh)->lrt_index = llh->llh_hdr.lrh_index;
390 EXPORT_SYMBOL(llog_read_header);
392 int llog_init_handle(const struct lu_env *env, struct llog_handle *handle,
393 int flags, struct obd_uuid *uuid)
395 struct llog_log_hdr *llh;
396 enum llog_flag fmt = flags & LLOG_F_EXT_MASK;
398 int chunk_size = handle->lgh_ctxt->loc_chunk_size;
401 LASSERT(handle->lgh_hdr == NULL);
403 LASSERT(chunk_size >= LLOG_MIN_CHUNK_SIZE);
404 OBD_ALLOC_LARGE(llh, chunk_size);
408 handle->lgh_hdr = llh;
409 handle->lgh_hdr_size = chunk_size;
410 /* first assign flags to use llog_client_ops */
411 llh->llh_flags = flags;
412 rc = llog_read_header(env, handle, uuid);
414 if (unlikely((llh->llh_flags & LLOG_F_IS_PLAIN &&
415 flags & LLOG_F_IS_CAT) ||
416 (llh->llh_flags & LLOG_F_IS_CAT &&
417 flags & LLOG_F_IS_PLAIN))) {
418 CERROR("%s: llog type is %s but initializing %s\n",
419 loghandle2name(handle),
420 llh->llh_flags & LLOG_F_IS_CAT ?
422 flags & LLOG_F_IS_CAT ? "catalog" : "plain");
423 GOTO(out, rc = -EINVAL);
424 } else if (llh->llh_flags &
425 (LLOG_F_IS_PLAIN | LLOG_F_IS_CAT)) {
427 * it is possible to open llog without specifying llog
428 * type so it is taken from llh_flags
430 flags = llh->llh_flags;
432 /* for some reason the llh_flags has no type set */
433 CERROR("llog type is not specified!\n");
434 GOTO(out, rc = -EINVAL);
437 !obd_uuid_equals(uuid, &llh->llh_tgtuuid))) {
438 CERROR("%s: llog uuid mismatch: %s/%s\n",
439 loghandle2name(handle),
441 (char *)llh->llh_tgtuuid.uuid);
442 GOTO(out, rc = -EEXIST);
445 if (flags & LLOG_F_IS_CAT) {
446 LASSERT(list_empty(&handle->u.chd.chd_head));
447 INIT_LIST_HEAD(&handle->u.chd.chd_head);
448 llh->llh_size = sizeof(struct llog_logid_rec);
449 llh->llh_flags |= LLOG_F_IS_FIXSIZE;
450 } else if (!(flags & LLOG_F_IS_PLAIN)) {
451 CERROR("%s: unknown flags: %#x (expected %#x or %#x)\n",
452 loghandle2name(handle), flags, LLOG_F_IS_CAT,
456 llh->llh_flags |= fmt;
459 OBD_FREE_LARGE(llh, chunk_size);
460 handle->lgh_hdr = NULL;
464 EXPORT_SYMBOL(llog_init_handle);
466 int llog_verify_record(const struct llog_handle *llh, struct llog_rec_hdr *rec)
468 int chunk_size = llh->lgh_hdr->llh_hdr.lrh_len;
470 if (rec->lrh_len == 0 || rec->lrh_len > chunk_size) {
471 CERROR("%s: record is too large: %d > %d\n",
472 loghandle2name(llh), rec->lrh_len, chunk_size);
475 if (rec->lrh_index >= LLOG_HDR_BITMAP_SIZE(llh->lgh_hdr)) {
476 CERROR("%s: index is too high: %d\n",
477 loghandle2name(llh), rec->lrh_index);
480 if ((rec->lrh_type & LLOG_OP_MASK) != LLOG_OP_MAGIC) {
481 CERROR("%s: magic %x is bad\n",
482 loghandle2name(llh), rec->lrh_type);
488 EXPORT_SYMBOL(llog_verify_record);
490 static int llog_process_thread(void *arg)
492 struct llog_process_info *lpi = arg;
493 struct llog_handle *loghandle = lpi->lpi_loghandle;
494 struct llog_log_hdr *llh = loghandle->lgh_hdr;
495 struct llog_process_cat_data *cd = lpi->lpi_catdata;
496 struct llog_thread_info *lti;
500 int rc = 0, index = 1, last_index;
502 int last_called_index = 0;
503 bool repeated = false;
504 bool refresh_idx = false;
511 lti = lpi->lpi_env == NULL ? NULL : llog_info(lpi->lpi_env);
513 cur_offset = chunk_size = llh->llh_hdr.lrh_len;
514 /* expect chunk_size to be power of two */
515 LASSERT(is_power_of_2(chunk_size));
517 OBD_ALLOC_LARGE(buf, chunk_size);
519 lpi->lpi_rc = -ENOMEM;
524 last_called_index = cd->lpcd_first_idx;
525 index = cd->lpcd_first_idx + 1;
527 if (cd != NULL && cd->lpcd_last_idx)
528 last_index = cd->lpcd_last_idx;
530 last_index = LLOG_HDR_BITMAP_SIZE(llh) - 1;
533 struct llog_rec_hdr *rec;
534 off_t chunk_offset = 0;
535 unsigned int buf_offset = 0;
539 /* skip records not set in bitmap */
540 while (index <= last_index &&
541 !test_bit_le(index, LLOG_HDR_BITMAP(llh)))
544 /* There are no indices prior the last_index */
545 if (index > last_index)
548 CDEBUG(D_OTHER, "index: %d last_index %d\n", index,
552 /* get the buf with our target record; avoid old garbage */
553 memset(buf, 0, chunk_size);
554 /* the record index for outdated chunk data */
555 /* it is safe to process buffer until saved lgh_last_idx */
556 lh_last_idx = LLOG_HDR_TAIL(llh)->lrt_index;
557 rc = llog_next_block(lpi->lpi_env, loghandle, &saved_index,
558 index, &cur_offset, buf, chunk_size);
560 CDEBUG(D_OTHER, "cur_offset %llu, chunk_offset %llu,"
561 " buf_offset %u, rc = %d\n", cur_offset,
562 (__u64)chunk_offset, buf_offset, rc);
565 /* we`ve tried to reread the chunk, but there is no
567 if (rc == -EIO && repeated && (chunk_offset + buf_offset) ==
573 /* NB: after llog_next_block() call the cur_offset is the
574 * offset of the next block after read one.
575 * The absolute offset of the current chunk is calculated
576 * from cur_offset value and stored in chunk_offset variable.
578 if ((cur_offset & (chunk_size - 1)) != 0)
579 chunk_offset = cur_offset & ~(chunk_size - 1);
581 chunk_offset = cur_offset - chunk_size;
583 /* NB: when rec->lrh_len is accessed it is already swabbed
584 * since it is used at the "end" of the loop and the rec
585 * swabbing is done at the beginning of the loop. */
586 for (rec = (struct llog_rec_hdr *)(buf + buf_offset);
587 (char *)rec < buf + chunk_size;
588 rec = llog_rec_hdr_next(rec)) {
590 CDEBUG(D_OTHER, "processing rec 0x%p type %#x\n",
593 if (LLOG_REC_HDR_NEEDS_SWABBING(rec))
594 lustre_swab_llog_rec(rec);
596 CDEBUG(D_OTHER, "after swabbing, type=%#x idx=%d\n",
597 rec->lrh_type, rec->lrh_index);
599 if (index == (synced_idx + 1) &&
600 synced_idx == LLOG_HDR_TAIL(llh)->lrt_index)
603 if (OBD_FAIL_PRECHECK(OBD_FAIL_LLOG_PROCESS_TIMEOUT) &&
604 cfs_fail_val == (unsigned int)
605 (loghandle->lgh_id.lgl_oi.oi.oi_id &
607 OBD_RACE(OBD_FAIL_LLOG_PROCESS_TIMEOUT);
610 /* the bitmap could be changed during processing
611 * records from the chunk. For wrapped catalog
612 * it means we can read deleted record and try to
613 * process it. Check this case and reread the chunk.
614 * It is safe to process to lh_last_idx, including
615 * lh_last_idx if it was synced. We can not do <=
616 * comparison, cause for wrapped catalog lgh_last_idx
617 * could be less than index. So we detect last index
618 * for processing as index == lh_last_idx+1. But when
619 * catalog is wrapped and full lgh_last_idx=llh_cat_idx,
620 * the first processing index is llh_cat_idx+1.The
621 * exception is !(lgh_last_idx == llh_cat_idx &&
622 * index == llh_cat_idx + 1), and after simplification
624 * lh_last_idx != LLOG_HDR_TAIL(llh)->lrt_index
625 * This exception is working for catalog only.
628 if ((index == lh_last_idx && synced_idx != index) ||
629 (index == (lh_last_idx + 1) &&
630 lh_last_idx != LLOG_HDR_TAIL(llh)->lrt_index) ||
631 (rec->lrh_index == 0 && !repeated)) {
633 /* save offset inside buffer for the re-read */
634 buf_offset = (char *)rec - (char *)buf;
635 cur_offset = chunk_offset;
637 /* We need to be sure lgh_last_idx
638 * record was saved to disk
640 down_read(&loghandle->lgh_last_sem);
641 synced_idx = LLOG_HDR_TAIL(llh)->lrt_index;
642 up_read(&loghandle->lgh_last_sem);
643 CDEBUG(D_OTHER, "synced_idx: %d\n", synced_idx);
650 rc = llog_verify_record(loghandle, rec);
652 CERROR("%s: invalid record in llog "DFID
653 " record for index %d/%d: rc = %d\n",
654 loghandle2name(loghandle),
655 PFID(&loghandle->lgh_id.lgl_oi.oi_fid),
656 rec->lrh_index, index, rc);
658 * the block seem to be corrupted, let's try
659 * with the next one. reset rc to go to the
664 GOTO(repeat, rc = 0);
667 if (rec->lrh_index < index) {
668 CDEBUG(D_OTHER, "skipping lrh_index %d\n",
673 if (rec->lrh_index != index) {
675 * the last time we couldn't parse the block due
676 * to corruption, thus has no idea about the
677 * next index, take it from the block, once.
681 index = rec->lrh_index;
683 CERROR("%s: "DFID" Invalid record: index"
684 " %u but expected %u\n",
685 loghandle2name(loghandle),
686 PFID(&loghandle->lgh_id.lgl_oi.oi_fid),
687 rec->lrh_index, index);
688 GOTO(out, rc = -ERANGE);
693 "lrh_index: %d lrh_len: %d (%d remains)\n",
694 rec->lrh_index, rec->lrh_len,
695 (int)(buf + chunk_size - (char *)rec));
697 /* lgh_cur_offset is used only at llog_test_3 */
698 loghandle->lgh_cur_offset = (char *)rec - (char *)buf +
701 /* if set, process the callback on this record */
702 if (test_bit_le(index, LLOG_HDR_BITMAP(llh))) {
703 struct llog_cookie *lgc;
707 CDEBUG((llh->llh_flags & LLOG_F_IS_CAT ?
709 "index: %d, lh_last_idx: %d "
710 "synced_idx: %d lgh_last_idx: %d\n",
711 index, lh_last_idx, synced_idx,
712 loghandle->lgh_last_idx);
715 lgc = <i->lgi_cookie;
716 /* store lu_env for recursive calls */
717 tmp_off = lgc->lgc_offset;
718 tmp_idx = lgc->lgc_index;
720 lgc->lgc_offset = (char *)rec -
721 (char *)buf + chunk_offset;
722 lgc->lgc_index = rec->lrh_index;
724 /* using lu_env for passing record offset to
725 * llog_write through various callbacks */
726 rc = lpi->lpi_cb(lpi->lpi_env, loghandle, rec,
728 last_called_index = index;
731 lgc->lgc_offset = tmp_off;
732 lgc->lgc_index = tmp_idx;
735 if (rc == LLOG_PROC_BREAK) {
737 } else if (rc == LLOG_DEL_RECORD) {
738 rc = llog_cancel_rec(lpi->lpi_env,
741 /* Allow parallel cancelling, ENOENT
742 * means record was canceled at another
743 * processing thread or callback
750 /* some stupid callbacks directly cancel records
751 * and delete llog. Check it and stop
753 if (loghandle->lgh_hdr == NULL ||
754 loghandle->lgh_hdr->llh_count == 1)
757 /* exit if the last index is reached */
758 if (index >= last_index)
765 CDEBUG(D_HA, "stop processing %s "DOSTID":%x index %d count %d\n",
766 ((llh->llh_flags & LLOG_F_IS_CAT) ? "catalog" : "plain"),
767 POSTID(&loghandle->lgh_id.lgl_oi), loghandle->lgh_id.lgl_ogen,
768 index, llh->llh_count);
771 cd->lpcd_last_idx = last_called_index;
773 if (unlikely(rc == -EIO && loghandle->lgh_obj != NULL)) {
774 if (dt_object_remote(loghandle->lgh_obj)) {
775 /* If it is remote object, then -EIO might means
776 * disconnection or eviction, let's return -EAGAIN,
777 * so for update recovery log processing, it will
778 * retry until the umount or abort recovery, see
779 * lod_sub_recovery_thread() */
780 CERROR("%s retry remote llog process\n",
781 loghandle2name(loghandle));
784 /* something bad happened to the processing of a local
785 * llog file, probably I/O error or the log got
786 * corrupted to be able to finally release the log we
787 * discard any remaining bits in the header */
788 CERROR("%s: Local llog found corrupted #"DOSTID":%x"
789 " %s index %d count %d\n",
790 loghandle2name(loghandle),
791 POSTID(&loghandle->lgh_id.lgl_oi),
792 loghandle->lgh_id.lgl_ogen,
793 ((llh->llh_flags & LLOG_F_IS_CAT) ? "catalog" :
794 "plain"), index, llh->llh_count);
796 while (index <= last_index) {
797 if (test_bit_le(index,
798 LLOG_HDR_BITMAP(llh)) != 0)
799 llog_cancel_rec(lpi->lpi_env, loghandle,
807 OBD_FREE_LARGE(buf, chunk_size);
812 static int llog_process_thread_daemonize(void *arg)
814 struct llog_process_info *lpi = arg;
817 struct nsproxy *new_ns, *curr_ns = current->nsproxy;
819 task_lock(lpi->lpi_reftask);
820 new_ns = lpi->lpi_reftask->nsproxy;
821 if (curr_ns != new_ns) {
824 current->nsproxy = new_ns;
825 /* XXX: we should call put_nsproxy() instead of
826 * atomic_dec(&ns->count) directly. But put_nsproxy() cannot be
827 * used outside of the kernel itself, because it calls
828 * free_nsproxy() which is not exported by the kernel
829 * (defined in kernel/nsproxy.c) */
831 atomic_dec(&curr_ns->count);
833 task_unlock(lpi->lpi_reftask);
835 /* client env has no keys, tags is just 0 */
836 rc = lu_env_init(&env, LCT_LOCAL | LCT_MG_THREAD);
841 rc = llog_process_thread(arg);
845 complete(&lpi->lpi_completion);
849 int llog_process_or_fork(const struct lu_env *env,
850 struct llog_handle *loghandle,
851 llog_cb_t cb, void *data, void *catdata, bool fork)
853 struct llog_process_info *lpi;
854 struct llog_process_data *d = data;
855 struct llog_process_cat_data *cd = catdata;
856 __u32 flags = loghandle->lgh_hdr->llh_flags;
863 CERROR("cannot alloc pointer\n");
866 lpi->lpi_loghandle = loghandle;
868 lpi->lpi_cbdata = data;
869 lpi->lpi_catdata = catdata;
871 CDEBUG(D_OTHER, "Processing "DFID" flags 0x%03x startcat %d startidx %d first_idx %d last_idx %d\n",
872 PFID(&loghandle->lgh_id.lgl_oi.oi_fid), flags,
873 (flags & LLOG_F_IS_CAT) && d ? d->lpd_startcat : -1,
874 (flags & LLOG_F_IS_CAT) && d ? d->lpd_startidx : -1,
875 cd ? cd->lpcd_first_idx : -1, cd ? cd->lpcd_last_idx : -1);
877 struct task_struct *task;
879 /* The new thread can't use parent env,
880 * init the new one in llog_process_thread_daemonize. */
882 init_completion(&lpi->lpi_completion);
883 /* take reference to current, so that
884 * llog_process_thread_daemonize() can use it to switch to
885 * namespace associated with current */
886 lpi->lpi_reftask = current;
887 task = kthread_run(llog_process_thread_daemonize, lpi,
888 "llog_process_thread");
891 CERROR("%s: cannot start thread: rc = %d\n",
892 loghandle2name(loghandle), rc);
895 wait_for_completion(&lpi->lpi_completion);
898 llog_process_thread(lpi);
906 EXPORT_SYMBOL(llog_process_or_fork);
908 int llog_process(const struct lu_env *env, struct llog_handle *loghandle,
909 llog_cb_t cb, void *data, void *catdata)
912 rc = llog_process_or_fork(env, loghandle, cb, data, catdata, true);
913 return rc == LLOG_DEL_PLAIN ? 0 : rc;
915 EXPORT_SYMBOL(llog_process);
917 static inline const struct cred *llog_raise_resource(void)
919 struct cred *cred = NULL;
921 if (cap_raised(current_cap(), CAP_SYS_RESOURCE))
924 cred = prepare_creds();
928 cap_raise(cred->cap_effective, CAP_SYS_RESOURCE);
929 return override_creds(cred);
932 static inline void llog_restore_resource(const struct cred *old_cred)
935 revert_creds(old_cred);
938 int llog_reverse_process(const struct lu_env *env,
939 struct llog_handle *loghandle, llog_cb_t cb,
940 void *data, void *catdata)
942 struct llog_log_hdr *llh = loghandle->lgh_hdr;
943 struct llog_process_cat_data *cd = catdata;
945 int rc = 0, first_index = 1, index, idx;
946 __u32 chunk_size = llh->llh_hdr.lrh_len;
949 OBD_ALLOC_LARGE(buf, chunk_size);
954 first_index = cd->lpcd_first_idx + 1;
955 if (cd != NULL && cd->lpcd_last_idx)
956 index = cd->lpcd_last_idx;
958 index = LLOG_HDR_BITMAP_SIZE(llh) - 1;
961 struct llog_rec_hdr *rec;
962 struct llog_rec_tail *tail;
964 /* skip records not set in bitmap */
965 while (index >= first_index &&
966 !test_bit_le(index, LLOG_HDR_BITMAP(llh)))
969 LASSERT(index >= first_index - 1);
970 if (index == first_index - 1)
973 /* get the buf with our target record; avoid old garbage */
974 memset(buf, 0, chunk_size);
975 rc = llog_prev_block(env, loghandle, index, buf, chunk_size);
980 idx = rec->lrh_index;
981 CDEBUG(D_RPCTRACE, "index %u : idx %u\n", index, idx);
982 while (idx < index) {
983 rec = (void *)rec + rec->lrh_len;
984 if (LLOG_REC_HDR_NEEDS_SWABBING(rec))
985 lustre_swab_llog_rec(rec);
988 LASSERT(idx == index);
989 tail = (void *)rec + rec->lrh_len - sizeof(*tail);
991 /* process records in buffer, starting where we found one */
992 while ((void *)tail > buf) {
993 if (tail->lrt_index == 0)
994 GOTO(out, rc = 0); /* no more records */
996 /* if set, process the callback on this record */
997 if (test_bit_le(index, LLOG_HDR_BITMAP(llh))) {
998 rec = (void *)tail - tail->lrt_len +
1001 rc = cb(env, loghandle, rec, data);
1002 if (rc == LLOG_PROC_BREAK) {
1004 } else if (rc == LLOG_DEL_RECORD) {
1005 rc = llog_cancel_rec(env, loghandle,
1012 /* previous record, still in buffer? */
1014 if (index < first_index)
1016 tail = (void *)tail - tail->lrt_len;
1022 OBD_FREE_LARGE(buf, chunk_size);
1025 EXPORT_SYMBOL(llog_reverse_process);
1031 * llog_open - open llog, may not exist
1032 * llog_exist - check if llog exists
1033 * llog_close - close opened llog, pair for open, frees llog_handle
1034 * llog_declare_create - declare llog creation
1035 * llog_create - create new llog on disk, need transaction handle
1036 * llog_declare_write_rec - declaration of llog write
1037 * llog_write_rec - write llog record on disk, need transaction handle
1038 * llog_declare_add - declare llog catalog record addition
1039 * llog_add - add llog record in catalog, need transaction handle
1041 int llog_exist(struct llog_handle *loghandle)
1043 const struct llog_operations *lop;
1048 rc = llog_handle2ops(loghandle, &lop);
1051 if (lop->lop_exist == NULL)
1052 RETURN(-EOPNOTSUPP);
1054 rc = lop->lop_exist(loghandle);
1057 EXPORT_SYMBOL(llog_exist);
1059 int llog_declare_create(const struct lu_env *env,
1060 struct llog_handle *loghandle, struct thandle *th)
1062 const struct cred *old_cred;
1063 const struct llog_operations *lop;
1068 rc = llog_handle2ops(loghandle, &lop);
1071 if (lop->lop_declare_create == NULL)
1072 RETURN(-EOPNOTSUPP);
1074 old_cred = llog_raise_resource();
1075 rc = lop->lop_declare_create(env, loghandle, th);
1076 llog_restore_resource(old_cred);
1080 int llog_create(const struct lu_env *env, struct llog_handle *handle,
1083 const struct cred *old_cred;
1084 const struct llog_operations *lop;
1089 rc = llog_handle2ops(handle, &lop);
1092 if (lop->lop_create == NULL)
1093 RETURN(-EOPNOTSUPP);
1095 old_cred = llog_raise_resource();
1096 rc = lop->lop_create(env, handle, th);
1097 llog_restore_resource(old_cred);
1101 int llog_declare_write_rec(const struct lu_env *env,
1102 struct llog_handle *handle,
1103 struct llog_rec_hdr *rec, int idx,
1106 const struct cred *old_cred;
1107 const struct llog_operations *lop;
1112 rc = llog_handle2ops(handle, &lop);
1116 if (lop->lop_declare_write_rec == NULL)
1117 RETURN(-EOPNOTSUPP);
1119 old_cred = llog_raise_resource();
1120 rc = lop->lop_declare_write_rec(env, handle, rec, idx, th);
1121 llog_restore_resource(old_cred);
1125 int llog_write_rec(const struct lu_env *env, struct llog_handle *handle,
1126 struct llog_rec_hdr *rec, struct llog_cookie *logcookies,
1127 int idx, struct thandle *th)
1129 const struct cred *old_cred;
1130 const struct llog_operations *lop;
1135 /* API sanity checks */
1136 if (handle == NULL) {
1137 CERROR("loghandle is missed\n");
1139 } else if (handle->lgh_obj == NULL) {
1140 CERROR("loghandle %p with NULL object\n",
1143 } else if (th == NULL) {
1144 CERROR("%s: missed transaction handle\n",
1145 loghandle2name(handle));
1147 } else if (handle->lgh_hdr == NULL) {
1148 CERROR("%s: loghandle %p with no header\n",
1149 loghandle2name(handle), handle);
1153 rc = llog_handle2ops(handle, &lop);
1157 if (lop->lop_write_rec == NULL)
1158 RETURN(-EOPNOTSUPP);
1160 buflen = rec->lrh_len;
1161 LASSERT(cfs_size_round(buflen) == buflen);
1163 old_cred = llog_raise_resource();
1164 rc = lop->lop_write_rec(env, handle, rec, logcookies, idx, th);
1165 llog_restore_resource(old_cred);
1169 int llog_add(const struct lu_env *env, struct llog_handle *lgh,
1170 struct llog_rec_hdr *rec, struct llog_cookie *logcookies,
1173 const struct cred *old_cred;
1178 if (lgh->lgh_logops->lop_add == NULL)
1179 RETURN(-EOPNOTSUPP);
1181 old_cred = llog_raise_resource();
1182 rc = lgh->lgh_logops->lop_add(env, lgh, rec, logcookies, th);
1183 llog_restore_resource(old_cred);
1186 EXPORT_SYMBOL(llog_add);
1188 int llog_declare_add(const struct lu_env *env, struct llog_handle *lgh,
1189 struct llog_rec_hdr *rec, struct thandle *th)
1191 const struct cred *old_cred;
1196 if (lgh->lgh_logops->lop_declare_add == NULL)
1197 RETURN(-EOPNOTSUPP);
1199 old_cred = llog_raise_resource();
1200 rc = lgh->lgh_logops->lop_declare_add(env, lgh, rec, th);
1201 llog_restore_resource(old_cred);
1204 EXPORT_SYMBOL(llog_declare_add);
1207 * Helper function to open llog or create it if doesn't exist.
1208 * It hides all transaction handling from caller.
1210 int llog_open_create(const struct lu_env *env, struct llog_ctxt *ctxt,
1211 struct llog_handle **res, struct llog_logid *logid,
1214 struct dt_device *d;
1220 rc = llog_open(env, ctxt, res, logid, name, LLOG_OPEN_NEW);
1224 if (llog_exist(*res))
1227 LASSERT((*res)->lgh_obj != NULL);
1229 d = lu2dt_dev((*res)->lgh_obj->do_lu.lo_dev);
1231 if (unlikely(unlikely(d->dd_rdonly)))
1234 th = dt_trans_create(env, d);
1236 GOTO(out, rc = PTR_ERR(th));
1238 /* Create update llog object synchronously, which
1239 * happens during inialization process see
1240 * lod_sub_prep_llog(), to make sure the update
1241 * llog object is created before corss-MDT writing
1242 * updates into the llog object */
1243 if (ctxt->loc_flags & LLOG_CTXT_FLAG_NORMAL_FID)
1246 th->th_wait_submit = 1;
1247 rc = llog_declare_create(env, *res, th);
1249 rc = dt_trans_start_local(env, d, th);
1251 rc = llog_create(env, *res, th);
1253 dt_trans_stop(env, d, th);
1256 llog_close(env, *res);
1259 EXPORT_SYMBOL(llog_open_create);
1262 * Helper function to delete existent llog.
1264 int llog_erase(const struct lu_env *env, struct llog_ctxt *ctxt,
1265 struct llog_logid *logid, char *name)
1267 struct llog_handle *handle;
1272 /* nothing to erase */
1273 if (name == NULL && logid == NULL)
1276 rc = llog_open(env, ctxt, &handle, logid, name, LLOG_OPEN_EXISTS);
1280 rc = llog_init_handle(env, handle, LLOG_F_IS_PLAIN, NULL);
1282 rc = llog_destroy(env, handle);
1284 rc2 = llog_close(env, handle);
1289 EXPORT_SYMBOL(llog_erase);
1292 * Helper function for write record in llog.
1293 * It hides all transaction handling from caller.
1294 * Valid only with local llog.
1296 int llog_write(const struct lu_env *env, struct llog_handle *loghandle,
1297 struct llog_rec_hdr *rec, int idx)
1299 struct dt_device *dt;
1307 LASSERT(loghandle->lgh_ctxt);
1308 LASSERT(loghandle->lgh_obj != NULL);
1310 dt = lu2dt_dev(loghandle->lgh_obj->do_lu.lo_dev);
1312 if (unlikely(unlikely(dt->dd_rdonly)))
1315 th = dt_trans_create(env, dt);
1317 RETURN(PTR_ERR(th));
1319 rc = llog_declare_write_rec(env, loghandle, rec, idx, th);
1321 GOTO(out_trans, rc);
1323 th->th_wait_submit = 1;
1324 rc = dt_trans_start_local(env, dt, th);
1326 GOTO(out_trans, rc);
1328 need_cookie = !(idx == LLOG_HEADER_IDX || idx == LLOG_NEXT_IDX);
1330 down_write(&loghandle->lgh_lock);
1332 struct llog_thread_info *lti = llog_info(env);
1334 /* cookie comes from llog_process_thread */
1335 rc = llog_write_rec(env, loghandle, rec, <i->lgi_cookie,
1336 rec->lrh_index, th);
1337 /* upper layer didn`t pass cookie so change rc */
1338 rc = (rc == 1 ? 0 : rc);
1340 rc = llog_write_rec(env, loghandle, rec, NULL, idx, th);
1343 up_write(&loghandle->lgh_lock);
1345 dt_trans_stop(env, dt, th);
1348 EXPORT_SYMBOL(llog_write);
1350 int llog_open(const struct lu_env *env, struct llog_ctxt *ctxt,
1351 struct llog_handle **lgh, struct llog_logid *logid,
1352 char *name, enum llog_open_param open_param)
1354 const struct cred *old_cred;
1360 LASSERT(ctxt->loc_logops);
1362 if (ctxt->loc_logops->lop_open == NULL) {
1364 RETURN(-EOPNOTSUPP);
1367 *lgh = llog_alloc_handle();
1370 (*lgh)->lgh_ctxt = ctxt;
1371 (*lgh)->lgh_logops = ctxt->loc_logops;
1373 old_cred = llog_raise_resource();
1374 rc = ctxt->loc_logops->lop_open(env, *lgh, logid, name, open_param);
1375 llog_restore_resource(old_cred);
1377 llog_free_handle(*lgh);
1382 EXPORT_SYMBOL(llog_open);
1384 int llog_close(const struct lu_env *env, struct llog_handle *loghandle)
1386 return llog_handle_put(env, loghandle);
1388 EXPORT_SYMBOL(llog_close);
1391 * Helper function to get the llog size in records. It is used by MGS
1392 * mostly to check that config llog exists and contains data.
1394 * \param[in] env execution environment
1395 * \param[in] ctxt llog context
1396 * \param[in] name llog name
1398 * \retval true if there are records in llog besides a header
1399 * \retval false on error or llog without records
1401 int llog_is_empty(const struct lu_env *env, struct llog_ctxt *ctxt,
1404 struct llog_handle *llh;
1407 rc = llog_open(env, ctxt, &llh, NULL, name, LLOG_OPEN_EXISTS);
1409 if (likely(rc == -ENOENT))
1414 rc = llog_init_handle(env, llh, LLOG_F_IS_PLAIN, NULL);
1416 GOTO(out_close, rc);
1417 rc = llog_get_size(llh);
1420 llog_close(env, llh);
1422 /* The header is record 1, the llog is still considered as empty
1423 * if there is only header */
1426 EXPORT_SYMBOL(llog_is_empty);
1428 int llog_copy_handler(const struct lu_env *env, struct llog_handle *llh,
1429 struct llog_rec_hdr *rec, void *data)
1431 struct llog_handle *copy_llh = data;
1433 /* Append all records */
1434 return llog_write(env, copy_llh, rec, LLOG_NEXT_IDX);
1437 /* backup plain llog */
1438 int llog_backup(const struct lu_env *env, struct obd_device *obd,
1439 struct llog_ctxt *ctxt, struct llog_ctxt *bctxt,
1440 char *name, char *backup)
1442 struct llog_handle *llh, *bllh;
1447 /* open original log */
1448 rc = llog_open(env, ctxt, &llh, NULL, name, LLOG_OPEN_EXISTS);
1450 /* the -ENOENT case is also reported to the caller
1451 * but silently so it should handle that if needed.
1454 CERROR("%s: failed to open log %s: rc = %d\n",
1455 obd->obd_name, name, rc);
1459 rc = llog_init_handle(env, llh, LLOG_F_IS_PLAIN, NULL);
1461 GOTO(out_close, rc);
1463 /* Make sure there's no old backup log */
1464 rc = llog_erase(env, bctxt, NULL, backup);
1465 if (rc < 0 && rc != -ENOENT)
1466 GOTO(out_close, rc);
1468 /* open backup log */
1469 rc = llog_open_create(env, bctxt, &bllh, NULL, backup);
1471 CERROR("%s: failed to open backup logfile %s: rc = %d\n",
1472 obd->obd_name, backup, rc);
1473 GOTO(out_close, rc);
1476 /* check that backup llog is not the same object as original one */
1477 if (llh->lgh_obj == bllh->lgh_obj) {
1478 CERROR("%s: backup llog %s to itself (%s), objects %p/%p\n",
1479 obd->obd_name, name, backup, llh->lgh_obj,
1481 GOTO(out_backup, rc = -EEXIST);
1484 rc = llog_init_handle(env, bllh, LLOG_F_IS_PLAIN, NULL);
1486 GOTO(out_backup, rc);
1488 /* Copy log record by record */
1489 rc = llog_process_or_fork(env, llh, llog_copy_handler, (void *)bllh,
1492 CERROR("%s: failed to backup log %s: rc = %d\n",
1493 obd->obd_name, name, rc);
1495 llog_close(env, bllh);
1497 llog_close(env, llh);
1500 EXPORT_SYMBOL(llog_backup);
1502 /* Get size of llog */
1503 __u64 llog_size(const struct lu_env *env, struct llog_handle *llh)
1508 rc = llh->lgh_obj->do_ops->do_attr_get(env, llh->lgh_obj, &la);
1510 CERROR("%s: attr_get failed for "DFID": rc = %d\n",
1511 loghandle2name(llh), PFID(&llh->lgh_id.lgl_oi.oi_fid),
1518 EXPORT_SYMBOL(llog_size);