Using glibc, why does my gethostbyname fail after I/DHCP has changed the DNS server?

旧城冷巷雨未停 提交于 2019-12-21 12:46:19

问题


If our server (running on a device) starts before a DHCP lease had been acquired then it can never connect using a hostname.

If that happens it can find hosts by IP address but not by DNS.

I initially thought that the Curl DNS cache was at fault as the curl connections failed. But I used CURLOPT_DNS_CACHE_TIMEOUT to prevent curl from caching address but connections still failed.


回答1:


It turns out that glibc gethostbyname_r won't automatically reload it's configuration if that configuration changes. You have to manually call res_init. See bug report below.

Note: Neither the man page for gethostbyname_r nor for rer_init mentioned this limitation.

My solution is very specific. It works for our long running server but it is not my ideal solution.

I have a function that checks the mtime of the /etc/resolv.conf against the last known mtime (0 for DNE). If the two mtime differ then I call res_init. This function is called on program startup and then periodically to optionally reload the configuration.


The glibc bug report

libc caches resolv.conf forever

...

That's what res_init() is for, call it.



来源:https://stackoverflow.com/questions/125466/using-glibc-why-does-my-gethostbyname-fail-after-i-dhcp-has-changed-the-dns-ser

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!