unveil: initial commit
This commit is contained in:
parent
d0f5d874c5
commit
4aa8cbff32
2
go.mod
2
go.mod
|
@ -8,6 +8,7 @@ require (
|
||||||
github.com/dustin/go-humanize v1.0.0
|
github.com/dustin/go-humanize v1.0.0
|
||||||
github.com/go-git/go-git/v5 v5.5.1
|
github.com/go-git/go-git/v5 v5.5.1
|
||||||
github.com/sosedoff/gitkit v0.3.0
|
github.com/sosedoff/gitkit v0.3.0
|
||||||
|
golang.org/x/sys v0.3.0
|
||||||
gopkg.in/yaml.v3 v3.0.0
|
gopkg.in/yaml.v3 v3.0.0
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -30,7 +31,6 @@ require (
|
||||||
golang.org/x/crypto v0.4.0 // indirect
|
golang.org/x/crypto v0.4.0 // indirect
|
||||||
golang.org/x/mod v0.7.0 // indirect
|
golang.org/x/mod v0.7.0 // indirect
|
||||||
golang.org/x/net v0.4.0 // indirect
|
golang.org/x/net v0.4.0 // indirect
|
||||||
golang.org/x/sys v0.3.0 // indirect
|
|
||||||
golang.org/x/tools v0.4.0 // indirect
|
golang.org/x/tools v0.4.0 // indirect
|
||||||
gopkg.in/warnings.v0 v0.1.2 // indirect
|
gopkg.in/warnings.v0 v0.1.2 // indirect
|
||||||
)
|
)
|
||||||
|
|
6
main.go
6
main.go
|
@ -20,9 +20,9 @@ func main() {
|
||||||
log.Fatal(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
// for path := range []string{c.Dirs.Static, c.Repo.ScanPath, c.Dirs.Templates} {
|
if err = UnveilPaths([]string{c.Dirs.Static, c.Repo.ScanPath, c.Dirs.Templates}, "r"); err != nil {
|
||||||
// Unveil(path, "r")
|
log.Fatal(err)
|
||||||
// }
|
}
|
||||||
|
|
||||||
mux := routes.Handlers(c)
|
mux := routes.Handlers(c)
|
||||||
addr := fmt.Sprintf("%s:%d", c.Server.Host, c.Server.Port)
|
addr := fmt.Sprintf("%s:%d", c.Server.Host, c.Server.Port)
|
||||||
|
|
36
unveil.go
36
unveil.go
|
@ -1,30 +1,26 @@
|
||||||
//go:build openbsd
|
//go:build openbsd
|
||||||
// +build openbsd
|
// +build openbsd
|
||||||
|
|
||||||
// Doesn't do anything yet.
|
|
||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
/*
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
*/
|
|
||||||
import "C"
|
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"golang.org/x/sys/unix"
|
||||||
"unsafe"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func Unveil(path string, perms string) error {
|
func Unveil(path string, perms string) error {
|
||||||
cpath := C.CString(path)
|
return unix.Unveil(path, perms)
|
||||||
defer C.free(unsafe.Pointer(cpath))
|
}
|
||||||
cperms := C.CString(perms)
|
|
||||||
defer C.free(unsafe.Pointer(cperms))
|
func UnveilBlock() error {
|
||||||
|
return unix.UnveilBlock()
|
||||||
rv, err := C.unveil(cpath, cperms)
|
}
|
||||||
if rv != 0 {
|
|
||||||
return fmt.Errorf("unveil(%s, %s) failure (%d)", path, perms, err)
|
func UnveilPaths(paths []string, perms string) error {
|
||||||
}
|
for _, path := range paths {
|
||||||
return nil
|
err := Unveil(path, perms)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return UnveilBlock()
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
//go:build !openbsd
|
||||||
|
// +build !openbsd
|
||||||
|
|
||||||
|
// Stub functions for GOOS that don't support unix.Unveil()
|
||||||
|
|
||||||
|
package main
|
||||||
|
|
||||||
|
func Unveil(path string, perms string) error {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func UnveilBlock() error {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func UnveilPaths(paths []string, perms string) error {
|
||||||
|
return nil
|
||||||
|
}
|
Loading…
Reference in New Issue