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