]> git.stg.codes - stg.git/blob - projects/stargazer/plugins/capture/divert_freebsd/divert_cap.cpp
Hide or add proper copy ctor and assignement operator, initialize
[stg.git] / projects / stargazer / plugins / capture / divert_freebsd / divert_cap.cpp
1 /*
2  *    This program is free software; you can redistribute it and/or modify
3  *    it under the terms of the GNU General Public License as published by
4  *    the Free Software Foundation; either version 2 of the License, or
5  *    (at your option) any later version.
6  *
7  *    This program is distributed in the hope that it will be useful,
8  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
9  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  *    GNU General Public License for more details.
11  *
12  *    You should have received a copy of the GNU General Public License
13  *    along with this program; if not, write to the Free Software
14  *    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
15  */
16
17 /*
18 * Author : Boris Mikhailenko <stg34@stg.dp.ua>
19 */
20
21 /*
22 $Revision: 1.13 $
23 $Date: 2010/09/10 06:43:03 $
24 */
25 #include <sys/types.h>
26 #include <sys/socket.h>
27 #include <netinet/in.h>
28
29 #include <sys/uio.h>
30 #include <sys/time.h>
31 #include <sys/ioctl.h>
32 #include <sys/poll.h>
33
34 #include <fcntl.h>
35 #include <unistd.h>
36
37 #include <cstdio>
38 #include <cstring>
39 #include <cerrno>
40 #include <cstdlib>
41 #include <csignal>
42
43 #include <algorithm>
44 #include <vector>
45
46 #include "stg/common.h"
47 #include "stg/traffcounter.h"
48 #include "sg/plugin_creator.h"
49 #include "divert_cap.h"
50
51 #define BUFF_LEN (16384) /* max mtu -> lo=16436  TODO why?*/
52
53 //-----------------------------------------------------------------------------
54 struct DIVERT_DATA {
55 int sock;
56 short int port;
57 unsigned char buffer[BUFF_LEN];
58 char iface[10];
59 };
60 //-----------------------------------------------------------------------------
61 pollfd pollddiv;
62 DIVERT_DATA cddiv;  //capture data
63 //-----------------------------------------------------------------------------
64 //-----------------------------------------------------------------------------
65 //-----------------------------------------------------------------------------
66 PLUGIN_CREATOR<DIVERT_CAP> dcc;
67 //-----------------------------------------------------------------------------
68 //-----------------------------------------------------------------------------
69 //-----------------------------------------------------------------------------
70 PLUGIN * GetPlugin()
71 {
72 return dcc.GetPlugin();
73 }
74 //-----------------------------------------------------------------------------
75 //-----------------------------------------------------------------------------
76 //-----------------------------------------------------------------------------
77 const std::string DIVERT_CAP::GetVersion() const
78 {
79 return "Divert_cap v.1.0";
80 }
81 //-----------------------------------------------------------------------------
82 DIVERT_CAP::DIVERT_CAP()
83     : settings(),
84       port(0),
85       errorStr(),
86       thread(),
87       nonstop(false),
88       isRunning(false),
89       traffCnt(NULL)
90 {
91 }
92 //-----------------------------------------------------------------------------
93 int DIVERT_CAP::Start()
94 {
95 if (isRunning)
96     return 0;
97
98 if (DivertCapOpen() < 0)
99     {
100     errorStr = "Cannot open socket!";
101     printfd(__FILE__, "Cannot open socket\n");
102     return -1;
103     }
104
105 nonstop = true;
106
107 if (pthread_create(&thread, NULL, Run, this) == 0)
108     {
109     return 0;
110     }
111
112 errorStr = "Cannot create thread.";
113 printfd(__FILE__, "Cannot create thread\n");
114 return -1;
115 }
116 //-----------------------------------------------------------------------------
117 int DIVERT_CAP::Stop()
118 {
119 if (!isRunning)
120     return 0;
121
122 DivertCapClose();
123
124 nonstop = false;
125
126 //5 seconds to thread stops itself
127 int i;
128 for (i = 0; i < 25; i++)
129     {
130     if (!isRunning)
131         break;
132
133     usleep(200000);
134     }
135
136 //after 5 seconds waiting thread still running. now killing it
137 if (isRunning)
138     {
139     if (pthread_kill(thread, SIGINT))
140         {
141         errorStr = "Cannot kill thread.";
142         printfd(__FILE__, "Cannot kill thread\n");
143         return -1;
144         }
145     }
146
147 return 0;
148 }
149 //-----------------------------------------------------------------------------
150 void * DIVERT_CAP::Run(void * d)
151 {
152 DIVERT_CAP * dc = (DIVERT_CAP *)d;
153 dc->isRunning = true;
154
155 char buffer[64];
156 while (dc->nonstop)
157     {
158     RAW_PACKET rp;
159     dc->DivertCapRead(buffer, 64, NULL);
160
161     if (buffer[12] != 0x8)
162         continue;
163
164     memcpy(rp.pckt, &buffer[14], pcktSize);
165
166     dc->traffCnt->Process(rp);
167     }
168
169 dc->isRunning = false;
170 return NULL;
171 }
172 //-----------------------------------------------------------------------------
173 int DIVERT_CAP::DivertCapOpen()
174 {
175 memset(&pollddiv, 0, sizeof(pollddiv));
176 memset(&cddiv, 0, sizeof(DIVERT_DATA));
177
178 strcpy(cddiv.iface, "foo");
179 cddiv.port = port;
180
181 DivertCapOpen(0);
182 pollddiv.events = POLLIN;
183 pollddiv.fd = cddiv.sock;
184
185 return 0;
186 }
187 //-----------------------------------------------------------------------------
188 int DIVERT_CAP::DivertCapOpen(int)
189 {
190 int ret;
191 cddiv.sock = socket(PF_INET, SOCK_RAW, IPPROTO_DIVERT);
192 if (cddiv.sock < 0)
193     {
194     errorStr = "Create divert socket error.";
195     printfd(__FILE__, "Cannot create divert socket\n");
196     return -1;
197     }
198
199 struct sockaddr_in divAddr;
200
201 memset(&divAddr, 0, sizeof(divAddr));
202
203 divAddr.sin_family = AF_INET;
204 divAddr.sin_port = htons(cddiv.port);
205 divAddr.sin_addr.s_addr = INADDR_ANY;
206
207 ret = bind(cddiv.sock, (struct sockaddr *)&divAddr, sizeof(divAddr));
208
209 if (ret < 0)
210     {
211     errorStr = "Bind divert socket error.";
212     printfd(__FILE__, "Cannot bind divert socket\n");
213     return -1;
214     }
215
216 return cddiv.sock;
217 }
218 //-----------------------------------------------------------------------------
219 int DIVERT_CAP::DivertCapRead(char * b, int blen, char ** iface)
220 {
221 poll(&pollddiv, 1, -1);
222
223 if (pollddiv.revents & POLLIN)
224     {
225     DivertCapRead(b, blen, iface, 0);
226     pollddiv.revents = 0;
227     return 0;
228     }
229
230 return 0;
231 }
232 //-----------------------------------------------------------------------------
233 int DIVERT_CAP::DivertCapRead(char * b, int blen, char ** iface, int)
234 {
235 static char buf[BUFF_LEN];
236 static struct sockaddr_in divertaddr;
237 static int bytes;
238 static socklen_t divertaddrSize = sizeof(divertaddr);
239
240 if ((bytes = recvfrom (cddiv.sock, buf, BUFF_LEN,
241                        0, (struct sockaddr*) &divertaddr, &divertaddrSize)) > 50)
242     {
243     memcpy(b + 14, buf, blen - 14);
244     b[12] = 0x8;
245
246     if (iface)
247         *iface = cddiv.iface;
248
249     sendto(cddiv.sock, buf, bytes, 0, (struct sockaddr*)&divertaddr, divertaddrSize);
250     }
251
252 return 0;
253 }
254 //-----------------------------------------------------------------------------
255 int DIVERT_CAP::DivertCapClose()
256 {
257 close(cddiv.sock);
258 return 0;
259 }
260 //-----------------------------------------------------------------------------
261 int DIVERT_CAP::ParseSettings()
262 {
263 int p;
264 PARAM_VALUE pv;
265 std::vector<PARAM_VALUE>::const_iterator pvi;
266
267 pv.param = "Port";
268 pvi = std::find(settings.moduleParams.begin(), settings.moduleParams.end(), pv);
269 if (pvi == settings.moduleParams.end())
270     {
271     port = 15701;
272     return 0;
273     }
274
275 if (ParseIntInRange(pvi->value[0], 1, 65535, &p))
276     {
277     errorStr = "Cannot parse parameter \'Port\': " + errorStr;
278     printfd(__FILE__, "Cannot parse parameter 'Port'\n");
279     return -1;
280     }
281
282 port = p;
283
284 return 0;
285 }
286 //-----------------------------------------------------------------------------