DEVS - rollup - kernel core
[games.git] / sys / kern / subr_disk.c
1 /*
2  * Copyright (c) 2003,2004 The DragonFly Project.  All rights reserved.
3  * 
4  * This code is derived from software contributed to The DragonFly Project
5  * by Matthew Dillon <dillon@backplane.com>
6  * 
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in
15  *    the documentation and/or other materials provided with the
16  *    distribution.
17  * 3. Neither the name of The DragonFly Project nor the names of its
18  *    contributors may be used to endorse or promote products derived
19  *    from this software without specific, prior written permission.
20  * 
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
25  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  * 
34  * ----------------------------------------------------------------------------
35  * "THE BEER-WARE LICENSE" (Revision 42):
36  * <phk@FreeBSD.ORG> wrote this file.  As long as you retain this notice you
37  * can do whatever you want with this stuff. If we meet some day, and you think
38  * this stuff is worth it, you can buy me a beer in return.   Poul-Henning Kamp
39  * ----------------------------------------------------------------------------
40  *
41  * Copyright (c) 1982, 1986, 1988, 1993
42  *      The Regents of the University of California.  All rights reserved.
43  * (c) UNIX System Laboratories, Inc.
44  * All or some portions of this file are derived from material licensed
45  * to the University of California by American Telephone and Telegraph
46  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
47  * the permission of UNIX System Laboratories, Inc.
48  *
49  * Redistribution and use in source and binary forms, with or without
50  * modification, are permitted provided that the following conditions
51  * are met:
52  * 1. Redistributions of source code must retain the above copyright
53  *    notice, this list of conditions and the following disclaimer.
54  * 2. Redistributions in binary form must reproduce the above copyright
55  *    notice, this list of conditions and the following disclaimer in the
56  *    documentation and/or other materials provided with the distribution.
57  * 3. All advertising materials mentioning features or use of this software
58  *    must display the following acknowledgement:
59  *      This product includes software developed by the University of
60  *      California, Berkeley and its contributors.
61  * 4. Neither the name of the University nor the names of its contributors
62  *    may be used to endorse or promote products derived from this software
63  *    without specific prior written permission.
64  *
65  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
66  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
67  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
68  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
69  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
70  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
71  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
72  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
73  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
74  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
75  * SUCH DAMAGE.
76  *
77  *      @(#)ufs_disksubr.c      8.5 (Berkeley) 1/21/94
78  * $FreeBSD: src/sys/kern/subr_disk.c,v 1.20.2.6 2001/10/05 07:14:57 peter Exp $
79  * $FreeBSD: src/sys/ufs/ufs/ufs_disksubr.c,v 1.44.2.3 2001/03/05 05:42:19 obrien Exp $
80  * $DragonFly: src/sys/kern/subr_disk.c,v 1.40 2008/06/05 18:06:32 swildner Exp $
81  */
82
83 #include <sys/param.h>
84 #include <sys/systm.h>
85 #include <sys/kernel.h>
86 #include <sys/proc.h>
87 #include <sys/sysctl.h>
88 #include <sys/buf.h>
89 #include <sys/conf.h>
90 #include <sys/disklabel.h>
91 #include <sys/disklabel32.h>
92 #include <sys/disklabel64.h>
93 #include <sys/diskslice.h>
94 #include <sys/diskmbr.h>
95 #include <sys/disk.h>
96 #include <sys/malloc.h>
97 #include <sys/sysctl.h>
98 #include <machine/md_var.h>
99 #include <sys/ctype.h>
100 #include <sys/syslog.h>
101 #include <sys/device.h>
102 #include <sys/msgport.h>
103 #include <sys/msgport2.h>
104 #include <sys/buf2.h>
105 #include <vfs/devfs/devfs.h>
106
107 #include <sys/thread2.h>
108
109 #include <sys/queue.h>
110 #include <sys/lock.h>
111
112 static MALLOC_DEFINE(M_DISK, "disk", "disk data");
113
114 static void disk_msg_autofree_reply(lwkt_port_t, lwkt_msg_t);
115 static void disk_msg_core(void *);
116 static int disk_probe_slice(struct disk *dp, cdev_t dev, int slice, int reprobe);
117 static void disk_probe(struct disk *dp, int reprobe);
118 static void _setdiskinfo(struct disk *disk, struct disk_info *info);
119
120 static d_open_t diskopen;
121 static d_close_t diskclose; 
122 static d_ioctl_t diskioctl;
123 static d_strategy_t diskstrategy;
124 static d_psize_t diskpsize;
125 static d_clone_t diskclone;
126 static d_dump_t diskdump;
127
128 static LIST_HEAD(, disk) disklist = LIST_HEAD_INITIALIZER(&disklist);
129
130 static struct dev_ops disk_ops = {
131         { "disk", 0, D_DISK },
132         .d_open = diskopen,
133         .d_close = diskclose,
134         .d_read = physread,
135         .d_write = physwrite,
136         .d_ioctl = diskioctl,
137         .d_strategy = diskstrategy,
138         .d_dump = diskdump,
139         .d_psize = diskpsize,
140         .d_clone = diskclone
141 };
142
143 static struct objcache  *disk_msg_cache;
144
145 struct objcache_malloc_args disk_msg_malloc_args = {
146         sizeof(struct disk_msg), M_DISK };
147
148 static struct lwkt_port disk_dispose_port;
149 static struct lwkt_port disk_msg_port;
150
151
152 static int
153 disk_probe_slice(struct disk *dp, cdev_t dev, int slice, int reprobe)
154 {
155         struct disk_info *info = &dp->d_info;
156         struct diskslice *sp = &dp->d_slice->dss_slices[slice];
157         disklabel_ops_t ops;
158         struct partinfo part;
159         const char *msg;
160         cdev_t ndev;
161         unsigned long i;
162
163         //lp.opaque = NULL;
164
165         ops = &disklabel32_ops;
166         msg = ops->op_readdisklabel(dev, sp, &sp->ds_label, info);
167         if (msg && !strcmp(msg, "no disk label")) {
168                 devfs_debug(DEVFS_DEBUG_DEBUG, "disk_probe_slice: trying with disklabel64\n");
169                 ops = &disklabel64_ops;
170                 msg = ops->op_readdisklabel(dev, sp, &sp->ds_label, info);
171         }
172         devfs_debug(DEVFS_DEBUG_DEBUG, "disk_probe_slice: label: %s\n", (msg)?msg:"is NULL");
173         if (msg == NULL) {
174                 devfs_debug(DEVFS_DEBUG_DEBUG, "disk_probe_slice: found %d partitions in the label\n", ops->op_getnumparts(sp->ds_label));
175                 if (slice != WHOLE_DISK_SLICE)
176                         ops->op_adjust_label_reserved(dp->d_slice, slice, sp);
177                 else
178                         sp->ds_reserved = 0;
179
180                 sp->ds_ops = ops;
181                 devfs_debug(DEVFS_DEBUG_DEBUG, "disk_probe_slice: lp.opaque: %x\n", sp->ds_label.opaque);
182                 for (i = 0; i < ops->op_getnumparts(sp->ds_label); i++) {
183                         ops->op_loadpartinfo(sp->ds_label, i, &part);
184                         devfs_debug(DEVFS_DEBUG_DEBUG, "disk_probe_slice: partinfo says fstype=%d for part %d\n", part.fstype, i);
185                         if (part.fstype) {
186                                 if (reprobe &&
187                                         (ndev = devfs_find_device_by_name("%s%c",
188                                         dev->si_name, 'a'+ (char)i))) {
189                                         /* Device already exists and is still valid */
190                                         devfs_debug(DEVFS_DEBUG_DEBUG, "disk_probe_slice: reprobing and device remained valid, mark it\n");
191                                         ndev->si_flags |= SI_REPROBE_TEST;
192                                 } else {
193                                         ndev = make_dev(&disk_ops,
194                                                 dkmakeminor(dkunit(dp->d_cdev), slice, i),
195                                                 UID_ROOT, GID_OPERATOR, 0640,
196                                                 "%s%c", dev->si_name, 'a'+ (char)i);
197 #if 0
198                                         make_dev_alias(ndev, "disk-by-id/diskTEST-sliceTEST-part%d", i);
199 #endif
200                                         ndev->si_disk = dp;
201                                         ndev->si_flags |= SI_REPROBE_TEST;
202                                 }
203
204                                 devfs_debug(DEVFS_DEBUG_DEBUG, "disk_probe_slice:end: lp.opaque: %x\n", ndev->si_disk->d_slice->dss_slices[slice].ds_label.opaque);
205                         }
206                 }
207         } else if (info->d_dsflags & DSO_COMPATLABEL) {
208                 msg = NULL;
209                 if (sp->ds_size >= 0x100000000ULL)
210                         ops = &disklabel64_ops;
211                 else
212                         ops = &disklabel32_ops;
213                 sp->ds_label = ops->op_clone_label(info, sp);
214         } else {
215                 if (sp->ds_type == DOSPTYP_386BSD /* XXX */)
216                         log(LOG_WARNING, "%s: cannot find label (%s)\n",
217                             dev->si_name, msg);
218         }
219
220         if (msg == NULL) {
221                 sp->ds_wlabel = FALSE;
222         }
223
224         return (msg ? EINVAL : 0);
225 }
226
227
228 static void
229 disk_probe(struct disk *dp, int reprobe)
230 {
231         struct disk_info *info = &dp->d_info;
232         cdev_t dev = dp->d_cdev;
233         cdev_t ndev;
234         int error, i;
235
236         devfs_debug(DEVFS_DEBUG_DEBUG, "disk_probe called for %s\n", dp->d_cdev->si_name);
237         KKASSERT (info->d_media_blksize != 0);
238         devfs_debug(DEVFS_DEBUG_DEBUG, "disk_probe: info set!\n");
239
240         dp->d_slice = dsmakeslicestruct(BASE_SLICE, info);
241
242         error = mbrinit(dev, info, &(dp->d_slice));
243         devfs_debug(DEVFS_DEBUG_DEBUG, "disk_probe: &dp->d_slice is: %x, %x\n", &dp->d_slice, dp->d_slice);
244         if (error != 0) {
245                 devfs_debug(DEVFS_DEBUG_DEBUG, "disk_probe: mbrinit() failed with error: %d\n", error);
246                 return;
247         } else {
248                 devfs_debug(DEVFS_DEBUG_DEBUG, "mbrinit succeeded, found %d slices\n", dp->d_slice->dss_nslices);
249                 if (dp->d_slice->dss_nslices == BASE_SLICE) {
250                         dp->d_slice->dss_slices[COMPATIBILITY_SLICE].ds_size = info->d_media_blocks;
251                         dp->d_slice->dss_slices[COMPATIBILITY_SLICE].ds_reserved = 0;
252                         if (reprobe &&
253                                 (ndev = devfs_find_device_by_name("%ss%d",
254                                 dev->si_name, COMPATIBILITY_SLICE))) {
255                                 /* Device already exists and is still valid */
256                                 devfs_debug(DEVFS_DEBUG_DEBUG, "disk_probe: reprobing and device remained valid, mark it\n");
257                                 ndev->si_flags |= SI_REPROBE_TEST;
258                         } else {
259                                 ndev = make_dev(&disk_ops,
260                                         dkmakewholeslice(dkunit(dev), COMPATIBILITY_SLICE),
261                                         UID_ROOT, GID_OPERATOR, 0640,
262                                         "%ss%d", dev->si_name, COMPATIBILITY_SLICE);
263
264                                 ndev->si_disk = dp;
265                                 ndev->si_flags |= SI_REPROBE_TEST;
266                         }
267
268                         dp->d_slice->dss_slices[COMPATIBILITY_SLICE].ds_dev = ndev;
269                         devfs_debug(DEVFS_DEBUG_DEBUG, "disk_probe: type of slice is :%x\n", dp->d_slice->dss_slices[COMPATIBILITY_SLICE].ds_type );
270
271                         dp->d_slice->dss_first_bsd_slice = COMPATIBILITY_SLICE;
272                         disk_probe_slice(dp, ndev, COMPATIBILITY_SLICE, reprobe);
273
274                 }
275                 for (i = BASE_SLICE; i < dp->d_slice->dss_nslices; i++) {
276                         if (reprobe &&
277                                 (ndev = devfs_find_device_by_name("%ss%d",
278                                 dev->si_name, i-1))) {
279                                 /* Device already exists and is still valid */
280                                 devfs_debug(DEVFS_DEBUG_DEBUG, "disk_probe: reprobing and device remained valid, mark it\n");
281                                 ndev->si_flags |= SI_REPROBE_TEST;
282                         } else {
283                                 ndev = make_dev(&disk_ops,
284                                         dkmakewholeslice(dkunit(dev), i),
285                                         UID_ROOT, GID_OPERATOR, 0640,
286                                         "%ss%d", dev->si_name, i-1);
287 #if 0
288                                 make_dev_alias(ndev, "disk-by-id/diskTEST-slice%d", i-1);
289 #endif
290                                 ndev->si_disk = dp;
291                                 ndev->si_flags |= SI_REPROBE_TEST;
292                         }
293                         dp->d_slice->dss_slices[i].ds_reserved = 0;
294                         dp->d_slice->dss_slices[i].ds_dev = ndev;
295                         devfs_debug(DEVFS_DEBUG_DEBUG, "disk_probe-> type of slice is :%x\n", dp->d_slice->dss_slices[i].ds_type );
296                         if (dp->d_slice->dss_slices[i].ds_type == DOSPTYP_386BSD) {
297                                 if (!dp->d_slice->dss_first_bsd_slice)
298                                         dp->d_slice->dss_first_bsd_slice = i;
299                                 disk_probe_slice(dp, ndev, i, reprobe);
300                         }
301                 }
302         }
303 }
304
305
306 static void
307 disk_msg_core(void *arg)
308 {
309     uint8_t  run = 1;
310         struct disk     *dp;
311         struct diskslice *sp;
312     disk_msg_t msg;
313
314
315         lwkt_initport_thread(&disk_msg_port, curthread);
316         wakeup(curthread);
317
318     while (run) {
319         msg = (disk_msg_t)lwkt_waitport(&disk_msg_port, 0);
320                 devfs_debug(DEVFS_DEBUG_DEBUG, "disk_msg_core, new msg: %x\n", (unsigned int)msg->hdr.u.ms_result);
321
322         switch (msg->hdr.u.ms_result) {
323
324         case DISK_DISK_PROBE:
325                         dp = (struct disk *)msg->load;
326                         disk_probe(dp, 0);
327                         break;
328
329                 case DISK_DISK_DESTROY:
330                         dp = (struct disk *)msg->load;
331                         devfs_destroy_subnames(dp->d_cdev->si_name);
332                         devfs_destroy_dev(dp->d_cdev);
333                         LIST_REMOVE(dp, d_list);
334                         //devfs_destroy_dev(dp->d_rawdev); //XXX: needed? when?
335                         break;
336
337                 case DISK_UNPROBE:
338                         dp = (struct disk *)msg->load;
339                         devfs_destroy_subnames(dp->d_cdev->si_name);
340                         break;
341
342                 case DISK_SLICE_REPROBE:
343                         dp = (struct disk *)msg->load;
344                         sp = (struct diskslice *)msg->load2;
345                         devfs_clr_subnames_flag(sp->ds_dev->si_name, SI_REPROBE_TEST);
346                         devfs_debug(DEVFS_DEBUG_DEBUG,
347                                     "DISK_SLICE_REPROBE: %s\n",
348                                     sp->ds_dev->si_name);
349                         disk_probe_slice(dp, sp->ds_dev, dkslice(sp->ds_dev), 1);
350                         devfs_destroy_subnames_without_flag(sp->ds_dev->si_name,
351                                                                                                 SI_REPROBE_TEST);
352                         break;
353
354                 case DISK_DISK_REPROBE:
355                         dp = (struct disk *)msg->load;
356                         devfs_clr_subnames_flag(dp->d_cdev->si_name, SI_REPROBE_TEST);
357                         devfs_debug(DEVFS_DEBUG_DEBUG,
358                                     "DISK_DISK_REPROBE: %s\n",
359                                     dp->d_cdev->si_name);
360                         disk_probe(dp, 1);
361                         devfs_destroy_subnames_without_flag(dp->d_cdev->si_name,
362                                                                                                 SI_REPROBE_TEST);
363                         break;
364
365                 case DISK_SYNC:
366                         break;
367
368         default:
369             devfs_debug(DEVFS_DEBUG_WARNING, "disk_msg_core: unknown message received at core\n");
370         }
371
372         lwkt_replymsg((lwkt_msg_t)msg, 0);
373     }
374         lwkt_exit();
375 }
376
377
378 /**
379  * Acts as a message drain. Any message that is replied to here gets destroyed and
380  * the memory freed.
381  **/
382 static void
383 disk_msg_autofree_reply(lwkt_port_t port, lwkt_msg_t msg)
384 {
385     objcache_put(disk_msg_cache, msg);
386 }
387
388
389 void
390 disk_msg_send(uint32_t cmd, void *load, void *load2)
391 {
392     disk_msg_t disk_msg;
393         lwkt_port_t port = &disk_msg_port;
394
395     disk_msg = objcache_get(disk_msg_cache, M_WAITOK);
396
397     lwkt_initmsg(&disk_msg->hdr, &disk_dispose_port, 0);
398
399         disk_msg->hdr.u.ms_result = cmd;
400         disk_msg->load = load;
401         disk_msg->load2 = load2;
402         KKASSERT(port);
403     lwkt_sendmsg(port, (lwkt_msg_t)disk_msg);
404 }
405
406 void
407 disk_msg_send_sync(uint32_t cmd, void *load, void *load2)
408 {
409         struct lwkt_port rep_port;
410         disk_msg_t disk_msg = objcache_get(disk_msg_cache, M_WAITOK);
411         disk_msg_t      msg_incoming;
412         lwkt_port_t port = &disk_msg_port;
413
414         lwkt_initport_thread(&rep_port, curthread);
415         lwkt_initmsg(&disk_msg->hdr, &rep_port, 0);
416
417         disk_msg->hdr.u.ms_result = cmd;
418         disk_msg->load = load;
419         disk_msg->load2 = load2;
420
421         KKASSERT(port);
422     lwkt_sendmsg(port, (lwkt_msg_t)disk_msg);
423         msg_incoming = lwkt_waitport(&rep_port, 0);
424 }
425
426 /*
427  * Create a raw device for the dev_ops template (which is returned).  Also
428  * create a slice and unit managed disk and overload the user visible
429  * device space with it.
430  *
431  * NOTE: The returned raw device is NOT a slice and unit managed device.
432  * It is an actual raw device representing the raw disk as specified by
433  * the passed dev_ops.  The disk layer not only returns such a raw device,
434  * it also uses it internally when passing (modified) commands through.
435  */
436 cdev_t
437 disk_create(int unit, struct disk *dp, struct dev_ops *raw_ops)
438 {
439         cdev_t rawdev;
440
441         rawdev = make_only_dev(raw_ops, dkmakewholedisk(unit),
442                             UID_ROOT, GID_OPERATOR, 0640,
443                             "%s%d", raw_ops->head.name, unit);
444
445
446         bzero(dp, sizeof(*dp));
447
448         dp->d_rawdev = rawdev;
449         dp->d_raw_ops = raw_ops;
450         dp->d_dev_ops = &disk_ops;
451         dp->d_cdev = make_dev(&disk_ops,
452                             dkmakewholedisk(unit),
453                             UID_ROOT, GID_OPERATOR, 0640,
454                             "%s%d", raw_ops->head.name, unit);
455
456         dp->d_cdev->si_disk = dp;
457
458         devfs_debug(DEVFS_DEBUG_DEBUG, "disk_create called for %s\n", dp->d_cdev->si_name);
459         LIST_INSERT_HEAD(&disklist, dp, d_list);
460         return (dp->d_rawdev);
461 }
462
463
464 static void
465 _setdiskinfo(struct disk *disk, struct disk_info *info)
466 {
467         devfs_debug(DEVFS_DEBUG_DEBUG, "_setdiskinfo called for disk -1-: %x\n", disk);
468         bcopy(info, &disk->d_info, sizeof(disk->d_info));
469         info = &disk->d_info;
470
471         KKASSERT(info->d_media_size == 0 || info->d_media_blksize == 0);
472         if (info->d_media_size == 0 && info->d_media_blocks) {
473                 info->d_media_size = (u_int64_t)info->d_media_blocks * 
474                                      info->d_media_blksize;
475         } else if (info->d_media_size && info->d_media_blocks == 0 && 
476                    info->d_media_blksize) {
477                 info->d_media_blocks = info->d_media_size / 
478                                        info->d_media_blksize;
479         }
480
481         /*
482          * The si_* fields for rawdev are not set until after the
483          * disk_create() call, so someone using the cooked version
484          * of the raw device (i.e. da0s0) will not get the right
485          * si_iosize_max unless we fix it up here.
486          */
487         if (disk->d_cdev && disk->d_rawdev &&
488             disk->d_cdev->si_iosize_max == 0) {
489                 disk->d_cdev->si_iosize_max = disk->d_rawdev->si_iosize_max;
490                 disk->d_cdev->si_bsize_phys = disk->d_rawdev->si_bsize_phys;
491                 disk->d_cdev->si_bsize_best = disk->d_rawdev->si_bsize_best;
492         }
493 }
494
495 /*
496  * Disk drivers must call this routine when media parameters are available
497  * or have changed.
498  */
499 void
500 disk_setdiskinfo(struct disk *disk, struct disk_info *info)
501 {
502         _setdiskinfo(disk, info);
503         devfs_debug(DEVFS_DEBUG_DEBUG, "disk_setdiskinfo called for disk -2-: %x\n", disk);
504         disk_msg_send(DISK_DISK_PROBE, disk, NULL);
505 }
506
507 void
508 disk_setdiskinfo_sync(struct disk *disk, struct disk_info *info)
509 {
510         _setdiskinfo(disk, info);
511         devfs_debug(DEVFS_DEBUG_DEBUG, "disk_setdiskinfo_sync called for disk -2-: %x\n", disk);
512         disk_msg_send_sync(DISK_DISK_PROBE, disk, NULL);
513 }
514
515 /*
516  * This routine is called when an adapter detaches.  The higher level
517  * managed disk device is destroyed while the lower level raw device is
518  * released.
519  */
520 void
521 disk_destroy(struct disk *disk)
522 {
523         disk_msg_send_sync(DISK_DISK_DESTROY, disk, NULL);
524         return;
525 }
526
527 int
528 disk_dumpcheck(cdev_t dev, u_int64_t *count, u_int64_t *blkno, u_int *secsize)
529 {
530         struct partinfo pinfo;
531         int error;
532
533         bzero(&pinfo, sizeof(pinfo));
534         error = dev_dioctl(dev, DIOCGPART, (void *)&pinfo, 0, proc0.p_ucred);
535         if (error)
536                 return (error);
537         if (pinfo.media_blksize == 0)
538                 return (ENXIO);
539         *count = (u_int64_t)Maxmem * PAGE_SIZE / pinfo.media_blksize;
540         if (dumplo64 < pinfo.reserved_blocks ||
541             dumplo64 + *count > pinfo.media_blocks) {
542                 return (ENOSPC);
543         }
544         *blkno = dumplo64 + pinfo.media_offset / pinfo.media_blksize;
545         *secsize = pinfo.media_blksize;
546         return (0);
547 }
548
549 void
550 disk_unprobe(struct disk *disk)
551 {
552         if (disk == NULL)
553                 return;
554
555         disk_msg_send_sync(DISK_UNPROBE, disk, NULL);
556 }
557
558 void 
559 disk_invalidate (struct disk *disk)
560 {
561         devfs_debug(DEVFS_DEBUG_INFO, "disk_invalidate for %s\n", disk->d_cdev->si_name);
562         if (disk->d_slice)
563                 dsgone(&disk->d_slice);
564 }
565
566 struct disk *
567 disk_enumerate(struct disk *disk)
568 {
569         if (!disk)
570                 return (LIST_FIRST(&disklist));
571         else
572                 return (LIST_NEXT(disk, d_list));
573 }
574
575 static 
576 int
577 sysctl_disks(SYSCTL_HANDLER_ARGS)
578 {
579         struct disk *disk;
580         int error, first;
581
582         disk = NULL;
583         first = 1;
584
585         while ((disk = disk_enumerate(disk))) {
586                 if (!first) {
587                         error = SYSCTL_OUT(req, " ", 1);
588                         if (error)
589                                 return error;
590                 } else {
591                         first = 0;
592                 }
593                 error = SYSCTL_OUT(req, disk->d_rawdev->si_name,
594                                    strlen(disk->d_rawdev->si_name));
595                 if (error)
596                         return error;
597         }
598         error = SYSCTL_OUT(req, "", 1);
599         return error;
600 }
601  
602 SYSCTL_PROC(_kern, OID_AUTO, disks, CTLTYPE_STRING | CTLFLAG_RD, NULL, 0,
603     sysctl_disks, "A", "names of available disks");
604
605 /*
606  * Open a disk device or partition.
607  */
608 static
609 int
610 diskopen(struct dev_open_args *ap)
611 {
612         cdev_t dev = ap->a_head.a_dev;
613         struct disk *dp;
614         int error;
615
616         devfs_debug(DEVFS_DEBUG_DEBUG, "diskopen: name is %s\n", dev->si_name);
617
618         /*
619          * dp can't be NULL here XXX.
620          */
621         dp = dev->si_disk;
622         if (dp == NULL)
623                 return (ENXIO);
624         error = 0;
625
626         /*
627          * Deal with open races
628          */
629         while (dp->d_flags & DISKFLAG_LOCK) {
630                 dp->d_flags |= DISKFLAG_WANTED;
631                 error = tsleep(dp, PCATCH, "diskopen", hz);
632                 if (error)
633                         return (error);
634         }
635         dp->d_flags |= DISKFLAG_LOCK;
636
637         devfs_debug(DEVFS_DEBUG_DEBUG, "diskopen: -2- name is %s\n", dev->si_name);
638
639         /*
640          * Open the underlying raw device.
641          */
642         if (!dsisopen(dp->d_slice)) {
643 #if 0
644                 if (!pdev->si_iosize_max)
645                         pdev->si_iosize_max = dev->si_iosize_max;
646 #endif
647                 error = dev_dopen(dp->d_rawdev, ap->a_oflags,
648                                   ap->a_devtype, ap->a_cred);
649         }
650 #if 0
651         /*
652          * Inherit properties from the underlying device now that it is
653          * open.
654          */
655         dev_dclone(dev);
656 #endif
657
658         if (error)
659                 goto out;
660         error = dsopen(dev, ap->a_devtype, dp->d_info.d_dsflags,
661                        &dp->d_slice, &dp->d_info);
662         if (!dsisopen(dp->d_slice)) {
663                 dev_dclose(dp->d_rawdev, ap->a_oflags, ap->a_devtype);
664         }
665 out:    
666         dp->d_flags &= ~DISKFLAG_LOCK;
667         if (dp->d_flags & DISKFLAG_WANTED) {
668                 dp->d_flags &= ~DISKFLAG_WANTED;
669                 wakeup(dp);
670         }
671         
672         return(error);
673 }
674
675 /*
676  * Close a disk device or partition
677  */
678 static
679 int
680 diskclose(struct dev_close_args *ap)
681 {
682         cdev_t dev = ap->a_head.a_dev;
683         struct disk *dp;
684         int error;
685
686         error = 0;
687         dp = dev->si_disk;
688
689         devfs_debug(DEVFS_DEBUG_DEBUG, "diskclose: name %s\n", dev->si_name);
690
691         dsclose(dev, ap->a_devtype, dp->d_slice);
692         if (!dsisopen(dp->d_slice)) {
693                 devfs_debug(DEVFS_DEBUG_DEBUG, "diskclose is closing underlying device\n");
694                 error = dev_dclose(dp->d_rawdev, ap->a_fflag, ap->a_devtype);
695         }
696         return (error);
697 }
698
699 /*
700  * First execute the ioctl on the disk device, and if it isn't supported 
701  * try running it on the backing device.
702  */
703 static
704 int
705 diskioctl(struct dev_ioctl_args *ap)
706 {
707         cdev_t dev = ap->a_head.a_dev;
708         struct disk *dp;
709         int error;
710
711         dp = dev->si_disk;
712         if (dp == NULL)
713                 return (ENXIO);
714
715         devfs_debug(DEVFS_DEBUG_DEBUG, "diskioctl: cmd is: %x (name: %s)\n", ap->a_cmd, dev->si_name);
716         devfs_debug(DEVFS_DEBUG_DEBUG, "diskioctl: &dp->d_slice is: %x, %x\n", &dp->d_slice, dp->d_slice);
717
718         devfs_debug(DEVFS_DEBUG_DEBUG, "diskioctl:1: says lp.opaque is: %x\n", dp->d_slice->dss_slices[0].ds_label.opaque);
719
720         error = dsioctl(dev, ap->a_cmd, ap->a_data, ap->a_fflag,
721                         &dp->d_slice, &dp->d_info);
722
723         devfs_debug(DEVFS_DEBUG_DEBUG, "diskioctl:2: says lp.opaque is: %x\n", dp->d_slice->dss_slices[0].ds_label.opaque);
724
725         if (error == ENOIOCTL) {
726                 devfs_debug(DEVFS_DEBUG_DEBUG, "diskioctl: going for dev_dioctl instead!\n");
727                 error = dev_dioctl(dp->d_rawdev, ap->a_cmd, ap->a_data,
728                                    ap->a_fflag, ap->a_cred);
729         }
730         return (error);
731 }
732
733 /*
734  * Execute strategy routine
735  */
736 static
737 int
738 diskstrategy(struct dev_strategy_args *ap)
739 {
740         cdev_t dev = ap->a_head.a_dev;
741         struct bio *bio = ap->a_bio;
742         struct bio *nbio;
743         struct disk *dp;
744
745         dp = dev->si_disk;
746
747         if (dp == NULL) {
748                 bio->bio_buf->b_error = ENXIO;
749                 bio->bio_buf->b_flags |= B_ERROR;
750                 biodone(bio);
751                 return(0);
752         }
753         KKASSERT(dev->si_disk == dp);
754
755         /*
756          * The dscheck() function will also transform the slice relative
757          * block number i.e. bio->bio_offset into a block number that can be
758          * passed directly to the underlying raw device.  If dscheck()
759          * returns NULL it will have handled the bio for us (e.g. EOF
760          * or error due to being beyond the device size).
761          */
762         if ((nbio = dscheck(dev, bio, dp->d_slice)) != NULL) {
763                 dev_dstrategy(dp->d_rawdev, nbio);
764         } else {
765                 devfs_debug(DEVFS_DEBUG_DEBUG, "diskstrategy: dscheck NULL!!! biodone time!\n");
766                 biodone(bio);
767         }
768         return(0);
769 }
770
771 /*
772  * Return the partition size in ?blocks?
773  */
774 static
775 int
776 diskpsize(struct dev_psize_args *ap)
777 {
778         cdev_t dev = ap->a_head.a_dev;
779         struct disk *dp;
780
781         dp = dev->si_disk;
782         if (dp == NULL)
783                 return(ENODEV);
784         ap->a_result = dssize(dev, &dp->d_slice);
785         return(0);
786 }
787
788 /*
789  * When new device entries are instantiated, make sure they inherit our
790  * si_disk structure and block and iosize limits from the raw device.
791  *
792  * This routine is always called synchronously in the context of the 
793  * client.
794  *
795  * XXX The various io and block size constraints are not always initialized
796  * properly by devices.
797  */
798 static
799 int
800 diskclone(struct dev_clone_args *ap)
801 {
802         cdev_t dev = ap->a_head.a_dev;
803         struct disk *dp;
804         dp = dev->si_disk;
805
806         KKASSERT(dp != NULL);
807         dev->si_disk = dp;
808         dev->si_iosize_max = dp->d_rawdev->si_iosize_max;
809         dev->si_bsize_phys = dp->d_rawdev->si_bsize_phys;
810         dev->si_bsize_best = dp->d_rawdev->si_bsize_best;
811         return(0);
812 }
813
814 int
815 diskdump(struct dev_dump_args *ap)
816 {
817         cdev_t dev = ap->a_head.a_dev;
818         struct disk *dp = dev->si_disk;
819         int error;
820
821         error = disk_dumpcheck(dev, &ap->a_count, &ap->a_blkno, &ap->a_secsize);
822         if (error == 0) {
823                 ap->a_head.a_dev = dp->d_rawdev;
824                 error = dev_doperate(&ap->a_head);
825         }
826
827         return(error);
828 }
829
830
831 SYSCTL_INT(_debug_sizeof, OID_AUTO, diskslices, CTLFLAG_RD, 
832     0, sizeof(struct diskslices), "sizeof(struct diskslices)");
833
834 SYSCTL_INT(_debug_sizeof, OID_AUTO, disk, CTLFLAG_RD, 
835     0, sizeof(struct disk), "sizeof(struct disk)");
836
837
838 /*
839  * Seek sort for disks.
840  *
841  * The bio_queue keep two queues, sorted in ascending block order.  The first
842  * queue holds those requests which are positioned after the current block
843  * (in the first request); the second, which starts at queue->switch_point,
844  * holds requests which came in after their block number was passed.  Thus
845  * we implement a one way scan, retracting after reaching the end of the drive
846  * to the first request on the second queue, at which time it becomes the
847  * first queue.
848  *
849  * A one-way scan is natural because of the way UNIX read-ahead blocks are
850  * allocated.
851  */
852 void
853 bioqdisksort(struct bio_queue_head *bioq, struct bio *bio)
854 {
855         struct bio *bq;
856         struct bio *bn;
857         struct bio *be;
858         
859         be = TAILQ_LAST(&bioq->queue, bio_queue);
860         /*
861          * If the queue is empty or we are an
862          * ordered transaction, then it's easy.
863          */
864         if ((bq = bioq_first(bioq)) == NULL || 
865             (bio->bio_buf->b_flags & B_ORDERED) != 0) {
866                 bioq_insert_tail(bioq, bio);
867                 return;
868         } else if (bioq->insert_point != NULL) {
869
870                 /*
871                  * A certain portion of the list is
872                  * "locked" to preserve ordering, so
873                  * we can only insert after the insert
874                  * point.
875                  */
876                 bq = bioq->insert_point;
877         } else {
878
879                 /*
880                  * If we lie before the last removed (currently active)
881                  * request, and are not inserting ourselves into the
882                  * "locked" portion of the list, then we must add ourselves
883                  * to the second request list.
884                  */
885                 if (bio->bio_offset < bioq->last_offset) {
886                         bq = bioq->switch_point;
887                         /*
888                          * If we are starting a new secondary list,
889                          * then it's easy.
890                          */
891                         if (bq == NULL) {
892                                 bioq->switch_point = bio;
893                                 bioq_insert_tail(bioq, bio);
894                                 return;
895                         }
896                         /*
897                          * If we lie ahead of the current switch point,
898                          * insert us before the switch point and move
899                          * the switch point.
900                          */
901                         if (bio->bio_offset < bq->bio_offset) {
902                                 bioq->switch_point = bio;
903                                 TAILQ_INSERT_BEFORE(bq, bio, bio_act);
904                                 return;
905                         }
906                 } else {
907                         if (bioq->switch_point != NULL)
908                                 be = TAILQ_PREV(bioq->switch_point,
909                                                 bio_queue, bio_act);
910                         /*
911                          * If we lie between last_offset and bq,
912                          * insert before bq.
913                          */
914                         if (bio->bio_offset < bq->bio_offset) {
915                                 TAILQ_INSERT_BEFORE(bq, bio, bio_act);
916                                 return;
917                         }
918                 }
919         }
920
921         /*
922          * Request is at/after our current position in the list.
923          * Optimize for sequential I/O by seeing if we go at the tail.
924          */
925         if (bio->bio_offset > be->bio_offset) {
926                 TAILQ_INSERT_AFTER(&bioq->queue, be, bio, bio_act);
927                 return;
928         }
929
930         /* Otherwise, insertion sort */
931         while ((bn = TAILQ_NEXT(bq, bio_act)) != NULL) {
932                 
933                 /*
934                  * We want to go after the current request if it is the end
935                  * of the first request list, or if the next request is a
936                  * larger cylinder than our request.
937                  */
938                 if (bn == bioq->switch_point
939                  || bio->bio_offset < bn->bio_offset)
940                         break;
941                 bq = bn;
942         }
943         TAILQ_INSERT_AFTER(&bioq->queue, bq, bio, bio_act);
944 }
945
946 /*
947  * Disk error is the preface to plaintive error messages
948  * about failing disk transfers.  It prints messages of the form
949
950 hp0g: hard error reading fsbn 12345 of 12344-12347 (hp0 bn %d cn %d tn %d sn %d)
951
952  * if the offset of the error in the transfer and a disk label
953  * are both available.  blkdone should be -1 if the position of the error
954  * is unknown; the disklabel pointer may be null from drivers that have not
955  * been converted to use them.  The message is printed with kprintf
956  * if pri is LOG_PRINTF, otherwise it uses log at the specified priority.
957  * The message should be completed (with at least a newline) with kprintf
958  * or log(-1, ...), respectively.  There is no trailing space.
959  */
960 void
961 diskerr(struct bio *bio, cdev_t dev, const char *what, int pri, int donecnt)
962 {
963         struct buf *bp = bio->bio_buf;
964         const char *term;
965
966         switch(bp->b_cmd) {
967         case BUF_CMD_READ:
968                 term = "read";
969                 break;
970         case BUF_CMD_WRITE:
971                 term = "write";
972                 break;
973         default:
974                 term = "access";
975                 break;
976         }
977         //sname = dsname(dev, unit, slice, part, partname);
978         kprintf("%s: %s %sing ", dev->si_name, what, term);
979         kprintf("offset %012llx for %d",
980                 (long long)bio->bio_offset,
981                 bp->b_bcount);
982
983         if (donecnt)
984                 kprintf(" (%d bytes completed)", donecnt);
985 }
986
987 /*
988  * Locate a disk device
989  */
990 cdev_t
991 disk_locate(const char *devname)
992 {
993         return devfs_find_device_by_name(devname);
994 }
995
996
997 void
998 disk_config(void *arg)
999 {
1000         disk_msg_send_sync(DISK_SYNC, NULL, NULL);
1001 }
1002
1003
1004 static void
1005 disk_init(void)
1006 {
1007         struct thread* td_core;
1008         devfs_debug(DEVFS_DEBUG_DEBUG, "disk_init() called\n");
1009
1010     disk_msg_cache = objcache_create("disk-msg-cache", 0, 0,
1011                         NULL, NULL, NULL,
1012                         objcache_malloc_alloc,
1013                         objcache_malloc_free,
1014                         &disk_msg_malloc_args );
1015
1016         /* Initialize the reply-only port which acts as a message drain */
1017         lwkt_initport_replyonly(&disk_dispose_port, disk_msg_autofree_reply);
1018
1019         lwkt_create(disk_msg_core, /*args*/NULL, &td_core, NULL,
1020                     0, 0, "disk_msg_core");
1021
1022         tsleep(td_core, 0, "diskcore", 0);
1023 }
1024
1025
1026 static void
1027 disk_uninit(void)
1028 {
1029         devfs_debug(DEVFS_DEBUG_DEBUG, "devfs_uninit() called\n");
1030
1031         objcache_destroy(disk_msg_cache);
1032
1033 }
1034
1035
1036 SYSINIT(disk_register, SI_SUB_PRE_DRIVERS, SI_ORDER_FIRST, disk_init, NULL);
1037 SYSUNINIT(disk_register, SI_SUB_PRE_DRIVERS, SI_ORDER_ANY, disk_uninit, NULL);