
This was done with CLion's automatic rename feature and with: find . -name ClientConnection.h | rename 's/ClientConnection\.h/ConnectionFromClient.h/' find . -name ClientConnection.cpp | rename 's/ClientConnection\.cpp/ConnectionFromClient.cpp/'
67 lines
1.9 KiB
C++
67 lines
1.9 KiB
C++
/*
|
|
* Copyright (c) 2021, Sergey Bugaev <bugaevc@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include "ConnectionFromClient.h"
|
|
#include "DNSPacket.h"
|
|
#include "LookupServer.h"
|
|
#include <AK/IPv4Address.h>
|
|
|
|
namespace LookupServer {
|
|
|
|
static HashMap<int, RefPtr<ConnectionFromClient>> s_connections;
|
|
|
|
ConnectionFromClient::ConnectionFromClient(NonnullOwnPtr<Core::Stream::LocalSocket> socket, int client_id)
|
|
: IPC::ConnectionFromClient<LookupClientEndpoint, LookupServerEndpoint>(*this, move(socket), client_id)
|
|
{
|
|
s_connections.set(client_id, *this);
|
|
}
|
|
|
|
ConnectionFromClient::~ConnectionFromClient()
|
|
{
|
|
}
|
|
|
|
void ConnectionFromClient::die()
|
|
{
|
|
s_connections.remove(client_id());
|
|
}
|
|
|
|
Messages::LookupServer::LookupNameResponse ConnectionFromClient::lookup_name(String const& name)
|
|
{
|
|
auto maybe_answers = LookupServer::the().lookup(name, DNSRecordType::A);
|
|
if (maybe_answers.is_error()) {
|
|
dbgln("LookupServer: Failed to lookup PTR record: {}", maybe_answers.error());
|
|
}
|
|
|
|
auto answers = maybe_answers.release_value();
|
|
Vector<String> addresses;
|
|
for (auto& answer : answers) {
|
|
addresses.append(answer.record_data());
|
|
}
|
|
return { 0, move(addresses) };
|
|
}
|
|
|
|
Messages::LookupServer::LookupAddressResponse ConnectionFromClient::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 maybe_answers = LookupServer::the().lookup(name, DNSRecordType::PTR);
|
|
if (maybe_answers.is_error()) {
|
|
dbgln("LookupServer: Failed to lookup PTR record: {}", maybe_answers.error());
|
|
}
|
|
|
|
auto answers = maybe_answers.release_value();
|
|
if (answers.is_empty())
|
|
return { 1, String() };
|
|
return { 0, answers[0].record_data() };
|
|
}
|
|
}
|