Created
July 5, 2013 12:53
-
-
Save justincormack/5934351 to your computer and use it in GitHub Desktop.
metatypes for bounds checking
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ffi = require "ffi" | |
local VHOST_VRING_SIZE = 32*1024 | |
ffi.cdef [[ | |
enum { VHOST_VRING_SIZE = 32*1024 }; | |
struct vring_avail { | |
uint16_t flags; | |
uint16_t idx; | |
uint16_t ring[VHOST_VRING_SIZE]; | |
}; | |
]] | |
vring_avail = ffi.metatype("struct vring_avail", {__index = { | |
ring_get = function(v, i) | |
if i < 0 or i > VHOST_VRING_SIZE then error "out of bounds" end | |
return v.ring[i] | |
end, | |
ring_set = function(v, i, k) | |
if i < 0 or i > VHOST_VRING_SIZE then error "out of bounds" end | |
v.ring[i] = k | |
end, | |
}}) | |
v = vring_avail() | |
v:ring_set(2, 4) | |
assert(v:ring_get(2) == 4) | |
v:ring_get(65000) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment