Lynx is a simple unveil wrapper https://andinus.nand.sh/lynx
Go to file
Andinus 0dfcf8cb81
Add wrapper around single path Unveil command
2020-04-08 01:32:14 +05:30
LICENSE Initial Commit 2020-04-06 12:36:14 +05:30
README.org Initial Commit 2020-04-06 12:36:14 +05:30
block.go Add wrapper around unix.UnveilBlock 2020-04-08 01:31:36 +05:30
commands.go Initial Commit 2020-04-06 12:36:14 +05:30
go.mod Initial Commit 2020-04-06 12:36:14 +05:30
go.sum Initial Commit 2020-04-06 12:36:14 +05:30
path.go Add wrapper around single path Unveil command 2020-04-08 01:32:14 +05:30
paths.go Initial Commit 2020-04-06 12:36:14 +05:30

README.org

Lynx

Lynx is a simple unveil wrapper.

Project Home Lynx
Source Code Andinus / Lynx
GitHub (Mirror) Lynx - GitHub

Examples

UnveilCommands

UnveilCommands takes a slice of commands & unveils them one by one, it will return an error if unveil fails at any step. "no such file or directory" error is ignored because binaries are not placed in every PATH.

Default permission is "rx".

package main

import "tildegit.org/andinus/lynx"

func main() {
	commands := []string{"cd", "ls", "rm"}

	err = lynx.UnveilCommands(commands)
	if err != nil {
		log.Fatal(err)
	}
}

UnveilPaths / UnveilPathsStrict

UnveilPaths takes a map of path, permission & unveils them one by one, it will return an error if unveil fails at any step. "no such file or directory" error is ignored, if you want to get that error too then use UnveilPathsStrict.

package main

import "tildegit.org/andinus/lynx"

func main() {
	paths := make(map[string]string)

	paths["/home"] = "r"
	paths["/dev/null"] = "rw"
	paths["/etc/examples"] = "rwc"
	paths["/root"] = "rwcx"

	err = lynx.UnveilPaths(paths)
	if err != nil {
		log.Fatal(err)
	}

	// This will return an error if the path doesn't exist.
	err = lynx.UnveilPathsStrict(paths)
	if err != nil {
		log.Fatal(err)
	}
}