mailing list of musl libc
 help / color / mirror / code / Atom feed
209dc557afd5af4c5af563046abf321222c961d9 blob 1298 bytes (raw)

 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
 
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>
#include <net/if.h>
#include <arpa/inet.h>
#include <limits.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include "lookup.h"

int __inet_aton(const char *, struct in_addr *);

int __lookup_ipliteral(struct address buf[static 1], const char *name, int family)
{
	struct in_addr a4;
	struct in6_addr a6;
	if (__inet_aton(name, &a4) > 0) {
		if (family == AF_INET6) /* wrong family */
			return EAI_NONAME;
		memcpy(&buf[0].addr, &a4, sizeof a4);
		buf[0].family = AF_INET;
		buf[0].scopeid = 0;
		return 1;
	}

	char tmp[64];
	char *p = strchr(name, '%'), *z;
	unsigned long long scopeid;
	if (p && p-name < 64) {
		memcpy(tmp, name, p-name);
		tmp[p-name] = 0;
		name = tmp;
	}

	if (inet_pton(AF_INET6, name, &a6) <= 0)
		return 0;
	if (family == AF_INET) /* wrong family */
		return EAI_NONAME;

	memcpy(&buf[0].addr, &a6, sizeof a6);
	buf[0].family = AF_INET6;
	if (p) {
		if (isdigit(*++p)) scopeid = strtoull(p, &z, 10);
		else z = p-1;
		if (*z) {
			if (!IN6_IS_ADDR_LINKLOCAL(&a6) &&
			    !IN6_IS_ADDR_MC_LINKLOCAL(&a6))
				return EAI_NONAME;
			scopeid = if_nametoindex(p);
			if (!scopeid) return EAI_NONAME;
		}
		if (scopeid > UINT_MAX) return EAI_NONAME;
		buf[0].scopeid = scopeid;
	}
	return 1;
}
debug log:

solving 209dc55 ...
found 209dc55 in https://inbox.vuxu.org/musl/418CD580-74BC-4B3E-BA64-CB3AEA305843@gmail.com/ ||
	https://inbox.vuxu.org/musl/71B72D33-A1D4-4B23-BFEB-6BFA01DF7523@gmail.com/
found 7bcb85f in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 7bcb85fc500fe2f71126bc61b2e1b7f182927477	src/network/lookup_ipliteral.c

applying [1/2] https://inbox.vuxu.org/musl/418CD580-74BC-4B3E-BA64-CB3AEA305843@gmail.com/
diff --git a/src/network/lookup_ipliteral.c b/src/network/lookup_ipliteral.c
index 7bcb85f..209dc55 100644

Checking patch src/network/lookup_ipliteral.c...
Applied patch src/network/lookup_ipliteral.c cleanly.

skipping https://inbox.vuxu.org/musl/71B72D33-A1D4-4B23-BFEB-6BFA01DF7523@gmail.com/ for 209dc55
index at:
100644 209dc557afd5af4c5af563046abf321222c961d9	src/network/lookup_ipliteral.c

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).