g_bde.c revision 125755
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 *
20 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * $FreeBSD: head/sys/geom/bde/g_bde.c 125755 2004-02-12 22:42:11Z phk $
33 *
34 */
35
36#include <sys/param.h>
37#include <sys/bio.h>
38#include <sys/lock.h>
39#include <sys/mutex.h>
40#include <sys/malloc.h>
41#include <sys/systm.h>
42#include <sys/kernel.h>
43#include <sys/kthread.h>
44
45#include <crypto/rijndael/rijndael.h>
46#include <crypto/sha2/sha2.h>
47#include <geom/geom.h>
48#include <geom/bde/g_bde.h>
49#define BDE_CLASS_NAME "BDE"
50
51static void
52g_bde_start(struct bio *bp)
53{
54
55	switch (bp->bio_cmd) {
56	case BIO_DELETE:
57	case BIO_READ:
58	case BIO_WRITE:
59		g_bde_start1(bp);
60		break;
61	case BIO_GETATTR:
62		g_io_deliver(bp, EOPNOTSUPP);
63		break;
64	default:
65		g_io_deliver(bp, EOPNOTSUPP);
66		return;
67	}
68	return;
69}
70
71static void
72g_bde_orphan(struct g_consumer *cp)
73{
74	struct g_geom *gp;
75	struct g_provider *pp;
76	struct g_bde_softc *sc;
77	int error;
78
79	g_trace(G_T_TOPOLOGY, "g_bde_orphan(%p/%s)", cp, cp->provider->name);
80	g_topology_assert();
81	KASSERT(cp->provider->error != 0,
82		("g_bde_orphan with error == 0"));
83
84	gp = cp->geom;
85	sc = gp->softc;
86	gp->flags |= G_GEOM_WITHER;
87	error = cp->provider->error;
88	LIST_FOREACH(pp, &gp->provider, provider)
89		g_orphan_provider(pp, error);
90	bzero(sc, sizeof(struct g_bde_softc));	/* destroy evidence */
91	return;
92}
93
94static int
95g_bde_access(struct g_provider *pp, int dr, int dw, int de)
96{
97	struct g_geom *gp;
98	struct g_consumer *cp;
99
100	gp = pp->geom;
101	cp = LIST_FIRST(&gp->consumer);
102	if (cp->acr == 0 && cp->acw == 0 && cp->ace == 0) {
103		de++;
104		dr++;
105	}
106	/* ... and let go of it on last close */
107	if ((cp->acr + dr) == 0 && (cp->acw + dw) == 0 && (cp->ace + de) == 1) {
108		de--;
109		dr--;
110	}
111	return (g_access(cp, dr, dw, de));
112}
113
114static void
115g_bde_create_geom(struct gctl_req *req, struct g_class *mp, struct g_provider *pp)
116{
117	struct g_geom *gp;
118	struct g_consumer *cp;
119	struct g_bde_key *kp;
120	int error, i;
121	u_int sectorsize;
122	off_t mediasize;
123	struct g_bde_softc *sc;
124	void *pass;
125	void *key;
126
127	g_trace(G_T_TOPOLOGY, "g_bde_create_geom(%s, %s)", mp->name, pp->name);
128	g_topology_assert();
129	gp = NULL;
130
131
132	gp = g_new_geomf(mp, "%s.bde", pp->name);
133	gp->start = g_bde_start;
134	gp->orphan = g_bde_orphan;
135	gp->access = g_bde_access;
136	gp->spoiled = g_std_spoiled;
137	cp = g_new_consumer(gp);
138	g_attach(cp, pp);
139	error = g_access(cp, 1, 1, 1);
140	if (error) {
141		g_detach(cp);
142		g_destroy_consumer(cp);
143		g_destroy_geom(gp);
144		gctl_error(req, "could not access consumer");
145		return;
146	}
147	pass = NULL;
148	key = NULL;
149	do {
150		pass = gctl_get_param(req, "pass", &i);
151		if (pass == NULL || i != SHA512_DIGEST_LENGTH) {
152			gctl_error(req, "No usable key presented");
153			break;
154		}
155		key = gctl_get_param(req, "key", &i);
156		if (key != NULL && i != 16) {
157			gctl_error(req, "Invalid key presented");
158			break;
159		}
160		sectorsize = cp->provider->sectorsize;
161		mediasize = cp->provider->mediasize;
162		sc = g_malloc(sizeof(struct g_bde_softc), M_WAITOK | M_ZERO);
163		gp->softc = sc;
164		sc->geom = gp;
165		sc->consumer = cp;
166
167		error = g_bde_decrypt_lock(sc, pass, key,
168		    mediasize, sectorsize, NULL);
169		bzero(sc->sha2, sizeof sc->sha2);
170		if (error)
171			break;
172		kp = &sc->key;
173
174		/* Initialize helper-fields */
175		kp->keys_per_sector = kp->sectorsize / G_BDE_SKEYLEN;
176		kp->zone_cont = kp->keys_per_sector * kp->sectorsize;
177		kp->zone_width = kp->zone_cont + kp->sectorsize;
178		kp->media_width = kp->sectorN - kp->sector0 -
179		    G_BDE_MAXKEYS * kp->sectorsize;
180
181		/* Our external parameters */
182		sc->zone_cont = kp->zone_cont;
183		sc->mediasize = g_bde_max_sector(kp);
184		sc->sectorsize = kp->sectorsize;
185
186		TAILQ_INIT(&sc->freelist);
187		TAILQ_INIT(&sc->worklist);
188		mtx_init(&sc->worklist_mutex, "g_bde_worklist", NULL, MTX_DEF);
189		/* XXX: error check */
190		kthread_create(g_bde_worker, gp, &sc->thread, 0, 0,
191			"g_bde %s", gp->name);
192		pp = g_new_providerf(gp, gp->name);
193#if 0
194		/*
195		 * XXX: Disable this for now.  Appearantly UFS no longer
196		 * XXX: issues BIO_DELETE requests correctly, with the obvious
197		 * XXX: outcome that userdata is trashed.
198		 */
199		pp->flags |= G_PF_CANDELETE;
200#endif
201		pp->stripesize = kp->zone_cont;
202		pp->stripeoffset = 0;
203		pp->mediasize = sc->mediasize;
204		pp->sectorsize = sc->sectorsize;
205		g_error_provider(pp, 0);
206		break;
207	} while (0);
208	if (pass != NULL)
209		bzero(pass, SHA512_DIGEST_LENGTH);
210	if (key != NULL)
211		bzero(key, 16);
212	if (error == 0)
213		return;
214	g_access(cp, -1, -1, -1);
215	g_detach(cp);
216	g_destroy_consumer(cp);
217	if (gp->softc != NULL)
218		g_free(gp->softc);
219	g_destroy_geom(gp);
220	return;
221}
222
223
224static int
225g_bde_destroy_geom(struct gctl_req *req, struct g_class *mp, struct g_geom *gp)
226{
227	struct g_consumer *cp;
228	struct g_provider *pp;
229	int error;
230	struct g_bde_softc *sc;
231
232	g_trace(G_T_TOPOLOGY, "g_bde_destroy_geom(%s, %s)", mp->name, gp->name);
233	g_topology_assert();
234	/*
235	 * Orderly detachment.
236	 */
237	KASSERT(gp != NULL, ("NULL geom"));
238	pp = LIST_FIRST(&gp->provider);
239	KASSERT(pp != NULL, ("NULL provider"));
240	if (pp->acr > 0 || pp->acw > 0 || pp->ace > 0)
241		return (EBUSY);
242	sc = gp->softc;
243	cp = LIST_FIRST(&gp->consumer);
244	KASSERT(cp != NULL, ("NULL consumer"));
245	sc->dead = 1;
246	wakeup(sc);
247	error = g_access(cp, -1, -1, -1);
248	KASSERT(error == 0, ("error on close"));
249	g_detach(cp);
250	g_destroy_consumer(cp);
251	while (sc->dead != 2 && !LIST_EMPTY(&pp->consumers))
252		tsleep(sc, PRIBIO, "g_bdedie", hz);
253	mtx_destroy(&sc->worklist_mutex);
254	bzero(&sc->key, sizeof sc->key);
255	g_free(sc);
256	g_wither_geom(gp, ENXIO);
257	return (0);
258}
259
260static void
261g_bde_ctlreq(struct gctl_req *req, struct g_class *mp, char const *verb)
262{
263	struct g_geom *gp;
264	struct g_provider *pp;
265
266	if (!strcmp(verb, "create geom")) {
267		pp = gctl_get_provider(req, "provider");
268		if (pp != NULL)
269			g_bde_create_geom(req, mp, pp);
270	} else if (!strcmp(verb, "destroy geom")) {
271		gp = gctl_get_geom(req, mp, "geom");
272		if (gp != NULL)
273			g_bde_destroy_geom(req, mp, gp);
274	} else {
275		gctl_error(req, "unknown verb");
276	}
277}
278
279static struct g_class g_bde_class	= {
280	.name = BDE_CLASS_NAME,
281	.destroy_geom = g_bde_destroy_geom,
282	.ctlreq = g_bde_ctlreq,
283};
284
285DECLARE_GEOM_CLASS(g_bde_class, g_bde);
286