|
| ▲ | o11c 2 days ago | parent | next [-] |
| All versions of MUSL prior to 1.2.4 (released less than two years ago) would indeed fail to perform DNS lookups in many common cases, and a lot of programs could not run in MUSL as a result. (I'm not aware of what specific deficiencies remain in MUSL, but given the history even when there are explicit standards, I am confident that there are more.) This wasn't related to dynamic linking though. Glibc's NSS is mostly relevant for LANs. Which is a lot of corporate and home networks. |
|
| ▲ | Spivak 2 days ago | parent | prev | next [-] |
| You have to bundle your own resolver into your application. But here's the rub, users expect your application to respect nsswitch which requires loading shared libs which execute arbitrary code. How Go handles this is somewhat awkward. They parse /etc/nsswitch and decide if they can cheat and use their own resolver based on what modules they see[1]. Otherwise they farm out to cgo to go through glibc. [1] They're playing with fire here because you can't really assume to know for sure how the module 'dns' behaves. A user could replace the lib that backs it with their own that resolves everything to zombo.com. It would be one thing if nsswitch described behavior which was well defined and could be emulated but it doesn't, it specifies a specific implementation. |
| |
| ▲ | Jeaye 2 days ago | parent [-] | | Fascinating. Thanks for breaking this down more. I think the article could've explained this point further. |
|
|
| ▲ | masfuerte 2 days ago | parent | prev | next [-] |
| The configuration of DNS resolution on Linux is quite complicated [1]. Musl just ignores all that. You can build a distro that works with musl, but a static musl binary dropped into an arbitrary Linux system won't necessarily work correctly. [1]: https://news.ycombinator.com/item?id=43451861 |
|
| ▲ | thyristan 2 days ago | parent | prev [-] |
| The easy and conforming way to do that would be to call "getent hosts google.com" and use the answer. But this only works for simple use cases where you just need some IPv4/IPv6 address, you can't get other kinds of DNS records like MX or TLSA this way. |