]> git.stg.codes - stg.git/blob - projects/stargazer/plugins/other/radius/radius.h
Code deduplication
[stg.git] / projects / stargazer / plugins / other / radius / radius.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 : Maxim Mamontov <faust@stargazer.dp.ua>
19  */
20
21 /*
22  *  Radius data access plugin for Stargazer
23  *
24  *  $Revision: 1.10 $
25  *  $Date: 2009/12/13 14:17:13 $
26  *
27  */
28
29 #ifndef RADIUS_H
30 #define RADIUS_H
31
32 #include <pthread.h>
33
34 #include <cstring>
35 #include <cstdlib>
36 #include <string>
37 #include <list>
38 #include <map>
39 #include <vector>
40
41 #include "stg/os_int.h"
42 #include "stg/auth.h"
43 #include "stg/module_settings.h"
44 #include "stg/notifer.h"
45 #include "stg/user_ips.h"
46 #include "stg/user.h"
47 #include "stg/users.h"
48 #include "stg/blowfish.h"
49 #include "stg/rad_packets.h"
50
51 extern "C" PLUGIN * GetPlugin();
52
53 #define RAD_DEBUG (1)
54
55 class RADIUS;
56 //-----------------------------------------------------------------------------
57 class RAD_SETTINGS {
58 public:
59     RAD_SETTINGS() : port(0) {}
60     virtual ~RAD_SETTINGS() {}
61     const string & GetStrError() const { return errorStr; }
62     int ParseSettings(const MODULE_SETTINGS & s);
63     uint16_t GetPort() const { return port; }
64     const std::string & GetPassword() const { return password; }
65     const std::list<string> & GetAuthServices() const { return authServices; }
66     const std::list<string> & GetAcctServices() const { return acctServices; }
67
68 private:
69     int ParseServices(const std::vector<std::string> & str, std::list<std::string> * lst);
70
71     uint16_t port;
72     std::string errorStr;
73     std::string password;
74     std::list<std::string> authServices;
75     std::list<std::string> acctServices;
76 };
77 //-----------------------------------------------------------------------------
78 struct RAD_SESSION {
79     std::string userName;
80     std::string serviceType;
81 };
82 //-----------------------------------------------------------------------------
83 class RADIUS :public AUTH {
84 public:
85                         RADIUS();
86     virtual             ~RADIUS() {};
87
88     void                SetUsers(USERS * u);
89     void                SetTariffs(TARIFFS *) {}
90     void                SetAdmins(ADMINS *) {}
91     void                SetTraffcounter(TRAFFCOUNTER *) {}
92     void                SetStore(STORE * );
93     void                SetStgSettings(const SETTINGS * s);
94     void                SetSettings(const MODULE_SETTINGS & s);
95     int                 ParseSettings();
96
97     int                 Start();
98     int                 Stop();
99     int                 Reload() { return 0; }
100     bool                IsRunning();
101
102     const std::string & GetStrError() const { return errorStr; }
103     const std::string   GetVersion() const;
104     uint16_t            GetStartPosition() const;
105     uint16_t            GetStopPosition() const;
106
107     int SendMessage(const STG_MSG &, uint32_t) const { return 0; }
108
109 private:
110     static void *       Run(void *);
111     int                 PrepareNet();
112     int                 FinalizeNet();
113
114     int                 Send(const RAD_PACKET & packet, struct sockaddr_in * outerAddr);
115     int                 RecvData(RAD_PACKET * packet, struct sockaddr_in * outerAddr);
116     int                 ProcessData(RAD_PACKET * packet);
117
118     int                 ProcessAutzPacket(RAD_PACKET * packet);
119     int                 ProcessAuthPacket(RAD_PACKET * packet);
120     int                 ProcessPostAuthPacket(RAD_PACKET * packet);
121     int                 ProcessAcctStartPacket(RAD_PACKET * packet);
122     int                 ProcessAcctStopPacket(RAD_PACKET * packet);
123     int                 ProcessAcctUpdatePacket(RAD_PACKET * packet);
124     int                 ProcessAcctOtherPacket(RAD_PACKET * packet);
125
126     bool                FindUser(USER_PTR * ui, const std::string & login) const;
127     bool                CanAuthService(const std::string & svc) const;
128     bool                CanAcctService(const std::string & svc) const;
129     bool                IsAllowedService(const std::string & svc) const;
130
131     bool                WaitPackets(int sd) const;
132
133     void                PrintServices(const std::list<std::string> & svcs);
134
135     struct Printer : public unary_function<std::string, void>
136     { 
137         void operator()(const std::string & line)
138         { 
139             printfd("radius.cpp", "'%s'\n", line.c_str()); 
140         }; 
141     };
142     struct SPrinter : public unary_function<std::pair<std::string, RAD_SESSION>, void>
143     { 
144         void operator()(const std::pair<std::string, RAD_SESSION> & it)
145         { 
146             printfd("radius.cpp", "%s - ('%s', '%s')\n", it.first.c_str(), it.second.userName.c_str(), it.second.serviceType.c_str()); 
147         }; 
148     };
149
150     BLOWFISH_CTX        ctx;
151
152     mutable std::string errorStr;
153     RAD_SETTINGS        radSettings;
154     MODULE_SETTINGS     settings;
155     std::list<std::string> authServices;
156     std::list<std::string> acctServices;
157     std::map<std::string, RAD_SESSION> sessions;
158
159     bool                nonstop;
160     bool                isRunning;
161
162     USERS *             users;
163     const SETTINGS *    stgSettings;
164     const STORE *       store;
165
166     pthread_t           thread;
167     pthread_mutex_t     mutex;
168
169     int                 sock;
170
171     RAD_PACKET          packet;
172
173 };
174 //-----------------------------------------------------------------------------
175
176 #endif