forked from osquery/osquery-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTPipe.py
232 lines (192 loc) · 7.98 KB
/
TPipe.py
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
"""This source code is licensed under the BSD-style license found in the
LICENSE file in the root directory of this source tree. An additional grant
of patent rights can be found in the PATENTS file in the same directory.
"""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
import win32event
import win32pipe
import win32file
import win32api
import winerror
import pywintypes
from thrift.transport.TTransport import TTransportBase
from thrift.transport.TTransport import TTransportException
from thrift.transport.TTransport import TServerTransportBase
class TPipeBase(TTransportBase):
"""Base class for Windows TPipe transport"""
def __init__(self):
self._handle = None
def close(self):
"""
Generic close method, as both server and client rely on closing pipes
in the same way
"""
if self._handle is not None:
win32pipe.DisconnectNamedPipe(self._handle)
self._handle = None
class TPipe(TPipeBase):
"""Client for communicating over Named Pipes"""
def __init__(self, pipe_name, timeout=5, max_attempts=5):
"""
Initialize a TPipe client
@param pipe_name(string) The path of the pipe to connect to.
@param timeout(int) The time to wait for a named pipe connection.
@param max_attempts(int) Maximum number of connection attempts.
"""
self._handle = None
self._pipe_name = pipe_name
self._timeout = timeout
self._max_conn_attempts = max_attempts
def set_handle(self, h):
self._handle = h
def is_open(self):
return self._handle is not None
def open(self):
if self.is_open():
raise TTransportException(TTransportException.ALREADY_OPEN)
h = None
conns = 0
while conns < self._max_conn_attempts:
try:
h = win32file.CreateFile(
self._pipe_name,
win32file.GENERIC_READ | win32file.GENERIC_WRITE, 0, None,
win32file.OPEN_EXISTING, win32file.FILE_FLAG_OVERLAPPED,
None)
except pywintypes.error as e:
if e.winerror != winerror.ERROR_PIPE_BUSY:
raise TTransportException(
TTransportException.NOT_OPEN,
'Failed to open connection to pipe: {}'.format(e))
# Successfully connected, break out.
if h is not None and h.handle != winerror.ERROR_INVALID_HANDLE:
self._handle = h
return
# Wait for the connection to the pipe
try:
win32pipe.WaitNamedPipe(self._pipe_name, self._timeout)
except Exception as e:
if e.args[0] not in (winerror.ERROR_SEM_TIMEOUT,
winerror.ERROR_PIPE_BUSY):
raise TTransportException(
type=TTransportException.UNKNOWN,
message='Client failed to connect to server with {}'.
format(e.args[0]))
conns += 1
raise TTransportException(
type=TTransportException.UNKNOWN,
message='Client exceeded max connection attempts')
def read(self, sz):
if not self.is_open():
raise TTransportException(
type=TTransportException.NOT_OPEN,
message='Called read on non-open pipe')
buff = None
err = None
try:
(err, buff) = win32file.ReadFile(self._handle, sz, None)
except Exception as e:
raise TTransportException(
type=TTransportException.UNKNOWN, message='TPipe read failed')
if err:
raise TTransportException(
type=TTransportException.UNKNOWN,
message='TPipe read failed with GLE={}'.format(err))
if len(buff) == 0:
raise TTransportException(
type=TTransportException.END_OF_FILE,
message='TPipe read 0 bytes')
return buff
def write(self, buff):
if not self.is_open():
raise TTransportException(
type=TTransportException.NOT_OPEN,
message='Called read on non-open pipe')
bytesWritten = None
try:
(_, bytesWritten) = win32file.WriteFile(self._handle, buff, None)
except Exception as e:
raise TTransportException(
type=TTransportException.UNKNOWN,
message='Failed to write to named pipe: ' + str(e))
if bytesWritten != len(buff):
raise TTransportException(
type=TTransportException.UNKNOWN,
message='Failed to write complete buffer to named pipe')
def flush(self):
if self.is_open():
win32file.FlushFileBuffers(self._handle)
class TPipeServer(TPipeBase, TServerTransportBase):
"""Named pipe implementation of TServerTransport"""
def __init__(self,
pipe_name,
buff_size=4096,
max_conns=255,
max_conn_attempts=5):
"""
Initialize a TPipe client
@param pipe_name(string) The path of the pipe to connect to.
@param buff_size(int) The size of read/write buffers to use.
@param max_conns(int) Maximum number of simultaneous connections.
@param max_conn_attempts(int) Maximum number of connection attempts
"""
self._pipe_name = pipe_name
self._buff_size = buff_size
self._max_conns = max_conns
self._max_conn_attempts = max_conn_attempts
self._handle = None
# Overlapped event for Windows Async IO
self._overlapped = pywintypes.OVERLAPPED()
self._overlapped.hEvent = win32event.CreateEvent(None, 0, 0, None)
# Create a new named pipe if one doesn't already exist
def listen(self):
if self._handle is None:
self.create_named_pipe()
def accept(self):
if self._handle is not None:
self.create_named_pipe()
self.initiate_named_connect()
result = TPipe(self._pipe_name)
result.set_handle(self._handle)
return result
def create_named_pipe(self):
openMode = win32pipe.PIPE_ACCESS_DUPLEX | win32file.FILE_FLAG_OVERLAPPED
pipeMode = win32pipe.PIPE_TYPE_BYTE | win32pipe.PIPE_READMODE_BYTE
saAttr = pywintypes.SECURITY_ATTRIBUTES()
saAttr.SetSecurityDescriptorDacl(1, None, 0)
self._handle = win32pipe.CreateNamedPipe(
self._pipe_name, openMode, pipeMode,
win32pipe.PIPE_UNLIMITED_INSTANCES, self._buff_size,
self._buff_size, win32pipe.NMPWAIT_WAIT_FOREVER, saAttr)
err = win32api.GetLastError()
if self._handle.handle == winerror.ERROR_INVALID_HANDLE:
raise TTransportException(
type=TTransportException.NOT_OPEN,
message='Tcreate_named_pipe failed: {}'.format(err))
return True
def initiate_named_connect(self):
conns = 0
while conns < self._max_conn_attempts:
try:
ret = win32pipe.ConnectNamedPipe(self._handle,
self._overlapped)
except Exception as e:
raise TTransportException(
type=TTransportException.NOT_OPEN,
message='TConnectNamedPipe failed: {}'.format(str(e)))
# Successfully connected, break out.
if ret == winerror.ERROR_PIPE_CONNECTED:
win32event.SetEvent(self._overlapped.hEvent)
break
def close(self):
"""
The server must ensure to disconnect so that subsequent reconnect
attempts are successful
"""
if self._handle is not None:
super(TPipe, self).close()
win32file.CloseHandle(self._handle)
self._handle = None