geom_gate userland utility improvements
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

197 line
5.5 KiB

  1. /*-
  2. * Copyright (c) 2004 Pawel Jakub Dawidek <pjd@FreeBSD.org>
  3. * All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. *
  14. * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
  15. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  16. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  17. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
  18. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  19. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  20. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  21. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  22. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  23. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  24. * SUCH DAMAGE.
  25. *
  26. * $FreeBSD$
  27. */
  28. #ifndef _GGATE_H_
  29. #define _GGATE_H_
  30. #include <sys/endian.h>
  31. #include <stdarg.h>
  32. #define G_GATE_PORT 3080
  33. #define G_GATE_RCVBUF 131072
  34. #define G_GATE_SNDBUF 131072
  35. #define G_GATE_QUEUE_SIZE 1024
  36. #define G_GATE_TIMEOUT 0
  37. #define GGATE_MAGIC "GEOM_GATE "
  38. #define GGATE_VERSION 0
  39. #define GGATE_FLAG_RDONLY 0x0001
  40. #define GGATE_FLAG_WRONLY 0x0002
  41. /*
  42. * If GGATE_FLAG_SEND not GGATE_FLAG_RECV flag is set, this is initial
  43. * connection.
  44. * If GGATE_FLAG_SEND flag is set - this is socket to send data.
  45. * If GGATE_FLAG_RECV flag is set - this is socket to receive data.
  46. */
  47. #define GGATE_FLAG_SEND 0x0004
  48. #define GGATE_FLAG_RECV 0x0008
  49. #define GGATE_CMD_READ 0
  50. #define GGATE_CMD_WRITE 1
  51. extern int g_gate_devfd;
  52. extern int g_gate_verbose;
  53. extern int nagle;
  54. extern unsigned rcvbuf, sndbuf;
  55. struct g_gate_version {
  56. char gv_magic[16];
  57. uint16_t gv_version;
  58. uint16_t gv_error;
  59. } __packed;
  60. /* Client's initial packet. */
  61. struct g_gate_cinit {
  62. char gc_path[PATH_MAX + 1];
  63. uint64_t gc_flags;
  64. uint16_t gc_nconn;
  65. uint32_t gc_token;
  66. } __packed;
  67. /* Server's initial packet. */
  68. struct g_gate_sinit {
  69. uint8_t gs_flags;
  70. uint64_t gs_mediasize;
  71. uint32_t gs_sectorsize;
  72. uint16_t gs_error;
  73. } __packed;
  74. /* Control struct. */
  75. struct g_gate_hdr {
  76. uint8_t gh_cmd; /* command */
  77. uint64_t gh_offset; /* device offset */
  78. uint32_t gh_length; /* size of block */
  79. uint64_t gh_seq; /* request number */
  80. uint16_t gh_error; /* error value (0 if ok) */
  81. } __packed;
  82. void g_gate_vlog(int priority, const char *message, va_list ap);
  83. void g_gate_log(int priority, const char *message, ...);
  84. void g_gate_xvlog(const char *message, va_list ap);
  85. void g_gate_xlog(const char *message, ...);
  86. off_t g_gate_mediasize(int fd);
  87. unsigned g_gate_sectorsize(int fd);
  88. void g_gate_open_device(void);
  89. void g_gate_close_device(void);
  90. void g_gate_ioctl(unsigned long req, void *data);
  91. void g_gate_destroy(int unit, int force);
  92. void g_gate_load_module(void);
  93. ssize_t g_gate_recv(int s, void *buf, size_t len, int flags);
  94. ssize_t g_gate_send(int s, const void *buf, size_t len, int flags);
  95. void g_gate_socket_settings(int sfd);
  96. #ifdef LIBGEOM
  97. void g_gate_list(int unit, int verbose);
  98. #endif
  99. in_addr_t g_gate_str2ip(const char *str);
  100. /*
  101. * g_gate_swap2h_* - functions swap bytes to host byte order (from big endian).
  102. * g_gate_swap2n_* - functions swap bytes to network byte order (actually
  103. * to big endian byte order).
  104. */
  105. static __inline void
  106. g_gate_swap2h_version(struct g_gate_version *ver)
  107. {
  108. ver->gv_version = be16toh(ver->gv_version);
  109. ver->gv_error = be16toh(ver->gv_error);
  110. }
  111. static __inline void
  112. g_gate_swap2n_version(struct g_gate_version *ver)
  113. {
  114. ver->gv_version = htobe16(ver->gv_version);
  115. ver->gv_error = htobe16(ver->gv_error);
  116. }
  117. static __inline void
  118. g_gate_swap2h_cinit(struct g_gate_cinit *cinit)
  119. {
  120. cinit->gc_flags = be64toh(cinit->gc_flags);
  121. cinit->gc_nconn = be16toh(cinit->gc_nconn);
  122. cinit->gc_token = be32toh(cinit->gc_token);
  123. }
  124. static __inline void
  125. g_gate_swap2n_cinit(struct g_gate_cinit *cinit)
  126. {
  127. cinit->gc_flags = htobe64(cinit->gc_flags);
  128. cinit->gc_nconn = htobe16(cinit->gc_nconn);
  129. cinit->gc_token = htobe32(cinit->gc_token);
  130. }
  131. static __inline void
  132. g_gate_swap2h_sinit(struct g_gate_sinit *sinit)
  133. {
  134. /* Swap only used fields. */
  135. sinit->gs_mediasize = be64toh(sinit->gs_mediasize);
  136. sinit->gs_sectorsize = be32toh(sinit->gs_sectorsize);
  137. sinit->gs_error = be16toh(sinit->gs_error);
  138. }
  139. static __inline void
  140. g_gate_swap2n_sinit(struct g_gate_sinit *sinit)
  141. {
  142. /* Swap only used fields. */
  143. sinit->gs_mediasize = htobe64(sinit->gs_mediasize);
  144. sinit->gs_sectorsize = htobe32(sinit->gs_sectorsize);
  145. sinit->gs_error = htobe16(sinit->gs_error);
  146. }
  147. static __inline void
  148. g_gate_swap2h_hdr(struct g_gate_hdr *hdr)
  149. {
  150. /* Swap only used fields. */
  151. hdr->gh_offset = be64toh(hdr->gh_offset);
  152. hdr->gh_length = be32toh(hdr->gh_length);
  153. hdr->gh_seq = be64toh(hdr->gh_seq);
  154. hdr->gh_error = be16toh(hdr->gh_error);
  155. }
  156. static __inline void
  157. g_gate_swap2n_hdr(struct g_gate_hdr *hdr)
  158. {
  159. /* Swap only used fields. */
  160. hdr->gh_offset = htobe64(hdr->gh_offset);
  161. hdr->gh_length = htobe32(hdr->gh_length);
  162. hdr->gh_seq = htobe64(hdr->gh_seq);
  163. hdr->gh_error = htobe16(hdr->gh_error);
  164. }
  165. #endif /* _GGATE_H_ */