]> git.stg.codes - stg.git/blob - projects/stargazer/plugins/other/smux/smux.cpp
More subscriptions, less notifiers.
[stg.git] / projects / stargazer / plugins / other / smux / smux.cpp
1 #include <sys/types.h>
2 #include <sys/socket.h>
3 #include <arpa/inet.h>
4
5 #include <cstring>
6 #include <cerrno>
7 #include <ctime>
8 #include <csignal>
9 #include <cassert>
10
11 #include <vector>
12 #include <algorithm>
13 #include <iterator>
14 #include <stdexcept>
15 #include <utility>
16
17 #include "stg/common.h"
18
19 #include "smux.h"
20 #include "utils.h"
21
22 namespace
23 {
24
25 bool SPrefixLess(const Sensors::value_type & a,
26                  const Sensors::value_type & b)
27 {
28 return a.first.PrefixLess(b.first);
29 }
30
31 }
32
33 extern "C" STG::Plugin* GetPlugin()
34 {
35     static SMUX plugin;
36     return &plugin;
37 }
38
39 SMUX_SETTINGS::SMUX_SETTINGS()
40     : ip(0),
41       port(0)
42 {}
43
44 int SMUX_SETTINGS::ParseSettings(const STG::ModuleSettings & s)
45 {
46 STG::ParamValue pv;
47 int p;
48
49 pv.param = "Port";
50 auto pvi = std::find(s.moduleParams.begin(), s.moduleParams.end(), pv);
51 if (pvi == s.moduleParams.end() || pvi->value.empty())
52     {
53     errorStr = "Parameter \'Port\' not found.";
54     printfd(__FILE__, "Parameter 'Port' not found\n");
55     return -1;
56     }
57 if (ParseIntInRange(pvi->value[0], 2, 65535, &p) != 0)
58     {
59     errorStr = "Cannot parse parameter \'Port\': " + errorStr;
60     printfd(__FILE__, "Cannot parse parameter 'Port'\n");
61     return -1;
62     }
63 port = static_cast<uint16_t>(p);
64
65 pv.param = "Password";
66 pvi = std::find(s.moduleParams.begin(), s.moduleParams.end(), pv);
67 if (pvi == s.moduleParams.end() || pvi->value.empty())
68     {
69     errorStr = "Parameter \'Password\' not found.";
70     printfd(__FILE__, "Parameter 'Password' not found\n");
71     password = "";
72     }
73 else
74     {
75     password = pvi->value[0];
76     }
77
78 pv.param = "Server";
79 pvi = std::find(s.moduleParams.begin(), s.moduleParams.end(), pv);
80 if (pvi == s.moduleParams.end() || pvi->value.empty())
81     {
82     errorStr = "Parameter \'Server\' not found.";
83     printfd(__FILE__, "Parameter 'Server' not found\n");
84     return -1;
85     }
86 ip = inet_strington(pvi->value[0]);
87
88 return 0;
89 }
90
91 SMUX::SMUX()
92     : users(nullptr),
93       tariffs(nullptr),
94       admins(nullptr),
95       services(nullptr),
96       corporations(nullptr),
97       traffcounter(nullptr),
98       stopped(true),
99       needReconnect(false),
100       lastReconnectTry(0),
101       reconnectTimeout(1),
102       sock(-1),
103       logger(STG::PluginLogger::get("smux"))
104 {
105 smuxHandlers[SMUX_PDUs_PR_close] = &SMUX::CloseHandler;
106 smuxHandlers[SMUX_PDUs_PR_registerResponse] = &SMUX::RegisterResponseHandler;
107 smuxHandlers[SMUX_PDUs_PR_pdus] = &SMUX::PDUsRequestHandler;
108 smuxHandlers[SMUX_PDUs_PR_commitOrRollback] = &SMUX::CommitOrRollbackHandler;
109
110 pdusHandlers[PDUs_PR_get_request] = &SMUX::GetRequestHandler;
111 pdusHandlers[PDUs_PR_get_next_request] = &SMUX::GetNextRequestHandler;
112 pdusHandlers[PDUs_PR_set_request] = &SMUX::SetRequestHandler;
113 }
114
115 SMUX::~SMUX()
116 {
117     for (auto& kv : sensors)
118         delete kv.second;
119     for (auto& kv : tables)
120         delete kv.second;
121     printfd(__FILE__, "SMUX::~SMUX()\n");
122 }
123
124 int SMUX::ParseSettings()
125 {
126 return smuxSettings.ParseSettings(settings);
127 }
128
129 int SMUX::Start()
130 {
131 assert(users != nullptr && "users must not be NULL");
132 assert(tariffs != nullptr && "tariffs must not be NULL");
133 assert(admins != nullptr && "admins must not be NULL");
134 assert(services != nullptr && "services must not be NULL");
135 assert(corporations != nullptr && "corporations must not be NULL");
136 assert(traffcounter != nullptr && "traffcounter must not be NULL");
137
138 if (PrepareNet())
139     needReconnect = true;
140
141 // Users
142 sensors[OID(".1.3.6.1.4.1.38313.1.1.1")] = new TotalUsersSensor(*users);
143 sensors[OID(".1.3.6.1.4.1.38313.1.1.2")] = new ConnectedUsersSensor(*users);
144 sensors[OID(".1.3.6.1.4.1.38313.1.1.3")] = new AuthorizedUsersSensor(*users);
145 sensors[OID(".1.3.6.1.4.1.38313.1.1.4")] = new AlwaysOnlineUsersSensor(*users);
146 sensors[OID(".1.3.6.1.4.1.38313.1.1.5")] = new NoCashUsersSensor(*users);
147 sensors[OID(".1.3.6.1.4.1.38313.1.1.6")] = new DisabledDetailStatsUsersSensor(*users);
148 sensors[OID(".1.3.6.1.4.1.38313.1.1.7")] = new DisabledUsersSensor(*users);
149 sensors[OID(".1.3.6.1.4.1.38313.1.1.8")] = new PassiveUsersSensor(*users);
150 sensors[OID(".1.3.6.1.4.1.38313.1.1.9")] = new CreditUsersSensor(*users);
151 sensors[OID(".1.3.6.1.4.1.38313.1.1.10")] = new FreeMbUsersSensor(*users);
152 sensors[OID(".1.3.6.1.4.1.38313.1.1.11")] = new TariffChangeUsersSensor(*users);
153 sensors[OID(".1.3.6.1.4.1.38313.1.1.12")] = new ActiveUsersSensor(*users);
154 // Tariffs
155 sensors[OID(".1.3.6.1.4.1.38313.1.2.1")] = new TotalTariffsSensor(*tariffs);
156 // Admins
157 sensors[OID(".1.3.6.1.4.1.38313.1.3.1")] = new TotalAdminsSensor(*admins);
158 // Services
159 sensors[OID(".1.3.6.1.4.1.38313.1.4.1")] = new TotalServicesSensor(*services);
160 // Corporations
161 sensors[OID(".1.3.6.1.4.1.38313.1.5.1")] = new TotalCorporationsSensor(*corporations);
162 // Traffcounter
163 sensors[OID(".1.3.6.1.4.1.38313.1.6.1")] = new TotalRulesSensor(*traffcounter);
164
165 // Table data
166 tables[".1.3.6.1.4.1.38313.1.2.2"] = new TariffUsersTable(".1.3.6.1.4.1.38313.1.2.2", *tariffs, *users);
167
168 UpdateTables();
169 SetNotifiers();
170
171 #ifdef SMUX_DEBUG
172 auto it = sensors.begin();
173 while (it != sensors.end())
174     {
175     printfd(__FILE__, "%s = %s\n",
176             it->first.ToString().c_str(),
177             it->second->ToString().c_str());
178     ++it;
179     }
180 #endif
181
182 if (!m_thread.joinable())
183     m_thread = std::jthread([this](auto token){ Run(std::move(token)); });
184
185 return 0;
186 }
187
188 int SMUX::Stop()
189 {
190 printfd(__FILE__, "SMUX::Stop() - Before\n");
191 m_thread.request_stop();
192
193 if (!stopped)
194     {
195     //5 seconds to thread stops itself
196     for (int i = 0; i < 25 && !stopped; i++)
197         {
198         struct timespec ts = {0, 200000000};
199         nanosleep(&ts, nullptr);
200         }
201     }
202
203 if (!stopped)
204     m_thread.detach();
205 else
206     m_thread.join();
207
208 ResetNotifiers();
209
210 for (auto& kv : sensors)
211     delete kv.second;
212 for (auto& kv : tables)
213     delete kv.second;
214
215 tables.erase(tables.begin(), tables.end());
216 sensors.erase(sensors.begin(), sensors.end());
217
218 close(sock);
219
220 if (!stopped)
221     {
222     return -1;
223     }
224
225 printfd(__FILE__, "SMUX::Stop() - After\n");
226 return 0;
227 }
228
229 int SMUX::Reload(const STG::ModuleSettings & /*ms*/)
230 {
231 if (Stop() != 0)
232     return -1;
233 if (Start() != 0)
234     return -1;
235 if (!needReconnect)
236     {
237     printfd(__FILE__, "SMUX reconnected succesfully.\n");
238     logger("Reconnected successfully.");
239     }
240 return 0;
241 }
242
243 void SMUX::Run(std::stop_token token)
244 {
245 stopped = true;
246 if (!SendOpenPDU(sock))
247     needReconnect = true;
248 if (!SendRReqPDU(sock))
249     needReconnect = true;
250 stopped = false;
251
252 while (!token.stop_requested())
253     {
254     if (WaitPackets(sock) && !needReconnect)
255         {
256         auto* pdus = RecvSMUXPDUs(sock);
257         if (pdus != nullptr)
258             {
259             DispatchPDUs(pdus);
260             ASN_STRUCT_FREE(asn_DEF_SMUX_PDUs, pdus);
261             }
262         else if (!token.stop_requested())
263             Reconnect();
264         }
265     else if (!token.stop_requested() && needReconnect)
266         Reconnect();
267     if (token.stop_requested())
268         break;
269     }
270 SendClosePDU(sock);
271 stopped = true;
272 }
273
274 bool SMUX::PrepareNet()
275 {
276 sock = socket(AF_INET, SOCK_STREAM, 0);
277
278 if (sock < 0)
279     {
280     errorStr = "Cannot create socket.";
281     logger("Cannot create a socket: %s", strerror(errno));
282     printfd(__FILE__, "Cannot create socket\n");
283     return true;
284     }
285
286 struct sockaddr_in addr;
287
288 addr.sin_family = AF_INET;
289 addr.sin_port = htons(smuxSettings.GetPort());
290 addr.sin_addr.s_addr = smuxSettings.GetIP();
291
292 if (connect(sock, reinterpret_cast<struct sockaddr *>(&addr), sizeof(addr)) != 0)
293     {
294     errorStr = "Cannot connect.";
295     logger("Cannot connect the socket: %s", strerror(errno));
296     printfd(__FILE__, "Cannot connect. Message: '%s'\n", strerror(errno));
297     return true;
298     }
299
300 return false;
301 }
302
303 bool SMUX::Reconnect()
304 {
305 if (needReconnect && difftime(time(nullptr), lastReconnectTry) < reconnectTimeout)
306     return true;
307
308 time(&lastReconnectTry);
309 SendClosePDU(sock);
310 close(sock);
311 if (!PrepareNet())
312     if (SendOpenPDU(sock))
313         if (SendRReqPDU(sock))
314             {
315             reconnectTimeout = 1;
316             needReconnect = false;
317             logger("Connected successfully");
318             printfd(__FILE__, "Connected successfully\n");
319             return false;
320             }
321
322 if (needReconnect)
323     if (reconnectTimeout < 60)
324         reconnectTimeout *= 2;
325
326 needReconnect = true;
327 return true;
328 }
329
330 bool SMUX::DispatchPDUs(const SMUX_PDUs_t * pdus)
331 {
332 auto it = smuxHandlers.find(pdus->present);
333 if (it != smuxHandlers.end())
334     return (this->*(it->second))(pdus);
335 #ifdef SMUX_DEBUG
336 else
337     {
338     switch (pdus->present)
339         {
340         case SMUX_PDUs_PR_NOTHING:
341             printfd(__FILE__, "PDUs: nothing\n");
342             break;
343         case SMUX_PDUs_PR_open:
344             printfd(__FILE__, "PDUs: open\n");
345             break;
346         case SMUX_PDUs_PR_registerRequest:
347             printfd(__FILE__, "PDUs: registerRequest\n");
348             break;
349         default:
350             printfd(__FILE__, "PDUs: undefined\n");
351         }
352     asn_fprint(stderr, &asn_DEF_SMUX_PDUs, pdus);
353     }
354 #endif
355 return false;
356 }
357
358 bool SMUX::UpdateTables()
359 {
360 Sensors newSensors;
361 bool done = true;
362 auto it = tables.begin();
363 while (it != tables.end())
364     {
365     try
366         {
367         it->second->UpdateSensors(newSensors);
368         }
369     catch (const std::runtime_error & ex)
370         {
371         printfd(__FILE__,
372                 "SMUX::UpdateTables - failed to update table '%s': '%s'\n",
373                 it->first.c_str(), ex.what());
374         done = false;
375         break;
376         }
377     ++it;
378     }
379 if (!done)
380     {
381     auto sit = newSensors.begin();
382     while (sit != newSensors.end())
383         {
384         delete sit->second;
385         ++sit;
386         }
387     return false;
388     }
389
390 it = tables.begin();
391 while (it != tables.end())
392     {
393     auto res = std::equal_range(sensors.begin(),
394                                 sensors.end(),
395                                 std::pair<OID, Sensor *>(OID(it->first), nullptr),
396                                 SPrefixLess);
397     auto sit = res.first;
398     while (sit != res.second)
399         {
400         delete sit->second;
401         ++sit;
402         }
403     sensors.erase(res.first, res.second);
404     ++it;
405     }
406
407 sensors.insert(newSensors.begin(), newSensors.end());
408
409 return true;
410 }
411
412 void SMUX::SetNotifier(UserPtr userPtr)
413 {
414 notifiers.emplace_back(*this, userPtr);
415 userPtr->GetProperties().tariffName.AddAfterNotifier(&notifiers.back());
416 }
417
418 void SMUX::UnsetNotifier(UserPtr userPtr)
419 {
420 auto it = notifiers.begin();
421 while (it != notifiers.end())
422     {
423     if (it->GetUserPtr() == userPtr)
424         {
425         userPtr->GetProperties().tariffName.DelAfterNotifier(&(*it));
426         notifiers.erase(it);
427         break;
428         }
429     ++it;
430     }
431 }
432
433 void SMUX::SetNotifiers()
434 {
435 int h = users->OpenSearch();
436 assert(h && "USERS::OpenSearch is always correct");
437
438 UserPtr u;
439 while (users->SearchNext(h, &u) == 0)
440     SetNotifier(u);
441
442 users->CloseSearch(h);
443
444 m_onAddUserConn = users->onAdd([this](auto user){
445     SetNotifier(user);
446     UpdateTables();
447 });
448 m_onDelUserConn = users->onDel([this](auto user){
449     UnsetNotifier(user);
450     UpdateTables();
451 });
452
453 auto updateTables = [this](const STG::TariffData&){ UpdateTables(); };
454 m_onAddTariffConn = tariffs->onAdd(updateTables);
455 m_onDelTariffConn = tariffs->onDel(updateTables);
456 }
457
458 void SMUX::ResetNotifiers()
459 {
460 m_onAddTariffConn.disconnect();
461 m_onDelTariffConn.disconnect();
462
463 m_onAddUserConn.disconnect();
464 m_onDelUserConn.disconnect();
465
466 auto it = notifiers.begin();
467 while (it != notifiers.end())
468     {
469     it->GetUserPtr()->GetProperties().tariffName.DelAfterNotifier(&(*it));
470     ++it;
471     }
472 notifiers.clear();
473 }