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/
30 * Lustre is a trademark of Sun Microsystems, Inc.
33 * lustre/obdclass/llog_osd.c
35 * Low level llog routines on top of OSD API
37 * This file provides set of methods for llog operations on top of
38 * dt_device. It contains all supported llog_operations interfaces and
39 * supplimental functions.
41 * Author: Alexey Zhuravlev <alexey.zhuravlev@intel.com>
42 * Author: Mikhail Pershin <mike.pershin@intel.com>
45 #define DEBUG_SUBSYSTEM S_LOG
47 #include <linux/delay.h>
49 #include <dt_object.h>
50 #include <llog_swab.h>
51 #include <lustre_fid.h>
53 #include <obd_class.h>
55 #include "llog_internal.h"
56 #include "local_storage.h"
59 * Implementation of the llog_operations::lop_declare_create
61 * This function is a wrapper over local_storage API function
62 * local_object_declare_create().
64 * \param[in] env execution environment
65 * \param[in] los local_storage for bottom storage device
66 * \param[in] o dt_object to create
67 * \param[in] th current transaction handle
69 * \retval 0 on successful declaration of the new object
70 * \retval negative error if declaration was failed
72 static int llog_osd_declare_new_object(const struct lu_env *env,
73 struct local_oid_storage *los,
77 struct llog_thread_info *lgi = llog_info(env);
79 lgi->lgi_attr.la_valid = LA_MODE;
80 lgi->lgi_attr.la_mode = S_IFREG | S_IRUGO | S_IWUSR;
81 lgi->lgi_dof.dof_type = dt_mode_to_dft(S_IFREG);
83 return local_object_declare_create(env, los, o, &lgi->lgi_attr,
88 * Implementation of the llog_operations::lop_create
90 * This function is a wrapper over local_storage API function
91 * local_object_create().
93 * \param[in] env execution environment
94 * \param[in] los local_storage for bottom storage device
95 * \param[in] o dt_object to create
96 * \param[in] th current transaction handle
98 * \retval 0 on successful creation of the new object
99 * \retval negative error if creation was failed
101 static int llog_osd_create_new_object(const struct lu_env *env,
102 struct local_oid_storage *los,
106 struct llog_thread_info *lgi = llog_info(env);
108 lgi->lgi_attr.la_valid = LA_MODE;
109 lgi->lgi_attr.la_mode = S_IFREG | S_IRUGO | S_IWUSR;
110 lgi->lgi_dof.dof_type = dt_mode_to_dft(S_IFREG);
112 return local_object_create(env, los, o, &lgi->lgi_attr,
117 * Implementation of the llog_operations::lop_exist
119 * This function checks that llog exists on storage.
121 * \param[in] handle llog handle of the current llog
123 * \retval true if llog object exists and is not just destroyed
124 * \retval false if llog doesn't exist or just destroyed
126 static int llog_osd_exist(struct llog_handle *handle)
128 LASSERT(handle->lgh_obj);
129 return dt_object_exists(handle->lgh_obj) &&
130 !lu_object_is_dying(handle->lgh_obj->do_lu.lo_header);
133 static void *rec_tail(struct llog_rec_hdr *rec)
135 return (void *)((char *)rec + rec->lrh_len -
136 sizeof(struct llog_rec_tail));
140 * Write a padding record to the llog
142 * This function writes a padding record to the end of llog. That may
143 * be needed if llog contains records of variable size, e.g. config logs
145 * The padding record just aligns llog to the llog chunk_size boundary if
146 * the current record doesn't fit in the remaining space.
148 * It allocates full length to avoid two separate writes for header and tail.
149 * Such 2-steps scheme needs extra protection and complex error handling.
151 * \param[in] env execution environment
152 * \param[in] o dt_object to create
153 * \param[in,out] off pointer to the padding start offset
154 * \param[in] len padding length
155 * \param[in] index index of the padding record in a llog
156 * \param[in] th current transaction handle
158 * \retval 0 on successful padding write
159 * \retval negative error if write failed
161 static int llog_osd_pad(const struct lu_env *env, struct dt_object *o,
162 loff_t *off, int len, int index, struct thandle *th)
164 struct llog_thread_info *lgi = llog_info(env);
165 struct llog_rec_hdr *rec;
166 struct llog_rec_tail *tail;
173 LASSERT(len >= LLOG_MIN_REC_SIZE && (len & 0x7) == 0);
180 rec->lrh_index = index;
181 rec->lrh_type = LLOG_PAD_MAGIC;
183 tail = rec_tail(rec);
185 tail->lrt_index = index;
187 lgi->lgi_buf.lb_buf = rec;
188 lgi->lgi_buf.lb_len = len;
189 rc = dt_record_write(env, o, &lgi->lgi_buf, off, th);
191 CERROR("%s: error writing padding record: rc = %d\n",
192 o->do_lu.lo_dev->ld_obd->obd_name, rc);
199 * Implementation of the llog_operations::lop_read_header
201 * This function reads the current llog header from the bottom storage
204 * \param[in] env execution environment
205 * \param[in] handle llog handle of the current llog
207 * \retval 0 on successful header read
208 * \retval negative error if read failed
210 static int llog_osd_read_header(const struct lu_env *env,
211 struct llog_handle *handle)
213 struct llog_rec_hdr *llh_hdr;
215 struct llog_thread_info *lgi;
216 enum llog_flag flags;
224 lgi = llog_info(env);
226 rc = dt_attr_get(env, o, &lgi->lgi_attr);
230 LASSERT(lgi->lgi_attr.la_valid & LA_SIZE);
232 if (lgi->lgi_attr.la_size == 0) {
233 CDEBUG(D_HA, "not reading header from 0-byte log\n");
237 flags = handle->lgh_hdr->llh_flags;
240 lgi->lgi_buf.lb_buf = handle->lgh_hdr;
241 lgi->lgi_buf.lb_len = handle->lgh_hdr_size;
242 rc = dt_read(env, o, &lgi->lgi_buf, &lgi->lgi_off);
243 llh_hdr = &handle->lgh_hdr->llh_hdr;
244 if (rc < sizeof(*llh_hdr) || rc < llh_hdr->lrh_len) {
245 CERROR("%s: error reading "DFID" log header size %d: rc = %d\n",
246 o->do_lu.lo_dev->ld_obd->obd_name,
247 PFID(lu_object_fid(&o->do_lu)), rc < 0 ? 0 : rc,
256 if (LLOG_REC_HDR_NEEDS_SWABBING(llh_hdr))
257 lustre_swab_llog_hdr(handle->lgh_hdr);
259 if (llh_hdr->lrh_type != LLOG_HDR_MAGIC) {
260 CERROR("%s: bad log %s "DFID" header magic: %#x "
261 "(expected %#x)\n", o->do_lu.lo_dev->ld_obd->obd_name,
262 handle->lgh_name ? handle->lgh_name : "",
263 PFID(lu_object_fid(&o->do_lu)),
264 llh_hdr->lrh_type, LLOG_HDR_MAGIC);
266 } else if (llh_hdr->lrh_len < LLOG_MIN_CHUNK_SIZE ||
267 llh_hdr->lrh_len > handle->lgh_hdr_size) {
268 CERROR("%s: incorrectly sized log %s "DFID" header: "
269 "%#x (expected at least %#x)\n"
270 "you may need to re-run lconf --write_conf.\n",
271 o->do_lu.lo_dev->ld_obd->obd_name,
272 handle->lgh_name ? handle->lgh_name : "",
273 PFID(lu_object_fid(&o->do_lu)),
274 llh_hdr->lrh_len, LLOG_MIN_CHUNK_SIZE);
276 } else if (LLOG_HDR_TAIL(handle->lgh_hdr)->lrt_index >
277 LLOG_HDR_BITMAP_SIZE(handle->lgh_hdr) ||
278 LLOG_HDR_TAIL(handle->lgh_hdr)->lrt_len !=
280 CERROR("%s: incorrectly sized log %s "DFID" tailer: "
282 o->do_lu.lo_dev->ld_obd->obd_name,
283 handle->lgh_name ? handle->lgh_name : "",
284 PFID(lu_object_fid(&o->do_lu)),
285 LLOG_HDR_TAIL(handle->lgh_hdr)->lrt_len, -EIO);
289 handle->lgh_hdr->llh_flags |= (flags & LLOG_F_EXT_MASK);
290 handle->lgh_last_idx = LLOG_HDR_TAIL(handle->lgh_hdr)->lrt_index;
296 * Implementation of the llog_operations::lop_declare_write
298 * This function declares the new record write.
300 * \param[in] env execution environment
301 * \param[in] loghandle llog handle of the current llog
302 * \param[in] rec llog record header. This is a real header of the full
303 * llog record to write. This is the beginning of buffer
304 * to write, the length of buffer is stored in
306 * \param[in] idx index of the llog record. If \a idx == -1 then this is
307 * append case, otherwise \a idx is the index of record
309 * \param[in] th current transaction handle
311 * \retval 0 on successful declaration
312 * \retval negative error if declaration failed
314 static int llog_osd_declare_write_rec(const struct lu_env *env,
315 struct llog_handle *loghandle,
316 struct llog_rec_hdr *rec,
317 int idx, struct thandle *th)
319 struct llog_thread_info *lgi = llog_info(env);
330 LASSERT(rec->lrh_len <= loghandle->lgh_ctxt->loc_chunk_size);
332 o = loghandle->lgh_obj;
335 chunk_size = loghandle->lgh_ctxt->loc_chunk_size;
336 lgi->lgi_buf.lb_len = chunk_size;
337 lgi->lgi_buf.lb_buf = NULL;
338 /* each time we update header */
339 rc = dt_declare_record_write(env, o, &lgi->lgi_buf, 0,
341 if (rc || idx == 0) /* if error or just header */
345 * the pad record can be inserted so take into account double
348 lgi->lgi_buf.lb_len = chunk_size * 2;
349 lgi->lgi_buf.lb_buf = NULL;
350 /* XXX: implement declared window or multi-chunks approach */
351 rc = dt_declare_record_write(env, o, &lgi->lgi_buf, -1, th);
357 * Implementation of the llog_operations::lop_write
359 * This function writes the new record in the llog or modify the existed one.
361 * \param[in] env execution environment
362 * \param[in] loghandle llog handle of the current llog
363 * \param[in] rec llog record header. This is a real header of
364 * the full llog record to write. This is
365 * the beginning of buffer to write, the length
366 * of buffer is stored in \a rec::lrh_len
367 * \param[in,out] reccookie pointer to the cookie to return back if needed.
368 * It is used for further cancel of this llog
370 * \param[in] idx index of the llog record. If \a idx == -1 then
371 * this is append case, otherwise \a idx is
372 * the index of record to modify
373 * \param[in] th current transaction handle
375 * \retval 0 on successful write && \a reccookie == NULL
376 * 1 on successful write && \a reccookie != NULL
377 * \retval negative error if write failed
379 static int llog_osd_write_rec(const struct lu_env *env,
380 struct llog_handle *loghandle,
381 struct llog_rec_hdr *rec,
382 struct llog_cookie *reccookie,
383 int idx, struct thandle *th)
385 struct llog_thread_info *lgi = llog_info(env);
386 struct llog_log_hdr *llh;
387 int reclen = rec->lrh_len;
389 struct llog_rec_tail *lrt;
396 llh = loghandle->lgh_hdr;
397 o = loghandle->lgh_obj;
399 chunk_size = llh->llh_hdr.lrh_len;
400 CDEBUG(D_OTHER, "new record %x to "DFID"\n",
401 rec->lrh_type, PFID(lu_object_fid(&o->do_lu)));
403 if (!llog_osd_exist(loghandle))
406 /* record length should not bigger than */
407 if (reclen > loghandle->lgh_hdr->llh_hdr.lrh_len)
410 /* sanity check for fixed-records llog */
411 if (idx != LLOG_HEADER_IDX && (llh->llh_flags & LLOG_F_IS_FIXSIZE)) {
412 LASSERT(llh->llh_size != 0);
413 LASSERT(llh->llh_size == reclen);
416 rc = dt_attr_get(env, o, &lgi->lgi_attr);
421 * The modification case.
422 * If idx set then the record with that index must be modified.
423 * There are three cases possible:
424 * 1) the common case is the llog header update (idx == 0)
425 * 2) the llog record modification during llog process.
426 * This is indicated by the \a loghandle::lgh_cur_idx > 0.
427 * In that case the \a loghandle::lgh_cur_offset
428 * 3) otherwise this is assumed that llog consist of records of
429 * fixed size, i.e. catalog. The llog header must has llh_size
430 * field equal to record size. The record offset is calculated
431 * just by /a idx value
433 * During modification we don't need extra header update because
434 * the bitmap and record count are not changed. The record header
435 * and tail remains the same too.
437 if (idx != LLOG_NEXT_IDX) {
438 /* llog can be empty only when first record is being written */
439 LASSERT(ergo(idx > 0, lgi->lgi_attr.la_size > 0));
441 if (!ext2_test_bit(idx, LLOG_HDR_BITMAP(llh))) {
442 CERROR("%s: modify unset record %u\n",
443 o->do_lu.lo_dev->ld_obd->obd_name, idx);
447 if (idx != rec->lrh_index) {
448 CERROR("%s: modify index mismatch %d %u\n",
449 o->do_lu.lo_dev->ld_obd->obd_name, idx,
454 if (idx == LLOG_HEADER_IDX) {
455 /* llog header update */
456 __u32 *bitmap = LLOG_HDR_BITMAP(llh);
460 /* If it does not indicate the bitmap index
461 * (reccookie == NULL), then it means update
462 * the whole update header. Otherwise only
463 * update header and bits needs to be updated,
464 * and in DNE cases, it will signaficantly
465 * shrink the RPC size.
466 * see distribute_txn_cancel_records()*/
467 if (reccookie == NULL) {
468 lgi->lgi_buf.lb_len = reclen;
469 lgi->lgi_buf.lb_buf = rec;
470 rc = dt_record_write(env, o, &lgi->lgi_buf,
475 /* update the header */
476 lgi->lgi_buf.lb_len = llh->llh_bitmap_offset;
477 lgi->lgi_buf.lb_buf = llh;
478 rc = dt_record_write(env, o, &lgi->lgi_buf,
483 /* update the bitmap */
484 index = reccookie->lgc_index;
485 lgi->lgi_off = llh->llh_bitmap_offset +
486 (index / (sizeof(*bitmap) * 8)) *
488 lgi->lgi_buf.lb_len = sizeof(*bitmap);
489 lgi->lgi_buf.lb_buf =
490 &bitmap[index/(sizeof(*bitmap)*8)];
491 rc = dt_record_write(env, o, &lgi->lgi_buf,
495 } else if (llh->llh_flags & LLOG_F_IS_FIXSIZE) {
496 lgi->lgi_off = llh->llh_hdr.lrh_len +
498 } else if (reccookie != NULL && reccookie->lgc_index > 0) {
500 * The lgc_offset can be used only if index is
503 if (idx != reccookie->lgc_index) {
504 CERROR("%s: modify index mismatch %d %d\n",
505 o->do_lu.lo_dev->ld_obd->obd_name, idx,
506 reccookie->lgc_index);
510 lgi->lgi_off = reccookie->lgc_offset;
511 CDEBUG(D_OTHER, "modify record "DFID": idx:%u, "
512 "len:%u offset %llu\n",
513 PFID(&loghandle->lgh_id.lgl_oi.oi_fid), idx,
514 rec->lrh_len, (long long)lgi->lgi_off);
516 /* This can be result of lgh_cur_idx is not set during
517 * llog processing or llh_size is not set to proper
518 * record size for fixed records llog. Therefore it is
519 * impossible to get record offset. */
520 CERROR("%s: can't get record offset, idx:%d, "
521 "len:%u.\n", o->do_lu.lo_dev->ld_obd->obd_name,
526 /* update only data, header and tail remain the same */
527 lgi->lgi_off += sizeof(struct llog_rec_hdr);
528 lgi->lgi_buf.lb_len = REC_DATA_LEN(rec);
529 lgi->lgi_buf.lb_buf = REC_DATA(rec);
530 rc = dt_record_write(env, o, &lgi->lgi_buf, &lgi->lgi_off, th);
531 if (rc == 0 && reccookie) {
532 reccookie->lgc_lgl = loghandle->lgh_id;
533 reccookie->lgc_index = idx;
541 * The most common case of using llog. The new index is assigned to
542 * the new record, new bit is set in llog bitmap and llog count is
545 * Make sure that records don't cross a chunk boundary, so we can
546 * process them page-at-a-time if needed. If it will cross a chunk
547 * boundary, write in a fake (but referenced) entry to pad the chunk.
551 /* simulate ENOSPC when new plain llog is being added to the
553 if (OBD_FAIL_CHECK(OBD_FAIL_MDS_LLOG_CREATE_FAILED2) &&
554 llh->llh_flags & LLOG_F_IS_CAT)
557 LASSERT(lgi->lgi_attr.la_valid & LA_SIZE);
558 orig_last_idx = loghandle->lgh_last_idx;
559 lgi->lgi_off = lgi->lgi_attr.la_size;
561 if (loghandle->lgh_max_size > 0 &&
562 lgi->lgi_off >= loghandle->lgh_max_size) {
563 CDEBUG(D_OTHER, "llog is getting too large (%u > %u) at %u "
564 DFID"\n", (unsigned)lgi->lgi_off,
565 loghandle->lgh_max_size, (int)loghandle->lgh_last_idx,
566 PFID(&loghandle->lgh_id.lgl_oi.oi_fid));
567 /* this is to signal that this llog is full */
568 loghandle->lgh_last_idx = LLOG_HDR_BITMAP_SIZE(llh) - 1;
572 left = chunk_size - (lgi->lgi_off & (chunk_size - 1));
573 /* NOTE: padding is a record, but no bit is set */
574 if (left != 0 && left != reclen &&
575 left < (reclen + LLOG_MIN_REC_SIZE)) {
576 index = loghandle->lgh_last_idx + 1;
577 rc = llog_osd_pad(env, o, &lgi->lgi_off, left, index, th);
581 loghandle->lgh_last_idx++; /* for pad rec */
583 /* if it's the last idx in log file, then return -ENOSPC
584 * or wrap around if a catalog */
585 if (llog_is_full(loghandle) ||
586 unlikely(llh->llh_flags & LLOG_F_IS_CAT &&
587 OBD_FAIL_PRECHECK(OBD_FAIL_CAT_RECORDS) &&
588 loghandle->lgh_last_idx >= cfs_fail_val)) {
589 if (llh->llh_flags & LLOG_F_IS_CAT)
590 loghandle->lgh_last_idx = 0;
595 down_write(&loghandle->lgh_last_sem);
596 /* increment the last_idx along with llh_tail index, they should
597 * be equal for a llog lifetime */
598 loghandle->lgh_last_idx++;
599 index = loghandle->lgh_last_idx;
600 LLOG_HDR_TAIL(llh)->lrt_index = index;
602 * NB: the caller should make sure only 1 process access
603 * the lgh_last_idx, e.g. append should be exclusive.
604 * Otherwise it might hit the assert.
606 LASSERT(index < LLOG_HDR_BITMAP_SIZE(llh));
607 rec->lrh_index = index;
609 lrt->lrt_len = rec->lrh_len;
610 lrt->lrt_index = rec->lrh_index;
612 /* the lgh_hdr_mutex protects llog header data from concurrent
613 * update/cancel, the llh_count and llh_bitmap are protected */
614 mutex_lock(&loghandle->lgh_hdr_mutex);
615 if (ext2_set_bit(index, LLOG_HDR_BITMAP(llh))) {
616 CERROR("%s: index %u already set in log bitmap\n",
617 o->do_lu.lo_dev->ld_obd->obd_name, index);
618 mutex_unlock(&loghandle->lgh_hdr_mutex);
619 LBUG(); /* should never happen */
623 if (!(llh->llh_flags & LLOG_F_IS_FIXSIZE)) {
624 /* Update the minimum size of the llog record */
625 if (llh->llh_size == 0)
626 llh->llh_size = reclen;
627 else if (reclen < llh->llh_size)
628 llh->llh_size = reclen;
631 if (lgi->lgi_attr.la_size == 0) {
633 lgi->lgi_buf.lb_len = llh->llh_hdr.lrh_len;
634 lgi->lgi_buf.lb_buf = &llh->llh_hdr;
635 rc = dt_record_write(env, o, &lgi->lgi_buf, &lgi->lgi_off, th);
637 GOTO(out_unlock, rc);
639 __u32 *bitmap = LLOG_HDR_BITMAP(llh);
641 /* Note: If this is not initialization (size == 0), then do not
642 * write the whole header (8k bytes), only update header/tail
643 * and bits needs to be updated. Because this update might be
644 * part of cross-MDT operation, which needs to write these
645 * updates into the update log(32KB limit) and also pack inside
646 * the RPC (1MB limit), if we write 8K for each operation, which
647 * will cost a lot space, and keep us adding more updates to one
650 lgi->lgi_buf.lb_len = llh->llh_bitmap_offset;
651 lgi->lgi_buf.lb_buf = &llh->llh_hdr;
652 rc = dt_record_write(env, o, &lgi->lgi_buf, &lgi->lgi_off, th);
654 GOTO(out_unlock, rc);
656 lgi->lgi_off = llh->llh_bitmap_offset +
657 (index / (sizeof(*bitmap) * 8)) * sizeof(*bitmap);
658 lgi->lgi_buf.lb_len = sizeof(*bitmap);
659 lgi->lgi_buf.lb_buf = &bitmap[index/(sizeof(*bitmap)*8)];
660 rc = dt_record_write(env, o, &lgi->lgi_buf, &lgi->lgi_off, th);
662 GOTO(out_unlock, rc);
664 lgi->lgi_off = (unsigned long)LLOG_HDR_TAIL(llh) -
666 lgi->lgi_buf.lb_len = sizeof(llh->llh_tail);
667 lgi->lgi_buf.lb_buf = LLOG_HDR_TAIL(llh);
668 rc = dt_record_write(env, o, &lgi->lgi_buf, &lgi->lgi_off, th);
670 GOTO(out_unlock, rc);
674 /* unlock here for remote object */
675 mutex_unlock(&loghandle->lgh_hdr_mutex);
679 if (OBD_FAIL_PRECHECK(OBD_FAIL_LLOG_PROCESS_TIMEOUT) &&
680 cfs_fail_val == (unsigned int)(loghandle->lgh_id.lgl_oi.oi.oi_id &
682 OBD_RACE(OBD_FAIL_LLOG_PROCESS_TIMEOUT);
683 msleep(1 * MSEC_PER_SEC);
685 /* computed index can be used to determine offset for fixed-size
686 * records. This also allows to handle Catalog wrap around case */
687 if (llh->llh_flags & LLOG_F_IS_FIXSIZE) {
688 lgi->lgi_off = llh->llh_hdr.lrh_len + (index - 1) * reclen;
690 rc = dt_attr_get(env, o, &lgi->lgi_attr);
694 LASSERT(lgi->lgi_attr.la_valid & LA_SIZE);
695 lgi->lgi_off = max_t(__u64, lgi->lgi_attr.la_size,
699 lgi->lgi_buf.lb_len = reclen;
700 lgi->lgi_buf.lb_buf = rec;
701 rc = dt_record_write(env, o, &lgi->lgi_buf, &lgi->lgi_off, th);
705 up_write(&loghandle->lgh_last_sem);
707 CDEBUG(D_HA, "added record "DFID".%u, %u off%llu\n",
708 PFID(lu_object_fid(&o->do_lu)), index, rec->lrh_len,
710 if (reccookie != NULL) {
711 reccookie->lgc_lgl = loghandle->lgh_id;
712 reccookie->lgc_index = index;
713 if ((rec->lrh_type == MDS_UNLINK_REC) ||
714 (rec->lrh_type == MDS_SETATTR64_REC))
715 reccookie->lgc_subsys = LLOG_MDS_OST_ORIG_CTXT;
716 else if (rec->lrh_type == OST_SZ_REC)
717 reccookie->lgc_subsys = LLOG_SIZE_ORIG_CTXT;
719 reccookie->lgc_subsys = -1;
724 /* cleanup llog for error case */
725 mutex_lock(&loghandle->lgh_hdr_mutex);
726 ext2_clear_bit(index, LLOG_HDR_BITMAP(llh));
728 mutex_unlock(&loghandle->lgh_hdr_mutex);
730 /* restore llog last_idx */
731 if (dt_object_remote(o)) {
732 loghandle->lgh_last_idx = orig_last_idx;
733 } else if (--loghandle->lgh_last_idx == 0 &&
734 (llh->llh_flags & LLOG_F_IS_CAT) && llh->llh_cat_idx != 0) {
735 /* catalog had just wrap-around case */
736 loghandle->lgh_last_idx = LLOG_HDR_BITMAP_SIZE(llh) - 1;
739 LLOG_HDR_TAIL(llh)->lrt_index = loghandle->lgh_last_idx;
740 up_write(&loghandle->lgh_last_sem);
746 * We can skip reading at least as many log blocks as the number of
747 * minimum sized log records we are skipping. If it turns out
748 * that we are not far enough along the log (because the
749 * actual records are larger than minimum size) we just skip
752 * Note: in llog_process_thread, it will use bitmap offset as
753 * the index to locate the record, which also includs some pad
754 * records, whose record size is very small, and it also does not
755 * consider pad record when recording minimum record size (otherwise
756 * min_record size might be too small), so in some rare cases,
757 * it might skip too much record for @goal, see llog_osd_next_block().
759 * When force_mini_rec is true, it means we have to use LLOG_MIN_REC_SIZE
760 * as the min record size to skip over, usually because in the previous
761 * try, it skip too much record, see loog_osd_next(prev)_block().
763 static inline void llog_skip_over(struct llog_handle *lgh, __u64 *off,
764 int curr, int goal, __u32 chunk_size,
767 struct llog_log_hdr *llh = lgh->lgh_hdr;
769 /* Goal should not bigger than the record count */
770 if (goal > lgh->lgh_last_idx)
771 goal = lgh->lgh_last_idx;
774 if (llh->llh_flags & LLOG_F_IS_FIXSIZE) {
775 *off = chunk_size + (goal - 1) * llh->llh_size;
777 __u64 min_rec_size = LLOG_MIN_REC_SIZE;
779 if (llh->llh_size > 0 && !force_mini_rec)
780 min_rec_size = llh->llh_size;
782 *off = *off + (goal - curr - 1) * min_rec_size;
785 /* always align with lower chunk boundary*/
786 *off &= ~(chunk_size - 1);
790 * Remove optional fields that the client doesn't expect.
791 * This is typically in order to ensure compatibility with older clients.
792 * It is assumed that since we exclusively remove fields, the block will be
793 * big enough to handle the remapped records. It is also assumed that records
794 * of a block have the same format (i.e.: the same features enabled).
796 * \param[in,out] hdr Header of the block of records to remap.
797 * \param[in,out] last_hdr Last header, don't read past this point.
798 * \param[in] flags Flags describing the fields to keep.
799 * \param[in] extra_flags Flags describing the extra fields to keep.
801 static void changelog_block_trim_ext(struct llog_rec_hdr *hdr,
802 struct llog_rec_hdr *last_hdr,
803 struct llog_handle *loghandle)
805 enum changelog_rec_flags flags = CLF_SUPPORTED;
806 enum changelog_rec_extra_flags extra_flags = CLFE_SUPPORTED;
808 if (!(loghandle->lgh_hdr->llh_flags & LLOG_F_EXT_X_XATTR))
809 extra_flags &= ~CLFE_XATTR;
810 if (!(loghandle->lgh_hdr->llh_flags & LLOG_F_EXT_X_OMODE))
811 extra_flags &= ~CLFE_OPEN;
812 if (!(loghandle->lgh_hdr->llh_flags & LLOG_F_EXT_X_NID))
813 extra_flags &= ~CLFE_NID;
814 if (!(loghandle->lgh_hdr->llh_flags & LLOG_F_EXT_X_UIDGID))
815 extra_flags &= ~CLFE_UIDGID;
816 if (!(loghandle->lgh_hdr->llh_flags & LLOG_F_EXT_EXTRA_FLAGS))
817 flags &= ~CLF_EXTRA_FLAGS;
818 if (!(loghandle->lgh_hdr->llh_flags & LLOG_F_EXT_JOBID))
821 if (flags == CLF_SUPPORTED && extra_flags == CLFE_SUPPORTED)
824 if (hdr->lrh_type != CHANGELOG_REC)
828 struct changelog_rec *rec = (struct changelog_rec *)(hdr + 1);
829 enum changelog_rec_extra_flags xflag = CLFE_INVALID;
831 if (flags & CLF_EXTRA_FLAGS &&
832 rec->cr_flags & CLF_EXTRA_FLAGS) {
833 xflag = changelog_rec_extra_flags(rec)->cr_extra_flags &
837 if (unlikely(hdr->lrh_len == 0)) {
838 /* It is corruption case, we cannot know the next rec,
839 * jump to the last one directly to avoid dead loop. */
840 LCONSOLE(D_WARNING, "Hit invalid llog record: "
841 "idx %u, type %u, id %u\n",
842 hdr->lrh_index, hdr->lrh_type, hdr->lrh_id);
843 hdr = llog_rec_hdr_next(last_hdr);
844 if (unlikely(hdr == last_hdr))
845 LCONSOLE(D_WARNING, "The last record crashed: "
846 "idx %u, type %u, id %u\n",
847 hdr->lrh_index, hdr->lrh_type,
852 changelog_remap_rec(rec, rec->cr_flags & flags, xflag);
853 hdr = llog_rec_hdr_next(hdr);
854 /* Yield CPU to avoid soft-lockup if there are too many records
857 } while ((char *)hdr <= (char *)last_hdr);
861 * Implementation of the llog_operations::lop_next_block
863 * This function finds the the next llog block to return which contains
864 * record with required index. It is main part of llog processing.
866 * \param[in] env execution environment
867 * \param[in] loghandle llog handle of the current llog
868 * \param[in,out] cur_idx index preceeding cur_offset
869 * \param[in] next_idx target index to find
870 * \param[in,out] cur_offset furtherst point read in the file
871 * \param[in] buf pointer to data buffer to fill
872 * \param[in] len required len to read, it is
873 * usually llog chunk_size.
875 * \retval 0 on successful buffer read
876 * \retval negative value on error
878 static int llog_osd_next_block(const struct lu_env *env,
879 struct llog_handle *loghandle, int *cur_idx,
880 int next_idx, __u64 *cur_offset, void *buf,
883 struct llog_thread_info *lgi = llog_info(env);
885 struct dt_device *dt;
888 int last_idx = *cur_idx;
889 __u64 last_offset = *cur_offset;
890 bool force_mini_rec = false;
897 chunk_size = loghandle->lgh_hdr->llh_hdr.lrh_len;
898 if (len == 0 || len & (chunk_size - 1))
902 LASSERT(loghandle->lgh_ctxt);
904 o = loghandle->lgh_obj;
906 LASSERT(dt_object_exists(o));
907 dt = lu2dt_dev(o->do_lu.lo_dev);
910 rc = dt_attr_get(env, o, &lgi->lgi_attr);
914 CDEBUG(D_OTHER, "looking for log index %u (cur idx %u off"
915 "%llu), size %llu\n", next_idx, *cur_idx,
916 *cur_offset, lgi->lgi_attr.la_size);
918 while (*cur_offset < lgi->lgi_attr.la_size) {
919 struct llog_rec_hdr *rec, *last_rec;
920 struct llog_rec_tail *tail;
922 llog_skip_over(loghandle, cur_offset, *cur_idx,
923 next_idx, chunk_size, force_mini_rec);
925 /* read up to next llog chunk_size block */
926 lgi->lgi_buf.lb_len = chunk_size -
927 (*cur_offset & (chunk_size - 1));
928 lgi->lgi_buf.lb_buf = buf;
930 rc = dt_read(env, o, &lgi->lgi_buf, cur_offset);
932 if (rc == -EBADR && !force_mini_rec)
935 CERROR("%s: can't read llog block from log "DFID
936 " offset %llu: rc = %d\n",
937 o->do_lu.lo_dev->ld_obd->obd_name,
938 PFID(lu_object_fid(&o->do_lu)), *cur_offset,
944 /* signal the end of the valid buffer to
946 memset(buf + rc, 0, len - rc);
949 if (rc == 0) { /* end of file, nothing to do */
955 if (rc < sizeof(*tail)) {
959 CERROR("%s: invalid llog block at log id "DFID":%x "
961 o->do_lu.lo_dev->ld_obd->obd_name,
962 PFID(&loghandle->lgh_id.lgl_oi.oi_fid),
963 loghandle->lgh_id.lgl_ogen, *cur_offset);
964 GOTO(out, rc = -EINVAL);
968 if (LLOG_REC_HDR_NEEDS_SWABBING(rec))
969 lustre_swab_llog_rec(rec);
971 tail = (struct llog_rec_tail *)((char *)buf + rc -
972 sizeof(struct llog_rec_tail));
973 /* get the last record in block */
974 last_rec = (struct llog_rec_hdr *)((char *)buf + rc -
977 if (LLOG_REC_HDR_NEEDS_SWABBING(last_rec))
978 lustre_swab_llog_rec(last_rec);
980 if (last_rec->lrh_index != tail->lrt_index) {
981 CERROR("%s: invalid llog tail at log id "DFID":%x "
982 "offset %llu last_rec idx %u tail idx %u"
983 "lrt len %u read_size %d\n",
984 o->do_lu.lo_dev->ld_obd->obd_name,
985 PFID(&loghandle->lgh_id.lgl_oi.oi_fid),
986 loghandle->lgh_id.lgl_ogen, *cur_offset,
987 last_rec->lrh_index, tail->lrt_index,
989 GOTO(out, rc = -EINVAL);
992 *cur_idx = tail->lrt_index;
994 /* this shouldn't happen */
995 if (tail->lrt_index == 0) {
996 CERROR("%s: invalid llog tail at log id "DFID":%x "
997 "offset %llu bytes %d\n",
998 o->do_lu.lo_dev->ld_obd->obd_name,
999 PFID(&loghandle->lgh_id.lgl_oi.oi_fid),
1000 loghandle->lgh_id.lgl_ogen, *cur_offset, rc);
1001 GOTO(out, rc = -EINVAL);
1003 if (tail->lrt_index < next_idx) {
1004 last_idx = *cur_idx;
1005 last_offset = *cur_offset;
1009 /* sanity check that the start of the new buffer is no farther
1010 * than the record that we wanted. This shouldn't happen. */
1011 if (rec->lrh_index > next_idx) {
1012 if (!force_mini_rec && next_idx > last_idx)
1015 CERROR("%s: missed desired record? %u > %u\n",
1016 o->do_lu.lo_dev->ld_obd->obd_name,
1017 rec->lrh_index, next_idx);
1018 GOTO(out, rc = -ENOENT);
1021 /* Trim unsupported extensions for compat w/ older clients */
1022 changelog_block_trim_ext(rec, last_rec, loghandle);
1027 /* Note: because there are some pad records in the
1028 * llog, so llog_skip_over() might skip too much
1029 * records, let's try skip again with minimum record */
1030 force_mini_rec = true;
1031 *cur_offset = last_offset;
1032 *cur_idx = last_idx;
1034 GOTO(out, rc = -EIO);
1040 * Implementation of the llog_operations::lop_prev_block
1042 * This function finds the llog block to return which contains
1043 * record with required index but in reverse order - from end of llog
1045 * It is main part of reverse llog processing.
1047 * \param[in] env execution environment
1048 * \param[in] loghandle llog handle of the current llog
1049 * \param[in] prev_idx target index to find
1050 * \param[in] buf pointer to data buffer to fill
1051 * \param[in] len required len to read, it is llog_chunk_size usually.
1053 * \retval 0 on successful buffer read
1054 * \retval negative value on error
1056 static int llog_osd_prev_block(const struct lu_env *env,
1057 struct llog_handle *loghandle,
1058 int prev_idx, void *buf, int len)
1060 struct llog_thread_info *lgi = llog_info(env);
1061 struct dt_object *o;
1062 struct dt_device *dt;
1069 chunk_size = loghandle->lgh_hdr->llh_hdr.lrh_len;
1070 if (len == 0 || len & (chunk_size - 1))
1073 CDEBUG(D_OTHER, "looking for log index %u\n", prev_idx);
1076 LASSERT(loghandle->lgh_ctxt);
1078 o = loghandle->lgh_obj;
1080 LASSERT(dt_object_exists(o));
1081 dt = lu2dt_dev(o->do_lu.lo_dev);
1084 /* Let's only use mini record size for previous block read
1086 cur_offset = chunk_size;
1087 llog_skip_over(loghandle, &cur_offset, 0, prev_idx,
1090 rc = dt_attr_get(env, o, &lgi->lgi_attr);
1094 while (cur_offset < lgi->lgi_attr.la_size) {
1095 struct llog_rec_hdr *rec, *last_rec;
1096 struct llog_rec_tail *tail;
1098 lgi->lgi_buf.lb_len = len;
1099 lgi->lgi_buf.lb_buf = buf;
1100 rc = dt_read(env, o, &lgi->lgi_buf, &cur_offset);
1102 CERROR("%s: can't read llog block from log "DFID
1103 " offset %llu: rc = %d\n",
1104 o->do_lu.lo_dev->ld_obd->obd_name,
1105 PFID(lu_object_fid(&o->do_lu)), cur_offset, rc);
1109 if (rc == 0) /* end of file, nothing to do */
1112 if (rc < sizeof(*tail)) {
1113 CERROR("%s: invalid llog block at log id "DFID":%x "
1115 o->do_lu.lo_dev->ld_obd->obd_name,
1116 PFID(&loghandle->lgh_id.lgl_oi.oi_fid),
1117 loghandle->lgh_id.lgl_ogen, cur_offset);
1118 GOTO(out, rc = -EINVAL);
1122 if (LLOG_REC_HDR_NEEDS_SWABBING(rec))
1123 lustre_swab_llog_rec(rec);
1125 tail = (struct llog_rec_tail *)((char *)buf + rc -
1126 sizeof(struct llog_rec_tail));
1127 /* get the last record in block */
1128 last_rec = (struct llog_rec_hdr *)((char *)buf + rc -
1129 le32_to_cpu(tail->lrt_len));
1131 if (LLOG_REC_HDR_NEEDS_SWABBING(last_rec))
1132 lustre_swab_llog_rec(last_rec);
1133 LASSERT(last_rec->lrh_index == tail->lrt_index);
1135 /* this shouldn't happen */
1136 if (tail->lrt_index == 0) {
1137 CERROR("%s: invalid llog tail at log id "DFID":%x "
1139 o->do_lu.lo_dev->ld_obd->obd_name,
1140 PFID(&loghandle->lgh_id.lgl_oi.oi_fid),
1141 loghandle->lgh_id.lgl_ogen, cur_offset);
1142 GOTO(out, rc = -EINVAL);
1144 if (tail->lrt_index < prev_idx)
1147 /* sanity check that the start of the new buffer is no farther
1148 * than the record that we wanted. This shouldn't happen. */
1149 if (rec->lrh_index > prev_idx) {
1150 CERROR("%s: missed desired record? %u > %u\n",
1151 o->do_lu.lo_dev->ld_obd->obd_name,
1152 rec->lrh_index, prev_idx);
1153 GOTO(out, rc = -ENOENT);
1156 /* Trim unsupported extensions for compat w/ older clients */
1157 changelog_block_trim_ext(rec, last_rec, loghandle);
1161 GOTO(out, rc = -EIO);
1167 * This is helper function to get llog directory object. It is used by named
1168 * llog operations to find/insert/delete llog entry from llog directory.
1170 * \param[in] env execution environment
1171 * \param[in] ctxt llog context
1173 * \retval dt_object of llog directory
1174 * \retval ERR_PTR of negative value on error
1176 static struct dt_object *llog_osd_dir_get(const struct lu_env *env,
1177 struct llog_ctxt *ctxt)
1179 struct dt_device *dt;
1180 struct dt_thread_info *dti = dt_info(env);
1181 struct dt_object *dir;
1184 dt = ctxt->loc_exp->exp_obd->obd_lvfs_ctxt.dt;
1185 if (ctxt->loc_dir == NULL) {
1186 rc = dt_root_get(env, dt, &dti->dti_fid);
1189 dir = dt_locate(env, dt, &dti->dti_fid);
1191 if (!IS_ERR(dir) && !dt_try_as_dir(env, dir)) {
1192 dt_object_put(env, dir);
1193 return ERR_PTR(-ENOTDIR);
1196 lu_object_get(&ctxt->loc_dir->do_lu);
1197 dir = ctxt->loc_dir;
1204 * Implementation of the llog_operations::lop_open
1206 * This function opens the llog by its logid or by name, it may open also
1207 * non existent llog and assing then new id to it.
1208 * The llog_open/llog_close pair works similar to lu_object_find/put,
1209 * the object may not exist prior open. The result of open is just dt_object
1210 * in the llog header.
1212 * \param[in] env execution environment
1213 * \param[in] handle llog handle of the current llog
1214 * \param[in] logid logid of llog to open (nameless llog)
1215 * \param[in] name name of llog to open (named llog)
1216 * \param[in] open_param
1217 * LLOG_OPEN_NEW - new llog, may not exist
1218 * LLOG_OPEN_EXIST - old llog, must exist
1220 * \retval 0 on successful open, llog_handle::lgh_obj
1221 * contains the dt_object of the llog.
1222 * \retval negative value on error
1224 static int llog_osd_open(const struct lu_env *env, struct llog_handle *handle,
1225 struct llog_logid *logid, char *name,
1226 enum llog_open_param open_param)
1228 struct llog_thread_info *lgi = llog_info(env);
1229 struct llog_ctxt *ctxt = handle->lgh_ctxt;
1230 struct dt_object *o;
1231 struct dt_device *dt;
1232 struct ls_device *ls;
1233 struct local_oid_storage *los = NULL;
1235 bool new_id = false;
1241 LASSERT(ctxt->loc_exp);
1242 LASSERT(ctxt->loc_exp->exp_obd);
1243 dt = ctxt->loc_exp->exp_obd->obd_lvfs_ctxt.dt;
1245 if (ctxt->loc_flags & LLOG_CTXT_FLAG_NORMAL_FID) {
1246 struct lu_object_conf conf = { 0 };
1247 if (logid != NULL) {
1248 logid_to_fid(logid, &lgi->lgi_fid);
1250 /* If logid == NULL, then it means the caller needs
1251 * to allocate new FID (llog_cat_declare_add_rec()). */
1252 rc = obd_fid_alloc(env, ctxt->loc_exp,
1253 &lgi->lgi_fid, NULL);
1257 conf.loc_flags = LOC_F_NEW;
1260 o = dt_locate_at(env, dt, &lgi->lgi_fid,
1261 dt->dd_lu_dev.ld_site->ls_top_dev, &conf);
1268 ls = ls_device_get(dt);
1270 RETURN(PTR_ERR(ls));
1272 mutex_lock(&ls->ls_los_mutex);
1273 los = dt_los_find(ls, name != NULL ? FID_SEQ_LLOG_NAME : FID_SEQ_LLOG);
1274 mutex_unlock(&ls->ls_los_mutex);
1276 ls_device_put(env, ls);
1280 if (logid != NULL) {
1281 logid_to_fid(logid, &lgi->lgi_fid);
1283 struct dt_object *llog_dir;
1285 llog_dir = llog_osd_dir_get(env, ctxt);
1286 if (IS_ERR(llog_dir))
1287 GOTO(out, rc = PTR_ERR(llog_dir));
1288 dt_read_lock(env, llog_dir, 0);
1289 rc = dt_lookup_dir(env, llog_dir, name, &lgi->lgi_fid);
1290 dt_read_unlock(env, llog_dir);
1291 dt_object_put(env, llog_dir);
1292 if (rc == -ENOENT && open_param == LLOG_OPEN_NEW) {
1293 /* generate fid for new llog */
1294 rc = local_object_fid_generate(env, los,
1300 OBD_ALLOC(handle->lgh_name, strlen(name) + 1);
1301 if (handle->lgh_name)
1302 strcpy(handle->lgh_name, name);
1304 GOTO(out, rc = -ENOMEM);
1306 LASSERTF(open_param & LLOG_OPEN_NEW, "%#x\n", open_param);
1307 /* generate fid for new llog */
1309 rc = local_object_fid_generate(env, los, &lgi->lgi_fid);
1315 o = ls_locate(env, ls, &lgi->lgi_fid, NULL);
1317 GOTO(out_name, rc = PTR_ERR(o));
1319 if (dt_object_exists(o) && new_id) {
1320 /* llog exists with just generated ID, e.g. some old llog file
1321 * still is in use or is orphan, drop a warn and skip it. */
1322 CDEBUG(D_INFO, "%s: llog exists with the same FID: "DFID
1324 o->do_lu.lo_dev->ld_obd->obd_name,
1325 PFID(lu_object_fid(&o->do_lu)));
1326 dt_object_put(env, o);
1327 /* just skip this llog ID, we shouldn't delete it because we
1328 * don't know exactly what is its purpose and state. */
1333 /* No new llog is expected but doesn't exist */
1334 if (open_param != LLOG_OPEN_NEW && !dt_object_exists(o)) {
1335 CDEBUG(D_INFO, "%s: llog FID: "DFID" obj %p doesn`t exist\n",
1336 o->do_lu.lo_dev->ld_obd->obd_name,
1337 PFID(lu_object_fid(&o->do_lu)), o);
1338 GOTO(out_put, rc = -ENOENT);
1340 fid_to_logid(&lgi->lgi_fid, &handle->lgh_id);
1341 handle->lgh_obj = o;
1342 handle->private_data = los;
1343 LASSERT(handle->lgh_ctxt);
1348 dt_object_put(env, o);
1350 if (handle->lgh_name != NULL)
1351 OBD_FREE(handle->lgh_name, strlen(name) + 1);
1359 * Get dir for regular fid log object
1361 * Get directory for regular fid log object, and these regular fid log
1362 * object will be inserted under this directory, to satisfy the FS
1363 * consistency check, e2fsck etc.
1365 * \param [in] env execution environment
1366 * \param [in] dto llog object
1368 * \retval pointer to the directory if it is found.
1369 * \retval ERR_PTR(negative errno) if it fails.
1371 struct dt_object *llog_osd_get_regular_fid_dir(const struct lu_env *env,
1372 struct dt_object *dto)
1374 struct llog_thread_info *lgi = llog_info(env);
1375 struct seq_server_site *ss = dto->do_lu.lo_dev->ld_site->ld_seq_site;
1376 struct lu_seq_range *range = &lgi->lgi_range;
1377 struct lu_fid *dir_fid = &lgi->lgi_fid;
1378 struct dt_object *dir;
1382 fld_range_set_any(range);
1383 LASSERT(ss != NULL);
1384 rc = ss->ss_server_fld->lsf_seq_lookup(env, ss->ss_server_fld,
1385 fid_seq(lu_object_fid(&dto->do_lu)), range);
1387 RETURN(ERR_PTR(rc));
1389 lu_update_log_dir_fid(dir_fid, range->lsr_index);
1390 dir = dt_locate(env, lu2dt_dev(dto->do_lu.lo_dev), dir_fid);
1394 if (!dt_try_as_dir(env, dir)) {
1395 dt_object_put(env, dir);
1396 RETURN(ERR_PTR(-ENOTDIR));
1403 * Add llog object with regular FID to name entry
1405 * Add llog object with regular FID to name space, and each llog
1406 * object on each MDT will be /update_log_dir/[seq:oid:ver],
1407 * so to satisfy the namespace consistency check, e2fsck etc.
1409 * \param [in] env execution environment
1410 * \param [in] dto llog object
1411 * \param [in] th thandle
1412 * \param [in] declare if it is declare or execution
1414 * \retval 0 if insertion succeeds.
1415 * \retval negative errno if insertion fails.
1418 llog_osd_regular_fid_add_name_entry(const struct lu_env *env,
1419 struct dt_object *dto,
1420 struct thandle *th, bool declare)
1422 struct llog_thread_info *lgi = llog_info(env);
1423 const struct lu_fid *fid = lu_object_fid(&dto->do_lu);
1424 struct dt_insert_rec *rec = &lgi->lgi_dt_rec;
1425 struct dt_object *dir;
1426 char *name = lgi->lgi_name;
1430 if (!fid_is_norm(fid))
1433 dir = llog_osd_get_regular_fid_dir(env, dto);
1435 RETURN(PTR_ERR(dir));
1438 rec->rec_type = S_IFREG;
1439 snprintf(name, sizeof(lgi->lgi_name), DFID, PFID(fid));
1440 dt_write_lock(env, dir, 0);
1442 rc = dt_declare_insert(env, dir, (struct dt_rec *)rec,
1443 (struct dt_key *)name, th);
1445 rc = dt_insert(env, dir, (struct dt_rec *)rec,
1446 (struct dt_key *)name, th);
1448 dt_write_unlock(env, dir);
1450 dt_object_put(env, dir);
1456 * Implementation of the llog_operations::lop_declare_create
1458 * This function declares the llog create. It declares also name insert
1459 * into llog directory in case of named llog.
1461 * \param[in] env execution environment
1462 * \param[in] res llog handle of the current llog
1463 * \param[in] th current transaction handle
1465 * \retval 0 on successful create declaration
1466 * \retval negative value on error
1468 static int llog_osd_declare_create(const struct lu_env *env,
1469 struct llog_handle *res, struct thandle *th)
1471 struct llog_thread_info *lgi = llog_info(env);
1472 struct dt_insert_rec *rec = &lgi->lgi_dt_rec;
1473 struct local_oid_storage *los;
1474 struct dt_object *o;
1479 LASSERT(res->lgh_obj);
1482 /* object can be created by another thread */
1484 if (dt_object_exists(o))
1487 if (res->lgh_ctxt->loc_flags & LLOG_CTXT_FLAG_NORMAL_FID) {
1488 struct llog_thread_info *lgi = llog_info(env);
1490 lgi->lgi_attr.la_valid = LA_MODE | LA_SIZE;
1491 lgi->lgi_attr.la_size = 0;
1492 lgi->lgi_attr.la_mode = S_IFREG | S_IRUGO | S_IWUSR;
1493 lgi->lgi_dof.dof_type = dt_mode_to_dft(S_IFREG);
1495 rc = dt_declare_create(env, o, &lgi->lgi_attr, NULL,
1501 rc = llog_osd_regular_fid_add_name_entry(env, o, th, true);
1505 los = res->private_data;
1508 rc = llog_osd_declare_new_object(env, los, o, th);
1512 /* do not declare header initialization here as it's declared
1513 * in llog_osd_declare_write_rec() which is always called */
1515 if (res->lgh_name) {
1516 struct dt_object *llog_dir;
1518 llog_dir = llog_osd_dir_get(env, res->lgh_ctxt);
1519 if (IS_ERR(llog_dir))
1520 RETURN(PTR_ERR(llog_dir));
1521 logid_to_fid(&res->lgh_id, &lgi->lgi_fid);
1522 rec->rec_fid = &lgi->lgi_fid;
1523 rec->rec_type = S_IFREG;
1524 rc = dt_declare_insert(env, llog_dir,
1525 (struct dt_rec *)rec,
1526 (struct dt_key *)res->lgh_name, th);
1527 dt_object_put(env, llog_dir);
1529 CERROR("%s: can't declare named llog %s: rc = %d\n",
1530 o->do_lu.lo_dev->ld_obd->obd_name,
1537 * Implementation of the llog_operations::lop_create
1539 * This function creates the llog according with llog_handle::lgh_obj
1540 * and llog_handle::lgh_name.
1542 * \param[in] env execution environment
1543 * \param[in] res llog handle of the current llog
1544 * \param[in] th current transaction handle
1546 * \retval 0 on successful create
1547 * \retval negative value on error
1549 static int llog_osd_create(const struct lu_env *env, struct llog_handle *res,
1552 struct llog_thread_info *lgi = llog_info(env);
1553 struct dt_insert_rec *rec = &lgi->lgi_dt_rec;
1554 struct local_oid_storage *los;
1555 struct dt_object *o;
1564 /* llog can be already created */
1565 if (dt_object_exists(o))
1568 if (res->lgh_ctxt->loc_flags & LLOG_CTXT_FLAG_NORMAL_FID) {
1569 struct llog_thread_info *lgi = llog_info(env);
1571 lgi->lgi_attr.la_valid = LA_MODE | LA_SIZE | LA_TYPE;
1572 lgi->lgi_attr.la_size = 0;
1573 lgi->lgi_attr.la_mode = S_IFREG | S_IRUGO | S_IWUSR;
1574 lgi->lgi_dof.dof_type = dt_mode_to_dft(S_IFREG);
1576 dt_write_lock(env, o, 0);
1577 rc = dt_create(env, o, &lgi->lgi_attr, NULL,
1579 dt_write_unlock(env, o);
1583 rc = llog_osd_regular_fid_add_name_entry(env, o, th, false);
1588 los = res->private_data;
1591 dt_write_lock(env, o, 0);
1592 if (!dt_object_exists(o))
1593 rc = llog_osd_create_new_object(env, los, o, th);
1597 dt_write_unlock(env, o);
1601 if (res->lgh_name) {
1602 struct dt_object *llog_dir;
1604 llog_dir = llog_osd_dir_get(env, res->lgh_ctxt);
1605 if (IS_ERR(llog_dir))
1606 RETURN(PTR_ERR(llog_dir));
1608 logid_to_fid(&res->lgh_id, &lgi->lgi_fid);
1609 rec->rec_fid = &lgi->lgi_fid;
1610 rec->rec_type = S_IFREG;
1611 dt_read_lock(env, llog_dir, 0);
1612 rc = dt_insert(env, llog_dir, (struct dt_rec *)rec,
1613 (struct dt_key *)res->lgh_name, th);
1614 dt_read_unlock(env, llog_dir);
1615 dt_object_put(env, llog_dir);
1617 CERROR("%s: can't create named llog %s: rc = %d\n",
1618 o->do_lu.lo_dev->ld_obd->obd_name,
1625 * Implementation of the llog_operations::lop_close
1627 * This function closes the llog. It just put llog object and referenced
1630 * \param[in] env execution environment
1631 * \param[in] handle llog handle of the current llog
1633 * \retval 0 on successful llog close
1634 * \retval negative value on error
1636 static int llog_osd_close(const struct lu_env *env, struct llog_handle *handle)
1638 struct local_oid_storage *los;
1643 LASSERT(handle->lgh_obj);
1645 if (handle->lgh_ctxt->loc_flags & LLOG_CTXT_FLAG_NORMAL_FID) {
1646 /* Remove the object from the cache, otherwise it may
1647 * hold LOD being released during cleanup process */
1648 dt_object_put_nocache(env, handle->lgh_obj);
1649 LASSERT(handle->private_data == NULL);
1652 dt_object_put(env, handle->lgh_obj);
1654 los = handle->private_data;
1658 if (handle->lgh_name)
1659 OBD_FREE(handle->lgh_name, strlen(handle->lgh_name) + 1);
1665 * delete llog object name entry
1667 * Delete llog object (with regular FID) from name space (under
1670 * \param [in] env execution environment
1671 * \param [in] dto llog object
1672 * \param [in] th thandle
1673 * \param [in] declare if it is declare or execution
1675 * \retval 0 if deletion succeeds.
1676 * \retval negative errno if deletion fails.
1679 llog_osd_regular_fid_del_name_entry(const struct lu_env *env,
1680 struct dt_object *dto,
1681 struct thandle *th, bool declare)
1683 struct llog_thread_info *lgi = llog_info(env);
1684 const struct lu_fid *fid = lu_object_fid(&dto->do_lu);
1685 struct dt_object *dir;
1686 char *name = lgi->lgi_name;
1690 if (!fid_is_norm(fid))
1693 dir = llog_osd_get_regular_fid_dir(env, dto);
1695 RETURN(PTR_ERR(dir));
1697 snprintf(name, sizeof(lgi->lgi_name), DFID, PFID(fid));
1698 dt_write_lock(env, dir, 0);
1700 rc = dt_declare_delete(env, dir, (struct dt_key *)name,
1703 rc = dt_delete(env, dir, (struct dt_key *)name, th);
1705 dt_write_unlock(env, dir);
1707 dt_object_put(env, dir);
1712 * Implementation of the llog_operations::lop_declare_destroy
1714 * This function declare destroys the llog and deletes also entry in the
1715 * llog directory in case of named llog. Llog should be opened prior that.
1717 * \param[in] env execution environment
1718 * \param[in] loghandle llog handle of the current llog
1720 * \retval 0 on successful destroy
1721 * \retval negative value on error
1723 static int llog_osd_declare_destroy(const struct lu_env *env,
1724 struct llog_handle *loghandle,
1727 struct llog_ctxt *ctxt;
1728 struct dt_object *o, *llog_dir = NULL;
1733 ctxt = loghandle->lgh_ctxt;
1736 o = loghandle->lgh_obj;
1739 if (loghandle->lgh_name) {
1740 llog_dir = llog_osd_dir_get(env, ctxt);
1741 if (IS_ERR(llog_dir))
1742 RETURN(PTR_ERR(llog_dir));
1744 rc = dt_declare_delete(env, llog_dir,
1745 (struct dt_key *)loghandle->lgh_name,
1751 rc = dt_declare_ref_del(env, o, th);
1755 rc = dt_declare_destroy(env, o, th);
1759 if (loghandle->lgh_ctxt->loc_flags & LLOG_CTXT_FLAG_NORMAL_FID) {
1760 rc = llog_osd_regular_fid_del_name_entry(env, o, th, true);
1766 if (!(IS_ERR_OR_NULL(llog_dir)))
1767 dt_object_put(env, llog_dir);
1774 * Implementation of the llog_operations::lop_destroy
1776 * This function destroys the llog and deletes also entry in the
1777 * llog directory in case of named llog. Llog should be opened prior that.
1778 * Destroy method is not part of external transaction and does everything
1781 * \param[in] env execution environment
1782 * \param[in] loghandle llog handle of the current llog
1784 * \retval 0 on successful destroy
1785 * \retval negative value on error
1787 static int llog_osd_destroy(const struct lu_env *env,
1788 struct llog_handle *loghandle, struct thandle *th)
1790 struct llog_ctxt *ctxt;
1791 struct dt_object *o, *llog_dir = NULL;
1796 ctxt = loghandle->lgh_ctxt;
1797 LASSERT(ctxt != NULL);
1799 o = loghandle->lgh_obj;
1802 dt_write_lock(env, o, 0);
1803 if (!dt_object_exists(o))
1804 GOTO(out_unlock, rc = 0);
1806 if (loghandle->lgh_name) {
1807 llog_dir = llog_osd_dir_get(env, ctxt);
1808 if (IS_ERR(llog_dir))
1809 GOTO(out_unlock, rc = PTR_ERR(llog_dir));
1811 dt_read_lock(env, llog_dir, 0);
1812 rc = dt_delete(env, llog_dir,
1813 (struct dt_key *)loghandle->lgh_name,
1815 dt_read_unlock(env, llog_dir);
1817 CERROR("%s: can't remove llog %s: rc = %d\n",
1818 o->do_lu.lo_dev->ld_obd->obd_name,
1819 loghandle->lgh_name, rc);
1820 GOTO(out_unlock, rc);
1824 dt_ref_del(env, o, th);
1825 rc = dt_destroy(env, o, th);
1827 GOTO(out_unlock, rc);
1829 if (loghandle->lgh_ctxt->loc_flags & LLOG_CTXT_FLAG_NORMAL_FID) {
1830 rc = llog_osd_regular_fid_del_name_entry(env, o, th, false);
1832 GOTO(out_unlock, rc);
1836 dt_write_unlock(env, o);
1837 if (!(IS_ERR_OR_NULL(llog_dir)))
1838 dt_object_put(env, llog_dir);
1843 * Implementation of the llog_operations::lop_setup
1845 * This function setup the llog on local storage.
1847 * \param[in] env execution environment
1848 * \param[in] obd obd device the llog belongs to
1849 * \param[in] olg the llog group, it is always zero group now.
1850 * \param[in] ctxt_idx the llog index, it defines the purpose of this llog.
1851 * Every new llog type have to use own index.
1852 * \param[in] disk_obd the storage obd, where llog is stored.
1854 * \retval 0 on successful llog setup
1855 * \retval negative value on error
1857 static int llog_osd_setup(const struct lu_env *env, struct obd_device *obd,
1858 struct obd_llog_group *olg, int ctxt_idx,
1859 struct obd_device *disk_obd)
1861 struct llog_thread_info *lgi = llog_info(env);
1862 struct llog_ctxt *ctxt;
1867 LASSERT(olg->olg_ctxts[ctxt_idx]);
1869 ctxt = llog_ctxt_get(olg->olg_ctxts[ctxt_idx]);
1872 if (disk_obd == NULL)
1875 /* initialize data allowing to generate new fids,
1876 * literally we need a sequece */
1877 lgi->lgi_fid.f_seq = FID_SEQ_LLOG;
1878 lgi->lgi_fid.f_oid = 1;
1879 lgi->lgi_fid.f_ver = 0;
1880 rc = local_oid_storage_init(env, disk_obd->obd_lvfs_ctxt.dt,
1882 &ctxt->loc_los_nameless);
1886 lgi->lgi_fid.f_seq = FID_SEQ_LLOG_NAME;
1887 lgi->lgi_fid.f_oid = 1;
1888 lgi->lgi_fid.f_ver = 0;
1889 rc = local_oid_storage_init(env, disk_obd->obd_lvfs_ctxt.dt,
1891 &ctxt->loc_los_named);
1893 local_oid_storage_fini(env, ctxt->loc_los_nameless);
1894 ctxt->loc_los_nameless = NULL;
1900 llog_ctxt_put(ctxt);
1905 * Implementation of the llog_operations::lop_cleanup
1907 * This function cleanups the llog on local storage.
1909 * \param[in] env execution environment
1910 * \param[in] ctxt the llog context
1914 static int llog_osd_cleanup(const struct lu_env *env, struct llog_ctxt *ctxt)
1916 if (ctxt->loc_los_nameless != NULL) {
1917 local_oid_storage_fini(env, ctxt->loc_los_nameless);
1918 ctxt->loc_los_nameless = NULL;
1921 if (ctxt->loc_los_named != NULL) {
1922 local_oid_storage_fini(env, ctxt->loc_los_named);
1923 ctxt->loc_los_named = NULL;
1929 struct llog_operations llog_osd_ops = {
1930 .lop_next_block = llog_osd_next_block,
1931 .lop_prev_block = llog_osd_prev_block,
1932 .lop_read_header = llog_osd_read_header,
1933 .lop_declare_destroy = llog_osd_declare_destroy,
1934 .lop_destroy = llog_osd_destroy,
1935 .lop_setup = llog_osd_setup,
1936 .lop_cleanup = llog_osd_cleanup,
1937 .lop_open = llog_osd_open,
1938 .lop_exist = llog_osd_exist,
1939 .lop_declare_create = llog_osd_declare_create,
1940 .lop_create = llog_osd_create,
1941 .lop_declare_write_rec = llog_osd_declare_write_rec,
1942 .lop_write_rec = llog_osd_write_rec,
1943 .lop_close = llog_osd_close,
1945 EXPORT_SYMBOL(llog_osd_ops);
1947 struct llog_operations llog_common_cat_ops = {
1948 .lop_next_block = llog_osd_next_block,
1949 .lop_prev_block = llog_osd_prev_block,
1950 .lop_read_header = llog_osd_read_header,
1951 .lop_declare_destroy = llog_osd_declare_destroy,
1952 .lop_destroy = llog_osd_destroy,
1953 .lop_setup = llog_osd_setup,
1954 .lop_cleanup = llog_osd_cleanup,
1955 .lop_open = llog_osd_open,
1956 .lop_exist = llog_osd_exist,
1957 .lop_declare_create = llog_osd_declare_create,
1958 .lop_create = llog_osd_create,
1959 .lop_declare_write_rec = llog_osd_declare_write_rec,
1960 .lop_write_rec = llog_osd_write_rec,
1961 .lop_close = llog_osd_close,
1962 .lop_add = llog_cat_add_rec,
1963 .lop_declare_add = llog_cat_declare_add_rec,
1965 EXPORT_SYMBOL(llog_common_cat_ops);
1968 * Read the special file which contains the list of llog catalogs IDs
1970 * This function reads the CATALOGS file which contains the array of llog
1971 * catalogs IDs. The main purpose of this file is to store OSP llogs indexed
1972 * by OST/MDT number.
1974 * \param[in] env execution environment
1975 * \param[in] d corresponding storage device
1976 * \param[in] idx position to start from, usually OST/MDT index
1977 * \param[in] count how many catalog IDs to read
1978 * \param[out] idarray the buffer for the data. If it is NULL then
1979 * function returns just number of catalog IDs
1981 * \param[in] fid LLOG_CATALOGS_OID for CATALOG object
1983 * \retval 0 on successful read of catalog IDs
1984 * \retval negative value on error
1985 * \retval positive value which is number of records in
1986 * the file if \a idarray is NULL
1988 int llog_osd_get_cat_list(const struct lu_env *env, struct dt_device *d,
1989 int idx, int count, struct llog_catid *idarray,
1990 const struct lu_fid *fid)
1992 struct llog_thread_info *lgi = llog_info(env);
1993 struct dt_object *o = NULL;
2001 size = sizeof(*idarray) * count;
2002 lgi->lgi_off = idx * sizeof(*idarray);
2004 lgi->lgi_fid = *fid;
2005 o = dt_locate(env, d, &lgi->lgi_fid);
2009 if (!dt_object_exists(o)) {
2010 th = dt_trans_create(env, d);
2012 GOTO(out, rc = PTR_ERR(th));
2014 lgi->lgi_attr.la_valid = LA_MODE;
2015 lgi->lgi_attr.la_mode = S_IFREG | S_IRUGO | S_IWUSR;
2016 lgi->lgi_dof.dof_type = dt_mode_to_dft(S_IFREG);
2018 th->th_wait_submit = 1;
2019 /* Make the llog object creation synchronization, so
2020 * it will be reliable to the reference, especially
2021 * for remote reference */
2024 rc = dt_declare_create(env, o, &lgi->lgi_attr, NULL,
2027 GOTO(out_trans, rc);
2029 rc = dt_trans_start_local(env, d, th);
2031 GOTO(out_trans, rc);
2033 dt_write_lock(env, o, 0);
2034 if (!dt_object_exists(o))
2035 rc = dt_create(env, o, &lgi->lgi_attr, NULL,
2037 dt_write_unlock(env, o);
2039 dt_trans_stop(env, d, th);
2044 rc = dt_attr_get(env, o, &lgi->lgi_attr);
2048 if (!S_ISREG(lgi->lgi_attr.la_mode)) {
2049 CERROR("%s: CATALOGS is not a regular file!: mode = %o\n",
2050 o->do_lu.lo_dev->ld_obd->obd_name,
2051 lgi->lgi_attr.la_mode);
2052 GOTO(out, rc = -ENOENT);
2055 CDEBUG(D_CONFIG, "cat list: disk size=%d, read=%d\n",
2056 (int)lgi->lgi_attr.la_size, size);
2058 /* return just number of llogs */
2059 if (idarray == NULL) {
2060 rc = lgi->lgi_attr.la_size / sizeof(*idarray);
2064 /* read for new ost index or for empty file */
2065 memset(idarray, 0, size);
2066 if (lgi->lgi_attr.la_size <= lgi->lgi_off)
2068 if (lgi->lgi_attr.la_size < lgi->lgi_off + size)
2069 size = lgi->lgi_attr.la_size - lgi->lgi_off;
2071 lgi->lgi_buf.lb_buf = idarray;
2072 lgi->lgi_buf.lb_len = size;
2073 rc = dt_record_read(env, o, &lgi->lgi_buf, &lgi->lgi_off);
2074 /* -EFAULT means the llog is a sparse file. This is not an error
2075 * after arbitrary OST index is supported. */
2076 if (rc < 0 && rc != -EFAULT) {
2077 CERROR("%s: error reading CATALOGS: rc = %d\n",
2078 o->do_lu.lo_dev->ld_obd->obd_name, rc);
2084 dt_object_put(env, o);
2087 EXPORT_SYMBOL(llog_osd_get_cat_list);
2090 * Write the special file which contains the list of llog catalogs IDs
2092 * This function writes the CATALOG file which contains the array of llog
2093 * catalogs IDs. It is used mostly to store OSP llogs indexed by OST/MDT
2096 * \param[in] env execution environment
2097 * \param[in] d corresponding storage device
2098 * \param[in] idx position to start from, usually OST/MDT index
2099 * \param[in] count how many catalog IDs to write
2100 * \param[out] idarray the buffer with the data to write.
2101 * \param[in] fid LLOG_CATALOGS_OID for CATALOG object
2103 * \retval 0 on successful write of catalog IDs
2104 * \retval negative value on error
2106 int llog_osd_put_cat_list(const struct lu_env *env, struct dt_device *d,
2107 int idx, int count, struct llog_catid *idarray,
2108 const struct lu_fid *fid)
2110 struct llog_thread_info *lgi = llog_info(env);
2111 struct dt_object *o = NULL;
2120 size = sizeof(*idarray) * count;
2121 lgi->lgi_off = idx * sizeof(*idarray);
2122 lgi->lgi_fid = *fid;
2124 o = dt_locate(env, d, &lgi->lgi_fid);
2128 if (!dt_object_exists(o))
2129 GOTO(out, rc = -ENOENT);
2131 rc = dt_attr_get(env, o, &lgi->lgi_attr);
2135 if (!S_ISREG(lgi->lgi_attr.la_mode)) {
2136 CERROR("%s: CATALOGS is not a regular file!: mode = %o\n",
2137 o->do_lu.lo_dev->ld_obd->obd_name,
2138 lgi->lgi_attr.la_mode);
2139 GOTO(out, rc = -ENOENT);
2142 th = dt_trans_create(env, d);
2144 GOTO(out, rc = PTR_ERR(th));
2146 lgi->lgi_buf.lb_len = size;
2147 lgi->lgi_buf.lb_buf = idarray;
2148 rc = dt_declare_record_write(env, o, &lgi->lgi_buf, lgi->lgi_off, th);
2150 GOTO(out_trans, rc);
2152 /* For update log, this happens during initialization,
2153 * see lod_sub_prep_llog(), and we need make sure catlog
2154 * file ID is written to catlist file(committed) before
2155 * cross-MDT operation write update records to catlog FILE,
2156 * otherwise, during failover these update records might
2158 if (fid_is_update_log(fid))
2161 rc = dt_trans_start_local(env, d, th);
2163 GOTO(out_trans, rc);
2165 th->th_wait_submit = 1;
2167 rc = dt_record_write(env, o, &lgi->lgi_buf, &lgi->lgi_off, th);
2169 CDEBUG(D_INODE, "can't write CATALOGS at index %d: rc = %d\n",
2172 dt_trans_stop(env, d, th);
2174 dt_object_put(env, o);
2177 EXPORT_SYMBOL(llog_osd_put_cat_list);