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 : Maxim Mamontov <faust@stargazer.dp.ua>
22 * Radius data access plugin for Stargazer
25 * $Date: 2009/12/13 14:17:13 $
43 #include "module_settings.h"
49 #include "rad_packets.h"
51 extern "C" PLUGIN * GetPlugin();
56 //-----------------------------------------------------------------------------
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; }
69 int ParseIntInRange(const std::string & str, int min, int max, int * val);
70 int ParseServices(const std::vector<std::string> & str, std::list<std::string> * lst);
75 std::list<std::string> authServices;
76 std::list<std::string> acctServices;
78 //-----------------------------------------------------------------------------
81 std::string serviceType;
83 //-----------------------------------------------------------------------------
84 class RADIUS :public AUTH {
89 void SetUsers(USERS * u);
90 void SetTariffs(TARIFFS *) {}
91 void SetAdmins(ADMINS *) {}
92 void SetTraffcounter(TRAFFCOUNTER *) {}
93 void SetStore(STORE * );
94 void SetStgSettings(const SETTINGS * s);
95 void SetSettings(const MODULE_SETTINGS & s);
100 int Reload() { return 0; }
103 const std::string & GetStrError() const { return errorStr; }
104 const std::string GetVersion() const;
105 uint16_t GetStartPosition() const;
106 uint16_t GetStopPosition() const;
108 int SendMessage(const STG_MSG &, uint32_t) const { return 0; }
111 static void * Run(void *);
115 int Send(const RAD_PACKET & packet, struct sockaddr_in * outerAddr);
116 int RecvData(RAD_PACKET * packet, struct sockaddr_in * outerAddr);
117 int ProcessData(RAD_PACKET * packet);
119 int ProcessAutzPacket(RAD_PACKET * packet);
120 int ProcessAuthPacket(RAD_PACKET * packet);
121 int ProcessPostAuthPacket(RAD_PACKET * packet);
122 int ProcessAcctStartPacket(RAD_PACKET * packet);
123 int ProcessAcctStopPacket(RAD_PACKET * packet);
124 int ProcessAcctUpdatePacket(RAD_PACKET * packet);
125 int ProcessAcctOtherPacket(RAD_PACKET * packet);
127 bool FindUser(USER_PTR * ui, const std::string & login) const;
128 bool CanAuthService(const std::string & svc) const;
129 bool CanAcctService(const std::string & svc) const;
130 bool IsAllowedService(const std::string & svc) const;
132 bool WaitPackets(int sd) const;
134 void PrintServices(const std::list<std::string> & svcs);
136 struct Printer : public unary_function<std::string, void>
138 void operator()(const std::string & line)
140 printfd("radius.cpp", "'%s'\n", line.c_str());
143 struct SPrinter : public unary_function<std::pair<std::string, RAD_SESSION>, void>
145 void operator()(const std::pair<std::string, RAD_SESSION> & it)
147 printfd("radius.cpp", "%s - ('%s', '%s')\n", it.first.c_str(), it.second.userName.c_str(), it.second.serviceType.c_str());
153 mutable std::string errorStr;
154 RAD_SETTINGS radSettings;
155 MODULE_SETTINGS settings;
156 std::list<std::string> authServices;
157 std::list<std::string> acctServices;
158 std::map<std::string, RAD_SESSION> sessions;
164 const SETTINGS * stgSettings;
168 pthread_mutex_t mutex;
175 //-----------------------------------------------------------------------------