diff options
author | Anirudh Oppiliappan <x@icyphox.sh> | 2022-12-18 11:04:11 +0530 |
---|---|---|
committer | Anirudh Oppiliappan <x@icyphox.sh> | 2022-12-18 11:04:11 +0530 |
commit | 5ea7cae973e8329ae768c35bda41e656f974815d (patch) | |
tree | d7ce04c820c585e3604f91385beb8090f9dffc4c /unveil.go | |
parent | 60298a69538ccdda417613a09e5acbd917bfc53a (diff) | |
download | legit-5ea7cae973e8329ae768c35bda41e656f974815d.tar.gz legit-5ea7cae973e8329ae768c35bda41e656f974815d.tar.bz2 legit-5ea7cae973e8329ae768c35bda41e656f974815d.zip |
unveil: init
Diffstat (limited to '')
-rw-r--r-- | unveil.go | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/unveil.go b/unveil.go new file mode 100644 index 0000000..389dfeb --- /dev/null +++ b/unveil.go @@ -0,0 +1,28 @@ +//go:build openbsd +// +build openbsd + +package main + +/* +#include <stdlib.h> +#include <unistd.h> +*/ +import "C" + +import ( + "fmt" + "unsafe" +) + +func Unveil(path string, perms string) error { + cpath := C.CString(path) + defer C.free(unsafe.Pointer(cpath)) + cperms := C.CString(perms) + defer C.free(unsafe.Pointer(cperms)) + + rv, err := C.unveil(cpath, cperms) + if rv != 0 { + return fmt.Errorf("unveil(%s, %s) failure (%d)", path, perms, err) + } + return nil +} |