-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.c
289 lines (262 loc) · 8.13 KB
/
main.c
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
/*
* Copyright (C) 2012-2015 B.A.T.M.A.N. contributors:
*
* Simon Wunderlich
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of version 2 of the GNU General Public
* License as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA
*
*/
#include <getopt.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef CONFIG_ALFRED_CAPABILITIES
#include <sys/prctl.h>
#include <sys/capability.h>
#include <unistd.h>
#endif
#include "alfred.h"
#include "packet.h"
#include "list.h"
static struct globals alfred_globals;
static void alfred_usage(void)
{
printf("Usage: alfred [options]\n");
printf("client mode options:\n");
printf(" -s, --set-data [data type] sets new data to distribute from stdin\n");
printf(" for the supplied data type (0-255)\n");
printf(" -r, --request [data type] collect data from the network and prints\n");
printf(" it on the network\n");
printf(" -d, --verbose Show extra information in the data output\n");
printf(" -V, --req-version specify the data version set for -s\n");
printf(" -M, --modeswitch master switch daemon to mode master\n");
printf(" slave switch daemon to mode slave\n");
printf(" -I, --change-interface [interface] change to the specified interface(s)\n");
printf("\n");
printf("server mode options:\n");
printf(" -i, --interface specify the interface (or comma separated list of interfaces) to listen on\n");
printf(" -b specify the batman-adv interface\n");
printf(" configured on the system (default: bat0)\n");
printf(" use 'none' to disable the batman-adv\n");
printf(" based best server selection\n");
printf(" -m, --master start up the daemon in master mode, which\n");
printf(" accepts data from slaves and syncs it with\n");
printf(" other masters\n");
printf("\n");
printf(" -u, --unix-path [path] path to unix socket used for client-server\n");
printf(" communication (default: \""ALFRED_SOCK_PATH_DEFAULT"\")\n");
printf(" -c, --update-command command to call on data change\n");
printf(" -v, --version print the version\n");
printf(" -h, --help this help\n");
printf("\n");
}
static int reduce_capabilities(void)
{
int ret = 0;
#ifdef CONFIG_ALFRED_CAPABILITIES
cap_t cap_cur;
cap_t cap_new;
cap_flag_value_t cap_flag;
cap_value_t cap_net_raw = CAP_NET_RAW;
/* get current process capabilities */
cap_cur = cap_get_proc();
if (!cap_cur) {
perror("cap_get_proc");
return -1;
}
/* create new capabilities */
cap_new = cap_init();
if (!cap_new) {
perror("cap_init");
cap_free(cap_new);
return -1;
}
/* copy capability as non-effictive but permitted */
cap_flag = CAP_CLEAR;
cap_get_flag(cap_cur, CAP_NET_RAW, CAP_PERMITTED, &cap_flag);
if (cap_flag != CAP_CLEAR) {
ret = cap_set_flag(cap_new, CAP_PERMITTED, 1, &cap_net_raw,
CAP_SET);
if (ret < 0) {
perror("cap_set_flag");
goto out;
}
}
/* set minimal capabilities field */
ret = cap_set_proc(cap_new);
if (ret < 0) {
perror("cap_set_proc");
goto out;
}
/* don't drop capabilities with setuid */
ret = prctl(PR_SET_KEEPCAPS, 1);
if (ret < 0) {
perror("prctl PR_SET_KEEPCAPS(1)");
goto out;
}
/* drop euid */
ret = setuid(getuid());
if (ret < 0) {
perror("setuid");
goto out;
}
/* drop capabilities with setuid */
ret = prctl(PR_SET_KEEPCAPS, 0);
if (ret < 0) {
perror("prctl PR_SET_KEEPCAPS(0)");
goto out;
}
out:
cap_free(cap_new);
cap_free(cap_cur);
#endif
return ret;
}
static struct globals *alfred_init(int argc, char *argv[])
{
int opt, opt_ind, i, ret;
struct globals *globals;
struct option long_options[] = {
{"set-data", required_argument, NULL, 's'},
{"request", required_argument, NULL, 'r'},
{"interface", required_argument, NULL, 'i'},
{"master", no_argument, NULL, 'm'},
{"help", no_argument, NULL, 'h'},
{"req-version", required_argument, NULL, 'V'},
{"modeswitch", required_argument, NULL, 'M'},
{"change-interface", required_argument, NULL, 'I'},
{"unix-path", required_argument, NULL, 'u'},
{"update-command", required_argument, NULL, 'c'},
{"version", no_argument, NULL, 'v'},
{"verbose", no_argument, NULL, 'd'},
{NULL, 0, NULL, 0},
};
ret = reduce_capabilities();
if (ret < 0)
return NULL;
globals = &alfred_globals;
memset(globals, 0, sizeof(*globals));
INIT_LIST_HEAD(&globals->interfaces);
globals->change_interface = NULL;
globals->opmode = OPMODE_SLAVE;
globals->clientmode = CLIENT_NONE;
globals->best_server = NULL;
globals->clientmode_version = 0;
globals->mesh_iface = "bat0";
globals->unix_path = ALFRED_SOCK_PATH_DEFAULT;
globals->verbose = 0;
globals->update_command = NULL;
INIT_LIST_HEAD(&globals->changed_data_types);
globals->changed_data_type_count = 0;
time_random_seed();
while ((opt = getopt_long(argc, argv, "ms:r:hi:b:vV:M:I:u:dc:", long_options,
&opt_ind)) != -1) {
switch (opt) {
case 'r':
globals->clientmode = CLIENT_REQUEST_DATA;
i = atoi(optarg);
if (i < ALFRED_MAX_RESERVED_TYPE || i > 255) {
fprintf(stderr, "bad data type argument\n");
return NULL;
}
globals->clientmode_arg = i;
break;
case 's':
globals->clientmode = CLIENT_SET_DATA;
i = atoi(optarg);
if (i < ALFRED_MAX_RESERVED_TYPE || i > 255) {
fprintf(stderr, "bad data type argument\n");
return NULL;
}
globals->clientmode_arg = i;
break;
case 'm':
globals->opmode = OPMODE_MASTER;
break;
case 'i':
netsock_set_interfaces(globals, optarg);
break;
case 'b':
globals->mesh_iface = strdup(optarg);
break;
case 'V':
i = atoi(optarg);
if (i < 0 || i > 255) {
fprintf(stderr, "bad data version argument\n");
return NULL;
}
globals->clientmode_version = atoi(optarg);
break;
case 'M':
if (strcmp(optarg, "master") == 0) {
globals->opmode = OPMODE_MASTER;
} else if (strcmp(optarg, "slave") == 0) {
globals->opmode = OPMODE_SLAVE;
} else {
fprintf(stderr, "bad modeswitch argument\n");
return NULL;
}
globals->clientmode = CLIENT_MODESWITCH;
break;
case 'I':
globals->clientmode = CLIENT_CHANGE_INTERFACE;
globals->change_interface = strdup(optarg);
break;
case 'u':
globals->unix_path = optarg;
break;
case 'd':
globals->verbose++;
break;
case 'c':
globals->update_command = optarg;
break;
case 'v':
printf("%s %s\n", argv[0], SOURCE_VERSION);
printf("A.L.F.R.E.D. - Almighty Lightweight Remote Fact Exchange Daemon\n");
return NULL;
case 'h':
default:
alfred_usage();
return NULL;
}
}
if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
perror("could not register SIGPIPE handler");
if (signal(SIGCHLD, SIG_IGN) == SIG_ERR)
perror("could not register SIGCHLD handler");
return globals;
}
int main(int argc, char *argv[])
{
struct globals *globals;
globals = alfred_init(argc, argv);
if (!globals)
return 1;
switch (globals->clientmode) {
case CLIENT_NONE:
return alfred_server(globals);
case CLIENT_REQUEST_DATA:
return alfred_client_request_data(globals);
case CLIENT_SET_DATA:
return alfred_client_set_data(globals);
case CLIENT_MODESWITCH:
return alfred_client_modeswitch(globals);
case CLIENT_CHANGE_INTERFACE:
return alfred_client_change_interface(globals);
}
return 0;
}