]> git.stg.codes - stg.git/blob - projects/stargazer/plugins/other/rscript/rscript.h
bc6aa92f772f4375453c2f669100a318572f1bc7
[stg.git] / projects / stargazer / plugins / other / rscript / rscript.h
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 #ifndef RSCRIPT_H
23 #define RSCRIPT_H
24
25 #include <pthread.h>
26
27 #include <string>
28 #include <list>
29 #include <map>
30 #include <functional>
31 #include <utility>
32
33 #include "stg/plugin.h"
34 #include "stg/module_settings.h"
35 #include "stg/os_int.h"
36 #include "stg/notifer.h"
37 #include "stg/user.h"
38 #include "stg/blowfish.h"
39 #include "stg/rs_packets.h"
40 #include "stg/logger.h"
41
42 #include "nrmap_parser.h"
43
44 extern "C" PLUGIN * GetPlugin();
45
46 #define RS_DEBUG (1)
47
48 #define MAX_SHORT_PCKT  (3)
49
50 class SETTINGS;
51 class USERS;
52
53 namespace RS
54 {
55
56 class REMOTE_SCRIPT;
57 class UpdateRouter;
58 class DisconnectUser;
59
60 //-----------------------------------------------------------------------------
61 class ADD_USER_NONIFIER: public NOTIFIER_BASE<USER_PTR> {
62 public:
63     ADD_USER_NONIFIER(REMOTE_SCRIPT & r)
64         : NOTIFIER_BASE<USER_PTR>(), rs(r) {}
65     virtual ~ADD_USER_NONIFIER() {}
66     void Notify(const USER_PTR & user);
67
68 private:
69     ADD_USER_NONIFIER(const ADD_USER_NONIFIER & rhs);
70     ADD_USER_NONIFIER & operator=(const ADD_USER_NONIFIER);
71
72     REMOTE_SCRIPT & rs;
73 };
74 //-----------------------------------------------------------------------------
75 class DEL_USER_NONIFIER: public NOTIFIER_BASE<USER_PTR> {
76 public:
77     DEL_USER_NONIFIER(REMOTE_SCRIPT & r)
78         : NOTIFIER_BASE<USER_PTR>(), rs(r) {}
79     virtual ~DEL_USER_NONIFIER() {}
80     void Notify(const USER_PTR & user);
81
82 private:
83     DEL_USER_NONIFIER(const DEL_USER_NONIFIER & rhs);
84     DEL_USER_NONIFIER & operator=(const DEL_USER_NONIFIER);
85
86     REMOTE_SCRIPT & rs;
87 };
88 //-----------------------------------------------------------------------------
89 class IP_NOTIFIER: public PROPERTY_NOTIFIER_BASE<uint32_t> {
90 public:
91     IP_NOTIFIER(REMOTE_SCRIPT & r, USER_PTR u)
92         : PROPERTY_NOTIFIER_BASE<uint32_t>(), user(u), rs(r) { user->AddCurrIPAfterNotifier(this); }
93     IP_NOTIFIER(const IP_NOTIFIER & rhs)
94         : PROPERTY_NOTIFIER_BASE<uint32_t>(), user(rhs.user), rs(rhs.rs) { user->AddCurrIPAfterNotifier(this); }
95     ~IP_NOTIFIER() { user->DelCurrIPAfterNotifier(this); }
96
97     IP_NOTIFIER & operator=(const IP_NOTIFIER & rhs)
98     {
99         user->DelCurrIPAfterNotifier(this);
100         user = rhs.user;
101         user->AddCurrIPAfterNotifier(this);
102         return *this;
103     }
104
105     void Notify(const uint32_t & oldValue, const uint32_t & newValue);
106     USER_PTR GetUser() const { return user; }
107
108 private:
109
110     USER_PTR user;
111     REMOTE_SCRIPT & rs;
112 };
113 //-----------------------------------------------------------------------------
114 class CONNECTED_NOTIFIER: public PROPERTY_NOTIFIER_BASE<bool> {
115 public:
116     CONNECTED_NOTIFIER(REMOTE_SCRIPT & r, USER_PTR u)
117         : PROPERTY_NOTIFIER_BASE<bool>(), user(u), rs(r) { user->AddConnectedAfterNotifier(this); }
118     CONNECTED_NOTIFIER(const CONNECTED_NOTIFIER & rhs)
119         : PROPERTY_NOTIFIER_BASE<bool>(), user(rhs.user), rs(rhs.rs) { user->AddConnectedAfterNotifier(this); }
120     ~CONNECTED_NOTIFIER() { user->DelConnectedAfterNotifier(this); }
121
122     CONNECTED_NOTIFIER & operator=(const CONNECTED_NOTIFIER & rhs)
123     {
124         user->DelConnectedAfterNotifier(this);
125         user = rhs.user;
126         user->AddConnectedAfterNotifier(this);
127         return *this;
128     }
129
130     void Notify(const bool & oldValue, const bool & newValue);
131     USER_PTR GetUser() const { return user; }
132
133 private:
134
135     USER_PTR user;
136     REMOTE_SCRIPT & rs;
137 };
138 //-----------------------------------------------------------------------------
139 struct USER {
140     USER(const std::vector<uint32_t> & r, USER_PTR it)
141         : user(it),
142           routers(r),
143           ip(user->GetCurrIP())
144     {}
145
146     time_t lastSentTime;
147     USER_PTR user;
148     std::vector<uint32_t> routers;
149     int shortPacketsCount;
150     uint32_t ip;
151 };
152 //-----------------------------------------------------------------------------
153 class SETTINGS {
154 public:
155                         SETTINGS();
156     virtual             ~SETTINGS() {}
157     const std::string & GetStrError() const { return errorStr; }
158     int                 ParseSettings(const MODULE_SETTINGS & s);
159     int                 GetSendPeriod() const { return sendPeriod; }
160     uint16_t            GetPort() const { return port; }
161     const std::vector<NET_ROUTER> & GetSubnetsMap() const { return netRouters; }
162     const std::vector<std::string> & GetUserParams() const { return userParams; }
163     const std::string & GetPassword() const { return password; }
164     const std::string & GetMapFileName() const { return subnetFile; }
165
166 private:
167     int                 sendPeriod;
168     uint16_t            port;
169     std::string         errorStr;
170     std::vector<NET_ROUTER> netRouters;
171     std::vector<std::string> userParams;
172     std::string         password;
173     std::string         subnetFile;
174 };
175 //-----------------------------------------------------------------------------
176 class REMOTE_SCRIPT : public PLUGIN {
177 public:
178                         REMOTE_SCRIPT();
179     virtual             ~REMOTE_SCRIPT();
180
181     void                SetUsers(USERS * u) { users = u; }
182     void                SetSettings(const MODULE_SETTINGS & s) { settings = s; }
183     int                 ParseSettings();
184
185     int                 Start();
186     int                 Stop();
187     int                 Reload();
188     bool                IsRunning() { return isRunning; }
189
190     const std::string & GetStrError() const { return errorStr; }
191     std::string         GetVersion() const { return "Remote script v 0.3"; }
192     uint16_t            GetStartPosition() const { return 10; }
193     uint16_t            GetStopPosition() const { return 10; }
194
195     void                DelUser(USER_PTR u) { UnSetUserNotifiers(u); }
196     void                AddUser(USER_PTR u) { SetUserNotifiers(u); }
197
198     void                AddRSU(USER_PTR user);
199     void                DelRSU(USER_PTR user);
200
201 private:
202     REMOTE_SCRIPT(const REMOTE_SCRIPT & rhs);
203     REMOTE_SCRIPT & operator=(const REMOTE_SCRIPT & rhs);
204
205     static void *       Run(void *);
206     bool                PrepareNet();
207     bool                FinalizeNet();
208
209     bool                Send(USER & rsu, bool forceDisconnect = false) const;
210     bool                SendDirect(USER & rsu, uint32_t routerIP, bool forceDisconnect = false) const;
211     bool                PreparePacket(char * buf, size_t bufSize, USER &rsu, bool forceDisconnect = false) const;
212     void                PeriodicSend();
213
214     std::vector<uint32_t> IP2Routers(uint32_t ip);
215     bool                GetUsers();
216
217     void                SetUserNotifiers(USER_PTR u);
218     void                UnSetUserNotifiers(USER_PTR u);
219
220     void                InitEncrypt(BLOWFISH_CTX * ctx, const std::string & password) const;
221     void                Encrypt(BLOWFISH_CTX * ctx, void * dst, const void * src, size_t len8) const;
222
223     mutable BLOWFISH_CTX ctx;
224
225     std::list<IP_NOTIFIER> ipNotifierList;
226     std::list<CONNECTED_NOTIFIER> connNotifierList;
227     std::map<uint32_t, USER> authorizedUsers;
228
229     mutable std::string errorStr;
230     SETTINGS         rsSettings;
231     MODULE_SETTINGS     settings;
232     int                 sendPeriod;
233     int                 halfPeriod;
234
235     bool                nonstop;
236     bool                isRunning;
237
238     USERS *             users;
239
240     std::vector<NET_ROUTER> netRouters;
241
242     pthread_t           thread;
243     pthread_mutex_t     mutex;
244
245     int                 sock;
246
247     ADD_USER_NONIFIER onAddUserNotifier;
248     DEL_USER_NONIFIER onDelUserNotifier;
249
250     PLUGIN_LOGGER       logger;
251
252     friend class RS::UpdateRouter;
253     friend class RS::DisconnectUser;
254     friend class RS::CONNECTED_NOTIFIER;
255 };
256 //-----------------------------------------------------------------------------
257 class DisconnectUser : public std::unary_function<std::pair<const uint32_t, USER> &, void> {
258     public:
259         DisconnectUser(REMOTE_SCRIPT & rs) : rscript(rs) {}
260         void operator()(std::pair<const uint32_t, USER> & p)
261         {
262             rscript.Send(p.second, true);
263         }
264     private:
265         REMOTE_SCRIPT & rscript;
266 };
267 //-----------------------------------------------------------------------------
268 inline void ADD_USER_NONIFIER::Notify(const USER_PTR & user)
269 {
270 rs.AddUser(user);
271 }
272 //-----------------------------------------------------------------------------
273 inline void DEL_USER_NONIFIER::Notify(const USER_PTR & user)
274 {
275 rs.DelUser(user);
276 }
277 //-----------------------------------------------------------------------------
278
279 } // namespace RS
280
281 #endif