]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - sys/geom/geom_dev.c
MFC r286512:
[FreeBSD/stable/10.git] / sys / geom / geom_dev.c
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
36 #include <sys/cdefs.h>
37 __FBSDID("$FreeBSD$");
38
39 #include <sys/param.h>
40 #include <sys/systm.h>
41 #include <sys/malloc.h>
42 #include <sys/kernel.h>
43 #include <sys/conf.h>
44 #include <sys/ctype.h>
45 #include <sys/bio.h>
46 #include <sys/bus.h>
47 #include <sys/lock.h>
48 #include <sys/mutex.h>
49 #include <sys/proc.h>
50 #include <sys/errno.h>
51 #include <sys/time.h>
52 #include <sys/disk.h>
53 #include <sys/fcntl.h>
54 #include <sys/limits.h>
55 #include <sys/sysctl.h>
56 #include <geom/geom.h>
57 #include <geom/geom_int.h>
58 #include <machine/stdarg.h>
59
60 struct g_dev_softc {
61         struct mtx       sc_mtx;
62         struct cdev     *sc_dev;
63         struct cdev     *sc_alias;
64         int              sc_open;
65         int              sc_active;
66 };
67
68 static d_open_t         g_dev_open;
69 static d_close_t        g_dev_close;
70 static d_strategy_t     g_dev_strategy;
71 static d_ioctl_t        g_dev_ioctl;
72
73 static struct cdevsw g_dev_cdevsw = {
74         .d_version =    D_VERSION,
75         .d_open =       g_dev_open,
76         .d_close =      g_dev_close,
77         .d_read =       physread,
78         .d_write =      physwrite,
79         .d_ioctl =      g_dev_ioctl,
80         .d_strategy =   g_dev_strategy,
81         .d_name =       "g_dev",
82         .d_flags =      D_DISK | D_TRACKCLOSE,
83 };
84
85 static g_init_t g_dev_init;
86 static g_fini_t g_dev_fini;
87 static g_taste_t g_dev_taste;
88 static g_orphan_t g_dev_orphan;
89 static g_attrchanged_t g_dev_attrchanged;
90
91 static struct g_class g_dev_class       = {
92         .name = "DEV",
93         .version = G_VERSION,
94         .init = g_dev_init,
95         .fini = g_dev_fini,
96         .taste = g_dev_taste,
97         .orphan = g_dev_orphan,
98         .attrchanged = g_dev_attrchanged
99 };
100
101 /*
102  * We target 262144 (8 x 32768) sectors by default as this significantly
103  * increases the throughput on commonly used SSD's with a marginal
104  * increase in non-interruptible request latency.
105  */
106 static uint64_t g_dev_del_max_sectors = 262144;
107 SYSCTL_DECL(_kern_geom);
108 SYSCTL_NODE(_kern_geom, OID_AUTO, dev, CTLFLAG_RW, 0, "GEOM_DEV stuff");
109 SYSCTL_QUAD(_kern_geom_dev, OID_AUTO, delete_max_sectors, CTLFLAG_RW,
110     &g_dev_del_max_sectors, 0, "Maximum number of sectors in a single "
111     "delete request sent to the provider. Larger requests are chunked "
112     "so they can be interrupted. (0 = disable chunking)");
113
114 static char *dumpdev = NULL;
115 static void
116 g_dev_init(struct g_class *mp)
117 {
118
119         dumpdev = getenv("dumpdev");
120 }
121
122 static void
123 g_dev_fini(struct g_class *mp)
124 {
125
126         freeenv(dumpdev);
127 }
128
129 static int
130 g_dev_setdumpdev(struct cdev *dev)
131 {
132         struct g_kerneldump kd;
133         struct g_consumer *cp;
134         int error, len;
135
136         if (dev == NULL)
137                 return (set_dumper(NULL, NULL));
138
139         cp = dev->si_drv2;
140         len = sizeof(kd);
141         kd.offset = 0;
142         kd.length = OFF_MAX;
143         error = g_io_getattr("GEOM::kerneldump", cp, &len, &kd);
144         if (error == 0) {
145                 error = set_dumper(&kd.di, devtoname(dev));
146                 if (error == 0)
147                         dev->si_flags |= SI_DUMPDEV;
148         }
149         return (error);
150 }
151
152 static void
153 init_dumpdev(struct cdev *dev)
154 {
155
156         if (dumpdev == NULL)
157                 return;
158         if (strcmp(devtoname(dev), dumpdev) != 0)
159                 return;
160         if (g_dev_setdumpdev(dev) == 0) {
161                 freeenv(dumpdev);
162                 dumpdev = NULL;
163         }
164 }
165
166 static void
167 g_dev_destroy(void *arg, int flags __unused)
168 {
169         struct g_consumer *cp;
170         struct g_geom *gp;
171         struct g_dev_softc *sc;
172         char buf[SPECNAMELEN + 6];
173
174         g_topology_assert();
175         cp = arg;
176         gp = cp->geom;
177         sc = cp->private;
178         g_trace(G_T_TOPOLOGY, "g_dev_destroy(%p(%s))", cp, gp->name);
179         snprintf(buf, sizeof(buf), "cdev=%s", gp->name);
180         devctl_notify_f("GEOM", "DEV", "DESTROY", buf, M_WAITOK);
181         if (cp->acr > 0 || cp->acw > 0 || cp->ace > 0)
182                 g_access(cp, -cp->acr, -cp->acw, -cp->ace);
183         g_detach(cp);
184         g_destroy_consumer(cp);
185         g_destroy_geom(gp);
186         mtx_destroy(&sc->sc_mtx);
187         g_free(sc);
188 }
189
190 void
191 g_dev_print(void)
192 {
193         struct g_geom *gp;
194         char const *p = "";
195
196         LIST_FOREACH(gp, &g_dev_class.geom, geom) {
197                 printf("%s%s", p, gp->name);
198                 p = " ";
199         }
200         printf("\n");
201 }
202
203 static void
204 g_dev_attrchanged(struct g_consumer *cp, const char *attr)
205 {
206         struct g_dev_softc *sc;
207         struct cdev *dev;
208         char buf[SPECNAMELEN + 6];
209
210         sc = cp->private;
211         if (strcmp(attr, "GEOM::media") == 0) {
212                 dev = sc->sc_dev;
213                 snprintf(buf, sizeof(buf), "cdev=%s", dev->si_name);
214                 devctl_notify_f("DEVFS", "CDEV", "MEDIACHANGE", buf, M_WAITOK);
215                 devctl_notify_f("GEOM", "DEV", "MEDIACHANGE", buf, M_WAITOK);
216                 dev = sc->sc_alias;
217                 if (dev != NULL) {
218                         snprintf(buf, sizeof(buf), "cdev=%s", dev->si_name);
219                         devctl_notify_f("DEVFS", "CDEV", "MEDIACHANGE", buf,
220                             M_WAITOK);
221                         devctl_notify_f("GEOM", "DEV", "MEDIACHANGE", buf,
222                             M_WAITOK);
223                 }
224                 return;
225         }
226
227         if (strcmp(attr, "GEOM::physpath") != 0)
228                 return;
229
230         if (g_access(cp, 1, 0, 0) == 0) {
231                 char *physpath;
232                 int error, physpath_len;
233
234                 physpath_len = MAXPATHLEN;
235                 physpath = g_malloc(physpath_len, M_WAITOK|M_ZERO);
236                 error =
237                     g_io_getattr("GEOM::physpath", cp, &physpath_len, physpath);
238                 g_access(cp, -1, 0, 0);
239                 if (error == 0 && strlen(physpath) != 0) {
240                         struct cdev *old_alias_dev;
241                         struct cdev **alias_devp;
242
243                         dev = sc->sc_dev;
244                         old_alias_dev = sc->sc_alias;
245                         alias_devp = (struct cdev **)&sc->sc_alias;
246                         make_dev_physpath_alias(MAKEDEV_WAITOK, alias_devp,
247                             dev, old_alias_dev, physpath);
248                 } else if (sc->sc_alias) {
249                         destroy_dev((struct cdev *)sc->sc_alias);
250                         sc->sc_alias = NULL;
251                 }
252                 g_free(physpath);
253         }
254 }
255
256 struct g_provider *
257 g_dev_getprovider(struct cdev *dev)
258 {
259         struct g_consumer *cp;
260
261         g_topology_assert();
262         if (dev == NULL)
263                 return (NULL);
264         if (dev->si_devsw != &g_dev_cdevsw)
265                 return (NULL);
266         cp = dev->si_drv2;
267         return (cp->provider);
268 }
269
270 static struct g_geom *
271 g_dev_taste(struct g_class *mp, struct g_provider *pp, int insist __unused)
272 {
273         struct g_geom *gp;
274         struct g_consumer *cp;
275         struct g_dev_softc *sc;
276         int error, len;
277         struct cdev *dev, *adev;
278         char buf[SPECNAMELEN + 6], *val;
279
280         g_trace(G_T_TOPOLOGY, "dev_taste(%s,%s)", mp->name, pp->name);
281         g_topology_assert();
282         gp = g_new_geomf(mp, "%s", pp->name);
283         sc = g_malloc(sizeof(*sc), M_WAITOK | M_ZERO);
284         mtx_init(&sc->sc_mtx, "g_dev", NULL, MTX_DEF);
285         cp = g_new_consumer(gp);
286         cp->private = sc;
287         cp->flags |= G_CF_DIRECT_SEND | G_CF_DIRECT_RECEIVE;
288         error = g_attach(cp, pp);
289         KASSERT(error == 0,
290             ("g_dev_taste(%s) failed to g_attach, err=%d", pp->name, error));
291         error = make_dev_p(MAKEDEV_CHECKNAME | MAKEDEV_WAITOK, &dev,
292             &g_dev_cdevsw, NULL, UID_ROOT, GID_OPERATOR, 0640, "%s", gp->name);
293         if (error != 0) {
294                 printf("%s: make_dev_p() failed (gp->name=%s, error=%d)\n",
295                     __func__, gp->name, error);
296                 g_detach(cp);
297                 g_destroy_consumer(cp);
298                 g_destroy_geom(gp);
299                 mtx_destroy(&sc->sc_mtx);
300                 g_free(sc);
301                 return (NULL);
302         }
303         dev->si_flags |= SI_UNMAPPED;
304         sc->sc_dev = dev;
305
306         /* Search for device alias name and create it if found. */
307         adev = NULL;
308         for (len = MIN(strlen(gp->name), sizeof(buf) - 15); len > 0; len--) {
309                 snprintf(buf, sizeof(buf), "kern.devalias.%s", gp->name);
310                 buf[14 + len] = 0;
311                 val = getenv(buf);
312                 if (val != NULL) {
313                         snprintf(buf, sizeof(buf), "%s%s",
314                             val, gp->name + len);
315                         freeenv(val);
316                         make_dev_alias_p(MAKEDEV_CHECKNAME | MAKEDEV_WAITOK,
317                             &adev, dev, "%s", buf);
318                         adev->si_flags |= SI_UNMAPPED;
319                         break;
320                 }
321         }
322
323         dev->si_iosize_max = MAXPHYS;
324         dev->si_drv2 = cp;
325         init_dumpdev(dev);
326         if (adev != NULL) {
327                 adev->si_iosize_max = MAXPHYS;
328                 adev->si_drv2 = cp;
329                 init_dumpdev(adev);
330         }
331
332         g_dev_attrchanged(cp, "GEOM::physpath");
333         snprintf(buf, sizeof(buf), "cdev=%s", gp->name);
334         devctl_notify_f("GEOM", "DEV", "CREATE", buf, M_WAITOK);
335
336         return (gp);
337 }
338
339 static int
340 g_dev_open(struct cdev *dev, int flags, int fmt, struct thread *td)
341 {
342         struct g_consumer *cp;
343         struct g_dev_softc *sc;
344         int error, r, w, e;
345
346         cp = dev->si_drv2;
347         if (cp == NULL)
348                 return(ENXIO);          /* g_dev_taste() not done yet */
349         g_trace(G_T_ACCESS, "g_dev_open(%s, %d, %d, %p)",
350             cp->geom->name, flags, fmt, td);
351
352         r = flags & FREAD ? 1 : 0;
353         w = flags & FWRITE ? 1 : 0;
354 #ifdef notyet
355         e = flags & O_EXCL ? 1 : 0;
356 #else
357         e = 0;
358 #endif
359
360         /*
361          * This happens on attempt to open a device node with O_EXEC.
362          */
363         if (r + w + e == 0)
364                 return (EINVAL);
365
366         if (w) {
367                 /*
368                  * When running in very secure mode, do not allow
369                  * opens for writing of any disks.
370                  */
371                 error = securelevel_ge(td->td_ucred, 2);
372                 if (error)
373                         return (error);
374         }
375         g_topology_lock();
376         error = g_access(cp, r, w, e);
377         g_topology_unlock();
378         if (error == 0) {
379                 sc = cp->private;
380                 mtx_lock(&sc->sc_mtx);
381                 if (sc->sc_open == 0 && sc->sc_active != 0)
382                         wakeup(&sc->sc_active);
383                 sc->sc_open += r + w + e;
384                 mtx_unlock(&sc->sc_mtx);
385         }
386         return(error);
387 }
388
389 static int
390 g_dev_close(struct cdev *dev, int flags, int fmt, struct thread *td)
391 {
392         struct g_consumer *cp;
393         struct g_dev_softc *sc;
394         int error, r, w, e;
395
396         cp = dev->si_drv2;
397         if (cp == NULL)
398                 return(ENXIO);
399         g_trace(G_T_ACCESS, "g_dev_close(%s, %d, %d, %p)",
400             cp->geom->name, flags, fmt, td);
401         
402         r = flags & FREAD ? -1 : 0;
403         w = flags & FWRITE ? -1 : 0;
404 #ifdef notyet
405         e = flags & O_EXCL ? -1 : 0;
406 #else
407         e = 0;
408 #endif
409
410         /*
411          * The vgonel(9) - caused by eg. forced unmount of devfs - calls
412          * VOP_CLOSE(9) on devfs vnode without any FREAD or FWRITE flags,
413          * which would result in zero deltas, which in turn would cause
414          * panic in g_access(9).
415          *
416          * Note that we cannot zero the counters (ie. do "r = cp->acr"
417          * etc) instead, because the consumer might be opened in another
418          * devfs instance.
419          */
420         if (r + w + e == 0)
421                 return (EINVAL);
422
423         sc = cp->private;
424         mtx_lock(&sc->sc_mtx);
425         sc->sc_open += r + w + e;
426         while (sc->sc_open == 0 && sc->sc_active != 0)
427                 msleep(&sc->sc_active, &sc->sc_mtx, 0, "PRIBIO", 0);
428         mtx_unlock(&sc->sc_mtx);
429         g_topology_lock();
430         error = g_access(cp, r, w, e);
431         g_topology_unlock();
432         return (error);
433 }
434
435 /*
436  * XXX: Until we have unmessed the ioctl situation, there is a race against
437  * XXX: a concurrent orphanization.  We cannot close it by holding topology
438  * XXX: since that would prevent us from doing our job, and stalling events
439  * XXX: will break (actually: stall) the BSD disklabel hacks.
440  */
441 static int
442 g_dev_ioctl(struct cdev *dev, u_long cmd, caddr_t data, int fflag, struct thread *td)
443 {
444         struct g_consumer *cp;
445         struct g_provider *pp;
446         off_t offset, length, chunk;
447         int i, error;
448
449         cp = dev->si_drv2;
450         pp = cp->provider;
451
452         error = 0;
453         KASSERT(cp->acr || cp->acw,
454             ("Consumer with zero access count in g_dev_ioctl"));
455
456         i = IOCPARM_LEN(cmd);
457         switch (cmd) {
458         case DIOCGSECTORSIZE:
459                 *(u_int *)data = cp->provider->sectorsize;
460                 if (*(u_int *)data == 0)
461                         error = ENOENT;
462                 break;
463         case DIOCGMEDIASIZE:
464                 *(off_t *)data = cp->provider->mediasize;
465                 if (*(off_t *)data == 0)
466                         error = ENOENT;
467                 break;
468         case DIOCGFWSECTORS:
469                 error = g_io_getattr("GEOM::fwsectors", cp, &i, data);
470                 if (error == 0 && *(u_int *)data == 0)
471                         error = ENOENT;
472                 break;
473         case DIOCGFWHEADS:
474                 error = g_io_getattr("GEOM::fwheads", cp, &i, data);
475                 if (error == 0 && *(u_int *)data == 0)
476                         error = ENOENT;
477                 break;
478         case DIOCGFRONTSTUFF:
479                 error = g_io_getattr("GEOM::frontstuff", cp, &i, data);
480                 break;
481         case DIOCSKERNELDUMP:
482                 if (*(u_int *)data == 0)
483                         error = g_dev_setdumpdev(NULL);
484                 else
485                         error = g_dev_setdumpdev(dev);
486                 break;
487         case DIOCGFLUSH:
488                 error = g_io_flush(cp);
489                 break;
490         case DIOCGDELETE:
491                 offset = ((off_t *)data)[0];
492                 length = ((off_t *)data)[1];
493                 if ((offset % cp->provider->sectorsize) != 0 ||
494                     (length % cp->provider->sectorsize) != 0 || length <= 0) {
495                         printf("%s: offset=%jd length=%jd\n", __func__, offset,
496                             length);
497                         error = EINVAL;
498                         break;
499                 }
500                 while (length > 0) { 
501                         chunk = length;
502                         if (g_dev_del_max_sectors != 0 && chunk >
503                             g_dev_del_max_sectors * cp->provider->sectorsize) {
504                                 chunk = g_dev_del_max_sectors *
505                                     cp->provider->sectorsize;
506                         }
507                         error = g_delete_data(cp, offset, chunk);
508                         length -= chunk;
509                         offset += chunk;
510                         if (error)
511                                 break;
512                         /*
513                          * Since the request size can be large, the service
514                          * time can be is likewise.  We make this ioctl
515                          * interruptible by checking for signals for each bio.
516                          */
517                         if (SIGPENDING(td))
518                                 break;
519                 }
520                 break;
521         case DIOCGIDENT:
522                 error = g_io_getattr("GEOM::ident", cp, &i, data);
523                 break;
524         case DIOCGPROVIDERNAME:
525                 if (pp == NULL)
526                         return (ENOENT);
527                 strlcpy(data, pp->name, i);
528                 break;
529         case DIOCGSTRIPESIZE:
530                 *(off_t *)data = cp->provider->stripesize;
531                 break;
532         case DIOCGSTRIPEOFFSET:
533                 *(off_t *)data = cp->provider->stripeoffset;
534                 break;
535         case DIOCGPHYSPATH:
536                 error = g_io_getattr("GEOM::physpath", cp, &i, data);
537                 if (error == 0 && *(char *)data == '\0')
538                         error = ENOENT;
539                 break;
540         case DIOCGATTR: {
541                 struct diocgattr_arg *arg = (struct diocgattr_arg *)data;
542
543                 if (arg->len > sizeof(arg->value)) {
544                         error = EINVAL;
545                         break;
546                 }
547                 error = g_io_getattr(arg->name, cp, &arg->len, &arg->value);
548                 break;
549         }
550         default:
551                 if (cp->provider->geom->ioctl != NULL) {
552                         error = cp->provider->geom->ioctl(cp->provider, cmd, data, fflag, td);
553                 } else {
554                         error = ENOIOCTL;
555                 }
556         }
557
558         return (error);
559 }
560
561 static void
562 g_dev_done(struct bio *bp2)
563 {
564         struct g_consumer *cp;
565         struct g_dev_softc *sc;
566         struct bio *bp;
567         int destroy;
568
569         cp = bp2->bio_from;
570         sc = cp->private;
571         bp = bp2->bio_parent;
572         bp->bio_error = bp2->bio_error;
573         bp->bio_completed = bp2->bio_completed;
574         bp->bio_resid = bp->bio_length - bp2->bio_completed;
575         if (bp2->bio_error != 0) {
576                 g_trace(G_T_BIO, "g_dev_done(%p) had error %d",
577                     bp2, bp2->bio_error);
578                 bp->bio_flags |= BIO_ERROR;
579         } else {
580                 g_trace(G_T_BIO, "g_dev_done(%p/%p) resid %ld completed %jd",
581                     bp2, bp, bp2->bio_resid, (intmax_t)bp2->bio_completed);
582         }
583         g_destroy_bio(bp2);
584         destroy = 0;
585         mtx_lock(&sc->sc_mtx);
586         if ((--sc->sc_active) == 0) {
587                 if (sc->sc_open == 0)
588                         wakeup(&sc->sc_active);
589                 if (sc->sc_dev == NULL)
590                         destroy = 1;
591         }
592         mtx_unlock(&sc->sc_mtx);
593         if (destroy)
594                 g_post_event(g_dev_destroy, cp, M_NOWAIT, NULL);
595         biodone(bp);
596 }
597
598 static void
599 g_dev_strategy(struct bio *bp)
600 {
601         struct g_consumer *cp;
602         struct bio *bp2;
603         struct cdev *dev;
604         struct g_dev_softc *sc;
605
606         KASSERT(bp->bio_cmd == BIO_READ ||
607                 bp->bio_cmd == BIO_WRITE ||
608                 bp->bio_cmd == BIO_DELETE ||
609                 bp->bio_cmd == BIO_FLUSH,
610                 ("Wrong bio_cmd bio=%p cmd=%d", bp, bp->bio_cmd));
611         dev = bp->bio_dev;
612         cp = dev->si_drv2;
613         sc = cp->private;
614         KASSERT(cp->acr || cp->acw,
615             ("Consumer with zero access count in g_dev_strategy"));
616 #ifdef INVARIANTS
617         if ((bp->bio_offset % cp->provider->sectorsize) != 0 ||
618             (bp->bio_bcount % cp->provider->sectorsize) != 0) {
619                 bp->bio_resid = bp->bio_bcount;
620                 biofinish(bp, NULL, EINVAL);
621                 return;
622         }
623 #endif
624         mtx_lock(&sc->sc_mtx);
625         KASSERT(sc->sc_open > 0, ("Closed device in g_dev_strategy"));
626         sc->sc_active++;
627         mtx_unlock(&sc->sc_mtx);
628
629         for (;;) {
630                 /*
631                  * XXX: This is not an ideal solution, but I belive it to
632                  * XXX: deadlock safe, all things considered.
633                  */
634                 bp2 = g_clone_bio(bp);
635                 if (bp2 != NULL)
636                         break;
637                 pause("gdstrat", hz / 10);
638         }
639         KASSERT(bp2 != NULL, ("XXX: ENOMEM in a bad place"));
640         bp2->bio_done = g_dev_done;
641         g_trace(G_T_BIO,
642             "g_dev_strategy(%p/%p) offset %jd length %jd data %p cmd %d",
643             bp, bp2, (intmax_t)bp->bio_offset, (intmax_t)bp2->bio_length,
644             bp2->bio_data, bp2->bio_cmd);
645         g_io_request(bp2, cp);
646         KASSERT(cp->acr || cp->acw,
647             ("g_dev_strategy raced with g_dev_close and lost"));
648
649 }
650
651 /*
652  * g_dev_callback()
653  *
654  * Called by devfs when asynchronous device destruction is completed.
655  * - Mark that we have no attached device any more.
656  * - If there are no outstanding requests, schedule geom destruction.
657  *   Otherwise destruction will be scheduled later by g_dev_done().
658  */
659
660 static void
661 g_dev_callback(void *arg)
662 {
663         struct g_consumer *cp;
664         struct g_dev_softc *sc;
665         int destroy;
666
667         cp = arg;
668         sc = cp->private;
669         g_trace(G_T_TOPOLOGY, "g_dev_callback(%p(%s))", cp, cp->geom->name);
670
671         mtx_lock(&sc->sc_mtx);
672         sc->sc_dev = NULL;
673         sc->sc_alias = NULL;
674         destroy = (sc->sc_active == 0);
675         mtx_unlock(&sc->sc_mtx);
676         if (destroy)
677                 g_post_event(g_dev_destroy, cp, M_WAITOK, NULL);
678 }
679
680 /*
681  * g_dev_orphan()
682  *
683  * Called from below when the provider orphaned us.
684  * - Clear any dump settings.
685  * - Request asynchronous device destruction to prevent any more requests
686  *   from coming in.  The provider is already marked with an error, so
687  *   anything which comes in in the interrim will be returned immediately.
688  */
689
690 static void
691 g_dev_orphan(struct g_consumer *cp)
692 {
693         struct cdev *dev;
694         struct g_dev_softc *sc;
695
696         g_topology_assert();
697         sc = cp->private;
698         dev = sc->sc_dev;
699         g_trace(G_T_TOPOLOGY, "g_dev_orphan(%p(%s))", cp, cp->geom->name);
700
701         /* Reset any dump-area set on this device */
702         if (dev->si_flags & SI_DUMPDEV)
703                 set_dumper(NULL, NULL);
704
705         /* Destroy the struct cdev *so we get no more requests */
706         destroy_dev_sched_cb(dev, g_dev_callback, cp);
707 }
708
709 DECLARE_GEOM_CLASS(g_dev_class, g_dev);