Coder Social home page Coder Social logo

sandbox's Introduction

sandbox

Package sandbox is a wrapper around OpenBSD's pledge(2) and unveil(2) system calls.

Can be used with Nanos sandbox klib - https://docs.ops.city/ops/klibs#sandbox

Can be safely used on other non-OpenBSD operating systems, where the syscalls are noop.

Nanos ops config

{
  "Klibs": [
    "sandbox"
  ],
  "ManifestPassthrough": {
    "sandbox": {
      "pledge": {},
      "unveil": {}
    }
  }
}

pledge

package main

import (
	"log"
	"os"

	"github.com/rinor/sandbox"
)

func main() {
	if sandbox.Noop() {
		log.Print("PLEDGE: calls won't have any effect (noop)")
	} else {
		log.Print("PLEDGE: calls will fail if not implemented in kernel")
	}

	log.Print("PLEDGE: calling PledgePromises(stdio error rpath)")
	err := sandbox.PledgePromises("stdio error rpath")
	if err != nil {
		log.Fatalf("PLEDGE: PledgePromises - %q", err)
	}

	log.Print("PLEDGE: Readir should work - (rpath - enabled)")
	_, err = os.ReadDir(".")
	if err != nil {
		log.Fatalf("%q", err)
	}
	log.Print("PLEDGE: Readir OK")

	log.Print("PLEDGE: Disabling rpath")
	err = sandbox.PledgePromises("stdio error")
	if err != nil {
		log.Fatalf("PLEDGE: PledgePromises - %q", err)
	}

	log.Print("PLEDGE: Readir should fail - (rpath - disabled)")
	_, err = os.ReadDir(".")
	if err != nil {
		log.Fatalf("PLEDGE: Readir %q", err)
	}
}

unveil

package main

import (
	"log"
	"os"

	"github.com/rinor/sandbox"
)

func main() {
	if sandbox.Noop() {
		log.Print("UNVEIL: calls won't have any effect (noop)")
	} else {
		log.Print("UNVEIL: calls will fail if not implemented in kernel")
	}

	log.Print("UNVEIL: calling Unveil(/, rwxc)")
	err := sandbox.Unveil("/", "rwxc")
	if err != nil {
		log.Fatalf("UNVEIL: unveil - %q", err)
	}

	log.Print("UNVEIL: Readir should work - (unveil r - enabled)")
	_, err = os.ReadDir("/")
	if err != nil {
		log.Fatalf("%q", err)
	}
	log.Print("UNVEIL: Readir OK")

	log.Print("UNVEIL: Disabling r")
	err = sandbox.Unveil("/", "wxc")
	if err != nil {
		log.Fatalf("UNVEIL: unveil - %q", err)
	}

	log.Print("UNVEIL: Readir should fail - (unveil r - disabled)")
	_, err = os.ReadDir("/")
	if err != nil {
		log.Printf("UNVEIL: Readir %q", err)
	}

	log.Print("UNVEIL: calling unveilBlock")
	err = sandbox.UnveilBlock()
	if err != nil {
		log.Fatalf("UNVEIL: unveilBlock - %q", err)
	}

	log.Print("UNVEIL: unveil calls should fail - (unveilBlock called)")
	err = sandbox.Unveil("/", "rwxc")
	if err != nil {
		log.Fatalf("UNVEIL: unveil - %q", err)
	}
}

sandbox's People

Contributors

rinor avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.