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