mailing list of musl libc
 help / color / mirror / code / Atom feed
* compatability: dnsmasq--missing headers, capset
@ 2012-05-10 20:06 Isaac Dunham
  2012-05-10 20:18 ` Kurt H Maier
  0 siblings, 1 reply; 2+ messages in thread
From: Isaac Dunham @ 2012-05-10 20:06 UTC (permalink / raw)
  To: musl

[-- Attachment #1: Type: text/plain, Size: 1986 bytes --]

Hello, 
I heard (on the Puppy Linux forums) that dnsmasq
(http://www.thekelleys.org.uk/dnsmasq/) doesn't build with musl, so I
checked.
dnsmasq defines _GNU_SOURCE.
1. Needs netinet/in_systm.h
Attached is one based on the version he provided.
2. Needs 
#define _PATH_LOG "/dev/log"
This should be defined (at least for _GNU_SOURCE) when including
syslog.h (glibc has it elsewhere but errors if it is directly included)
Attached is a patch that will define it at the proper time (I also
moved vsyslog out of the SYSLOG_NAMES guard, since glibc doesn't
require that, and added _BSD_SOURCE because I was changing exactly
that area anyhow)
3. After fixing the above, I get:
musl-gcc  -o dnsmasq cache.o rfc1035.o util.o option.o
forward.o network.o dnsmasq.o dhcp.o lease.o rfc2131.o netlink.o dbus.o
bpf.o helper.o tftp.o log.o conntrack.o dhcp6.o rfc3315.o dhcp-common.o
outpacket.o radv.o slaac.o 
util.o: In function `sockaddr_isequal':
util.c:(.text+0x8cd): undefined reference to `IN6_ARE_ADDR_EQUAL'
network.o: In function `iface_check': 
network.c:(.text+0xfc9): undefined reference to `IN6_ARE_ADDR_EQUAL'
dnsmasq.o: In function `main': 
dnsmasq.c:(.text+0x1285): undefined reference to `capget'
dnsmasq.c:(.text+0x15d6): undefined reference to `capset'
dnsmasq.c:(.text+0x1666): undefined reference to `capset' 
slaac.o: In function `slaac_ping_reply': 
slaac.c:(.text+0x109): undefined reference to `IN6_ARE_ADDR_EQUAL'
slaac.o: In function `slaac_add_addrs': 
slaac.c:(.text+0x4a3): undefined reference to `IN6_ARE_ADDR_EQUAL'
collect2: ld returned 1 exit status 
make[1]: *** [dnsmasq] Error 1
make[1]: Leaving directory `/home/ibid/misc/src/musl/dnsmasq/src' 
make: *** [all] Error 2

So dnsmasq needs capset & capget (which provide support for Linux
capabilities).
IN6_ARE_ADDR_EQUAL is a long macro from netinet/in.h in glibc.

Reportedly it works if you patch them out, but that's an approach I'd
avoid if at all possible because of the security implications.

Isaac Dunham

[-- Attachment #2: in_systm.h --]
[-- Type: text/x-chdr, Size: 164 bytes --]

#ifndef _NETINET_IN_SYSTM_H
#define _NETINET_IN_SYSTM_H 1
#include <sys/types.h>
typedef uint16_t n_short;
typedef uint32_t n_long;
typedef uint32_t n_time;
#endif

[-- Attachment #3: syslog.diff --]
[-- Type: text/x-patch, Size: 776 bytes --]

--- /opt/musl/include/syslog.h	2012-04-19 21:14:04.318606875 -0700
+++ /opt/musl/pincl/syslog.h	2012-05-10 12:48:02.155276564 -0700
@@ -59,7 +59,11 @@
 int setlogmask (int);
 void syslog (int, const char *, ...);
 
-#if defined(_GNU_SOURCE) && defined(SYSLOG_NAMES)
+#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
+#define _PATH_LOG "/dev/log"
+void vsyslog (int, const char *, va_list);
+
+#ifdef SYSLOG_NAMES
 #define __NEED_va_list
 #include <bits/alltypes.h>
 #define	INTERNAL_NOPRI 0x10
@@ -89,7 +93,7 @@
 	{ "local2", LOG_LOCAL2 }, { "local3", LOG_LOCAL3 }, \
 	{ "local4", LOG_LOCAL4 }, { "local5", LOG_LOCAL5 }, \
 	{ "local6", LOG_LOCAL6 }, { "local7", LOG_LOCAL7 }, { NULL, -1 } })
-void vsyslog (int, const char *, va_list);
+#endif
 #endif
 
 #ifdef __cplusplus

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: compatability: dnsmasq--missing headers, capset
  2012-05-10 20:06 compatability: dnsmasq--missing headers, capset Isaac Dunham
@ 2012-05-10 20:18 ` Kurt H Maier
  0 siblings, 0 replies; 2+ messages in thread
From: Kurt H Maier @ 2012-05-10 20:18 UTC (permalink / raw)
  To: musl

On Thu, May 10, 2012 at 01:06:54PM -0700, Isaac Dunham wrote:
> So dnsmasq needs capset & capget (which provide support for Linux
> capabilities).

These are supposed to come from sys/capability.h on linux systems.


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-05-10 20:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-05-10 20:06 compatability: dnsmasq--missing headers, capset Isaac Dunham
2012-05-10 20:18 ` Kurt H Maier

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).