2020-06-15 14:18:57 +00:00
|
|
|
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
|
|
|
|
│vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│
|
|
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
|
|
|
│ Copyright 2020 Justine Alexandra Roberts Tunney │
|
|
|
|
│ │
|
2020-12-28 01:18:44 +00:00
|
|
|
│ Permission to use, copy, modify, and/or distribute this software for │
|
|
|
|
│ any purpose with or without fee is hereby granted, provided that the │
|
|
|
|
│ above copyright notice and this permission notice appear in all copies. │
|
2020-06-15 14:18:57 +00:00
|
|
|
│ │
|
2020-12-28 01:18:44 +00:00
|
|
|
│ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL │
|
|
|
|
│ WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED │
|
|
|
|
│ WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE │
|
|
|
|
│ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL │
|
|
|
|
│ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR │
|
|
|
|
│ PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER │
|
|
|
|
│ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │
|
|
|
|
│ PERFORMANCE OF THIS SOFTWARE. │
|
2020-06-15 14:18:57 +00:00
|
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
|
|
|
#include "libc/dce.h"
|
|
|
|
#include "libc/dns/resolvconf.h"
|
|
|
|
#include "libc/fmt/fmt.h"
|
2023-04-27 03:45:01 +00:00
|
|
|
#include "libc/intrin/pushpop.h"
|
2021-03-01 07:42:35 +00:00
|
|
|
#include "libc/macros.internal.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
#include "libc/runtime/runtime.h"
|
|
|
|
#include "libc/sock/sock.h"
|
2022-08-06 10:51:50 +00:00
|
|
|
#include "libc/sock/struct/sockaddr.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
#include "libc/stdio/stdio.h"
|
2023-04-27 03:45:01 +00:00
|
|
|
#include "libc/thread/thread.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
|
|
|
|
static struct ResolvConf *g_resolvconf;
|
|
|
|
static struct ResolvConfInitialStaticMemory {
|
|
|
|
struct ResolvConf rv;
|
2022-06-13 05:20:59 +00:00
|
|
|
pthread_mutex_t lock;
|
2020-06-15 14:18:57 +00:00
|
|
|
struct sockaddr_in nameservers[3];
|
|
|
|
} g_resolvconf_init;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns singleton with DNS server address.
|
2022-06-13 05:20:59 +00:00
|
|
|
* @threadsafe
|
2020-06-15 14:18:57 +00:00
|
|
|
*/
|
2021-05-16 04:53:26 +00:00
|
|
|
const struct ResolvConf *GetResolvConf(void) {
|
2020-08-25 11:23:25 +00:00
|
|
|
int rc;
|
|
|
|
FILE *f;
|
2020-12-01 11:43:40 +00:00
|
|
|
struct ResolvConfInitialStaticMemory *init;
|
|
|
|
init = &g_resolvconf_init;
|
2022-06-13 05:20:59 +00:00
|
|
|
pthread_mutex_lock(&init->lock);
|
2020-06-15 14:18:57 +00:00
|
|
|
if (!g_resolvconf) {
|
|
|
|
g_resolvconf = &init->rv;
|
|
|
|
pushmov(&init->rv.nameservers.n, ARRAYLEN(init->nameservers));
|
|
|
|
init->rv.nameservers.p = init->nameservers;
|
2021-05-16 04:53:26 +00:00
|
|
|
__cxa_atexit(FreeResolvConf, &g_resolvconf, NULL);
|
2020-06-15 14:18:57 +00:00
|
|
|
if (!IsWindows()) {
|
|
|
|
if ((f = fopen("/etc/resolv.conf", "r"))) {
|
2021-05-16 04:53:26 +00:00
|
|
|
rc = ParseResolvConf(g_resolvconf, f);
|
2020-06-15 14:18:57 +00:00
|
|
|
} else {
|
|
|
|
rc = -1;
|
|
|
|
}
|
|
|
|
fclose(f);
|
|
|
|
} else {
|
2021-05-16 04:53:26 +00:00
|
|
|
rc = GetNtNameServers(g_resolvconf);
|
2020-06-15 14:18:57 +00:00
|
|
|
}
|
|
|
|
if (rc == -1 && !IsTiny()) {
|
2021-02-08 17:19:00 +00:00
|
|
|
/* TODO(jart): Elevate robustness. */
|
2020-06-15 14:18:57 +00:00
|
|
|
}
|
|
|
|
}
|
2022-06-13 05:20:59 +00:00
|
|
|
pthread_mutex_unlock(&init->lock);
|
2020-06-15 14:18:57 +00:00
|
|
|
return g_resolvconf;
|
|
|
|
}
|