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 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
#include <dnswire/writer.h>
#include <arpa/inet.h>
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <sys/socket.h>
#include <sys/un.h>
#include "create_dnstap.c"
int main(int argc, const char* argv[])
{
if (argc < 2) {
fprintf(stderr, "usage: sender [ <IP> <port> | <unix socket path> ]\n");
return 1;
}
/*
* We first initialize the writer and check that it can allocate the
* buffers it needs.
*/
struct dnswire_writer writer;
if (dnswire_writer_init(&writer) != dnswire_ok) {
fprintf(stderr, "Unable to initialize dnswire writer\n");
return 1;
}
/*
* Use bidirectional communication over the TCP or UNIX socket.
*/
if (dnswire_writer_set_bidirectional(&writer, true) != dnswire_ok) {
fprintf(stderr, "Unable to set dnswire writer to bidirectional mode\n");
return 1;
}
int sockfd;
if (argc == 2) {
/*
* We setup and connect to a unix socket at the given path on command line.
*/
struct sockaddr_un path;
memset(&path, 0, sizeof(struct sockaddr_un));
path.sun_family = AF_UNIX;
strncpy(path.sun_path, argv[1], sizeof(path.sun_path) - 1);
sockfd = socket(AF_UNIX, SOCK_STREAM, 0);
if (sockfd == -1) {
fprintf(stderr, "socket() failed: %s\n", strerror(errno));
return 1;
}
printf("socket\n");
if (connect(sockfd, (struct sockaddr*)&path, sizeof(struct sockaddr_un))) {
fprintf(stderr, "connect() failed: %s\n", strerror(errno));
close(sockfd);
return 1;
}
printf("connect\n");
} else {
/*
* We setup and connect to the IP and port given on command line.
*/
struct sockaddr_storage addr_store;
struct sockaddr_in* addr = (struct sockaddr_in*)&addr_store;
socklen_t addrlen;
if (strchr(argv[1], ':')) {
addr->sin_family = AF_INET6;
addrlen = sizeof(struct sockaddr_in6);
} else {
addr->sin_family = AF_INET;
addrlen = sizeof(struct sockaddr_in);
}
if (inet_pton(addr->sin_family, argv[1], &addr->sin_addr) != 1) {
fprintf(stderr, "inet_pton(%s) failed: %s\n", argv[1], strerror(errno));
return 1;
}
addr->sin_port = ntohs(atoi(argv[2]));
sockfd = socket(addr->sin_family, SOCK_STREAM, IPPROTO_TCP);
if (sockfd == -1) {
fprintf(stderr, "socket() failed: %s\n", strerror(errno));
return 1;
}
printf("socket\n");
if (connect(sockfd, (struct sockaddr*)addr, addrlen)) {
fprintf(stderr, "connect() failed: %s\n", strerror(errno));
close(sockfd);
return 1;
}
printf("connect\n");
}
/*
* We are now connected!
*
* Now we create a DNSTAP message.
*/
struct dnstap d = create_dnstap("sender");
/*
* We set the DNSTAP message the writer should write.
*/
dnswire_writer_set_dnstap(writer, &d);
/*
* We now loop and wait for the DNSTAP message to be written.
*/
int done = 0;
printf("sending...\n");
while (!done) {
switch (dnswire_writer_write(&writer, sockfd)) {
case dnswire_ok:
/*
* The DNSTAP message was written successfully, we can now set
* a new DNSTAP message for the writer or stop the stream.
*
* This stops the stream, loop again until it's stopped.
*/
if (dnswire_writer_stop(&writer) != dnswire_ok) {
printf("stopping failed!\n");
done = 1;
}
break;
case dnswire_again:
/*
* This indicates that we need to call the writer again as it
* will only do one pass in a non-blocking fasion.
*/
break;
case dnswire_endofdata:
/*
* The stream is stopped, we're done!
*/
printf("stopped\n");
done = 1;
break;
default:
fprintf(stderr, "dnswire_writer_write() error\n");
done = 1;
}
}
dnswire_writer_destroy(writer);
/*
* Time to exit, let's shutdown and close the sockets.
*/
shutdown(sockfd, SHUT_RDWR);
close(sockfd);
return 0;
}
|