geom_io.c revision 104701
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_io.c 104701 2002-10-09 07:11:59Z phk $
36 */
37
38
39#include <sys/param.h>
40#ifndef _KERNEL
41#include <stdio.h>
42#include <string.h>
43#include <stdlib.h>
44#include <signal.h>
45#include <err.h>
46#include <sched.h>
47#else
48#include <sys/systm.h>
49#include <sys/kernel.h>
50#include <sys/malloc.h>
51#include <sys/bio.h>
52#endif
53
54#include <sys/errno.h>
55#include <geom/geom.h>
56#include <geom/geom_int.h>
57
58static struct g_bioq g_bio_run_down;
59static struct g_bioq g_bio_run_up;
60static struct g_bioq g_bio_idle;
61
62#include <machine/atomic.h>
63
64static void
65g_bioq_lock(struct g_bioq *bq)
66{
67
68	mtx_lock(&bq->bio_queue_lock);
69}
70
71static void
72g_bioq_unlock(struct g_bioq *bq)
73{
74
75	mtx_unlock(&bq->bio_queue_lock);
76}
77
78#if 0
79static void
80g_bioq_destroy(struct g_bioq *bq)
81{
82
83	mtx_destroy(&bq->bio_queue_lock);
84}
85#endif
86
87static void
88g_bioq_init(struct g_bioq *bq)
89{
90
91	TAILQ_INIT(&bq->bio_queue);
92	mtx_init(&bq->bio_queue_lock, "bio queue", NULL, MTX_DEF);
93}
94
95static struct bio *
96g_bioq_first(struct g_bioq *bq)
97{
98	struct bio *bp;
99
100	g_bioq_lock(bq);
101	bp = TAILQ_FIRST(&bq->bio_queue);
102	if (bp != NULL) {
103		TAILQ_REMOVE(&bq->bio_queue, bp, bio_queue);
104		bq->bio_queue_length--;
105	}
106	g_bioq_unlock(bq);
107	return (bp);
108}
109
110static void
111g_bioq_enqueue_tail(struct bio *bp, struct g_bioq *rq)
112{
113
114	g_bioq_lock(rq);
115	TAILQ_INSERT_TAIL(&rq->bio_queue, bp, bio_queue);
116	rq->bio_queue_length++;
117	g_bioq_unlock(rq);
118}
119
120struct bio *
121g_new_bio(void)
122{
123	struct bio *bp;
124
125	bp = g_bioq_first(&g_bio_idle);
126	if (bp == NULL)
127		bp = g_malloc(sizeof *bp, M_NOWAIT | M_ZERO);
128	g_trace(G_T_BIO, "g_new_bio() = %p", bp);
129	return (bp);
130}
131
132void
133g_destroy_bio(struct bio *bp)
134{
135
136	g_trace(G_T_BIO, "g_destroy_bio(%p)", bp);
137	bzero(bp, sizeof *bp);
138	g_bioq_enqueue_tail(bp, &g_bio_idle);
139}
140
141struct bio *
142g_clone_bio(struct bio *bp)
143{
144	struct bio *bp2;
145
146	bp2 = g_new_bio();
147	if (bp2 != NULL) {
148		bp2->bio_linkage = bp;
149		bp2->bio_cmd = bp->bio_cmd;
150		bp2->bio_length = bp->bio_length;
151		bp2->bio_offset = bp->bio_offset;
152		bp2->bio_data = bp->bio_data;
153		bp2->bio_attribute = bp->bio_attribute;
154		bp->bio_children++;	/* XXX: atomic ? */
155	}
156	g_trace(G_T_BIO, "g_clone_bio(%p) = %p", bp, bp2);
157	return(bp2);
158}
159
160void
161g_io_init()
162{
163
164	g_bioq_init(&g_bio_run_down);
165	g_bioq_init(&g_bio_run_up);
166	g_bioq_init(&g_bio_idle);
167}
168
169int
170g_io_setattr(const char *attr, struct g_consumer *cp, int len, void *ptr)
171{
172	struct bio *bp;
173	int error;
174
175	g_trace(G_T_BIO, "bio_setattr(%s)", attr);
176	bp = g_new_bio();
177	bp->bio_cmd = BIO_SETATTR;
178	bp->bio_done = NULL;
179	bp->bio_attribute = attr;
180	bp->bio_length = len;
181	bp->bio_data = ptr;
182	g_io_request(bp, cp);
183	error = biowait(bp, "gsetattr");
184	g_destroy_bio(bp);
185	return (error);
186}
187
188
189int
190g_io_getattr(const char *attr, struct g_consumer *cp, int *len, void *ptr)
191{
192	struct bio *bp;
193	int error;
194
195	g_trace(G_T_BIO, "bio_getattr(%s)", attr);
196	bp = g_new_bio();
197	bp->bio_cmd = BIO_GETATTR;
198	bp->bio_done = NULL;
199	bp->bio_attribute = attr;
200	bp->bio_length = *len;
201	bp->bio_data = ptr;
202	g_io_request(bp, cp);
203	error = biowait(bp, "ggetattr");
204	*len = bp->bio_completed;
205	g_destroy_bio(bp);
206	return (error);
207}
208
209void
210g_io_request(struct bio *bp, struct g_consumer *cp)
211{
212	int error;
213	off_t excess;
214
215	KASSERT(cp != NULL, ("bio_request on thin air"));
216	error = 0;
217	bp->bio_from = cp;
218	bp->bio_to = cp->provider;
219	bp->bio_error = 0;
220	bp->bio_completed = 0;
221
222	/* begin_stats(&bp->stats); */
223
224	atomic_add_int(&cp->biocount, 1);
225	/* Fail on unattached consumers */
226	if (bp->bio_to == NULL) {
227		g_io_deliver(bp, ENXIO);
228		return;
229	}
230	/* Fail if access doesn't allow operation */
231	switch(bp->bio_cmd) {
232	case BIO_READ:
233	case BIO_GETATTR:
234		if (cp->acr == 0) {
235			g_io_deliver(bp, EPERM);
236			return;
237		}
238		break;
239	case BIO_WRITE:
240	case BIO_DELETE:
241		if (cp->acw == 0) {
242			g_io_deliver(bp, EPERM);
243			return;
244		}
245		break;
246	case BIO_SETATTR:
247		/* XXX: Should ideally check for (cp->ace == 0) */
248		if ((cp->acw == 0)) {
249#ifdef DIAGNOSTIC
250			printf("setattr on %s mode (%d,%d,%d)\n",
251				cp->provider->name,
252				cp->acr, cp->acw, cp->ace);
253#endif
254			g_io_deliver(bp, EPERM);
255			return;
256		}
257		break;
258	default:
259		g_io_deliver(bp, EPERM);
260		return;
261	}
262	/* if provider is marked for error, don't disturb. */
263	if (bp->bio_to->error) {
264		g_io_deliver(bp, bp->bio_to->error);
265		return;
266	}
267	switch(bp->bio_cmd) {
268	case BIO_READ:
269	case BIO_WRITE:
270	case BIO_DELETE:
271		/* Reject requests past the end of media. */
272		if (bp->bio_offset > bp->bio_to->mediasize) {
273			g_io_deliver(bp, EIO);
274			return;
275		}
276		/* Truncate requests to the end of providers media. */
277		excess = bp->bio_offset + bp->bio_length;
278		if (excess > bp->bio_to->mediasize) {
279			excess -= bp->bio_to->mediasize;
280			bp->bio_length -= excess;
281		}
282		/* Deliver zero length transfers right here. */
283		if (bp->bio_length == 0) {
284			g_io_deliver(bp, 0);
285			return;
286		}
287		break;
288	default:
289		break;
290	}
291	/* Pass it on down. */
292	g_trace(G_T_BIO, "bio_request(%p) from %p(%s) to %p(%s) cmd %d",
293	    bp, bp->bio_from, bp->bio_from->geom->name,
294	    bp->bio_to, bp->bio_to->name, bp->bio_cmd);
295	g_bioq_enqueue_tail(bp, &g_bio_run_down);
296	wakeup(&g_wait_down);
297}
298
299void
300g_io_deliver(struct bio *bp, int error)
301{
302
303	g_trace(G_T_BIO,
304	    "g_io_deliver(%p) from %p(%s) to %p(%s) cmd %d error %d",
305	    bp, bp->bio_from, bp->bio_from->geom->name,
306	    bp->bio_to, bp->bio_to->name, bp->bio_cmd, error);
307	/* finish_stats(&bp->stats); */
308
309	bp->bio_error = error;
310
311	g_bioq_enqueue_tail(bp, &g_bio_run_up);
312
313	wakeup(&g_wait_up);
314}
315
316void
317g_io_schedule_down(struct thread *tp __unused)
318{
319	struct bio *bp;
320
321	for(;;) {
322		bp = g_bioq_first(&g_bio_run_down);
323		if (bp == NULL)
324			break;
325		bp->bio_to->geom->start(bp);
326	}
327}
328
329void
330g_io_schedule_up(struct thread *tp __unused)
331{
332	struct bio *bp;
333	struct g_consumer *cp;
334
335	for(;;) {
336		bp = g_bioq_first(&g_bio_run_up);
337		if (bp == NULL)
338			break;
339
340		cp = bp->bio_from;
341
342		atomic_add_int(&cp->biocount, -1);
343		biodone(bp);
344	}
345}
346
347void *
348g_read_data(struct g_consumer *cp, off_t offset, off_t length, int *error)
349{
350	struct bio *bp;
351	void *ptr;
352	int errorc;
353
354	bp = g_new_bio();
355	bp->bio_cmd = BIO_READ;
356	bp->bio_done = NULL;
357	bp->bio_offset = offset;
358	bp->bio_length = length;
359	ptr = g_malloc(length, M_WAITOK);
360	bp->bio_data = ptr;
361	g_io_request(bp, cp);
362	errorc = biowait(bp, "gread");
363	if (error != NULL)
364		*error = errorc;
365	g_destroy_bio(bp);
366	if (errorc) {
367		g_free(ptr);
368		ptr = NULL;
369	}
370	return (ptr);
371}
372
373int
374g_write_data(struct g_consumer *cp, off_t offset, void *ptr, off_t length)
375{
376	struct bio *bp;
377	int error;
378
379	bp = g_new_bio();
380	bp->bio_cmd = BIO_WRITE;
381	bp->bio_done = NULL;
382	bp->bio_offset = offset;
383	bp->bio_length = length;
384	bp->bio_data = ptr;
385	g_io_request(bp, cp);
386	error = biowait(bp, "gwrite");
387	g_destroy_bio(bp);
388	return (error);
389}
390