1 /* strongSwan whack functions to communicate with pluto (whack.c)
2 * Copyright (C) 2001-2002 Mathieu Lafon - Arkoon Network Security
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2 of the License, or (at your
7 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 #include <sys/types.h>
18 #include <sys/socket.h>
26 #include <constants.h>
31 #include "starterwhack.h"
35 #define ip_version(string) (strchr(string, '.') ? AF_INET : AF_INET6)
38 pack_str (char **p
, char **next
, char **roof
)
40 const char *s
= (*p
==NULL
) ?
"" : *p
; /* note: NULL becomes ""! */
41 size_t len
= strlen(s
) + 1;
43 if ((*roof
- *next
) < len
)
45 return 0; /* not enough space */
51 *p
= NULL
; /* don't send pointers on the wire! */
57 send_whack_msg (whack_message_t
*msg
)
59 struct sockaddr_un ctl_addr
= { AF_UNIX
, PLUTO_CTL_FILE
};
62 char *str_next
, *str_roof
;
65 str_next
= (char *)msg
->string
;
66 str_roof
= (char *)&msg
->string
[sizeof(msg
->string
)];
68 if (!pack_str(&msg
->name
, &str_next
, &str_roof
)
69 || !pack_str(&msg
->left
.id
, &str_next
, &str_roof
)
70 || !pack_str(&msg
->left
.cert
, &str_next
, &str_roof
)
71 || !pack_str(&msg
->left
.ca
, &str_next
, &str_roof
)
72 || !pack_str(&msg
->left
.groups
, &str_next
, &str_roof
)
73 || !pack_str(&msg
->left
.updown
, &str_next
, &str_roof
)
74 || !pack_str(&msg
->left
.virt
, &str_next
, &str_roof
)
75 || !pack_str(&msg
->right
.id
, &str_next
, &str_roof
)
76 || !pack_str(&msg
->right
.cert
, &str_next
, &str_roof
)
77 || !pack_str(&msg
->right
.ca
, &str_next
, &str_roof
)
78 || !pack_str(&msg
->right
.groups
, &str_next
, &str_roof
)
79 || !pack_str(&msg
->right
.updown
, &str_next
, &str_roof
)
80 || !pack_str(&msg
->right
.virt
, &str_next
, &str_roof
)
81 || !pack_str(&msg
->keyid
, &str_next
, &str_roof
)
82 || !pack_str(&msg
->myid
, &str_next
, &str_roof
)
83 || !pack_str(&msg
->cacert
, &str_next
, &str_roof
)
84 || !pack_str(&msg
->ldaphost
, &str_next
, &str_roof
)
85 || !pack_str(&msg
->ldapbase
, &str_next
, &str_roof
)
86 || !pack_str(&msg
->crluri
, &str_next
, &str_roof
)
87 || !pack_str(&msg
->crluri2
, &str_next
, &str_roof
)
88 || !pack_str(&msg
->ocspuri
, &str_next
, &str_roof
)
89 || !pack_str(&msg
->ike
, &str_next
, &str_roof
)
90 || !pack_str(&msg
->esp
, &str_next
, &str_roof
)
91 || !pack_str(&msg
->sc_data
, &str_next
, &str_roof
)
92 || (str_roof
- str_next
< msg
->keyval
.len
))
94 plog("send_wack_msg(): can't pack strings");
98 memcpy(str_next
, msg
->keyval
.ptr
, msg
->keyval
.len
);
99 msg
->keyval
.ptr
= NULL
;
100 str_next
+= msg
->keyval
.len
;
101 len
= str_next
- (char *)msg
;
103 /* connect to pluto ctl */
104 sock
= socket(AF_UNIX
, SOCK_STREAM
, 0);
107 plog("socket() failed: %s", strerror(errno
));
110 if (connect(sock
, (struct sockaddr
*)&ctl_addr
,
111 offsetof(struct sockaddr_un
, sun_path
) + strlen(ctl_addr
.sun_path
)) < 0)
113 plog("connect(pluto_ctl) failed: %s", strerror(errno
));
119 if (write(sock
, msg
, len
) != len
)
121 plog("write(pluto_ctl) failed: %s", strerror(errno
));
126 /* TODO: read reply */
132 init_whack_msg(whack_message_t
*msg
)
134 memset(msg
, 0, sizeof(whack_message_t
));
135 msg
->magic
= WHACK_MAGIC
;
139 connection_name(starter_conn_t
*conn
)
141 /* if connection name is '%auto', create a new name like conn_xxxxx */
144 if (streq(conn
->name
, "%auto"))
146 sprintf(buf
, "conn_%ld", conn
->id
);
153 set_whack_end(whack_end_t
*w
, starter_end_t
*end
, sa_family_t family
)
155 if (end
->srcip
&& end
->srcip
[0] != '%')
160 pos
= strchr(end
->srcip
, '/');
163 /* use first address only for pluto */
164 len
= pos
- end
->srcip
;
166 w
->has_srcip
= !end
->has_natip
;
167 ttoaddr(end
->srcip
, len
, ip_version(end
->srcip
), &w
->host_srcip
);
171 anyaddr(AF_INET
, &w
->host_srcip
);
177 w
->groups
= end
->groups
;
178 w
->host_addr
= end
->addr
;
179 w
->has_client
= end
->has_client
;
181 if (family
== AF_INET6
&& isanyaddr(&end
->nexthop
))
183 anyaddr(AF_INET6
, &end
->nexthop
);
185 w
->host_nexthop
= end
->nexthop
;
192 pos
= strchr(end
->subnet
, ',');
195 len
= pos
- end
->subnet
;
197 ttosubnet(end
->subnet
, len
, ip_version(end
->subnet
), &w
->client
);
203 w
->virt
= end
->subnet
;
205 w
->client
.addr
.u
.v4
.sin_family
= addrtypeof(&w
->host_addr
);
208 w
->has_client_wildcard
= end
->has_client_wildcard
;
209 w
->has_port_wildcard
= end
->has_port_wildcard
;
210 w
->has_natip
= end
->has_natip
;
211 w
->allow_any
= end
->allow_any
&& !end
->dns_failed
;
212 w
->modecfg
= end
->modecfg
;
213 w
->hostaccess
= end
->hostaccess
;
214 w
->sendcert
= end
->sendcert
;
215 w
->updown
= end
->updown
;
216 w
->host_port
= IKE_UDP_PORT
;
218 w
->protocol
= end
->protocol
;
222 int port
= htons(w
->port
);
224 setportof(port
, &w
->host_addr
);
225 setportof(port
, &w
->client
.addr
);
230 starter_whack_add_pubkey (starter_conn_t
*conn
, starter_end_t
*end
234 static char keyspace
[1024 + 4];
237 init_whack_msg(&msg
);
239 msg
.whack_key
= TRUE
;
240 msg
.pubkey_alg
= PUBKEY_ALG_RSA
;
241 if (end
->id
&& end
->rsakey
)
243 /* special values to ignore */
244 if (streq(end
->rsakey
, "")
245 || streq(end
->rsakey
, "%none")
246 || streq(end
->rsakey
, "%cert")
247 || streq(end
->rsakey
, "0x00"))
252 err
= atobytes(end
->rsakey
, 0, keyspace
, sizeof(keyspace
), &msg
.keyval
.len
);
255 plog("conn %s/%s: rsakey malformed [%s]", connection_name(conn
), lr
, err
);
260 msg
.keyval
.ptr
= keyspace
;
261 return send_whack_msg(&msg
);
268 starter_whack_add_conn(starter_conn_t
*conn
)
273 init_whack_msg(&msg
);
275 msg
.whack_connection
= TRUE
;
276 msg
.name
= connection_name(conn
);
278 msg
.ikev1
= conn
->keyexchange
!= KEY_EXCHANGE_IKEV2
;
279 msg
.addr_family
= conn
->addr_family
;
280 msg
.tunnel_addr_family
= conn
->tunnel_addr_family
;
281 msg
.sa_ike_life_seconds
= conn
->sa_ike_life_seconds
;
282 msg
.sa_ipsec_life_seconds
= conn
->sa_ipsec_life_seconds
;
283 msg
.sa_rekey_margin
= conn
->sa_rekey_margin
;
284 msg
.sa_rekey_fuzz
= conn
->sa_rekey_fuzz
;
285 msg
.sa_keying_tries
= conn
->sa_keying_tries
;
286 msg
.policy
= conn
->policy
;
289 * Make sure the IKEv2-only policy bits are unset for IKEv1 connections
291 msg
.policy
&= ~POLICY_DONT_REAUTH
;
292 msg
.policy
&= ~POLICY_BEET
;
293 msg
.policy
&= ~POLICY_MOBIKE
;
294 msg
.policy
&= ~POLICY_FORCE_ENCAP
;
296 set_whack_end(&msg
.left
, &conn
->left
, conn
->addr_family
);
297 set_whack_end(&msg
.right
, &conn
->right
, conn
->addr_family
);
301 msg
.pfsgroup
= conn
->pfsgroup
;
303 /* taken from pluto/whack.c */
308 snprintf(esp_buf
, sizeof (esp_buf
), "%s;%s"
309 , msg
.esp ? msg
.esp
: ""
310 , msg
.pfsgroup ? msg
.pfsgroup
: "");
314 DBG_log("Setting --esp=%s", msg
.esp
)
317 msg
.dpd_delay
= conn
->dpd_delay
;
318 msg
.dpd_timeout
= conn
->dpd_timeout
;
319 msg
.dpd_action
= conn
->dpd_action
;
320 /* msg.dpd_count = conn->dpd_count; not supported yet by strongSwan */
322 r
= send_whack_msg(&msg
);
324 if (r
== 0 && (conn
->policy
& POLICY_RSASIG
))
326 r
+= starter_whack_add_pubkey (conn
, &conn
->left
, "left");
327 r
+= starter_whack_add_pubkey (conn
, &conn
->right
, "right");
334 starter_whack_del_conn(starter_conn_t
*conn
)
338 init_whack_msg(&msg
);
339 msg
.whack_delete
= TRUE
;
340 msg
.name
= connection_name(conn
);
341 return send_whack_msg(&msg
);
345 starter_whack_route_conn(starter_conn_t
*conn
)
349 init_whack_msg(&msg
);
350 msg
.whack_route
= TRUE
;
351 msg
.name
= connection_name(conn
);
352 return send_whack_msg(&msg
);
356 starter_whack_initiate_conn(starter_conn_t
*conn
)
360 init_whack_msg(&msg
);
361 msg
.whack_initiate
= TRUE
;
362 msg
.whack_async
= TRUE
;
363 msg
.name
= connection_name(conn
);
364 return send_whack_msg(&msg
);
368 starter_whack_listen(void)
371 init_whack_msg(&msg
);
372 msg
.whack_listen
= TRUE
;
373 return send_whack_msg(&msg
);
376 int starter_whack_shutdown(void)
380 init_whack_msg(&msg
);
381 msg
.whack_shutdown
= TRUE
;
382 return send_whack_msg(&msg
);
386 starter_whack_add_ca(starter_ca_t
*ca
)
390 init_whack_msg(&msg
);
394 msg
.cacert
= ca
->cacert
;
395 msg
.ldaphost
= ca
->ldaphost
;
396 msg
.ldapbase
= ca
->ldapbase
;
397 msg
.crluri
= ca
->crluri
;
398 msg
.crluri2
= ca
->crluri2
;
399 msg
.ocspuri
= ca
->ocspuri
;
400 msg
.whack_strict
= ca
->strict
;
402 return send_whack_msg(&msg
);
406 starter_whack_del_ca(starter_ca_t
*ca
)
410 init_whack_msg(&msg
);
412 msg
.whack_delete
= TRUE
;
416 return send_whack_msg(&msg
);