package cstruct

  1. Overview
  2. Docs
Access C-like structures directly from OCaml

Install

Dune Dependency

Authors

Maintainers

Sources

cstruct-v5.1.1.tbz
sha256=55d1f42cb85f7872fee499c5ed382aea17b06d55d1709e071d1ba85c7a09fef3
sha512=c3aa9a5a9125a1d022506a76fd7cdf32b21edcdc9df1202d8a9f382d02a28a33fea9a958f79e9302907ade1fce3f166b620c320aed6486e3efcc9a7464379cab

Description

Cstruct is a library and syntax extension to make it easier to access C-like structures directly from OCaml. It supports both reading and writing to these structures, and they are accessed via the Bigarray module.

Tags

org:mirage org:ocamllabs

Published: 25 Nov 2019

README

Cstruct -- access C-like structures directly from OCaml

v5.1.1

Cstruct is a library and syntax extension to make it easier to access C-like structures directly from OCaml. It supports both reading and writing to these structures, and they are accessed via the Bigarray module.

Installation

This repository provides several packages that can be installed via the opam package manager:

  • cstruct: the core Cstruct library

  • cstruct-sexp: serialisers into s-expression format of Cstructs

  • cstruct-unix: provide Unix variations of the read/write functions using file descriptors

  • cstruct-async: provide Async Pipe and Bigstring support

  • cstruct-lwt: provide Lwt variants of read/write functions

  • ppx_cstruct: a PPX syntax extension (see below)

The libraries depend on OCaml version 4.03.0 and later, since it provides a ppx extension point. The old camlp4 syntax extension is nolonger available; the last cstruct release which contained it was v1.9.0.

Local development

You can build the library via dune, using make or dune build directly. Since everything is built via dune, you can also place this repository within a wider dune workspace in order to make local modifications across repositories.

Usage

PPX

The PPX processor is used by passing the OCaml source code through the ppx_cstruct binary. An example pcap description is:

[%%cstruct
type pcap_header = {
  magic_number: uint32_t;   (* magic number *)
  version_major: uint16_t;  (* major version number *)
  version_minor: uint16_t;  (* minor version number *)
  thiszone: uint32_t;       (* GMT to local correction *)
  sigfigs: uint32_t;        (* accuracy of timestamps *)
  snaplen: uint32_t;        (* max length of captured packets, in octets *)
  network: uint32_t;        (* data link type *)
} [@@little_endian]]

[%%cstruct
type pcap_packet = {
  ts_sec: uint32_t;         (* timestamp seconds *)
  ts_usec: uint32_t;        (* timestamp microseconds *)
  incl_len: uint32_t;       (* number of octets of packet saved in file *)
  orig_len: uint32_t;       (* actual length of packet *)
} [@@little_endian]]

[%%cstruct
type ethernet = {
  dst: uint8_t [@len 6];
  src: uint8_t [@len 6];
  ethertype: uint16_t;
} [@@big_endian]]

[%%cstruct
type ipv4 = {
  hlen_version: uint8_t;
  tos: uint8_t;
  len: uint16_t;
  id: uint16_t;
  off: uint16_t;
  ttl: uint8_t;
  proto: uint8_t;
  csum: uint16_t;
  src: uint8_t [@len 4];
  dst: uint8_t [@len 4];
} [@@big_endian]]

This auto-generates generates functions of the form below in the ml file:

let sizeof_pcap_packet = 16
let get_pcap_packet_ts_sec v = Cstruct.LE.get_uint32 v 0
let set_pcap_packet_ts_sec v x = Cstruct.LE.set_uint32 v 0 x
let get_pcap_packet_ts_usec v = Cstruct.LE.get_uint32 v 4
let set_pcap_packet_ts_usec v x = Cstruct.LE.set_uint32 v 4 x
let get_pcap_packet_incl_len v = Cstruct.LE.get_uint32 v 8
let set_pcap_packet_incl_len v x = Cstruct.LE.set_uint32 v 8 x
let get_pcap_packet_orig_len v = Cstruct.LE.get_uint32 v 12
let set_pcap_packet_orig_len v x = Cstruct.LE.set_uint32 v 12 x

let sizeof_ethernet = 14
let get_ethernet_dst src = Cstruct.sub src 0 6
let copy_ethernet_dst src = Cstruct.copy src 0 6
let set_ethernet_dst src srcoff dst =
  Cstruct.blit_from_string src srcoff dst 0 6
let blit_ethernet_dst src srcoff dst = Cstruct.blit src srcoff dst 0 6
let get_ethernet_src src = Cstruct.sub src 6 6
let copy_ethernet_src src = Cstruct.copy src 6 6
let set_ethernet_src src srcoff dst =
  Cstruct.blit_from_string src srcoff dst 6 6
