Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions hcsshim.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ const (
procCreateProcessInComputeSystem = "CreateProcessInComputeSystem"
procWaitForProcessInComputeSystem = "WaitForProcessInComputeSystem"
procShutdownComputeSystem = "ShutdownComputeSystem"
procTerminateComputeSystem = "TerminateComputeSystem"
procTerminateProcessInComputeSystem = "TerminateProcessInComputeSystem"
procResizeConsoleInComputeSystem = "ResizeConsoleInComputeSystem"

Expand Down
49 changes: 49 additions & 0 deletions terminatecomputesystem.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
package hcsshim

import (
"fmt"
"syscall"
"unsafe"

"github.com/Sirupsen/logrus"
)

// TerminateComputeSystem force terminates a container
func TerminateComputeSystem(id string) error {

var title = "HCSShim::TerminateComputeSystem"
logrus.Debugf(title+" id=%s", id)

// Load the DLL and get a handle to the procedure we need
dll, proc, err := loadAndFind(procTerminateComputeSystem)
if dll != nil {
defer dll.Release()
}
if err != nil {
return err
}

// Convert id to uint16 pointers for calling the procedure
idp, err := syscall.UTF16PtrFromString(id)
if err != nil {
err = fmt.Errorf(title+" - Failed conversion of id %s to pointer %s", id, err)
logrus.Error(err)
return err
}

timeout := uint32(0xffffffff)

// Call the procedure itself.
r1, _, err := proc.Call(
uintptr(unsafe.Pointer(idp)), uintptr(timeout))

use(unsafe.Pointer(idp))

if r1 != 0 {
err = fmt.Errorf(title+" - Win32 API call returned error r1=%d err=%s id=%s", r1, syscall.Errno(r1), id)
return syscall.Errno(r1)
}

logrus.Debugf(title+" - succeeded id=%s", id)
return nil
}