2 * OpenConnect (SSL + DTLS) VPN client
4 * Copyright © 2008-2012 Intel Corporation.
5 * Copyright © 2008 Nick Andrew <nick@nick-andrew.net>
7 * Author: David Woodhouse <dwmw2@infradead.org>
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public License
11 * version 2.1, as published by the Free Software Foundation.
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to:
21 * Free Software Foundation, Inc.
22 * 51 Franklin Street, Fifth Floor,
23 * Boston, MA 02110-1301 USA
26 #ifndef __OPENCONNECT_INTERNAL_H__
27 #define __OPENCONNECT_INTERNAL_H__
29 #include "openconnect.h"
31 #include <openssl/ssl.h>
34 #include <sys/socket.h>
35 #include <sys/select.h>
37 #include <sys/types.h>
45 #define _(s) dgettext("openconnect", s)
51 /****************************************************************************/
63 struct vpn_option *next;
69 #define KA_KEEPALIVE 3
72 struct keepalive_info {
82 struct split_include {
84 struct split_include *next;
87 #define RECONNECT_INTERVAL_MIN 10
88 #define RECONNECT_INTERVAL_MAX 100
90 #define CERT_TYPE_UNKNOWN 0
91 #define CERT_TYPE_PEM 1
92 #define CERT_TYPE_PKCS12 2
93 #define CERT_TYPE_TPM 3
95 struct openconnect_info {
105 char *csd_scriptname;
108 pxProxyFactory *proxy_factory;
114 const char *localname;
118 int cert_expire_warning;
125 const char *servercert;
126 const char *xmlconfig;
127 char xmlsha1[(SHA_DIGEST_LENGTH * 2) + 1];
136 int no_http_keepalive;
140 char *cookie; /* Pointer to within cookies list */
141 struct vpn_option *cookies;
142 struct vpn_option *cstp_options;
143 struct vpn_option *dtls_options;
147 struct keepalive_info ssl_times;
148 int owe_ssl_dpd_response;
149 struct pkt *deflate_pkt;
150 struct pkt *current_ssl_pkt;
151 struct pkt *pending_deflated_pkt;
153 z_stream inflate_strm;
154 uint32_t inflate_adler32;
155 z_stream deflate_strm;
156 uint32_t deflate_adler32;
159 int reconnect_timeout;
160 int reconnect_interval;
161 int dtls_attempt_period;
162 time_t new_dtls_started;
166 SSL_SESSION *dtls_session;
167 struct keepalive_info dtls_times;
168 unsigned char dtls_session_id[32];
169 unsigned char dtls_secret[48];
172 const char *vpnc_script;
178 const char *vpn_addr;
179 const char *vpn_netmask;
180 const char *vpn_addr6;
181 const char *vpn_netmask6;
182 const char *vpn_dns[3];
183 const char *vpn_nbns[3];
184 const char *vpn_domain;
185 const char *vpn_proxy_pac;
186 struct split_include *split_includes;
187 struct split_include *split_excludes;
204 struct pkt *incoming_queue;
205 struct pkt *outgoing_queue;
209 socklen_t peer_addrlen;
210 struct sockaddr *peer_addr;
211 struct sockaddr *dtls_addr;
216 const char *quit_reason;
219 openconnect_validate_peer_cert_vfn validate_peer_cert;
220 openconnect_write_new_config_vfn write_new_config;
221 openconnect_process_auth_form_vfn process_auth_form;
222 openconnect_progress_vfn progress;
227 #define AC_PKT_DATA 0 /* Uncompressed data */
228 #define AC_PKT_DPD_OUT 3 /* Dead Peer Detection */
229 #define AC_PKT_DPD_RESP 4 /* DPD response */
230 #define AC_PKT_DISCONN 5 /* Client disconnection notice */
231 #define AC_PKT_KEEPALIVE 7 /* Keepalive */
232 #define AC_PKT_COMPRESSED 8 /* Compressed data */
233 #define AC_PKT_TERM_SERVER 9 /* Server kick */
236 #if OPENSSL_VERSION_NUMBER >= 0x00909000L
237 #define method_const const
242 #define vpn_progress(vpninfo, ...) (vpninfo)->progress ((vpninfo)->cbdata, __VA_ARGS__)
244 /****************************************************************************/
245 /* Oh Solaris how we hate thee! */
247 #define time(x) openconnect__time(x)
248 time_t openconnect__time(time_t *t);
250 #ifndef HAVE_ASPRINTF
251 #define asprintf openconnect__asprintf
252 int openconnect__asprintf(char **strp, const char *fmt, ...);
255 #define getline openconnect__getline
256 ssize_t openconnect__getline(char **lineptr, size_t *n, FILE *stream);
259 /****************************************************************************/
262 int setup_tun(struct openconnect_info *vpninfo);
263 int tun_mainloop(struct openconnect_info *vpninfo, int *timeout);
264 void shutdown_tun(struct openconnect_info *vpninfo);
265 int script_config_tun (struct openconnect_info *vpninfo, const char *reason);
268 unsigned char unhex(const char *data);
269 int setup_dtls(struct openconnect_info *vpninfo);
270 int dtls_mainloop(struct openconnect_info *vpninfo, int *timeout);
271 int dtls_try_handshake(struct openconnect_info *vpninfo);
272 int connect_dtls_socket(struct openconnect_info *vpninfo);
275 int make_cstp_connection(struct openconnect_info *vpninfo);
276 int cstp_mainloop(struct openconnect_info *vpninfo, int *timeout);
277 int cstp_bye(struct openconnect_info *vpninfo, const char *reason);
278 int cstp_reconnect(struct openconnect_info *vpninfo);
281 int __attribute__ ((format (printf, 2, 3)))
282 openconnect_SSL_printf(struct openconnect_info *vpninfo, const char *fmt, ...);
283 int openconnect_SSL_gets(struct openconnect_info *vpninfo, char *buf, size_t len);
284 int openconnect_SSL_write(struct openconnect_info *vpninfo, char *buf, size_t len);
285 int openconnect_SSL_read(struct openconnect_info *vpninfo, char *buf, size_t len);
286 int openconnect_open_https(struct openconnect_info *vpninfo);
287 void openconnect_close_https(struct openconnect_info *vpninfo);
288 int get_cert_md5_fingerprint(struct openconnect_info *vpninfo, X509 *cert,
290 void openconnect_report_ssl_errors(struct openconnect_info *vpninfo);
293 int vpn_add_pollfd(struct openconnect_info *vpninfo, int fd, short events);
294 int vpn_mainloop(struct openconnect_info *vpninfo);
295 int queue_new_packet(struct pkt **q, void *buf, int len);
296 void queue_packet(struct pkt **q, struct pkt *new);
297 int keepalive_action(struct keepalive_info *ka, int *timeout);
298 int ka_stalled_dpd_time(struct keepalive_info *ka, int *timeout);
303 int config_lookup_host(struct openconnect_info *vpninfo, const char *host);
306 int parse_xml_response(struct openconnect_info *vpninfo, char *response,
307 char *request_body, int req_len, const char **method,
308 const char **request_body_type);
311 char *openconnect_create_useragent(const char *base);
312 int process_proxy(struct openconnect_info *vpninfo, int ssl_sock);
313 int internal_parse_url(char *url, char **res_proto, char **res_host,
314 int *res_port, char **res_path, int default_port);
317 int set_openssl_ui(void);
320 int generate_securid_tokencodes(struct openconnect_info *vpninfo);
321 int add_securid_pin(char *token, char *pin);
324 extern const char *openconnect_version_str;
326 #endif /* __OPENCONNECT_INTERNAL_H__ */