Whamcloud - gitweb
LU-1448 llite: Prevent NULL pointer dereference on disabled OSC
[fs/lustre-release.git] / lustre / obdclass / llog_lvfs.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  */
30 /*
31  * This file is part of Lustre, http://www.lustre.org/
32  * Lustre is a trademark of Sun Microsystems, Inc.
33  *
34  * lustre/obdclass/llog_lvfs.c
35  *
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
40  *
41  * Author: Andreas Dilger <adilger@clusterfs.com>
42  */
43
44 #define DEBUG_SUBSYSTEM S_LOG
45
46 #ifndef __KERNEL__
47 #include <liblustre.h>
48 #endif
49
50 #include <obd.h>
51 #include <obd_class.h>
52 #include <lustre_log.h>
53 #include <obd_ost.h>
54 #include <libcfs/list.h>
55 #include <lvfs.h>
56 #include <lustre_fsfilt.h>
57 #include <lustre_disk.h>
58 #include "llog_internal.h"
59
60 #if defined(__KERNEL__) && defined(LLOG_LVFS)
61
62 static int llog_lvfs_pad(struct obd_device *obd, struct l_file *file,
63                                 int len, int index)
64 {
65         struct llog_rec_hdr rec = { 0 };
66         struct llog_rec_tail tail;
67         int rc;
68         ENTRY;
69
70         LASSERT(len >= LLOG_MIN_REC_SIZE && (len & 0x7) == 0);
71
72         tail.lrt_len = rec.lrh_len = len;
73         tail.lrt_index = rec.lrh_index = index;
74         rec.lrh_type = LLOG_PAD_MAGIC;
75
76         rc = fsfilt_write_record(obd, file, &rec, sizeof(rec), &file->f_pos, 0);
77         if (rc) {
78                 CERROR("error writing padding record: rc %d\n", rc);
79                 goto out;
80         }
81
82         file->f_pos += len - sizeof(rec) - sizeof(tail);
83         rc = fsfilt_write_record(obd, file, &tail, sizeof(tail),&file->f_pos,0);
84         if (rc) {
85                 CERROR("error writing padding record: rc %d\n", rc);
86                 goto out;
87         }
88
89  out:
90         RETURN(rc);
91 }
92
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)
95 {
96         int rc;
97         struct llog_rec_tail end;
98         loff_t saved_off = file->f_pos;
99         int buflen = rec->lrh_len;
100
101         ENTRY;
102
103         file->f_pos = off;
104
105         if (buflen == 0)
106                 CWARN("0-length record\n");
107
108         if (!buf) {
109                 rc = fsfilt_write_record(obd, file, rec, buflen,&file->f_pos,0);
110                 if (rc) {
111                         CERROR("error writing log record: rc %d\n", rc);
112                         goto out;
113                 }
114                 GOTO(out, rc = 0);
115         }
116
117         /* the buf case */
118         rec->lrh_len = sizeof(*rec) + buflen + sizeof(end);
119         rc = fsfilt_write_record(obd, file, rec, sizeof(*rec), &file->f_pos, 0);
120         if (rc) {
121                 CERROR("error writing log hdr: rc %d\n", rc);
122                 goto out;
123         }
124
125         rc = fsfilt_write_record(obd, file, buf, buflen, &file->f_pos, 0);
126         if (rc) {
127                 CERROR("error writing log buffer: rc %d\n", rc);
128                 goto out;
129         }
130
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);
134         if (rc) {
135                 CERROR("error writing log tail: rc %d\n", rc);
136                 goto out;
137         }
138
139         rc = 0;
140  out:
141         if (saved_off > file->f_pos)
142                 file->f_pos = saved_off;
143         LASSERT(rc <= 0);
144         RETURN(rc);
145 }
146
147 static int llog_lvfs_read_blob(struct obd_device *obd, struct l_file *file,
148                                 void *buf, int size, loff_t off)
149 {
150         loff_t offset = off;
151         int rc;
152         ENTRY;
153
154         rc = fsfilt_read_record(obd, file, buf, size, &offset);
155         if (rc) {
156                 CERROR("error reading log record: rc %d\n", rc);
157                 RETURN(rc);
158         }
159         RETURN(0);
160 }
161
162 static int llog_lvfs_read_header(struct llog_handle *handle)
163 {
164         struct obd_device *obd;
165         int rc;
166         ENTRY;
167
168         LASSERT(sizeof(*handle->lgh_hdr) == LLOG_CHUNK_SIZE);
169
170         obd = handle->lgh_ctxt->loc_exp->exp_obd;
171
172         if (i_size_read(handle->lgh_file->f_dentry->d_inode) == 0) {
173                 CDEBUG(D_HA, "not reading header from 0-byte log\n");
174                 RETURN(LLOG_EEMPTY);
175         }
176
177         rc = llog_lvfs_read_blob(obd, handle->lgh_file, handle->lgh_hdr,
178                                  LLOG_CHUNK_SIZE, 0);
179         if (rc) {
180                 CERROR("error reading log header from %.*s\n",
181                        handle->lgh_file->f_dentry->d_name.len,
182                        handle->lgh_file->f_dentry->d_name.name);
183         } else {
184                 struct llog_rec_hdr *llh_hdr = &handle->lgh_hdr->llh_hdr;
185
186                 if (LLOG_REC_HDR_NEEDS_SWABBING(llh_hdr))
187                         lustre_swab_llog_hdr(handle->lgh_hdr);
188
189                 if (llh_hdr->lrh_type != LLOG_HDR_MAGIC) {
190                         CERROR("bad log %.*s header magic: %#x (expected %#x)\n",
191                                handle->lgh_file->f_dentry->d_name.len,
192                                handle->lgh_file->f_dentry->d_name.name,
193                                llh_hdr->lrh_type, LLOG_HDR_MAGIC);
194                         rc = -EIO;
195                 } else if (llh_hdr->lrh_len != LLOG_CHUNK_SIZE) {
196                         CERROR("incorrectly sized log %.*s header: %#x "
197                                "(expected %#x)\n",
198                                handle->lgh_file->f_dentry->d_name.len,
199                                handle->lgh_file->f_dentry->d_name.name,
200                                llh_hdr->lrh_len, LLOG_CHUNK_SIZE);
201                         CERROR("you may need to re-run lconf --write_conf.\n");
202                         rc = -EIO;
203                 }
204         }
205
206         handle->lgh_last_idx = handle->lgh_hdr->llh_tail.lrt_index;
207         handle->lgh_file->f_pos = i_size_read(handle->lgh_file->f_dentry->d_inode);
208
209         RETURN(rc);
210 }
211
212 /* returns negative in on error; 0 if success && reccookie == 0; 1 otherwise */
213 /* appends if idx == -1, otherwise overwrites record idx. */
214 static int llog_lvfs_write_rec(struct llog_handle *loghandle,
215                                struct llog_rec_hdr *rec,
216                                struct llog_cookie *reccookie, int cookiecount,
217                                void *buf, int idx)
218 {
219         struct llog_log_hdr *llh;
220         int reclen = rec->lrh_len, index, rc;
221         struct llog_rec_tail *lrt;
222         struct obd_device *obd;
223         struct file *file;
224         size_t left;
225         ENTRY;
226
227         llh = loghandle->lgh_hdr;
228         file = loghandle->lgh_file;
229         obd = loghandle->lgh_ctxt->loc_exp->exp_obd;
230
231         /* record length should not bigger than LLOG_CHUNK_SIZE */
232         if (buf)
233                 rc = (reclen > LLOG_CHUNK_SIZE - sizeof(struct llog_rec_hdr) -
234                       sizeof(struct llog_rec_tail)) ? -E2BIG : 0;
235         else
236                 rc = (reclen > LLOG_CHUNK_SIZE) ? -E2BIG : 0;
237         if (rc)
238                 RETURN(rc);
239
240         if (buf)
241                 /* write_blob adds header and tail to lrh_len. */
242                 reclen = sizeof(*rec) + rec->lrh_len +
243                          sizeof(struct llog_rec_tail);
244
245         if (idx != -1) {
246                 loff_t saved_offset;
247
248                 /* no header: only allowed to insert record 1 */
249                 if (idx != 1 && !i_size_read(file->f_dentry->d_inode)) {
250                         CERROR("idx != -1 in empty log\n");
251                         LBUG();
252                 }
253
254                 if (idx && llh->llh_size && llh->llh_size != rec->lrh_len)
255                         RETURN(-EINVAL);
256
257                 if (!ext2_test_bit(idx, llh->llh_bitmap))
258                         CERROR("Modify unset record %u\n", idx);
259                 if (idx != rec->lrh_index)
260                         CERROR("Index mismatch %d %u\n", idx, rec->lrh_index);
261
262                 rc = llog_lvfs_write_blob(obd, file, &llh->llh_hdr, NULL, 0);
263                 /* we are done if we only write the header or on error */
264                 if (rc || idx == 0)
265                         RETURN(rc);
266
267                 /* Assumes constant lrh_len */
268                 saved_offset = sizeof(*llh) + (idx - 1) * reclen;
269
270                 if (buf) {
271                         struct llog_rec_hdr check;
272
273                         /* We assume that caller has set lgh_cur_* */
274                         saved_offset = loghandle->lgh_cur_offset;
275                         CDEBUG(D_OTHER,
276                                "modify record "LPX64": idx:%d/%u/%d, len:%u "
277                                "offset %llu\n",
278                                loghandle->lgh_id.lgl_oid, idx, rec->lrh_index,
279                                loghandle->lgh_cur_idx, rec->lrh_len,
280                                (long long)(saved_offset - sizeof(*llh)));
281                         if (rec->lrh_index != loghandle->lgh_cur_idx) {
282                                 CERROR("modify idx mismatch %u/%d\n",
283                                        idx, loghandle->lgh_cur_idx);
284                                 RETURN(-EFAULT);
285                         }
286 #if 1  /* FIXME remove this safety check at some point */
287                         /* Verify that the record we're modifying is the
288                            right one. */
289                         rc = llog_lvfs_read_blob(obd, file, &check,
290                                                  sizeof(check), saved_offset);
291                         if (check.lrh_index != idx || check.lrh_len != reclen) {
292                                 CERROR("Bad modify idx %u/%u size %u/%u (%d)\n",
293                                        idx, check.lrh_index, reclen,
294                                        check.lrh_len, rc);
295                                 RETURN(-EFAULT);
296                         }
297 #endif
298                 }
299
300                 rc = llog_lvfs_write_blob(obd, file, rec, buf, saved_offset);
301                 if (rc == 0 && reccookie) {
302                         reccookie->lgc_lgl = loghandle->lgh_id;
303                         reccookie->lgc_index = idx;
304                         rc = 1;
305                 }
306                 RETURN(rc);
307         }
308
309         /* Make sure that records don't cross a chunk boundary, so we can
310          * process them page-at-a-time if needed.  If it will cross a chunk
311          * boundary, write in a fake (but referenced) entry to pad the chunk.
312          *
313          * We know that llog_current_log() will return a loghandle that is
314          * big enough to hold reclen, so all we care about is padding here.
315          */
316         left = LLOG_CHUNK_SIZE - (file->f_pos & (LLOG_CHUNK_SIZE - 1));
317
318         /* NOTE: padding is a record, but no bit is set */
319         if (left != 0 && left != reclen &&
320             left < (reclen + LLOG_MIN_REC_SIZE)) {
321                  index = loghandle->lgh_last_idx + 1;
322                  rc = llog_lvfs_pad(obd, file, left, index);
323                  if (rc)
324                          RETURN(rc);
325                  loghandle->lgh_last_idx++; /*for pad rec*/
326          }
327          /* if it's the last idx in log file, then return -ENOSPC */
328          if (loghandle->lgh_last_idx >= LLOG_BITMAP_SIZE(llh) - 1)
329                  RETURN(-ENOSPC);
330         loghandle->lgh_last_idx++;
331         index = loghandle->lgh_last_idx;
332         LASSERT(index < LLOG_BITMAP_SIZE(llh));
333         rec->lrh_index = index;
334         if (buf == NULL) {
335                 lrt = (struct llog_rec_tail *)
336                         ((char *)rec + rec->lrh_len - sizeof(*lrt));
337                 lrt->lrt_len = rec->lrh_len;
338                 lrt->lrt_index = rec->lrh_index;
339         }
340         /*The caller should make sure only 1 process access the lgh_last_idx,
341          *Otherwise it might hit the assert.*/
342         LASSERT(index < LLOG_BITMAP_SIZE(llh));
343         if (ext2_set_bit(index, llh->llh_bitmap)) {
344                 CERROR("argh, index %u already set in log bitmap?\n", index);
345                 LBUG(); /* should never happen */
346         }
347         llh->llh_count++;
348         llh->llh_tail.lrt_index = index;
349
350         rc = llog_lvfs_write_blob(obd, file, &llh->llh_hdr, NULL, 0);
351         if (rc)
352                 RETURN(rc);
353
354         rc = llog_lvfs_write_blob(obd, file, rec, buf, file->f_pos);
355         if (rc)
356                 RETURN(rc);
357
358         CDEBUG(D_RPCTRACE, "added record "LPX64": idx: %u, %u \n",
359                loghandle->lgh_id.lgl_oid, index, rec->lrh_len);
360         if (rc == 0 && reccookie) {
361                 reccookie->lgc_lgl = loghandle->lgh_id;
362                 reccookie->lgc_index = index;
363                 if ((rec->lrh_type == MDS_UNLINK_REC) ||
364                     (rec->lrh_type == MDS_SETATTR_REC) ||
365                     (rec->lrh_type == MDS_SETATTR64_REC))
366                         reccookie->lgc_subsys = LLOG_MDS_OST_ORIG_CTXT;
367                 else if (rec->lrh_type == OST_SZ_REC)
368                         reccookie->lgc_subsys = LLOG_SIZE_ORIG_CTXT;
369                 else if (rec->lrh_type == OST_RAID1_REC)
370                         reccookie->lgc_subsys = LLOG_RD1_ORIG_CTXT;
371                 else
372                         reccookie->lgc_subsys = -1;
373                 rc = 1;
374         }
375         if (rc == 0 && rec->lrh_type == LLOG_GEN_REC)
376                 rc = 1;
377
378         RETURN(rc);
379 }
380
381 /* We can skip reading at least as many log blocks as the number of
382 * minimum sized log records we are skipping.  If it turns out
383 * that we are not far enough along the log (because the
384 * actual records are larger than minimum size) we just skip
385 * some more records. */
386
387 static void llog_skip_over(__u64 *off, int curr, int goal)
388 {
389         if (goal <= curr)
390                 return;
391         *off = (*off + (goal-curr-1) * LLOG_MIN_REC_SIZE) &
392                 ~(LLOG_CHUNK_SIZE - 1);
393 }
394
395
396 /* sets:
397  *  - cur_offset to the furthest point read in the log file
398  *  - cur_idx to the log index preceeding cur_offset
399  * returns -EIO/-EINVAL on error
400  */
401 static int llog_lvfs_next_block(struct llog_handle *loghandle, int *cur_idx,
402                                 int next_idx, __u64 *cur_offset, void *buf,
403                                 int len)
404 {
405         int rc;
406         ENTRY;
407
408         if (len == 0 || len & (LLOG_CHUNK_SIZE - 1))
409                 RETURN(-EINVAL);
410
411         CDEBUG(D_OTHER, "looking for log index %u (cur idx %u off "LPU64")\n",
412                next_idx, *cur_idx, *cur_offset);
413
414         while (*cur_offset < i_size_read(loghandle->lgh_file->f_dentry->d_inode)) {
415                 struct llog_rec_hdr *rec;
416                 struct llog_rec_tail *tail;
417                 loff_t ppos;
418
419                 llog_skip_over(cur_offset, *cur_idx, next_idx);
420
421                 ppos = *cur_offset;
422                 rc = fsfilt_read_record(loghandle->lgh_ctxt->loc_exp->exp_obd,
423                                         loghandle->lgh_file, buf, len,
424                                         &ppos);
425                 if (rc) {
426                         CERROR("Cant read llog block at log id "LPU64
427                                "/%u offset "LPU64"\n",
428                                loghandle->lgh_id.lgl_oid,
429                                loghandle->lgh_id.lgl_ogen,
430                                *cur_offset);
431                         RETURN(rc);
432                 }
433
434                 /* put number of bytes read into rc to make code simpler */
435                 rc = ppos - *cur_offset;
436                 *cur_offset = ppos;
437
438                 if (rc < len) {
439                         /* signal the end of the valid buffer to llog_process */
440                         memset(buf + rc, 0, len - rc);
441                 }
442
443                 if (rc == 0) /* end of file, nothing to do */
444                         RETURN(0);
445
446                 if (rc < sizeof(*tail)) {
447                         CERROR("Invalid llog block at log id "LPU64"/%u offset "
448                                LPU64"\n", loghandle->lgh_id.lgl_oid,
449                                loghandle->lgh_id.lgl_ogen, *cur_offset);
450                         RETURN(-EINVAL);
451                 }
452
453                 rec = buf;
454                 tail = (struct llog_rec_tail *)((char *)buf + rc -
455                                                 sizeof(struct llog_rec_tail));
456
457                 if (LLOG_REC_HDR_NEEDS_SWABBING(rec)) {
458                         lustre_swab_llog_rec(rec, tail);
459                 }
460
461                 *cur_idx = tail->lrt_index;
462
463                 /* this shouldn't happen */
464                 if (tail->lrt_index == 0) {
465                         CERROR("Invalid llog tail at log id "LPU64"/%u offset "
466                                LPU64"\n", loghandle->lgh_id.lgl_oid,
467                                loghandle->lgh_id.lgl_ogen, *cur_offset);
468                         RETURN(-EINVAL);
469                 }
470                 if (tail->lrt_index < next_idx)
471                         continue;
472
473                 /* sanity check that the start of the new buffer is no farther
474                  * than the record that we wanted.  This shouldn't happen. */
475                 if (rec->lrh_index > next_idx) {
476                         CERROR("missed desired record? %u > %u\n",
477                                rec->lrh_index, next_idx);
478                         RETURN(-ENOENT);
479                 }
480                 RETURN(0);
481         }
482         RETURN(-EIO);
483 }
484
485 static int llog_lvfs_prev_block(struct llog_handle *loghandle,
486                                 int prev_idx, void *buf, int len)
487 {
488         __u64 cur_offset;
489         int rc;
490         ENTRY;
491
492         if (len == 0 || len & (LLOG_CHUNK_SIZE - 1))
493                 RETURN(-EINVAL);
494
495         CDEBUG(D_OTHER, "looking for log index %u\n", prev_idx);
496
497         cur_offset = LLOG_CHUNK_SIZE;
498         llog_skip_over(&cur_offset, 0, prev_idx);
499
500         while (cur_offset < i_size_read(loghandle->lgh_file->f_dentry->d_inode)) {
501                 struct llog_rec_hdr *rec;
502                 struct llog_rec_tail *tail;
503                 loff_t ppos;
504
505                 ppos = cur_offset;
506
507                 rc = fsfilt_read_record(loghandle->lgh_ctxt->loc_exp->exp_obd,
508                                         loghandle->lgh_file, buf, len,
509                                         &ppos);
510                 if (rc) {
511                         CERROR("Cant read llog block at log id "LPU64
512                                "/%u offset "LPU64"\n",
513                                loghandle->lgh_id.lgl_oid,
514                                loghandle->lgh_id.lgl_ogen,
515                                cur_offset);
516                         RETURN(rc);
517                 }
518
519                 /* put number of bytes read into rc to make code simpler */
520                 rc = ppos - cur_offset;
521                 cur_offset = ppos;
522
523                 if (rc == 0) /* end of file, nothing to do */
524                         RETURN(0);
525
526                 if (rc < sizeof(*tail)) {
527                         CERROR("Invalid llog block at log id "LPU64"/%u offset "
528                                LPU64"\n", loghandle->lgh_id.lgl_oid,
529                                loghandle->lgh_id.lgl_ogen, cur_offset);
530                         RETURN(-EINVAL);
531                 }
532
533                 tail = buf + rc - sizeof(struct llog_rec_tail);
534
535                 /* this shouldn't happen */
536                 if (tail->lrt_index == 0) {
537                         CERROR("Invalid llog tail at log id "LPU64"/%u offset "
538                                LPU64"\n", loghandle->lgh_id.lgl_oid,
539                                loghandle->lgh_id.lgl_ogen, cur_offset);
540                         RETURN(-EINVAL);
541                 }
542                 if (le32_to_cpu(tail->lrt_index) < prev_idx)
543                         continue;
544
545                 /* sanity check that the start of the new buffer is no farther
546                  * than the record that we wanted.  This shouldn't happen. */
547                 rec = buf;
548                 if (le32_to_cpu(rec->lrh_index) > prev_idx) {
549                         CERROR("missed desired record? %u > %u\n",
550                                le32_to_cpu(rec->lrh_index), prev_idx);
551                         RETURN(-ENOENT);
552                 }
553                 RETURN(0);
554         }
555         RETURN(-EIO);
556 }
557
558 static struct file *llog_filp_open(char *dir, char *name, int flags, int mode)
559 {
560         char *logname;
561         struct file *filp;
562         int len;
563
564         OBD_ALLOC(logname, PATH_MAX);
565         if (logname == NULL)
566                 return ERR_PTR(-ENOMEM);
567
568         len = snprintf(logname, PATH_MAX, "%s/%s", dir, name);
569         if (len >= PATH_MAX - 1) {
570                 filp = ERR_PTR(-ENAMETOOLONG);
571         } else {
572                 filp = l_filp_open(logname, flags, mode);
573                 if (IS_ERR(filp))
574                         CERROR("logfile creation %s: %ld\n", logname,
575                                PTR_ERR(filp));
576         }
577         OBD_FREE(logname, PATH_MAX);
578         return filp;
579 }
580
581 /* This is a callback from the llog_* functions.
582  * Assumes caller has already pushed us into the kernel context. */
583 static int llog_lvfs_create(struct llog_ctxt *ctxt, struct llog_handle **res,
584                             struct llog_logid *logid, char *name)
585 {
586         struct llog_handle *handle;
587         struct obd_device *obd;
588         struct l_dentry *dchild = NULL;
589         struct obdo *oa = NULL;
590         int rc = 0;
591         int open_flags = O_RDWR | O_CREAT | O_LARGEFILE;
592         ENTRY;
593
594         handle = llog_alloc_handle();
595         if (handle == NULL)
596                 RETURN(-ENOMEM);
597         *res = handle;
598
599         LASSERT(ctxt);
600         LASSERT(ctxt->loc_exp);
601         obd = ctxt->loc_exp->exp_obd;
602
603         if (logid != NULL) {
604                 dchild = obd_lvfs_fid2dentry(ctxt->loc_exp, logid->lgl_oid,
605                                              logid->lgl_ogen, logid->lgl_oseq);
606
607                 if (IS_ERR(dchild)) {
608                         rc = PTR_ERR(dchild);
609                         CERROR("error looking up logfile "LPX64":0x%x: rc %d\n",
610                                logid->lgl_oid, logid->lgl_ogen, rc);
611                         GOTO(out, rc);
612                 }
613
614                 if (dchild->d_inode == NULL) {
615                         l_dput(dchild);
616                         rc = -ENOENT;
617                         CERROR("nonexistent log file "LPX64":"LPX64": rc %d\n",
618                                logid->lgl_oid, logid->lgl_oseq, rc);
619                         GOTO(out, rc);
620                 }
621
622                 /* l_dentry_open will call dput(dchild) if there is an error */
623                 handle->lgh_file = l_dentry_open(&obd->obd_lvfs_ctxt, dchild,
624                                                     O_RDWR | O_LARGEFILE);
625                 if (IS_ERR(handle->lgh_file)) {
626                         rc = PTR_ERR(handle->lgh_file);
627                         CERROR("error opening logfile "LPX64"0x%x: rc %d\n",
628                                logid->lgl_oid, logid->lgl_ogen, rc);
629                         GOTO(out, rc);
630                 }
631
632                 /* assign the value of lgh_id for handle directly */
633                 handle->lgh_id = *logid;
634
635         } else if (name) {
636                 handle->lgh_file = llog_filp_open(MOUNT_CONFIGS_DIR,
637                                                   name, open_flags, 0644);
638                 if (IS_ERR(handle->lgh_file))
639                         GOTO(out, rc = PTR_ERR(handle->lgh_file));
640
641                 handle->lgh_id.lgl_oseq = 1;
642                 handle->lgh_id.lgl_oid =
643                         handle->lgh_file->f_dentry->d_inode->i_ino;
644                 handle->lgh_id.lgl_ogen =
645                         handle->lgh_file->f_dentry->d_inode->i_generation;
646         } else {
647                 OBDO_ALLOC(oa);
648                 if (oa == NULL)
649                         GOTO(out, rc = -ENOMEM);
650
651                 oa->o_seq = FID_SEQ_LLOG;
652                 oa->o_valid = OBD_MD_FLGENER | OBD_MD_FLGROUP;
653
654                 rc = obd_create(NULL, ctxt->loc_exp, oa, NULL, NULL);
655                 if (rc)
656                         GOTO(out, rc);
657
658                 /* FIXME: rationalize the misuse of o_generation in
659                  *        this API along with mds_obd_{create,destroy}.
660                  *        Hopefully it is only an internal API issue. */
661 #define o_generation o_parent_oid
662                 dchild = obd_lvfs_fid2dentry(ctxt->loc_exp, oa->o_id,
663                                              oa->o_generation, oa->o_seq);
664
665                 if (IS_ERR(dchild))
666                         GOTO(out, rc = PTR_ERR(dchild));
667
668                 handle->lgh_file = l_dentry_open(&obd->obd_lvfs_ctxt, dchild,
669                                                  open_flags);
670                 if (IS_ERR(handle->lgh_file))
671                         GOTO(out, rc = PTR_ERR(handle->lgh_file));
672
673                 handle->lgh_id.lgl_oseq = oa->o_seq;
674                 handle->lgh_id.lgl_oid = oa->o_id;
675                 handle->lgh_id.lgl_ogen = oa->o_generation;
676         }
677
678         handle->lgh_ctxt = ctxt;
679 out:
680         if (rc)
681                 llog_free_handle(handle);
682
683         if (oa)
684                 OBDO_FREE(oa);
685         RETURN(rc);
686 }
687
688 static int llog_lvfs_close(struct llog_handle *handle)
689 {
690         int rc;
691         ENTRY;
692
693         rc = filp_close(handle->lgh_file, 0);
694         if (rc)
695                 CERROR("error closing log: rc %d\n", rc);
696         RETURN(rc);
697 }
698
699 static int llog_lvfs_destroy(struct llog_handle *handle)
700 {
701         struct dentry *fdentry;
702         struct obdo *oa;
703         struct obd_device *obd = handle->lgh_ctxt->loc_exp->exp_obd;
704         char *dir;
705         void *th;
706         struct inode *inode;
707         int rc, rc1;
708         ENTRY;
709
710         dir = MOUNT_CONFIGS_DIR;
711
712         fdentry = handle->lgh_file->f_dentry;
713         inode = fdentry->d_parent->d_inode;
714         if (strcmp(fdentry->d_parent->d_name.name, dir) == 0) {
715                 struct lvfs_run_ctxt saved;
716                 struct vfsmount *mnt = mntget(handle->lgh_file->f_vfsmnt);
717
718                 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
719                 dget(fdentry);
720                 rc = llog_lvfs_close(handle);
721
722                 if (rc == 0) {
723                         LOCK_INODE_MUTEX_PARENT(inode);
724                         rc = ll_vfs_unlink(inode, fdentry, mnt);
725                         UNLOCK_INODE_MUTEX(inode);
726                 }
727                 mntput(mnt);
728
729                 dput(fdentry);
730                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
731                 RETURN(rc);
732         }
733
734         OBDO_ALLOC(oa);
735         if (oa == NULL)
736                 RETURN(-ENOMEM);
737
738         oa->o_id = handle->lgh_id.lgl_oid;
739         oa->o_seq = handle->lgh_id.lgl_oseq;
740         oa->o_generation = handle->lgh_id.lgl_ogen;
741 #undef o_generation
742         oa->o_valid = OBD_MD_FLID | OBD_MD_FLGROUP | OBD_MD_FLGENER;
743
744         rc = llog_lvfs_close(handle);
745         if (rc)
746                 GOTO(out, rc);
747
748         th = fsfilt_start_log(obd, inode, FSFILT_OP_UNLINK, NULL, 1);
749         if (IS_ERR(th)) {
750                 CERROR("fsfilt_start failed: %ld\n", PTR_ERR(th));
751                 GOTO(out, rc = PTR_ERR(th));
752         }
753
754         rc = obd_destroy(NULL, handle->lgh_ctxt->loc_exp, oa,
755                          NULL, NULL, NULL, NULL);
756
757         rc1 = fsfilt_commit(obd, inode, th, 0);
758         if (rc == 0 && rc1 != 0)
759                 rc = rc1;
760  out:
761         OBDO_FREE(oa);
762         RETURN(rc);
763 }
764
765 /* reads the catalog list */
766 int llog_get_cat_list(struct obd_device *disk_obd,
767                       char *name, int idx, int count, struct llog_catid *idarray)
768 {
769         struct lvfs_run_ctxt saved;
770         struct l_file *file;
771         int rc, rc1 = 0;
772         int size = sizeof(*idarray) * count;
773         loff_t off = idx *  sizeof(*idarray);
774         ENTRY;
775
776         if (!count)
777                 RETURN(0);
778
779         push_ctxt(&saved, &disk_obd->obd_lvfs_ctxt, NULL);
780         file = filp_open(name, O_RDWR | O_CREAT | O_LARGEFILE, 0700);
781         if (!file || IS_ERR(file)) {
782                 rc = PTR_ERR(file);
783                 CERROR("OBD filter: cannot open/create %s: rc = %d\n",
784                        name, rc);
785                 GOTO(out, rc);
786         }
787
788         if (!S_ISREG(file->f_dentry->d_inode->i_mode)) {
789                 CERROR("%s is not a regular file!: mode = %o\n", name,
790                        file->f_dentry->d_inode->i_mode);
791                 GOTO(out, rc = -ENOENT);
792         }
793
794         CDEBUG(D_CONFIG, "cat list: disk size=%d, read=%d\n",
795                (int)i_size_read(file->f_dentry->d_inode), size);
796
797         /* read for new ost index or for empty file */
798         memset(idarray, 0, size);
799         if (i_size_read(file->f_dentry->d_inode) < off)
800                 GOTO(out, rc = 0);
801
802         rc = fsfilt_read_record(disk_obd, file, idarray, size, &off);
803         if (rc) {
804                 CERROR("OBD filter: error reading %s: rc %d\n", name, rc);
805                 GOTO(out, rc);
806         }
807
808         EXIT;
809  out:
810         pop_ctxt(&saved, &disk_obd->obd_lvfs_ctxt, NULL);
811         if (file && !IS_ERR(file))
812                 rc1 = filp_close(file, 0);
813         if (rc == 0)
814                 rc = rc1;
815         return rc;
816 }
817 EXPORT_SYMBOL(llog_get_cat_list);
818
819 /* writes the cat list */
820 int llog_put_cat_list(struct obd_device *disk_obd,
821                       char *name, int idx, int count, struct llog_catid *idarray)
822 {
823         struct lvfs_run_ctxt saved;
824         struct l_file *file;
825         int rc, rc1 = 0;
826         int size = sizeof(*idarray) * count;
827         loff_t off = idx * sizeof(*idarray);
828
829         if (!count)
830                 GOTO(out1, rc = 0);
831
832         push_ctxt(&saved, &disk_obd->obd_lvfs_ctxt, NULL);
833         file = filp_open(name, O_RDWR | O_CREAT | O_LARGEFILE, 0700);
834         if (!file || IS_ERR(file)) {
835                 rc = PTR_ERR(file);
836                 CERROR("OBD filter: cannot open/create %s: rc = %d\n",
837                        name, rc);
838                 GOTO(out, rc);
839         }
840
841         if (!S_ISREG(file->f_dentry->d_inode->i_mode)) {
842                 CERROR("%s is not a regular file!: mode = %o\n", name,
843                        file->f_dentry->d_inode->i_mode);
844                 GOTO(out, rc = -ENOENT);
845         }
846
847         rc = fsfilt_write_record(disk_obd, file, idarray, size, &off, 1);
848         if (rc) {
849                 CDEBUG(D_INODE,"OBD filter: error writeing %s: rc %d\n",
850                        name, rc);
851                 GOTO(out, rc);
852         }
853
854 out:
855         pop_ctxt(&saved, &disk_obd->obd_lvfs_ctxt, NULL);
856         if (file && !IS_ERR(file))
857                 rc1 = filp_close(file, 0);
858
859         if (rc == 0)
860                 rc = rc1;
861 out1:
862         RETURN(rc);
863 }
864 EXPORT_SYMBOL(llog_put_cat_list);
865
866 struct llog_operations llog_lvfs_ops = {
867         lop_write_rec:   llog_lvfs_write_rec,
868         lop_next_block:  llog_lvfs_next_block,
869         lop_prev_block:  llog_lvfs_prev_block,
870         lop_read_header: llog_lvfs_read_header,
871         lop_create:      llog_lvfs_create,
872         lop_destroy:     llog_lvfs_destroy,
873         lop_close:       llog_lvfs_close,
874         //        lop_cancel: llog_lvfs_cancel,
875 };
876
877 EXPORT_SYMBOL(llog_lvfs_ops);
878
879 #else /* !__KERNEL__ */
880
881 static int llog_lvfs_read_header(struct llog_handle *handle)
882 {
883         LBUG();
884         return 0;
885 }
886
887 static int llog_lvfs_write_rec(struct llog_handle *loghandle,
888                                struct llog_rec_hdr *rec,
889                                struct llog_cookie *reccookie, int cookiecount,
890                                void *buf, int idx)
891 {
892         LBUG();
893         return 0;
894 }
895
896 static int llog_lvfs_next_block(struct llog_handle *loghandle, int *cur_idx,
897                                 int next_idx, __u64 *cur_offset, void *buf,
898                                 int len)
899 {
900         LBUG();
901         return 0;
902 }
903
904 static int llog_lvfs_prev_block(struct llog_handle *loghandle,
905                                 int prev_idx, void *buf, int len)
906 {
907         LBUG();
908         return 0;
909 }
910
911 static int llog_lvfs_create(struct llog_ctxt *ctxt, struct llog_handle **res,
912                             struct llog_logid *logid, char *name)
913 {
914         LBUG();
915         return 0;
916 }
917
918 static int llog_lvfs_close(struct llog_handle *handle)
919 {
920         LBUG();
921         return 0;
922 }
923
924 static int llog_lvfs_destroy(struct llog_handle *handle)
925 {
926         LBUG();
927         return 0;
928 }
929
930 int llog_get_cat_list(struct obd_device *disk_obd,
931                       char *name, int idx, int count, struct llog_catid *idarray)
932 {
933         LBUG();
934         return 0;
935 }
936
937 int llog_put_cat_list(struct obd_device *disk_obd,
938                       char *name, int idx, int count, struct llog_catid *idarray)
939 {
940         LBUG();
941         return 0;
942 }
943
944 struct llog_operations llog_lvfs_ops = {
945         lop_write_rec:   llog_lvfs_write_rec,
946         lop_next_block:  llog_lvfs_next_block,
947         lop_prev_block:  llog_lvfs_prev_block,
948         lop_read_header: llog_lvfs_read_header,
949         lop_create:      llog_lvfs_create,
950         lop_destroy:     llog_lvfs_destroy,
951         lop_close:       llog_lvfs_close,
952 //        lop_cancel:      llog_lvfs_cancel,
953 };
954 #endif