aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/connman.go
blob: 64a7208e0bea5a5408bb78b04371ddc848d1cbe5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
package rosa

import "hakurei.app/internal/pkg"

func (t Toolchain) newConnman() (pkg.Artifact, string) {
	const (
		version  = "2.0"
		checksum = "MhVTdJOhndnZn2SWd8URKo_Pj7Zvc14tntEbrVOf9L3yVWJvpb3v3Q6104tWJgtW"
	)
	return t.NewPackage("connman", version, newTar(
		"https://git.kernel.org/pub/scm/network/connman/connman.git/"+
			"snapshot/connman-"+version+".tar.gz",
		checksum,
		pkg.TarGzip,
	), &PackageAttr{
		Patches: []KV{
			{"alpine-musl-res", `musl does not implement res_ninit

--- a/gweb/gresolv.c
+++ b/gweb/gresolv.c
@@ -877,8 +877,6 @@
 	resolv->index = index;
 	resolv->nameserver_list = NULL;
 
-	res_ninit(&resolv->res);
-
 	return resolv;
 }
 
@@ -918,8 +916,6 @@
 
 	flush_nameservers(resolv);
 
-	res_nclose(&resolv->res);
-
 	g_free(resolv);
 }
 
@@ -1022,24 +1018,19 @@
 	debug(resolv, "hostname %s", hostname);
 
 	if (!resolv->nameserver_list) {
-		int i;
-
-		for (i = 0; i < resolv->res.nscount; i++) {
-			char buf[100];
-			int family = resolv->res.nsaddr_list[i].sin_family;
-			void *sa_addr = &resolv->res.nsaddr_list[i].sin_addr;
-
-			if (family != AF_INET &&
-					resolv->res._u._ext.nsaddrs[i]) {
-				family = AF_INET6;
-				sa_addr = &resolv->res._u._ext.nsaddrs[i]->sin6_addr;
+		FILE *f = fopen("/etc/resolv.conf", "r");
+		if (f) {
+			char line[256], *s;
+			int i;
+			while (fgets(line, sizeof(line), f)) {
+				if (strncmp(line, "nameserver", 10) || !isspace(line[10]))
+					continue;
+				for (s = &line[11]; isspace(s[0]); s++);
+				for (i = 0; s[i] && !isspace(s[i]); i++);
+				s[i] = 0;
+				g_resolv_add_nameserver(resolv, s, 53, 0);
 			}
-
-			if (family != AF_INET && family != AF_INET6)
-				continue;
-
-			if (inet_ntop(family, sa_addr, buf, sizeof(buf)))
-				g_resolv_add_nameserver(resolv, buf, 53, 0);
+			fclose(f);
 		}
 
 		if (!resolv->nameserver_list)
`},
		},
	}, &MakeHelper{
		Generate: "./bootstrap",
	},
		Automake,
		Libtool,
		PkgConfig,

		DBus,
		IPTables,
		GnuTLS,
		Readline,
		KernelHeaders,
	), version
}
func init() {
	artifactsM[Connman] = Metadata{
		f: Toolchain.newConnman,

		Name:        "connman",
		Description: "a daemon for managing Internet connections",
		Website:     "https://git.kernel.org/pub/scm/network/connman/connman.git/",

		Dependencies: P{
			DBus,
			IPTables,
			GnuTLS,
			Readline,
		},

		ID: 337,
	}
}