1 /* Stroke for charon is the counterpart to whack from pluto
2 * Copyright (C) 2007 Tobias Brunner
3 * Copyright (C) 2006 Martin Willi
4 * Hochschule fuer Technik Rapperswil
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 #include <sys/types.h>
20 #include <sys/socket.h>
22 #include <sys/fcntl.h>
30 #include "stroke_msg.h"
31 #include "stroke_keywords.h"
38 static char* push_string(stroke_msg_t
*msg
, char *string
)
40 unsigned long string_start
= msg
->length
;
42 if (string
== NULL
|| msg
->length
+ strlen(string
) >= sizeof(stroke_msg_t
))
48 msg
->length
+= strlen(string
) + 1;
49 strcpy((char*)msg
+ string_start
, string
);
50 return (char*)string_start
;
54 static int send_stroke_msg (stroke_msg_t
*msg
)
56 struct sockaddr_un ctl_addr
;
61 ctl_addr
.sun_family
= AF_UNIX
;
62 strcpy(ctl_addr
.sun_path
, STROKE_SOCKET
);
64 msg
->output_verbosity
= 1; /* CONTROL */
66 sock
= socket(AF_UNIX
, SOCK_STREAM
, 0);
69 fprintf(stderr
, "Opening unix socket %s: %s\n", STROKE_SOCKET
, strerror(errno
));
72 if (connect(sock
, (struct sockaddr
*)&ctl_addr
,
73 offsetof(struct sockaddr_un
, sun_path
) + strlen(ctl_addr
.sun_path
)) < 0)
75 fprintf(stderr
, "Connect to socket failed: %s\n", strerror(errno
));
81 if (write(sock
, msg
, msg
->length
) != msg
->length
)
83 fprintf(stderr
, "writing to socket failed: %s\n", strerror(errno
));
88 while ((byte_count
= read(sock
, buffer
, sizeof(buffer
)-1)) > 0)
90 buffer
[byte_count
] = '\0';
95 fprintf(stderr
, "reading from socket failed: %s\n", strerror(errno
));
102 static int add_connection(char *name
,
103 char *my_id
, char *other_id
,
104 char *my_addr
, char *other_addr
,
105 char *my_nets
, char *other_nets
)
109 memset(&msg
, 0, sizeof(msg
));
110 msg
.length
= offsetof(stroke_msg_t
, buffer
);
111 msg
.type
= STR_ADD_CONN
;
113 msg
.add_conn
.name
= push_string(&msg
, name
);
114 msg
.add_conn
.ikev2
= 1;
115 msg
.add_conn
.auth_method
= 2;
116 msg
.add_conn
.mode
= 1;
117 msg
.add_conn
.mobike
= 1;
118 msg
.add_conn
.dpd
.action
= 1;
120 msg
.add_conn
.me
.id
= push_string(&msg
, my_id
);
121 msg
.add_conn
.me
.address
= push_string(&msg
, my_addr
);
122 msg
.add_conn
.me
.subnets
= push_string(&msg
, my_nets
);
123 msg
.add_conn
.me
.sendcert
= 1;
125 msg
.add_conn
.other
.id
= push_string(&msg
, other_id
);
126 msg
.add_conn
.other
.address
= push_string(&msg
, other_addr
);
127 msg
.add_conn
.other
.subnets
= push_string(&msg
, other_nets
);
128 msg
.add_conn
.other
.sendcert
= 1;
130 return send_stroke_msg(&msg
);
133 static int del_connection(char *name
)
137 msg
.length
= offsetof(stroke_msg_t
, buffer
);
138 msg
.type
= STR_DEL_CONN
;
139 msg
.initiate
.name
= push_string(&msg
, name
);
140 return send_stroke_msg(&msg
);
143 static int initiate_connection(char *name
)
147 msg
.length
= offsetof(stroke_msg_t
, buffer
);
148 msg
.type
= STR_INITIATE
;
149 msg
.initiate
.name
= push_string(&msg
, name
);
150 return send_stroke_msg(&msg
);
153 static int terminate_connection(char *name
)
157 msg
.type
= STR_TERMINATE
;
158 msg
.length
= offsetof(stroke_msg_t
, buffer
);
159 msg
.initiate
.name
= push_string(&msg
, name
);
160 return send_stroke_msg(&msg
);
163 static int terminate_connection_srcip(char *start
, char *end
)
167 msg
.type
= STR_TERMINATE_SRCIP
;
168 msg
.length
= offsetof(stroke_msg_t
, buffer
);
169 msg
.terminate_srcip
.start
= push_string(&msg
, start
);
170 msg
.terminate_srcip
.end
= push_string(&msg
, end
);
171 return send_stroke_msg(&msg
);
174 static int route_connection(char *name
)
178 msg
.type
= STR_ROUTE
;
179 msg
.length
= offsetof(stroke_msg_t
, buffer
);
180 msg
.route
.name
= push_string(&msg
, name
);
181 return send_stroke_msg(&msg
);
184 static int unroute_connection(char *name
)
188 msg
.type
= STR_UNROUTE
;
189 msg
.length
= offsetof(stroke_msg_t
, buffer
);
190 msg
.unroute
.name
= push_string(&msg
, name
);
191 return send_stroke_msg(&msg
);
194 static int show_status(stroke_keyword_t kw
, char *connection
)
198 msg
.type
= (kw
== STROKE_STATUS
)? STR_STATUS
:STR_STATUS_ALL
;
199 msg
.length
= offsetof(stroke_msg_t
, buffer
);
200 msg
.status
.name
= push_string(&msg
, connection
);
201 return send_stroke_msg(&msg
);
204 static int list_flags
[] = {
219 static int list(stroke_keyword_t kw
, int utc
)
224 msg
.length
= offsetof(stroke_msg_t
, buffer
);
226 msg
.list
.flags
= list_flags
[kw
- STROKE_LIST_FIRST
];
227 return send_stroke_msg(&msg
);
230 static int reread_flags
[] = {
240 static int reread(stroke_keyword_t kw
)
244 msg
.type
= STR_REREAD
;
245 msg
.length
= offsetof(stroke_msg_t
, buffer
);
246 msg
.reread
.flags
= reread_flags
[kw
- STROKE_REREAD_FIRST
];
247 return send_stroke_msg(&msg
);
250 static int purge_flags
[] = {
255 static int purge(stroke_keyword_t kw
)
259 msg
.type
= STR_PURGE
;
260 msg
.length
= offsetof(stroke_msg_t
, buffer
);
261 msg
.purge
.flags
= purge_flags
[kw
- STROKE_PURGE_FIRST
];
262 return send_stroke_msg(&msg
);
265 static int leases(stroke_keyword_t kw
, char *pool
, char *address
)
270 msg
.type
= STR_LEASES
;
271 msg
.length
= offsetof(stroke_msg_t
, buffer
);
272 msg
.leases
.pool
= push_string(&msg
, pool
);
273 msg
.leases
.address
= push_string(&msg
, address
);
274 return send_stroke_msg(&msg
);
277 static int set_loglevel(char *type
, u_int level
)
281 msg
.type
= STR_LOGLEVEL
;
282 msg
.length
= offsetof(stroke_msg_t
, buffer
);
283 msg
.loglevel
.type
= push_string(&msg
, type
);
284 msg
.loglevel
.level
= level
;
285 return send_stroke_msg(&msg
);
288 static void exit_error(char *error
)
292 fprintf(stderr
, "%s\n", error
);
297 static void exit_usage(char *error
)
300 printf(" Add a connection:\n");
301 printf(" stroke add NAME MY_ID OTHER_ID MY_ADDR OTHER_ADDR\\\n");
302 printf(" MY_NET OTHER_NET MY_NETBITS OTHER_NETBITS\n");
303 printf(" where: ID is any IKEv2 ID \n");
304 printf(" ADDR is a IPv4 address\n");
305 printf(" NET is a IPv4 subnet in CIDR notation\n");
306 printf(" Delete a connection:\n");
307 printf(" stroke delete NAME\n");
308 printf(" where: NAME is a connection name added with \"stroke add\"\n");
309 printf(" Initiate a connection:\n");
310 printf(" stroke up NAME\n");
311 printf(" where: NAME is a connection name added with \"stroke add\"\n");
312 printf(" Terminate a connection:\n");
313 printf(" stroke down NAME\n");
314 printf(" where: NAME is a connection name added with \"stroke add\"\n");
315 printf(" Terminate a connection by remote srcip:\n");
316 printf(" stroke down-srcip START [END]\n");
317 printf(" where: START and optional END define the clients source IP\n");
318 printf(" Set loglevel for a logging type:\n");
319 printf(" stroke loglevel TYPE LEVEL\n");
320 printf(" where: TYPE is any|dmn|mgr|ike|chd|job|cfg|knl|net|enc|lib\n");
321 printf(" LEVEL is -1|0|1|2|3|4\n");
322 printf(" Show connection status:\n");
323 printf(" stroke status\n");
324 printf(" Show list of authority and attribute certificates:\n");
325 printf(" stroke listcacerts|listocspcerts|listaacerts|listacerts\n");
326 printf(" Show list of end entity certificates, ca info records and crls:\n");
327 printf(" stroke listcerts|listcainfos|listcrls|listall\n");
328 printf(" Show list of supported algorithms:\n");
329 printf(" stroke listalgs\n");
330 printf(" Reload authority and attribute certificates:\n");
331 printf(" stroke rereadcacerts|rereadocspcerts|rereadaacerts|rereadacerts\n");
332 printf(" Reload secrets and crls:\n");
333 printf(" stroke rereadsecrets|rereadcrls|rereadall\n");
334 printf(" Purge ocsp cache entries:\n");
335 printf(" stroke purgeocsp\n");
336 printf(" Purge IKE_SAs without a CHILD_SA:\n");
337 printf(" stroke purgeike\n");
338 printf(" Show leases of a pool:\n");
339 printf(" stroke leases [POOL [ADDRESS]]\n");
343 int main(int argc
, char *argv
[])
345 const stroke_token_t
*token
;
353 token
= in_word_set(argv
[1], strlen(argv
[1]));
357 exit_usage("unknown keyword");
365 exit_usage("\"add\" needs more parameters...");
367 res
= add_connection(argv
[2],
376 exit_usage("\"delete\" needs a connection name");
378 res
= del_connection(argv
[2]);
383 exit_usage("\"up\" needs a connection name");
385 res
= initiate_connection(argv
[2]);
390 exit_usage("\"down\" needs a connection name");
392 res
= terminate_connection(argv
[2]);
394 case STROKE_DOWN_SRCIP
:
397 exit_usage("\"down-srcip\" needs start and optional end address");
399 res
= terminate_connection_srcip(argv
[2], argc
> 3 ? argv
[3] : NULL
);
404 exit_usage("\"route\" needs a connection name");
406 res
= route_connection(argv
[2]);
411 exit_usage("\"unroute\" needs a connection name");
413 res
= unroute_connection(argv
[2]);
415 case STROKE_LOGLEVEL
:
418 exit_usage("\"logtype\" needs more parameters...");
420 res
= set_loglevel(argv
[2], atoi(argv
[3]));
423 case STROKE_STATUSALL
:
424 res
= show_status(token
->kw
, argc
> 2 ? argv
[2] : NULL
);
426 case STROKE_LIST_PUBKEYS
:
427 case STROKE_LIST_CERTS
:
428 case STROKE_LIST_CACERTS
:
429 case STROKE_LIST_OCSPCERTS
:
430 case STROKE_LIST_AACERTS
:
431 case STROKE_LIST_ACERTS
:
432 case STROKE_LIST_CAINFOS
:
433 case STROKE_LIST_CRLS
:
434 case STROKE_LIST_OCSP
:
435 case STROKE_LIST_ALGS
:
436 case STROKE_LIST_ALL
:
437 res
= list(token
->kw
, argc
> 2 && strcmp(argv
[2], "--utc") == 0);
439 case STROKE_REREAD_SECRETS
:
440 case STROKE_REREAD_CACERTS
:
441 case STROKE_REREAD_OCSPCERTS
:
442 case STROKE_REREAD_AACERTS
:
443 case STROKE_REREAD_ACERTS
:
444 case STROKE_REREAD_CRLS
:
445 case STROKE_REREAD_ALL
:
446 res
= reread(token
->kw
);
448 case STROKE_PURGE_OCSP
:
449 case STROKE_PURGE_IKE
:
450 res
= purge(token
->kw
);
453 res
= leases(token
->kw
, argc
> 2 ? argv
[2] : NULL
,
454 argc
> 3 ? argv
[3] : NULL
);