github.com/x04/go/src@v0.0.0-20200202162449-3d481ceb3525/os/exec_windows.go (about)

     1  // Copyright 2009 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  package os
     6  
     7  import (
     8  	"github.com/x04/go/src/errors"
     9  	"github.com/x04/go/src/internal/syscall/windows"
    10  	"github.com/x04/go/src/runtime"
    11  	"github.com/x04/go/src/sync/atomic"
    12  	"github.com/x04/go/src/syscall"
    13  	"github.com/x04/go/src/time"
    14  )
    15  
    16  func (p *Process) wait() (ps *ProcessState, err error) {
    17  	handle := atomic.LoadUintptr(&p.handle)
    18  	s, e := syscall.WaitForSingleObject(syscall.Handle(handle), syscall.INFINITE)
    19  	switch s {
    20  	case syscall.WAIT_OBJECT_0:
    21  		break
    22  	case syscall.WAIT_FAILED:
    23  		return nil, NewSyscallError("WaitForSingleObject", e)
    24  	default:
    25  		return nil, errors.New("os: unexpected result from WaitForSingleObject")
    26  	}
    27  	var ec uint32
    28  	e = syscall.GetExitCodeProcess(syscall.Handle(handle), &ec)
    29  	if e != nil {
    30  		return nil, NewSyscallError("GetExitCodeProcess", e)
    31  	}
    32  	var u syscall.Rusage
    33  	e = syscall.GetProcessTimes(syscall.Handle(handle), &u.CreationTime, &u.ExitTime, &u.KernelTime, &u.UserTime)
    34  	if e != nil {
    35  		return nil, NewSyscallError("GetProcessTimes", e)
    36  	}
    37  	p.setDone()
    38  	// NOTE(brainman): It seems that sometimes process is not dead
    39  	// when WaitForSingleObject returns. But we do not know any
    40  	// other way to wait for it. Sleeping for a while seems to do
    41  	// the trick sometimes.
    42  	// See https://golang.org/issue/25965 for details.
    43  	defer time.Sleep(5 * time.Millisecond)
    44  	defer p.Release()
    45  	return &ProcessState{p.Pid, syscall.WaitStatus{ExitCode: ec}, &u}, nil
    46  }
    47  
    48  func terminateProcess(pid, exitcode int) error {
    49  	h, e := syscall.OpenProcess(syscall.PROCESS_TERMINATE, false, uint32(pid))
    50  	if e != nil {
    51  		return NewSyscallError("OpenProcess", e)
    52  	}
    53  	defer syscall.CloseHandle(h)
    54  	e = syscall.TerminateProcess(h, uint32(exitcode))
    55  	return NewSyscallError("TerminateProcess", e)
    56  }
    57  
    58  func (p *Process) signal(sig Signal) error {
    59  	handle := atomic.LoadUintptr(&p.handle)
    60  	if handle == uintptr(syscall.InvalidHandle) {
    61  		return syscall.EINVAL
    62  	}
    63  	if p.done() {
    64  		return errors.New("os: process already finished")
    65  	}
    66  	if sig == Kill {
    67  		err := terminateProcess(p.Pid, 1)
    68  		runtime.KeepAlive(p)
    69  		return err
    70  	}
    71  	// TODO(rsc): Handle Interrupt too?
    72  	return syscall.Errno(syscall.EWINDOWS)
    73  }
    74  
    75  func (p *Process) release() error {
    76  	handle := atomic.LoadUintptr(&p.handle)
    77  	if handle == uintptr(syscall.InvalidHandle) {
    78  		return syscall.EINVAL
    79  	}
    80  	e := syscall.CloseHandle(syscall.Handle(handle))
    81  	if e != nil {
    82  		return NewSyscallError("CloseHandle", e)
    83  	}
    84  	atomic.StoreUintptr(&p.handle, uintptr(syscall.InvalidHandle))
    85  	// no need for a finalizer anymore
    86  	runtime.SetFinalizer(p, nil)
    87  	return nil
    88  }
    89  
    90  func findProcess(pid int) (p *Process, err error) {
    91  	const da = syscall.STANDARD_RIGHTS_READ |
    92  		syscall.PROCESS_QUERY_INFORMATION | syscall.SYNCHRONIZE
    93  	h, e := syscall.OpenProcess(da, false, uint32(pid))
    94  	if e != nil {
    95  		return nil, NewSyscallError("OpenProcess", e)
    96  	}
    97  	return newProcess(pid, uintptr(h)), nil
    98  }
    99  
   100  func init() {
   101  	cmd := windows.UTF16PtrToString(syscall.GetCommandLine(), 0xffff)
   102  	if len(cmd) == 0 {
   103  		arg0, _ := Executable()
   104  		Args = []string{arg0}
   105  	} else {
   106  		Args = commandLineToArgv(cmd)
   107  	}
   108  }
   109  
   110  // appendBSBytes appends n '\\' bytes to b and returns the resulting slice.
   111  func appendBSBytes(b []byte, n int) []byte {
   112  	for ; n > 0; n-- {
   113  		b = append(b, '\\')
   114  	}
   115  	return b
   116  }
   117  
   118  // readNextArg splits command line string cmd into next
   119  // argument and command line remainder.
   120  func readNextArg(cmd string) (arg []byte, rest string) {
   121  	var b []byte
   122  	var inquote bool
   123  	var nslash int
   124  	for ; len(cmd) > 0; cmd = cmd[1:] {
   125  		c := cmd[0]
   126  		switch c {
   127  		case ' ', '\t':
   128  			if !inquote {
   129  				return appendBSBytes(b, nslash), cmd[1:]
   130  			}
   131  		case '"':
   132  			b = appendBSBytes(b, nslash/2)
   133  			if nslash%2 == 0 {
   134  				// use "Prior to 2008" rule from
   135  				// http://daviddeley.com/autohotkey/parameters/parameters.htm
   136  				// section 5.2 to deal with double double quotes
   137  				if inquote && len(cmd) > 1 && cmd[1] == '"' {
   138  					b = append(b, c)
   139  					cmd = cmd[1:]
   140  				}
   141  				inquote = !inquote
   142  			} else {
   143  				b = append(b, c)
   144  			}
   145  			nslash = 0
   146  			continue
   147  		case '\\':
   148  			nslash++
   149  			continue
   150  		}
   151  		b = appendBSBytes(b, nslash)
   152  		nslash = 0
   153  		b = append(b, c)
   154  	}
   155  	return appendBSBytes(b, nslash), ""
   156  }
   157  
   158  // commandLineToArgv splits a command line into individual argument
   159  // strings, following the Windows conventions documented
   160  // at http://daviddeley.com/autohotkey/parameters/parameters.htm#WINARGV
   161  func commandLineToArgv(cmd string) []string {
   162  	var args []string
   163  	for len(cmd) > 0 {
   164  		if cmd[0] == ' ' || cmd[0] == '\t' {
   165  			cmd = cmd[1:]
   166  			continue
   167  		}
   168  		var arg []byte
   169  		arg, cmd = readNextArg(cmd)
   170  		args = append(args, string(arg))
   171  	}
   172  	return args
   173  }
   174  
   175  func ftToDuration(ft *syscall.Filetime) time.Duration {
   176  	n := int64(ft.HighDateTime)<<32 + int64(ft.LowDateTime)	// in 100-nanosecond intervals
   177  	return time.Duration(n*100) * time.Nanosecond
   178  }
   179  
   180  func (p *ProcessState) userTime() time.Duration {
   181  	return ftToDuration(&p.rusage.UserTime)
   182  }
   183  
   184  func (p *ProcessState) systemTime() time.Duration {
   185  	return ftToDuration(&p.rusage.KernelTime)
   186  }