summary refs log tree commit diff stats
path: root/path.go
blob: a04c72395701eca6652791073800e8d0fa7ba0e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// +build openbsd

package lynx

import "golang.org/x/sys/unix"

// UnveilPath takes a path, permission & unveils it, returning an
// error if unveil fails. "no such file or directory" error is
// ignored.
func UnveilPath(path string, flags string) (err error) {
	err = unix.Unveil(path, flags)

	// "no such file or directory" error is ignored.
	if err != nil && err.Error() != "no such file or directory" {
		// Better error message could be returned like
		// one that includes the path on which unveil
		// failed.
		return err
	}
	// Returning nil because err can be "no such file or
	// directory" which needs to be ignored.
	return nil
}

// UnveilPathStrict is just a wrapper around unix.Unveil.
func UnveilPathStrict(path string, flags string) error {
	return unix.Unveil(path, flags)
}