]> git.stg.codes - stg.git/blob - projects/stargazer/plugins/capture/pcap/pcap_cap.h
f47c6b8dae3b293642cddeacc9888eaf921f8580
[stg.git] / projects / stargazer / plugins / capture / pcap / pcap_cap.h
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 : Maxim Mamontov <faust@stargazer.dp.ua>
19 */
20
21 #pragma once
22
23 #include "stg/plugin.h"
24 #include "stg/module_settings.h"
25 #include "stg/logger.h"
26
27 #include <string>
28 #include <vector>
29
30 #include <pcap.h>
31 #include <pthread.h>
32 #include <sys/select.h>
33
34 namespace STG
35 {
36
37 struct Users;
38 struct Tariffs;
39 struct Admins;
40 struct TraffCounter;
41 struct Settings;
42
43 }
44
45 struct DEV
46 {
47     DEV() : device("any"), filterExpression("ip"), handle(NULL), fd(-1) {}
48     DEV(const std::string & d) : device(d), filterExpression("ip"), handle(NULL), fd(-1) {}
49     DEV(const std::string & d, const std::string & f)
50         : device(d), filterExpression(f), handle(NULL), fd(-1) {}
51
52     std::string device;
53     std::string filterExpression;
54     pcap_t * handle;
55     struct bpf_program filter;
56     int fd;
57 };
58
59 typedef std::vector<DEV> DEV_MAP;
60
61 class PCAP_CAP : public STG::Plugin {
62 public:
63     PCAP_CAP();
64
65     void                SetTraffcounter(STG::TraffCounter * tc) override { traffCnt = tc; }
66
67     int                 Start() override;
68     int                 Stop() override;
69     int                 Reload(const STG::ModuleSettings & /*ms*/) override { return 0; }
70     bool                IsRunning() override { return isRunning; }
71
72     void                SetSettings(const STG::ModuleSettings & s) override { settings = s; }
73     int                 ParseSettings() override;
74
75     const std::string & GetStrError() const override { return errorStr; }
76     std::string         GetVersion() const override;
77     uint16_t            GetStartPosition() const override { return 40; }
78     uint16_t            GetStopPosition() const override { return 40; }
79
80 private:
81     PCAP_CAP(const PCAP_CAP & rvalue);
82     PCAP_CAP & operator=(const PCAP_CAP & rvalue);
83
84     void TryRead(const fd_set & set);
85     void TryReadDev(const DEV & dev);
86
87     static void *       Run(void *);
88
89     mutable std::string errorStr;
90
91     pthread_t           thread;
92     bool                nonstop;
93     bool                isRunning;
94     STG::ModuleSettings     settings;
95     DEV_MAP             devices;
96
97     STG::TraffCounter *      traffCnt;
98
99     STG::PluginLogger       logger;
100 };