91e5130800a5f80e64d450235ec72a7527b29ff5
[dragonfly.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 #include <sys/thread.h>
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 static struct lwkt_token disklist_token;
130
131 static struct dev_ops disk_ops = {
132         { "disk", 0, D_DISK },
133         .d_open = diskopen,
134         .d_close = diskclose,
135         .d_read = physread,
136         .d_write = physwrite,
137         .d_ioctl = diskioctl,
138         .d_strategy = diskstrategy,
139         .d_dump = diskdump,
140         .d_psize = diskpsize,
141         .d_clone = diskclone
142 };
143
144 static struct objcache  *disk_msg_cache;
145
146 struct objcache_malloc_args disk_msg_malloc_args = {
147         sizeof(struct disk_msg), M_DISK };
148
149 static struct lwkt_port disk_dispose_port;
150 static struct lwkt_port disk_msg_port;
151
152
153 static int
154 disk_probe_slice(struct disk *dp, cdev_t dev, int slice, int reprobe)
155 {
156         struct disk_info *info = &dp->d_info;
157         struct diskslice *sp = &dp->d_slice->dss_slices[slice];
158         disklabel_ops_t ops;
159         struct partinfo part;
160         const char *msg;
161         cdev_t ndev;
162         unsigned long i;
163
164         //lp.opaque = NULL;
165
166         ops = &disklabel32_ops;
167         msg = ops->op_readdisklabel(dev, sp, &sp->ds_label, info);
168         if (msg && !strcmp(msg, "no disk label")) {
169                 devfs_debug(DEVFS_DEBUG_DEBUG, "disk_probe_slice: trying with disklabel64\n");
170                 ops = &disklabel64_ops;
171                 msg = ops->op_readdisklabel(dev, sp, &sp->ds_label, info);
172         }
173         devfs_debug(DEVFS_DEBUG_DEBUG, "disk_probe_slice: label: %s\n", (msg)?msg:"is NULL");
174         if (msg == NULL) {
175                 devfs_debug(DEVFS_DEBUG_DEBUG, "disk_probe_slice: found %d partitions in the label\n", ops->op_getnumparts(sp->ds_label));
176                 if (slice != WHOLE_DISK_SLICE)
177                         ops->op_adjust_label_reserved(dp->d_slice, slice, sp);
178                 else
179                         sp->ds_reserved = 0;
180
181                 sp->ds_ops = ops;
182                 devfs_debug(DEVFS_DEBUG_DEBUG, "disk_probe_slice: lp.opaque: %x\n", sp->ds_label.opaque);
183                 for (i = 0; i < ops->op_getnumparts(sp->ds_label); i++) {
184                         ops->op_loadpartinfo(sp->ds_label, i, &part);
185                         devfs_debug(DEVFS_DEBUG_DEBUG, "disk_probe_slice: partinfo says fstype=%d for part %d\n", part.fstype, i);
186                         if (part.fstype) {
187                                 if (reprobe &&
188                                         (ndev = devfs_find_device_by_name("%s%c",
189                                         dev->si_name, 'a'+ (char)i))) {
190                                         /* Device already exists and is still valid */
191                                         devfs_debug(DEVFS_DEBUG_DEBUG, "disk_probe_slice: reprobing and device remained valid, mark it\n");
192                                         ndev->si_flags |= SI_REPROBE_TEST;
193                                 } else {
194                                         ndev = make_dev(&disk_ops,
195                                                 dkmakeminor(dkunit(dp->d_cdev), slice, i),
196                                                 UID_ROOT, GID_OPERATOR, 0640,
197                                                 "%s%c", dev->si_name, 'a'+ (char)i);
198                                         ndev->si_disk = dp;
199                                         if (dp->d_info.d_serialno) {
200                                                 make_dev_alias(ndev, "serno/%s.s%d%c", dp->d_info.d_serialno, slice - 1, 'a' + (char)i);
201                                         }
202                                         ndev->si_flags |= SI_REPROBE_TEST;
203                                 }
204
205                                 devfs_debug(DEVFS_DEBUG_DEBUG, "disk_probe_slice:end: lp.opaque: %x\n", ndev->si_disk->d_slice->dss_slices[slice].ds_label.opaque);
206                         }
207                 }
208         } else if (info->d_dsflags & DSO_COMPATLABEL) {
209                 msg = NULL;
210                 if (sp->ds_size >= 0x100000000ULL)
211                         ops = &disklabel64_ops;
212                 else
213                         ops = &disklabel32_ops;
214                 sp->ds_label = ops->op_clone_label(info, sp);
215         } else {
216                 if (sp->ds_type == DOSPTYP_386BSD /* XXX */)
217                         log(LOG_WARNING, "%s: cannot find label (%s)\n",
218                             dev->si_name, msg);
219         }
220
221         if (msg == NULL) {
222                 sp->ds_wlabel = FALSE;
223         }
224
225         return (msg ? EINVAL : 0);
226 }
227
228
229 static void
230 disk_probe(struct disk *dp, int reprobe)
231 {
232         struct disk_info *info = &dp->d_info;
233         cdev_t dev = dp->d_cdev;
234         cdev_t ndev;
235         int error, i, sno;
236         struct diskslice *sp;
237
238         KKASSERT (info->d_media_blksize != 0);
239
240         dp->d_slice = dsmakeslicestruct(BASE_SLICE, info);
241
242         error = mbrinit(dev, info, &(dp->d_slice));
243         if (error)
244                 return;
245
246         for (i = 0; i < dp->d_slice->dss_nslices; i++) {
247                 /*
248                  * Ignore the whole-disk slice, it has already been created.
249                  */
250                 if (i == WHOLE_DISK_SLICE)
251                         continue;
252                 sp = &dp->d_slice->dss_slices[i];
253
254                 /*
255                  * Handle s0.  s0 is a compatibility slice if there are no
256                  * other slices and it has not otherwise been set up, else
257                  * we ignore it.
258                  */
259                 if (i == COMPATIBILITY_SLICE) {
260                         sno = 0;
261                         if (sp->ds_type == 0 &&
262                             dp->d_slice->dss_nslices == BASE_SLICE) {
263                                 sp->ds_size = info->d_media_blocks;
264                                 sp->ds_reserved = 0;
265                         }
266                 } else {
267                         sno = i - 1;
268                         sp->ds_reserved = 0;
269                 }
270
271                 /*
272                  * Ignore 0-length slices
273                  */
274                 if (sp->ds_size == 0)
275                         continue;
276
277                 if (reprobe &&
278                     (ndev = devfs_find_device_by_name("%ss%d",
279                                                       dev->si_name, sno))) {
280                         /*
281                          * Device already exists and is still valid
282                          */
283                         ndev->si_flags |= SI_REPROBE_TEST;
284                 } else {
285                         /*
286                          * Else create new device
287                          */
288                         ndev = make_dev(&disk_ops,
289                                         dkmakewholeslice(dkunit(dev), i),
290                                         UID_ROOT, GID_OPERATOR, 0640,
291                                         "%ss%d", dev->si_name, sno);
292                         if (dp->d_info.d_serialno) {
293                                 make_dev_alias(ndev, "serno/%s.s%d",
294                                                dp->d_info.d_serialno, sno);
295                         }
296                         ndev->si_disk = dp;
297                         ndev->si_flags |= SI_REPROBE_TEST;
298                 }
299                 sp->ds_dev = ndev;
300                 if (sp->ds_type == DOSPTYP_386BSD) {
301                         if (dp->d_slice->dss_first_bsd_slice == 0)
302                                 dp->d_slice->dss_first_bsd_slice = i;
303                         disk_probe_slice(dp, ndev, i, reprobe);
304                 }
305         }
306 }
307
308
309 static void
310 disk_msg_core(void *arg)
311 {
312     uint8_t  run = 1;
313         struct disk     *dp;
314         struct diskslice *sp;
315         lwkt_tokref ilock;
316     disk_msg_t msg;
317
318         lwkt_initport_thread(&disk_msg_port, curthread);
319         wakeup(curthread);
320
321     while (run) {
322         msg = (disk_msg_t)lwkt_waitport(&disk_msg_port, 0);
323                 devfs_debug(DEVFS_DEBUG_DEBUG, "disk_msg_core, new msg: %x\n", (unsigned int)msg->hdr.u.ms_result);
324
325         switch (msg->hdr.u.ms_result) {
326
327         case DISK_DISK_PROBE:
328                         dp = (struct disk *)msg->load;
329                         disk_probe(dp, 0);
330                         break;
331
332                 case DISK_DISK_DESTROY:
333                         dp = (struct disk *)msg->load;
334                         devfs_destroy_subnames(dp->d_cdev->si_name);
335                         devfs_destroy_dev(dp->d_cdev);
336                         lwkt_gettoken(&ilock, &disklist_token);
337                         LIST_REMOVE(dp, d_list);
338                         lwkt_reltoken(&ilock);
339 #if 0
340                         devfs_destroy_dev(dp->d_rawdev); /* XXX: needed? when? */
341 #endif
342                         if (dp->d_info.d_serialno) {
343                                 kfree(dp->d_info.d_serialno, M_TEMP);
344                                 dp->d_info.d_serialno = NULL;
345                         }
346                         break;
347
348                 case DISK_UNPROBE:
349                         dp = (struct disk *)msg->load;
350                         devfs_destroy_subnames(dp->d_cdev->si_name);
351                         break;
352
353                 case DISK_SLICE_REPROBE:
354                         dp = (struct disk *)msg->load;
355                         sp = (struct diskslice *)msg->load2;
356                         devfs_clr_subnames_flag(sp->ds_dev->si_name, SI_REPROBE_TEST);
357                         devfs_debug(DEVFS_DEBUG_DEBUG,
358                                     "DISK_SLICE_REPROBE: %s\n",
359                                     sp->ds_dev->si_name);
360                         disk_probe_slice(dp, sp->ds_dev, dkslice(sp->ds_dev), 1);
361                         devfs_destroy_subnames_without_flag(sp->ds_dev->si_name,
362                                                                                                 SI_REPROBE_TEST);
363                         break;
364
365                 case DISK_DISK_REPROBE:
366                         dp = (struct disk *)msg->load;
367                         devfs_clr_subnames_flag(dp->d_cdev->si_name, SI_REPROBE_TEST);
368                         devfs_debug(DEVFS_DEBUG_DEBUG,
369                                     "DISK_DISK_REPROBE: %s\n",
370                                     dp->d_cdev->si_name);
371                         disk_probe(dp, 1);
372                         devfs_destroy_subnames_without_flag(dp->d_cdev->si_name,
373                                                                                                 SI_REPROBE_TEST);
374                         break;
375
376                 case DISK_SYNC:
377                         break;
378
379         default:
380             devfs_debug(DEVFS_DEBUG_WARNING, "disk_msg_core: unknown message received at core\n");
381         }
382
383         lwkt_replymsg((lwkt_msg_t)msg, 0);
384     }
385         lwkt_exit();
386 }
387
388
389 /**
390  * Acts as a message drain. Any message that is replied to here gets destroyed and
391  * the memory freed.
392  **/
393 static void
394 disk_msg_autofree_reply(lwkt_port_t port, lwkt_msg_t msg)
395 {
396     objcache_put(disk_msg_cache, msg);
397 }
398
399
400 void
401 disk_msg_send(uint32_t cmd, void *load, void *load2)
402 {
403     disk_msg_t disk_msg;
404         lwkt_port_t port = &disk_msg_port;
405
406     disk_msg = objcache_get(disk_msg_cache, M_WAITOK);
407
408     lwkt_initmsg(&disk_msg->hdr, &disk_dispose_port, 0);
409
410         disk_msg->hdr.u.ms_result = cmd;
411         disk_msg->load = load;
412         disk_msg->load2 = load2;
413         KKASSERT(port);
414     lwkt_sendmsg(port, (lwkt_msg_t)disk_msg);
415 }
416
417 void
418 disk_msg_send_sync(uint32_t cmd, void *load, void *load2)
419 {
420         struct lwkt_port rep_port;
421         disk_msg_t disk_msg = objcache_get(disk_msg_cache, M_WAITOK);
422         disk_msg_t      msg_incoming;
423         lwkt_port_t port = &disk_msg_port;
424
425         lwkt_initport_thread(&rep_port, curthread);
426         lwkt_initmsg(&disk_msg->hdr, &rep_port, 0);
427
428         disk_msg->hdr.u.ms_result = cmd;
429         disk_msg->load = load;
430         disk_msg->load2 = load2;
431
432         KKASSERT(port);
433     lwkt_sendmsg(port, (lwkt_msg_t)disk_msg);
434         msg_incoming = lwkt_waitport(&rep_port, 0);
435 }
436
437 /*
438  * Create a raw device for the dev_ops template (which is returned).  Also
439  * create a slice and unit managed disk and overload the user visible
440  * device space with it.
441  *
442  * NOTE: The returned raw device is NOT a slice and unit managed device.
443  * It is an actual raw device representing the raw disk as specified by
444  * the passed dev_ops.  The disk layer not only returns such a raw device,
445  * it also uses it internally when passing (modified) commands through.
446  */
447 cdev_t
448 disk_create(int unit, struct disk *dp, struct dev_ops *raw_ops)
449 {
450         lwkt_tokref ilock;
451         cdev_t rawdev;
452
453         rawdev = make_only_dev(raw_ops, dkmakewholedisk(unit),
454                             UID_ROOT, GID_OPERATOR, 0640,
455                             "%s%d", raw_ops->head.name, unit);
456
457
458         bzero(dp, sizeof(*dp));
459
460         dp->d_rawdev = rawdev;
461         dp->d_raw_ops = raw_ops;
462         dp->d_dev_ops = &disk_ops;
463         dp->d_cdev = make_dev(&disk_ops,
464                             dkmakewholedisk(unit),
465                             UID_ROOT, GID_OPERATOR, 0640,
466                             "%s%d", raw_ops->head.name, unit);
467
468         dp->d_cdev->si_disk = dp;
469
470         devfs_debug(DEVFS_DEBUG_DEBUG, "disk_create called for %s\n",
471                         dp->d_cdev->si_name);
472         lwkt_gettoken(&ilock, &disklist_token);
473         LIST_INSERT_HEAD(&disklist, dp, d_list);
474         lwkt_reltoken(&ilock);
475         return (dp->d_rawdev);
476 }
477
478
479 static void
480 _setdiskinfo(struct disk *disk, struct disk_info *info)
481 {
482         char *oldserialno;
483
484         devfs_debug(DEVFS_DEBUG_DEBUG,
485                     "_setdiskinfo called for disk -1-: %x\n", disk);
486         oldserialno = disk->d_info.d_serialno;
487         bcopy(info, &disk->d_info, sizeof(disk->d_info));
488         info = &disk->d_info;
489
490         /*
491          * The serial number is duplicated so the caller can throw
492          * their copy away.
493          */
494         if (info->d_serialno && info->d_serialno[0]) {
495                 info->d_serialno = kstrdup(info->d_serialno, M_TEMP);
496                 if (disk->d_cdev) {
497                         make_dev_alias(disk->d_cdev, "serno/%s",
498                                         info->d_serialno);
499                 }
500         } else {
501                 info->d_serialno = NULL;
502         }
503         if (oldserialno)
504                 kfree(oldserialno, M_TEMP);
505
506         /*
507          * The caller may set d_media_size or d_media_blocks and we
508          * calculate the other.
509          */
510         KKASSERT(info->d_media_size == 0 || info->d_media_blksize == 0);
511         if (info->d_media_size == 0 && info->d_media_blocks) {
512                 info->d_media_size = (u_int64_t)info->d_media_blocks * 
513                                      info->d_media_blksize;
514         } else if (info->d_media_size && info->d_media_blocks == 0 && 
515                    info->d_media_blksize) {
516                 info->d_media_blocks = info->d_media_size / 
517                                        info->d_media_blksize;
518         }
519
520         /*
521          * The si_* fields for rawdev are not set until after the
522          * disk_create() call, so someone using the cooked version
523          * of the raw device (i.e. da0s0) will not get the right
524          * si_iosize_max unless we fix it up here.
525          */
526         if (disk->d_cdev && disk->d_rawdev &&
527             disk->d_cdev->si_iosize_max == 0) {
528                 disk->d_cdev->si_iosize_max = disk->d_rawdev->si_iosize_max;
529                 disk->d_cdev->si_bsize_phys = disk->d_rawdev->si_bsize_phys;
530                 disk->d_cdev->si_bsize_best = disk->d_rawdev->si_bsize_best;
531         }
532 }
533
534 /*
535  * Disk drivers must call this routine when media parameters are available
536  * or have changed.
537  */
538 void
539 disk_setdiskinfo(struct disk *disk, struct disk_info *info)
540 {
541         _setdiskinfo(disk, info);
542         devfs_debug(DEVFS_DEBUG_DEBUG, "disk_setdiskinfo called for disk -2-: %x\n", disk);
543         disk_msg_send(DISK_DISK_PROBE, disk, NULL);
544 }
545
546 void
547 disk_setdiskinfo_sync(struct disk *disk, struct disk_info *info)
548 {
549         _setdiskinfo(disk, info);
550         devfs_debug(DEVFS_DEBUG_DEBUG, "disk_setdiskinfo_sync called for disk -2-: %x\n", disk);
551         disk_msg_send_sync(DISK_DISK_PROBE, disk, NULL);
552 }
553
554 /*
555  * This routine is called when an adapter detaches.  The higher level
556  * managed disk device is destroyed while the lower level raw device is
557  * released.
558  */
559 void
560 disk_destroy(struct disk *disk)
561 {
562         disk_msg_send_sync(DISK_DISK_DESTROY, disk, NULL);
563         return;
564 }
565
566 int
567 disk_dumpcheck(cdev_t dev, u_int64_t *count, u_int64_t *blkno, u_int *secsize)
568 {
569         struct partinfo pinfo;
570         int error;
571
572         bzero(&pinfo, sizeof(pinfo));
573         error = dev_dioctl(dev, DIOCGPART, (void *)&pinfo, 0, proc0.p_ucred);
574         if (error)
575                 return (error);
576         if (pinfo.media_blksize == 0)
577                 return (ENXIO);
578         *count = (u_int64_t)Maxmem * PAGE_SIZE / pinfo.media_blksize;
579         if (dumplo64 < pinfo.reserved_blocks ||
580             dumplo64 + *count > pinfo.media_blocks) {
581                 return (ENOSPC);
582         }
583         *blkno = dumplo64 + pinfo.media_offset / pinfo.media_blksize;
584         *secsize = pinfo.media_blksize;
585         return (0);
586 }
587
588 void
589 disk_unprobe(struct disk *disk)
590 {
591         if (disk == NULL)
592                 return;
593
594         disk_msg_send_sync(DISK_UNPROBE, disk, NULL);
595 }
596
597 void 
598 disk_invalidate (struct disk *disk)
599 {
600         devfs_debug(DEVFS_DEBUG_INFO, "disk_invalidate for %s\n", disk->d_cdev->si_name);
601         if (disk->d_slice)
602                 dsgone(&disk->d_slice);
603 }
604
605 struct disk *
606 disk_enumerate(struct disk *disk)
607 {
608         struct disk *dp;
609         lwkt_tokref ilock;
610
611         lwkt_gettoken(&ilock, &disklist_token);
612         if (!disk)
613                 dp = (LIST_FIRST(&disklist));
614         else
615                 dp = (LIST_NEXT(disk, d_list));
616         lwkt_reltoken(&ilock);
617
618         return dp;
619 }
620
621 static 
622 int
623 sysctl_disks(SYSCTL_HANDLER_ARGS)
624 {
625         struct disk *disk;
626         int error, first;
627
628         disk = NULL;
629         first = 1;
630
631         while ((disk = disk_enumerate(disk))) {
632                 if (!first) {
633                         error = SYSCTL_OUT(req, " ", 1);
634                         if (error)
635                                 return error;
636                 } else {
637                         first = 0;
638                 }
639                 error = SYSCTL_OUT(req, disk->d_rawdev->si_name,
640                                    strlen(disk->d_rawdev->si_name));
641                 if (error)
642                         return error;
643         }
644         error = SYSCTL_OUT(req, "", 1);
645         return error;
646 }
647  
648 SYSCTL_PROC(_kern, OID_AUTO, disks, CTLTYPE_STRING | CTLFLAG_RD, NULL, 0,
649     sysctl_disks, "A", "names of available disks");
650
651 /*
652  * Open a disk device or partition.
653  */
654 static
655 int
656 diskopen(struct dev_open_args *ap)
657 {
658         cdev_t dev = ap->a_head.a_dev;
659         struct disk *dp;
660         int error;
661
662         devfs_debug(DEVFS_DEBUG_DEBUG, "diskopen: name is %s\n", dev->si_name);
663
664         /*
665          * dp can't be NULL here XXX.
666          */
667         dp = dev->si_disk;
668         if (dp == NULL)
669                 return (ENXIO);
670         error = 0;
671
672         /*
673          * Deal with open races
674          */
675         while (dp->d_flags & DISKFLAG_LOCK) {
676                 dp->d_flags |= DISKFLAG_WANTED;
677                 error = tsleep(dp, PCATCH, "diskopen", hz);
678                 if (error)
679                         return (error);
680         }
681         dp->d_flags |= DISKFLAG_LOCK;
682
683         devfs_debug(DEVFS_DEBUG_DEBUG, "diskopen: -2- name is %s\n", dev->si_name);
684
685         /*
686          * Open the underlying raw device.
687          */
688         if (!dsisopen(dp->d_slice)) {
689 #if 0
690                 if (!pdev->si_iosize_max)
691                         pdev->si_iosize_max = dev->si_iosize_max;
692 #endif
693                 error = dev_dopen(dp->d_rawdev, ap->a_oflags,
694                                   ap->a_devtype, ap->a_cred);
695         }
696 #if 0
697         /*
698          * Inherit properties from the underlying device now that it is
699          * open.
700          */
701         dev_dclone(dev);
702 #endif
703
704         if (error)
705                 goto out;
706         error = dsopen(dev, ap->a_devtype, dp->d_info.d_dsflags,
707                        &dp->d_slice, &dp->d_info);
708         if (!dsisopen(dp->d_slice)) {
709                 dev_dclose(dp->d_rawdev, ap->a_oflags, ap->a_devtype);
710         }
711 out:    
712         dp->d_flags &= ~DISKFLAG_LOCK;
713         if (dp->d_flags & DISKFLAG_WANTED) {
714                 dp->d_flags &= ~DISKFLAG_WANTED;
715                 wakeup(dp);
716         }
717         
718         return(error);
719 }
720
721 /*
722  * Close a disk device or partition
723  */
724 static
725 int
726 diskclose(struct dev_close_args *ap)
727 {
728         cdev_t dev = ap->a_head.a_dev;
729         struct disk *dp;
730         int error;
731
732         error = 0;
733         dp = dev->si_disk;
734
735         devfs_debug(DEVFS_DEBUG_DEBUG, "diskclose: name %s\n", dev->si_name);
736
737         dsclose(dev, ap->a_devtype, dp->d_slice);
738         if (!dsisopen(dp->d_slice)) {
739                 devfs_debug(DEVFS_DEBUG_DEBUG, "diskclose is closing underlying device\n");
740                 error = dev_dclose(dp->d_rawdev, ap->a_fflag, ap->a_devtype);
741         }
742         return (error);
743 }
744
745 /*
746  * First execute the ioctl on the disk device, and if it isn't supported 
747  * try running it on the backing device.
748  */
749 static
750 int
751 diskioctl(struct dev_ioctl_args *ap)
752 {
753         cdev_t dev = ap->a_head.a_dev;
754         struct disk *dp;
755         int error;
756
757         dp = dev->si_disk;
758         if (dp == NULL)
759                 return (ENXIO);
760
761         devfs_debug(DEVFS_DEBUG_DEBUG, "diskioctl: cmd is: %x (name: %s)\n", ap->a_cmd, dev->si_name);
762         devfs_debug(DEVFS_DEBUG_DEBUG, "diskioctl: &dp->d_slice is: %x, %x\n", &dp->d_slice, dp->d_slice);
763
764         devfs_debug(DEVFS_DEBUG_DEBUG, "diskioctl:1: says lp.opaque is: %x\n", dp->d_slice->dss_slices[0].ds_label.opaque);
765
766         error = dsioctl(dev, ap->a_cmd, ap->a_data, ap->a_fflag,
767                         &dp->d_slice, &dp->d_info);
768
769         devfs_debug(DEVFS_DEBUG_DEBUG, "diskioctl:2: says lp.opaque is: %x\n", dp->d_slice->dss_slices[0].ds_label.opaque);
770
771         if (error == ENOIOCTL) {
772                 devfs_debug(DEVFS_DEBUG_DEBUG, "diskioctl: going for dev_dioctl instead!\n");
773                 error = dev_dioctl(dp->d_rawdev, ap->a_cmd, ap->a_data,
774                                    ap->a_fflag, ap->a_cred);
775         }
776         return (error);
777 }
778
779 /*
780  * Execute strategy routine
781  */
782 static
783 int
784 diskstrategy(struct dev_strategy_args *ap)
785 {
786         cdev_t dev = ap->a_head.a_dev;
787         struct bio *bio = ap->a_bio;
788         struct bio *nbio;
789         struct disk *dp;
790
791         dp = dev->si_disk;
792
793         if (dp == NULL) {
794                 bio->bio_buf->b_error = ENXIO;
795                 bio->bio_buf->b_flags |= B_ERROR;
796                 biodone(bio);
797                 return(0);
798         }
799         KKASSERT(dev->si_disk == dp);
800
801         /*
802          * The dscheck() function will also transform the slice relative
803          * block number i.e. bio->bio_offset into a block number that can be
804          * passed directly to the underlying raw device.  If dscheck()
805          * returns NULL it will have handled the bio for us (e.g. EOF
806          * or error due to being beyond the device size).
807          */
808         if ((nbio = dscheck(dev, bio, dp->d_slice)) != NULL) {
809                 dev_dstrategy(dp->d_rawdev, nbio);
810         } else {
811                 devfs_debug(DEVFS_DEBUG_DEBUG, "diskstrategy: dscheck NULL!!! biodone time!\n");
812                 biodone(bio);
813         }
814         return(0);
815 }
816
817 /*
818  * Return the partition size in ?blocks?
819  */
820 static
821 int
822 diskpsize(struct dev_psize_args *ap)
823 {
824         cdev_t dev = ap->a_head.a_dev;
825         struct disk *dp;
826
827         dp = dev->si_disk;
828         if (dp == NULL)
829                 return(ENODEV);
830         ap->a_result = dssize(dev, &dp->d_slice);
831         return(0);
832 }
833
834 /*
835  * When new device entries are instantiated, make sure they inherit our
836  * si_disk structure and block and iosize limits from the raw device.
837  *
838  * This routine is always called synchronously in the context of the 
839  * client.
840  *
841  * XXX The various io and block size constraints are not always initialized
842  * properly by devices.
843  */
844 static
845 int
846 diskclone(struct dev_clone_args *ap)
847 {
848         cdev_t dev = ap->a_head.a_dev;
849         struct disk *dp;
850         dp = dev->si_disk;
851
852         KKASSERT(dp != NULL);
853         dev->si_disk = dp;
854         dev->si_iosize_max = dp->d_rawdev->si_iosize_max;
855         dev->si_bsize_phys = dp->d_rawdev->si_bsize_phys;
856         dev->si_bsize_best = dp->d_rawdev->si_bsize_best;
857         return(0);
858 }
859
860 int
861 diskdump(struct dev_dump_args *ap)
862 {
863         cdev_t dev = ap->a_head.a_dev;
864         struct disk *dp = dev->si_disk;
865         int error;
866
867         error = disk_dumpcheck(dev, &ap->a_count, &ap->a_blkno, &ap->a_secsize);
868         if (error == 0) {
869                 ap->a_head.a_dev = dp->d_rawdev;
870                 error = dev_doperate(&ap->a_head);
871         }
872
873         return(error);
874 }
875
876
877 SYSCTL_INT(_debug_sizeof, OID_AUTO, diskslices, CTLFLAG_RD, 
878     0, sizeof(struct diskslices), "sizeof(struct diskslices)");
879
880 SYSCTL_INT(_debug_sizeof, OID_AUTO, disk, CTLFLAG_RD, 
881     0, sizeof(struct disk), "sizeof(struct disk)");
882
883
884 /*
885  * Seek sort for disks.
886  *
887  * The bio_queue keep two queues, sorted in ascending block order.  The first
888  * queue holds those requests which are positioned after the current block
889  * (in the first request); the second, which starts at queue->switch_point,
890  * holds requests which came in after their block number was passed.  Thus
891  * we implement a one way scan, retracting after reaching the end of the drive
892  * to the first request on the second queue, at which time it becomes the
893  * first queue.
894  *
895  * A one-way scan is natural because of the way UNIX read-ahead blocks are
896  * allocated.
897  */
898 void
899 bioqdisksort(struct bio_queue_head *bioq, struct bio *bio)
900 {
901         struct bio *bq;
902         struct bio *bn;
903         struct bio *be;
904         
905         be = TAILQ_LAST(&bioq->queue, bio_queue);
906         /*
907          * If the queue is empty or we are an
908          * ordered transaction, then it's easy.
909          */
910         if ((bq = bioq_first(bioq)) == NULL || 
911             (bio->bio_buf->b_flags & B_ORDERED) != 0) {
912                 bioq_insert_tail(bioq, bio);
913                 return;
914         } else if (bioq->insert_point != NULL) {
915
916                 /*
917                  * A certain portion of the list is
918                  * "locked" to preserve ordering, so
919                  * we can only insert after the insert
920                  * point.
921                  */
922                 bq = bioq->insert_point;
923         } else {
924
925                 /*
926                  * If we lie before the last removed (currently active)
927                  * request, and are not inserting ourselves into the
928                  * "locked" portion of the list, then we must add ourselves
929                  * to the second request list.
930                  */
931                 if (bio->bio_offset < bioq->last_offset) {
932                         bq = bioq->switch_point;
933                         /*
934                          * If we are starting a new secondary list,
935                          * then it's easy.
936                          */
937                         if (bq == NULL) {
938                                 bioq->switch_point = bio;
939                                 bioq_insert_tail(bioq, bio);
940                                 return;
941                         }
942                         /*
943                          * If we lie ahead of the current switch point,
944                          * insert us before the switch point and move
945                          * the switch point.
946                          */
947                         if (bio->bio_offset < bq->bio_offset) {
948                                 bioq->switch_point = bio;
949                                 TAILQ_INSERT_BEFORE(bq, bio, bio_act);
950                                 return;
951                         }
952                 } else {
953                         if (bioq->switch_point != NULL)
954                                 be = TAILQ_PREV(bioq->switch_point,
955                                                 bio_queue, bio_act);
956                         /*
957                          * If we lie between last_offset and bq,
958                          * insert before bq.
959                          */
960                         if (bio->bio_offset < bq->bio_offset) {
961                                 TAILQ_INSERT_BEFORE(bq, bio, bio_act);
962                                 return;
963                         }
964                 }
965         }
966
967         /*
968          * Request is at/after our current position in the list.
969          * Optimize for sequential I/O by seeing if we go at the tail.
970          */
971         if (bio->bio_offset > be->bio_offset) {
972                 TAILQ_INSERT_AFTER(&bioq->queue, be, bio, bio_act);
973                 return;
974         }
975
976         /* Otherwise, insertion sort */
977         while ((bn = TAILQ_NEXT(bq, bio_act)) != NULL) {
978                 
979                 /*
980                  * We want to go after the current request if it is the end
981                  * of the first request list, or if the next request is a
982                  * larger cylinder than our request.
983                  */
984                 if (bn == bioq->switch_point
985                  || bio->bio_offset < bn->bio_offset)
986                         break;
987                 bq = bn;
988         }
989         TAILQ_INSERT_AFTER(&bioq->queue, bq, bio, bio_act);
990 }
991
992 /*
993  * Disk error is the preface to plaintive error messages
994  * about failing disk transfers.  It prints messages of the form
995
996 hp0g: hard error reading fsbn 12345 of 12344-12347 (hp0 bn %d cn %d tn %d sn %d)
997
998  * if the offset of the error in the transfer and a disk label
999  * are both available.  blkdone should be -1 if the position of the error
1000  * is unknown; the disklabel pointer may be null from drivers that have not
1001  * been converted to use them.  The message is printed with kprintf
1002  * if pri is LOG_PRINTF, otherwise it uses log at the specified priority.
1003  * The message should be completed (with at least a newline) with kprintf
1004  * or log(-1, ...), respectively.  There is no trailing space.
1005  */
1006 void
1007 diskerr(struct bio *bio, cdev_t dev, const char *what, int pri, int donecnt)
1008 {
1009         struct buf *bp = bio->bio_buf;
1010         const char *term;
1011
1012         switch(bp->b_cmd) {
1013         case BUF_CMD_READ:
1014                 term = "read";
1015                 break;
1016         case BUF_CMD_WRITE:
1017                 term = "write";
1018                 break;
1019         default:
1020                 term = "access";
1021                 break;
1022         }
1023         //sname = dsname(dev, unit, slice, part, partname);
1024         kprintf("%s: %s %sing ", dev->si_name, what, term);
1025         kprintf("offset %012llx for %d",
1026                 (long long)bio->bio_offset,
1027                 bp->b_bcount);
1028
1029         if (donecnt)
1030                 kprintf(" (%d bytes completed)", donecnt);
1031 }
1032
1033 /*
1034  * Locate a disk device
1035  */
1036 cdev_t
1037 disk_locate(const char *devname)
1038 {
1039         return devfs_find_device_by_name(devname);
1040 }
1041
1042
1043 void
1044 disk_config(void *arg)
1045 {
1046         disk_msg_send_sync(DISK_SYNC, NULL, NULL);
1047 }
1048
1049
1050 static void
1051 disk_init(void)
1052 {
1053         struct thread* td_core;
1054         devfs_debug(DEVFS_DEBUG_DEBUG, "disk_init() called\n");
1055
1056     disk_msg_cache = objcache_create("disk-msg-cache", 0, 0,
1057                         NULL, NULL, NULL,
1058                         objcache_malloc_alloc,
1059                         objcache_malloc_free,
1060                         &disk_msg_malloc_args );
1061
1062         lwkt_token_init(&disklist_token);
1063
1064         /* Initialize the reply-only port which acts as a message drain */
1065         lwkt_initport_replyonly(&disk_dispose_port, disk_msg_autofree_reply);
1066
1067         lwkt_create(disk_msg_core, /*args*/NULL, &td_core, NULL,
1068                     0, 0, "disk_msg_core");
1069
1070         tsleep(td_core, 0, "diskcore", 0);
1071 }
1072
1073
1074 static void
1075 disk_uninit(void)
1076 {
1077         devfs_debug(DEVFS_DEBUG_DEBUG, "devfs_uninit() called\n");
1078
1079         objcache_destroy(disk_msg_cache);
1080
1081 }
1082
1083
1084 SYSINIT(disk_register, SI_SUB_PRE_DRIVERS, SI_ORDER_FIRST, disk_init, NULL);
1085 SYSUNINIT(disk_register, SI_SUB_PRE_DRIVERS, SI_ORDER_ANY, disk_uninit, NULL);