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.
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.
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
18 * Author : Boris Mikhailenko <stg34@stargazer.dp.ua>
23 $Date: 2010/04/22 12:57:46 $
28 #ifndef TRAFFCOUNTER_H
29 #define TRAFFCOUNTER_H
38 #include "stg_logger.h"
39 #include "raw_ip_packet.h"
42 #include "noncopyable.h"
43 #include "eventloop.h"
49 //-----------------------------------------------------------------------------
53 uint32_t mask; // Network mask
54 uint16_t port1; // Min port
55 uint16_t port2; // Max port
56 uint8_t proto; // Protocol
57 uint32_t dir; // Direction
59 //-----------------------------------------------------------------------------
60 struct PACKET_EXTRA_DATA
75 PACKET_EXTRA_DATA(const PACKET_EXTRA_DATA & pp)
76 : flushTime(pp.flushTime),
77 updateTime(pp.updateTime),
79 userUPresent(pp.userUPresent),
81 userDPresent(pp.userDPresent),
88 time_t flushTime; // Last flush time
89 time_t updateTime; // Last update time
90 USER_PTR userU; // Uploader
91 bool userUPresent; // Uploader is registered user
92 USER_PTR userD; // Downloader
93 bool userDPresent; // Downloader is registered user
94 int dirU; // Upload direction
95 int dirD; // Download direction
96 uint32_t lenU; // Upload length
97 uint32_t lenD; // Download length
99 //-----------------------------------------------------------------------------
101 //-----------------------------------------------------------------------------
102 class TRF_IP_BEFORE: public PROPERTY_NOTIFIER_BASE<uint32_t>
105 TRF_IP_BEFORE(TRAFFCOUNTER & t, USER_PTR u)
106 : PROPERTY_NOTIFIER_BASE<uint32_t>(),
110 void Notify(const uint32_t & oldValue, const uint32_t & newValue);
111 void SetUser(USER_PTR u) { user = u; }
112 USER_PTR GetUser() const { return user; }
115 TRAFFCOUNTER & traffCnt;
118 //-----------------------------------------------------------------------------
119 class TRF_IP_AFTER: public PROPERTY_NOTIFIER_BASE<uint32_t>
122 TRF_IP_AFTER(TRAFFCOUNTER & t, USER_PTR u)
123 : PROPERTY_NOTIFIER_BASE<uint32_t>(),
127 void Notify(const uint32_t & oldValue, const uint32_t & newValue);
128 void SetUser(USER_PTR u) { user = u; }
129 USER_PTR GetUser() const { return user; }
131 TRAFFCOUNTER & traffCnt;
134 //-----------------------------------------------------------------------------
135 class ADD_USER_NONIFIER: public NOTIFIER_BASE<USER_PTR>
138 ADD_USER_NONIFIER(TRAFFCOUNTER & t) :
139 NOTIFIER_BASE<USER_PTR>(),
141 virtual ~ADD_USER_NONIFIER(){};
142 void Notify(const USER_PTR & user);
144 TRAFFCOUNTER & traffCnt;
146 //-----------------------------------------------------------------------------
147 class DEL_USER_NONIFIER: public NOTIFIER_BASE<USER_PTR>
150 DEL_USER_NONIFIER(TRAFFCOUNTER & t) :
151 NOTIFIER_BASE<USER_PTR>(),
153 virtual ~DEL_USER_NONIFIER(){};
154 void Notify(const USER_PTR & user);
156 TRAFFCOUNTER & traffCnt;
158 //-----------------------------------------------------------------------------
159 class TRAFFCOUNTER : private NONCOPYABLE
161 friend class ADD_USER_NONIFIER;
162 friend class DEL_USER_NONIFIER;
163 friend class TRF_IP_BEFORE;
164 friend class TRF_IP_AFTER;
166 TRAFFCOUNTER(USERS * users, const TARIFFS * tariffs, const std::string & rulesFileName);
169 void SetRulesFile(const std::string & rulesFileName);
175 void Process(const RAW_PACKET & rawPacket);
176 void SetMonitorDir(const std::string & monitorDir);
179 bool ParseAddress(const char * ta, RULE * rule) const;
180 uint32_t CalcMask(uint32_t msk) const;
182 void PrintRule(RULE rule) const;
183 bool ReadRules(bool test = false);
185 static void * Run(void * data);
187 void DeterminateDir(const RAW_PACKET & packet,
188 int * dirU, // Direction for upload
189 int * dirD) const; // Direction for download
191 void FlushAndRemove();
193 void AddUser(USER_PTR user);
194 void DelUser(uint32_t uip);
195 void SetUserNotifiers(USER_PTR user);
196 void UnSetUserNotifiers(USER_PTR user);
198 std::list<RULE> rules;
199 typedef std::list<RULE>::iterator rule_iter;
201 std::map<RAW_PACKET, PACKET_EXTRA_DATA> packets; // Packets tree
202 typedef std::map<RAW_PACKET, PACKET_EXTRA_DATA>::iterator pp_iter;
204 std::multimap<uint32_t, pp_iter> ip2packets; // IP-to-Packet index
206 typedef std::multimap<uint32_t, pp_iter>::iterator ip2p_iter;
207 typedef std::multimap<uint32_t, pp_iter>::const_iterator ip2p_citer;
209 std::string dirName[DIR_NUM + 1];
211 STG_LOGGER & WriteServLog;
212 std::string rulesFileName;
214 std::string monitorDir;
221 pthread_mutex_t mutex;
224 std::list<TRF_IP_BEFORE> ipBeforeNotifiers;
225 std::list<TRF_IP_AFTER> ipAfterNotifiers;
227 ADD_USER_NONIFIER addUserNotifier;
228 DEL_USER_NONIFIER delUserNotifier;
230 //-----------------------------------------------------------------------------
232 void TRF_IP_BEFORE::Notify(const uint32_t & oldValue, const uint32_t &)
234 // User changes his address. Remove old IP
238 EVENT_LOOP_SINGLETON::GetInstance().Enqueue(traffCnt, &TRAFFCOUNTER::DelUser, oldValue);
240 //-----------------------------------------------------------------------------
242 void TRF_IP_AFTER::Notify(const uint32_t &, const uint32_t & newValue)
244 // User changes his address. Add new IP
248 EVENT_LOOP_SINGLETON::GetInstance().Enqueue(traffCnt, &TRAFFCOUNTER::AddUser, user);
250 //-----------------------------------------------------------------------------
252 void ADD_USER_NONIFIER::Notify(const USER_PTR & user)
254 EVENT_LOOP_SINGLETON::GetInstance().Enqueue(traffCnt, &TRAFFCOUNTER::SetUserNotifiers, user);
256 //-----------------------------------------------------------------------------
258 void DEL_USER_NONIFIER::Notify(const USER_PTR & user)
260 EVENT_LOOP_SINGLETON::GetInstance().Enqueue(traffCnt, &TRAFFCOUNTER::UnSetUserNotifiers, user);
261 EVENT_LOOP_SINGLETON::GetInstance().Enqueue(traffCnt, &TRAFFCOUNTER::DelUser, user->GetCurrIP());
263 //-----------------------------------------------------------------------------
264 #endif //TRAFFCOUNTER_H