cosmopolitan/libc/dns/getresolvconf.c

69 lines
3.1 KiB
C
Raw Normal View History

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"
#include "libc/macros.internal.h"
2020-06-15 14:18:57 +00:00
#include "libc/runtime/runtime.h"
#include "libc/sock/sock.h"
Prove that Makefile is fully defined The whole repository is now buildable with GNU Make Landlock sandboxing. This proves that no Makefile targets exist which touch files other than their declared prerequisites. In order to do this, we had to: 1. Stop code morphing GCC output in package.com and instead run a newly introduced FIXUPOBJ.COM command after GCC invocations. 2. Disable all the crumby Python unit tests that do things like create files in the current directory, or rename() files between folders. This ended up being a lot of tests, but most of them are still ok. 3. Introduce an .UNSANDBOXED variable to GNU Make to disable Landlock. We currently only do this for things like `make tags`. 4. This change deletes some GNU Make code that was preventing the execve() optimization from working. This means it should no longer be necessary in most cases for command invocations to be indirected through the cocmd interpreter. 5. Missing dependencies had to be declared in certain places, in cases where they couldn't be automatically determined by MKDEPS.COM 6. The libcxx header situation has finally been tamed. One of the things that makes this difficult is MKDEPS.COM only wants to consider the first 64kb of a file, in order to go fast. But libcxx likes to have #include lines buried after huge documentation. 7. An .UNVEIL variable has been introduced to GNU Make just in case we ever wish to explicitly specify additional things that need to be whitelisted which aren't strictly prerequisites. This works in a manner similar to the recently introduced .EXTRA_PREREQS feature. There's now a new build/bootstrap/make.com prebuilt binary available. It should no longer be possible to write invalid Makefile code.
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) {
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()) {
/* 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;
}