geom_slice.c revision 93776
1/*-
2 * Copyright (c) 2002 Poul-Henning Kamp
3 * Copyright (c) 2002 Networks Associates Technology, Inc.
4 * All rights reserved.
5 *
6 * This software was developed for the FreeBSD Project by Poul-Henning Kamp
7 * and NAI Labs, the Security Research Division of Network Associates, Inc.
8 * under DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"), as part of the
9 * DARPA CHATS research program.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 *    notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 *    notice, this list of conditions and the following disclaimer in the
18 *    documentation and/or other materials provided with the distribution.
19 * 3. The names of the authors may not be used to endorse or promote
20 *    products derived from this software without specific prior written
21 *    permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 *
35 * $FreeBSD: head/sys/geom/geom_slice.c 93776 2002-04-04 09:54:13Z phk $
36 */
37
38
39#include <sys/param.h>
40#ifndef _KERNEL
41#include <stdio.h>
42#include <unistd.h>
43#include <stdlib.h>
44#include <signal.h>
45#include <err.h>
46#else
47#include <sys/systm.h>
48#include <sys/kernel.h>
49#include <sys/malloc.h>
50#include <sys/bio.h>
51#include <sys/sysctl.h>
52#include <sys/proc.h>
53#include <sys/kthread.h>
54#include <sys/lock.h>
55#include <sys/mutex.h>
56#endif
57#include <sys/errno.h>
58#include <sys/sbuf.h>
59#include <geom/geom.h>
60#include <geom/geom_slice.h>
61#include <machine/stdarg.h>
62
63static g_orphan_t g_slice_orphan;
64static g_access_t g_slice_access;
65static g_start_t g_slice_start;
66
67struct g_slicer *
68g_slice_init(unsigned nslice, unsigned scsize)
69{
70	struct g_slicer *gsp;
71
72	gsp = g_malloc(sizeof *gsp, M_WAITOK | M_ZERO);
73	gsp->softc = g_malloc(scsize, M_WAITOK | M_ZERO);
74	gsp->slices = g_malloc(nslice * sizeof(struct g_slice), M_WAITOK | M_ZERO);
75	gsp->nslice = nslice;
76	return (gsp);
77}
78
79static int
80g_slice_access(struct g_provider *pp, int dr, int dw, int de)
81{
82	int error, i;
83	struct g_geom *gp;
84	struct g_consumer *cp;
85	struct g_provider *pp2;
86	struct g_slicer *gsp;
87	struct g_slice *gsl, *gsl2;
88
89	gp = pp->geom;
90	cp = LIST_FIRST(&gp->consumer);
91	KASSERT (cp != NULL, ("g_slice_access but no consumer"));
92	gsp = gp->softc;
93	gsl = &gsp->slices[pp->index];
94	for (i = 0; i < gsp->nslice; i++) {
95		gsl2 = &gsp->slices[i];
96		if (gsl2->length == 0)
97			continue;
98		if (i == pp->index)
99			continue;
100		if (gsl->offset + gsl->length <= gsl2->offset)
101			continue;
102		if (gsl2->offset + gsl2->length <= gsl->offset)
103			continue;
104		/* overlap */
105		pp2 = gsl2->provider;
106		if ((pp->acw + dw) > 0 && pp2->ace > 0)
107			return (EPERM);
108		if ((pp->ace + de) > 0 && pp2->acw > 0)
109			return (EPERM);
110	}
111	/* On first open, grab an extra "exclusive" bit */
112	if (cp->acr == 0 && cp->acw == 0 && cp->ace == 0)
113		de++;
114	/* ... and let go of it on last close */
115	if ((cp->acr + dr) == 0 && (cp->acw + dw) == 0 && (cp->ace + de) == 1)
116		de--;
117	error = g_access_rel(cp, dr, dw, de);
118	return (error);
119}
120
121static void
122g_slice_start(struct bio *bp)
123{
124	struct bio *bp2;
125	struct g_provider *pp;
126	struct g_geom *gp;
127	struct g_consumer *cp;
128	struct g_slicer *gsp;
129	struct g_slice *gsl;
130	int index;
131
132	pp = bp->bio_to;
133	gp = pp->geom;
134	gsp = gp->softc;
135	cp = LIST_FIRST(&gp->consumer);
136	index = pp->index;
137	switch(bp->bio_cmd) {
138	case BIO_READ:
139	case BIO_WRITE:
140	case BIO_DELETE:
141		gsl = &gsp->slices[index];
142		if (bp->bio_offset > gsl->length) {
143			bp->bio_error = EINVAL; /* XXX: EWHAT ? */
144			g_io_deliver(bp);
145			return;
146		}
147		bp2 = g_clone_bio(bp);
148		if (bp2->bio_offset + bp2->bio_length > gsl->length)
149			bp2->bio_length = gsl->length - bp2->bio_offset;
150		bp2->bio_done = g_std_done;
151		bp2->bio_offset += gsl->offset;
152		g_io_request(bp2, cp);
153		return;
154	case BIO_GETATTR:
155	case BIO_SETATTR:
156		if (g_haveattr_off_t(bp, "GEOM::mediasize",
157		    gsp->slices[index].length))
158			return;
159		if (gsp->start(bp))
160			return;
161		bp2 = g_clone_bio(bp);
162		bp2->bio_done = g_std_done;
163		g_io_request(bp2, cp);
164		break;
165	default:
166		bp->bio_error = EOPNOTSUPP;
167		g_io_deliver(bp);
168		return;
169	}
170}
171
172void
173g_slice_dumpconf(struct sbuf *sb, char *indent, struct g_geom *gp, struct g_consumer *cp __unused, struct g_provider *pp)
174{
175	struct g_mbr_softc *mp;
176	struct g_slicer *gsp;
177
178	gsp = gp->softc;
179	mp = gsp->softc;
180	if (pp != NULL) {
181		sbuf_printf(sb, "%s<index>%u</index>\n", indent, pp->index);
182		sbuf_printf(sb, "%s<length>%llu</length>\n",
183		    indent, (unsigned long long)gsp->slices[pp->index].length);
184		sbuf_printf(sb, "%s<seclength>%llu</seclength>\n", indent,
185		    (unsigned long long)gsp->slices[pp->index].length / 512);
186		sbuf_printf(sb, "%s<offset>%llu</offset>\n", indent,
187		    (unsigned long long)gsp->slices[pp->index].offset);
188		sbuf_printf(sb, "%s<secoffset>%llu</secoffset>\n", indent,
189		    (unsigned long long)gsp->slices[pp->index].offset / 512);
190	}
191}
192
193struct g_provider *
194g_slice_addslice(struct g_geom *gp, int index, off_t offset, off_t length, char *fmt, ...)
195{
196	struct g_provider *pp;
197	struct g_slicer *gsp;
198	va_list ap;
199	struct sbuf *sb;
200
201	g_trace(G_T_TOPOLOGY, "g_slice_addslice()");
202	g_topology_lock();
203	gsp = gp->softc;
204	va_start(ap, fmt);
205	sb = sbuf_new(NULL, NULL, 0, SBUF_AUTOEXTEND);
206	sbuf_vprintf(sb, fmt, ap);
207	sbuf_finish(sb);
208	pp = g_new_providerf(gp, sbuf_data(sb));
209
210	pp->index = index;
211	gsp->slices[index].length = length;
212	gsp->slices[index].offset = offset;
213	gsp->slices[index].provider = pp;
214	sbuf_delete(sb);
215	g_topology_unlock();
216	return(pp);
217}
218
219struct g_geom *
220g_slice_new(struct g_class *mp, int slices, struct g_provider *pp, struct g_consumer **cpp, void *extrap, int extra, g_slice_start_t *start)
221{
222	struct g_geom *gp;
223	struct g_slicer *gsp;
224	struct g_consumer *cp;
225	void **vp;
226	int error;
227
228	g_topology_assert();
229	vp = (void **)extrap;
230	gp = g_new_geomf(mp, "%s", pp->name);
231	gsp = g_slice_init(slices, extra);
232	gsp->start = start;
233	gp->access = g_slice_access;
234	gp->orphan = g_slice_orphan;
235	gp->softc = gsp;
236	gp->start = g_slice_start;
237	gp->spoiled = g_std_spoiled;
238	gp->dumpconf = g_slice_dumpconf;
239	cp = g_new_consumer(gp);
240	g_attach(cp, pp);
241	error = g_access_rel(cp, 1, 0, 0);
242	if (error) {
243		g_dettach(cp);
244		g_destroy_consumer(cp);
245		g_free(gsp->slices);
246		g_free(gp->softc);
247		g_destroy_geom(gp);
248		return (NULL);
249	}
250	*vp = gsp->softc;
251	*cpp = cp;
252	return (gp);
253}
254
255static void
256g_slice_orphan(struct g_consumer *cp)
257{
258	struct g_geom *gp;
259	struct g_provider *pp;
260	int error;
261
262	g_trace(G_T_TOPOLOGY, "g_slice_orphan(%p/%s)", cp, cp->provider->name);
263	g_topology_assert();
264	KASSERT(cp->provider->error != 0,
265	    ("g_slice_orphan with error == 0"));
266
267	gp = cp->geom;
268	gp->flags |= G_GEOM_WITHER;
269	/* First prevent any new requests */
270	error = cp->provider->error;
271	LIST_FOREACH(pp, &gp->provider, provider)
272		g_orphan_provider(pp, error);
273
274	return;
275}
276