]> git.stg.codes - stg.git/blob - projects/stargazer/plugins/other/rscript/rscript.cpp
8b0e2054a984154961eeb1e31dffbd54ff6fe96e
[stg.git] / projects / stargazer / plugins / other / rscript / rscript.cpp
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  *    Author : Boris Mikhailenko <stg34@stargazer.dp.ua>
19  *    Author : Maxim Mamontov <faust@stargazer.dp.ua>
20  */
21
22 #include "rscript.h"
23
24 #include "ur_functor.h"
25
26 #include "stg/common.h"
27 #include "stg/locker.h"
28 #include "stg/users.h"
29 #include "stg/user_property.h"
30 #include "stg/logger.h"
31
32 #include <algorithm>
33
34 #include <csignal>
35 #include <cassert>
36 #include <cstdlib>
37 #include <cerrno>
38 #include <cstring>
39
40 #include <sys/time.h>
41 #include <netinet/ip.h>
42
43 #define RS_DEBUG (1)
44 #define MAX_SHORT_PCKT  (3)
45
46 extern volatile time_t stgTime;
47
48 using RS::REMOTE_SCRIPT;
49
50 namespace {
51
52 template<typename T>
53 struct USER_IS
54 {
55     explicit USER_IS(RS::UserPtr u) : user(u) {}
56     bool operator()(const T & notifier) { return notifier.GetUser() == user; }
57
58     RS::UserPtr user;
59 };
60
61 } // namespace anonymous
62
63 extern "C" STG::Plugin* GetPlugin()
64 {
65     static REMOTE_SCRIPT plugin;
66     return &plugin;
67 }
68 //-----------------------------------------------------------------------------
69 //-----------------------------------------------------------------------------
70 //-----------------------------------------------------------------------------
71 RS::SETTINGS::SETTINGS()
72     : sendPeriod(0),
73       port(0)
74 {
75 }
76 //-----------------------------------------------------------------------------
77 int RS::SETTINGS::ParseSettings(const STG::ModuleSettings & s)
78 {
79 int p;
80 STG::ParamValue pv;
81 std::vector<STG::ParamValue>::const_iterator pvi;
82 netRouters.clear();
83 ///////////////////////////
84 pv.param = "Port";
85 pvi = find(s.moduleParams.begin(), s.moduleParams.end(), pv);
86 if (pvi == s.moduleParams.end() || pvi->value.empty())
87     {
88     errorStr = "Parameter \'Port\' not found.";
89     printfd(__FILE__, "Parameter 'Port' not found\n");
90     return -1;
91     }
92 if (ParseIntInRange(pvi->value[0], 2, 65535, &p))
93     {
94     errorStr = "Cannot parse parameter \'Port\': " + errorStr;
95     printfd(__FILE__, "Cannot parse parameter 'Port'\n");
96     return -1;
97     }
98 port = static_cast<uint16_t>(p);
99 ///////////////////////////
100 pv.param = "SendPeriod";
101 pvi = find(s.moduleParams.begin(), s.moduleParams.end(), pv);
102 if (pvi == s.moduleParams.end() || pvi->value.empty())
103     {
104     errorStr = "Parameter \'SendPeriod\' not found.";
105     printfd(__FILE__, "Parameter 'SendPeriod' not found\n");
106     return -1;
107     }
108
109 if (ParseIntInRange(pvi->value[0], 5, 600, &sendPeriod))
110     {
111     errorStr = "Cannot parse parameter \'SendPeriod\': " + errorStr;
112     printfd(__FILE__, "Cannot parse parameter 'SendPeriod'\n");
113     return -1;
114     }
115 ///////////////////////////
116 pv.param = "UserParams";
117 pvi = find(s.moduleParams.begin(), s.moduleParams.end(), pv);
118 if (pvi == s.moduleParams.end() || pvi->value.empty())
119     {
120     errorStr = "Parameter \'UserParams\' not found.";
121     printfd(__FILE__, "Parameter 'UserParams' not found\n");
122     return -1;
123     }
124 userParams = pvi->value;
125 ///////////////////////////
126 pv.param = "Password";
127 pvi = find(s.moduleParams.begin(), s.moduleParams.end(), pv);
128 if (pvi == s.moduleParams.end() || pvi->value.empty())
129     {
130     errorStr = "Parameter \'Password\' not found.";
131     printfd(__FILE__, "Parameter 'Password' not found\n");
132     return -1;
133     }
134 password = pvi->value[0];
135 ///////////////////////////
136 pv.param = "SubnetFile";
137 pvi = find(s.moduleParams.begin(), s.moduleParams.end(), pv);
138 if (pvi == s.moduleParams.end() || pvi->value.empty())
139     {
140     errorStr = "Parameter \'SubnetFile\' not found.";
141     printfd(__FILE__, "Parameter 'SubnetFile' not found\n");
142     return -1;
143     }
144 subnetFile = pvi->value[0];
145
146 NRMapParser nrMapParser;
147
148 if (!nrMapParser.ReadFile(subnetFile))
149     {
150     netRouters = nrMapParser.GetMap();
151     }
152 else
153     {
154         STG::PluginLogger::get("rscript")("mod_rscript: error opening subnets file '%s'", subnetFile.c_str());
155     }
156
157 return 0;
158 }
159 //-----------------------------------------------------------------------------
160 //-----------------------------------------------------------------------------
161 //-----------------------------------------------------------------------------
162 REMOTE_SCRIPT::REMOTE_SCRIPT()
163     : sendPeriod(15),
164       halfPeriod(8),
165       isRunning(false),
166       users(NULL),
167       sock(0),
168       onAddUserNotifier(*this),
169       onDelUserNotifier(*this),
170       logger(STG::PluginLogger::get("rscript"))
171 {
172 }
173 //-----------------------------------------------------------------------------
174 REMOTE_SCRIPT::~REMOTE_SCRIPT()
175 {
176 }
177 //-----------------------------------------------------------------------------
178 void REMOTE_SCRIPT::Run(std::stop_token token)
179 {
180 sigset_t signalSet;
181 sigfillset(&signalSet);
182 pthread_sigmask(SIG_BLOCK, &signalSet, NULL);
183
184 isRunning = true;
185
186 while (!token.stop_requested())
187     {
188     PeriodicSend();
189     sleep(2);
190     }
191
192 isRunning = false;
193 }
194 //-----------------------------------------------------------------------------
195 int REMOTE_SCRIPT::ParseSettings()
196 {
197 int ret = rsSettings.ParseSettings(settings);
198 if (ret)
199     errorStr = rsSettings.GetStrError();
200
201 sendPeriod = rsSettings.GetSendPeriod();
202 halfPeriod = sendPeriod / 2;
203
204 return ret;
205 }
206 //-----------------------------------------------------------------------------
207 int REMOTE_SCRIPT::Start()
208 {
209 netRouters = rsSettings.GetSubnetsMap();
210
211 InitEncrypt(rsSettings.GetPassword());
212
213 users->AddNotifierUserAdd(&onAddUserNotifier);
214 users->AddNotifierUserDel(&onDelUserNotifier);
215
216 if (GetUsers())
217     {
218     return -1;
219     }
220
221 if (PrepareNet())
222     {
223     return -1;
224     }
225
226 if (!isRunning)
227     {
228     m_thread = std::jthread([this](auto token){ Run(token); });
229     }
230
231 errorStr = "";
232 return 0;
233 }
234 //-----------------------------------------------------------------------------
235 int REMOTE_SCRIPT::Stop()
236 {
237 if (!IsRunning())
238     return 0;
239
240 m_thread.request_stop();
241
242 std::for_each(
243         authorizedUsers.begin(),
244         authorizedUsers.end(),
245         DisconnectUser(*this)
246         );
247
248 FinalizeNet();
249
250 if (isRunning)
251     {
252     //5 seconds to thread stops itself
253     for (int i = 0; i < 25 && isRunning; i++)
254         {
255         struct timespec ts = {0, 200000000};
256         nanosleep(&ts, NULL);
257         }
258     }
259
260 users->DelNotifierUserDel(&onDelUserNotifier);
261 users->DelNotifierUserAdd(&onAddUserNotifier);
262
263 if (isRunning)
264     {
265     logger("Cannot stop thread.");
266     m_thread.detach();
267     }
268
269 return 0;
270 }
271 //-----------------------------------------------------------------------------
272 int REMOTE_SCRIPT::Reload(const STG::ModuleSettings & /*ms*/)
273 {
274 NRMapParser nrMapParser;
275
276 if (nrMapParser.ReadFile(rsSettings.GetMapFileName()))
277     {
278     errorStr = nrMapParser.GetErrorStr();
279     logger("Map file reading error: %s", errorStr.c_str());
280     return -1;
281     }
282
283     {
284     std::lock_guard lock(m_mutex);
285
286     printfd(__FILE__, "REMOTE_SCRIPT::Reload()\n");
287
288     netRouters = nrMapParser.GetMap();
289     }
290
291 std::for_each(authorizedUsers.begin(),
292               authorizedUsers.end(),
293               UpdateRouter(*this));
294
295 logger("%s reloaded successfully.", rsSettings.GetMapFileName().c_str());
296 printfd(__FILE__, "REMOTE_SCRIPT::Reload() %s reloaded successfully.\n");
297
298 return 0;
299 }
300 //-----------------------------------------------------------------------------
301 bool REMOTE_SCRIPT::PrepareNet()
302 {
303 sock = socket(AF_INET, SOCK_DGRAM, 0);
304
305 if (sock < 0)
306     {
307     errorStr = "Cannot create socket.";
308     logger("Canot create a socket: %s", strerror(errno));
309     printfd(__FILE__, "Cannot create socket\n");
310     return true;
311     }
312
313 return false;
314 }
315 //-----------------------------------------------------------------------------
316 bool REMOTE_SCRIPT::FinalizeNet()
317 {
318 close(sock);
319 return false;
320 }
321 //-----------------------------------------------------------------------------
322 void REMOTE_SCRIPT::PeriodicSend()
323 {
324 std::lock_guard lock(m_mutex);
325
326 std::map<uint32_t, RS::USER>::iterator it(authorizedUsers.begin());
327 while (it != authorizedUsers.end())
328     {
329     if (difftime(stgTime, it->second.lastSentTime) - (rand() % halfPeriod) > sendPeriod)
330         {
331         Send(it->second);
332         }
333     ++it;
334     }
335 }
336 //-----------------------------------------------------------------------------
337 #ifdef NDEBUG
338 bool REMOTE_SCRIPT::PreparePacket(char * buf, size_t, RS::USER & rsu, bool forceDisconnect) const
339 #else
340 bool REMOTE_SCRIPT::PreparePacket(char * buf, size_t bufSize, RS::USER & rsu, bool forceDisconnect) const
341 #endif
342 {
343 RS::PACKET_HEADER packetHead;
344
345 memset(packetHead.padding, 0, sizeof(packetHead.padding));
346 memcpy(packetHead.magic, RS_ID, sizeof(RS_ID));
347 packetHead.protoVer[0] = '0';
348 packetHead.protoVer[1] = '2';
349 if (forceDisconnect)
350     {
351     packetHead.packetType = RS_DISCONNECT_PACKET;
352     printfd(__FILE__, "RSCRIPT: force disconnect for '%s'\n", rsu.user->GetLogin().c_str());
353     }
354 else
355     {
356     if (rsu.shortPacketsCount % MAX_SHORT_PCKT == 0)
357         {
358         //SendLong
359         packetHead.packetType = rsu.user->IsInetable() ? RS_CONNECT_PACKET : RS_DISCONNECT_PACKET;
360         if (rsu.user->IsInetable())
361             printfd(__FILE__, "RSCRIPT: connect for '%s'\n", rsu.user->GetLogin().c_str());
362         else
363             printfd(__FILE__, "RSCRIPT: disconnect for '%s'\n", rsu.user->GetLogin().c_str());
364         }
365     else
366         {
367         //SendShort
368         packetHead.packetType = rsu.user->IsInetable() ? RS_ALIVE_PACKET : RS_DISCONNECT_PACKET;
369         if (rsu.user->IsInetable())
370             printfd(__FILE__, "RSCRIPT: alive for '%s'\n", rsu.user->GetLogin().c_str());
371         else
372             printfd(__FILE__, "RSCRIPT: disconnect for '%s'\n", rsu.user->GetLogin().c_str());
373         }
374     }
375 rsu.shortPacketsCount++;
376 rsu.lastSentTime = stgTime;
377
378 packetHead.ip = htonl(rsu.ip);
379 packetHead.id = htonl(rsu.user->GetID());
380 strncpy(reinterpret_cast<char*>(packetHead.login), rsu.user->GetLogin().c_str(), RS_LOGIN_LEN);
381 packetHead.login[RS_LOGIN_LEN - 1] = 0;
382
383 memcpy(buf, &packetHead, sizeof(packetHead));
384
385 if (packetHead.packetType == RS_ALIVE_PACKET)
386     {
387     return false;
388     }
389
390 RS::PACKET_TAIL packetTail;
391
392 memset(packetTail.padding, 0, sizeof(packetTail.padding));
393 memcpy(packetTail.magic, RS_ID, sizeof(RS_ID));
394 std::vector<std::string>::const_iterator it;
395 std::string params;
396 for(it = rsSettings.GetUserParams().begin();
397     it != rsSettings.GetUserParams().end();
398     ++it)
399     {
400     std::string parameter(rsu.user->GetParamValue(it->c_str()));
401     if (params.length() + parameter.length() > RS_PARAMS_LEN - 1)
402     {
403         logger("Script params string length %d exceeds the limit of %d symbols.", params.length() + parameter.length(), RS_PARAMS_LEN);
404         break;
405     }
406     params += parameter + " ";
407     }
408 strncpy(reinterpret_cast<char*>(packetTail.params), params.c_str(), RS_PARAMS_LEN);
409 packetTail.params[RS_PARAMS_LEN - 1] = 0;
410
411 assert(sizeof(packetHead) + sizeof(packetTail) <= bufSize && "Insufficient buffer space");
412
413 Encrypt(buf + sizeof(packetHead), reinterpret_cast<char *>(&packetTail), sizeof(packetTail) / 8);
414
415 return false;
416 }
417 //-----------------------------------------------------------------------------
418 bool REMOTE_SCRIPT::Send(RS::USER & rsu, bool forceDisconnect) const
419 {
420 char buffer[RS_MAX_PACKET_LEN];
421
422 memset(buffer, 0, sizeof(buffer));
423
424 if (PreparePacket(buffer, sizeof(buffer), rsu, forceDisconnect))
425     {
426     printfd(__FILE__, "REMOTE_SCRIPT::Send() - Invalid packet length!\n");
427     return true;
428     }
429
430 for (const auto& ip : rsu.routers)
431 {
432     struct sockaddr_in sendAddr;
433
434     sendAddr.sin_family = AF_INET;
435     sendAddr.sin_port = htons(rsSettings.GetPort());
436     sendAddr.sin_addr.s_addr = ip;
437
438     return sendto(sock, buffer, sizeof(buffer), 0, reinterpret_cast<struct sockaddr*>(&sendAddr), sizeof(sendAddr));
439 }
440
441 return false;
442 }
443 //-----------------------------------------------------------------------------
444 bool REMOTE_SCRIPT::SendDirect(RS::USER & rsu, uint32_t routerIP, bool forceDisconnect) const
445 {
446 char buffer[RS_MAX_PACKET_LEN];
447
448 if (PreparePacket(buffer, sizeof(buffer), rsu, forceDisconnect))
449     {
450     printfd(__FILE__, "REMOTE_SCRIPT::SendDirect() - Invalid packet length!\n");
451     return true;
452     }
453
454 struct sockaddr_in sendAddr;
455
456 sendAddr.sin_family = AF_INET;
457 sendAddr.sin_port = htons(rsSettings.GetPort());
458 sendAddr.sin_addr.s_addr = routerIP;
459
460 ssize_t res = sendto(sock, buffer, sizeof(buffer), 0, reinterpret_cast<struct sockaddr *>(&sendAddr), sizeof(sendAddr));
461
462 if (res < 0)
463     logger("sendto error: %s", strerror(errno));
464
465 return (res != sizeof(buffer));
466 }
467 //-----------------------------------------------------------------------------
468 bool REMOTE_SCRIPT::GetUsers()
469 {
470 UserPtr u;
471
472 int h = users->OpenSearch();
473 assert(h && "USERS::OpenSearch is always correct");
474
475 while (!users->SearchNext(h, &u))
476     {
477     SetUserNotifiers(u);
478     }
479
480 users->CloseSearch(h);
481 return false;
482 }
483 //-----------------------------------------------------------------------------
484 std::vector<uint32_t> REMOTE_SCRIPT::IP2Routers(uint32_t ip)
485 {
486 std::lock_guard lock(m_mutex);
487 for (size_t i = 0; i < netRouters.size(); ++i)
488     {
489     if ((ip & netRouters[i].subnetMask) == (netRouters[i].subnetIP & netRouters[i].subnetMask))
490         {
491         return netRouters[i].routers;
492         }
493     }
494 return std::vector<uint32_t>();
495 }
496 //-----------------------------------------------------------------------------
497 void REMOTE_SCRIPT::SetUserNotifiers(UserPtr u)
498 {
499 ipNotifierList.push_front(RS::IP_NOTIFIER(*this, u));
500 connNotifierList.push_front(RS::CONNECTED_NOTIFIER(*this, u));
501 }
502 //-----------------------------------------------------------------------------
503 void REMOTE_SCRIPT::UnSetUserNotifiers(UserPtr u)
504 {
505 ipNotifierList.erase(std::remove_if(ipNotifierList.begin(),
506                                     ipNotifierList.end(),
507                                     USER_IS<IP_NOTIFIER>(u)),
508                      ipNotifierList.end());
509 connNotifierList.erase(std::remove_if(connNotifierList.begin(),
510                                       connNotifierList.end(),
511                                       USER_IS<CONNECTED_NOTIFIER>(u)),
512                        connNotifierList.end());
513
514 }
515 //-----------------------------------------------------------------------------
516 void REMOTE_SCRIPT::AddRSU(UserPtr user)
517 {
518 RS::USER rsu(IP2Routers(user->GetCurrIP()), user);
519 Send(rsu);
520
521 std::lock_guard lock(m_mutex);
522 authorizedUsers.insert(std::make_pair(user->GetCurrIP(), rsu));
523 }
524 //-----------------------------------------------------------------------------
525 void REMOTE_SCRIPT::DelRSU(UserPtr user)
526 {
527 std::lock_guard lock(m_mutex);
528 std::map<uint32_t, RS::USER>::iterator it(authorizedUsers.begin());
529 while (it != authorizedUsers.end())
530     {
531     if (it->second.user == user)
532         {
533         Send(it->second, true);
534         authorizedUsers.erase(it);
535         return;
536         }
537     ++it;
538     }
539 /*const std::map<uint32_t, RS::USER>::iterator it(
540         authorizedUsers.find(user->GetCurrIP())
541         );
542 if (it != authorizedUsers.end())
543     {
544     Send(it->second, true);
545     authorizedUsers.erase(it);
546     }*/
547 }
548 //-----------------------------------------------------------------------------
549 void RS::IP_NOTIFIER::Notify(const uint32_t & /*oldValue*/, const uint32_t & newValue)
550 {
551 if (newValue)
552     rs.AddRSU(user);
553 else
554     rs.DelRSU(user);
555 }
556 //-----------------------------------------------------------------------------
557 void RS::CONNECTED_NOTIFIER::Notify(const bool & /*oldValue*/, const bool & newValue)
558 {
559 if (newValue)
560     rs.AddRSU(user);
561 else
562     rs.DelRSU(user);
563 }
564 //-----------------------------------------------------------------------------
565 void REMOTE_SCRIPT::InitEncrypt(const std::string & password) const
566 {
567 unsigned char keyL[PASSWD_LEN];  // Пароль для шифровки
568 memset(keyL, 0, PASSWD_LEN);
569 strncpy(reinterpret_cast<char*>(keyL), password.c_str(), PASSWD_LEN);
570 Blowfish_Init(&ctx, keyL, PASSWD_LEN);
571 }
572 //-----------------------------------------------------------------------------
573 void REMOTE_SCRIPT::Encrypt(void * dst, const void * src, size_t len8) const
574 {
575 if (dst != src)
576     memcpy(dst, src, len8 * 8);
577 for (size_t i = 0; i < len8; ++i)
578     Blowfish_Encrypt(&ctx, static_cast<uint32_t *>(dst) + i * 2, static_cast<uint32_t *>(dst) + i * 2 + 1);
579 }
580 //-----------------------------------------------------------------------------