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.sun.com/software/products/lustre/docs/GPLv2.pdf
20 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21 * CA 95054 USA or visit www.sun.com if you need additional information or
27 * Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
28 * Use is subject to license terms.
30 * Copyright (c) 2012, Intel Corporation.
33 * This file is part of Lustre, http://www.lustre.org/
34 * Lustre is a trademark of Sun Microsystems, Inc.
36 * lustre/obdclass/llog_osd.c - low level llog routines on top of OSD API
38 * Author: Alexey Zhuravlev <alexey.zhuravlev@intel.com>
39 * Author: Mikhail Pershin <mike.pershin@intel.com>
42 #define DEBUG_SUBSYSTEM S_LOG
49 #include <obd_class.h>
50 #include <lustre_fid.h>
51 #include <dt_object.h>
53 #include "llog_internal.h"
54 #include "local_storage.h"
57 * - multi-chunks or big-declaration approach
58 * - use unique sequence instead of llog sb tracking unique ids
59 * - re-use existing environment
60 * - named llog support (can be used for testing only at the present)
61 * - llog_origin_connect() work with OSD API
64 static int llog_osd_declare_new_object(const struct lu_env *env,
65 struct local_oid_storage *los,
69 struct llog_thread_info *lgi = llog_info(env);
71 lgi->lgi_attr.la_valid = LA_MODE;
72 lgi->lgi_attr.la_mode = S_IFREG | S_IRUGO | S_IWUSR;
73 lgi->lgi_dof.dof_type = dt_mode_to_dft(S_IFREG);
75 return local_object_declare_create(env, los, o, &lgi->lgi_attr,
79 static int llog_osd_create_new_object(const struct lu_env *env,
80 struct local_oid_storage *los,
84 struct llog_thread_info *lgi = llog_info(env);
86 lgi->lgi_attr.la_valid = LA_MODE;
87 lgi->lgi_attr.la_mode = S_IFREG | S_IRUGO | S_IWUSR;
88 lgi->lgi_dof.dof_type = dt_mode_to_dft(S_IFREG);
90 return local_object_create(env, los, o, &lgi->lgi_attr,
94 static int llog_osd_pad(const struct lu_env *env, struct dt_object *o,
95 loff_t *off, int len, int index, struct thandle *th)
97 struct llog_thread_info *lgi = llog_info(env);
104 LASSERT(len >= LLOG_MIN_REC_SIZE && (len & 0x7) == 0);
106 lgi->lgi_tail.lrt_len = lgi->lgi_lrh.lrh_len = len;
107 lgi->lgi_tail.lrt_index = lgi->lgi_lrh.lrh_index = index;
108 lgi->lgi_lrh.lrh_type = LLOG_PAD_MAGIC;
110 lgi->lgi_buf.lb_buf = &lgi->lgi_lrh;
111 lgi->lgi_buf.lb_len = sizeof(lgi->lgi_lrh);
112 dt_write_lock(env, o, 0);
113 rc = dt_record_write(env, o, &lgi->lgi_buf, off, th);
115 CERROR("%s: error writing padding record: rc = %d\n",
116 o->do_lu.lo_dev->ld_obd->obd_name, rc);
120 lgi->lgi_buf.lb_buf = &lgi->lgi_tail;
121 lgi->lgi_buf.lb_len = sizeof(lgi->lgi_tail);
122 *off += len - sizeof(lgi->lgi_lrh) - sizeof(lgi->lgi_tail);
123 rc = dt_record_write(env, o, &lgi->lgi_buf, off, th);
125 CERROR("%s: error writing padding record: rc = %d\n",
126 o->do_lu.lo_dev->ld_obd->obd_name, rc);
128 dt_write_unlock(env, o);
132 static int llog_osd_write_blob(const struct lu_env *env, struct dt_object *o,
133 struct llog_rec_hdr *rec, void *buf,
134 loff_t *off, struct thandle *th)
136 struct llog_thread_info *lgi = llog_info(env);
137 int buflen = rec->lrh_len;
146 CWARN("0-length record\n");
148 CDEBUG(D_OTHER, "write blob with type %x, buf %p/%u at off %llu\n",
149 rec->lrh_type, buf, buflen, *off);
151 lgi->lgi_attr.la_valid = LA_SIZE;
152 lgi->lgi_attr.la_size = *off;
155 lgi->lgi_buf.lb_len = buflen;
156 lgi->lgi_buf.lb_buf = rec;
157 rc = dt_record_write(env, o, &lgi->lgi_buf, off, th);
159 CERROR("%s: error writing log record: rc = %d\n",
160 o->do_lu.lo_dev->ld_obd->obd_name, rc);
165 /* protect the following 3 writes from concurrent read */
166 dt_write_lock(env, o, 0);
167 rec->lrh_len = sizeof(*rec) + buflen + sizeof(lgi->lgi_tail);
168 lgi->lgi_buf.lb_len = sizeof(*rec);
169 lgi->lgi_buf.lb_buf = rec;
170 rc = dt_record_write(env, o, &lgi->lgi_buf, off, th);
172 CERROR("%s: error writing log hdr: rc = %d\n",
173 o->do_lu.lo_dev->ld_obd->obd_name, rc);
174 GOTO(out_unlock, rc);
177 lgi->lgi_buf.lb_len = buflen;
178 lgi->lgi_buf.lb_buf = buf;
179 rc = dt_record_write(env, o, &lgi->lgi_buf, off, th);
181 CERROR("%s: error writing log buffer: rc = %d\n",
182 o->do_lu.lo_dev->ld_obd->obd_name, rc);
183 GOTO(out_unlock, rc);
186 lgi->lgi_tail.lrt_len = rec->lrh_len;
187 lgi->lgi_tail.lrt_index = rec->lrh_index;
188 lgi->lgi_buf.lb_len = sizeof(lgi->lgi_tail);
189 lgi->lgi_buf.lb_buf = &lgi->lgi_tail;
190 rc = dt_record_write(env, o, &lgi->lgi_buf, off, th);
192 CERROR("%s: error writing log tail: rc = %d\n",
193 o->do_lu.lo_dev->ld_obd->obd_name, rc);
196 dt_write_unlock(env, o);
199 /* cleanup the content written above */
201 dt_punch(env, o, lgi->lgi_attr.la_size, OBD_OBJECT_EOF, th,
203 dt_attr_set(env, o, &lgi->lgi_attr, th, BYPASS_CAPA);
209 static int llog_osd_read_header(const struct lu_env *env,
210 struct llog_handle *handle)
212 struct llog_rec_hdr *llh_hdr;
214 struct llog_thread_info *lgi;
219 LASSERT(sizeof(*handle->lgh_hdr) == LLOG_CHUNK_SIZE);
224 lgi = llog_info(env);
226 rc = dt_attr_get(env, o, &lgi->lgi_attr, NULL);
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");
238 lgi->lgi_buf.lb_buf = handle->lgh_hdr;
239 lgi->lgi_buf.lb_len = LLOG_CHUNK_SIZE;
241 rc = dt_record_read(env, o, &lgi->lgi_buf, &lgi->lgi_off);
243 CERROR("%s: error reading log header from "DFID": rc = %d\n",
244 o->do_lu.lo_dev->ld_obd->obd_name,
245 PFID(lu_object_fid(&o->do_lu)), rc);
249 llh_hdr = &handle->lgh_hdr->llh_hdr;
250 if (LLOG_REC_HDR_NEEDS_SWABBING(llh_hdr))
251 lustre_swab_llog_hdr(handle->lgh_hdr);
253 if (llh_hdr->lrh_type != LLOG_HDR_MAGIC) {
254 CERROR("%s: bad log %s "DFID" header magic: %#x "
255 "(expected %#x)\n", o->do_lu.lo_dev->ld_obd->obd_name,
256 handle->lgh_name ? handle->lgh_name : "",
257 PFID(lu_object_fid(&o->do_lu)),
258 llh_hdr->lrh_type, LLOG_HDR_MAGIC);
260 } else if (llh_hdr->lrh_len != LLOG_CHUNK_SIZE) {
261 CERROR("%s: incorrectly sized log %s "DFID" header: "
262 "%#x (expected %#x)\n"
263 "you may need to re-run lconf --write_conf.\n",
264 o->do_lu.lo_dev->ld_obd->obd_name,
265 handle->lgh_name ? handle->lgh_name : "",
266 PFID(lu_object_fid(&o->do_lu)),
267 llh_hdr->lrh_len, LLOG_CHUNK_SIZE);
271 handle->lgh_last_idx = handle->lgh_hdr->llh_tail.lrt_index;
276 static int llog_osd_declare_write_rec(const struct lu_env *env,
277 struct llog_handle *loghandle,
278 struct llog_rec_hdr *rec,
279 int idx, struct thandle *th)
281 struct llog_thread_info *lgi = llog_info(env);
291 o = loghandle->lgh_obj;
294 /* each time we update header */
295 rc = dt_declare_record_write(env, o, sizeof(struct llog_log_hdr), 0,
297 if (rc || idx == 0) /* if error or just header */
300 if (dt_object_exists(o)) {
301 rc = dt_attr_get(env, o, &lgi->lgi_attr, BYPASS_CAPA);
302 lgi->lgi_off = lgi->lgi_attr.la_size;
303 LASSERT(ergo(rc == 0, lgi->lgi_attr.la_valid & LA_SIZE));
307 rc = dt_declare_punch(env, o, lgi->lgi_off, OBD_OBJECT_EOF, th);
314 /* XXX: implement declared window or multi-chunks approach */
315 rc = dt_declare_record_write(env, o, 32 * 1024, lgi->lgi_off, th);
320 /* returns negative in on error; 0 if success && reccookie == 0; 1 otherwise */
321 /* appends if idx == -1, otherwise overwrites record idx. */
322 static int llog_osd_write_rec(const struct lu_env *env,
323 struct llog_handle *loghandle,
324 struct llog_rec_hdr *rec,
325 struct llog_cookie *reccookie, int cookiecount,
326 void *buf, int idx, struct thandle *th)
328 struct llog_thread_info *lgi = llog_info(env);
329 struct llog_log_hdr *llh;
330 int reclen = rec->lrh_len;
331 int index, rc, old_tail_idx;
332 struct llog_rec_tail *lrt;
339 llh = loghandle->lgh_hdr;
341 o = loghandle->lgh_obj;
345 CDEBUG(D_OTHER, "new record %x to "DFID"\n",
346 rec->lrh_type, PFID(lu_object_fid(&o->do_lu)));
348 /* record length should not bigger than LLOG_CHUNK_SIZE */
350 rc = (reclen > LLOG_CHUNK_SIZE - sizeof(struct llog_rec_hdr) -
351 sizeof(struct llog_rec_tail)) ? -E2BIG : 0;
353 rc = (reclen > LLOG_CHUNK_SIZE) ? -E2BIG : 0;
357 rc = dt_attr_get(env, o, &lgi->lgi_attr, NULL);
362 /* write_blob adds header and tail to lrh_len. */
363 reclen = sizeof(*rec) + rec->lrh_len +
364 sizeof(struct llog_rec_tail);
367 /* no header: only allowed to insert record 1 */
368 if (idx != 1 && lgi->lgi_attr.la_size == 0)
371 if (idx && llh->llh_size && llh->llh_size != rec->lrh_len)
374 if (!ext2_test_bit(idx, llh->llh_bitmap))
375 CERROR("%s: modify unset record %u\n",
376 o->do_lu.lo_dev->ld_obd->obd_name, idx);
377 if (idx != rec->lrh_index)
378 CERROR("%s: index mismatch %d %u\n",
379 o->do_lu.lo_dev->ld_obd->obd_name, idx,
383 rc = llog_osd_write_blob(env, o, &llh->llh_hdr, NULL,
385 /* we are done if we only write the header or on error */
390 /* We assume that caller has set lgh_cur_* */
391 lgi->lgi_off = loghandle->lgh_cur_offset;
393 "modify record "LPX64": idx:%d/%u/%d, len:%u "
395 loghandle->lgh_id.lgl_oid, idx, rec->lrh_index,
396 loghandle->lgh_cur_idx, rec->lrh_len,
397 (long long)(lgi->lgi_off - sizeof(*llh)));
398 if (rec->lrh_index != loghandle->lgh_cur_idx) {
399 CERROR("%s: modify idx mismatch %u/%d\n",
400 o->do_lu.lo_dev->ld_obd->obd_name, idx,
401 loghandle->lgh_cur_idx);
405 /* Assumes constant lrh_len */
406 lgi->lgi_off = sizeof(*llh) + (idx - 1) * reclen;
409 rc = llog_osd_write_blob(env, o, rec, buf, &lgi->lgi_off, th);
410 if (rc == 0 && reccookie) {
411 reccookie->lgc_lgl = loghandle->lgh_id;
412 reccookie->lgc_index = idx;
418 /* Make sure that records don't cross a chunk boundary, so we can
419 * process them page-at-a-time if needed. If it will cross a chunk
420 * boundary, write in a fake (but referenced) entry to pad the chunk.
422 * We know that llog_current_log() will return a loghandle that is
423 * big enough to hold reclen, so all we care about is padding here.
425 LASSERT(lgi->lgi_attr.la_valid & LA_SIZE);
426 lgi->lgi_off = lgi->lgi_attr.la_size;
427 left = LLOG_CHUNK_SIZE - (lgi->lgi_off & (LLOG_CHUNK_SIZE - 1));
428 /* NOTE: padding is a record, but no bit is set */
429 if (left != 0 && left != reclen &&
430 left < (reclen + LLOG_MIN_REC_SIZE)) {
431 index = loghandle->lgh_last_idx + 1;
432 rc = llog_osd_pad(env, o, &lgi->lgi_off, left, index, th);
435 loghandle->lgh_last_idx++; /*for pad rec*/
437 /* if it's the last idx in log file, then return -ENOSPC */
438 if (loghandle->lgh_last_idx >= LLOG_BITMAP_SIZE(llh) - 1)
441 loghandle->lgh_last_idx++;
442 index = loghandle->lgh_last_idx;
443 LASSERT(index < LLOG_BITMAP_SIZE(llh));
444 rec->lrh_index = index;
446 lrt = (struct llog_rec_tail *)((char *)rec + rec->lrh_len -
448 lrt->lrt_len = rec->lrh_len;
449 lrt->lrt_index = rec->lrh_index;
451 /* The caller should make sure only 1 process access the lgh_last_idx,
452 * Otherwise it might hit the assert.*/
453 LASSERT(index < LLOG_BITMAP_SIZE(llh));
454 spin_lock(&loghandle->lgh_hdr_lock);
455 if (ext2_set_bit(index, llh->llh_bitmap)) {
456 CERROR("%s: index %u already set in log bitmap\n",
457 o->do_lu.lo_dev->ld_obd->obd_name, index);
458 spin_unlock(&loghandle->lgh_hdr_lock);
459 LBUG(); /* should never happen */
462 spin_unlock(&loghandle->lgh_hdr_lock);
463 old_tail_idx = llh->llh_tail.lrt_index;
464 llh->llh_tail.lrt_index = index;
467 rc = llog_osd_write_blob(env, o, &llh->llh_hdr, NULL, &lgi->lgi_off,
472 rc = dt_attr_get(env, o, &lgi->lgi_attr, NULL);
476 LASSERT(lgi->lgi_attr.la_valid & LA_SIZE);
477 lgi->lgi_off = lgi->lgi_attr.la_size;
479 rc = llog_osd_write_blob(env, o, rec, buf, &lgi->lgi_off, th);
482 /* cleanup llog for error case */
484 spin_lock(&loghandle->lgh_hdr_lock);
485 ext2_clear_bit(index, llh->llh_bitmap);
487 spin_unlock(&loghandle->lgh_hdr_lock);
489 /* restore the header */
490 loghandle->lgh_last_idx--;
491 llh->llh_tail.lrt_index = old_tail_idx;
493 llog_osd_write_blob(env, o, &llh->llh_hdr, NULL,
497 CDEBUG(D_RPCTRACE, "added record "LPX64": idx: %u, %u\n",
498 loghandle->lgh_id.lgl_oid, index, rec->lrh_len);
499 if (rc == 0 && reccookie) {
500 reccookie->lgc_lgl = loghandle->lgh_id;
501 reccookie->lgc_index = index;
502 if ((rec->lrh_type == MDS_UNLINK_REC) ||
503 (rec->lrh_type == MDS_SETATTR64_REC))
504 reccookie->lgc_subsys = LLOG_MDS_OST_ORIG_CTXT;
505 else if (rec->lrh_type == OST_SZ_REC)
506 reccookie->lgc_subsys = LLOG_SIZE_ORIG_CTXT;
508 reccookie->lgc_subsys = -1;
514 /* We can skip reading at least as many log blocks as the number of
515 * minimum sized log records we are skipping. If it turns out
516 * that we are not far enough along the log (because the
517 * actual records are larger than minimum size) we just skip
520 static void llog_skip_over(__u64 *off, int curr, int goal)
524 *off = (*off + (goal - curr - 1) * LLOG_MIN_REC_SIZE) &
525 ~(LLOG_CHUNK_SIZE - 1);
529 * - cur_offset to the furthest point read in the log file
530 * - cur_idx to the log index preceeding cur_offset
531 * returns -EIO/-EINVAL on error
533 static int llog_osd_next_block(const struct lu_env *env,
534 struct llog_handle *loghandle, int *cur_idx,
535 int next_idx, __u64 *cur_offset, void *buf,
538 struct llog_thread_info *lgi = llog_info(env);
540 struct dt_device *dt;
548 if (len == 0 || len & (LLOG_CHUNK_SIZE - 1))
551 CDEBUG(D_OTHER, "looking for log index %u (cur idx %u off "LPU64")\n",
552 next_idx, *cur_idx, *cur_offset);
555 LASSERT(loghandle->lgh_ctxt);
557 o = loghandle->lgh_obj;
559 LASSERT(dt_object_exists(o));
560 dt = lu2dt_dev(o->do_lu.lo_dev);
563 rc = dt_attr_get(env, o, &lgi->lgi_attr, BYPASS_CAPA);
567 while (*cur_offset < lgi->lgi_attr.la_size) {
568 struct llog_rec_hdr *rec, *last_rec;
569 struct llog_rec_tail *tail;
571 llog_skip_over(cur_offset, *cur_idx, next_idx);
573 /* read up to next LLOG_CHUNK_SIZE block */
574 lgi->lgi_buf.lb_len = LLOG_CHUNK_SIZE -
575 (*cur_offset & (LLOG_CHUNK_SIZE - 1));
576 lgi->lgi_buf.lb_buf = buf;
578 /* Note: read lock is not needed around la_size get above at
579 * the time of dt_attr_get(). There are only two cases that
580 * matter. Either la_size == cur_offset, in which case the
581 * entire read is skipped, or la_size > cur_offset and the loop
582 * is entered and this thread is blocked at dt_read_lock()
583 * until the write is completed. When the write completes, then
584 * the dt_read() will be done with the full length, and will
587 dt_read_lock(env, o, 0);
588 rc = dt_read(env, o, &lgi->lgi_buf, cur_offset);
589 dt_read_unlock(env, o);
591 CERROR("%s: can't read llog block from log "DFID
592 " offset "LPU64": rc = %d\n",
593 o->do_lu.lo_dev->ld_obd->obd_name,
594 PFID(lu_object_fid(&o->do_lu)), *cur_offset,
600 /* signal the end of the valid buffer to
602 memset(buf + rc, 0, len - rc);
605 if (rc == 0) /* end of file, nothing to do */
608 if (rc < sizeof(*tail)) {
609 CERROR("%s: invalid llog block at log id "LPU64"/%u "
611 o->do_lu.lo_dev->ld_obd->obd_name,
612 loghandle->lgh_id.lgl_oid,
613 loghandle->lgh_id.lgl_ogen, *cur_offset);
614 GOTO(out, rc = -EINVAL);
618 if (LLOG_REC_HDR_NEEDS_SWABBING(rec))
619 lustre_swab_llog_rec(rec);
621 tail = (struct llog_rec_tail *)((char *)buf + rc -
622 sizeof(struct llog_rec_tail));
623 /* get the last record in block */
624 last_rec = (struct llog_rec_hdr *)((char *)buf + rc -
625 le32_to_cpu(tail->lrt_len));
627 if (LLOG_REC_HDR_NEEDS_SWABBING(last_rec))
628 lustre_swab_llog_rec(last_rec);
629 LASSERT(last_rec->lrh_index == tail->lrt_index);
631 *cur_idx = tail->lrt_index;
633 /* this shouldn't happen */
634 if (tail->lrt_index == 0) {
635 CERROR("%s: invalid llog tail at log id "LPU64"/%u "
637 o->do_lu.lo_dev->ld_obd->obd_name,
638 loghandle->lgh_id.lgl_oid,
639 loghandle->lgh_id.lgl_ogen, *cur_offset);
640 GOTO(out, rc = -EINVAL);
642 if (tail->lrt_index < next_idx)
645 /* sanity check that the start of the new buffer is no farther
646 * than the record that we wanted. This shouldn't happen. */
647 if (rec->lrh_index > next_idx) {
648 CERROR("%s: missed desired record? %u > %u\n",
649 o->do_lu.lo_dev->ld_obd->obd_name,
650 rec->lrh_index, next_idx);
651 GOTO(out, rc = -ENOENT);
655 GOTO(out, rc = -EIO);
660 static int llog_osd_prev_block(const struct lu_env *env,
661 struct llog_handle *loghandle,
662 int prev_idx, void *buf, int len)
664 struct llog_thread_info *lgi = llog_info(env);
666 struct dt_device *dt;
672 if (len == 0 || len & (LLOG_CHUNK_SIZE - 1))
675 CDEBUG(D_OTHER, "looking for log index %u\n", prev_idx);
678 LASSERT(loghandle->lgh_ctxt);
680 o = loghandle->lgh_obj;
682 LASSERT(dt_object_exists(o));
683 dt = lu2dt_dev(o->do_lu.lo_dev);
686 cur_offset = LLOG_CHUNK_SIZE;
687 llog_skip_over(&cur_offset, 0, prev_idx);
689 rc = dt_attr_get(env, o, &lgi->lgi_attr, BYPASS_CAPA);
693 while (cur_offset < lgi->lgi_attr.la_size) {
694 struct llog_rec_hdr *rec, *last_rec;
695 struct llog_rec_tail *tail;
697 lgi->lgi_buf.lb_len = len;
698 lgi->lgi_buf.lb_buf = buf;
699 /* It is OK to have locking around dt_read() only, see
700 * comment in llog_osd_next_block for details
702 dt_read_lock(env, o, 0);
703 rc = dt_read(env, o, &lgi->lgi_buf, &cur_offset);
704 dt_read_unlock(env, o);
706 CERROR("%s: can't read llog block from log "DFID
707 " offset "LPU64": rc = %d\n",
708 o->do_lu.lo_dev->ld_obd->obd_name,
709 PFID(lu_object_fid(&o->do_lu)), cur_offset, rc);
713 if (rc == 0) /* end of file, nothing to do */
716 if (rc < sizeof(*tail)) {
717 CERROR("%s: invalid llog block at log id "LPU64"/%u "
719 o->do_lu.lo_dev->ld_obd->obd_name,
720 loghandle->lgh_id.lgl_oid,
721 loghandle->lgh_id.lgl_ogen, cur_offset);
722 GOTO(out, rc = -EINVAL);
726 if (LLOG_REC_HDR_NEEDS_SWABBING(rec))
727 lustre_swab_llog_rec(rec);
729 tail = (struct llog_rec_tail *)((char *)buf + rc -
730 sizeof(struct llog_rec_tail));
731 /* get the last record in block */
732 last_rec = (struct llog_rec_hdr *)((char *)buf + rc -
733 le32_to_cpu(tail->lrt_len));
735 if (LLOG_REC_HDR_NEEDS_SWABBING(last_rec))
736 lustre_swab_llog_rec(last_rec);
737 LASSERT(last_rec->lrh_index == tail->lrt_index);
739 /* this shouldn't happen */
740 if (tail->lrt_index == 0) {
741 CERROR("%s: invalid llog tail at log id "LPU64"/%u "
743 o->do_lu.lo_dev->ld_obd->obd_name,
744 loghandle->lgh_id.lgl_oid,
745 loghandle->lgh_id.lgl_ogen, cur_offset);
746 GOTO(out, rc = -EINVAL);
748 if (tail->lrt_index < prev_idx)
751 /* sanity check that the start of the new buffer is no farther
752 * than the record that we wanted. This shouldn't happen. */
753 if (rec->lrh_index > prev_idx) {
754 CERROR("%s: missed desired record? %u > %u\n",
755 o->do_lu.lo_dev->ld_obd->obd_name,
756 rec->lrh_index, prev_idx);
757 GOTO(out, rc = -ENOENT);
761 GOTO(out, rc = -EIO);
766 struct dt_object *llog_osd_dir_get(const struct lu_env *env,
767 struct llog_ctxt *ctxt)
769 struct dt_device *dt;
770 struct dt_thread_info *dti = dt_info(env);
771 struct dt_object *dir;
774 dt = ctxt->loc_exp->exp_obd->obd_lvfs_ctxt.dt;
775 if (ctxt->loc_dir == NULL) {
776 rc = dt_root_get(env, dt, &dti->dti_fid);
779 dir = dt_locate(env, dt, &dti->dti_fid);
781 lu_object_get(&ctxt->loc_dir->do_lu);
788 static int llog_osd_open(const struct lu_env *env, struct llog_handle *handle,
789 struct llog_logid *logid, char *name,
790 enum llog_open_param open_param)
792 struct llog_thread_info *lgi = llog_info(env);
793 struct llog_ctxt *ctxt = handle->lgh_ctxt;
795 struct dt_device *dt;
796 struct ls_device *ls;
797 struct local_oid_storage *los;
804 LASSERT(ctxt->loc_exp);
805 LASSERT(ctxt->loc_exp->exp_obd);
806 dt = ctxt->loc_exp->exp_obd->obd_lvfs_ctxt.dt;
809 ls = ls_device_get(dt);
813 mutex_lock(&ls->ls_los_mutex);
814 los = dt_los_find(ls, FID_SEQ_LLOG);
815 mutex_unlock(&ls->ls_los_mutex);
817 ls_device_put(env, ls);
822 logid_to_fid(logid, &lgi->lgi_fid);
824 struct dt_object *llog_dir;
826 llog_dir = llog_osd_dir_get(env, ctxt);
827 if (IS_ERR(llog_dir))
828 GOTO(out, rc = PTR_ERR(llog_dir));
829 dt_read_lock(env, llog_dir, 0);
830 rc = dt_lookup_dir(env, llog_dir, name, &lgi->lgi_fid);
831 dt_read_unlock(env, llog_dir);
832 lu_object_put(env, &llog_dir->do_lu);
833 if (rc == -ENOENT && open_param == LLOG_OPEN_NEW) {
834 /* generate fid for new llog */
835 rc = local_object_fid_generate(env, los,
840 OBD_ALLOC(handle->lgh_name, strlen(name) + 1);
841 if (handle->lgh_name)
842 strcpy(handle->lgh_name, name);
844 GOTO(out, rc = -ENOMEM);
846 LASSERTF(open_param & LLOG_OPEN_NEW, "%#x\n", open_param);
847 /* generate fid for new llog */
848 rc = local_object_fid_generate(env, los, &lgi->lgi_fid);
853 o = ls_locate(env, ls, &lgi->lgi_fid);
855 GOTO(out_name, rc = PTR_ERR(o));
857 /* No new llog is expected but doesn't exist */
858 if (open_param != LLOG_OPEN_NEW && !dt_object_exists(o))
859 GOTO(out_put, rc = -ENOENT);
861 fid_to_logid(&lgi->lgi_fid, &handle->lgh_id);
863 handle->private_data = los;
864 LASSERT(handle->lgh_ctxt);
869 lu_object_put(env, &o->do_lu);
871 if (handle->lgh_name != NULL)
872 OBD_FREE(handle->lgh_name, strlen(name) + 1);
878 static int llog_osd_exist(struct llog_handle *handle)
880 LASSERT(handle->lgh_obj);
881 return (dt_object_exists(handle->lgh_obj) &&
882 !lu_object_is_dying(handle->lgh_obj->do_lu.lo_header));
885 static int llog_osd_declare_create(const struct lu_env *env,
886 struct llog_handle *res, struct thandle *th)
888 struct llog_thread_info *lgi = llog_info(env);
889 struct local_oid_storage *los;
895 LASSERT(res->lgh_obj);
898 /* object can be created by another thread */
900 if (dt_object_exists(o))
903 los = res->private_data;
906 rc = llog_osd_declare_new_object(env, los, o, th);
910 rc = dt_declare_record_write(env, o, LLOG_CHUNK_SIZE, 0, th);
915 struct dt_object *llog_dir;
917 llog_dir = llog_osd_dir_get(env, res->lgh_ctxt);
918 if (IS_ERR(llog_dir))
919 RETURN(PTR_ERR(llog_dir));
920 dt_declare_ref_add(env, o, th);
921 logid_to_fid(&res->lgh_id, &lgi->lgi_fid);
922 rc = dt_declare_insert(env, llog_dir,
923 (struct dt_rec *)&lgi->lgi_fid,
924 (struct dt_key *)res->lgh_name, th);
925 lu_object_put(env, &llog_dir->do_lu);
927 CERROR("%s: can't declare named llog %s: rc = %d\n",
928 o->do_lu.lo_dev->ld_obd->obd_name,
934 /* This is a callback from the llog_* functions.
935 * Assumes caller has already pushed us into the kernel context. */
936 static int llog_osd_create(const struct lu_env *env, struct llog_handle *res,
939 struct llog_thread_info *lgi = llog_info(env);
940 struct local_oid_storage *los;
950 /* llog can be already created */
951 if (dt_object_exists(o))
954 los = res->private_data;
957 dt_write_lock(env, o, 0);
958 if (!dt_object_exists(o))
959 rc = llog_osd_create_new_object(env, los, o, th);
963 dt_ref_add(env, o, th);
964 dt_write_unlock(env, o);
969 struct dt_object *llog_dir;
971 llog_dir = llog_osd_dir_get(env, res->lgh_ctxt);
972 if (IS_ERR(llog_dir))
973 RETURN(PTR_ERR(llog_dir));
975 logid_to_fid(&res->lgh_id, &lgi->lgi_fid);
976 dt_read_lock(env, llog_dir, 0);
977 rc = dt_insert(env, llog_dir,
978 (struct dt_rec *)&lgi->lgi_fid,
979 (struct dt_key *)res->lgh_name,
981 dt_read_unlock(env, llog_dir);
982 lu_object_put(env, &llog_dir->do_lu);
984 CERROR("%s: can't create named llog %s: rc = %d\n",
985 o->do_lu.lo_dev->ld_obd->obd_name,
991 static int llog_osd_close(const struct lu_env *env, struct llog_handle *handle)
993 struct local_oid_storage *los;
998 LASSERT(handle->lgh_obj);
1000 lu_object_put(env, &handle->lgh_obj->do_lu);
1002 los = handle->private_data;
1006 if (handle->lgh_name)
1007 OBD_FREE(handle->lgh_name, strlen(handle->lgh_name) + 1);
1012 static int llog_osd_destroy(const struct lu_env *env,
1013 struct llog_handle *loghandle)
1015 struct llog_thread_info *lgi = llog_info(env);
1016 struct llog_ctxt *ctxt;
1017 struct dt_object *o, *llog_dir = NULL;
1018 struct dt_device *d;
1025 ctxt = loghandle->lgh_ctxt;
1028 o = loghandle->lgh_obj;
1031 d = lu2dt_dev(o->do_lu.lo_dev);
1033 LASSERT(d == ctxt->loc_exp->exp_obd->obd_lvfs_ctxt.dt);
1035 th = dt_trans_create(env, d);
1037 RETURN(PTR_ERR(th));
1039 if (loghandle->lgh_name) {
1040 llog_dir = llog_osd_dir_get(env, ctxt);
1041 if (IS_ERR(llog_dir))
1042 GOTO(out_trans, rc = PTR_ERR(llog_dir));
1044 dt_declare_ref_del(env, o, th);
1045 name = loghandle->lgh_name;
1046 rc = dt_declare_delete(env, llog_dir,
1047 (struct dt_key *)name, th);
1049 GOTO(out_trans, rc);
1052 dt_declare_ref_del(env, o, th);
1054 rc = dt_declare_destroy(env, o, th);
1056 GOTO(out_trans, rc);
1058 rc = dt_trans_start_local(env, d, th);
1060 GOTO(out_trans, rc);
1062 dt_write_lock(env, o, 0);
1063 if (dt_object_exists(o)) {
1065 dt_ref_del(env, o, th);
1066 dt_read_lock(env, llog_dir, 0);
1067 rc = dt_delete(env, llog_dir,
1068 (struct dt_key *) name,
1070 dt_read_unlock(env, llog_dir);
1072 CERROR("%s: can't remove llog %s: rc = %d\n",
1073 o->do_lu.lo_dev->ld_obd->obd_name,
1075 GOTO(out_unlock, rc);
1079 * XXX: compatibility bits
1080 * on old filesystems llogs are referenced by the name
1081 * on the new ones they are referenced by OI and by
1084 rc = dt_attr_get(env, o, &lgi->lgi_attr, NULL);
1086 GOTO(out_unlock, rc);
1087 LASSERT(lgi->lgi_attr.la_nlink < 2);
1088 if (lgi->lgi_attr.la_nlink == 1)
1089 dt_ref_del(env, o, th);
1090 rc = dt_destroy(env, o, th);
1092 GOTO(out_unlock, rc);
1095 dt_write_unlock(env, o);
1097 dt_trans_stop(env, d, th);
1098 if (llog_dir != NULL)
1099 lu_object_put(env, &llog_dir->do_lu);
1103 static int llog_osd_setup(const struct lu_env *env, struct obd_device *obd,
1104 struct obd_llog_group *olg, int ctxt_idx,
1105 struct obd_device *disk_obd)
1107 struct local_oid_storage *los;
1108 struct llog_thread_info *lgi = llog_info(env);
1109 struct llog_ctxt *ctxt;
1115 LASSERT(olg->olg_ctxts[ctxt_idx]);
1117 ctxt = llog_ctxt_get(olg->olg_ctxts[ctxt_idx]);
1120 /* initialize data allowing to generate new fids,
1121 * literally we need a sequece */
1122 lgi->lgi_fid.f_seq = FID_SEQ_LLOG;
1123 lgi->lgi_fid.f_oid = 1;
1124 lgi->lgi_fid.f_ver = 0;
1125 rc = local_oid_storage_init(env, disk_obd->obd_lvfs_ctxt.dt,
1126 &lgi->lgi_fid, &los);
1127 llog_ctxt_put(ctxt);
1131 static int llog_osd_cleanup(const struct lu_env *env, struct llog_ctxt *ctxt)
1133 struct dt_device *dt;
1134 struct ls_device *ls;
1135 struct local_oid_storage *los;
1137 LASSERT(ctxt->loc_exp->exp_obd);
1138 dt = ctxt->loc_exp->exp_obd->obd_lvfs_ctxt.dt;
1139 ls = ls_device_get(dt);
1141 RETURN(PTR_ERR(ls));
1143 mutex_lock(&ls->ls_los_mutex);
1144 los = dt_los_find(ls, FID_SEQ_LLOG);
1145 mutex_unlock(&ls->ls_los_mutex);
1148 local_oid_storage_fini(env, los);
1150 ls_device_put(env, ls);
1154 struct llog_operations llog_osd_ops = {
1155 .lop_next_block = llog_osd_next_block,
1156 .lop_prev_block = llog_osd_prev_block,
1157 .lop_read_header = llog_osd_read_header,
1158 .lop_destroy = llog_osd_destroy,
1159 .lop_setup = llog_osd_setup,
1160 .lop_cleanup = llog_osd_cleanup,
1161 .lop_open = llog_osd_open,
1162 .lop_exist = llog_osd_exist,
1163 .lop_declare_create = llog_osd_declare_create,
1164 .lop_create = llog_osd_create,
1165 .lop_declare_write_rec = llog_osd_declare_write_rec,
1166 .lop_write_rec = llog_osd_write_rec,
1167 .lop_close = llog_osd_close,
1169 EXPORT_SYMBOL(llog_osd_ops);
1171 /* reads the catalog list */
1172 int llog_osd_get_cat_list(const struct lu_env *env, struct dt_device *d,
1173 int idx, int count, struct llog_catid *idarray)
1175 struct llog_thread_info *lgi = llog_info(env);
1176 struct dt_object *o = NULL;
1184 size = sizeof(*idarray) * count;
1185 lgi->lgi_off = idx * sizeof(*idarray);
1187 lu_local_obj_fid(&lgi->lgi_fid, LLOG_CATALOGS_OID);
1189 o = dt_locate(env, d, &lgi->lgi_fid);
1193 if (!dt_object_exists(o)) {
1194 th = dt_trans_create(env, d);
1196 GOTO(out, rc = PTR_ERR(th));
1198 lgi->lgi_attr.la_valid = LA_MODE;
1199 lgi->lgi_attr.la_mode = S_IFREG | S_IRUGO | S_IWUSR;
1200 lgi->lgi_dof.dof_type = dt_mode_to_dft(S_IFREG);
1202 rc = dt_declare_create(env, o, &lgi->lgi_attr, NULL,
1205 GOTO(out_trans, rc);
1207 rc = dt_trans_start_local(env, d, th);
1209 GOTO(out_trans, rc);
1211 dt_write_lock(env, o, 0);
1212 if (!dt_object_exists(o))
1213 rc = dt_create(env, o, &lgi->lgi_attr, NULL,
1215 dt_write_unlock(env, o);
1217 dt_trans_stop(env, d, th);
1222 rc = dt_attr_get(env, o, &lgi->lgi_attr, BYPASS_CAPA);
1226 if (!S_ISREG(lgi->lgi_attr.la_mode)) {
1227 CERROR("%s: CATALOGS is not a regular file!: mode = %o\n",
1228 o->do_lu.lo_dev->ld_obd->obd_name,
1229 lgi->lgi_attr.la_mode);
1230 GOTO(out, rc = -ENOENT);
1233 CDEBUG(D_CONFIG, "cat list: disk size=%d, read=%d\n",
1234 (int)lgi->lgi_attr.la_size, size);
1236 /* return just number of llogs */
1237 if (idarray == NULL) {
1238 rc = lgi->lgi_attr.la_size / sizeof(*idarray);
1242 /* read for new ost index or for empty file */
1243 memset(idarray, 0, size);
1244 if (lgi->lgi_attr.la_size < lgi->lgi_off + size)
1246 if (lgi->lgi_attr.la_size < lgi->lgi_off + size)
1247 size = lgi->lgi_attr.la_size - lgi->lgi_off;
1249 lgi->lgi_buf.lb_buf = idarray;
1250 lgi->lgi_buf.lb_len = size;
1251 rc = dt_record_read(env, o, &lgi->lgi_buf, &lgi->lgi_off);
1253 CERROR("%s: error reading CATALOGS: rc = %d\n",
1254 o->do_lu.lo_dev->ld_obd->obd_name, rc);
1260 lu_object_put(env, &o->do_lu);
1263 EXPORT_SYMBOL(llog_osd_get_cat_list);
1265 /* writes the cat list */
1266 int llog_osd_put_cat_list(const struct lu_env *env, struct dt_device *d,
1267 int idx, int count, struct llog_catid *idarray)
1269 struct llog_thread_info *lgi = llog_info(env);
1270 struct dt_object *o = NULL;
1279 size = sizeof(*idarray) * count;
1280 lgi->lgi_off = idx * sizeof(*idarray);
1282 lu_local_obj_fid(&lgi->lgi_fid, LLOG_CATALOGS_OID);
1284 o = dt_locate(env, d, &lgi->lgi_fid);
1288 if (!dt_object_exists(o))
1289 GOTO(out, rc = -ENOENT);
1291 rc = dt_attr_get(env, o, &lgi->lgi_attr, BYPASS_CAPA);
1295 if (!S_ISREG(lgi->lgi_attr.la_mode)) {
1296 CERROR("%s: CATALOGS is not a regular file!: mode = %o\n",
1297 o->do_lu.lo_dev->ld_obd->obd_name,
1298 lgi->lgi_attr.la_mode);
1299 GOTO(out, rc = -ENOENT);
1302 th = dt_trans_create(env, d);
1304 GOTO(out, rc = PTR_ERR(th));
1306 rc = dt_declare_record_write(env, o, size, lgi->lgi_off, th);
1310 rc = dt_trans_start_local(env, d, th);
1312 GOTO(out_trans, rc);
1314 lgi->lgi_buf.lb_buf = idarray;
1315 lgi->lgi_buf.lb_len = size;
1316 rc = dt_record_write(env, o, &lgi->lgi_buf, &lgi->lgi_off, th);
1318 CDEBUG(D_INODE, "error writeing CATALOGS: rc = %d\n", rc);
1320 dt_trans_stop(env, d, th);
1322 lu_object_put(env, &o->do_lu);
1325 EXPORT_SYMBOL(llog_osd_put_cat_list);