geom_disk.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. /*-
  2. * SPDX-License-Identifier: BSD-3-Clause
  3. *
  4. * Copyright (c) 2003 Poul-Henning Kamp
  5. * All rights reserved.
  6. *
  7. * This software was developed for the FreeBSD Project by Poul-Henning Kamp
  8. * and NAI Labs, the Security Research Division of Network Associates, Inc.
  9. * under DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"), as part of the
  10. * DARPA CHATS research program.
  11. *
  12. * Redistribution and use in source and binary forms, with or without
  13. * modification, are permitted provided that the following conditions
  14. * are met:
  15. * 1. Redistributions of source code must retain the above copyright
  16. * notice, this list of conditions and the following disclaimer.
  17. * 2. Redistributions in binary form must reproduce the above copyright
  18. * notice, this list of conditions and the following disclaimer in the
  19. * documentation and/or other materials provided with the distribution.
  20. * 3. The names of the authors may not be used to endorse or promote
  21. * products derived from this software without specific prior written
  22. * permission.
  23. *
  24. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  25. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  26. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  27. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  28. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  29. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  30. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  31. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  32. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  33. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  34. * SUCH DAMAGE.
  35. */
  36. #ifndef _GEOM_GEOM_DISK_H_
  37. #define _GEOM_GEOM_DISK_H_
  38. #define DISK_RR_UNKNOWN 0
  39. #define DISK_RR_NON_ROTATING 1
  40. #define DISK_RR_MIN 0x0401
  41. #define DISK_RR_MAX 0xfffe
  42. #ifdef _KERNEL
  43. #include <sys/queue.h>
  44. #include <sys/_lock.h>
  45. #include <sys/_mutex.h>
  46. #include <sys/disk.h>
  47. #define G_DISK_CLASS_NAME "DISK"
  48. struct disk;
  49. typedef int disk_open_t(struct disk *);
  50. typedef int disk_close_t(struct disk *);
  51. typedef void disk_strategy_t(struct bio *bp);
  52. typedef int disk_getattr_t(struct bio *bp);
  53. typedef void disk_gone_t(struct disk *);
  54. typedef int disk_ioctl_t(struct disk *, u_long cmd, void *data,
  55. int fflag, struct thread *td);
  56. /* NB: disk_ioctl_t SHALL be cast'able to d_ioctl_t */
  57. struct g_geom;
  58. struct devstat;
  59. typedef enum {
  60. DISK_INIT_NONE,
  61. DISK_INIT_CREATE,
  62. DISK_INIT_START,
  63. DISK_INIT_DONE
  64. } disk_init_level;
  65. struct disk_alias {
  66. LIST_ENTRY(disk_alias) da_next;
  67. const char *da_alias;
  68. };
  69. struct disk {
  70. /* Fields which are private to geom_disk */
  71. struct g_geom *d_geom;
  72. struct devstat *d_devstat;
  73. int d_goneflag;
  74. int d_destroyed;
  75. disk_init_level d_init_level;
  76. /* Shared fields */
  77. u_int d_flags;
  78. const char *d_name;
  79. u_int d_unit;
  80. struct bio_queue_head *d_queue;
  81. struct mtx *d_lock;
  82. /* Disk methods */
  83. disk_open_t *d_open;
  84. disk_close_t *d_close;
  85. disk_strategy_t *d_strategy;
  86. disk_ioctl_t *d_ioctl;
  87. dumper_t *d_dump;
  88. disk_getattr_t *d_getattr;
  89. disk_gone_t *d_gone;
  90. /* Info fields from driver to geom_disk.c. Valid when open */
  91. u_int d_sectorsize;
  92. off_t d_mediasize;
  93. u_int d_fwsectors;
  94. u_int d_fwheads;
  95. u_int d_maxsize;
  96. off_t d_delmaxsize;
  97. off_t d_stripeoffset;
  98. off_t d_stripesize;
  99. char d_ident[DISK_IDENT_SIZE];
  100. char d_descr[DISK_IDENT_SIZE];
  101. uint16_t d_hba_vendor;
  102. uint16_t d_hba_device;
  103. uint16_t d_hba_subvendor;
  104. uint16_t d_hba_subdevice;
  105. uint16_t d_rotation_rate;
  106. char d_attachment[DISK_IDENT_SIZE];
  107. /* Fields private to the driver */
  108. void *d_drv1;
  109. /* Fields private to geom_disk, to be moved on next version bump */
  110. LIST_HEAD(,disk_alias) d_aliases;
  111. struct g_event *d_cevent;
  112. struct g_event *d_devent;
  113. };
  114. #define DISKFLAG_RESERVED 0x0001 /* Was NEEDSGIANT */
  115. #define DISKFLAG_OPEN 0x0002
  116. #define DISKFLAG_CANDELETE 0x0004
  117. #define DISKFLAG_CANFLUSHCACHE 0x0008
  118. #define DISKFLAG_UNMAPPED_BIO 0x0010
  119. #define DISKFLAG_DIRECT_COMPLETION 0x0020
  120. #define DISKFLAG_CANZONE 0x0080
  121. #define DISKFLAG_WRITE_PROTECT 0x0100
  122. struct disk *disk_alloc(void);
  123. void disk_create(struct disk *disk, int version);
  124. void disk_destroy(struct disk *disk);
  125. void disk_gone(struct disk *disk);
  126. void disk_attr_changed(struct disk *dp, const char *attr, int flag);
  127. void disk_media_changed(struct disk *dp, int flag);
  128. void disk_media_gone(struct disk *dp, int flag);
  129. int disk_resize(struct disk *dp, int flag);
  130. void disk_add_alias(struct disk *disk, const char *);
  131. #define DISK_VERSION_00 0x58561059
  132. #define DISK_VERSION_01 0x5856105a
  133. #define DISK_VERSION_02 0x5856105b
  134. #define DISK_VERSION_03 0x5856105c
  135. #define DISK_VERSION_04 0x5856105d
  136. #define DISK_VERSION_05 0x5856105e
  137. #define DISK_VERSION_06 0x5856105f
  138. #define DISK_VERSION DISK_VERSION_06
  139. #endif /* _KERNEL */
  140. #endif /* _GEOM_GEOM_DISK_H_ */