]> git.stg.codes - stg.git/blob - projects/stargazer/plugins/capture/ether_freebsd/ether_cap.cpp
Block all signals in threads other than main
[stg.git] / projects / stargazer / plugins / capture / ether_freebsd / ether_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 Date: 18.09.2002
19 */
20
21 /*
22 * Author : Boris Mikhailenko <stg34@stg.dp.ua>
23 */
24
25 /*
26 $Revision: 1.19 $
27 $Date: 2009/03/24 11:20:15 $
28 $Author: faust $
29 */
30
31 #include <sys/types.h>
32 #include <sys/uio.h>
33 #include <sys/socket.h>
34 #include <sys/time.h>
35 #include <sys/ioctl.h>
36 #include <sys/poll.h>
37
38 #include <net/bpf.h>
39 #include <net/if.h>
40 #include <netinet/in.h>
41 #include <arpa/inet.h>
42 #include <fcntl.h>
43 #include <unistd.h>
44
45 #include <cerrno>
46 #include <cstdio>
47 #include <cstring>
48 #include <cstdlib>
49 #include <csignal>
50
51 #include "stg/common.h"
52 #include "stg/raw_ip_packet.h"
53 #include "stg/traffcounter.h"
54 #include "stg/plugin_creator.h"
55
56 #include "ether_cap.h"
57
58 //#define CAP_DEBUG 1
59
60 //-----------------------------------------------------------------------------
61 //-----------------------------------------------------------------------------
62 //-----------------------------------------------------------------------------
63 PLUGIN_CREATOR<BPF_CAP> bcc;
64 //-----------------------------------------------------------------------------
65 //-----------------------------------------------------------------------------
66 //-----------------------------------------------------------------------------
67 PLUGIN * GetPlugin()
68 {
69 return bcc.GetPlugin();
70 }
71 //-----------------------------------------------------------------------------
72 //-----------------------------------------------------------------------------
73 //-----------------------------------------------------------------------------
74 int BPF_CAP_SETTINGS::ParseSettings(const MODULE_SETTINGS & s)
75 {
76 std::string ifaces;
77
78 iface.erase(iface.begin(), iface.end());
79
80 if (s.moduleParams.empty())
81     {
82     errorStr = "Parameter \'iface\' not found.";
83     printfd(__FILE__, "Parameter 'iface' not found\n");
84     return -1;
85     }
86
87 for (unsigned i = 0; i < s.moduleParams.size(); i++)
88     {
89     if (s.moduleParams[i].param != "iface")
90         {
91         errorStr = "Parameter \'" + s.moduleParams[i].param + "\' unrecognized.";
92         printfd(__FILE__, "Invalid parameter: '%s'\n", s.moduleParams[i].param.c_str());
93         return -1;
94         }
95     for (unsigned j = 0; j < s.moduleParams[i].value.size(); j++)
96         {
97         iface.push_back(s.moduleParams[i].value[j]);
98         }
99     }
100
101 return 0;
102 }
103 //-----------------------------------------------------------------------------
104 std::string BPF_CAP_SETTINGS::GetIface(unsigned int num)
105 {
106 if (num >= iface.size())
107     {
108     return "";
109     }
110 return iface[num];
111 }
112 //-----------------------------------------------------------------------------
113 //-----------------------------------------------------------------------------
114 //-----------------------------------------------------------------------------
115 const std::string BPF_CAP::GetVersion() const
116 {
117 return "bpf_cap v.1.0";
118 }
119 //-----------------------------------------------------------------------------
120 BPF_CAP::BPF_CAP()
121     : capSettings(),
122       errorStr(),
123       bpfData(),
124       polld(),
125       thread(),
126       nonstop(false),
127       isRunning(false),
128       capSock(-1),
129       settings(),
130       traffCnt(NULL)
131 {
132 }
133 //-----------------------------------------------------------------------------
134 int BPF_CAP::ParseSettings()
135 {
136 int ret = capSettings.ParseSettings(settings);
137 if (ret)
138     {
139     errorStr = capSettings.GetStrError();
140     return ret;
141     }
142 return 0;
143 }
144 //-----------------------------------------------------------------------------
145 int BPF_CAP::Start()
146 {
147 if (isRunning)
148     return 0;
149
150 if (BPFCapOpen() < 0)
151     {
152     //errorStr = "Cannot open bpf device!";
153     return -1;
154     }
155
156 nonstop = true;
157
158 if (pthread_create(&thread, NULL, Run, this) == 0)
159     {
160     return 0;
161     }
162
163 errorStr = "Cannot create thread.";
164 printfd(__FILE__, "Cannot create thread\n");
165 return -1;
166 }
167 //-----------------------------------------------------------------------------
168 int BPF_CAP::Stop()
169 {
170 if (!isRunning)
171     return 0;
172
173 BPFCapClose();
174
175 nonstop = false;
176
177 //5 seconds to thread stops itself
178 int i;
179 for (i = 0; i < 25; i++)
180     {
181     if (!isRunning)
182         break;
183
184     struct timespec ts = {0, 200000000};
185     nanosleep(&ts, NULL);
186     }
187
188 //after 5 seconds waiting thread still running. now killing it
189 if (isRunning)
190     {
191     //TODO pthread_cancel()
192     if (pthread_kill(thread, SIGINT))
193         {
194         errorStr = "Cannot kill thread.";
195         printfd(__FILE__, "Cannot kill thread\n");
196         return -1;
197         }
198     }
199
200 return 0;
201 }
202 //-----------------------------------------------------------------------------
203 void * BPF_CAP::Run(void * d)
204 {
205 sigset_t signalSet;
206 sigfillset(&signalSet);
207 pthread_sigmask(SIG_BLOCK, &signalSet, NULL);
208
209 BPF_CAP * dc = static_cast<BPF_CAP *>(d);
210 dc->isRunning = true;
211
212 uint8_t hdr[96]; //68 + 14 + 4(size) + 9(SYS_IFACE) + 1(align to 4) = 96
213
214 RAW_PACKET *  rpp = (RAW_PACKET *)&hdr[14];
215 memset(hdr, 0, sizeof(hdr));
216
217 rpp->dataLen = -1;
218 char * iface;
219
220 while (dc->nonstop)
221     {
222     if (dc->BPFCapRead((char*)&hdr, 68 + 14, &iface))
223         continue;
224
225     if (!(hdr[12] == 0x8 && hdr[13] == 0x0))
226         continue;
227
228     dc->traffCnt->Process(*rpp);
229     }
230
231 dc->isRunning = false;
232 return NULL;
233 }
234 //-----------------------------------------------------------------------------
235 int BPF_CAP::BPFCapOpen()
236 {
237 int i = 0;
238 BPF_DATA bd;
239 pollfd pd;
240
241 while ((bd.iface = capSettings.GetIface(i)) != "")
242     {
243     bpfData.push_back(bd);
244     if (BPFCapOpen(&bpfData[i]) < 0)
245         {
246         return -1;
247         }
248
249     pd.events = POLLIN;
250     pd.fd = bpfData[i].fd;
251     polld.push_back(pd);
252     i++;
253     }
254
255 return 0;
256 }
257 //-----------------------------------------------------------------------------
258 int BPF_CAP::BPFCapOpen(BPF_DATA * bd)
259 {
260 char devbpf[20];
261 int i = 0;
262 int l = BUFF_LEN;
263 int im = 1;
264 struct ifreq ifr;
265
266 do
267     {
268     sprintf(devbpf, "/dev/bpf%d", i);
269     i++;
270     bd->fd = open(devbpf, O_RDONLY);
271     } while(bd->fd < 0 && errno == EBUSY);
272
273 if (bd->fd < 0)
274     {
275     errorStr = "Can't capture packets. Open bpf device for " + bd->iface + " error.";
276     printfd(__FILE__, "Cannot open BPF device\n");
277     return -1;
278     }
279
280 strncpy(ifr.ifr_name, bd->iface.c_str(), sizeof(ifr.ifr_name));
281
282 if (ioctl(bd->fd, BIOCSBLEN, (caddr_t)&l) < 0)
283     {
284     errorStr = bd->iface + " BIOCSBLEN " + std::string(strerror(errno));
285     printfd(__FILE__, "ioctl failed: '%s'\n", errorStr.c_str());
286     return -1;
287     }
288
289 if (ioctl(bd->fd, BIOCSETIF, (caddr_t)&ifr) < 0)
290     {
291     errorStr = bd->iface + " BIOCSETIF " + std::string(strerror(errno));
292     printfd(__FILE__, "ioctl failed: '%s'\n", errorStr.c_str());
293     return -1;
294     }
295
296 if (ioctl(bd->fd, BIOCIMMEDIATE, &im) < 0)
297     {
298     errorStr = bd->iface + " BIOCIMMEDIATE " + std::string(strerror(errno));
299     printfd(__FILE__, "ioctl failed: '%s'\n", errorStr.c_str());
300     return -1;
301     }
302
303 return bd->fd;
304 }
305 //-----------------------------------------------------------------------------
306 int BPF_CAP::BPFCapClose()
307 {
308 for (unsigned int i = 0; i < bpfData.size(); i++)
309     close(bpfData[i].fd);
310 return 0;
311 }
312 //-----------------------------------------------------------------------------
313 int BPF_CAP::BPFCapRead(char * buffer, int blen, char ** capIface)
314 {
315 poll(&polld[0], polld.size(), -1);
316
317 for (unsigned int i = 0; i < polld.size(); i++)
318     {
319     if (polld[i].revents & POLLIN)
320         {
321         if (BPFCapRead(buffer, blen, capIface, &bpfData[i]))
322             {
323             polld[i].revents = 0;
324             continue;
325             }
326         polld[i].revents = 0;
327         return 0;
328         }
329     }
330 return -1;
331 }
332 //-----------------------------------------------------------------------------
333 int BPF_CAP::BPFCapRead(char * buffer, int blen, char **, BPF_DATA * bd)
334 {
335 if (bd->canRead)
336     {
337     bd->r = read(bd->fd, bd->buffer, BUFF_LEN);
338     if (bd->r < 0)
339         {
340         struct timespec ts = {0, 20000000};
341         nanosleep(&ts, NULL);
342         return -1;
343         }
344
345     bd->p = bd->buffer;
346     bd->bh = (struct bpf_hdr*)bd->p;
347     bd->canRead = 0;
348     }
349
350 if(bd->r > bd->sum)
351     {
352     memcpy(buffer, (char*)(bd->p) + bd->bh->bh_hdrlen, blen);
353
354     bd->sum += BPF_WORDALIGN(bd->bh->bh_hdrlen + bd->bh->bh_caplen);
355     bd->p = bd->p + BPF_WORDALIGN(bd->bh->bh_hdrlen + bd->bh->bh_caplen);
356     bd->bh = (struct bpf_hdr*)bd->p;
357     }
358
359 if(bd->r <= bd->sum)
360     {
361     bd->canRead = 1;
362     bd->sum = 0;
363     }
364
365 return 0;
366 }
367 //-----------------------------------------------------------------------------