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
20 #include <sys/types.h>
22 #include <sys/socket.h>
24 #include <sys/fcntl.h>
31 #include "stroke_msg.h"
32 #include "stroke_keywords.h"
39 static char* push_string(stroke_msg_t
*msg
, char *string
)
41 unsigned long string_start
= msg
->length
;
43 if (string
== NULL
|| msg
->length
+ strlen(string
) >= sizeof(stroke_msg_t
))
49 msg
->length
+= strlen(string
) + 1;
50 strcpy((char*)msg
+ string_start
, string
);
51 return (char*)string_start
;
55 static int send_stroke_msg (stroke_msg_t
*msg
)
57 struct sockaddr_un ctl_addr
= { AF_UNIX
, STROKE_SOCKET
};
62 msg
->output_verbosity
= 1; /* CONTROL */
64 sock
= socket(AF_UNIX
, SOCK_STREAM
, 0);
67 fprintf(stderr
, "Opening unix socket %s: %s\n", STROKE_SOCKET
, strerror(errno
));
70 if (connect(sock
, (struct sockaddr
*)&ctl_addr
,
71 offsetof(struct sockaddr_un
, sun_path
) + strlen(ctl_addr
.sun_path
)) < 0)
73 fprintf(stderr
, "Connect to socket failed: %s\n", strerror(errno
));
79 if (write(sock
, msg
, msg
->length
) != msg
->length
)
81 fprintf(stderr
, "writing to socket failed: %s\n", strerror(errno
));
86 while ((byte_count
= read(sock
, buffer
, sizeof(buffer
)-1)) > 0)
88 buffer
[byte_count
] = '\0';
93 fprintf(stderr
, "reading from socket failed: %s\n", strerror(errno
));
100 static int add_connection(char *name
,
101 char *my_id
, char *other_id
,
102 char *my_addr
, char *other_addr
,
103 char *my_net
, char *other_net
,
104 u_int my_netmask
, u_int other_netmask
)
108 memset(&msg
, 0, sizeof(msg
));
109 msg
.length
= offsetof(stroke_msg_t
, buffer
);
110 msg
.type
= STR_ADD_CONN
;
112 msg
.add_conn
.name
= push_string(&msg
, name
);
113 msg
.add_conn
.ikev2
= 1;
114 msg
.add_conn
.auth_method
= 2;
115 msg
.add_conn
.mode
= 1;
116 msg
.add_conn
.mobike
= 1;
117 msg
.add_conn
.dpd
.action
= 1;
119 msg
.add_conn
.me
.id
= push_string(&msg
, my_id
);
120 msg
.add_conn
.me
.address
= push_string(&msg
, my_addr
);
121 msg
.add_conn
.me
.subnet
= push_string(&msg
, my_net
);
122 msg
.add_conn
.me
.subnet_mask
= my_netmask
;
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
.subnet
= push_string(&msg
, other_net
);
128 msg
.add_conn
.other
.subnet_mask
= other_netmask
;
129 msg
.add_conn
.other
.sendcert
= 1;
131 return send_stroke_msg(&msg
);
134 static int del_connection(char *name
)
138 msg
.length
= offsetof(stroke_msg_t
, buffer
);
139 msg
.type
= STR_DEL_CONN
;
140 msg
.initiate
.name
= push_string(&msg
, name
);
141 return send_stroke_msg(&msg
);
144 static int initiate_connection(char *name
)
148 msg
.length
= offsetof(stroke_msg_t
, buffer
);
149 msg
.type
= STR_INITIATE
;
150 msg
.initiate
.name
= push_string(&msg
, name
);
151 return send_stroke_msg(&msg
);
154 static int terminate_connection(char *name
)
158 msg
.type
= STR_TERMINATE
;
159 msg
.length
= offsetof(stroke_msg_t
, buffer
);
160 msg
.initiate
.name
= push_string(&msg
, name
);
161 return send_stroke_msg(&msg
);
164 static int route_connection(char *name
)
168 msg
.type
= STR_ROUTE
;
169 msg
.length
= offsetof(stroke_msg_t
, buffer
);
170 msg
.route
.name
= push_string(&msg
, name
);
171 return send_stroke_msg(&msg
);
174 static int unroute_connection(char *name
)
178 msg
.type
= STR_UNROUTE
;
179 msg
.length
= offsetof(stroke_msg_t
, buffer
);
180 msg
.unroute
.name
= push_string(&msg
, name
);
181 return send_stroke_msg(&msg
);
184 static int show_status(stroke_keyword_t kw
, char *connection
)
188 msg
.type
= (kw
== STROKE_STATUS
)? STR_STATUS
:STR_STATUS_ALL
;
189 msg
.length
= offsetof(stroke_msg_t
, buffer
);
190 msg
.status
.name
= push_string(&msg
, connection
);
191 return send_stroke_msg(&msg
);
194 static int list_flags
[] = {
207 static int list(stroke_keyword_t kw
, int utc
)
212 msg
.length
= offsetof(stroke_msg_t
, buffer
);
214 msg
.list
.flags
= list_flags
[kw
- STROKE_LIST_FIRST
];
215 return send_stroke_msg(&msg
);
218 static int reread_flags
[] = {
228 static int reread(stroke_keyword_t kw
)
232 msg
.type
= STR_REREAD
;
233 msg
.length
= offsetof(stroke_msg_t
, buffer
);
234 msg
.reread
.flags
= reread_flags
[kw
- STROKE_REREAD_FIRST
];
235 return send_stroke_msg(&msg
);
238 static int purge_flags
[] = {
242 static int purge(stroke_keyword_t kw
)
246 msg
.type
= STR_PURGE
;
247 msg
.length
= offsetof(stroke_msg_t
, buffer
);
248 msg
.purge
.flags
= purge_flags
[kw
- STROKE_PURGE_FIRST
];
249 return send_stroke_msg(&msg
);
252 static int set_loglevel(char *type
, u_int level
)
256 msg
.type
= STR_LOGLEVEL
;
257 msg
.length
= offsetof(stroke_msg_t
, buffer
);
258 msg
.loglevel
.type
= push_string(&msg
, type
);
259 msg
.loglevel
.level
= level
;
260 return send_stroke_msg(&msg
);
263 static void exit_error(char *error
)
267 fprintf(stderr
, "%s\n", error
);
272 static void exit_usage(char *error
)
275 printf(" Add a connection:\n");
276 printf(" stroke add NAME MY_ID OTHER_ID MY_ADDR OTHER_ADDR\\\n");
277 printf(" MY_NET OTHER_NET MY_NETBITS OTHER_NETBITS\n");
278 printf(" where: ID is any IKEv2 ID \n");
279 printf(" ADDR is a IPv4 address\n");
280 printf(" NET is a IPv4 address of the subnet to tunnel\n");
281 printf(" NETBITS is the size of the subnet, as the \"24\" in 192.168.0.0/24\n");
282 printf(" Delete a connection:\n");
283 printf(" stroke delete NAME\n");
284 printf(" where: NAME is a connection name added with \"stroke add\"\n");
285 printf(" Initiate a connection:\n");
286 printf(" stroke up NAME\n");
287 printf(" where: NAME is a connection name added with \"stroke add\"\n");
288 printf(" Terminate a connection:\n");
289 printf(" stroke down NAME\n");
290 printf(" where: NAME is a connection name added with \"stroke add\"\n");
291 printf(" Set loglevel for a logging type:\n");
292 printf(" stroke loglevel TYPE LEVEL\n");
293 printf(" where: TYPE is any|dmn|mgr|ike|chd|job|cfg|knl|net|enc|lib\n");
294 printf(" LEVEL is -1|0|1|2|3|4\n");
295 printf(" Show connection status:\n");
296 printf(" stroke status\n");
297 printf(" Show list of authority and attribute certificates:\n");
298 printf(" stroke listcacerts|listocspcerts|listaacerts|listacerts\n");
299 printf(" Show list of end entity certificates, ca info records and crls:\n");
300 printf(" stroke listcerts|listcainfos|listcrls|listall\n");
301 printf(" Reload authority and attribute certificates:\n");
302 printf(" stroke rereadcacerts|rereadocspcerts|rereadaacerts|rereadacerts\n");
303 printf(" Reload secrets and crls:\n");
304 printf(" stroke rereadsecrets|rereadcrls|rereadall\n");
305 printf(" Purge ocsp cache entries:\n");
306 printf(" stroke purgeocsp\n");
310 int main(int argc
, char *argv
[])
312 const stroke_token_t
*token
;
320 token
= in_word_set(argv
[1], strlen(argv
[1]));
324 exit_usage("unknown keyword");
332 exit_usage("\"add\" needs more parameters...");
334 res
= add_connection(argv
[2],
338 atoi(argv
[9]), atoi(argv
[10]));
344 exit_usage("\"delete\" needs a connection name");
346 res
= del_connection(argv
[2]);
351 exit_usage("\"up\" needs a connection name");
353 res
= initiate_connection(argv
[2]);
358 exit_usage("\"down\" needs a connection name");
360 res
= terminate_connection(argv
[2]);
365 exit_usage("\"route\" needs a connection name");
367 res
= route_connection(argv
[2]);
372 exit_usage("\"unroute\" needs a connection name");
374 res
= unroute_connection(argv
[2]);
376 case STROKE_LOGLEVEL
:
379 exit_usage("\"logtype\" needs more parameters...");
381 res
= set_loglevel(argv
[2], atoi(argv
[3]));
384 case STROKE_STATUSALL
:
385 res
= show_status(token
->kw
, argc
> 2 ? argv
[2] : NULL
);
387 case STROKE_LIST_CERTS
:
388 case STROKE_LIST_CACERTS
:
389 case STROKE_LIST_OCSPCERTS
:
390 case STROKE_LIST_AACERTS
:
391 case STROKE_LIST_ACERTS
:
392 case STROKE_LIST_CAINFOS
:
393 case STROKE_LIST_CRLS
:
394 case STROKE_LIST_OCSP
:
395 case STROKE_LIST_ALL
:
396 res
= list(token
->kw
, argc
> 2 && strcmp(argv
[2], "--utc") == 0);
398 case STROKE_REREAD_SECRETS
:
399 case STROKE_REREAD_CACERTS
:
400 case STROKE_REREAD_OCSPCERTS
:
401 case STROKE_REREAD_AACERTS
:
402 case STROKE_REREAD_ACERTS
:
403 case STROKE_REREAD_CRLS
:
404 case STROKE_REREAD_ALL
:
405 res
= reread(token
->kw
);
407 case STROKE_PURGE_OCSP
:
408 res
= purge(token
->kw
);