2018-09-05 14:54:38 -04:00
|
|
|
package hcs
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"os"
|
|
|
|
"strconv"
|
|
|
|
"sync"
|
|
|
|
"syscall"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/Microsoft/hcsshim/internal/interop"
|
2019-02-28 13:16:30 -05:00
|
|
|
"github.com/Microsoft/hcsshim/internal/logfields"
|
2018-09-05 14:54:38 -04:00
|
|
|
"github.com/Microsoft/hcsshim/internal/schema1"
|
|
|
|
"github.com/Microsoft/hcsshim/internal/timeout"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
)
|
|
|
|
|
|
|
|
// currentContainerStarts is used to limit the number of concurrent container
|
|
|
|
// starts.
|
|
|
|
var currentContainerStarts containerStarts
|
|
|
|
|
|
|
|
type containerStarts struct {
|
|
|
|
maxParallel int
|
|
|
|
inProgress int
|
|
|
|
sync.Mutex
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
mpsS := os.Getenv("HCSSHIM_MAX_PARALLEL_START")
|
|
|
|
if len(mpsS) > 0 {
|
|
|
|
mpsI, err := strconv.Atoi(mpsS)
|
|
|
|
if err != nil || mpsI < 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
currentContainerStarts.maxParallel = mpsI
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type System struct {
|
|
|
|
handleLock sync.RWMutex
|
|
|
|
handle hcsSystem
|
|
|
|
id string
|
|
|
|
callbackNumber uintptr
|
|
|
|
|
2019-02-28 13:16:30 -05:00
|
|
|
logctx logrus.Fields
|
2019-04-03 15:06:12 -04:00
|
|
|
|
|
|
|
closedWaitOnce sync.Once
|
|
|
|
waitBlock chan struct{}
|
|
|
|
waitError error
|
2019-02-28 13:16:30 -05:00
|
|
|
}
|
2018-09-05 14:54:38 -04:00
|
|
|
|
2019-02-28 13:16:30 -05:00
|
|
|
func newSystem(id string) *System {
|
|
|
|
return &System{
|
2018-09-05 14:54:38 -04:00
|
|
|
id: id,
|
2019-02-28 13:16:30 -05:00
|
|
|
logctx: logrus.Fields{
|
|
|
|
logfields.ContainerID: id,
|
|
|
|
},
|
2019-04-03 15:06:12 -04:00
|
|
|
waitBlock: make(chan struct{}),
|
2019-02-28 13:16:30 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (computeSystem *System) logOperationBegin(operation string) {
|
|
|
|
logOperationBegin(
|
|
|
|
computeSystem.logctx,
|
|
|
|
operation+" - Begin Operation")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (computeSystem *System) logOperationEnd(operation string, err error) {
|
|
|
|
var result string
|
|
|
|
if err == nil {
|
|
|
|
result = "Success"
|
|
|
|
} else {
|
|
|
|
result = "Error"
|
2018-09-05 14:54:38 -04:00
|
|
|
}
|
|
|
|
|
2019-02-28 13:16:30 -05:00
|
|
|
logOperationEnd(
|
|
|
|
computeSystem.logctx,
|
|
|
|
operation+" - End Operation - "+result,
|
|
|
|
err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateComputeSystem creates a new compute system with the given configuration but does not start it.
|
|
|
|
func CreateComputeSystem(id string, hcsDocumentInterface interface{}) (_ *System, err error) {
|
|
|
|
operation := "hcsshim::CreateComputeSystem"
|
|
|
|
|
|
|
|
computeSystem := newSystem(id)
|
|
|
|
computeSystem.logOperationBegin(operation)
|
|
|
|
defer func() { computeSystem.logOperationEnd(operation, err) }()
|
|
|
|
|
2018-09-05 14:54:38 -04:00
|
|
|
hcsDocumentB, err := json.Marshal(hcsDocumentInterface)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
hcsDocument := string(hcsDocumentB)
|
2019-02-28 13:16:30 -05:00
|
|
|
|
|
|
|
logrus.WithFields(computeSystem.logctx).
|
|
|
|
WithField(logfields.JSON, hcsDocument).
|
|
|
|
Debug("HCS ComputeSystem Document")
|
2018-09-05 14:54:38 -04:00
|
|
|
|
|
|
|
var (
|
2019-02-28 13:16:30 -05:00
|
|
|
resultp *uint16
|
|
|
|
identity syscall.Handle
|
|
|
|
createError error
|
2018-09-05 14:54:38 -04:00
|
|
|
)
|
2019-02-28 13:16:30 -05:00
|
|
|
syscallWatcher(computeSystem.logctx, func() {
|
|
|
|
createError = hcsCreateComputeSystem(id, hcsDocument, identity, &computeSystem.handle, &resultp)
|
|
|
|
})
|
2018-09-05 14:54:38 -04:00
|
|
|
|
|
|
|
if createError == nil || IsPending(createError) {
|
2019-02-28 13:16:30 -05:00
|
|
|
if err = computeSystem.registerCallback(); err != nil {
|
2018-09-05 14:54:38 -04:00
|
|
|
// Terminate the compute system if it still exists. We're okay to
|
|
|
|
// ignore a failure here.
|
|
|
|
computeSystem.Terminate()
|
|
|
|
return nil, makeSystemError(computeSystem, operation, "", err, nil)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-26 06:54:23 -04:00
|
|
|
events, err := processAsyncHcsResult(createError, resultp, computeSystem.callbackNumber, hcsNotificationSystemCreateCompleted, &timeout.SystemCreate)
|
2018-09-05 14:54:38 -04:00
|
|
|
if err != nil {
|
|
|
|
if err == ErrTimeout {
|
|
|
|
// Terminate the compute system if it still exists. We're okay to
|
|
|
|
// ignore a failure here.
|
|
|
|
computeSystem.Terminate()
|
|
|
|
}
|
|
|
|
return nil, makeSystemError(computeSystem, operation, hcsDocument, err, events)
|
|
|
|
}
|
|
|
|
|
2019-04-03 15:06:12 -04:00
|
|
|
go computeSystem.waitBackground()
|
|
|
|
|
2018-09-05 14:54:38 -04:00
|
|
|
return computeSystem, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// OpenComputeSystem opens an existing compute system by ID.
|
2019-02-28 13:16:30 -05:00
|
|
|
func OpenComputeSystem(id string) (_ *System, err error) {
|
|
|
|
operation := "hcsshim::OpenComputeSystem"
|
|
|
|
|
|
|
|
computeSystem := newSystem(id)
|
|
|
|
computeSystem.logOperationBegin(operation)
|
|
|
|
defer func() {
|
|
|
|
if IsNotExist(err) {
|
|
|
|
computeSystem.logOperationEnd(operation, nil)
|
|
|
|
} else {
|
|
|
|
computeSystem.logOperationEnd(operation, err)
|
|
|
|
}
|
|
|
|
}()
|
2018-09-05 14:54:38 -04:00
|
|
|
|
|
|
|
var (
|
|
|
|
handle hcsSystem
|
|
|
|
resultp *uint16
|
|
|
|
)
|
2019-02-28 13:16:30 -05:00
|
|
|
err = hcsOpenComputeSystem(id, &handle, &resultp)
|
2018-09-05 14:54:38 -04:00
|
|
|
events := processHcsResult(resultp)
|
|
|
|
if err != nil {
|
|
|
|
return nil, makeSystemError(computeSystem, operation, "", err, events)
|
|
|
|
}
|
|
|
|
|
|
|
|
computeSystem.handle = handle
|
|
|
|
|
2019-02-28 13:16:30 -05:00
|
|
|
if err = computeSystem.registerCallback(); err != nil {
|
2018-09-05 14:54:38 -04:00
|
|
|
return nil, makeSystemError(computeSystem, operation, "", err, nil)
|
|
|
|
}
|
2019-04-03 15:06:12 -04:00
|
|
|
go computeSystem.waitBackground()
|
2018-09-05 14:54:38 -04:00
|
|
|
|
|
|
|
return computeSystem, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetComputeSystems gets a list of the compute systems on the system that match the query
|
2019-02-28 13:16:30 -05:00
|
|
|
func GetComputeSystems(q schema1.ComputeSystemQuery) (_ []schema1.ContainerProperties, err error) {
|
|
|
|
operation := "hcsshim::GetComputeSystems"
|
|
|
|
fields := logrus.Fields{}
|
|
|
|
logOperationBegin(
|
|
|
|
fields,
|
|
|
|
operation+" - Begin Operation")
|
|
|
|
|
|
|
|
defer func() {
|
|
|
|
var result string
|
|
|
|
if err == nil {
|
|
|
|
result = "Success"
|
|
|
|
} else {
|
|
|
|
result = "Error"
|
|
|
|
}
|
|
|
|
|
|
|
|
logOperationEnd(
|
|
|
|
fields,
|
|
|
|
operation+" - End Operation - "+result,
|
|
|
|
err)
|
|
|
|
}()
|
2018-09-05 14:54:38 -04:00
|
|
|
|
|
|
|
queryb, err := json.Marshal(q)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
query := string(queryb)
|
2019-02-28 13:16:30 -05:00
|
|
|
|
|
|
|
logrus.WithFields(fields).
|
|
|
|
WithField(logfields.JSON, query).
|
|
|
|
Debug("HCS ComputeSystem Query")
|
2018-09-05 14:54:38 -04:00
|
|
|
|
|
|
|
var (
|
|
|
|
resultp *uint16
|
|
|
|
computeSystemsp *uint16
|
|
|
|
)
|
2019-02-28 13:16:30 -05:00
|
|
|
|
|
|
|
syscallWatcher(fields, func() {
|
|
|
|
err = hcsEnumerateComputeSystems(query, &computeSystemsp, &resultp)
|
|
|
|
})
|
2018-09-05 14:54:38 -04:00
|
|
|
events := processHcsResult(resultp)
|
|
|
|
if err != nil {
|
|
|
|
return nil, &HcsError{Op: operation, Err: err, Events: events}
|
|
|
|
}
|
|
|
|
|
|
|
|
if computeSystemsp == nil {
|
|
|
|
return nil, ErrUnexpectedValue
|
|
|
|
}
|
|
|
|
computeSystemsRaw := interop.ConvertAndFreeCoTaskMemBytes(computeSystemsp)
|
|
|
|
computeSystems := []schema1.ContainerProperties{}
|
2019-02-28 13:16:30 -05:00
|
|
|
if err = json.Unmarshal(computeSystemsRaw, &computeSystems); err != nil {
|
2018-09-05 14:54:38 -04:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return computeSystems, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start synchronously starts the computeSystem.
|
2019-02-28 13:16:30 -05:00
|
|
|
func (computeSystem *System) Start() (err error) {
|
2018-09-05 14:54:38 -04:00
|
|
|
computeSystem.handleLock.RLock()
|
|
|
|
defer computeSystem.handleLock.RUnlock()
|
2019-02-28 13:16:30 -05:00
|
|
|
|
|
|
|
operation := "hcsshim::ComputeSystem::Start"
|
|
|
|
computeSystem.logOperationBegin(operation)
|
|
|
|
defer func() { computeSystem.logOperationEnd(operation, err) }()
|
2018-09-05 14:54:38 -04:00
|
|
|
|
|
|
|
if computeSystem.handle == 0 {
|
|
|
|
return makeSystemError(computeSystem, "Start", "", ErrAlreadyClosed, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is a very simple backoff-retry loop to limit the number
|
|
|
|
// of parallel container starts if environment variable
|
|
|
|
// HCSSHIM_MAX_PARALLEL_START is set to a positive integer.
|
|
|
|
// It should generally only be used as a workaround to various
|
|
|
|
// platform issues that exist between RS1 and RS4 as of Aug 2018
|
|
|
|
if currentContainerStarts.maxParallel > 0 {
|
|
|
|
for {
|
|
|
|
currentContainerStarts.Lock()
|
|
|
|
if currentContainerStarts.inProgress < currentContainerStarts.maxParallel {
|
|
|
|
currentContainerStarts.inProgress++
|
|
|
|
currentContainerStarts.Unlock()
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if currentContainerStarts.inProgress == currentContainerStarts.maxParallel {
|
|
|
|
currentContainerStarts.Unlock()
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Make sure we decrement the count when we are done.
|
|
|
|
defer func() {
|
|
|
|
currentContainerStarts.Lock()
|
|
|
|
currentContainerStarts.inProgress--
|
|
|
|
currentContainerStarts.Unlock()
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
|
|
|
var resultp *uint16
|
2019-02-28 13:16:30 -05:00
|
|
|
syscallWatcher(computeSystem.logctx, func() {
|
|
|
|
err = hcsStartComputeSystem(computeSystem.handle, "", &resultp)
|
|
|
|
})
|
2018-09-26 06:54:23 -04:00
|
|
|
events, err := processAsyncHcsResult(err, resultp, computeSystem.callbackNumber, hcsNotificationSystemStartCompleted, &timeout.SystemStart)
|
2018-09-05 14:54:38 -04:00
|
|
|
if err != nil {
|
|
|
|
return makeSystemError(computeSystem, "Start", "", err, events)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ID returns the compute system's identifier.
|
|
|
|
func (computeSystem *System) ID() string {
|
|
|
|
return computeSystem.id
|
|
|
|
}
|
|
|
|
|
|
|
|
// Shutdown requests a compute system shutdown, if IsPending() on the error returned is true,
|
|
|
|
// it may not actually be shut down until Wait() succeeds.
|
2019-02-28 13:16:30 -05:00
|
|
|
func (computeSystem *System) Shutdown() (err error) {
|
2018-09-05 14:54:38 -04:00
|
|
|
computeSystem.handleLock.RLock()
|
|
|
|
defer computeSystem.handleLock.RUnlock()
|
2019-02-28 13:16:30 -05:00
|
|
|
|
|
|
|
operation := "hcsshim::ComputeSystem::Shutdown"
|
|
|
|
computeSystem.logOperationBegin(operation)
|
|
|
|
defer func() {
|
2019-04-03 15:06:12 -04:00
|
|
|
if IsAlreadyClosed(err) || IsAlreadyStopped(err) || IsPending(err) {
|
2019-02-28 13:16:30 -05:00
|
|
|
computeSystem.logOperationEnd(operation, nil)
|
|
|
|
} else {
|
|
|
|
computeSystem.logOperationEnd(operation, err)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2018-09-05 14:54:38 -04:00
|
|
|
if computeSystem.handle == 0 {
|
|
|
|
return makeSystemError(computeSystem, "Shutdown", "", ErrAlreadyClosed, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
var resultp *uint16
|
2019-02-28 13:16:30 -05:00
|
|
|
syscallWatcher(computeSystem.logctx, func() {
|
|
|
|
err = hcsShutdownComputeSystem(computeSystem.handle, "", &resultp)
|
|
|
|
})
|
2018-09-05 14:54:38 -04:00
|
|
|
events := processHcsResult(resultp)
|
|
|
|
if err != nil {
|
|
|
|
return makeSystemError(computeSystem, "Shutdown", "", err, events)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Terminate requests a compute system terminate, if IsPending() on the error returned is true,
|
|
|
|
// it may not actually be shut down until Wait() succeeds.
|
2019-02-28 13:16:30 -05:00
|
|
|
func (computeSystem *System) Terminate() (err error) {
|
2018-09-05 14:54:38 -04:00
|
|
|
computeSystem.handleLock.RLock()
|
|
|
|
defer computeSystem.handleLock.RUnlock()
|
2019-02-28 13:16:30 -05:00
|
|
|
|
|
|
|
operation := "hcsshim::ComputeSystem::Terminate"
|
|
|
|
computeSystem.logOperationBegin(operation)
|
|
|
|
defer func() {
|
2019-04-03 15:06:12 -04:00
|
|
|
if IsAlreadyClosed(err) || IsAlreadyStopped(err) || IsPending(err) {
|
2019-02-28 13:16:30 -05:00
|
|
|
computeSystem.logOperationEnd(operation, nil)
|
|
|
|
} else {
|
|
|
|
computeSystem.logOperationEnd(operation, err)
|
|
|
|
}
|
|
|
|
}()
|
2018-09-05 14:54:38 -04:00
|
|
|
|
|
|
|
if computeSystem.handle == 0 {
|
|
|
|
return makeSystemError(computeSystem, "Terminate", "", ErrAlreadyClosed, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
var resultp *uint16
|
2019-02-28 13:16:30 -05:00
|
|
|
syscallWatcher(computeSystem.logctx, func() {
|
|
|
|
err = hcsTerminateComputeSystem(computeSystem.handle, "", &resultp)
|
|
|
|
})
|
2018-09-05 14:54:38 -04:00
|
|
|
events := processHcsResult(resultp)
|
2019-02-28 13:16:30 -05:00
|
|
|
if err != nil && err != ErrVmcomputeAlreadyStopped {
|
2018-09-05 14:54:38 -04:00
|
|
|
return makeSystemError(computeSystem, "Terminate", "", err, events)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-04-03 15:06:12 -04:00
|
|
|
// waitBackground waits for the compute system exit notification. Once received
|
|
|
|
// sets `computeSystem.waitError` (if any) and unblocks all `Wait`,
|
|
|
|
// `WaitExpectedError`, and `WaitTimeout` calls.
|
|
|
|
//
|
|
|
|
// This MUST be called exactly once per `computeSystem.handle` but `Wait`,
|
|
|
|
// `WaitExpectedError`, and `WaitTimeout` are safe to call multiple times.
|
|
|
|
func (computeSystem *System) waitBackground() {
|
|
|
|
computeSystem.waitError = waitForNotification(computeSystem.callbackNumber, hcsNotificationSystemExited, nil)
|
|
|
|
computeSystem.closedWaitOnce.Do(func() {
|
|
|
|
close(computeSystem.waitBlock)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wait synchronously waits for the compute system to shutdown or terminate. If
|
|
|
|
// the compute system has already exited returns the previous error (if any).
|
2019-02-28 13:16:30 -05:00
|
|
|
func (computeSystem *System) Wait() (err error) {
|
|
|
|
operation := "hcsshim::ComputeSystem::Wait"
|
|
|
|
computeSystem.logOperationBegin(operation)
|
|
|
|
defer func() { computeSystem.logOperationEnd(operation, err) }()
|
2018-09-05 14:54:38 -04:00
|
|
|
|
2019-04-03 15:06:12 -04:00
|
|
|
<-computeSystem.waitBlock
|
|
|
|
if computeSystem.waitError != nil {
|
|
|
|
return makeSystemError(computeSystem, "Wait", "", computeSystem.waitError, nil)
|
2018-09-05 14:54:38 -04:00
|
|
|
}
|
|
|
|
|
2019-02-28 13:16:30 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// WaitExpectedError synchronously waits for the compute system to shutdown or
|
2019-04-03 15:06:12 -04:00
|
|
|
// terminate and returns the error (if any) as long as it does not match
|
|
|
|
// `expected`. If the compute system has already exited returns the previous
|
|
|
|
// error (if any) as long as it does not match `expected`.
|
2019-02-28 13:16:30 -05:00
|
|
|
func (computeSystem *System) WaitExpectedError(expected error) (err error) {
|
|
|
|
operation := "hcsshim::ComputeSystem::WaitExpectedError"
|
|
|
|
computeSystem.logOperationBegin(operation)
|
|
|
|
defer func() { computeSystem.logOperationEnd(operation, err) }()
|
|
|
|
|
2019-04-03 15:06:12 -04:00
|
|
|
<-computeSystem.waitBlock
|
|
|
|
if computeSystem.waitError != nil && getInnerError(computeSystem.waitError) != expected {
|
|
|
|
return makeSystemError(computeSystem, "WaitExpectedError", "", computeSystem.waitError, nil)
|
2019-02-28 13:16:30 -05:00
|
|
|
}
|
2018-09-05 14:54:38 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-04-03 15:06:12 -04:00
|
|
|
// WaitTimeout synchronously waits for the compute system to terminate or the
|
|
|
|
// duration to elapse. If the timeout expires, `IsTimeout(err) == true`. If
|
|
|
|
// the compute system has already exited returns the previous error (if any).
|
2019-02-28 13:16:30 -05:00
|
|
|
func (computeSystem *System) WaitTimeout(timeout time.Duration) (err error) {
|
|
|
|
operation := "hcsshim::ComputeSystem::WaitTimeout"
|
|
|
|
computeSystem.logOperationBegin(operation)
|
|
|
|
defer func() { computeSystem.logOperationEnd(operation, err) }()
|
2018-09-05 14:54:38 -04:00
|
|
|
|
2019-04-03 15:06:12 -04:00
|
|
|
select {
|
|
|
|
case <-computeSystem.waitBlock:
|
|
|
|
if computeSystem.waitError != nil {
|
|
|
|
return makeSystemError(computeSystem, "WaitTimeout", "", computeSystem.waitError, nil)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
case <-time.After(timeout):
|
|
|
|
return makeSystemError(computeSystem, "WaitTimeout", "", ErrTimeout, nil)
|
2018-09-05 14:54:38 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-28 13:16:30 -05:00
|
|
|
func (computeSystem *System) Properties(types ...schema1.PropertyType) (_ *schema1.ContainerProperties, err error) {
|
2018-09-05 14:54:38 -04:00
|
|
|
computeSystem.handleLock.RLock()
|
|
|
|
defer computeSystem.handleLock.RUnlock()
|
|
|
|
|
2019-02-28 13:16:30 -05:00
|
|
|
operation := "hcsshim::ComputeSystem::Properties"
|
|
|
|
computeSystem.logOperationBegin(operation)
|
|
|
|
defer func() { computeSystem.logOperationEnd(operation, err) }()
|
|
|
|
|
2019-04-24 14:14:51 -04:00
|
|
|
queryBytes, err := json.Marshal(schema1.PropertyQuery{PropertyTypes: types})
|
2018-09-05 14:54:38 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, makeSystemError(computeSystem, "Properties", "", err, nil)
|
|
|
|
}
|
|
|
|
|
2019-04-24 14:14:51 -04:00
|
|
|
queryString := string(queryBytes)
|
2019-02-28 13:16:30 -05:00
|
|
|
logrus.WithFields(computeSystem.logctx).
|
2019-04-24 14:14:51 -04:00
|
|
|
WithField(logfields.JSON, queryString).
|
2019-02-28 13:16:30 -05:00
|
|
|
Debug("HCS ComputeSystem Properties Query")
|
|
|
|
|
2018-09-05 14:54:38 -04:00
|
|
|
var resultp, propertiesp *uint16
|
2019-02-28 13:16:30 -05:00
|
|
|
syscallWatcher(computeSystem.logctx, func() {
|
2019-04-24 14:14:51 -04:00
|
|
|
err = hcsGetComputeSystemProperties(computeSystem.handle, string(queryString), &propertiesp, &resultp)
|
2019-02-28 13:16:30 -05:00
|
|
|
})
|
2018-09-05 14:54:38 -04:00
|
|
|
events := processHcsResult(resultp)
|
|
|
|
if err != nil {
|
|
|
|
return nil, makeSystemError(computeSystem, "Properties", "", err, events)
|
|
|
|
}
|
|
|
|
|
|
|
|
if propertiesp == nil {
|
|
|
|
return nil, ErrUnexpectedValue
|
|
|
|
}
|
|
|
|
propertiesRaw := interop.ConvertAndFreeCoTaskMemBytes(propertiesp)
|
|
|
|
properties := &schema1.ContainerProperties{}
|
|
|
|
if err := json.Unmarshal(propertiesRaw, properties); err != nil {
|
|
|
|
return nil, makeSystemError(computeSystem, "Properties", "", err, nil)
|
|
|
|
}
|
2019-02-28 13:16:30 -05:00
|
|
|
|
2018-09-05 14:54:38 -04:00
|
|
|
return properties, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pause pauses the execution of the computeSystem. This feature is not enabled in TP5.
|
2019-02-28 13:16:30 -05:00
|
|
|
func (computeSystem *System) Pause() (err error) {
|
2018-09-05 14:54:38 -04:00
|
|
|
computeSystem.handleLock.RLock()
|
|
|
|
defer computeSystem.handleLock.RUnlock()
|
2019-02-28 13:16:30 -05:00
|
|
|
|
|
|
|
operation := "hcsshim::ComputeSystem::Pause"
|
|
|
|
computeSystem.logOperationBegin(operation)
|
|
|
|
defer func() { computeSystem.logOperationEnd(operation, err) }()
|
2018-09-05 14:54:38 -04:00
|
|
|
|
|
|
|
if computeSystem.handle == 0 {
|
|
|
|
return makeSystemError(computeSystem, "Pause", "", ErrAlreadyClosed, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
var resultp *uint16
|
2019-02-28 13:16:30 -05:00
|
|
|
syscallWatcher(computeSystem.logctx, func() {
|
|
|
|
err = hcsPauseComputeSystem(computeSystem.handle, "", &resultp)
|
|
|
|
})
|
2018-09-26 06:54:23 -04:00
|
|
|
events, err := processAsyncHcsResult(err, resultp, computeSystem.callbackNumber, hcsNotificationSystemPauseCompleted, &timeout.SystemPause)
|
2018-09-05 14:54:38 -04:00
|
|
|
if err != nil {
|
|
|
|
return makeSystemError(computeSystem, "Pause", "", err, events)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Resume resumes the execution of the computeSystem. This feature is not enabled in TP5.
|
2019-02-28 13:16:30 -05:00
|
|
|
func (computeSystem *System) Resume() (err error) {
|
2018-09-05 14:54:38 -04:00
|
|
|
computeSystem.handleLock.RLock()
|
|
|
|
defer computeSystem.handleLock.RUnlock()
|
2019-02-28 13:16:30 -05:00
|
|
|
|
|
|
|
operation := "hcsshim::ComputeSystem::Resume"
|
|
|
|
computeSystem.logOperationBegin(operation)
|
|
|
|
defer func() { computeSystem.logOperationEnd(operation, err) }()
|
2018-09-05 14:54:38 -04:00
|
|
|
|
|
|
|
if computeSystem.handle == 0 {
|
|
|
|
return makeSystemError(computeSystem, "Resume", "", ErrAlreadyClosed, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
var resultp *uint16
|
2019-02-28 13:16:30 -05:00
|
|
|
syscallWatcher(computeSystem.logctx, func() {
|
|
|
|
err = hcsResumeComputeSystem(computeSystem.handle, "", &resultp)
|
|
|
|
})
|
2018-09-26 06:54:23 -04:00
|
|
|
events, err := processAsyncHcsResult(err, resultp, computeSystem.callbackNumber, hcsNotificationSystemResumeCompleted, &timeout.SystemResume)
|
2018-09-05 14:54:38 -04:00
|
|
|
if err != nil {
|
|
|
|
return makeSystemError(computeSystem, "Resume", "", err, events)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateProcess launches a new process within the computeSystem.
|
2019-02-28 13:16:30 -05:00
|
|
|
func (computeSystem *System) CreateProcess(c interface{}) (_ *Process, err error) {
|
2018-09-05 14:54:38 -04:00
|
|
|
computeSystem.handleLock.RLock()
|
|
|
|
defer computeSystem.handleLock.RUnlock()
|
2019-02-28 13:16:30 -05:00
|
|
|
|
|
|
|
operation := "hcsshim::ComputeSystem::CreateProcess"
|
|
|
|
computeSystem.logOperationBegin(operation)
|
|
|
|
defer func() { computeSystem.logOperationEnd(operation, err) }()
|
|
|
|
|
2018-09-05 14:54:38 -04:00
|
|
|
var (
|
|
|
|
processInfo hcsProcessInformation
|
|
|
|
processHandle hcsProcess
|
|
|
|
resultp *uint16
|
|
|
|
)
|
|
|
|
|
|
|
|
if computeSystem.handle == 0 {
|
|
|
|
return nil, makeSystemError(computeSystem, "CreateProcess", "", ErrAlreadyClosed, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
configurationb, err := json.Marshal(c)
|
|
|
|
if err != nil {
|
|
|
|
return nil, makeSystemError(computeSystem, "CreateProcess", "", err, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
configuration := string(configurationb)
|
|
|
|
|
2019-02-28 13:16:30 -05:00
|
|
|
logrus.WithFields(computeSystem.logctx).
|
|
|
|
WithField(logfields.JSON, configuration).
|
|
|
|
Debug("HCS ComputeSystem Process Document")
|
|
|
|
|
|
|
|
syscallWatcher(computeSystem.logctx, func() {
|
|
|
|
err = hcsCreateProcess(computeSystem.handle, configuration, &processInfo, &processHandle, &resultp)
|
|
|
|
})
|
2018-09-05 14:54:38 -04:00
|
|
|
events := processHcsResult(resultp)
|
|
|
|
if err != nil {
|
|
|
|
return nil, makeSystemError(computeSystem, "CreateProcess", configuration, err, events)
|
|
|
|
}
|
|
|
|
|
2019-02-28 13:16:30 -05:00
|
|
|
logrus.WithFields(computeSystem.logctx).
|
|
|
|
WithField(logfields.ProcessID, processInfo.ProcessId).
|
|
|
|
Debug("HCS ComputeSystem CreateProcess PID")
|
|
|
|
|
|
|
|
process := newProcess(processHandle, int(processInfo.ProcessId), computeSystem)
|
|
|
|
process.cachedPipes = &cachedPipes{
|
|
|
|
stdIn: processInfo.StdInput,
|
|
|
|
stdOut: processInfo.StdOutput,
|
|
|
|
stdErr: processInfo.StdError,
|
2018-09-05 14:54:38 -04:00
|
|
|
}
|
|
|
|
|
2019-02-28 13:16:30 -05:00
|
|
|
if err = process.registerCallback(); err != nil {
|
2018-09-05 14:54:38 -04:00
|
|
|
return nil, makeSystemError(computeSystem, "CreateProcess", "", err, nil)
|
|
|
|
}
|
2019-04-03 15:06:12 -04:00
|
|
|
go process.waitBackground()
|
2018-09-05 14:54:38 -04:00
|
|
|
|
|
|
|
return process, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// OpenProcess gets an interface to an existing process within the computeSystem.
|
2019-02-28 13:16:30 -05:00
|
|
|
func (computeSystem *System) OpenProcess(pid int) (_ *Process, err error) {
|
2018-09-05 14:54:38 -04:00
|
|
|
computeSystem.handleLock.RLock()
|
|
|
|
defer computeSystem.handleLock.RUnlock()
|
2019-02-28 13:16:30 -05:00
|
|
|
|
|
|
|
// Add PID for the context of this operation
|
|
|
|
computeSystem.logctx[logfields.ProcessID] = pid
|
|
|
|
defer delete(computeSystem.logctx, logfields.ProcessID)
|
|
|
|
|
|
|
|
operation := "hcsshim::ComputeSystem::OpenProcess"
|
|
|
|
computeSystem.logOperationBegin(operation)
|
|
|
|
defer func() { computeSystem.logOperationEnd(operation, err) }()
|
|
|
|
|
2018-09-05 14:54:38 -04:00
|
|
|
var (
|
|
|
|
processHandle hcsProcess
|
|
|
|
resultp *uint16
|
|
|
|
)
|
|
|
|
|
|
|
|
if computeSystem.handle == 0 {
|
|
|
|
return nil, makeSystemError(computeSystem, "OpenProcess", "", ErrAlreadyClosed, nil)
|
|
|
|
}
|
|
|
|
|
2019-02-28 13:16:30 -05:00
|
|
|
syscallWatcher(computeSystem.logctx, func() {
|
|
|
|
err = hcsOpenProcess(computeSystem.handle, uint32(pid), &processHandle, &resultp)
|
|
|
|
})
|
2018-09-05 14:54:38 -04:00
|
|
|
events := processHcsResult(resultp)
|
|
|
|
if err != nil {
|
|
|
|
return nil, makeSystemError(computeSystem, "OpenProcess", "", err, events)
|
|
|
|
}
|
|
|
|
|
2019-02-28 13:16:30 -05:00
|
|
|
process := newProcess(processHandle, pid, computeSystem)
|
|
|
|
if err = process.registerCallback(); err != nil {
|
2018-09-05 14:54:38 -04:00
|
|
|
return nil, makeSystemError(computeSystem, "OpenProcess", "", err, nil)
|
|
|
|
}
|
2019-04-03 15:06:12 -04:00
|
|
|
go process.waitBackground()
|
2018-09-05 14:54:38 -04:00
|
|
|
|
|
|
|
return process, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close cleans up any state associated with the compute system but does not terminate or wait for it.
|
2019-02-28 13:16:30 -05:00
|
|
|
func (computeSystem *System) Close() (err error) {
|
2018-09-05 14:54:38 -04:00
|
|
|
computeSystem.handleLock.Lock()
|
|
|
|
defer computeSystem.handleLock.Unlock()
|
2019-02-28 13:16:30 -05:00
|
|
|
|
|
|
|
operation := "hcsshim::ComputeSystem::Close"
|
|
|
|
computeSystem.logOperationBegin(operation)
|
|
|
|
defer func() { computeSystem.logOperationEnd(operation, err) }()
|
2018-09-05 14:54:38 -04:00
|
|
|
|
|
|
|
// Don't double free this
|
|
|
|
if computeSystem.handle == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-02-28 13:16:30 -05:00
|
|
|
if err = computeSystem.unregisterCallback(); err != nil {
|
2018-09-05 14:54:38 -04:00
|
|
|
return makeSystemError(computeSystem, "Close", "", err, nil)
|
|
|
|
}
|
|
|
|
|
2019-02-28 13:16:30 -05:00
|
|
|
syscallWatcher(computeSystem.logctx, func() {
|
|
|
|
err = hcsCloseComputeSystem(computeSystem.handle)
|
|
|
|
})
|
2018-09-26 06:54:23 -04:00
|
|
|
if err != nil {
|
2018-09-05 14:54:38 -04:00
|
|
|
return makeSystemError(computeSystem, "Close", "", err, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
computeSystem.handle = 0
|
2019-04-03 15:06:12 -04:00
|
|
|
computeSystem.closedWaitOnce.Do(func() {
|
|
|
|
close(computeSystem.waitBlock)
|
|
|
|
})
|
2018-09-05 14:54:38 -04:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (computeSystem *System) registerCallback() error {
|
|
|
|
context := ¬ifcationWatcherContext{
|
2019-04-24 14:14:51 -04:00
|
|
|
channels: newSystemChannels(),
|
|
|
|
systemID: computeSystem.id,
|
2018-09-05 14:54:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
callbackMapLock.Lock()
|
|
|
|
callbackNumber := nextCallback
|
|
|
|
nextCallback++
|
|
|
|
callbackMap[callbackNumber] = context
|
|
|
|
callbackMapLock.Unlock()
|
|
|
|
|
|
|
|
var callbackHandle hcsCallback
|
|
|
|
err := hcsRegisterComputeSystemCallback(computeSystem.handle, notificationWatcherCallback, callbackNumber, &callbackHandle)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
context.handle = callbackHandle
|
|
|
|
computeSystem.callbackNumber = callbackNumber
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (computeSystem *System) unregisterCallback() error {
|
|
|
|
callbackNumber := computeSystem.callbackNumber
|
|
|
|
|
|
|
|
callbackMapLock.RLock()
|
|
|
|
context := callbackMap[callbackNumber]
|
|
|
|
callbackMapLock.RUnlock()
|
|
|
|
|
|
|
|
if context == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
handle := context.handle
|
|
|
|
|
|
|
|
if handle == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// hcsUnregisterComputeSystemCallback has its own syncronization
|
|
|
|
// to wait for all callbacks to complete. We must NOT hold the callbackMapLock.
|
|
|
|
err := hcsUnregisterComputeSystemCallback(handle)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
closeChannels(context.channels)
|
|
|
|
|
|
|
|
callbackMapLock.Lock()
|
2019-04-03 15:06:12 -04:00
|
|
|
delete(callbackMap, callbackNumber)
|
2018-09-05 14:54:38 -04:00
|
|
|
callbackMapLock.Unlock()
|
|
|
|
|
|
|
|
handle = 0
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-02-28 13:16:30 -05:00
|
|
|
// Modify the System by sending a request to HCS
|
|
|
|
func (computeSystem *System) Modify(config interface{}) (err error) {
|
2018-09-05 14:54:38 -04:00
|
|
|
computeSystem.handleLock.RLock()
|
|
|
|
defer computeSystem.handleLock.RUnlock()
|
2019-02-28 13:16:30 -05:00
|
|
|
|
|
|
|
operation := "hcsshim::ComputeSystem::Modify"
|
|
|
|
computeSystem.logOperationBegin(operation)
|
|
|
|
defer func() { computeSystem.logOperationEnd(operation, err) }()
|
2018-09-05 14:54:38 -04:00
|
|
|
|
|
|
|
if computeSystem.handle == 0 {
|
|
|
|
return makeSystemError(computeSystem, "Modify", "", ErrAlreadyClosed, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
requestJSON, err := json.Marshal(config)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
requestString := string(requestJSON)
|
2019-02-28 13:16:30 -05:00
|
|
|
|
|
|
|
logrus.WithFields(computeSystem.logctx).
|
|
|
|
WithField(logfields.JSON, requestString).
|
|
|
|
Debug("HCS ComputeSystem Modify Document")
|
2018-09-05 14:54:38 -04:00
|
|
|
|
|
|
|
var resultp *uint16
|
2019-02-28 13:16:30 -05:00
|
|
|
syscallWatcher(computeSystem.logctx, func() {
|
|
|
|
err = hcsModifyComputeSystem(computeSystem.handle, requestString, &resultp)
|
|
|
|
})
|
2018-09-05 14:54:38 -04:00
|
|
|
events := processHcsResult(resultp)
|
|
|
|
if err != nil {
|
|
|
|
return makeSystemError(computeSystem, "Modify", requestString, err, events)
|
|
|
|
}
|
2019-02-28 13:16:30 -05:00
|
|
|
|
2018-09-05 14:54:38 -04:00
|
|
|
return nil
|
|
|
|
}
|