]> git.stg.codes - stg.git/blob - projects/stargazer/plugins/other/smux/smux.cpp
Produce debug output only if SMUX_DEBUG is defined
[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 #include "stg/plugin_creator.h"
19
20 #include "smux.h"
21 #include "utils.h"
22
23 PLUGIN_CREATOR<SMUX> smc;
24
25 PLUGIN * GetPlugin()
26 {
27 return smc.GetPlugin();
28 }
29
30 bool SPrefixLess(const Sensors::value_type & a,
31                  const Sensors::value_type & b)
32 {
33 return a.first.PrefixLess(b.first);
34 }
35
36 SMUX_SETTINGS::SMUX_SETTINGS()
37     : ip(0),
38       port(0)
39 {}
40
41 int SMUX_SETTINGS::ParseSettings(const MODULE_SETTINGS & s)
42 {
43 PARAM_VALUE pv;
44 std::vector<PARAM_VALUE>::const_iterator pvi;
45 int p;
46
47 pv.param = "Port";
48 pvi = std::find(s.moduleParams.begin(), s.moduleParams.end(), pv);
49 if (pvi == s.moduleParams.end())
50     {
51     errorStr = "Parameter \'Port\' not found.";
52     printfd(__FILE__, "Parameter 'Port' not found\n");
53     return -1;
54     }
55 if (ParseIntInRange(pvi->value[0], 2, 65535, &p))
56     {
57     errorStr = "Cannot parse parameter \'Port\': " + errorStr;
58     printfd(__FILE__, "Cannot parse parameter 'Port'\n");
59     return -1;
60     }
61 port = p;
62
63 pv.param = "Password";
64 pvi = std::find(s.moduleParams.begin(), s.moduleParams.end(), pv);
65 if (pvi == s.moduleParams.end())
66     {
67     errorStr = "Parameter \'Password\' not found.";
68     printfd(__FILE__, "Parameter 'Password' not found\n");
69     password = "";
70     }
71 else
72     {
73     password = pvi->value[0];
74     }
75
76 pv.param = "Server";
77 pvi = std::find(s.moduleParams.begin(), s.moduleParams.end(), pv);
78 if (pvi == s.moduleParams.end())
79     {
80     errorStr = "Parameter \'Server\' not found.";
81     printfd(__FILE__, "Parameter 'Server' not found\n");
82     return -1;
83     }
84 ip = inet_strington(pvi->value[0]);
85
86 return 0;
87 }
88
89 SMUX::SMUX()
90     : PLUGIN(),
91       users(NULL),
92       tariffs(NULL),
93       admins(NULL),
94       services(NULL),
95       corporations(NULL),
96       traffcounter(NULL),
97       running(false),
98       stopped(true),
99       sock(-1),
100       smuxHandlers(),
101       pdusHandlers(),
102       sensors(),
103       tables(),
104       notifiers(),
105       addUserNotifier(*this),
106       delUserNotifier(*this),
107       addDelTariffNotifier(*this)
108 {
109 pthread_mutex_init(&mutex, NULL);
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 pthread_mutex_destroy(&mutex);
135 }
136
137 int SMUX::ParseSettings()
138 {
139 return smuxSettings.ParseSettings(settings);
140 }
141
142 int SMUX::Start()
143 {
144 assert(users != NULL && "users must not be NULL");
145 assert(tariffs != NULL && "tariffs must not be NULL");
146 assert(admins != NULL && "admins must not be NULL");
147 assert(services != NULL && "services must not be NULL");
148 assert(corporations != NULL && "corporations must not be NULL");
149 assert(traffcounter != NULL && "traffcounter must not be NULL");
150
151 if (PrepareNet())
152     return -1;
153
154 // Users
155 sensors[OID(".1.3.6.1.4.1.38313.1.1.1")] = new TotalUsersSensor(*users);
156 sensors[OID(".1.3.6.1.4.1.38313.1.1.2")] = new ConnectedUsersSensor(*users);
157 sensors[OID(".1.3.6.1.4.1.38313.1.1.3")] = new AuthorizedUsersSensor(*users);
158 sensors[OID(".1.3.6.1.4.1.38313.1.1.4")] = new AlwaysOnlineUsersSensor(*users);
159 sensors[OID(".1.3.6.1.4.1.38313.1.1.5")] = new NoCashUsersSensor(*users);
160 sensors[OID(".1.3.6.1.4.1.38313.1.1.6")] = new DisabledDetailStatsUsersSensor(*users);
161 sensors[OID(".1.3.6.1.4.1.38313.1.1.7")] = new DisabledUsersSensor(*users);
162 sensors[OID(".1.3.6.1.4.1.38313.1.1.8")] = new PassiveUsersSensor(*users);
163 sensors[OID(".1.3.6.1.4.1.38313.1.1.9")] = new CreditUsersSensor(*users);
164 sensors[OID(".1.3.6.1.4.1.38313.1.1.10")] = new FreeMbUsersSensor(*users);
165 sensors[OID(".1.3.6.1.4.1.38313.1.1.11")] = new TariffChangeUsersSensor(*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 (!running)
195     {
196     if (pthread_create(&thread, NULL, Runner, this))
197         {
198         errorStr = "Cannot create thread.";
199         printfd(__FILE__, "Cannot create thread\n");
200         return -1;
201         }
202     }
203
204 return 0;
205 }
206
207 int SMUX::Stop()
208 {
209 printfd(__FILE__, "SMUX::Stop() - Before\n");
210 running = false;
211
212 ResetNotifiers();
213
214 if (!stopped)
215     {
216     //5 seconds to thread stops itself
217     for (int i = 0; i < 25 && !stopped; i++)
218         {
219         struct timespec ts = {0, 200000000};
220         nanosleep(&ts, NULL);
221         }
222
223     //after 5 seconds waiting thread still running. now killing it
224     if (!stopped)
225         {
226         printfd(__FILE__, "SMUX::Stop() - failed to stop thread, killing it\n");
227         if (pthread_kill(thread, SIGINT))
228             {
229             errorStr = "Cannot kill thread.";
230             printfd(__FILE__, "SMUX::Stop() - Cannot kill thread\n");
231             return -1;
232             }
233         printfd(__FILE__, "SMUX::Stop() -  killed Run\n");
234         }
235     }
236
237 pthread_join(thread, NULL);
238
239 close(sock);
240
241 printfd(__FILE__, "SMUX::Stop() - After\n");
242 return 0;
243 }
244
245 void * SMUX::Runner(void * d)
246 {
247 SMUX * smux = static_cast<SMUX *>(d);
248
249 smux->Run();
250
251 return NULL;
252 }
253
254 void SMUX::Run()
255 {
256 SendOpenPDU(sock);
257 SendRReqPDU(sock);
258 running = true;
259 stopped = false;
260
261 while(running)
262     {
263     if (WaitPackets(sock))
264         {
265         SMUX_PDUs_t * pdus = RecvSMUXPDUs(sock);
266         if (pdus)
267             {
268             DispatchPDUs(pdus);
269             ASN_STRUCT_FREE(asn_DEF_SMUX_PDUs, pdus);
270             }
271         }
272     if (!running)
273         break;
274     }
275 SendClosePDU(sock);
276 stopped = true;
277 }
278
279 bool SMUX::PrepareNet()
280 {
281 sock = socket(AF_INET, SOCK_STREAM, 0);
282
283 if (sock < 0)
284     {
285     errorStr = "Cannot create socket.";
286     printfd(__FILE__, "Cannot create socket\n");
287     return true;
288     }
289
290 struct sockaddr_in addr;
291
292 addr.sin_family = AF_INET;
293 addr.sin_port = htons(smuxSettings.GetPort());
294 addr.sin_addr.s_addr = smuxSettings.GetIP();
295
296 if (connect(sock, reinterpret_cast<struct sockaddr *>(&addr), sizeof(addr)))
297     {
298     errorStr = "Cannot connect.";
299     printfd(__FILE__, "Cannot connect. Message: '%s'\n", strerror(errno));
300     return true;
301     }
302
303 return false;
304 }
305
306 bool SMUX::DispatchPDUs(const SMUX_PDUs_t * pdus)
307 {
308 SMUXHandlers::iterator it;
309 it = smuxHandlers.find(pdus->present);
310 if (it != smuxHandlers.end())
311     {
312     return (this->*(it->second))(pdus);
313     }
314 else
315     {
316 #ifdef SMUX_DEBUG
317     switch (pdus->present)
318         {
319         case SMUX_PDUs_PR_NOTHING:
320             printfd(__FILE__, "PDUs: nothing\n");
321             break;
322         case SMUX_PDUs_PR_open:
323             printfd(__FILE__, "PDUs: open\n");
324             break;
325         case SMUX_PDUs_PR_registerRequest:
326             printfd(__FILE__, "PDUs: registerRequest\n");
327             break;
328         default:
329             printfd(__FILE__, "PDUs: undefined\n");
330         }
331     asn_fprint(stderr, &asn_DEF_SMUX_PDUs, pdus);
332 #endif
333     }
334 return false;
335 }
336
337 bool SMUX::UpdateTables()
338 {
339 Sensors newSensors;
340 bool done = true;
341 Tables::iterator it(tables.begin());
342 while (it != tables.end())
343     {
344     try
345         {
346         it->second->UpdateSensors(newSensors);
347         }
348     catch (const std::runtime_error & ex)
349         {
350         printfd(__FILE__,
351                 "SMUX::UpdateTables - failed to update table '%s': '%s'\n",
352                 it->first.c_str(), ex.what());
353         done = false;
354         break;
355         }
356     ++it;
357     }
358 if (!done)
359     {
360     Sensors::iterator it(newSensors.begin());
361     while (it != newSensors.end())
362         {
363         delete it->second;
364         ++it;
365         }
366     return false;
367     }
368
369 it = tables.begin();
370 while (it != tables.end())
371     {
372     std::pair<Sensors::iterator, Sensors::iterator> res;
373     res = std::equal_range(sensors.begin(),
374                            sensors.end(),
375                            std::pair<OID, Sensor *>(OID(it->first), NULL),
376                            SPrefixLess);
377     Sensors::iterator sit(res.first);
378     while (sit != res.second)
379         {
380         delete sit->second;
381         ++sit;
382         }
383     sensors.erase(res.first, res.second);
384     ++it;
385     }
386
387 sensors.insert(newSensors.begin(), newSensors.end());
388
389 return true;
390 }
391
392 void SMUX::SetNotifier(USER_PTR userPtr)
393 {
394 notifiers.push_back(CHG_AFTER_NOTIFIER(*this, userPtr));
395 userPtr->GetProperty().tariffName.AddAfterNotifier(&notifiers.back());
396 }
397
398 void SMUX::UnsetNotifier(USER_PTR userPtr)
399 {
400 std::list<CHG_AFTER_NOTIFIER>::iterator it = notifiers.begin();
401 while (it != notifiers.end())
402     {
403     if (it->GetUserPtr() == userPtr)
404         {
405         userPtr->GetProperty().tariffName.DelAfterNotifier(&(*it));
406         notifiers.erase(it);
407         break;
408         }
409     ++it;
410     }
411 }
412
413 void SMUX::SetNotifiers()
414 {
415 int h = users->OpenSearch();
416 assert(h && "USERS::OpenSearch is always correct");
417
418 USER_PTR u;
419 while (!users->SearchNext(h, &u))
420     SetNotifier(u);
421
422 users->CloseSearch(h);
423
424 users->AddNotifierUserAdd(&addUserNotifier);
425 users->AddNotifierUserDel(&delUserNotifier);
426
427 tariffs->AddNotifierAdd(&addDelTariffNotifier);
428 tariffs->AddNotifierDel(&addDelTariffNotifier);
429 }
430
431 void SMUX::ResetNotifiers()
432 {
433 tariffs->DelNotifierDel(&addDelTariffNotifier);
434 tariffs->DelNotifierAdd(&addDelTariffNotifier);
435
436 users->DelNotifierUserDel(&delUserNotifier);
437 users->DelNotifierUserAdd(&addUserNotifier);
438
439 std::list<CHG_AFTER_NOTIFIER>::iterator it = notifiers.begin();
440 while (it != notifiers.end())
441     {
442     it->GetUserPtr()->GetProperty().tariffName.DelAfterNotifier(&(*it));
443     ++it;
444     }
445 }
446
447 void CHG_AFTER_NOTIFIER::Notify(const std::string &, const std::string &)
448 {
449 smux.UpdateTables();
450 }