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
|
/* opennhrpctl.c - OpenNHRP command line control utility
*
* Copyright (c) 2007-2012 Timo Teräs <timo.teras@iki.fi>
*
* This software is licensed under the MIT License.
* See MIT-LICENSE.txt for additional details.
*/
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <sys/un.h>
#include <sys/socket.h>
static int admin_init(const char *opennhrp_socket)
{
struct sockaddr_un sun;
int fd;
memset(&sun, 0, sizeof(sun));
sun.sun_family = AF_UNIX;
strncpy(sun.sun_path, opennhrp_socket, sizeof(sun.sun_path));
fd = socket(AF_UNIX, SOCK_STREAM, 0);
if (fd < 0)
return -1;
if (connect(fd, (struct sockaddr *) &sun, sizeof(sun)) < 0) {
close(fd);
return -1;
}
return fd;
}
static void admin_close(int fd)
{
close(fd);
}
static int admin_send(int fd, const char *str)
{
int len = strlen(str);
if (write(fd, str, len) != len)
return -1;
shutdown(fd, SHUT_WR);
return 0;
}
static int admin_receive(int fd)
{
char msg[512];
size_t len;
while ((len = recv(fd, msg, sizeof(msg), 0)) > 0) {
if (write(fileno(stdout), msg, len) != len)
return -1;
}
if (len < 0)
return -1;
return 0;
}
static int usage(const char *prog)
{
fprintf(stderr, "usage: %s [-a admin-socket] <command>\n", prog);
return 1;
}
int main(int argc, char **argv)
{
const char *socket = OPENNHRP_ADMIN_SOCKET;
char cmd[1024] = "", *pos = cmd;
int i, fd;
for (i = 1; i < argc; i++) {
if (strlen(argv[i]) != 2 || argv[i][0] != '-') {
pos += snprintf(pos, &cmd[sizeof(cmd)-1]-pos,
" %s\n", argv[i]) - 1;
continue;
}
switch (argv[i][1]) {
case 'a':
if (++i >= argc)
return usage(argv[0]);
socket = argv[i];
break;
default:
return usage(argv[0]);
}
}
if (cmd == pos)
return usage(argv[0]);
fd = admin_init(socket);
if (fd < 0) {
fprintf(stderr,
"Failed to connect to opennhrp daemon [%s]: %s.\n\n",
socket, strerror(errno));
return 1;
}
if (admin_send(fd, &cmd[1]) < 0 ||
admin_receive(fd) < 0) {
fprintf(stderr, "Failed to send request: %s.\n",
strerror(errno));
return 2;
}
admin_close(fd);
return 0;
}
|