let blit_ethernet_src src srcoff dst = Cstruct.blit src srcoff dst 6 6
let get_ethernet_ethertype v = Cstruct.BE.get_uint16 v 12
let set_ethernet_ethertype v x = Cstruct.BE.set_uint16 v 12 x

The mli file will have signatures of this form:

val sizeof_pcap_packet : int
val get_pcap_packet_ts_sec : Cstruct.t -> Cstruct.uint32
val set_pcap_packet_ts_sec : Cstruct.t -> Cstruct.uint32 -> unit
val get_pcap_packet_ts_usec : Cstruct.t -> Cstruct.uint32
val set_pcap_packet_ts_usec : Cstruct.t -> Cstruct.uint32 -> unit
val get_pcap_packet_incl_len : Cstruct.t -> Cstruct.uint32
val set_pcap_packet_incl_len : Cstruct.t -> Cstruct.uint32 -> unit
val get_pcap_packet_orig_len : Cstruct.t -> Cstruct.uint32
val set_pcap_packet_orig_len : Cstruct.t -> Cstruct.uint32 -> unit
val hexdump_pcap_packet_to_buffer : Buffer.t -> pcap_packet -> unit
val hexdump_pcap_packet : Cstruct.t -> unit

val sizeof_ethernet : int
val get_ethernet_dst : Cstruct.t -> Cstruct.t
val copy_ethernet_dst : Cstruct.t -> string
val set_ethernet_dst : string -> int -> Cstruct.t -> unit
val blit_ethernet_dst : Cstruct.t -> int -> Cstruct.t -> unit
val get_ethernet_src : Cstruct.t -> Cstruct.t
val copy_ethernet_src : Cstruct.t -> string
val set_ethernet_src : string -> int -> Cstruct.t -> unit
val blit_ethernet_src : Cstruct.t -> int -> Cstruct.t -> unit
val get_ethernet_ethertype : Cstruct.t -> Cstruct.uint16
val set_ethernet_ethertype : Cstruct.t -> Cstruct.uint16 -> unit
val hexdump_ethernet_to_buffer : Buffer.t -> Cstruct.t -> unit
val hexdump_ethernet : Cstruct.t -> unit

The hexdump functions above are convenient pretty-printing functions to help you debug, and aren't intended to be high performance.

You can also declare C-like enums:

[%%cenum
type foo32 =
  | ONE32
  | TWO32 [@id 0xfffffffel]
  | THREE32
  [@@uint32_t]
]

[%%cenum
type bar16 =
  | ONE [@id 1]
  | TWO
  | FOUR [@id 4]
  | FIVE
  [@@uint16_t]
]

This generates signatures of the form:

type foo32 = | ONE32 | TWO32 | THREE32
val int_to_foo32 : int32 -> foo32 option
val foo32_to_int : foo32 -> int32
val foo32_to_string : foo32 -> string
val string_to_foo32 : string -> foo32 option
val compare_foo32 : foo32 -> foo32 -> int
type bar16 = | ONE | TWO | FOUR | FIVE
val int_to_bar16 : int -> bar16 option
val bar16_to_int : bar16 -> int
val bar16_to_string : bar16 -> string
val string_to_bar16 : string -> bar16 option
val compare_bar16 : bar16 -> bar16 -> int

Comparisons will be done relatively to the constructor ids.

You can also add a (sexp) decorator to output s-expression convertors for use with the sexplib library.

[%%cenum
type foo64 =
  | ONE64
  | TWO64
  | THREE64
  [@@uint64_t] [@@sexp]
]

And sexp_of_foo64 and foo64_of_sexp functions will also be available. The representation of the Sexp is the string representation of the enum.

If you do use the sexp decorator, then you will also need to add sexplib to the dependency list for your package (both in the dune file and the opam file).

Please see the ppx_test/ directory for more in-depth examples.

Dependencies (3)

  1. bigarray-compat
  2. dune
  3. ocaml >= "4.03.0"

