From 1563587b45a39512df9b5810dcc5961d4d21a910 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Thu, 28 Jan 2016 20:51:31 -0500 Subject: reuse parsed resolv.conf in dns core to avoid re-reading/re-parsing --- src/network/lookup_name.c | 11 ++++++----- src/network/res_msend.c | 27 ++++++++++++++++----------- 2 files changed, 22 insertions(+), 16 deletions(-) (limited to 'src') diff --git a/src/network/lookup_name.c b/src/network/lookup_name.c index 09734b50..a26ad535 100644 --- a/src/network/lookup_name.c +++ b/src/network/lookup_name.c @@ -93,7 +93,7 @@ struct dpc_ctx { int __dns_parse(const unsigned char *, int, int (*)(void *, int, const void *, int, const void *), void *); int __dn_expand(const unsigned char *, const unsigned char *, const unsigned char *, char *, int); int __res_mkquery(int, const char *, int, int, const unsigned char *, int, const unsigned char*, unsigned char *, int); -int __res_msend(int, const unsigned char *const *, const int *, unsigned char *const *, int *, int); +int __res_msend_rc(int, const unsigned char *const *, const int *, unsigned char *const *, int *, int, const struct resolvconf *); #define RR_A 1 #define RR_CNAME 5 @@ -125,7 +125,7 @@ static int dns_parse_callback(void *c, int rr, const void *data, int len, const return 0; } -static int name_from_dns(struct address buf[static MAXADDRS], char canon[static 256], const char *name, int family) +static int name_from_dns(struct address buf[static MAXADDRS], char canon[static 256], const char *name, int family, const struct resolvconf *conf) { unsigned char qbuf[2][280], abuf[2][512]; const unsigned char *qp[2] = { qbuf[0], qbuf[1] }; @@ -145,7 +145,8 @@ static int name_from_dns(struct address buf[static MAXADDRS], char canon[static nq++; } - if (__res_msend(nq, qp, qlens, ap, alens, sizeof *abuf) < 0) return EAI_SYSTEM; + if (__res_msend_rc(nq, qp, qlens, ap, alens, sizeof *abuf, conf) < 0) + return EAI_SYSTEM; for (i=0; itimeout; + attempts = conf->attempts; - nns = conf.nns; - for (nns=0; nnsnns; + for (nns=0; nnsnns; nns++) { + const struct address *iplit = &conf->ns[nns]; if (iplit->family == AF_INET) { memcpy(&ns[nns].sin.sin_addr, iplit->addr, 4); ns[nns].sin.sin_port = htons(53); @@ -178,3 +175,11 @@ out: return 0; } + +int __res_msend(int nqueries, const unsigned char *const *queries, + const int *qlens, unsigned char *const *answers, int *alens, int asize) +{ + struct resolvconf conf; + if (__get_resolv_conf(&conf, 0, 0) < 0) return -1; + return __res_msend_rc(nqueries, queries, qlens, answers, alens, asize, &conf); +} -- cgit v1.2.1