]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/geom/geom_vfs.c
- Don't acquire giant around calls to bufdone().
[FreeBSD/FreeBSD.git] / sys / geom / geom_vfs.c
1 /*-
2  * Copyright (c) 2004 Poul-Henning Kamp
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  */
26
27 #include <sys/cdefs.h>
28 __FBSDID("$FreeBSD$");
29
30 #include <sys/param.h>
31 #include <sys/systm.h>
32 #include <sys/bio.h>
33 #include <sys/kernel.h>
34 #include <sys/malloc.h>
35 #include <sys/vnode.h>
36
37 #include <geom/geom.h>
38 #include <geom/geom_vfs.h>
39
40 /*
41  * subroutines for use by filesystems.
42  *
43  * XXX: should maybe live somewhere else ?
44  */
45 #include <sys/buf.h>
46
47 static struct buf_ops __g_vfs_bufops = {
48         .bop_name =     "GEOM_VFS",
49         .bop_write =    bufwrite,
50         .bop_strategy = g_vfs_strategy, 
51         .bop_sync =     bufsync,        
52 };
53
54 struct buf_ops *g_vfs_bufops = &__g_vfs_bufops;
55
56 static struct g_class g_vfs_class = {
57         .name =         "VFS",
58         .version =      G_VERSION,
59         .orphan =       g_vfs_orphan,
60 };
61
62 DECLARE_GEOM_CLASS(g_vfs_class, g_vfs);
63
64 static void
65 g_vfs_done(struct bio *bip)
66 {
67         struct buf *bp;
68
69         if (bip->bio_error) {
70                 printf("g_vfs_done():");
71                 g_print_bio(bip);
72                 printf("error = %d\n", bip->bio_error);
73         }
74         bp = bip->bio_caller2;
75         bp->b_error = bip->bio_error;
76         bp->b_ioflags = bip->bio_flags;
77         if (bip->bio_error)
78                 bp->b_ioflags |= BIO_ERROR;
79         bp->b_resid = bp->b_bcount - bip->bio_completed;
80         g_destroy_bio(bip);
81         bufdone(bp);
82 }
83
84 void
85 g_vfs_strategy(struct bufobj *bo, struct buf *bp)
86 {
87         struct g_consumer *cp;
88         struct bio *bip;
89
90         cp = bo->bo_private;
91         G_VALID_CONSUMER(cp);
92
93         bip = g_alloc_bio();
94         bip->bio_cmd = bp->b_iocmd;
95         bip->bio_offset = bp->b_iooffset;
96         bip->bio_data = bp->b_data;
97         bip->bio_done = g_vfs_done;
98         bip->bio_caller2 = bp;
99         bip->bio_length = bp->b_bcount;
100         g_io_request(bip, cp);
101 }
102
103 void
104 g_vfs_orphan(struct g_consumer *cp)
105 {
106
107         /*
108          * Don't do anything here yet.
109          *
110          * Ideally we should detach the consumer already now, but that
111          * leads to a locking requirement in the I/O path to see if we have
112          * a consumer or not.  Considering how ugly things are going to get
113          * anyway as none of our filesystems are graceful about i/o errors,
114          * this is not important right now.
115          *
116          * Down the road, this is the place where we could give the user
117          * a "Abort, Retry or Ignore" option to replace the media again.
118          */
119 }
120
121 int
122 g_vfs_open(struct vnode *vp, struct g_consumer **cpp, const char *fsname, int wr)
123 {
124         struct g_geom *gp;
125         struct g_provider *pp;
126         struct g_consumer *cp;
127         struct bufobj *bo;
128         int error;
129
130         g_topology_assert();
131
132         *cpp = NULL;
133         pp = g_dev_getprovider(vp->v_rdev);
134         if (pp == NULL)
135                 return (ENOENT);
136         gp = g_new_geomf(&g_vfs_class, "%s.%s", fsname, pp->name);
137         cp = g_new_consumer(gp);
138         g_attach(cp, pp);
139         error = g_access(cp, 1, wr, 1);
140         if (error) {
141                 g_wither_geom(gp, ENXIO);
142                 return (error);
143         }
144         *cpp = cp;
145         bo = &vp->v_bufobj;
146         bo->bo_ops = g_vfs_bufops;
147         bo->bo_private = cp;
148         bo->bo_bsize = pp->sectorsize;
149
150         return (error);
151 }