bsdcapsicum.rb/lib/bsd/capsicum/ffi.rb

68 lines
1.5 KiB
Ruby
Raw Normal View History

2024-06-25 08:25:53 +02:00
module BSD::Capsicum
2024-06-25 09:37:54 +02:00
module FFI
2024-06-25 08:25:53 +02:00
require "fiddle"
2024-06-25 15:39:04 +02:00
include Fiddle::Types
2024-06-25 17:17:23 +02:00
include Constants
2024-06-25 08:25:53 +02:00
module_function
##
# Provides a Ruby interface for cap_enter(2)
# @return [Integer]
def cap_enter
Fiddle::Function.new(
libc["cap_enter"],
[],
2024-06-25 15:39:04 +02:00
INT
2024-06-25 08:25:53 +02:00
).call
end
##
# Provides a Ruby interface for cap_getmode(2)
# @param [Fiddle::Pointer] uintp
# @return [Integer]
def cap_getmode(uintp)
Fiddle::Function.new(
libc["cap_getmode"],
2024-06-25 15:39:04 +02:00
[INTPTR_T],
INT
2024-06-25 08:25:53 +02:00
).call(uintp)
end
2024-06-25 15:39:04 +02:00
##
# Provides a Ruby interface for cap_rights_limit(2)
# @param [Integer] fd
# @param [Fiddle::Pointer] rights
# @return [Integer]
def cap_rights_limit(fd, rights)
Fiddle::Function.new(
libc["cap_rights_limit"],
[INT, VOIDP],
INT
).call(fd, rights)
end
##
# Provides a Ruby interface for cap_rights_init(2)
# @param [Array<Integer>] rights
# @return [Fiddle::Pointer]
def cap_rights_init(*rights)
voidp = Fiddle::Pointer.malloc(Fiddle::SIZEOF_VOIDP)
varargs = rights.flat_map { [ULONG_LONG, Symbol === _1 ? Constants.const_get(_1) : _1] }
Fiddle::Function.new(
libc["__cap_rights_init"],
[INT, VOIDP, VARIADIC],
VOIDP
2024-06-25 17:17:23 +02:00
).call(CAP_RIGHTS_VERSION, voidp, *varargs)
2024-06-25 15:39:04 +02:00
voidp
end
2024-06-25 08:25:53 +02:00
##
# @api private
def libc
@libc ||= Fiddle.dlopen Dir["/lib/libc.*"].first
end
end
private_constant :FFI
2024-06-25 08:25:53 +02:00
end