mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
LookupServer: Load hostnames
This commit is contained in:
parent
4f62176c3e
commit
70a37f9a26
Notes:
sideshowbarker
2024-07-19 13:42:31 +09:00
Author: https://github.com/alexispurslane Commit: https://github.com/SerenityOS/serenity/commit/70a37f9a266 Pull-request: https://github.com/SerenityOS/serenity/pull/210 Reviewed-by: https://github.com/awesomekling
4 changed files with 27 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -13,3 +13,4 @@ Toolchain/Build
|
|||
Toolchain/Local
|
||||
.vscode
|
||||
compile_commands.json
|
||||
.clang_complete
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
[DNS]
|
||||
IPAddress=8.8.8.8
|
||||
|
||||
|
|
1
Base/etc/hosts
Normal file
1
Base/etc/hosts
Normal file
|
@ -0,0 +1 @@
|
|||
127.0.0.1 localhost
|
|
@ -39,7 +39,27 @@ int main(int argc, char** argv)
|
|||
config->file_name().characters());
|
||||
auto DNS_IP = config->read_entry("DNS", "IPAddress", "127.0.0.53");
|
||||
|
||||
HashMap<String, IPv4Address> dns_cache;
|
||||
dbgprintf("LookupServer: Loading hosts from /etc/hosts:\n");
|
||||
HashMap<String, IPv4Address> dns_custom_hostnames;
|
||||
auto* file = fopen("/etc/hosts", "r");
|
||||
auto linebuf = ByteBuffer::create_uninitialized(256);
|
||||
while (fgets((char*)linebuf.pointer(), linebuf.size(), file)) {
|
||||
auto str_line = String::copy(linebuf);
|
||||
auto fields = str_line.split('\t');
|
||||
auto sections = fields[0].split('.');
|
||||
IPv4Address addr {
|
||||
(byte)atoi(sections[0].characters()),
|
||||
(byte)atoi(sections[1].characters()),
|
||||
(byte)atoi(sections[2].characters()),
|
||||
(byte)atoi(sections[3].characters()),
|
||||
};
|
||||
int len = 0;
|
||||
while ((fields[1][len++]) != -123)
|
||||
;
|
||||
auto name = fields[1].substring(0, len - 3);
|
||||
dbgprintf("LookupServer: Hosts: %s\t%s\n", name.characters(), addr.to_string().characters());
|
||||
dns_custom_hostnames.set(name, addr);
|
||||
}
|
||||
|
||||
int server_fd = socket(AF_LOCAL, SOCK_STREAM | SOCK_CLOEXEC, 0);
|
||||
if (server_fd < 0) {
|
||||
|
@ -111,7 +131,10 @@ int main(int argc, char** argv)
|
|||
|
||||
Vector<String> responses;
|
||||
|
||||
if (!hostname.is_empty()) {
|
||||
if (dns_custom_hostnames.contains(hostname)) {
|
||||
addresses.append(dns_custom_hostnames.get(hostname));
|
||||
dbgprintf("LookupServer: Found preconfigured host (from /etc/hosts): %s\n", addresses[0].to_string().characters());
|
||||
} else if (!hostname.is_empty()) {
|
||||
bool did_timeout;
|
||||
int retries = 3;
|
||||
do {
|
||||
|
|
Loading…
Reference in a new issue