forked from farsightsec/pynmsg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnmsg_input.pyx
More file actions
203 lines (167 loc) · 6.45 KB
/
nmsg_input.pyx
File metadata and controls
203 lines (167 loc) · 6.45 KB
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
#cython: embedsignature=True
# Copyright (c) 2009-2014 by Farsight Security, Inc.
#
# Licensed 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.
def input_open_file(obj):
if type(obj) == str:
obj = open(obj)
i = input()
i._open_file(obj)
return i
def input_open_json(obj):
if type(obj) == str:
obj = open(obj)
i = input()
i._open_json(obj)
return i
def input_open_sock(addr, port):
obj = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
obj.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
try:
obj.setsockopt(socket.SOL_SOCKET, socket.SO_RCVBUF, 4 * 1048576)
except socket.error:
pass
obj.bind((addr, int(port)))
i = input()
i._open_sock(obj)
return i
cdef class nullinput(object):
cdef nmsg_input_t _instance
def __cinit__(self):
self._instance = nmsg_input_open_null()
def __dealloc__(self):
if self._instance != NULL:
nmsg_input_close(&self._instance)
def __repr__(self):
return 'nmsg nullinput object _instance=0x%x' % <uint64_t> self._instance
def read(self, str buf):
cdef nmsg_res res
cdef nmsg_message_t *_msgarray
cdef size_t n_msg
cdef _recv_message msg
msg_list = []
if self._instance == NULL:
raise Exception, 'object not initialized'
res = nmsg_input_read_null(self._instance, <uint8_t *> PyString_AsString(buf), len(buf), NULL, &_msgarray, &n_msg)
if res == nmsg_res_success:
for i from 0 <= i < n_msg:
msg = _recv_message()
msg.set_instance(_msgarray[i])
msg_list.append(msg)
free(_msgarray)
return msg_list
cdef class input(object):
cdef nmsg_input_t _instance
cdef object fileobj
cdef str input_type
cdef bool blocking_io
open_file = staticmethod(input_open_file)
open_json = staticmethod(input_open_json)
open_sock = staticmethod(input_open_sock)
def __cinit__(self):
self._instance = NULL
def __dealloc__(self):
if self._instance != NULL:
nmsg_input_close(&self._instance)
def __init__(self):
self.blocking_io = True
def __repr__(self):
return 'nmsg input object type=%s _instance=0x%x' % (self.input_type, <uint64_t> self._instance)
cpdef _open_file(self, fileobj):
self.fileobj = fileobj
self._instance = nmsg_input_open_file(fileobj.fileno())
if self._instance == NULL:
self.fileobj = None
raise Exception, 'nmsg_input_open_file() failed'
self.input_type = 'file'
cpdef _open_json(self, fileobj):
cdef int fileno = fileobj.fileno()
self.fileobj = fileobj
with nogil:
self._instance = nmsg_input_open_json(fileno)
if self._instance == NULL:
self.fileobj = None
raise Exception, 'nmsg_input_open_json() failed'
self.input_type = 'json'
cpdef _open_sock(self, fileobj):
self.fileobj = fileobj
self._instance = nmsg_input_open_sock(fileobj.fileno())
if self._instance == NULL:
self.fileobj = None
raise Exception, 'nmsg_input_open_file() failed'
self.input_type = 'socket'
def fileno(self):
return self.fileobj.fileno()
def close(self):
nmsg_input_close(&self._instance)
self._instance = NULL
def read(self):
cdef int err
cdef nmsg_res res
cdef nmsg_message_t _msg
cdef _recv_message msg
if self._instance == NULL:
raise Exception, 'object not initialized'
res = nmsg_res_failure
while res != nmsg_res_success:
res = nmsg_input_read(self._instance, &_msg)
if res == nmsg_res_success:
msg = _recv_message()
msg.set_instance(_msg)
return msg
elif res == nmsg_res_eof:
return None
elif res == nmsg_res_again:
err = PyErr_CheckSignals()
if err != 0:
if PyErr_ExceptionMatches(KeyboardInterrupt):
raise KeyboardInterrupt
elif self.blocking_io == False:
return None
continue
else:
raise Exception, 'nmsg_input_read() failed: %s' % nmsg_res_lookup(res)
def set_filter_msgtype(self, vid, msgtype):
if self._instance == NULL:
raise Exception, 'object not initialized'
if type(vid) == str:
vid = msgmod_vname_to_vid(vid)
if type(msgtype) == str:
msgtype = msgmod_mname_to_msgtype(vid, msgtype)
nmsg_input_set_filter_msgtype(self._instance, vid, msgtype)
def set_filter_source(self, unsigned source):
if self._instance == NULL:
raise Exception, 'object not initialized'
nmsg_input_set_filter_source(self._instance, source)
def set_filter_operator(self, str s_operator):
cdef unsigned operator
if self._instance == NULL:
raise Exception, 'object not initialized'
operator = nmsg_alias_by_value(nmsg_alias_operator, PyString_AsString(s_operator))
if operator == 0:
raise Exception, 'unknown operator %s' % s_operator
nmsg_input_set_filter_operator(self._instance, operator)
def set_filter_group(self, str s_group):
cdef unsigned group
if self._instance == NULL:
raise Exception, 'object not initialized'
group = nmsg_alias_by_value(nmsg_alias_group, PyString_AsString(s_group))
if group == 0:
raise Exception, 'unknown group %s' % s_group
nmsg_input_set_filter_group(self._instance, group)
def set_blocking_io(self, bool flag):
cdef nmsg_res res
res = nmsg_input_set_blocking_io(self._instance, flag)
if res != nmsg_res_success:
raise Exception, 'nmsg_input_set_blocking_io() failed'
self.blocking_io = flag