Update containerd version to 90553efdef.
				
					
				
			Signed-off-by: Lantao Liu <lantaol@google.com>
This commit is contained in:
		
							
								
								
									
										2
									
								
								vendor/github.com/opencontainers/image-spec/README.md
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								vendor/github.com/opencontainers/image-spec/README.md
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -51,7 +51,7 @@ Find more [FAQ on the OCI site](https://www.opencontainers.org/faq).
 | 
			
		||||
 | 
			
		||||
## Roadmap
 | 
			
		||||
 | 
			
		||||
The [GitHub milestones](https://github.com/opencontainers/image-spec/milestones) lay out the path to the OCI v1.0.0 release in late 2016.
 | 
			
		||||
The [GitHub milestones](https://github.com/opencontainers/image-spec/milestones) lay out the path to the future improvements.
 | 
			
		||||
 | 
			
		||||
# Contributing
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										2
									
								
								vendor/github.com/opencontainers/image-spec/specs-go/version.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								vendor/github.com/opencontainers/image-spec/specs-go/version.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -22,7 +22,7 @@ const (
 | 
			
		||||
	// VersionMinor is for functionality in a backwards-compatible manner
 | 
			
		||||
	VersionMinor = 0
 | 
			
		||||
	// VersionPatch is for backwards-compatible bug fixes
 | 
			
		||||
	VersionPatch = 0
 | 
			
		||||
	VersionPatch = 1
 | 
			
		||||
 | 
			
		||||
	// VersionDev indicates development branch. Releases will be empty string.
 | 
			
		||||
	VersionDev = ""
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										2
									
								
								vendor/github.com/opencontainers/runc/README.md
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								vendor/github.com/opencontainers/runc/README.md
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -56,7 +56,7 @@ make BUILDTAGS='seccomp apparmor'
 | 
			
		||||
|-----------|------------------------------------|-------------|
 | 
			
		||||
| seccomp   | Syscall filtering                  | libseccomp  |
 | 
			
		||||
| selinux   | selinux process and mount labeling | <none>      |
 | 
			
		||||
| apparmor  | apparmor profile support           | libapparmor |
 | 
			
		||||
| apparmor  | apparmor profile support           | <none>      |
 | 
			
		||||
| ambient   | ambient capability support         | kernel 4.3  |
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										37
									
								
								vendor/github.com/opencontainers/runc/libcontainer/apparmor/apparmor.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										37
									
								
								vendor/github.com/opencontainers/runc/libcontainer/apparmor/apparmor.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -2,15 +2,10 @@
 | 
			
		||||
 | 
			
		||||
package apparmor
 | 
			
		||||
 | 
			
		||||
// #cgo LDFLAGS: -lapparmor
 | 
			
		||||
// #include <sys/apparmor.h>
 | 
			
		||||
// #include <stdlib.h>
 | 
			
		||||
import "C"
 | 
			
		||||
import (
 | 
			
		||||
	"fmt"
 | 
			
		||||
	"io/ioutil"
 | 
			
		||||
	"os"
 | 
			
		||||
	"unsafe"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// IsEnabled returns true if apparmor is enabled for the host.
 | 
			
		||||
@@ -24,16 +19,36 @@ func IsEnabled() bool {
 | 
			
		||||
	return false
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func setprocattr(attr, value string) error {
 | 
			
		||||
	// Under AppArmor you can only change your own attr, so use /proc/self/
 | 
			
		||||
	// instead of /proc/<tid>/ like libapparmor does
 | 
			
		||||
	path := fmt.Sprintf("/proc/self/attr/%s", attr)
 | 
			
		||||
 | 
			
		||||
	f, err := os.OpenFile(path, os.O_WRONLY, 0)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return err
 | 
			
		||||
	}
 | 
			
		||||
	defer f.Close()
 | 
			
		||||
 | 
			
		||||
	_, err = fmt.Fprintf(f, "%s", value)
 | 
			
		||||
	return err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// changeOnExec reimplements aa_change_onexec from libapparmor in Go
 | 
			
		||||
func changeOnExec(name string) error {
 | 
			
		||||
	value := "exec " + name
 | 
			
		||||
	if err := setprocattr("exec", value); err != nil {
 | 
			
		||||
		return fmt.Errorf("apparmor failed to apply profile: %s", err)
 | 
			
		||||
	}
 | 
			
		||||
	return nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ApplyProfile will apply the profile with the specified name to the process after
 | 
			
		||||
// the next exec.
 | 
			
		||||
func ApplyProfile(name string) error {
 | 
			
		||||
	if name == "" {
 | 
			
		||||
		return nil
 | 
			
		||||
	}
 | 
			
		||||
	cName := C.CString(name)
 | 
			
		||||
	defer C.free(unsafe.Pointer(cName))
 | 
			
		||||
	if _, err := C.aa_change_onexec(cName); err != nil {
 | 
			
		||||
		return fmt.Errorf("apparmor failed to apply profile: %s", err)
 | 
			
		||||
	}
 | 
			
		||||
	return nil
 | 
			
		||||
 | 
			
		||||
	return changeOnExec(name)
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										6
									
								
								vendor/github.com/opencontainers/runc/libcontainer/configs/cgroup_unsupported.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										6
									
								
								vendor/github.com/opencontainers/runc/libcontainer/configs/cgroup_unsupported.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,6 +0,0 @@
 | 
			
		||||
// +build !windows,!linux,!freebsd
 | 
			
		||||
 | 
			
		||||
package configs
 | 
			
		||||
 | 
			
		||||
type Cgroup struct {
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										2
									
								
								vendor/github.com/opencontainers/runc/libcontainer/configs/device_defaults.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								vendor/github.com/opencontainers/runc/libcontainer/configs/device_defaults.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,4 +1,4 @@
 | 
			
		||||
// +build linux freebsd
 | 
			
		||||
// +build linux
 | 
			
		||||
 | 
			
		||||
package configs
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										3
									
								
								vendor/github.com/opencontainers/runc/libcontainer/devices/devices_unsupported.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								vendor/github.com/opencontainers/runc/libcontainer/devices/devices_unsupported.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,3 +0,0 @@
 | 
			
		||||
// +build !linux
 | 
			
		||||
 | 
			
		||||
package devices
 | 
			
		||||
							
								
								
									
										2
									
								
								vendor/github.com/opencontainers/runc/libcontainer/system/sysconfig.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								vendor/github.com/opencontainers/runc/libcontainer/system/sysconfig.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,4 +1,4 @@
 | 
			
		||||
// +build cgo,linux cgo,freebsd
 | 
			
		||||
// +build cgo,linux
 | 
			
		||||
 | 
			
		||||
package system
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										38
									
								
								vendor/github.com/opencontainers/runc/libcontainer/user/lookup_unsupported.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										38
									
								
								vendor/github.com/opencontainers/runc/libcontainer/user/lookup_unsupported.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,38 +0,0 @@
 | 
			
		||||
// +build !darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris
 | 
			
		||||
 | 
			
		||||
package user
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"io"
 | 
			
		||||
	"syscall"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
func GetPasswdPath() (string, error) {
 | 
			
		||||
	return "", ErrUnsupported
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func GetPasswd() (io.ReadCloser, error) {
 | 
			
		||||
	return nil, ErrUnsupported
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func GetGroupPath() (string, error) {
 | 
			
		||||
	return "", ErrUnsupported
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func GetGroup() (io.ReadCloser, error) {
 | 
			
		||||
	return nil, ErrUnsupported
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// CurrentUser looks up the current user by their user id in /etc/passwd. If the
 | 
			
		||||
// user cannot be found (or there is no /etc/passwd file on the filesystem),
 | 
			
		||||
// then CurrentUser returns an error.
 | 
			
		||||
func CurrentUser() (User, error) {
 | 
			
		||||
	return LookupUid(syscall.Getuid())
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// CurrentGroup looks up the current user's group by their primary group id's
 | 
			
		||||
// entry in /etc/passwd. If the group cannot be found (or there is no
 | 
			
		||||
// /etc/group file on the filesystem), then CurrentGroup returns an error.
 | 
			
		||||
func CurrentGroup() (Group, error) {
 | 
			
		||||
	return LookupGid(syscall.Getgid())
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										2
									
								
								vendor/github.com/opencontainers/runc/vendor.conf
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								vendor/github.com/opencontainers/runc/vendor.conf
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -15,7 +15,7 @@ github.com/coreos/pkg v3
 | 
			
		||||
github.com/godbus/dbus v3
 | 
			
		||||
github.com/golang/protobuf 18c9bb3261723cd5401db4d0c9fbc5c3b6c70fe8
 | 
			
		||||
# Command-line interface.
 | 
			
		||||
github.com/docker/docker 0f5c9d301b9b1cca66b3ea0f9dec3b5317d3686d
 | 
			
		||||
github.com/cyphar/filepath-securejoin v0.2.1
 | 
			
		||||
github.com/docker/go-units v0.2.0
 | 
			
		||||
github.com/urfave/cli d53eb991652b1d438abdd34ce4bfa3ef1539108e
 | 
			
		||||
golang.org/x/sys 7ddbeae9ae08c6a06a59597f0c9edbc5ff2444ce https://github.com/golang/sys
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										11
									
								
								vendor/github.com/opencontainers/runtime-spec/README.md
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										11
									
								
								vendor/github.com/opencontainers/runtime-spec/README.md
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -52,17 +52,12 @@ It also guarantees that the design is sound before code is written; a GitHub pul
 | 
			
		||||
Typos and grammatical errors can go straight to a pull-request.
 | 
			
		||||
When in doubt, start on the [mailing-list](#mailing-list).
 | 
			
		||||
 | 
			
		||||
### Weekly Call
 | 
			
		||||
 | 
			
		||||
The contributors and maintainers of all OCI projects have a weekly meeting on Wednesdays at:
 | 
			
		||||
 | 
			
		||||
* 8:00 AM (USA Pacific), during [odd weeks][iso-week].
 | 
			
		||||
* 2:00 PM (USA Pacific), during [even weeks][iso-week].
 | 
			
		||||
### Meetings
 | 
			
		||||
 | 
			
		||||
The contributors and maintainers of all OCI projects have monthly meetings at 2:00 PM (USA Pacific) on the first Wednesday of every month.
 | 
			
		||||
There is an [iCalendar][rfc5545] format for the meetings [here](meeting.ics).
 | 
			
		||||
 | 
			
		||||
Everyone is welcome to participate via [UberConference web][uberconference] or audio-only: +1 415 968 0849 (no PIN needed).
 | 
			
		||||
An initial agenda will be posted to the [mailing list](#mailing-list) earlier in the week, and everyone is welcome to propose additional topics or suggest other agenda alterations there.
 | 
			
		||||
An initial agenda will be posted to the [mailing list](#mailing-list) in the week before each meeting, and everyone is welcome to propose additional topics or suggest other agenda alterations there.
 | 
			
		||||
Minutes are posted to the [mailing list](#mailing-list) and minutes from past calls are archived [here][minutes], with minutes from especially old meetings (September 2015 and earlier) archived [here][runtime-wiki].
 | 
			
		||||
 | 
			
		||||
### Mailing List
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										2
									
								
								vendor/github.com/opencontainers/runtime-spec/specs-go/config.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								vendor/github.com/opencontainers/runtime-spec/specs-go/config.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -4,7 +4,7 @@ import "os"
 | 
			
		||||
 | 
			
		||||
// Spec is the base configuration for the container.
 | 
			
		||||
type Spec struct {
 | 
			
		||||
	// Version of the Open Container Runtime Specification with which the bundle complies.
 | 
			
		||||
	// Version of the Open Container Initiative Runtime Specification with which the bundle complies.
 | 
			
		||||
	Version string `json:"ociVersion"`
 | 
			
		||||
	// Process configures the container process.
 | 
			
		||||
	Process *Process `json:"process,omitempty"`
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										2
									
								
								vendor/github.com/opencontainers/runtime-spec/specs-go/version.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								vendor/github.com/opencontainers/runtime-spec/specs-go/version.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -8,7 +8,7 @@ const (
 | 
			
		||||
	// VersionMinor is for functionality in a backwards-compatible manner
 | 
			
		||||
	VersionMinor = 0
 | 
			
		||||
	// VersionPatch is for backwards-compatible bug fixes
 | 
			
		||||
	VersionPatch = 0
 | 
			
		||||
	VersionPatch = 1
 | 
			
		||||
 | 
			
		||||
	// VersionDev indicates development branch. Releases will be empty string.
 | 
			
		||||
	VersionDev = ""
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user