-
Notifications
You must be signed in to change notification settings - Fork 23
/
ntdll.go
130 lines (108 loc) · 4.27 KB
/
ntdll.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
// Licensed to Elasticsearch B.V. under one or more contributor
// license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright
// ownership. Elasticsearch B.V. licenses this file to you under
// the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
//go:build windows
// +build windows
package windows
import (
"fmt"
"syscall"
"unsafe"
)
const (
// SizeOfProcessBasicInformationStruct gives the size
// of the ProcessBasicInformationStruct struct.
SizeOfProcessBasicInformationStruct = unsafe.Sizeof(ProcessBasicInformationStruct{})
// SizeOfRtlUserProcessParameters gives the size
// of the RtlUserProcessParameters struct.
SizeOfRtlUserProcessParameters = unsafe.Sizeof(RtlUserProcessParameters{})
)
// NTStatus is an error wrapper for NTSTATUS values, 32bit error-codes returned
// by the NT Kernel.
type NTStatus uint32
// ProcessInfoClass is Go's counterpart for the PROCESSINFOCLASS enumeration
// defined in ntdll.h.
type ProcessInfoClass uint32
const (
// ProcessInfoClass enumeration values that can be used as arguments to
// NtQueryInformationProcess
// ProcessBasicInformation returns a pointer to
// the Process Environment Block (PEB) structure.
ProcessBasicInformation ProcessInfoClass = 0
// ProcessDebugPort returns a uint32 that is the port number for the
// debugger of the process.
ProcessDebugPort = 7
// ProcessWow64Information returns whether a process is running under
// WOW64.
ProcessWow64Information = 26
// ProcessImageFileName returns the image file name for the process, as a
// UnicodeString struct.
ProcessImageFileName = 27
// ProcessBreakOnTermination returns a uintptr that tells if the process
// is critical.
ProcessBreakOnTermination = 29
// ProcessSubsystemInformation returns the subsystem type of the process.
ProcessSubsystemInformation = 75
)
// ProcessBasicInformationStruct is Go's counterpart of the
// PROCESS_BASIC_INFORMATION struct, returned by NtQueryInformationProcess
// when ProcessBasicInformation is requested.
type ProcessBasicInformationStruct struct {
Reserved1 uintptr
PebBaseAddress uintptr
Reserved2 [2]uintptr
UniqueProcessID uintptr
// Undocumented:
InheritedFromUniqueProcessID uintptr
}
// UnicodeString is Go's equivalent for the _UNICODE_STRING struct.
type UnicodeString struct {
Size uint16
MaximumLength uint16
Buffer uintptr
}
// RtlUserProcessParameters is Go's equivalent for the
// _RTL_USER_PROCESS_PARAMETERS struct.
// A few undocumented fields are exposed.
type RtlUserProcessParameters struct {
Reserved1 [16]byte
Reserved2 [5]uintptr
// <undocumented>
CurrentDirectoryPath UnicodeString
CurrentDirectoryHandle uintptr
DllPath UnicodeString
// </undocumented>
ImagePathName UnicodeString
CommandLine UnicodeString
}
// Syscalls
// Warning: NtQueryInformationProcess is an unsupported API that can change
// in future versions of Windows. Available from XP to Windows 10.
//sys _NtQueryInformationProcess(handle syscall.Handle, infoClass uint32, info uintptr, infoLen uint32, returnLen *uint32) (ntStatus uint32) = ntdll.NtQueryInformationProcess
// NtQueryInformationProcess is a wrapper for ntdll.NtQueryInformationProcess.
// The handle must have the PROCESS_QUERY_INFORMATION access right.
// Returns an error of type NTStatus.
func NtQueryInformationProcess(handle syscall.Handle, infoClass ProcessInfoClass, info unsafe.Pointer, infoLen uint32) (returnedLen uint32, err error) {
status := _NtQueryInformationProcess(handle, uint32(infoClass), uintptr(info), infoLen, &returnedLen)
if status != 0 {
return returnedLen, NTStatus(status)
}
return returnedLen, nil
}
// Error prints the wrapped NTSTATUS in hex form.
func (status NTStatus) Error() string {
return fmt.Sprintf("ntstatus=%x", uint32(status))
}