mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 03:54:59 +00:00
58 lines
1.6 KiB
C++
58 lines
1.6 KiB
C++
/*
|
|
* Copyright (c) 2021, Sergey Bugaev <bugaevc@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include "ClientConnection.h"
|
|
#include "DNSPacket.h"
|
|
#include "LookupServer.h"
|
|
#include <AK/IPv4Address.h>
|
|
|
|
namespace LookupServer {
|
|
|
|
static HashMap<int, RefPtr<ClientConnection>> s_connections;
|
|
|
|
ClientConnection::ClientConnection(AK::NonnullRefPtr<Core::LocalSocket> socket, int client_id)
|
|
: IPC::ClientConnection<LookupClientEndpoint, LookupServerEndpoint>(*this, move(socket), client_id)
|
|
{
|
|
s_connections.set(client_id, *this);
|
|
}
|
|
|
|
ClientConnection::~ClientConnection()
|
|
{
|
|
}
|
|
|
|
void ClientConnection::die()
|
|
{
|
|
s_connections.remove(client_id());
|
|
}
|
|
|
|
Messages::LookupServer::LookupNameResponse ClientConnection::lookup_name(String const& name)
|
|
{
|
|
auto answers = LookupServer::the().lookup(name, DNSRecordType::A);
|
|
if (answers.is_empty())
|
|
return { 1, Vector<String>() };
|
|
Vector<String> addresses;
|
|
for (auto& answer : answers) {
|
|
addresses.append(answer.record_data());
|
|
}
|
|
return { 0, move(addresses) };
|
|
}
|
|
|
|
Messages::LookupServer::LookupAddressResponse ClientConnection::lookup_address(String const& address)
|
|
{
|
|
if (address.length() != 4)
|
|
return { 1, String() };
|
|
IPv4Address ip_address { (const u8*)address.characters() };
|
|
auto name = String::formatted("{}.{}.{}.{}.in-addr.arpa",
|
|
ip_address[3],
|
|
ip_address[2],
|
|
ip_address[1],
|
|
ip_address[0]);
|
|
auto answers = LookupServer::the().lookup(name, DNSRecordType::PTR);
|
|
if (answers.is_empty())
|
|
return { 1, String() };
|
|
return { 0, answers[0].record_data() };
|
|
}
|
|
}
|