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) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
28 * Use is subject to license terms.
31 * This file is part of Lustre, http://www.lustre.org/
32 * Lustre is a trademark of Sun Microsystems, Inc.
34 * lustre/obdclass/llog_lvfs.c
36 * OST<->MDS recovery logging infrastructure.
37 * Invariants in implementation:
38 * - we do not share logs among different OST<->MDS connections, so that
39 * if an OST or MDS fails it need only look at log(s) relevant to itself
41 * Author: Andreas Dilger <adilger@clusterfs.com>
44 #define DEBUG_SUBSYSTEM S_LOG
47 #include <liblustre.h>
51 #include <obd_class.h>
52 #include <lustre_log.h>
54 #include <libcfs/list.h>
56 #include <lustre_fsfilt.h>
57 #include <lustre_disk.h>
58 #include "llog_internal.h"
60 #if defined(__KERNEL__) && defined(LLOG_LVFS)
62 static int llog_lvfs_pad(struct obd_device *obd, struct l_file *file,
65 struct llog_rec_hdr rec = { 0 };
66 struct llog_rec_tail tail;
70 LASSERT(len >= LLOG_MIN_REC_SIZE && (len & 0x7) == 0);
72 tail.lrt_len = rec.lrh_len = len;
73 tail.lrt_index = rec.lrh_index = index;
74 rec.lrh_type = LLOG_PAD_MAGIC;
76 rc = fsfilt_write_record(obd, file, &rec, sizeof(rec), &file->f_pos, 0);
78 CERROR("error writing padding record: rc %d\n", rc);
82 file->f_pos += len - sizeof(rec) - sizeof(tail);
83 rc = fsfilt_write_record(obd, file, &tail, sizeof(tail),&file->f_pos,0);
85 CERROR("error writing padding record: rc %d\n", rc);
93 static int llog_lvfs_write_blob(struct obd_device *obd, struct l_file *file,
94 struct llog_rec_hdr *rec, void *buf, loff_t off)
97 struct llog_rec_tail end;
98 loff_t saved_off = file->f_pos;
99 int buflen = rec->lrh_len;
106 CWARN("0-length record\n");
109 rc = fsfilt_write_record(obd, file, rec, buflen,&file->f_pos,0);
111 CERROR("error writing log record: rc %d\n", rc);
118 rec->lrh_len = sizeof(*rec) + buflen + sizeof(end);
119 rc = fsfilt_write_record(obd, file, rec, sizeof(*rec), &file->f_pos, 0);
121 CERROR("error writing log hdr: rc %d\n", rc);
125 rc = fsfilt_write_record(obd, file, buf, buflen, &file->f_pos, 0);
127 CERROR("error writing log buffer: rc %d\n", rc);
131 end.lrt_len = rec->lrh_len;
132 end.lrt_index = rec->lrh_index;
133 rc = fsfilt_write_record(obd, file, &end, sizeof(end), &file->f_pos, 0);
135 CERROR("error writing log tail: rc %d\n", rc);
141 if (saved_off > file->f_pos)
142 file->f_pos = saved_off;
147 static int llog_lvfs_read_blob(struct obd_device *obd, struct l_file *file,
148 void *buf, int size, loff_t off)
154 rc = fsfilt_read_record(obd, file, buf, size, &offset);
156 CERROR("error reading log record: rc %d\n", rc);
162 static int llog_lvfs_read_header(const struct lu_env *env,
163 struct llog_handle *handle)
165 struct obd_device *obd;
169 LASSERT(sizeof(*handle->lgh_hdr) == LLOG_CHUNK_SIZE);
171 obd = handle->lgh_ctxt->loc_exp->exp_obd;
173 if (i_size_read(handle->lgh_file->f_dentry->d_inode) == 0) {
174 CDEBUG(D_HA, "not reading header from 0-byte log\n");
178 rc = llog_lvfs_read_blob(obd, handle->lgh_file, handle->lgh_hdr,
181 CERROR("error reading log header from %.*s\n",
182 handle->lgh_file->f_dentry->d_name.len,
183 handle->lgh_file->f_dentry->d_name.name);
185 struct llog_rec_hdr *llh_hdr = &handle->lgh_hdr->llh_hdr;
187 if (LLOG_REC_HDR_NEEDS_SWABBING(llh_hdr))
188 lustre_swab_llog_hdr(handle->lgh_hdr);
190 if (llh_hdr->lrh_type != LLOG_HDR_MAGIC) {
191 CERROR("bad log %.*s header magic: %#x (expected %#x)\n",
192 handle->lgh_file->f_dentry->d_name.len,
193 handle->lgh_file->f_dentry->d_name.name,
194 llh_hdr->lrh_type, LLOG_HDR_MAGIC);
196 } else if (llh_hdr->lrh_len != LLOG_CHUNK_SIZE) {
197 CERROR("incorrectly sized log %.*s header: %#x "
199 handle->lgh_file->f_dentry->d_name.len,
200 handle->lgh_file->f_dentry->d_name.name,
201 llh_hdr->lrh_len, LLOG_CHUNK_SIZE);
202 CERROR("you may need to re-run lconf --write_conf.\n");
207 handle->lgh_last_idx = handle->lgh_hdr->llh_tail.lrt_index;
208 handle->lgh_file->f_pos = i_size_read(handle->lgh_file->f_dentry->d_inode);
213 /* returns negative in on error; 0 if success && reccookie == 0; 1 otherwise */
214 /* appends if idx == -1, otherwise overwrites record idx. */
215 static int llog_lvfs_write_rec(const struct lu_env *env,
216 struct llog_handle *loghandle,
217 struct llog_rec_hdr *rec,
218 struct llog_cookie *reccookie, int cookiecount,
219 void *buf, int idx, struct thandle *th)
221 struct llog_log_hdr *llh;
222 int reclen = rec->lrh_len, index, rc;
223 struct llog_rec_tail *lrt;
224 struct obd_device *obd;
229 llh = loghandle->lgh_hdr;
230 file = loghandle->lgh_file;
231 obd = loghandle->lgh_ctxt->loc_exp->exp_obd;
233 /* record length should not bigger than LLOG_CHUNK_SIZE */
235 rc = (reclen > LLOG_CHUNK_SIZE - sizeof(struct llog_rec_hdr) -
236 sizeof(struct llog_rec_tail)) ? -E2BIG : 0;
238 rc = (reclen > LLOG_CHUNK_SIZE) ? -E2BIG : 0;
243 /* write_blob adds header and tail to lrh_len. */
244 reclen = sizeof(*rec) + rec->lrh_len +
245 sizeof(struct llog_rec_tail);
250 /* no header: only allowed to insert record 1 */
251 if (idx != 1 && !i_size_read(file->f_dentry->d_inode)) {
252 CERROR("idx != -1 in empty log\n");
256 if (idx && llh->llh_size && llh->llh_size != rec->lrh_len)
259 if (!ext2_test_bit(idx, llh->llh_bitmap))
260 CERROR("Modify unset record %u\n", idx);
261 if (idx != rec->lrh_index)
262 CERROR("Index mismatch %d %u\n", idx, rec->lrh_index);
264 rc = llog_lvfs_write_blob(obd, file, &llh->llh_hdr, NULL, 0);
265 /* we are done if we only write the header or on error */
270 /* We assume that caller has set lgh_cur_* */
271 saved_offset = loghandle->lgh_cur_offset;
273 "modify record "LPX64": idx:%d/%u/%d, len:%u "
275 loghandle->lgh_id.lgl_oid, idx, rec->lrh_index,
276 loghandle->lgh_cur_idx, rec->lrh_len,
277 (long long)(saved_offset - sizeof(*llh)));
278 if (rec->lrh_index != loghandle->lgh_cur_idx) {
279 CERROR("modify idx mismatch %u/%d\n",
280 idx, loghandle->lgh_cur_idx);
284 /* Assumes constant lrh_len */
285 saved_offset = sizeof(*llh) + (idx - 1) * reclen;
288 rc = llog_lvfs_write_blob(obd, file, rec, buf, saved_offset);
289 if (rc == 0 && reccookie) {
290 reccookie->lgc_lgl = loghandle->lgh_id;
291 reccookie->lgc_index = idx;
297 /* Make sure that records don't cross a chunk boundary, so we can
298 * process them page-at-a-time if needed. If it will cross a chunk
299 * boundary, write in a fake (but referenced) entry to pad the chunk.
301 * We know that llog_current_log() will return a loghandle that is
302 * big enough to hold reclen, so all we care about is padding here.
304 left = LLOG_CHUNK_SIZE - (file->f_pos & (LLOG_CHUNK_SIZE - 1));
306 /* NOTE: padding is a record, but no bit is set */
307 if (left != 0 && left != reclen &&
308 left < (reclen + LLOG_MIN_REC_SIZE)) {
309 index = loghandle->lgh_last_idx + 1;
310 rc = llog_lvfs_pad(obd, file, left, index);
313 loghandle->lgh_last_idx++; /*for pad rec*/
315 /* if it's the last idx in log file, then return -ENOSPC */
316 if (loghandle->lgh_last_idx >= LLOG_BITMAP_SIZE(llh) - 1)
318 loghandle->lgh_last_idx++;
319 index = loghandle->lgh_last_idx;
320 LASSERT(index < LLOG_BITMAP_SIZE(llh));
321 rec->lrh_index = index;
323 lrt = (struct llog_rec_tail *)
324 ((char *)rec + rec->lrh_len - sizeof(*lrt));
325 lrt->lrt_len = rec->lrh_len;
326 lrt->lrt_index = rec->lrh_index;
328 /*The caller should make sure only 1 process access the lgh_last_idx,
329 *Otherwise it might hit the assert.*/
330 LASSERT(index < LLOG_BITMAP_SIZE(llh));
331 spin_lock(&loghandle->lgh_hdr_lock);
332 if (ext2_set_bit(index, llh->llh_bitmap)) {
333 CERROR("argh, index %u already set in log bitmap?\n", index);
334 spin_unlock(&loghandle->lgh_hdr_lock);
335 LBUG(); /* should never happen */
338 spin_unlock(&loghandle->lgh_hdr_lock);
339 llh->llh_tail.lrt_index = index;
341 rc = llog_lvfs_write_blob(obd, file, &llh->llh_hdr, NULL, 0);
345 rc = llog_lvfs_write_blob(obd, file, rec, buf, file->f_pos);
349 CDEBUG(D_RPCTRACE, "added record "LPX64": idx: %u, %u \n",
350 loghandle->lgh_id.lgl_oid, index, rec->lrh_len);
351 if (rc == 0 && reccookie) {
352 reccookie->lgc_lgl = loghandle->lgh_id;
353 reccookie->lgc_index = index;
354 if ((rec->lrh_type == MDS_UNLINK_REC) ||
355 (rec->lrh_type == MDS_SETATTR64_REC))
356 reccookie->lgc_subsys = LLOG_MDS_OST_ORIG_CTXT;
357 else if (rec->lrh_type == OST_SZ_REC)
358 reccookie->lgc_subsys = LLOG_SIZE_ORIG_CTXT;
360 reccookie->lgc_subsys = -1;
363 if (rc == 0 && rec->lrh_type == LLOG_GEN_REC)
369 /* We can skip reading at least as many log blocks as the number of
370 * minimum sized log records we are skipping. If it turns out
371 * that we are not far enough along the log (because the
372 * actual records are larger than minimum size) we just skip
373 * some more records. */
375 static void llog_skip_over(__u64 *off, int curr, int goal)
379 *off = (*off + (goal-curr-1) * LLOG_MIN_REC_SIZE) &
380 ~(LLOG_CHUNK_SIZE - 1);
385 * - cur_offset to the furthest point read in the log file
386 * - cur_idx to the log index preceeding cur_offset
387 * returns -EIO/-EINVAL on error
389 static int llog_lvfs_next_block(const struct lu_env *env,
390 struct llog_handle *loghandle, int *cur_idx,
391 int next_idx, __u64 *cur_offset, void *buf,
397 if (len == 0 || len & (LLOG_CHUNK_SIZE - 1))
400 CDEBUG(D_OTHER, "looking for log index %u (cur idx %u off "LPU64")\n",
401 next_idx, *cur_idx, *cur_offset);
403 while (*cur_offset < i_size_read(loghandle->lgh_file->f_dentry->d_inode)) {
404 struct llog_rec_hdr *rec, *last_rec;
405 struct llog_rec_tail *tail;
409 llog_skip_over(cur_offset, *cur_idx, next_idx);
411 /* read up to next LLOG_CHUNK_SIZE block */
413 llen = LLOG_CHUNK_SIZE - (*cur_offset & (LLOG_CHUNK_SIZE - 1));
414 rc = fsfilt_read_record(loghandle->lgh_ctxt->loc_exp->exp_obd,
415 loghandle->lgh_file, buf, llen,
418 CERROR("Cant read llog block at log id "LPU64
419 "/%u offset "LPU64"\n",
420 loghandle->lgh_id.lgl_oid,
421 loghandle->lgh_id.lgl_ogen,
426 /* put number of bytes read into rc to make code simpler */
427 rc = *cur_offset - ppos;
429 /* signal the end of the valid buffer to llog_process */
430 memset(buf + rc, 0, len - rc);
433 if (rc == 0) /* end of file, nothing to do */
436 if (rc < sizeof(*tail)) {
437 CERROR("Invalid llog block at log id "LPU64"/%u offset "
438 LPU64"\n", loghandle->lgh_id.lgl_oid,
439 loghandle->lgh_id.lgl_ogen, *cur_offset);
444 if (LLOG_REC_HDR_NEEDS_SWABBING(rec))
445 lustre_swab_llog_rec(rec);
447 tail = (struct llog_rec_tail *)(buf + rc -
448 sizeof(struct llog_rec_tail));
450 /* get the last record in block */
451 last_rec = (struct llog_rec_hdr *)(buf + rc -
452 le32_to_cpu(tail->lrt_len));
454 if (LLOG_REC_HDR_NEEDS_SWABBING(last_rec))
455 lustre_swab_llog_rec(last_rec);
456 LASSERT(last_rec->lrh_index == tail->lrt_index);
458 *cur_idx = tail->lrt_index;
460 /* this shouldn't happen */
461 if (tail->lrt_index == 0) {
462 CERROR("Invalid llog tail at log id "LPU64"/%u offset "
463 LPU64"\n", loghandle->lgh_id.lgl_oid,
464 loghandle->lgh_id.lgl_ogen, *cur_offset);
467 if (tail->lrt_index < next_idx)
470 /* sanity check that the start of the new buffer is no farther
471 * than the record that we wanted. This shouldn't happen. */
472 if (rec->lrh_index > next_idx) {
473 CERROR("missed desired record? %u > %u\n",
474 rec->lrh_index, next_idx);
482 static int llog_lvfs_prev_block(const struct lu_env *env,
483 struct llog_handle *loghandle,
484 int prev_idx, void *buf, int len)
490 if (len == 0 || len & (LLOG_CHUNK_SIZE - 1))
493 CDEBUG(D_OTHER, "looking for log index %u\n", prev_idx);
495 cur_offset = LLOG_CHUNK_SIZE;
496 llog_skip_over(&cur_offset, 0, prev_idx);
498 while (cur_offset < i_size_read(loghandle->lgh_file->f_dentry->d_inode)) {
499 struct llog_rec_hdr *rec, *last_rec;
500 struct llog_rec_tail *tail;
501 loff_t ppos = cur_offset;
503 rc = fsfilt_read_record(loghandle->lgh_ctxt->loc_exp->exp_obd,
504 loghandle->lgh_file, buf, len,
507 CERROR("Cant read llog block at log id "LPU64
508 "/%u offset "LPU64"\n",
509 loghandle->lgh_id.lgl_oid,
510 loghandle->lgh_id.lgl_ogen,
515 /* put number of bytes read into rc to make code simpler */
516 rc = cur_offset - ppos;
518 if (rc == 0) /* end of file, nothing to do */
521 if (rc < sizeof(*tail)) {
522 CERROR("Invalid llog block at log id "LPU64"/%u offset "
523 LPU64"\n", loghandle->lgh_id.lgl_oid,
524 loghandle->lgh_id.lgl_ogen, cur_offset);
529 if (LLOG_REC_HDR_NEEDS_SWABBING(rec))
530 lustre_swab_llog_rec(rec);
532 tail = (struct llog_rec_tail *)(buf + rc -
533 sizeof(struct llog_rec_tail));
535 /* get the last record in block */
536 last_rec = (struct llog_rec_hdr *)(buf + rc -
537 le32_to_cpu(tail->lrt_len));
539 if (LLOG_REC_HDR_NEEDS_SWABBING(last_rec))
540 lustre_swab_llog_rec(last_rec);
541 LASSERT(last_rec->lrh_index == tail->lrt_index);
543 /* this shouldn't happen */
544 if (tail->lrt_index == 0) {
545 CERROR("Invalid llog tail at log id "LPU64"/%u offset "
546 LPU64"\n", loghandle->lgh_id.lgl_oid,
547 loghandle->lgh_id.lgl_ogen, cur_offset);
550 if (tail->lrt_index < prev_idx)
553 /* sanity check that the start of the new buffer is no farther
554 * than the record that we wanted. This shouldn't happen. */
555 if (rec->lrh_index > prev_idx) {
556 CERROR("missed desired record? %u > %u\n",
557 rec->lrh_index, prev_idx);
565 static struct file *llog_filp_open(char *dir, char *name, int flags, int mode)
571 OBD_ALLOC(logname, PATH_MAX);
573 return ERR_PTR(-ENOMEM);
575 len = snprintf(logname, PATH_MAX, "%s/%s", dir, name);
576 if (len >= PATH_MAX - 1) {
577 filp = ERR_PTR(-ENAMETOOLONG);
579 filp = l_filp_open(logname, flags, mode);
580 if (IS_ERR(filp) && PTR_ERR(filp) != -ENOENT)
581 CERROR("logfile creation %s: %ld\n", logname,
584 OBD_FREE(logname, PATH_MAX);
588 static int llog_lvfs_open(const struct lu_env *env, struct llog_handle *handle,
589 struct llog_logid *logid, char *name,
590 enum llog_open_param open_param)
592 struct llog_ctxt *ctxt = handle->lgh_ctxt;
593 struct l_dentry *dchild = NULL;
594 struct obd_device *obd;
600 LASSERT(ctxt->loc_exp);
601 LASSERT(ctxt->loc_exp->exp_obd);
602 obd = ctxt->loc_exp->exp_obd;
606 dchild = obd_lvfs_fid2dentry(ctxt->loc_exp, logid->lgl_oid,
607 logid->lgl_ogen, logid->lgl_oseq);
608 if (IS_ERR(dchild)) {
609 rc = PTR_ERR(dchild);
610 CERROR("%s: error looking up logfile #"LPX64"#"
611 LPX64"#%08x: rc = %d\n",
612 ctxt->loc_obd->obd_name, logid->lgl_oid,
613 logid->lgl_oseq, logid->lgl_ogen, rc);
616 if (dchild->d_inode == NULL) {
619 CERROR("%s: nonexistent llog #"LPX64"#"LPX64"#%08x: "
620 "rc = %d\n", ctxt->loc_obd->obd_name,
621 logid->lgl_oid, logid->lgl_oseq,
622 logid->lgl_ogen, rc);
625 /* l_dentry_open will call dput(dchild) if there is an error */
626 handle->lgh_file = l_dentry_open(&obd->obd_lvfs_ctxt, dchild,
627 O_RDWR | O_LARGEFILE);
628 if (IS_ERR(handle->lgh_file)) {
629 rc = PTR_ERR(handle->lgh_file);
630 handle->lgh_file = NULL;
631 CERROR("%s: error opening llog #"LPX64"#"LPX64"#%08x: "
632 "rc = %d\n", ctxt->loc_obd->obd_name,
633 logid->lgl_oid, logid->lgl_oseq,
634 logid->lgl_ogen, rc);
637 handle->lgh_id = *logid;
639 handle->lgh_file = llog_filp_open(MOUNT_CONFIGS_DIR, name,
640 O_RDWR | O_LARGEFILE, 0644);
641 if (IS_ERR(handle->lgh_file)) {
642 rc = PTR_ERR(handle->lgh_file);
643 handle->lgh_file = NULL;
644 if (rc == -ENOENT && open_param == LLOG_OPEN_NEW) {
645 OBD_ALLOC(handle->lgh_name, strlen(name) + 1);
646 if (handle->lgh_name)
647 strcpy(handle->lgh_name, name);
649 GOTO(out, rc = -ENOMEM);
655 handle->lgh_id.lgl_oseq = FID_SEQ_LLOG;
656 handle->lgh_id.lgl_oid =
657 handle->lgh_file->f_dentry->d_inode->i_ino;
658 handle->lgh_id.lgl_ogen =
659 handle->lgh_file->f_dentry->d_inode->i_generation;
662 LASSERTF(open_param == LLOG_OPEN_NEW, "%#x\n", open_param);
663 handle->lgh_file = NULL;
666 /* No new llog is expected but doesn't exist */
667 if (open_param != LLOG_OPEN_NEW && handle->lgh_file == NULL)
668 GOTO(out_name, rc = -ENOENT);
672 if (handle->lgh_name != NULL)
673 OBD_FREE(handle->lgh_name, strlen(name) + 1);
678 static int llog_lvfs_exist(struct llog_handle *handle)
680 return (handle->lgh_file != NULL);
683 /* This is a callback from the llog_* functions.
684 * Assumes caller has already pushed us into the kernel context. */
685 static int llog_lvfs_create(const struct lu_env *env,
686 struct llog_handle *handle,
689 struct llog_ctxt *ctxt = handle->lgh_ctxt;
690 struct obd_device *obd;
691 struct l_dentry *dchild = NULL;
693 struct obdo *oa = NULL;
695 int open_flags = O_RDWR | O_CREAT | O_LARGEFILE;
700 LASSERT(ctxt->loc_exp);
701 obd = ctxt->loc_exp->exp_obd;
702 LASSERT(handle->lgh_file == NULL);
704 if (handle->lgh_name) {
705 file = llog_filp_open(MOUNT_CONFIGS_DIR, handle->lgh_name,
708 RETURN(PTR_ERR(file));
710 handle->lgh_id.lgl_oseq = FID_SEQ_LLOG;
711 handle->lgh_id.lgl_oid = file->f_dentry->d_inode->i_ino;
712 handle->lgh_id.lgl_ogen =
713 file->f_dentry->d_inode->i_generation;
714 handle->lgh_file = file;
720 oa->o_seq = FID_SEQ_LLOG;
721 oa->o_valid = OBD_MD_FLGENER | OBD_MD_FLGROUP;
723 rc = obd_create(NULL, ctxt->loc_exp, oa, NULL, NULL);
727 /* FIXME: rationalize the misuse of o_generation in
728 * this API along with mds_obd_{create,destroy}.
729 * Hopefully it is only an internal API issue. */
730 #define o_generation o_parent_oid
731 dchild = obd_lvfs_fid2dentry(ctxt->loc_exp, oa->o_id,
732 oa->o_generation, oa->o_seq);
734 GOTO(out, rc = PTR_ERR(dchild));
736 file = l_dentry_open(&obd->obd_lvfs_ctxt, dchild, open_flags);
738 GOTO(out, rc = PTR_ERR(file));
739 handle->lgh_id.lgl_oseq = oa->o_seq;
740 handle->lgh_id.lgl_oid = oa->o_id;
741 handle->lgh_id.lgl_ogen = oa->o_generation;
742 handle->lgh_file = file;
749 static int llog_lvfs_close(const struct lu_env *env,
750 struct llog_handle *handle)
756 if (handle->lgh_file == NULL)
758 rc = filp_close(handle->lgh_file, 0);
760 CERROR("%s: error closing llog #"LPX64"#"LPX64"#%08x: "
761 "rc = %d\n", handle->lgh_ctxt->loc_obd->obd_name,
762 handle->lgh_id.lgl_oid, handle->lgh_id.lgl_oseq,
763 handle->lgh_id.lgl_ogen, rc);
764 handle->lgh_file = NULL;
765 if (handle->lgh_name) {
766 OBD_FREE(handle->lgh_name, strlen(handle->lgh_name) + 1);
767 handle->lgh_name = NULL;
772 static int llog_lvfs_destroy(const struct lu_env *env,
773 struct llog_handle *handle)
775 struct dentry *fdentry;
777 struct obd_device *obd = handle->lgh_ctxt->loc_exp->exp_obd;
784 dir = MOUNT_CONFIGS_DIR;
786 LASSERT(handle->lgh_file);
787 fdentry = handle->lgh_file->f_dentry;
788 inode = fdentry->d_parent->d_inode;
789 if (strcmp(fdentry->d_parent->d_name.name, dir) == 0) {
790 struct lvfs_run_ctxt saved;
791 struct vfsmount *mnt = mntget(handle->lgh_file->f_vfsmnt);
793 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
795 rc = llog_lvfs_close(env, handle);
797 mutex_lock_nested(&inode->i_mutex, I_MUTEX_PARENT);
798 rc = ll_vfs_unlink(inode, fdentry, mnt);
799 mutex_unlock(&inode->i_mutex);
804 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
812 oa->o_id = handle->lgh_id.lgl_oid;
813 oa->o_seq = handle->lgh_id.lgl_oseq;
814 oa->o_generation = handle->lgh_id.lgl_ogen;
816 oa->o_valid = OBD_MD_FLID | OBD_MD_FLGROUP | OBD_MD_FLGENER;
818 rc = llog_lvfs_close(env, handle);
822 th = fsfilt_start_log(obd, inode, FSFILT_OP_UNLINK, NULL, 1);
824 CERROR("fsfilt_start failed: %ld\n", PTR_ERR(th));
825 GOTO(out, rc = PTR_ERR(th));
828 rc = obd_destroy(NULL, handle->lgh_ctxt->loc_exp, oa,
829 NULL, NULL, NULL, NULL);
831 rc1 = fsfilt_commit(obd, inode, th, 0);
832 if (rc == 0 && rc1 != 0)
839 /* reads the catalog list */
840 int llog_get_cat_list(struct obd_device *disk_obd,
841 char *name, int idx, int count, struct llog_catid *idarray)
843 struct lvfs_run_ctxt saved;
846 int size = sizeof(*idarray) * count;
847 loff_t off = idx * sizeof(*idarray);
853 push_ctxt(&saved, &disk_obd->obd_lvfs_ctxt, NULL);
854 file = filp_open(name, O_RDWR | O_CREAT | O_LARGEFILE, 0700);
855 if (!file || IS_ERR(file)) {
857 CERROR("OBD filter: cannot open/create %s: rc = %d\n",
862 if (!S_ISREG(file->f_dentry->d_inode->i_mode)) {
863 CERROR("%s is not a regular file!: mode = %o\n", name,
864 file->f_dentry->d_inode->i_mode);
865 GOTO(out, rc = -ENOENT);
868 CDEBUG(D_CONFIG, "cat list: disk size=%d, read=%d\n",
869 (int)i_size_read(file->f_dentry->d_inode), size);
871 /* read for new ost index or for empty file */
872 memset(idarray, 0, size);
873 if (i_size_read(file->f_dentry->d_inode) < off)
876 rc = fsfilt_read_record(disk_obd, file, idarray, size, &off);
878 CERROR("OBD filter: error reading %s: rc %d\n", name, rc);
884 pop_ctxt(&saved, &disk_obd->obd_lvfs_ctxt, NULL);
885 if (file && !IS_ERR(file))
886 rc1 = filp_close(file, 0);
891 EXPORT_SYMBOL(llog_get_cat_list);
893 /* writes the cat list */
894 int llog_put_cat_list(struct obd_device *disk_obd,
895 char *name, int idx, int count, struct llog_catid *idarray)
897 struct lvfs_run_ctxt saved;
900 int size = sizeof(*idarray) * count;
901 loff_t off = idx * sizeof(*idarray);
906 push_ctxt(&saved, &disk_obd->obd_lvfs_ctxt, NULL);
907 file = filp_open(name, O_RDWR | O_CREAT | O_LARGEFILE, 0700);
908 if (!file || IS_ERR(file)) {
910 CERROR("OBD filter: cannot open/create %s: rc = %d\n",
915 if (!S_ISREG(file->f_dentry->d_inode->i_mode)) {
916 CERROR("%s is not a regular file!: mode = %o\n", name,
917 file->f_dentry->d_inode->i_mode);
918 GOTO(out, rc = -ENOENT);
921 rc = fsfilt_write_record(disk_obd, file, idarray, size, &off, 1);
923 CDEBUG(D_INODE,"OBD filter: error writeing %s: rc %d\n",
929 pop_ctxt(&saved, &disk_obd->obd_lvfs_ctxt, NULL);
930 if (file && !IS_ERR(file))
931 rc1 = filp_close(file, 0);
938 EXPORT_SYMBOL(llog_put_cat_list);
940 static int llog_lvfs_declare_create(const struct lu_env *env,
941 struct llog_handle *res,
947 static int llog_lvfs_declare_write_rec(const struct lu_env *env,
948 struct llog_handle *loghandle,
949 struct llog_rec_hdr *rec,
950 int idx, struct thandle *th)
955 struct llog_operations llog_lvfs_ops = {
956 .lop_write_rec = llog_lvfs_write_rec,
957 .lop_next_block = llog_lvfs_next_block,
958 .lop_prev_block = llog_lvfs_prev_block,
959 .lop_read_header = llog_lvfs_read_header,
960 .lop_create = llog_lvfs_create,
961 .lop_destroy = llog_lvfs_destroy,
962 .lop_close = llog_lvfs_close,
963 .lop_open = llog_lvfs_open,
964 .lop_exist = llog_lvfs_exist,
965 .lop_declare_create = llog_lvfs_declare_create,
966 .lop_declare_write_rec = llog_lvfs_declare_write_rec,
968 EXPORT_SYMBOL(llog_lvfs_ops);
969 #else /* !__KERNEL__ */
970 int llog_get_cat_list(struct obd_device *disk_obd,
971 char *name, int idx, int count,
972 struct llog_catid *idarray)
978 int llog_put_cat_list(struct obd_device *disk_obd,
979 char *name, int idx, int count,
980 struct llog_catid *idarray)
986 struct llog_operations llog_lvfs_ops = {};