]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/libsystemd/sd-resolve/test-resolve.c
sd-dhcp6-client: do not refer uninitialized variable
[thirdparty/systemd.git] / src / libsystemd / sd-resolve / test-resolve.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
e963e3ad 2/***
edc6f2f5 3 This file is part of systemd.
e963e3ad
DB
4
5 Copyright 2005-2008 Lennart Poettering
77c98a9e 6 Copyright 2014 Daniel Buch
e963e3ad 7
edc6f2f5
TG
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
e963e3ad 12
edc6f2f5 13 systemd is distributed in the hope that it will be useful, but
e963e3ad
DB
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
17
edc6f2f5
TG
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20***/
e963e3ad 21
e963e3ad 22#include <arpa/inet.h>
07630cea 23#include <errno.h>
e963e3ad 24#include <netinet/in.h>
e963e3ad 25#include <resolv.h>
07630cea
LP
26#include <stdio.h>
27#include <string.h>
28#include <sys/socket.h>
e963e3ad 29
3bedba4a 30#include "sd-resolve.h"
07630cea 31
b5efdb8a 32#include "alloc-util.h"
e963e3ad 33#include "macro.h"
07630cea
LP
34#include "socket-util.h"
35#include "string-util.h"
e963e3ad 36
5bf5510b
LP
37#define TEST_TIMEOUT_USEC (20*USEC_PER_SEC)
38
93f1bcf4
LP
39static int getaddrinfo_handler(sd_resolve_query *q, int ret, const struct addrinfo *ai, void *userdata) {
40 const struct addrinfo *i;
41
0c0cdb06 42 assert_se(q);
93f1bcf4
LP
43
44 if (ret != 0) {
ff49bc32 45 log_error("getaddrinfo error: %s %i", gai_strerror(ret), ret);
93f1bcf4
LP
46 return 0;
47 }
48
49 for (i = ai; i; i = i->ai_next) {
50 _cleanup_free_ char *addr = NULL;
51
3b1c5241 52 assert_se(sockaddr_pretty(i->ai_addr, i->ai_addrlen, false, true, &addr) == 0);
93f1bcf4
LP
53 puts(addr);
54 }
55
56 printf("canonical name: %s\n", strna(ai->ai_canonname));
57
58 return 0;
59}
60
61static int getnameinfo_handler(sd_resolve_query *q, int ret, const char *host, const char *serv, void *userdata) {
0c0cdb06 62 assert_se(q);
93f1bcf4
LP
63
64 if (ret != 0) {
ff49bc32 65 log_error("getnameinfo error: %s %i", gai_strerror(ret), ret);
93f1bcf4
LP
66 return 0;
67 }
68
ccddd104 69 printf("Host: %s — Serv: %s\n", strna(host), strna(serv));
93f1bcf4
LP
70 return 0;
71}
72
e963e3ad 73int main(int argc, char *argv[]) {
4afd3348
LP
74 _cleanup_(sd_resolve_query_unrefp) sd_resolve_query *q1 = NULL, *q2 = NULL;
75 _cleanup_(sd_resolve_unrefp) sd_resolve *resolve = NULL;
93f1bcf4 76 int r = 0;
77c98a9e
DB
77
78 struct addrinfo hints = {
79 .ai_family = PF_UNSPEC,
80 .ai_socktype = SOCK_STREAM,
81 .ai_flags = AI_CANONNAME
82 };
83
84 struct sockaddr_in sa = {
85 .sin_family = AF_INET,
86 .sin_port = htons(80)
87 };
e963e3ad 88
93f1bcf4 89 assert_se(sd_resolve_default(&resolve) >= 0);
e963e3ad 90
4a134c49
LP
91 /* Test a floating resolver query */
92 sd_resolve_getaddrinfo(resolve, NULL, "redhat.com", "http", NULL, getaddrinfo_handler, NULL);
93
e963e3ad 94 /* Make a name -> address query */
93f1bcf4 95 r = sd_resolve_getaddrinfo(resolve, &q1, argc >= 2 ? argv[1] : "www.heise.de", NULL, &hints, getaddrinfo_handler, NULL);
968d3d24 96 if (r < 0)
279d3c9c 97 log_error_errno(r, "sd_resolve_getaddrinfo(): %m");
e963e3ad
DB
98
99 /* Make an address -> name query */
93f1bcf4
LP
100 sa.sin_addr.s_addr = inet_addr(argc >= 3 ? argv[2] : "193.99.144.71");
101 r = sd_resolve_getnameinfo(resolve, &q2, (struct sockaddr*) &sa, sizeof(sa), 0, SD_RESOLVE_GET_BOTH, getnameinfo_handler, NULL);
968d3d24 102 if (r < 0)
279d3c9c 103 log_error_errno(r, "sd_resolve_getnameinfo(): %m");
e963e3ad 104
1e87f1f2
EV
105 /* Wait until all queries are completed */
106 for (;;) {
5bf5510b 107 r = sd_resolve_wait(resolve, TEST_TIMEOUT_USEC);
1e87f1f2
EV
108 if (r == 0)
109 break;
5bf5510b
LP
110 if (r == -ETIMEDOUT) {
111 /* Let's catch time-outs here, so that we can run safely in a CI that has no reliable DNS. Note
112 * that we invoke exit() directly here, as the stuck NSS call will not allow us to exit
113 * cleanly. */
114
115 log_notice_errno(r, "sd_resolve_wait() timed out, but that's OK");
116 exit(EXIT_SUCCESS);
117 break;
118 }
968d3d24 119 if (r < 0) {
279d3c9c 120 log_error_errno(r, "sd_resolve_wait(): %m");
968d3d24
LP
121 assert_not_reached("sd_resolve_wait() failed");
122 }
e963e3ad
DB
123 }
124
77c98a9e 125 return 0;
e963e3ad 126}