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