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