Dev Dependencies (1)

  1. alcotest with-test

  1. albatross < "1.3.0"
  2. angstrom >= "0.2.0" & < "0.7.0"
  3. arakoon >= "1.8.6" & < "1.8.12"
  4. arp >= "0.2.1" & < "3.0.0"
  5. arp-mirage
  6. asn1-combinators >= "0.2.0-1" & < "0.2.6"
  7. awa < "0.0.4"
  8. awa-lwt < "0.0.4"
  9. awa-mirage < "0.0.4"
  10. balancer
  11. bip32
  12. buffer-pool
  13. capnp-rpc-net >= "1.1" & < "1.2.1"
  14. carton < "0.4.3"
  15. certify >= "0.2"
  16. chacha < "1.1.0"
  17. channel
  18. charrua < "1.4.1"
  19. charrua-client < "1.4.1"
  20. charrua-client-lwt
  21. charrua-client-mirage < "0.12.0"
  22. charrua-server < "1.4.1"
  23. charrua-unix = "0.6"
  24. cohttp >= "0.9.7" & < "0.10.0"
  25. colombe < "0.2.0"
  26. conduit >= "0.6.0" & < "0.15.2"
  27. conduit-async = "3.0.0"
  28. conduit-lwt = "3.0.0"
  29. conduit-mirage != "3.0.0"
  30. conex < "0.10.0"
  31. conex-mirage-crypto
  32. conex-nocrypto >= "0.11.0"
  33. cowabloga >= "0.0.5"
  34. crc
  35. crunch >= "2.0.0" & < "3.0.0"
  36. cstruct-async >= "3.4.0" & < "4.0.0" | = "5.1.1"
  37. cstruct-lwt >= "3.4.0" & < "4.0.0" | = "5.1.1"
  38. cstruct-sexp >= "5.0.0" & < "5.2.0"
  39. cstruct-unix >= "3.1.0" & < "3.2.0" | >= "3.4.0" & < "4.0.0" | = "5.1.1"
  40. current_git = "0.5"
  41. datakit
  42. datakit-ci >= "0.12.4"
  43. datakit-client
  44. datakit-client-9p
  45. datakit-server
  46. depyt >= "0.2.0"
  47. dns >= "1.0.0" & < "6.0.0"
  48. dns-client < "6.0.0"
  49. dns-forward >= "0.9.0"
  50. dnssd
  51. dream < "1.0.0~alpha2"
  52. duff < "0.3"
  53. eqaf >= "0.8"
  54. ethernet < "2.2.1"
  55. fat-filesystem >= "0.13.0" & < "0.15.1"
  56. fiat-p256
  57. frenetic < "2.0.0" | >= "3.2.0" & < "5.0.0"
  58. git >= "2.0.0" & < "3.5.0"
  59. github-hooks >= "0.2.0"
  60. gluten-mirage < "0.3.0"
  61. gpt
  62. h2-mirage
  63. hacl-star >= "0.7.0"
  64. hacl_x25519
  65. hex >= "1.4.0"
  66. hkdf
  67. hvsock < "3.0.0"
  68. io-page
  69. io-page-unix
  70. io-page-xen
  71. ipaddr-cstruct < "5.2.0"
  72. ipv6-multicast >= "0.9"
  73. irmin >= "0.9.0" & < "1.0.0" | >= "1.1.0" & < "2.0.0"
  74. irmin-git >= "2.3.0"
  75. irmin-indexeddb >= "0.3"
  76. jose < "0.7.0"
  77. key-parsers >= "0.5.0" & < "1.2.1"
  78. launchd
  79. learn-ocaml-client
  80. ledgerwallet < "0.2.0"
  81. letsencrypt = "0.2.5"
  82. letsencrypt-app < "0.4.0"
  83. macaddr-cstruct < "5.2.0"
  84. metrics-mirage
  85. mirage >= "0.7.2" & < "0.9.0" | >= "0.10.0" & < "2.4.0"
  86. mirage-block >= "2.0.0"
  87. mirage-block-ccm < "1.1.0"
  88. mirage-block-combinators < "3.0.0"
  89. mirage-block-lwt
  90. mirage-block-ramdisk
  91. mirage-block-solo5 < "0.6.2"
  92. mirage-block-unix = "2.0.0" | = "2.7.0" | >= "2.11.1" & < "2.13.0"
  93. mirage-block-xen >= "1.4.0" & < "1.5.2" | >= "1.6.0" & < "2.1.1"
  94. mirage-btrees
  95. mirage-channel >= "4.0.0" & < "4.1.0"
  96. mirage-channel-lwt
  97. mirage-clock-unix < "1.0.0"
  98. mirage-clock-xen < "1.0.0"
  99. mirage-conduit < "2.0.0" | >= "2.3.1"
  100. mirage-console >= "3.0.0" & < "4.0.0"
  101. mirage-console-lwt
  102. mirage-console-solo5 >= "0.2.0"
  103. mirage-console-unix >= "2.2.1" & < "5.0.0"
  104. mirage-console-xen = "4.0.0"
  105. mirage-console-xen-backend >= "2.3.2" & < "2.3.4" | = "4.0.0"
  106. mirage-crypto < "0.10.4"
  107. mirage-crypto-ec < "0.10.4"
  108. mirage-crypto-entropy
  109. mirage-crypto-pk < "0.10.4"
  110. mirage-crypto-rng < "0.10.4"
  111. mirage-crypto-rng-mirage
  112. mirage-dns != "2.6.0" & < "2.7.0"
  113. mirage-entropy
  114. mirage-entropy-xen < "0.3.0"
  115. mirage-flow < "1.2.0" | >= "2.0.0"
  116. mirage-flow-combinators < "3.0.0"
  117. mirage-flow-lwt
  118. mirage-flow-rawlink
  119. mirage-flow-unix < "3.0.0"
  120. mirage-fs >= "0.4.0" & < "1.0.0" | >= "3.0.0"
  121. mirage-fs-lwt
  122. mirage-fs-mem
  123. mirage-fs-unix < "1.1.0" | >= "1.4.0" & != "1.5.0"
  124. mirage-kv-lwt
  125. mirage-kv-unix
  126. mirage-nat < "2.2.4"
  127. mirage-net = "0.5.2" | >= "3.0.0"
  128. mirage-net-fd
  129. mirage-net-lwt
  130. mirage-net-macosx
  131. mirage-net-solo5
  132. mirage-net-unix < "2.1.0" | >= "2.2.1"
  133. mirage-net-xen != "1.4.2" & != "1.7.0" & < "2.1.0"
  134. mirage-profile >= "0.8.2"
  135. mirage-protocols-lwt
  136. mirage-qubes != "0.2" & < "0.5" | >= "0.7.0" & < "0.9.2"
  137. mirage-qubes-ipv4 < "0.9.3"
  138. mirage-random < "4.0.0"
  139. mirage-random-stdlib
  140. mirage-random-test
  141. mirage-solo5
  142. mirage-stack-lwt
  143. mirage-tc
  144. mirage-tcpip-unix
  145. mirage-tcpip-xen
  146. mirage-types-lwt < "3.7.1"
  147. mirage-unix < "0.9.4" | >= "2.5.0" & < "3.0.8"
  148. mirage-vnetif < "0.6.0"
  149. mirage-www < "0.4.0" | >= "1.1.0"
  150. mirage-xen < "2.0.0" | >= "2.6.0"
  151. monorobot
  152. mrt-format >= "0.3.1"
  153. mstruct
  154. nbd = "4.0.3"
  155. netchannel < "2.1.0"
  156. nocrypto < "0.4.0" | >= "0.5.4-1"
  157. noise
  158. openflow < "0.2.0"
  159. otr = "0.3.1" | >= "0.3.5" & < "0.3.9"
  160. ox < "1.1.1"
  161. pbkdf < "0.3.0" | = "1.1.0"
  162. pcap-format >= "0.5.2"
  163. pf-qubes
  164. plebeia < "2.0.0"
  165. ppx_cstruct = "5.1.1"
  166. protocol-9p = "2.0.1"
  167. protocol-9p-tool = "0.12.0" | >= "2.0.0" & < "2.0.2"
  168. protocol-9p-unix < "2.0.2"
  169. qcow >= "0.11.0"
  170. qcow-tool
  171. randomconv < "0.2.0"
  172. rawlink >= "0.6" & < "1.2"
  173. resp-mirage = "0.10.0"
  174. rfc6287 >= "1.0.2"
  175. salsa20 < "1.2.0"
  176. salsa20-core >= "0.3.0" & < "1.1.0"
  177. scrypt-kdf >= "0.2.0" & < "1.2.0"
  178. secp256k1-internal < "0.3.0"
  179. sendmail >= "0.4.1" & < "0.5.0"
  180. shared-block-ring < "3.0.1"
  181. shared-memory-ring >= "3.0.1" & < "3.1.1"
  182. shared-memory-ring-lwt
  183. slack
  184. ssh-agent
  185. tar >= "1.0.0" & < "2.0.0"
  186. tar-mirage
  187. tar-unix != "1.0.0" & < "2.0.0"
  188. tcpip >= "3.3.0" & < "6.3.0"
  189. tezos-lmdb
  190. tls >= "0.10.2" & < "0.14.0"
  191. u2f = "0.1.1"
  192. uecc
  193. vchan >= "3.0.0" & < "6.0.1"
  194. vchan-unix
  195. vchan-xen
  196. vhd-format >= "0.12.0"
  197. vhd-format-lwt
  198. vhd-tool < "0.12.0"
  199. vmnet >= "1.1.0"
  200. x509 >= "0.6.3" & < "0.14.1"
  201. xe
  202. xen-api-client >= "0.9.6" & < "0.9.14"
  203. xen-block-driver >= "0.2.5"
  204. xen-gnt
  205. xenstore >= "2.1.0"

Conflicts (1)

  1. js_of_ocaml < "3.5.0"