win32-service 0.8.10 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/{CHANGES → CHANGELOG.md} +347 -336
- data/Gemfile +5 -0
- data/MANIFEST +24 -24
- data/README.md +75 -0
- data/Rakefile +83 -98
- data/VERSION +1 -0
- data/appveyor.yml +48 -48
- data/doc/daemon.txt +157 -157
- data/doc/service.txt +363 -363
- data/examples/demo_daemon.rb +96 -96
- data/examples/demo_daemon_ctl.rb +123 -123
- data/examples/demo_services.rb +30 -30
- data/lib/win32-daemon.rb +1 -1
- data/lib/win32-service.rb +1 -1
- data/lib/win32/daemon.rb +361 -361
- data/lib/win32/service.rb +1575 -1577
- data/lib/win32/windows/constants.rb +143 -143
- data/lib/win32/windows/functions.rb +75 -75
- data/lib/win32/windows/structs.rb +135 -135
- data/lib/win32/windows/version.rb +6 -0
- data/test/test_win32_daemon.rb +58 -58
- data/test/test_win32_service.rb +468 -468
- data/test/test_win32_service_configure.rb +110 -110
- data/test/test_win32_service_create.rb +153 -153
- data/test/test_win32_service_info.rb +189 -189
- data/test/test_win32_service_status.rb +110 -110
- data/win32-service.gemspec +41 -39
- metadata +19 -46
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/README +0 -71
- data/certs/djberg96_pub.pem +0 -21
- metadata.gz.sig +0 -0
@@ -1,143 +1,143 @@
|
|
1
|
-
module Windows
|
2
|
-
module ServiceConstants
|
3
|
-
SC_MANAGER_ALL_ACCESS = 0xF003F
|
4
|
-
SC_MANAGER_CREATE_SERVICE = 0x0002
|
5
|
-
SC_MANAGER_CONNECT = 0x0001
|
6
|
-
SC_MANAGER_ENUMERATE_SERVICE = 0x0004
|
7
|
-
SC_MANAGER_LOCK = 0x0008
|
8
|
-
SC_MANAGER_MODIFY_BOOT_CONFIG = 0x0020
|
9
|
-
SC_MANAGER_QUERY_LOCK_STATUS = 0x0010
|
10
|
-
SC_STATUS_PROCESS_INFO = 0
|
11
|
-
SC_ENUM_PROCESS_INFO = 0
|
12
|
-
|
13
|
-
# Service control action types
|
14
|
-
SC_ACTION_NONE = 0
|
15
|
-
SC_ACTION_RESTART = 1
|
16
|
-
SC_ACTION_REBOOT = 2
|
17
|
-
SC_ACTION_RUN_COMMAND = 3
|
18
|
-
|
19
|
-
# Service access rights
|
20
|
-
SERVICE_ALL_ACCESS = 0xF01FF
|
21
|
-
SERVICE_CHANGE_CONFIG = 0x0002
|
22
|
-
SERVICE_ENUMERATE_DEPENDENTS = 0x0008
|
23
|
-
SERVICE_INTERROGATE = 0x0080
|
24
|
-
SERVICE_PAUSE_CONTINUE = 0x0040
|
25
|
-
SERVICE_QUERY_CONFIG = 0x0001
|
26
|
-
SERVICE_QUERY_STATUS = 0x0004
|
27
|
-
SERVICE_START = 0x0010
|
28
|
-
SERVICE_STOP = 0x0020
|
29
|
-
SERVICE_USER_DEFINED_CONTROL = 0x0100
|
30
|
-
|
31
|
-
# Service types
|
32
|
-
SERVICE_KERNEL_DRIVER = 0x00000001
|
33
|
-
SERVICE_FILE_SYSTEM_DRIVER = 0x00000002
|
34
|
-
SERVICE_ADAPTER = 0x00000004
|
35
|
-
SERVICE_RECOGNIZER_DRIVER = 0x00000008
|
36
|
-
SERVICE_WIN32_OWN_PROCESS = 0x00000010
|
37
|
-
SERVICE_WIN32_SHARE_PROCESS = 0x00000020
|
38
|
-
SERVICE_WIN32 = 0x00000030
|
39
|
-
SERVICE_INTERACTIVE_PROCESS = 0x00000100
|
40
|
-
SERVICE_DRIVER = 0x0000000B
|
41
|
-
SERVICE_TYPE_ALL = 0x0000013F
|
42
|
-
|
43
|
-
# Error control
|
44
|
-
SERVICE_ERROR_IGNORE = 0x00000000
|
45
|
-
SERVICE_ERROR_NORMAL = 0x00000001
|
46
|
-
SERVICE_ERROR_SEVERE = 0x00000002
|
47
|
-
SERVICE_ERROR_CRITICAL = 0x00000003
|
48
|
-
|
49
|
-
# Start types
|
50
|
-
SERVICE_BOOT_START = 0x00000000
|
51
|
-
SERVICE_SYSTEM_START = 0x00000001
|
52
|
-
SERVICE_AUTO_START = 0x00000002
|
53
|
-
SERVICE_DEMAND_START = 0x00000003
|
54
|
-
SERVICE_DISABLED = 0x00000004
|
55
|
-
|
56
|
-
# Service control
|
57
|
-
|
58
|
-
SERVICE_CONTROL_STOP = 0x00000001
|
59
|
-
SERVICE_CONTROL_PAUSE = 0x00000002
|
60
|
-
SERVICE_CONTROL_CONTINUE = 0x00000003
|
61
|
-
SERVICE_CONTROL_INTERROGATE = 0x00000004
|
62
|
-
SERVICE_CONTROL_SHUTDOWN = 0x00000005
|
63
|
-
SERVICE_CONTROL_PARAMCHANGE = 0x00000006
|
64
|
-
SERVICE_CONTROL_NETBINDADD = 0x00000007
|
65
|
-
SERVICE_CONTROL_NETBINDREMOVE = 0x00000008
|
66
|
-
SERVICE_CONTROL_NETBINDENABLE = 0x00000009
|
67
|
-
SERVICE_CONTROL_NETBINDDISABLE = 0x0000000A
|
68
|
-
SERVICE_CONTROL_DEVICEEVENT = 0x0000000B
|
69
|
-
SERVICE_CONTROL_HARDWAREPROFILECHANGE = 0x0000000C
|
70
|
-
SERVICE_CONTROL_POWEREVENT = 0x0000000D
|
71
|
-
SERVICE_CONTROL_SESSIONCHANGE = 0x0000000E
|
72
|
-
SERVICE_CONTROL_PRESHUTDOWN = 0x0000000F
|
73
|
-
SERVICE_CONTROL_TIMECHANGE = 0x00000010
|
74
|
-
SERVICE_CONTROL_TRIGGEREVENT = 0x00000020
|
75
|
-
|
76
|
-
# Service controls accepted
|
77
|
-
|
78
|
-
SERVICE_ACCEPT_STOP = 0x00000001
|
79
|
-
SERVICE_ACCEPT_PAUSE_CONTINUE = 0x00000002
|
80
|
-
SERVICE_ACCEPT_SHUTDOWN = 0x00000004
|
81
|
-
SERVICE_ACCEPT_PARAMCHANGE = 0x00000008
|
82
|
-
SERVICE_ACCEPT_NETBINDCHANGE = 0x00000010
|
83
|
-
SERVICE_ACCEPT_HARDWAREPROFILECHANGE = 0x00000020
|
84
|
-
SERVICE_ACCEPT_POWEREVENT = 0x00000040
|
85
|
-
SERVICE_ACCEPT_SESSIONCHANGE = 0x00000080
|
86
|
-
SERVICE_ACCEPT_PRESHUTDOWN = 0x00000100
|
87
|
-
SERVICE_ACCEPT_TIMECHANGE = 0x00000200
|
88
|
-
SERVICE_ACCEPT_TRIGGEREVENT = 0x00000400
|
89
|
-
|
90
|
-
# Service states
|
91
|
-
SERVICE_ACTIVE = 0x00000001
|
92
|
-
SERVICE_INACTIVE = 0x00000002
|
93
|
-
SERVICE_STATE_ALL = 0x00000003
|
94
|
-
|
95
|
-
# Service current states
|
96
|
-
SERVICE_STOPPED = 0x00000001
|
97
|
-
SERVICE_START_PENDING = 0x00000002
|
98
|
-
SERVICE_STOP_PENDING = 0x00000003
|
99
|
-
SERVICE_RUNNING = 0x00000004
|
100
|
-
SERVICE_CONTINUE_PENDING = 0x00000005
|
101
|
-
SERVICE_PAUSE_PENDING = 0x00000006
|
102
|
-
SERVICE_PAUSED = 0x00000007
|
103
|
-
|
104
|
-
# Info levels
|
105
|
-
SERVICE_CONFIG_DESCRIPTION = 1
|
106
|
-
SERVICE_CONFIG_FAILURE_ACTIONS = 2
|
107
|
-
SERVICE_CONFIG_DELAYED_AUTO_START_INFO = 3
|
108
|
-
SERVICE_CONFIG_FAILURE_ACTIONS_FLAG = 4
|
109
|
-
SERVICE_CONFIG_SERVICE_SID_INFO = 5
|
110
|
-
SERVICE_CONFIG_REQUIRED_PRIVILEGES_INFO = 6
|
111
|
-
SERVICE_CONFIG_PRESHUTDOWN_INFO = 7
|
112
|
-
|
113
|
-
# Configuration
|
114
|
-
SERVICE_NO_CHANGE = 0xffffffff
|
115
|
-
|
116
|
-
# Misc
|
117
|
-
|
118
|
-
WAIT_OBJECT_0 = 0
|
119
|
-
WAIT_TIMEOUT = 0x00000102
|
120
|
-
INFINITE = 0xFFFFFFFF
|
121
|
-
|
122
|
-
IDLE_CONTROL_CODE = 0
|
123
|
-
|
124
|
-
DELETE = 0x00010000
|
125
|
-
FORMAT_MESSAGE_FROM_SYSTEM = 0x00001000
|
126
|
-
FORMAT_MESSAGE_IGNORE_INSERTS = 0x00000200
|
127
|
-
|
128
|
-
NO_ERROR = 0
|
129
|
-
|
130
|
-
SE_PRIVILEGE_ENABLED = 0x00000002
|
131
|
-
TOKEN_ADJUST_PRIVILEGES = 0x0020
|
132
|
-
TOKEN_QUERY = 0x0008
|
133
|
-
|
134
|
-
# Errors
|
135
|
-
|
136
|
-
ERROR_INSUFFICIENT_BUFFER = 122
|
137
|
-
ERROR_MORE_DATA = 234
|
138
|
-
ERROR_FILE_NOT_FOUND = 2
|
139
|
-
ERROR_RESOURCE_TYPE_NOT_FOUND = 1813
|
140
|
-
ERROR_RESOURCE_NAME_NOT_FOUND = 1814
|
141
|
-
WAIT_FAILED = 0xFFFFFFFF
|
142
|
-
end
|
143
|
-
end
|
1
|
+
module Windows
|
2
|
+
module ServiceConstants
|
3
|
+
SC_MANAGER_ALL_ACCESS = 0xF003F
|
4
|
+
SC_MANAGER_CREATE_SERVICE = 0x0002
|
5
|
+
SC_MANAGER_CONNECT = 0x0001
|
6
|
+
SC_MANAGER_ENUMERATE_SERVICE = 0x0004
|
7
|
+
SC_MANAGER_LOCK = 0x0008
|
8
|
+
SC_MANAGER_MODIFY_BOOT_CONFIG = 0x0020
|
9
|
+
SC_MANAGER_QUERY_LOCK_STATUS = 0x0010
|
10
|
+
SC_STATUS_PROCESS_INFO = 0
|
11
|
+
SC_ENUM_PROCESS_INFO = 0
|
12
|
+
|
13
|
+
# Service control action types
|
14
|
+
SC_ACTION_NONE = 0
|
15
|
+
SC_ACTION_RESTART = 1
|
16
|
+
SC_ACTION_REBOOT = 2
|
17
|
+
SC_ACTION_RUN_COMMAND = 3
|
18
|
+
|
19
|
+
# Service access rights
|
20
|
+
SERVICE_ALL_ACCESS = 0xF01FF
|
21
|
+
SERVICE_CHANGE_CONFIG = 0x0002
|
22
|
+
SERVICE_ENUMERATE_DEPENDENTS = 0x0008
|
23
|
+
SERVICE_INTERROGATE = 0x0080
|
24
|
+
SERVICE_PAUSE_CONTINUE = 0x0040
|
25
|
+
SERVICE_QUERY_CONFIG = 0x0001
|
26
|
+
SERVICE_QUERY_STATUS = 0x0004
|
27
|
+
SERVICE_START = 0x0010
|
28
|
+
SERVICE_STOP = 0x0020
|
29
|
+
SERVICE_USER_DEFINED_CONTROL = 0x0100
|
30
|
+
|
31
|
+
# Service types
|
32
|
+
SERVICE_KERNEL_DRIVER = 0x00000001
|
33
|
+
SERVICE_FILE_SYSTEM_DRIVER = 0x00000002
|
34
|
+
SERVICE_ADAPTER = 0x00000004
|
35
|
+
SERVICE_RECOGNIZER_DRIVER = 0x00000008
|
36
|
+
SERVICE_WIN32_OWN_PROCESS = 0x00000010
|
37
|
+
SERVICE_WIN32_SHARE_PROCESS = 0x00000020
|
38
|
+
SERVICE_WIN32 = 0x00000030
|
39
|
+
SERVICE_INTERACTIVE_PROCESS = 0x00000100
|
40
|
+
SERVICE_DRIVER = 0x0000000B
|
41
|
+
SERVICE_TYPE_ALL = 0x0000013F
|
42
|
+
|
43
|
+
# Error control
|
44
|
+
SERVICE_ERROR_IGNORE = 0x00000000
|
45
|
+
SERVICE_ERROR_NORMAL = 0x00000001
|
46
|
+
SERVICE_ERROR_SEVERE = 0x00000002
|
47
|
+
SERVICE_ERROR_CRITICAL = 0x00000003
|
48
|
+
|
49
|
+
# Start types
|
50
|
+
SERVICE_BOOT_START = 0x00000000
|
51
|
+
SERVICE_SYSTEM_START = 0x00000001
|
52
|
+
SERVICE_AUTO_START = 0x00000002
|
53
|
+
SERVICE_DEMAND_START = 0x00000003
|
54
|
+
SERVICE_DISABLED = 0x00000004
|
55
|
+
|
56
|
+
# Service control
|
57
|
+
|
58
|
+
SERVICE_CONTROL_STOP = 0x00000001
|
59
|
+
SERVICE_CONTROL_PAUSE = 0x00000002
|
60
|
+
SERVICE_CONTROL_CONTINUE = 0x00000003
|
61
|
+
SERVICE_CONTROL_INTERROGATE = 0x00000004
|
62
|
+
SERVICE_CONTROL_SHUTDOWN = 0x00000005
|
63
|
+
SERVICE_CONTROL_PARAMCHANGE = 0x00000006
|
64
|
+
SERVICE_CONTROL_NETBINDADD = 0x00000007
|
65
|
+
SERVICE_CONTROL_NETBINDREMOVE = 0x00000008
|
66
|
+
SERVICE_CONTROL_NETBINDENABLE = 0x00000009
|
67
|
+
SERVICE_CONTROL_NETBINDDISABLE = 0x0000000A
|
68
|
+
SERVICE_CONTROL_DEVICEEVENT = 0x0000000B
|
69
|
+
SERVICE_CONTROL_HARDWAREPROFILECHANGE = 0x0000000C
|
70
|
+
SERVICE_CONTROL_POWEREVENT = 0x0000000D
|
71
|
+
SERVICE_CONTROL_SESSIONCHANGE = 0x0000000E
|
72
|
+
SERVICE_CONTROL_PRESHUTDOWN = 0x0000000F
|
73
|
+
SERVICE_CONTROL_TIMECHANGE = 0x00000010
|
74
|
+
SERVICE_CONTROL_TRIGGEREVENT = 0x00000020
|
75
|
+
|
76
|
+
# Service controls accepted
|
77
|
+
|
78
|
+
SERVICE_ACCEPT_STOP = 0x00000001
|
79
|
+
SERVICE_ACCEPT_PAUSE_CONTINUE = 0x00000002
|
80
|
+
SERVICE_ACCEPT_SHUTDOWN = 0x00000004
|
81
|
+
SERVICE_ACCEPT_PARAMCHANGE = 0x00000008
|
82
|
+
SERVICE_ACCEPT_NETBINDCHANGE = 0x00000010
|
83
|
+
SERVICE_ACCEPT_HARDWAREPROFILECHANGE = 0x00000020
|
84
|
+
SERVICE_ACCEPT_POWEREVENT = 0x00000040
|
85
|
+
SERVICE_ACCEPT_SESSIONCHANGE = 0x00000080
|
86
|
+
SERVICE_ACCEPT_PRESHUTDOWN = 0x00000100
|
87
|
+
SERVICE_ACCEPT_TIMECHANGE = 0x00000200
|
88
|
+
SERVICE_ACCEPT_TRIGGEREVENT = 0x00000400
|
89
|
+
|
90
|
+
# Service states
|
91
|
+
SERVICE_ACTIVE = 0x00000001
|
92
|
+
SERVICE_INACTIVE = 0x00000002
|
93
|
+
SERVICE_STATE_ALL = 0x00000003
|
94
|
+
|
95
|
+
# Service current states
|
96
|
+
SERVICE_STOPPED = 0x00000001
|
97
|
+
SERVICE_START_PENDING = 0x00000002
|
98
|
+
SERVICE_STOP_PENDING = 0x00000003
|
99
|
+
SERVICE_RUNNING = 0x00000004
|
100
|
+
SERVICE_CONTINUE_PENDING = 0x00000005
|
101
|
+
SERVICE_PAUSE_PENDING = 0x00000006
|
102
|
+
SERVICE_PAUSED = 0x00000007
|
103
|
+
|
104
|
+
# Info levels
|
105
|
+
SERVICE_CONFIG_DESCRIPTION = 1
|
106
|
+
SERVICE_CONFIG_FAILURE_ACTIONS = 2
|
107
|
+
SERVICE_CONFIG_DELAYED_AUTO_START_INFO = 3
|
108
|
+
SERVICE_CONFIG_FAILURE_ACTIONS_FLAG = 4
|
109
|
+
SERVICE_CONFIG_SERVICE_SID_INFO = 5
|
110
|
+
SERVICE_CONFIG_REQUIRED_PRIVILEGES_INFO = 6
|
111
|
+
SERVICE_CONFIG_PRESHUTDOWN_INFO = 7
|
112
|
+
|
113
|
+
# Configuration
|
114
|
+
SERVICE_NO_CHANGE = 0xffffffff
|
115
|
+
|
116
|
+
# Misc
|
117
|
+
|
118
|
+
WAIT_OBJECT_0 = 0
|
119
|
+
WAIT_TIMEOUT = 0x00000102
|
120
|
+
INFINITE = 0xFFFFFFFF
|
121
|
+
|
122
|
+
IDLE_CONTROL_CODE = 0
|
123
|
+
|
124
|
+
DELETE = 0x00010000
|
125
|
+
FORMAT_MESSAGE_FROM_SYSTEM = 0x00001000
|
126
|
+
FORMAT_MESSAGE_IGNORE_INSERTS = 0x00000200
|
127
|
+
|
128
|
+
NO_ERROR = 0
|
129
|
+
|
130
|
+
SE_PRIVILEGE_ENABLED = 0x00000002
|
131
|
+
TOKEN_ADJUST_PRIVILEGES = 0x0020
|
132
|
+
TOKEN_QUERY = 0x0008
|
133
|
+
|
134
|
+
# Errors
|
135
|
+
|
136
|
+
ERROR_INSUFFICIENT_BUFFER = 122
|
137
|
+
ERROR_MORE_DATA = 234
|
138
|
+
ERROR_FILE_NOT_FOUND = 2
|
139
|
+
ERROR_RESOURCE_TYPE_NOT_FOUND = 1813
|
140
|
+
ERROR_RESOURCE_NAME_NOT_FOUND = 1814
|
141
|
+
WAIT_FAILED = 0xFFFFFFFF
|
142
|
+
end
|
143
|
+
end
|
@@ -1,75 +1,75 @@
|
|
1
|
-
require 'ffi'
|
2
|
-
|
3
|
-
module Windows
|
4
|
-
module ServiceFunctions
|
5
|
-
extend FFI::Library
|
6
|
-
|
7
|
-
# Make FFI functions private
|
8
|
-
module FFI::Library
|
9
|
-
def attach_pfunc(*args)
|
10
|
-
attach_function(*args)
|
11
|
-
private args[0]
|
12
|
-
end
|
13
|
-
end
|
14
|
-
|
15
|
-
typedef :ulong, :dword
|
16
|
-
typedef :uintptr_t, :handle
|
17
|
-
typedef :pointer, :ptr
|
18
|
-
typedef :string, :str
|
19
|
-
|
20
|
-
ffi_convention :stdcall
|
21
|
-
|
22
|
-
ffi_lib :kernel32
|
23
|
-
|
24
|
-
attach_pfunc :CloseHandle, [:handle], :bool
|
25
|
-
attach_pfunc :CreateEvent, :CreateEventA, [:ptr, :int, :int, :str], :handle
|
26
|
-
attach_pfunc :CreateThread, [:ptr, :size_t, :ptr, :ptr, :dword, :ptr], :handle, :blocking => true
|
27
|
-
attach_pfunc :EnterCriticalSection, [:ptr], :void
|
28
|
-
attach_pfunc :FormatMessage, :FormatMessageA, [:ulong, :ptr, :ulong, :ulong, :str, :ulong, :ptr], :ulong
|
29
|
-
attach_pfunc :GetCurrentProcess, [], :handle
|
30
|
-
attach_pfunc :InitializeCriticalSection, [:ptr], :void
|
31
|
-
attach_pfunc :LeaveCriticalSection, [:ptr], :void
|
32
|
-
attach_pfunc :SetEvent, [:handle], :bool
|
33
|
-
attach_pfunc :WaitForSingleObject, [:handle, :dword], :dword, :blocking => true
|
34
|
-
attach_pfunc :WaitForMultipleObjects, [:dword, :ptr, :int, :dword], :dword
|
35
|
-
|
36
|
-
ffi_lib :advapi32
|
37
|
-
|
38
|
-
callback :handler_ex, [:ulong, :ulong, :ptr, :ptr], :void
|
39
|
-
|
40
|
-
attach_pfunc :AdjustTokenPrivileges, [:handle, :int, :ptr, :dword, :ptr, :ptr], :bool
|
41
|
-
attach_pfunc :CloseServiceHandle, [:handle], :bool
|
42
|
-
|
43
|
-
attach_pfunc :ChangeServiceConfig, :ChangeServiceConfigA,
|
44
|
-
[:handle, :dword, :dword, :dword, :str, :str, :ptr, :ptr, :str, :str, :str],
|
45
|
-
:bool
|
46
|
-
|
47
|
-
attach_pfunc :ChangeServiceConfig2, :ChangeServiceConfig2A, [:handle, :dword, :ptr], :bool
|
48
|
-
|
49
|
-
attach_pfunc :CreateService, :CreateServiceA,
|
50
|
-
[:handle, :string, :string, :dword, :dword, :dword, :dword,
|
51
|
-
:string, :string, :ptr, :pointer, :string, :string],
|
52
|
-
:handle
|
53
|
-
|
54
|
-
attach_pfunc :ControlService, [:handle, :dword, :ptr], :bool
|
55
|
-
attach_pfunc :DeleteService, [:handle], :bool
|
56
|
-
|
57
|
-
attach_pfunc :EnumServicesStatusEx, :EnumServicesStatusExA,
|
58
|
-
[:handle, :int, :dword, :dword, :ptr, :dword, :ptr, :ptr, :ptr, :string],
|
59
|
-
:bool
|
60
|
-
|
61
|
-
attach_pfunc :GetServiceDisplayName, :GetServiceDisplayNameA, [:handle, :string, :ptr, :ptr], :bool
|
62
|
-
attach_pfunc :GetServiceKeyName, :GetServiceKeyNameA, [:handle, :string, :ptr, :ptr], :bool
|
63
|
-
attach_pfunc :LookupPrivilegeValue, :LookupPrivilegeValueA, [:string, :string, :ptr], :bool
|
64
|
-
attach_pfunc :OpenSCManager, :OpenSCManagerA, [:ptr, :ptr, :dword], :handle
|
65
|
-
attach_pfunc :OpenProcessToken, [:handle, :dword, :ptr], :bool
|
66
|
-
attach_pfunc :OpenService, :OpenServiceA, [:handle, :string, :dword], :handle
|
67
|
-
attach_pfunc :QueryServiceConfig, :QueryServiceConfigA, [:handle, :ptr, :dword, :ptr], :bool
|
68
|
-
attach_pfunc :QueryServiceConfig2, :QueryServiceConfig2A, [:handle, :dword, :ptr, :dword, :ptr], :bool
|
69
|
-
attach_pfunc :QueryServiceStatusEx, [:handle, :int, :ptr, :dword, :ptr], :bool
|
70
|
-
attach_pfunc :RegisterServiceCtrlHandlerEx, :RegisterServiceCtrlHandlerExA, [:str, :handler_ex, :ptr], :handle
|
71
|
-
attach_pfunc :SetServiceStatus, [:handle, :ptr], :bool
|
72
|
-
attach_pfunc :StartService, :StartServiceA, [:handle, :dword, :ptr], :bool
|
73
|
-
attach_pfunc :StartServiceCtrlDispatcher, :StartServiceCtrlDispatcherA, [:ptr], :bool, :blocking => true
|
74
|
-
end
|
75
|
-
end
|
1
|
+
require 'ffi'
|
2
|
+
|
3
|
+
module Windows
|
4
|
+
module ServiceFunctions
|
5
|
+
extend FFI::Library
|
6
|
+
|
7
|
+
# Make FFI functions private
|
8
|
+
module FFI::Library
|
9
|
+
def attach_pfunc(*args)
|
10
|
+
attach_function(*args)
|
11
|
+
private args[0]
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
typedef :ulong, :dword
|
16
|
+
typedef :uintptr_t, :handle
|
17
|
+
typedef :pointer, :ptr
|
18
|
+
typedef :string, :str
|
19
|
+
|
20
|
+
ffi_convention :stdcall
|
21
|
+
|
22
|
+
ffi_lib :kernel32
|
23
|
+
|
24
|
+
attach_pfunc :CloseHandle, [:handle], :bool
|
25
|
+
attach_pfunc :CreateEvent, :CreateEventA, [:ptr, :int, :int, :str], :handle
|
26
|
+
attach_pfunc :CreateThread, [:ptr, :size_t, :ptr, :ptr, :dword, :ptr], :handle, :blocking => true
|
27
|
+
attach_pfunc :EnterCriticalSection, [:ptr], :void
|
28
|
+
attach_pfunc :FormatMessage, :FormatMessageA, [:ulong, :ptr, :ulong, :ulong, :str, :ulong, :ptr], :ulong
|
29
|
+
attach_pfunc :GetCurrentProcess, [], :handle
|
30
|
+
attach_pfunc :InitializeCriticalSection, [:ptr], :void
|
31
|
+
attach_pfunc :LeaveCriticalSection, [:ptr], :void
|
32
|
+
attach_pfunc :SetEvent, [:handle], :bool
|
33
|
+
attach_pfunc :WaitForSingleObject, [:handle, :dword], :dword, :blocking => true
|
34
|
+
attach_pfunc :WaitForMultipleObjects, [:dword, :ptr, :int, :dword], :dword
|
35
|
+
|
36
|
+
ffi_lib :advapi32
|
37
|
+
|
38
|
+
callback :handler_ex, [:ulong, :ulong, :ptr, :ptr], :void
|
39
|
+
|
40
|
+
attach_pfunc :AdjustTokenPrivileges, [:handle, :int, :ptr, :dword, :ptr, :ptr], :bool
|
41
|
+
attach_pfunc :CloseServiceHandle, [:handle], :bool
|
42
|
+
|
43
|
+
attach_pfunc :ChangeServiceConfig, :ChangeServiceConfigA,
|
44
|
+
[:handle, :dword, :dword, :dword, :str, :str, :ptr, :ptr, :str, :str, :str],
|
45
|
+
:bool
|
46
|
+
|
47
|
+
attach_pfunc :ChangeServiceConfig2, :ChangeServiceConfig2A, [:handle, :dword, :ptr], :bool
|
48
|
+
|
49
|
+
attach_pfunc :CreateService, :CreateServiceA,
|
50
|
+
[:handle, :string, :string, :dword, :dword, :dword, :dword,
|
51
|
+
:string, :string, :ptr, :pointer, :string, :string],
|
52
|
+
:handle
|
53
|
+
|
54
|
+
attach_pfunc :ControlService, [:handle, :dword, :ptr], :bool
|
55
|
+
attach_pfunc :DeleteService, [:handle], :bool
|
56
|
+
|
57
|
+
attach_pfunc :EnumServicesStatusEx, :EnumServicesStatusExA,
|
58
|
+
[:handle, :int, :dword, :dword, :ptr, :dword, :ptr, :ptr, :ptr, :string],
|
59
|
+
:bool
|
60
|
+
|
61
|
+
attach_pfunc :GetServiceDisplayName, :GetServiceDisplayNameA, [:handle, :string, :ptr, :ptr], :bool
|
62
|
+
attach_pfunc :GetServiceKeyName, :GetServiceKeyNameA, [:handle, :string, :ptr, :ptr], :bool
|
63
|
+
attach_pfunc :LookupPrivilegeValue, :LookupPrivilegeValueA, [:string, :string, :ptr], :bool
|
64
|
+
attach_pfunc :OpenSCManager, :OpenSCManagerA, [:ptr, :ptr, :dword], :handle
|
65
|
+
attach_pfunc :OpenProcessToken, [:handle, :dword, :ptr], :bool
|
66
|
+
attach_pfunc :OpenService, :OpenServiceA, [:handle, :string, :dword], :handle
|
67
|
+
attach_pfunc :QueryServiceConfig, :QueryServiceConfigA, [:handle, :ptr, :dword, :ptr], :bool
|
68
|
+
attach_pfunc :QueryServiceConfig2, :QueryServiceConfig2A, [:handle, :dword, :ptr, :dword, :ptr], :bool
|
69
|
+
attach_pfunc :QueryServiceStatusEx, [:handle, :int, :ptr, :dword, :ptr], :bool
|
70
|
+
attach_pfunc :RegisterServiceCtrlHandlerEx, :RegisterServiceCtrlHandlerExA, [:str, :handler_ex, :ptr], :handle
|
71
|
+
attach_pfunc :SetServiceStatus, [:handle, :ptr], :bool
|
72
|
+
attach_pfunc :StartService, :StartServiceA, [:handle, :dword, :ptr], :bool
|
73
|
+
attach_pfunc :StartServiceCtrlDispatcher, :StartServiceCtrlDispatcherA, [:ptr], :bool, :blocking => true
|
74
|
+
end
|
75
|
+
end
|
@@ -1,135 +1,135 @@
|
|
1
|
-
require 'ffi'
|
2
|
-
|
3
|
-
module Windows
|
4
|
-
module ServiceStructs
|
5
|
-
extend FFI::Library
|
6
|
-
|
7
|
-
typedef :ulong, :dword
|
8
|
-
|
9
|
-
class SERVICE_STATUS < FFI::Struct
|
10
|
-
layout(
|
11
|
-
:dwServiceType, :ulong,
|
12
|
-
:dwCurrentState, :ulong,
|
13
|
-
:dwControlsAccepted, :ulong,
|
14
|
-
:dwWin32ExitCode, :ulong,
|
15
|
-
:dwServiceSpecificExitCode, :ulong,
|
16
|
-
:dwCheckPoint, :ulong,
|
17
|
-
:dwWaitHint, :ulong
|
18
|
-
)
|
19
|
-
end
|
20
|
-
|
21
|
-
class SERVICE_STATUS_PROCESS < FFI::Struct
|
22
|
-
layout(
|
23
|
-
:dwServiceType, :dword,
|
24
|
-
:dwCurrentState, :dword,
|
25
|
-
:dwControlsAccepted, :dword,
|
26
|
-
:dwWin32ExitCode, :dword,
|
27
|
-
:dwServiceSpecificExitCode, :dword,
|
28
|
-
:dwCheckPoint, :dword,
|
29
|
-
:dwWaitHint, :dword,
|
30
|
-
:dwProcessId, :dword,
|
31
|
-
:dwServiceFlags, :dword
|
32
|
-
)
|
33
|
-
end
|
34
|
-
|
35
|
-
class SERVICE_DESCRIPTION < FFI::Struct
|
36
|
-
layout(:lpDescription, :pointer)
|
37
|
-
end
|
38
|
-
|
39
|
-
class SERVICE_DELAYED_AUTO_START_INFO < FFI::Struct
|
40
|
-
layout(:fDelayedAutostart, :int) # BOOL
|
41
|
-
|
42
|
-
alias aset []=
|
43
|
-
|
44
|
-
# Intercept the accessor so that we can handle either true/false or 1/0.
|
45
|
-
# Since there is only one member, there's no need to check the key name.
|
46
|
-
#
|
47
|
-
def []=(key, value)
|
48
|
-
[0, false].include?(value) ? aset(key, 0) : aset(key, 1)
|
49
|
-
end
|
50
|
-
end
|
51
|
-
|
52
|
-
class QUERY_SERVICE_CONFIG < FFI::Struct
|
53
|
-
layout(
|
54
|
-
:dwServiceType, :dword,
|
55
|
-
:dwStartType, :dword,
|
56
|
-
:dwErrorControl, :dword,
|
57
|
-
:lpBinaryPathName, :pointer,
|
58
|
-
:lpLoadOrderGroup, :pointer,
|
59
|
-
:dwTagId, :dword,
|
60
|
-
:lpDependencies, :pointer,
|
61
|
-
:lpServiceStartName, :pointer,
|
62
|
-
:lpDisplayName, :pointer
|
63
|
-
)
|
64
|
-
|
65
|
-
def dependencies
|
66
|
-
length = self[:lpServiceStartName].address - self[:lpDependencies].address - 1
|
67
|
-
self[:lpDependencies].read_bytes(length).split(0.chr)
|
68
|
-
end
|
69
|
-
end
|
70
|
-
|
71
|
-
class SERVICE_STATUS_PROCESS < FFI::Struct
|
72
|
-
layout(
|
73
|
-
:dwServiceType, :dword,
|
74
|
-
:dwCurrentState, :dword,
|
75
|
-
:dwControlsAccepted, :dword,
|
76
|
-
:dwWin32ExitCode, :dword,
|
77
|
-
:dwServiceSpecificExitCode, :dword,
|
78
|
-
:dwCheckPoint, :dword,
|
79
|
-
:dwWaitHint, :dword,
|
80
|
-
:dwProcessId, :dword,
|
81
|
-
:dwServiceFlags, :dword
|
82
|
-
)
|
83
|
-
end
|
84
|
-
|
85
|
-
class ENUM_SERVICE_STATUS_PROCESS < FFI::Struct
|
86
|
-
layout(
|
87
|
-
:lpServiceName, :pointer,
|
88
|
-
:lpDisplayName, :pointer,
|
89
|
-
:ServiceStatusProcess, SERVICE_STATUS_PROCESS
|
90
|
-
)
|
91
|
-
end
|
92
|
-
|
93
|
-
class SC_ACTION < FFI::Struct
|
94
|
-
layout(:Type, :int, :Delay, :dword)
|
95
|
-
end
|
96
|
-
|
97
|
-
class SERVICE_FAILURE_ACTIONS < FFI::Struct
|
98
|
-
layout(
|
99
|
-
:dwResetPeriod, :dword,
|
100
|
-
:lpRebootMsg, :pointer,
|
101
|
-
:lpCommand, :pointer,
|
102
|
-
:cActions, :dword,
|
103
|
-
:lpsaActions, :pointer # Array of SC_ACTION structs
|
104
|
-
)
|
105
|
-
end
|
106
|
-
|
107
|
-
class SERVICE_TABLE_ENTRY < FFI::Struct
|
108
|
-
layout(
|
109
|
-
:lpServiceName, :pointer,
|
110
|
-
:lpServiceProc, :pointer
|
111
|
-
)
|
112
|
-
end
|
113
|
-
|
114
|
-
class LUID < FFI::Struct
|
115
|
-
layout(
|
116
|
-
:LowPart, :ulong,
|
117
|
-
:HighPart, :long
|
118
|
-
)
|
119
|
-
end
|
120
|
-
|
121
|
-
class LUID_AND_ATTRIBUTES < FFI::Struct
|
122
|
-
layout(
|
123
|
-
:Luid, LUID,
|
124
|
-
:Attributes, :ulong
|
125
|
-
)
|
126
|
-
end
|
127
|
-
|
128
|
-
class TOKEN_PRIVILEGES < FFI::Struct
|
129
|
-
layout(
|
130
|
-
:PrivilegeCount, :dword,
|
131
|
-
:Privileges, [LUID_AND_ATTRIBUTES, 1]
|
132
|
-
)
|
133
|
-
end
|
134
|
-
end
|
135
|
-
end
|
1
|
+
require 'ffi'
|
2
|
+
|
3
|
+
module Windows
|
4
|
+
module ServiceStructs
|
5
|
+
extend FFI::Library
|
6
|
+
|
7
|
+
typedef :ulong, :dword
|
8
|
+
|
9
|
+
class SERVICE_STATUS < FFI::Struct
|
10
|
+
layout(
|
11
|
+
:dwServiceType, :ulong,
|
12
|
+
:dwCurrentState, :ulong,
|
13
|
+
:dwControlsAccepted, :ulong,
|
14
|
+
:dwWin32ExitCode, :ulong,
|
15
|
+
:dwServiceSpecificExitCode, :ulong,
|
16
|
+
:dwCheckPoint, :ulong,
|
17
|
+
:dwWaitHint, :ulong
|
18
|
+
)
|
19
|
+
end
|
20
|
+
|
21
|
+
class SERVICE_STATUS_PROCESS < FFI::Struct
|
22
|
+
layout(
|
23
|
+
:dwServiceType, :dword,
|
24
|
+
:dwCurrentState, :dword,
|
25
|
+
:dwControlsAccepted, :dword,
|
26
|
+
:dwWin32ExitCode, :dword,
|
27
|
+
:dwServiceSpecificExitCode, :dword,
|
28
|
+
:dwCheckPoint, :dword,
|
29
|
+
:dwWaitHint, :dword,
|
30
|
+
:dwProcessId, :dword,
|
31
|
+
:dwServiceFlags, :dword
|
32
|
+
)
|
33
|
+
end
|
34
|
+
|
35
|
+
class SERVICE_DESCRIPTION < FFI::Struct
|
36
|
+
layout(:lpDescription, :pointer)
|
37
|
+
end
|
38
|
+
|
39
|
+
class SERVICE_DELAYED_AUTO_START_INFO < FFI::Struct
|
40
|
+
layout(:fDelayedAutostart, :int) # BOOL
|
41
|
+
|
42
|
+
alias aset []=
|
43
|
+
|
44
|
+
# Intercept the accessor so that we can handle either true/false or 1/0.
|
45
|
+
# Since there is only one member, there's no need to check the key name.
|
46
|
+
#
|
47
|
+
def []=(key, value)
|
48
|
+
[0, false].include?(value) ? aset(key, 0) : aset(key, 1)
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
class QUERY_SERVICE_CONFIG < FFI::Struct
|
53
|
+
layout(
|
54
|
+
:dwServiceType, :dword,
|
55
|
+
:dwStartType, :dword,
|
56
|
+
:dwErrorControl, :dword,
|
57
|
+
:lpBinaryPathName, :pointer,
|
58
|
+
:lpLoadOrderGroup, :pointer,
|
59
|
+
:dwTagId, :dword,
|
60
|
+
:lpDependencies, :pointer,
|
61
|
+
:lpServiceStartName, :pointer,
|
62
|
+
:lpDisplayName, :pointer
|
63
|
+
)
|
64
|
+
|
65
|
+
def dependencies
|
66
|
+
length = self[:lpServiceStartName].address - self[:lpDependencies].address - 1
|
67
|
+
self[:lpDependencies].read_bytes(length).split(0.chr)
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
class SERVICE_STATUS_PROCESS < FFI::Struct
|
72
|
+
layout(
|
73
|
+
:dwServiceType, :dword,
|
74
|
+
:dwCurrentState, :dword,
|
75
|
+
:dwControlsAccepted, :dword,
|
76
|
+
:dwWin32ExitCode, :dword,
|
77
|
+
:dwServiceSpecificExitCode, :dword,
|
78
|
+
:dwCheckPoint, :dword,
|
79
|
+
:dwWaitHint, :dword,
|
80
|
+
:dwProcessId, :dword,
|
81
|
+
:dwServiceFlags, :dword
|
82
|
+
)
|
83
|
+
end
|
84
|
+
|
85
|
+
class ENUM_SERVICE_STATUS_PROCESS < FFI::Struct
|
86
|
+
layout(
|
87
|
+
:lpServiceName, :pointer,
|
88
|
+
:lpDisplayName, :pointer,
|
89
|
+
:ServiceStatusProcess, SERVICE_STATUS_PROCESS
|
90
|
+
)
|
91
|
+
end
|
92
|
+
|
93
|
+
class SC_ACTION < FFI::Struct
|
94
|
+
layout(:Type, :int, :Delay, :dword)
|
95
|
+
end
|
96
|
+
|
97
|
+
class SERVICE_FAILURE_ACTIONS < FFI::Struct
|
98
|
+
layout(
|
99
|
+
:dwResetPeriod, :dword,
|
100
|
+
:lpRebootMsg, :pointer,
|
101
|
+
:lpCommand, :pointer,
|
102
|
+
:cActions, :dword,
|
103
|
+
:lpsaActions, :pointer # Array of SC_ACTION structs
|
104
|
+
)
|
105
|
+
end
|
106
|
+
|
107
|
+
class SERVICE_TABLE_ENTRY < FFI::Struct
|
108
|
+
layout(
|
109
|
+
:lpServiceName, :pointer,
|
110
|
+
:lpServiceProc, :pointer
|
111
|
+
)
|
112
|
+
end
|
113
|
+
|
114
|
+
class LUID < FFI::Struct
|
115
|
+
layout(
|
116
|
+
:LowPart, :ulong,
|
117
|
+
:HighPart, :long
|
118
|
+
)
|
119
|
+
end
|
120
|
+
|
121
|
+
class LUID_AND_ATTRIBUTES < FFI::Struct
|
122
|
+
layout(
|
123
|
+
:Luid, LUID,
|
124
|
+
:Attributes, :ulong
|
125
|
+
)
|
126
|
+
end
|
127
|
+
|
128
|
+
class TOKEN_PRIVILEGES < FFI::Struct
|
129
|
+
layout(
|
130
|
+
:PrivilegeCount, :dword,
|
131
|
+
:Privileges, [LUID_AND_ATTRIBUTES, 1]
|
132
|
+
)
|
133
|
+
end
|
134
|
+
end
|
135
|
+
end
|