Bump version to 24.2
[bpt/emacs.git] / src / gnutls.c
CommitLineData
8af55556 1/* GnuTLS glue for GNU Emacs.
acaf905b 2 Copyright (C) 2010-2012 Free Software Foundation, Inc.
8af55556
TZ
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software: you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation, either version 3 of the License, or
9(at your option) any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
18
19#include <config.h>
20#include <errno.h>
21#include <setjmp.h>
22
23#include "lisp.h"
24#include "process.h"
25
26#ifdef HAVE_GNUTLS
27#include <gnutls/gnutls.h>
28
e061a11b
TZ
29#ifdef WINDOWSNT
30#include <windows.h>
31#include "w32.h"
32#endif
33
34static int
35emacs_gnutls_handle_error (gnutls_session_t, int err);
36
0898ca10 37static Lisp_Object Qgnutls_dll;
bafcf6a5
JB
38static Lisp_Object Qgnutls_code;
39static Lisp_Object Qgnutls_anon, Qgnutls_x509pki;
40static Lisp_Object Qgnutls_e_interrupted, Qgnutls_e_again,
8af55556 41 Qgnutls_e_invalid_session, Qgnutls_e_not_ready_for_handshake;
bafcf6a5 42static int gnutls_global_initialized;
8af55556 43
c1ae068b 44/* The following are for the property list of `gnutls-boot'. */
a3720aa2
AS
45static Lisp_Object QCgnutls_bootprop_priority;
46static Lisp_Object QCgnutls_bootprop_trustfiles;
47static Lisp_Object QCgnutls_bootprop_keylist;
48static Lisp_Object QCgnutls_bootprop_crlfiles;
49static Lisp_Object QCgnutls_bootprop_callbacks;
50static Lisp_Object QCgnutls_bootprop_loglevel;
51static Lisp_Object QCgnutls_bootprop_hostname;
52static Lisp_Object QCgnutls_bootprop_min_prime_bits;
53static Lisp_Object QCgnutls_bootprop_verify_flags;
54static Lisp_Object QCgnutls_bootprop_verify_hostname_error;
e061a11b
TZ
55
56/* Callback keys for `gnutls-boot'. Unused currently. */
a3720aa2 57static Lisp_Object QCgnutls_bootprop_callbacks_verify;
c1ae068b 58
0898ca10
JB
59static void gnutls_log_function (int, const char *);
60static void gnutls_log_function2 (int, const char*, const char*);
61
62\f
63#ifdef WINDOWSNT
64
65/* Macro for defining functions that will be loaded from the GnuTLS DLL. */
dbdb9a7c 66#define DEF_GNUTLS_FN(rettype,func,args) static rettype (FAR CDECL *fn_##func)args
0898ca10
JB
67
68/* Macro for loading GnuTLS functions from the library. */
69#define LOAD_GNUTLS_FN(lib,func) { \
70 fn_##func = (void *) GetProcAddress (lib, #func); \
71 if (!fn_##func) return 0; \
72 }
73
74DEF_GNUTLS_FN (gnutls_alert_description_t, gnutls_alert_get,
b5f03016 75 (gnutls_session_t));
0898ca10 76DEF_GNUTLS_FN (const char *, gnutls_alert_get_name,
b5f03016 77 (gnutls_alert_description_t));
0898ca10
JB
78DEF_GNUTLS_FN (int, gnutls_alert_send_appropriate, (gnutls_session_t, int));
79DEF_GNUTLS_FN (int, gnutls_anon_allocate_client_credentials,
b5f03016 80 (gnutls_anon_client_credentials_t *));
0898ca10 81DEF_GNUTLS_FN (void, gnutls_anon_free_client_credentials,
b5f03016 82 (gnutls_anon_client_credentials_t));
0898ca10
JB
83DEF_GNUTLS_FN (int, gnutls_bye, (gnutls_session_t, gnutls_close_request_t));
84DEF_GNUTLS_FN (int, gnutls_certificate_allocate_credentials,
b5f03016 85 (gnutls_certificate_credentials_t *));
0898ca10 86DEF_GNUTLS_FN (void, gnutls_certificate_free_credentials,
b5f03016 87 (gnutls_certificate_credentials_t));
0898ca10 88DEF_GNUTLS_FN (const gnutls_datum_t *, gnutls_certificate_get_peers,
b5f03016 89 (gnutls_session_t, unsigned int *));
0898ca10 90DEF_GNUTLS_FN (void, gnutls_certificate_set_verify_flags,
b5f03016 91 (gnutls_certificate_credentials_t, unsigned int));
0898ca10 92DEF_GNUTLS_FN (int, gnutls_certificate_set_x509_crl_file,
b5f03016
AS
93 (gnutls_certificate_credentials_t, const char *,
94 gnutls_x509_crt_fmt_t));
0898ca10 95DEF_GNUTLS_FN (int, gnutls_certificate_set_x509_key_file,
b5f03016
AS
96 (gnutls_certificate_credentials_t, const char *, const char *,
97 gnutls_x509_crt_fmt_t));
0898ca10 98DEF_GNUTLS_FN (int, gnutls_certificate_set_x509_trust_file,
b5f03016
AS
99 (gnutls_certificate_credentials_t, const char *,
100 gnutls_x509_crt_fmt_t));
0898ca10 101DEF_GNUTLS_FN (gnutls_certificate_type_t, gnutls_certificate_type_get,
b5f03016 102 (gnutls_session_t));
0898ca10 103DEF_GNUTLS_FN (int, gnutls_certificate_verify_peers2,
b5f03016 104 (gnutls_session_t, unsigned int *));
0898ca10 105DEF_GNUTLS_FN (int, gnutls_credentials_set,
b5f03016 106 (gnutls_session_t, gnutls_credentials_type_t, void *));
0898ca10 107DEF_GNUTLS_FN (void, gnutls_deinit, (gnutls_session_t));
87e86684 108DEF_GNUTLS_FN (void, gnutls_dh_set_prime_bits,
b5f03016 109 (gnutls_session_t, unsigned int));
0898ca10
JB
110DEF_GNUTLS_FN (int, gnutls_error_is_fatal, (int));
111DEF_GNUTLS_FN (int, gnutls_global_init, (void));
112DEF_GNUTLS_FN (void, gnutls_global_set_log_function, (gnutls_log_func));
113DEF_GNUTLS_FN (void, gnutls_global_set_log_level, (int));
9cf9f756
PE
114DEF_GNUTLS_FN (void, gnutls_global_set_mem_functions,
115 (gnutls_alloc_function, gnutls_alloc_function,
116 gnutls_is_secure_function, gnutls_realloc_function,
117 gnutls_free_function));
0898ca10
JB
118DEF_GNUTLS_FN (int, gnutls_handshake, (gnutls_session_t));
119DEF_GNUTLS_FN (int, gnutls_init, (gnutls_session_t *, gnutls_connection_end_t));
120DEF_GNUTLS_FN (int, gnutls_priority_set_direct,
b5f03016 121 (gnutls_session_t, const char *, const char **));
0898ca10
JB
122DEF_GNUTLS_FN (size_t, gnutls_record_check_pending, (gnutls_session_t));
123DEF_GNUTLS_FN (ssize_t, gnutls_record_recv, (gnutls_session_t, void *, size_t));
124DEF_GNUTLS_FN (ssize_t, gnutls_record_send,
b5f03016 125 (gnutls_session_t, const void *, size_t));
0898ca10
JB
126DEF_GNUTLS_FN (const char *, gnutls_strerror, (int));
127DEF_GNUTLS_FN (void, gnutls_transport_set_errno, (gnutls_session_t, int));
651e947e 128DEF_GNUTLS_FN (const char *, gnutls_check_version, (const char *));
0898ca10
JB
129DEF_GNUTLS_FN (void, gnutls_transport_set_lowat, (gnutls_session_t, int));
130DEF_GNUTLS_FN (void, gnutls_transport_set_ptr2,
b5f03016
AS
131 (gnutls_session_t, gnutls_transport_ptr_t,
132 gnutls_transport_ptr_t));
0898ca10 133DEF_GNUTLS_FN (void, gnutls_transport_set_pull_function,
b5f03016 134 (gnutls_session_t, gnutls_pull_func));
0898ca10 135DEF_GNUTLS_FN (void, gnutls_transport_set_push_function,
b5f03016 136 (gnutls_session_t, gnutls_push_func));
0898ca10 137DEF_GNUTLS_FN (int, gnutls_x509_crt_check_hostname,
b5f03016 138 (gnutls_x509_crt_t, const char *));
0898ca10
JB
139DEF_GNUTLS_FN (void, gnutls_x509_crt_deinit, (gnutls_x509_crt_t));
140DEF_GNUTLS_FN (int, gnutls_x509_crt_import,
b5f03016
AS
141 (gnutls_x509_crt_t, const gnutls_datum_t *,
142 gnutls_x509_crt_fmt_t));
0898ca10
JB
143DEF_GNUTLS_FN (int, gnutls_x509_crt_init, (gnutls_x509_crt_t *));
144
145static int
146init_gnutls_functions (Lisp_Object libraries)
147{
148 HMODULE library;
ac389d0c 149 int max_log_level = 1;
0898ca10
JB
150
151 if (!(library = w32_delayed_load (libraries, Qgnutls_dll)))
152 {
ac389d0c 153 GNUTLS_LOG (1, max_log_level, "GnuTLS library not found");
0898ca10
JB
154 return 0;
155 }
156
157 LOAD_GNUTLS_FN (library, gnutls_alert_get);
158 LOAD_GNUTLS_FN (library, gnutls_alert_get_name);
159 LOAD_GNUTLS_FN (library, gnutls_alert_send_appropriate);
160 LOAD_GNUTLS_FN (library, gnutls_anon_allocate_client_credentials);
161 LOAD_GNUTLS_FN (library, gnutls_anon_free_client_credentials);
162 LOAD_GNUTLS_FN (library, gnutls_bye);
163 LOAD_GNUTLS_FN (library, gnutls_certificate_allocate_credentials);
164 LOAD_GNUTLS_FN (library, gnutls_certificate_free_credentials);
165 LOAD_GNUTLS_FN (library, gnutls_certificate_get_peers);
166 LOAD_GNUTLS_FN (library, gnutls_certificate_set_verify_flags);
167 LOAD_GNUTLS_FN (library, gnutls_certificate_set_x509_crl_file);
168 LOAD_GNUTLS_FN (library, gnutls_certificate_set_x509_key_file);
169 LOAD_GNUTLS_FN (library, gnutls_certificate_set_x509_trust_file);
170 LOAD_GNUTLS_FN (library, gnutls_certificate_type_get);
171 LOAD_GNUTLS_FN (library, gnutls_certificate_verify_peers2);
172 LOAD_GNUTLS_FN (library, gnutls_credentials_set);
173 LOAD_GNUTLS_FN (library, gnutls_deinit);
87e86684 174 LOAD_GNUTLS_FN (library, gnutls_dh_set_prime_bits);
0898ca10
JB
175 LOAD_GNUTLS_FN (library, gnutls_error_is_fatal);
176 LOAD_GNUTLS_FN (library, gnutls_global_init);
177 LOAD_GNUTLS_FN (library, gnutls_global_set_log_function);
178 LOAD_GNUTLS_FN (library, gnutls_global_set_log_level);
9cf9f756 179 LOAD_GNUTLS_FN (library, gnutls_global_set_mem_functions);
0898ca10
JB
180 LOAD_GNUTLS_FN (library, gnutls_handshake);
181 LOAD_GNUTLS_FN (library, gnutls_init);
182 LOAD_GNUTLS_FN (library, gnutls_priority_set_direct);
183 LOAD_GNUTLS_FN (library, gnutls_record_check_pending);
184 LOAD_GNUTLS_FN (library, gnutls_record_recv);
185 LOAD_GNUTLS_FN (library, gnutls_record_send);
186 LOAD_GNUTLS_FN (library, gnutls_strerror);
187 LOAD_GNUTLS_FN (library, gnutls_transport_set_errno);
651e947e
EZ
188 LOAD_GNUTLS_FN (library, gnutls_check_version);
189 /* We don't need to call gnutls_transport_set_lowat in GnuTLS 2.11.1
190 and later, and the function was removed entirely in 3.0.0. */
191 if (!fn_gnutls_check_version ("2.11.1"))
192 LOAD_GNUTLS_FN (library, gnutls_transport_set_lowat);
0898ca10
JB
193 LOAD_GNUTLS_FN (library, gnutls_transport_set_ptr2);
194 LOAD_GNUTLS_FN (library, gnutls_transport_set_pull_function);
195 LOAD_GNUTLS_FN (library, gnutls_transport_set_push_function);
196 LOAD_GNUTLS_FN (library, gnutls_x509_crt_check_hostname);
197 LOAD_GNUTLS_FN (library, gnutls_x509_crt_deinit);
198 LOAD_GNUTLS_FN (library, gnutls_x509_crt_import);
199 LOAD_GNUTLS_FN (library, gnutls_x509_crt_init);
200
925a6be7 201 max_log_level = global_gnutls_log_level;
ac389d0c
JB
202
203 GNUTLS_LOG2 (1, max_log_level, "GnuTLS library loaded:",
b5f03016 204 SDATA (Fget (Qgnutls_dll, QCloaded_from)));
0898ca10
JB
205 return 1;
206}
207
208#else /* !WINDOWSNT */
209
210#define fn_gnutls_alert_get gnutls_alert_get
211#define fn_gnutls_alert_get_name gnutls_alert_get_name
212#define fn_gnutls_alert_send_appropriate gnutls_alert_send_appropriate
213#define fn_gnutls_anon_allocate_client_credentials gnutls_anon_allocate_client_credentials
214#define fn_gnutls_anon_free_client_credentials gnutls_anon_free_client_credentials
215#define fn_gnutls_bye gnutls_bye
216#define fn_gnutls_certificate_allocate_credentials gnutls_certificate_allocate_credentials
217#define fn_gnutls_certificate_free_credentials gnutls_certificate_free_credentials
218#define fn_gnutls_certificate_get_peers gnutls_certificate_get_peers
219#define fn_gnutls_certificate_set_verify_flags gnutls_certificate_set_verify_flags
220#define fn_gnutls_certificate_set_x509_crl_file gnutls_certificate_set_x509_crl_file
639c109b 221#define fn_gnutls_certificate_set_x509_key_file gnutls_certificate_set_x509_key_file
520cf78a 222#define fn_gnutls_certificate_set_x509_trust_file gnutls_certificate_set_x509_trust_file
0898ca10
JB
223#define fn_gnutls_certificate_type_get gnutls_certificate_type_get
224#define fn_gnutls_certificate_verify_peers2 gnutls_certificate_verify_peers2
225#define fn_gnutls_credentials_set gnutls_credentials_set
226#define fn_gnutls_deinit gnutls_deinit
87e86684 227#define fn_gnutls_dh_set_prime_bits gnutls_dh_set_prime_bits
0898ca10
JB
228#define fn_gnutls_error_is_fatal gnutls_error_is_fatal
229#define fn_gnutls_global_init gnutls_global_init
230#define fn_gnutls_global_set_log_function gnutls_global_set_log_function
231#define fn_gnutls_global_set_log_level gnutls_global_set_log_level
9cf9f756 232#define fn_gnutls_global_set_mem_functions gnutls_global_set_mem_functions
0898ca10
JB
233#define fn_gnutls_handshake gnutls_handshake
234#define fn_gnutls_init gnutls_init
235#define fn_gnutls_priority_set_direct gnutls_priority_set_direct
236#define fn_gnutls_record_check_pending gnutls_record_check_pending
237#define fn_gnutls_record_recv gnutls_record_recv
238#define fn_gnutls_record_send gnutls_record_send
239#define fn_gnutls_strerror gnutls_strerror
240#define fn_gnutls_transport_set_errno gnutls_transport_set_errno
0898ca10 241#define fn_gnutls_transport_set_ptr2 gnutls_transport_set_ptr2
0898ca10
JB
242#define fn_gnutls_x509_crt_check_hostname gnutls_x509_crt_check_hostname
243#define fn_gnutls_x509_crt_deinit gnutls_x509_crt_deinit
244#define fn_gnutls_x509_crt_import gnutls_x509_crt_import
245#define fn_gnutls_x509_crt_init gnutls_x509_crt_init
246
247#endif /* !WINDOWSNT */
248
249\f
e63c261b 250/* Function to log a simple message. */
74f1829d 251static void
e061a11b
TZ
252gnutls_log_function (int level, const char* string)
253{
254 message ("gnutls.c: [%d] %s", level, string);
255}
256
e63c261b 257/* Function to log a message and a string. */
e061a11b
TZ
258static void
259gnutls_log_function2 (int level, const char* string, const char* extra)
260{
261 message ("gnutls.c: [%d] %s %s", level, string, extra);
262}
263
e63c261b
CY
264/* Function to log a message and an integer. */
265static void
266gnutls_log_function2i (int level, const char* string, int extra)
267{
268 message ("gnutls.c: [%d] %s %d", level, string, extra);
269}
270
e061a11b 271static int
bac5cef8
LMI
272emacs_gnutls_handshake (struct Lisp_Process *proc)
273{
274 gnutls_session_t state = proc->gnutls_state;
275 int ret;
276
277 if (proc->gnutls_initstage < GNUTLS_STAGE_HANDSHAKE_CANDO)
6a7a1b0b 278 return -1;
bac5cef8
LMI
279
280 if (proc->gnutls_initstage < GNUTLS_STAGE_TRANSPORT_POINTERS_SET)
e6059fa2 281 {
e061a11b
TZ
282#ifdef WINDOWSNT
283 /* On W32 we cannot transfer socket handles between different runtime
b5f03016
AS
284 libraries, so we tell GnuTLS to use our special push/pull
285 functions. */
0898ca10 286 fn_gnutls_transport_set_ptr2 (state,
b5f03016
AS
287 (gnutls_transport_ptr_t) proc,
288 (gnutls_transport_ptr_t) proc);
0898ca10
JB
289 fn_gnutls_transport_set_push_function (state, &emacs_gnutls_push);
290 fn_gnutls_transport_set_pull_function (state, &emacs_gnutls_pull);
e061a11b
TZ
291
292 /* For non blocking sockets or other custom made pull/push
b5f03016
AS
293 functions the gnutls_transport_set_lowat must be called, with
294 a zero low water mark value. (GnuTLS 2.10.4 documentation)
e061a11b 295
b5f03016
AS
296 (Note: this is probably not strictly necessary as the lowat
297 value is only used when no custom pull/push functions are
298 set.) */
651e947e
EZ
299 /* According to GnuTLS NEWS file, lowat level has been set to
300 zero by default in version 2.11.1, and the function
301 gnutls_transport_set_lowat was removed from the library in
302 version 2.99.0. */
303 if (!fn_gnutls_check_version ("2.11.1"))
304 fn_gnutls_transport_set_lowat (state, 0);
e061a11b 305#else
c1ae068b 306 /* This is how GnuTLS takes sockets: as file descriptors passed
b5f03016
AS
307 in. For an Emacs process socket, infd and outfd are the
308 same but we use this two-argument version for clarity. */
0898ca10 309 fn_gnutls_transport_set_ptr2 (state,
b5f03016
AS
310 (gnutls_transport_ptr_t) (long) proc->infd,
311 (gnutls_transport_ptr_t) (long) proc->outfd);
e061a11b 312#endif
bac5cef8 313
e6059fa2
LMI
314 proc->gnutls_initstage = GNUTLS_STAGE_TRANSPORT_POINTERS_SET;
315 }
bac5cef8 316
e061a11b
TZ
317 do
318 {
0898ca10 319 ret = fn_gnutls_handshake (state);
e061a11b 320 emacs_gnutls_handle_error (state, ret);
57570cd3 321 QUIT;
e061a11b 322 }
57570cd3 323 while (ret < 0 && fn_gnutls_error_is_fatal (ret) == 0);
e061a11b 324
bac5cef8
LMI
325 proc->gnutls_initstage = GNUTLS_STAGE_HANDSHAKE_TRIED;
326
327 if (ret == GNUTLS_E_SUCCESS)
e6059fa2 328 {
e061a11b 329 /* Here we're finally done. */
e6059fa2
LMI
330 proc->gnutls_initstage = GNUTLS_STAGE_READY;
331 }
e061a11b
TZ
332 else
333 {
0898ca10 334 fn_gnutls_alert_send_appropriate (state, ret);
e061a11b
TZ
335 }
336 return ret;
bac5cef8
LMI
337}
338
0898ca10
JB
339int
340emacs_gnutls_record_check_pending (gnutls_session_t state)
341{
342 return fn_gnutls_record_check_pending (state);
343}
344
345void
346emacs_gnutls_transport_set_errno (gnutls_session_t state, int err)
347{
348 fn_gnutls_transport_set_errno (state, err);
349}
350
9587a89d 351EMACS_INT
e968f4f3 352emacs_gnutls_write (struct Lisp_Process *proc, const char *buf, EMACS_INT nbyte)
8af55556 353{
c8926152 354 ssize_t rtnval = 0;
9587a89d 355 EMACS_INT bytes_written;
df7fcaff
LMI
356 gnutls_session_t state = proc->gnutls_state;
357
0ca43699
AS
358 if (proc->gnutls_initstage != GNUTLS_STAGE_READY)
359 {
355cdaf3 360#ifdef EWOULDBLOCK
0ca43699 361 errno = EWOULDBLOCK;
355cdaf3
LMI
362#endif
363#ifdef EAGAIN
0ca43699 364 errno = EAGAIN;
355cdaf3 365#endif
0ca43699
AS
366 return 0;
367 }
8af55556
TZ
368
369 bytes_written = 0;
370
371 while (nbyte > 0)
372 {
0898ca10 373 rtnval = fn_gnutls_record_send (state, buf, nbyte);
8af55556 374
2e6c74c5 375 if (rtnval < 0)
b5f03016 376 {
77abcbc2 377 if (rtnval == GNUTLS_E_INTERRUPTED)
b5f03016 378 continue;
0ca43699
AS
379 else
380 {
381 /* If we get GNUTLS_E_AGAIN, then set errno
382 appropriately so that send_process retries the
383 correct way instead of erroring out. */
384 if (rtnval == GNUTLS_E_AGAIN)
385 {
2e8f3c56 386#ifdef EWOULDBLOCK
0ca43699 387 errno = EWOULDBLOCK;
2e8f3c56
LI
388#endif
389#ifdef EAGAIN
0ca43699 390 errno = EAGAIN;
2e8f3c56 391#endif
0ca43699
AS
392 }
393 break;
2e8f3c56 394 }
b5f03016 395 }
8af55556
TZ
396
397 buf += rtnval;
398 nbyte -= rtnval;
399 bytes_written += rtnval;
400 }
8af55556 401
e061a11b 402 emacs_gnutls_handle_error (state, rtnval);
8af55556
TZ
403 return (bytes_written);
404}
405
9587a89d 406EMACS_INT
e968f4f3 407emacs_gnutls_read (struct Lisp_Process *proc, char *buf, EMACS_INT nbyte)
8af55556 408{
368f4090 409 ssize_t rtnval;
df7fcaff
LMI
410 gnutls_session_t state = proc->gnutls_state;
411
e63c261b
CY
412 int log_level = proc->gnutls_log_level;
413
e6059fa2
LMI
414 if (proc->gnutls_initstage != GNUTLS_STAGE_READY)
415 {
e63c261b
CY
416 /* If the handshake count is under the limit, try the handshake
417 again and increment the handshake count. This count is kept
418 per process (connection), not globally. */
419 if (proc->gnutls_handshakes_tried < GNUTLS_EMACS_HANDSHAKES_LIMIT)
420 {
421 proc->gnutls_handshakes_tried++;
422 emacs_gnutls_handshake (proc);
423 GNUTLS_LOG2i (5, log_level, "Retried handshake",
424 proc->gnutls_handshakes_tried);
425 return -1;
426 }
427
428 GNUTLS_LOG (2, log_level, "Giving up on handshake; resetting retries");
429 proc->gnutls_handshakes_tried = 0;
430 return 0;
e6059fa2 431 }
0898ca10 432 rtnval = fn_gnutls_record_recv (state, buf, nbyte);
ec9f09be
LMI
433 if (rtnval >= 0)
434 return rtnval;
dbf38e02
LMI
435 else if (rtnval == GNUTLS_E_UNEXPECTED_PACKET_LENGTH)
436 /* The peer closed the connection. */
437 return 0;
e061a11b
TZ
438 else if (emacs_gnutls_handle_error (state, rtnval) == 0)
439 /* non-fatal error */
440 return -1;
4b2d9ec2 441 else {
9173deec 442 /* a fatal error occurred */
e061a11b 443 return 0;
4b2d9ec2 444 }
8af55556
TZ
445}
446
e061a11b
TZ
447/* report a GnuTLS error to the user.
448 Returns zero if the error code was successfully handled. */
449static int
450emacs_gnutls_handle_error (gnutls_session_t session, int err)
451{
e061a11b
TZ
452 int max_log_level = 0;
453
0c8c7e5c 454 int ret;
e061a11b
TZ
455 const char *str;
456
457 /* TODO: use a Lisp_Object generated by gnutls_make_error? */
458 if (err >= 0)
459 return 0;
460
925a6be7 461 max_log_level = global_gnutls_log_level;
e061a11b
TZ
462
463 /* TODO: use gnutls-error-fatalp and gnutls-error-string. */
464
0898ca10 465 str = fn_gnutls_strerror (err);
e061a11b
TZ
466 if (!str)
467 str = "unknown";
468
0898ca10 469 if (fn_gnutls_error_is_fatal (err))
e061a11b
TZ
470 {
471 ret = err;
472 GNUTLS_LOG2 (0, max_log_level, "fatal error:", str);
473 }
474 else
475 {
476 ret = 0;
477 GNUTLS_LOG2 (1, max_log_level, "non-fatal error:", str);
478 /* TODO: EAGAIN AKA Qgnutls_e_again should be level 2. */
479 }
480
481 if (err == GNUTLS_E_WARNING_ALERT_RECEIVED
482 || err == GNUTLS_E_FATAL_ALERT_RECEIVED)
483 {
0898ca10 484 int alert = fn_gnutls_alert_get (session);
e061a11b 485 int level = (err == GNUTLS_E_FATAL_ALERT_RECEIVED) ? 0 : 1;
0898ca10 486 str = fn_gnutls_alert_get_name (alert);
e061a11b
TZ
487 if (!str)
488 str = "unknown";
489
490 GNUTLS_LOG2 (level, max_log_level, "Received alert: ", str);
491 }
492 return ret;
493}
494
8af55556
TZ
495/* convert an integer error to a Lisp_Object; it will be either a
496 known symbol like `gnutls_e_interrupted' and `gnutls_e_again' or
497 simply the integer value of the error. GNUTLS_E_SUCCESS is mapped
498 to Qt. */
74f1829d 499static Lisp_Object
ec8df744 500gnutls_make_error (int err)
8af55556 501{
ec8df744 502 switch (err)
e6059fa2
LMI
503 {
504 case GNUTLS_E_SUCCESS:
505 return Qt;
506 case GNUTLS_E_AGAIN:
507 return Qgnutls_e_again;
508 case GNUTLS_E_INTERRUPTED:
509 return Qgnutls_e_interrupted;
510 case GNUTLS_E_INVALID_SESSION:
511 return Qgnutls_e_invalid_session;
512 }
8af55556 513
ec8df744 514 return make_number (err);
8af55556
TZ
515}
516
9c6c6f49
CY
517Lisp_Object
518emacs_gnutls_deinit (Lisp_Object proc)
519{
520 int log_level;
521
522 CHECK_PROCESS (proc);
523
524 if (XPROCESS (proc)->gnutls_p == 0)
525 return Qnil;
526
527 log_level = XPROCESS (proc)->gnutls_log_level;
528
529 if (XPROCESS (proc)->gnutls_x509_cred)
530 {
531 GNUTLS_LOG (2, log_level, "Deallocating x509 credentials");
532 fn_gnutls_certificate_free_credentials (XPROCESS (proc)->gnutls_x509_cred);
533 XPROCESS (proc)->gnutls_x509_cred = NULL;
534 }
535
536 if (XPROCESS (proc)->gnutls_anon_cred)
537 {
538 GNUTLS_LOG (2, log_level, "Deallocating anon credentials");
539 fn_gnutls_anon_free_client_credentials (XPROCESS (proc)->gnutls_anon_cred);
540 XPROCESS (proc)->gnutls_anon_cred = NULL;
541 }
542
435c1d67 543 if (XPROCESS (proc)->gnutls_state)
9c6c6f49
CY
544 {
545 fn_gnutls_deinit (XPROCESS (proc)->gnutls_state);
435c1d67
CY
546 XPROCESS (proc)->gnutls_state = NULL;
547 if (GNUTLS_INITSTAGE (proc) >= GNUTLS_STAGE_INIT)
548 GNUTLS_INITSTAGE (proc) = GNUTLS_STAGE_INIT - 1;
9c6c6f49
CY
549 }
550
551 XPROCESS (proc)->gnutls_p = 0;
552 return Qt;
553}
554
8af55556 555DEFUN ("gnutls-get-initstage", Fgnutls_get_initstage, Sgnutls_get_initstage, 1, 1, 0,
74f1829d 556 doc: /* Return the GnuTLS init stage of process PROC.
8af55556 557See also `gnutls-boot'. */)
74f1829d 558 (Lisp_Object proc)
8af55556
TZ
559{
560 CHECK_PROCESS (proc);
561
562 return make_number (GNUTLS_INITSTAGE (proc));
563}
564
565DEFUN ("gnutls-errorp", Fgnutls_errorp, Sgnutls_errorp, 1, 1, 0,
74f1829d
JB
566 doc: /* Return t if ERROR indicates a GnuTLS problem.
567ERROR is an integer or a symbol with an integer `gnutls-code' property.
568usage: (gnutls-errorp ERROR) */)
569 (Lisp_Object err)
8af55556 570{
74f1829d 571 if (EQ (err, Qt)) return Qnil;
8af55556
TZ
572
573 return Qt;
574}
575
576DEFUN ("gnutls-error-fatalp", Fgnutls_error_fatalp, Sgnutls_error_fatalp, 1, 1, 0,
74f1829d
JB
577 doc: /* Check if ERROR is fatal.
578ERROR is an integer or a symbol with an integer `gnutls-code' property.
579usage: (gnutls-error-fatalp ERROR) */)
580 (Lisp_Object err)
8af55556
TZ
581{
582 Lisp_Object code;
583
584 if (EQ (err, Qt)) return Qnil;
585
586 if (SYMBOLP (err))
8af55556 587 {
e6059fa2
LMI
588 code = Fget (err, Qgnutls_code);
589 if (NUMBERP (code))
590 {
591 err = code;
592 }
593 else
594 {
595 error ("Symbol has no numeric gnutls-code property");
596 }
8af55556 597 }
8af55556
TZ
598
599 if (!NUMBERP (err))
600 error ("Not an error symbol or code");
601
0898ca10 602 if (0 == fn_gnutls_error_is_fatal (XINT (err)))
8af55556
TZ
603 return Qnil;
604
605 return Qt;
606}
607
608DEFUN ("gnutls-error-string", Fgnutls_error_string, Sgnutls_error_string, 1, 1, 0,
74f1829d
JB
609 doc: /* Return a description of ERROR.
610ERROR is an integer or a symbol with an integer `gnutls-code' property.
611usage: (gnutls-error-string ERROR) */)
612 (Lisp_Object err)
8af55556
TZ
613{
614 Lisp_Object code;
615
616 if (EQ (err, Qt)) return build_string ("Not an error");
617
618 if (SYMBOLP (err))
8af55556 619 {
e6059fa2
LMI
620 code = Fget (err, Qgnutls_code);
621 if (NUMBERP (code))
622 {
623 err = code;
624 }
625 else
626 {
627 return build_string ("Symbol has no numeric gnutls-code property");
628 }
8af55556 629 }
8af55556
TZ
630
631 if (!NUMBERP (err))
632 return build_string ("Not an error symbol or code");
633
0898ca10 634 return build_string (fn_gnutls_strerror (XINT (err)));
8af55556
TZ
635}
636
637DEFUN ("gnutls-deinit", Fgnutls_deinit, Sgnutls_deinit, 1, 1, 0,
e1b69165 638 doc: /* Deallocate GnuTLS resources associated with process PROC.
8af55556 639See also `gnutls-init'. */)
74f1829d 640 (Lisp_Object proc)
8af55556 641{
9c6c6f49 642 return emacs_gnutls_deinit (proc);
8af55556
TZ
643}
644
0898ca10
JB
645DEFUN ("gnutls-available-p", Fgnutls_available_p, Sgnutls_available_p, 0, 0, 0,
646 doc: /* Return t if GnuTLS is available in this instance of Emacs. */)
647 (void)
648{
649#ifdef WINDOWSNT
650 Lisp_Object found = Fassq (Qgnutls_dll, Vlibrary_cache);
651 if (CONSP (found))
652 return XCDR (found);
653 else
654 {
655 Lisp_Object status;
656 status = init_gnutls_functions (Vdynamic_library_alist) ? Qt : Qnil;
657 Vlibrary_cache = Fcons (Fcons (Qgnutls_dll, status), Vlibrary_cache);
658 return status;
659 }
660#else
661 return Qt;
662#endif
663}
664
665
e1b69165
JB
666/* Initializes global GnuTLS state to defaults.
667Call `gnutls-global-deinit' when GnuTLS usage is no longer needed.
8af55556 668Returns zero on success. */
74f1829d 669static Lisp_Object
e061a11b 670emacs_gnutls_global_init (void)
8af55556
TZ
671{
672 int ret = GNUTLS_E_SUCCESS;
673
e061a11b 674 if (!gnutls_global_initialized)
9cf9f756
PE
675 {
676 fn_gnutls_global_set_mem_functions (xmalloc, xmalloc, NULL,
677 xrealloc, xfree);
678 ret = fn_gnutls_global_init ();
679 }
e061a11b 680 gnutls_global_initialized = 1;
8af55556
TZ
681
682 return gnutls_make_error (ret);
683}
684
ec8df744 685#if 0
e1b69165 686/* Deinitializes global GnuTLS state.
8af55556 687See also `gnutls-global-init'. */
74f1829d 688static Lisp_Object
e061a11b 689emacs_gnutls_global_deinit (void)
8af55556 690{
e061a11b 691 if (gnutls_global_initialized)
8af55556
TZ
692 gnutls_global_deinit ();
693
e061a11b 694 gnutls_global_initialized = 0;
8af55556
TZ
695
696 return gnutls_make_error (GNUTLS_E_SUCCESS);
697}
ec8df744 698#endif
8af55556 699
c1ae068b
LMI
700DEFUN ("gnutls-boot", Fgnutls_boot, Sgnutls_boot, 3, 3, 0,
701 doc: /* Initialize GnuTLS client for process PROC with TYPE+PROPLIST.
435c1d67 702Currently only client mode is supported. Return a success/failure
8af55556
TZ
703value you can check with `gnutls-errorp'.
704
c1ae068b
LMI
705TYPE is a symbol, either `gnutls-anon' or `gnutls-x509pki'.
706PROPLIST is a property list with the following keys:
707
e061a11b
TZ
708:hostname is a string naming the remote host.
709
c1ae068b 710:priority is a GnuTLS priority string, defaults to "NORMAL".
e061a11b 711
c1ae068b 712:trustfiles is a list of PEM-encoded trust files for `gnutls-x509pki'.
e061a11b 713
ff4de4aa
TZ
714:crlfiles is a list of PEM-encoded CRL lists for `gnutls-x509pki'.
715
716:keylist is an alist of PEM-encoded key files and PEM-encoded
717certificates for `gnutls-x509pki'.
e061a11b
TZ
718
719:callbacks is an alist of callback functions, see below.
720
c1ae068b 721:loglevel is the debug level requested from GnuTLS, try 4.
8ed70bf3 722
e061a11b
TZ
723:verify-flags is a bitset as per GnuTLS'
724gnutls_certificate_set_verify_flags.
725
e061a11b
TZ
726:verify-hostname-error, if non-nil, makes a hostname mismatch an
727error. Otherwise it will be just a warning.
728
87e86684
LM
729:min-prime-bits is the minimum accepted number of bits the client will
730accept in Diffie-Hellman key exchange.
731
c1ae068b
LMI
732The debug level will be set for this process AND globally for GnuTLS.
733So if you set it higher or lower at any point, it affects global
734debugging.
8af55556
TZ
735
736Note that the priority is set on the client. The server does not use
737the protocols's priority except for disabling protocols that were not
738specified.
739
74f1829d 740Processes must be initialized with this function before other GnuTLS
8af55556
TZ
741functions are used. This function allocates resources which can only
742be deallocated by calling `gnutls-deinit' or by calling it again.
743
e061a11b
TZ
744The callbacks alist can have a `verify' key, associated with a
745verification function (UNUSED).
746
8af55556 747Each authentication type may need additional information in order to
c1ae068b
LMI
748work. For X.509 PKI (`gnutls-x509pki'), you probably need at least
749one trustfile (usually a CA bundle). */)
750 (Lisp_Object proc, Lisp_Object type, Lisp_Object proplist)
8af55556
TZ
751{
752 int ret = GNUTLS_E_SUCCESS;
8ed70bf3
LMI
753 int max_log_level = 0;
754
8af55556 755 gnutls_session_t state;
435c1d67
CY
756 gnutls_certificate_credentials_t x509_cred = NULL;
757 gnutls_anon_client_credentials_t anon_cred = NULL;
8af55556 758 Lisp_Object global_init;
ec8df744 759 char const *priority_string_ptr = "NORMAL"; /* default priority string. */
7754e151 760 unsigned int peer_verification;
e061a11b 761 char* c_hostname;
c1ae068b
LMI
762
763 /* Placeholders for the property list elements. */
764 Lisp_Object priority_string;
765 Lisp_Object trustfiles;
ff4de4aa
TZ
766 Lisp_Object crlfiles;
767 Lisp_Object keylist;
ec8df744 768 /* Lisp_Object callbacks; */
c1ae068b 769 Lisp_Object loglevel;
e061a11b 770 Lisp_Object hostname;
8d4c3955 771 /* Lisp_Object verify_error; */
e061a11b 772 Lisp_Object verify_hostname_error;
87e86684 773 Lisp_Object prime_bits;
8af55556
TZ
774
775 CHECK_PROCESS (proc);
776 CHECK_SYMBOL (type);
c1ae068b
LMI
777 CHECK_LIST (proplist);
778
0898ca10
JB
779 if (NILP (Fgnutls_available_p ()))
780 {
781 error ("GnuTLS not available");
782 return gnutls_make_error (GNUTLS_EMACS_ERROR_NOT_LOADED);
783 }
784
435c1d67
CY
785 if (!EQ (type, Qgnutls_x509pki) && !EQ (type, Qgnutls_anon))
786 {
787 error ("Invalid GnuTLS credential type");
788 return gnutls_make_error (GNUTLS_EMACS_ERROR_INVALID_TYPE);
789 }
790
a3720aa2
AS
791 hostname = Fplist_get (proplist, QCgnutls_bootprop_hostname);
792 priority_string = Fplist_get (proplist, QCgnutls_bootprop_priority);
793 trustfiles = Fplist_get (proplist, QCgnutls_bootprop_trustfiles);
794 keylist = Fplist_get (proplist, QCgnutls_bootprop_keylist);
795 crlfiles = Fplist_get (proplist, QCgnutls_bootprop_crlfiles);
a3720aa2 796 loglevel = Fplist_get (proplist, QCgnutls_bootprop_loglevel);
a3720aa2
AS
797 verify_hostname_error = Fplist_get (proplist, QCgnutls_bootprop_verify_hostname_error);
798 prime_bits = Fplist_get (proplist, QCgnutls_bootprop_min_prime_bits);
e061a11b
TZ
799
800 if (!STRINGP (hostname))
801 error ("gnutls-boot: invalid :hostname parameter");
e061a11b 802 c_hostname = SSDATA (hostname);
8af55556 803
8ed70bf3
LMI
804 if (NUMBERP (loglevel))
805 {
0898ca10
JB
806 fn_gnutls_global_set_log_function (gnutls_log_function);
807 fn_gnutls_global_set_log_level (XINT (loglevel));
8ed70bf3
LMI
808 max_log_level = XINT (loglevel);
809 XPROCESS (proc)->gnutls_log_level = max_log_level;
810 }
df7fcaff 811
8af55556 812 /* always initialize globals. */
e061a11b 813 global_init = emacs_gnutls_global_init ();
8af55556
TZ
814 if (! NILP (Fgnutls_errorp (global_init)))
815 return global_init;
816
9c6c6f49
CY
817 /* Before allocating new credentials, deallocate any credentials
818 that PROC might already have. */
819 emacs_gnutls_deinit (proc);
8af55556 820
9c6c6f49
CY
821 /* Mark PROC as a GnuTLS process. */
822 XPROCESS (proc)->gnutls_p = 1;
435c1d67 823 XPROCESS (proc)->gnutls_state = NULL;
9c6c6f49
CY
824 XPROCESS (proc)->gnutls_x509_cred = NULL;
825 XPROCESS (proc)->gnutls_anon_cred = NULL;
435c1d67 826 XPROCESS (proc)->gnutls_cred_type = type;
8af55556
TZ
827 GNUTLS_INITSTAGE (proc) = GNUTLS_STAGE_EMPTY;
828
8ed70bf3 829 GNUTLS_LOG (1, max_log_level, "allocating credentials");
8af55556 830 if (EQ (type, Qgnutls_x509pki))
e6059fa2 831 {
435c1d67
CY
832 Lisp_Object verify_flags;
833 unsigned int gnutls_verify_flags = GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT;
834
8ed70bf3 835 GNUTLS_LOG (2, max_log_level, "allocating x509 credentials");
9cf9f756 836 fn_gnutls_certificate_allocate_credentials (&x509_cred);
435c1d67 837 XPROCESS (proc)->gnutls_x509_cred = x509_cred;
e061a11b 838
435c1d67 839 verify_flags = Fplist_get (proplist, QCgnutls_bootprop_verify_flags);
e061a11b 840 if (NUMBERP (verify_flags))
b5f03016
AS
841 {
842 gnutls_verify_flags = XINT (verify_flags);
843 GNUTLS_LOG (2, max_log_level, "setting verification flags");
844 }
e061a11b 845 else if (NILP (verify_flags))
435c1d67 846 GNUTLS_LOG (2, max_log_level, "using default verification flags");
e061a11b 847 else
435c1d67
CY
848 GNUTLS_LOG (2, max_log_level, "ignoring invalid verify-flags");
849
0898ca10 850 fn_gnutls_certificate_set_verify_flags (x509_cred, gnutls_verify_flags);
e6059fa2 851 }
435c1d67 852 else /* Qgnutls_anon: */
e6059fa2 853 {
8ed70bf3 854 GNUTLS_LOG (2, max_log_level, "allocating anon credentials");
9cf9f756 855 fn_gnutls_anon_allocate_client_credentials (&anon_cred);
435c1d67 856 XPROCESS (proc)->gnutls_anon_cred = anon_cred;
e6059fa2 857 }
8af55556 858
8af55556
TZ
859 GNUTLS_INITSTAGE (proc) = GNUTLS_STAGE_CRED_ALLOC;
860
8af55556 861 if (EQ (type, Qgnutls_x509pki))
e6059fa2 862 {
435c1d67
CY
863 /* TODO: GNUTLS_X509_FMT_DER is also an option. */
864 int file_format = GNUTLS_X509_FMT_PEM;
865 Lisp_Object tail;
866
c1ae068b 867 for (tail = trustfiles; !NILP (tail); tail = Fcdr (tail))
e6059fa2 868 {
c1ae068b 869 Lisp_Object trustfile = Fcar (tail);
b5f03016
AS
870 if (STRINGP (trustfile))
871 {
872 GNUTLS_LOG2 (1, max_log_level, "setting the trustfile: ",
873 SSDATA (trustfile));
874 ret = fn_gnutls_certificate_set_x509_trust_file
875 (x509_cred,
876 SSDATA (trustfile),
877 file_format);
878
879 if (ret < GNUTLS_E_SUCCESS)
880 return gnutls_make_error (ret);
881 }
882 else
883 {
435c1d67
CY
884 emacs_gnutls_deinit (proc);
885 error ("Invalid trustfile");
b5f03016
AS
886 }
887 }
8af55556 888
ff4de4aa 889 for (tail = crlfiles; !NILP (tail); tail = Fcdr (tail))
e6059fa2 890 {
ff4de4aa 891 Lisp_Object crlfile = Fcar (tail);
b5f03016
AS
892 if (STRINGP (crlfile))
893 {
894 GNUTLS_LOG2 (1, max_log_level, "setting the CRL file: ",
895 SSDATA (crlfile));
896 ret = fn_gnutls_certificate_set_x509_crl_file
435c1d67 897 (x509_cred, SSDATA (crlfile), file_format);
b5f03016
AS
898
899 if (ret < GNUTLS_E_SUCCESS)
900 return gnutls_make_error (ret);
901 }
902 else
903 {
435c1d67
CY
904 emacs_gnutls_deinit (proc);
905 error ("Invalid CRL file");
b5f03016
AS
906 }
907 }
ff4de4aa
TZ
908
909 for (tail = keylist; !NILP (tail); tail = Fcdr (tail))
910 {
911 Lisp_Object keyfile = Fcar (Fcar (tail));
912 Lisp_Object certfile = Fcar (Fcdr (tail));
b5f03016
AS
913 if (STRINGP (keyfile) && STRINGP (certfile))
914 {
915 GNUTLS_LOG2 (1, max_log_level, "setting the client key file: ",
916 SSDATA (keyfile));
917 GNUTLS_LOG2 (1, max_log_level, "setting the client cert file: ",
918 SSDATA (certfile));
919 ret = fn_gnutls_certificate_set_x509_key_file
435c1d67 920 (x509_cred, SSDATA (certfile), SSDATA (keyfile), file_format);
b5f03016
AS
921
922 if (ret < GNUTLS_E_SUCCESS)
923 return gnutls_make_error (ret);
924 }
925 else
926 {
435c1d67
CY
927 emacs_gnutls_deinit (proc);
928 error (STRINGP (keyfile) ? "Invalid client cert file"
929 : "Invalid client key file");
b5f03016
AS
930 }
931 }
e6059fa2 932 }
8af55556
TZ
933
934 GNUTLS_INITSTAGE (proc) = GNUTLS_STAGE_FILES;
e061a11b 935 GNUTLS_LOG (1, max_log_level, "gnutls callbacks");
e061a11b
TZ
936 GNUTLS_INITSTAGE (proc) = GNUTLS_STAGE_CALLBACKS;
937
435c1d67 938 /* Call gnutls_init here: */
e061a11b 939
8ed70bf3 940 GNUTLS_LOG (1, max_log_level, "gnutls_init");
0898ca10 941 ret = fn_gnutls_init (&state, GNUTLS_CLIENT);
435c1d67 942 XPROCESS (proc)->gnutls_state = state;
8af55556 943 if (ret < GNUTLS_E_SUCCESS)
e6059fa2 944 return gnutls_make_error (ret);
8af55556
TZ
945 GNUTLS_INITSTAGE (proc) = GNUTLS_STAGE_INIT;
946
c1ae068b
LMI
947 if (STRINGP (priority_string))
948 {
51b59d79 949 priority_string_ptr = SSDATA (priority_string);
c1ae068b 950 GNUTLS_LOG2 (1, max_log_level, "got non-default priority string:",
b5f03016 951 priority_string_ptr);
c1ae068b
LMI
952 }
953 else
954 {
955 GNUTLS_LOG2 (1, max_log_level, "using default priority string:",
b5f03016 956 priority_string_ptr);
c1ae068b 957 }
51b59d79 958
8ed70bf3 959 GNUTLS_LOG (1, max_log_level, "setting the priority string");
0898ca10 960 ret = fn_gnutls_priority_set_direct (state,
b5f03016
AS
961 priority_string_ptr,
962 NULL);
8af55556 963 if (ret < GNUTLS_E_SUCCESS)
e6059fa2 964 return gnutls_make_error (ret);
8af55556
TZ
965
966 GNUTLS_INITSTAGE (proc) = GNUTLS_STAGE_PRIORITY;
967
435c1d67
CY
968 if (INTEGERP (prime_bits))
969 fn_gnutls_dh_set_prime_bits (state, XUINT (prime_bits));
8af55556 970
435c1d67
CY
971 ret = EQ (type, Qgnutls_x509pki)
972 ? fn_gnutls_credentials_set (state, GNUTLS_CRD_CERTIFICATE, x509_cred)
973 : fn_gnutls_credentials_set (state, GNUTLS_CRD_ANON, anon_cred);
8af55556 974 if (ret < GNUTLS_E_SUCCESS)
e6059fa2 975 return gnutls_make_error (ret);
8af55556 976
8af55556 977 GNUTLS_INITSTAGE (proc) = GNUTLS_STAGE_CRED_SET;
e061a11b 978 ret = emacs_gnutls_handshake (XPROCESS (proc));
e061a11b
TZ
979 if (ret < GNUTLS_E_SUCCESS)
980 return gnutls_make_error (ret);
981
982 /* Now verify the peer, following
983 http://www.gnu.org/software/gnutls/manual/html_node/Verifying-peer_0027s-certificate.html.
984 The peer should present at least one certificate in the chain; do a
985 check of the certificate's hostname with
986 gnutls_x509_crt_check_hostname() against :hostname. */
987
0898ca10 988 ret = fn_gnutls_certificate_verify_peers2 (state, &peer_verification);
e061a11b
TZ
989 if (ret < GNUTLS_E_SUCCESS)
990 return gnutls_make_error (ret);
671875da 991
e061a11b 992 if (XINT (loglevel) > 0 && peer_verification & GNUTLS_CERT_INVALID)
435c1d67
CY
993 message ("%s certificate could not be verified.", c_hostname);
994
995 if (peer_verification & GNUTLS_CERT_REVOKED)
996 GNUTLS_LOG2 (1, max_log_level, "certificate was revoked (CRL):",
997 c_hostname);
998
999 if (peer_verification & GNUTLS_CERT_SIGNER_NOT_FOUND)
1000 GNUTLS_LOG2 (1, max_log_level, "certificate signer was not found:",
1001 c_hostname);
1002
1003 if (peer_verification & GNUTLS_CERT_SIGNER_NOT_CA)
1004 GNUTLS_LOG2 (1, max_log_level, "certificate signer is not a CA:",
1005 c_hostname);
1006
1007 if (peer_verification & GNUTLS_CERT_INSECURE_ALGORITHM)
1008 GNUTLS_LOG2 (1, max_log_level,
1009 "certificate was signed with an insecure algorithm:",
1010 c_hostname);
1011
1012 if (peer_verification & GNUTLS_CERT_NOT_ACTIVATED)
1013 GNUTLS_LOG2 (1, max_log_level, "certificate is not yet activated:",
1014 c_hostname);
1015
1016 if (peer_verification & GNUTLS_CERT_EXPIRED)
1017 GNUTLS_LOG2 (1, max_log_level, "certificate has expired:",
1018 c_hostname);
1019
1020 if (peer_verification != 0)
1021 {
1022 if (NILP (verify_hostname_error))
1023 GNUTLS_LOG2 (1, max_log_level, "certificate validation failed:",
1024 c_hostname);
1025 else
1026 {
1027 emacs_gnutls_deinit (proc);
1028 error ("Certificate validation failed %s, verification code %d",
1029 c_hostname, peer_verification);
1030 }
1031 }
e061a11b
TZ
1032
1033 /* Up to here the process is the same for X.509 certificates and
1034 OpenPGP keys. From now on X.509 certificates are assumed. This
1035 can be easily extended to work with openpgp keys as well. */
0898ca10 1036 if (fn_gnutls_certificate_type_get (state) == GNUTLS_CRT_X509)
e061a11b 1037 {
435c1d67
CY
1038 gnutls_x509_crt_t gnutls_verify_cert;
1039 const gnutls_datum_t *gnutls_verify_cert_list;
1040 unsigned int gnutls_verify_cert_list_size;
e061a11b 1041
435c1d67 1042 ret = fn_gnutls_x509_crt_init (&gnutls_verify_cert);
e061a11b 1043 if (ret < GNUTLS_E_SUCCESS)
b5f03016 1044 return gnutls_make_error (ret);
e061a11b 1045
671875da 1046 gnutls_verify_cert_list =
b5f03016 1047 fn_gnutls_certificate_get_peers (state, &gnutls_verify_cert_list_size);
e061a11b 1048
435c1d67 1049 if (gnutls_verify_cert_list == NULL)
b5f03016 1050 {
435c1d67
CY
1051 fn_gnutls_x509_crt_deinit (gnutls_verify_cert);
1052 emacs_gnutls_deinit (proc);
1053 error ("No x509 certificate was found\n");
b5f03016 1054 }
e061a11b
TZ
1055
1056 /* We only check the first certificate in the given chain. */
0898ca10 1057 ret = fn_gnutls_x509_crt_import (gnutls_verify_cert,
b5f03016
AS
1058 &gnutls_verify_cert_list[0],
1059 GNUTLS_X509_FMT_DER);
e061a11b
TZ
1060
1061 if (ret < GNUTLS_E_SUCCESS)
b5f03016
AS
1062 {
1063 fn_gnutls_x509_crt_deinit (gnutls_verify_cert);
1064 return gnutls_make_error (ret);
1065 }
e061a11b 1066
0898ca10 1067 if (!fn_gnutls_x509_crt_check_hostname (gnutls_verify_cert, c_hostname))
b5f03016
AS
1068 {
1069 if (NILP (verify_hostname_error))
435c1d67
CY
1070 GNUTLS_LOG2 (1, max_log_level, "x509 certificate does not match:",
1071 c_hostname);
b5f03016
AS
1072 else
1073 {
1074 fn_gnutls_x509_crt_deinit (gnutls_verify_cert);
435c1d67
CY
1075 emacs_gnutls_deinit (proc);
1076 error ("The x509 certificate does not match \"%s\"", c_hostname);
b5f03016
AS
1077 }
1078 }
0898ca10 1079 fn_gnutls_x509_crt_deinit (gnutls_verify_cert);
e061a11b
TZ
1080 }
1081
1082 return gnutls_make_error (ret);
8af55556
TZ
1083}
1084
1085DEFUN ("gnutls-bye", Fgnutls_bye,
1086 Sgnutls_bye, 2, 2, 0,
74f1829d 1087 doc: /* Terminate current GnuTLS connection for process PROC.
8af55556
TZ
1088The connection should have been initiated using `gnutls-handshake'.
1089
1090If CONT is not nil the TLS connection gets terminated and further
74f1829d 1091receives and sends will be disallowed. If the return value is zero you
8af55556
TZ
1092may continue using the connection. If CONT is nil, GnuTLS actually
1093sends an alert containing a close request and waits for the peer to
1094reply with the same message. In order to reuse the connection you
1095should wait for an EOF from the peer.
1096
1097This function may also return `gnutls-e-again', or
1098`gnutls-e-interrupted'. */)
1099 (Lisp_Object proc, Lisp_Object cont)
1100{
1101 gnutls_session_t state;
1102 int ret;
1103
1104 CHECK_PROCESS (proc);
1105
1106 state = XPROCESS (proc)->gnutls_state;
1107
0898ca10 1108 ret = fn_gnutls_bye (state,
b5f03016 1109 NILP (cont) ? GNUTLS_SHUT_RDWR : GNUTLS_SHUT_WR);
8af55556
TZ
1110
1111 return gnutls_make_error (ret);
1112}
1113
8af55556
TZ
1114void
1115syms_of_gnutls (void)
1116{
e061a11b
TZ
1117 gnutls_global_initialized = 0;
1118
a555cb87 1119 DEFSYM (Qgnutls_dll, "gnutls");
a555cb87
JB
1120 DEFSYM (Qgnutls_code, "gnutls-code");
1121 DEFSYM (Qgnutls_anon, "gnutls-anon");
1122 DEFSYM (Qgnutls_x509pki, "gnutls-x509pki");
a3720aa2
AS
1123 DEFSYM (QCgnutls_bootprop_hostname, ":hostname");
1124 DEFSYM (QCgnutls_bootprop_priority, ":priority");
1125 DEFSYM (QCgnutls_bootprop_trustfiles, ":trustfiles");
1126 DEFSYM (QCgnutls_bootprop_keylist, ":keylist");
1127 DEFSYM (QCgnutls_bootprop_crlfiles, ":crlfiles");
1128 DEFSYM (QCgnutls_bootprop_callbacks, ":callbacks");
1129 DEFSYM (QCgnutls_bootprop_callbacks_verify, "verify");
1130 DEFSYM (QCgnutls_bootprop_min_prime_bits, ":min-prime-bits");
1131 DEFSYM (QCgnutls_bootprop_loglevel, ":loglevel");
1132 DEFSYM (QCgnutls_bootprop_verify_flags, ":verify-flags");
1133 DEFSYM (QCgnutls_bootprop_verify_hostname_error, ":verify-hostname-error");
a555cb87
JB
1134
1135 DEFSYM (Qgnutls_e_interrupted, "gnutls-e-interrupted");
8af55556 1136 Fput (Qgnutls_e_interrupted, Qgnutls_code,
b5f03016 1137 make_number (GNUTLS_E_INTERRUPTED));
8af55556 1138
a555cb87 1139 DEFSYM (Qgnutls_e_again, "gnutls-e-again");
8af55556 1140 Fput (Qgnutls_e_again, Qgnutls_code,
b5f03016 1141 make_number (GNUTLS_E_AGAIN));
8af55556 1142
a555cb87 1143 DEFSYM (Qgnutls_e_invalid_session, "gnutls-e-invalid-session");
8af55556 1144 Fput (Qgnutls_e_invalid_session, Qgnutls_code,
b5f03016 1145 make_number (GNUTLS_E_INVALID_SESSION));
8af55556 1146
a555cb87 1147 DEFSYM (Qgnutls_e_not_ready_for_handshake, "gnutls-e-not-ready-for-handshake");
8af55556 1148 Fput (Qgnutls_e_not_ready_for_handshake, Qgnutls_code,
b5f03016 1149 make_number (GNUTLS_E_APPLICATION_ERROR_MIN));
8af55556
TZ
1150
1151 defsubr (&Sgnutls_get_initstage);
1152 defsubr (&Sgnutls_errorp);
1153 defsubr (&Sgnutls_error_fatalp);
1154 defsubr (&Sgnutls_error_string);
1155 defsubr (&Sgnutls_boot);
1156 defsubr (&Sgnutls_deinit);
8af55556 1157 defsubr (&Sgnutls_bye);
0898ca10 1158 defsubr (&Sgnutls_available_p);
750c33f7 1159
925a6be7 1160 DEFVAR_INT ("gnutls-log-level", global_gnutls_log_level,
31fd3586
GM
1161 doc: /* Logging level used by the GnuTLS functions.
1162Set this larger than 0 to get debug output in the *Messages* buffer.
11631 is for important messages, 2 is for debug data, and higher numbers
1164are as per the GnuTLS logging conventions. */);
925a6be7 1165 global_gnutls_log_level = 0;
8af55556 1166}
bafcf6a5
JB
1167
1168#endif /* HAVE_GNUTLS */