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