]> git.stg.codes - stg.git/blob - projects/stargazer/plugins/other/radius/server.cpp
Merge remote-tracking branch 'github/master'
[stg.git] / projects / stargazer / plugins / other / radius / server.cpp
1 #include "server.h"
2 #include "radproto/packet_codes.h"
3 #include <functional>
4 #include <iostream>
5
6 using STG::Server;
7 using boost::system::error_code;
8
9 Server::Server(boost::asio::io_service& io_service, const std::string& secret, uint16_t port, const std::string& filePath)
10     : m_radius(io_service, secret, port),
11       m_dictionaries(filePath)
12 {
13     startReceive();
14 }
15
16 void Server::startReceive()
17 {
18     m_radius.asyncReceive([this](const auto& error, const auto& packet, const boost::asio::ip::udp::endpoint& source){ handleReceive(error, packet, source); });
19 }
20
21 RadProto::Packet Server::makeResponse(const RadProto::Packet& request)
22 {
23     std::vector<RadProto::Attribute*> attributes;
24     attributes.push_back(new RadProto::String(m_dictionaries.attributeCode("User-Name"), "test"));
25     attributes.push_back(new RadProto::Integer(m_dictionaries.attributeCode("NAS-Port"), 20));
26     std::array<uint8_t, 4> address {127, 104, 22, 17};
27     attributes.push_back(new RadProto::IpAddress(m_dictionaries.attributeCode("NAS-IP-Address"), address));
28     std::vector<uint8_t> bytes {'1', '2', '3', 'a', 'b', 'c'};
29     attributes.push_back(new RadProto::Bytes(m_dictionaries.attributeCode("Callback-Number"), bytes));
30     std::vector<uint8_t> chapPassword {'1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f', 'g' };
31     attributes.push_back(new RadProto::ChapPassword(m_dictionaries.attributeCode("CHAP-Password"), 1, chapPassword));
32
33     std::vector<RadProto::VendorSpecific> vendorSpecific;
34     std::vector<uint8_t> vendorValue {0, 0, 0, 3};
35     vendorSpecific.push_back(RadProto::VendorSpecific(m_dictionaries.vendorCode("Dlink"), m_dictionaries.vendorAttributeCode("Dlink", "Dlink-User-Level"), vendorValue));
36
37     if (request.type() == RadProto::ACCESS_REQUEST)
38         return RadProto::Packet(RadProto::ACCESS_ACCEPT, request.id(), request.auth(), attributes, vendorSpecific);
39
40     return RadProto::Packet(RadProto::ACCESS_REJECT, request.id(), request.auth(), attributes, vendorSpecific);
41 }
42
43 void Server::handleSend(const error_code& ec)
44 {
45     if (ec)
46         std::cout << "Error asyncSend: " << ec.message() << "\n";
47
48     startReceive();
49 }
50
51 void Server::handleReceive(const error_code& error, const std::optional<RadProto::Packet>& packet, const boost::asio::ip::udp::endpoint& source)
52 {
53     if (error)
54     {
55         std::cout << "Error asyncReceive: " << error.message() << "\n";
56         return;
57     }
58
59     if (packet == std::nullopt)
60     {
61         std::cout << "Error asyncReceive: the request packet is missing\n";
62         return;
63     }
64     else
65     {
66         m_radius.asyncSend(makeResponse(*packet), source, [this](const auto& ec){ handleSend(ec); });
67     }
68 }