]> git.stg.codes - stg.git/blob - projects/stargazer/plugins/capture/ether_freebsd/ether_cap.h
More std::jthread
[stg.git] / projects / stargazer / plugins / capture / ether_freebsd / ether_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  $Revision: 1.11 $
19  $Date: 2009/06/23 11:32:27 $
20  $Author: faust $
21  */
22
23 /*
24 * Author : Boris Mikhailenko <stg34@stargazer.dp.ua>
25 */
26
27 #pragma once
28
29 #include "stg/plugin.h"
30 #include "stg/module_settings.h"
31 #include "stg/logger.h"
32
33 #include <string>
34 #include <vector>
35 #pragma GCC diagnostic push
36 #pragma GCC diagnostic ignored "-Wshadow"
37 #include <jthread.hpp>
38 #pragma GCC diagnostic pop
39 #include <cstdint>
40
41 #include <sys/poll.h>
42
43 #define BUFF_LEN (128)
44
45 namespace STG
46 {
47 struct TraffCounter;
48 }
49
50 //-----------------------------------------------------------------------------
51 struct BPF_DATA {
52     BPF_DATA()
53         {
54         fd = 0;
55         p = NULL;
56         r = 0;
57         sum = 0;
58         memset(buffer, 0, BUFF_LEN);
59         bh = NULL;
60         canRead = 1;
61         iface = "";
62         };
63
64     BPF_DATA(const BPF_DATA & bd)
65         {
66         fd = bd.fd;
67         p = bd.p;
68         r = bd.r;
69         sum = bd.sum;
70         memcpy(buffer, bd.buffer, BUFF_LEN);
71         bh = bd.bh;
72         canRead = bd.canRead;
73         iface = bd.iface;
74         };
75
76 int              fd;
77 uint8_t *        p;
78 int              r;
79 int              sum;
80 uint8_t          buffer[BUFF_LEN];
81 struct bpf_hdr * bh;
82 int              canRead;
83 std::string      iface;
84 };
85 //-----------------------------------------------------------------------------
86 class BPF_CAP_SETTINGS {
87 public:
88     const std::string & GetStrError() const { return errorStr; }
89     int             ParseSettings(const STG::ModuleSettings & s);
90     std::string     GetIface(unsigned int num);
91
92 private:
93     std::vector<std::string> iface;
94     mutable std::string errorStr;
95 };
96 //-----------------------------------------------------------------------------
97 class BPF_CAP : public STG::Plugin {
98 public:
99                         BPF_CAP();
100
101     void                SetTraffcounter(STG::TraffCounter * tc) override { traffCnt = tc; }
102
103     int                 Start() override;
104     int                 Stop() override;
105     int                 Reload(const STG::ModuleSettings & /*ms*/) override { return 0; }
106     bool                IsRunning() override { return isRunning; }
107
108     void                SetSettings(const STG::ModuleSettings & s) override { settings = s; }
109     int                 ParseSettings() override;
110
111     const std::string & GetStrError() const override { return errorStr; }
112     std::string         GetVersion() const override;
113     uint16_t            GetStartPosition() const override { return 40; }
114     uint16_t            GetStopPosition() const override { return 40; }
115
116 private:
117     BPF_CAP(const BPF_CAP & rvalue);
118     BPF_CAP & operator=(const BPF_CAP & rvalue);
119
120     void                Run(std::stop_token token);
121     int                 BPFCapOpen();
122     int                 BPFCapOpen(BPF_DATA * bd);
123     int                 BPFCapClose();
124     int                 BPFCapRead(char * buffer, int blen, char ** iface);
125     int                 BPFCapRead(char * buffer, int blen, char ** iface, BPF_DATA * bd);
126
127     BPF_CAP_SETTINGS      capSettings;
128
129     mutable std::string   errorStr;
130
131     std::vector<BPF_DATA> bpfData;
132     std::vector<pollfd>   polld;
133
134     std::jthread          m_thread;
135     bool                  isRunning;
136     int                   capSock;
137     STG::ModuleSettings       settings;
138
139     STG::TraffCounter *        traffCnt;
140
141     STG::PluginLogger         logger;
142 };