]> git.sesse.net Git - vlc/blob - include/vlc_tls.h
tls: clean up server credentials activation prototype
[vlc] / include / vlc_tls.h
1 /*****************************************************************************
2  * vlc_tls.h: Transport Layer Security API
3  *****************************************************************************
4  * Copyright (C) 2004-2011 RĂ©mi Denis-Courmont
5  * Copyright (C) 2005-2006 VLC authors and VideoLAN
6  *
7  * This program is free software; you can redistribute it and/or modify it
8  * under the terms of the GNU Lesser General Public License as published by
9  * the Free Software Foundation; either version 2.1 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public License
18  * along with this program; if not, write to the Free Software Foundation,
19  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
20  *****************************************************************************/
21
22 #ifndef VLC_TLS_H
23 # define VLC_TLS_H
24
25 /**
26  * \file
27  * This file defines Transport Layer Security API (TLS) in vlc
28  */
29
30 # include <vlc_network.h>
31
32 typedef struct vlc_tls vlc_tls_t;
33 typedef struct vlc_tls_sys vlc_tls_sys_t;
34 typedef struct vlc_tls_creds vlc_tls_creds_t;
35 typedef struct vlc_tls_creds_sys vlc_tls_creds_sys_t;
36
37 /** TLS session */
38 struct vlc_tls
39 {
40     VLC_COMMON_MEMBERS
41
42     union {
43         module_t *module; /**< Plugin handle (client) */
44     } u;
45     vlc_tls_sys_t *sys;
46
47     struct virtual_socket_t sock;
48     int  (*handshake) (struct vlc_tls *);
49 };
50
51 VLC_API vlc_tls_t *vlc_tls_ClientCreate (vlc_object_t *, int fd,
52                                          const char *hostname);
53 VLC_API void vlc_tls_ClientDelete (vlc_tls_t *);
54
55 /* NOTE: It is assumed that a->sock.p_sys = a */
56 # define tls_Send( a, b, c ) (((vlc_tls_t *)a)->sock.pf_send (a, b, c))
57
58 # define tls_Recv( a, b, c ) (((vlc_tls_t *)a)->sock.pf_recv (a, b, c))
59
60
61 /** TLS credentials (certificate, private and trust settings) */
62 struct vlc_tls_creds
63 {
64     VLC_COMMON_MEMBERS
65
66     module_t  *module;
67     vlc_tls_creds_sys_t *sys;
68
69     int (*add_CA) (vlc_tls_creds_t *, const char *path);
70     int (*add_CRL) (vlc_tls_creds_t *, const char *path);
71
72     int (*open) (vlc_tls_creds_t *, vlc_tls_t *, int fd);
73     void (*close) (vlc_tls_creds_t *, vlc_tls_t *);
74 };
75
76 vlc_tls_creds_t *vlc_tls_ServerCreate (vlc_object_t *,
77                                        const char *cert, const char *key);
78 void vlc_tls_Delete (vlc_tls_creds_t *);
79 #define vlc_tls_ServerDelete vlc_tls_Delete
80 int vlc_tls_ServerAddCA (vlc_tls_creds_t *srv, const char *path);
81 int vlc_tls_ServerAddCRL (vlc_tls_creds_t *srv, const char *path);
82
83 vlc_tls_t *vlc_tls_ServerSessionCreate (vlc_tls_creds_t *, int fd);
84 int vlc_tls_ServerSessionHandshake (vlc_tls_t *);
85 void vlc_tls_ServerSessionDelete (vlc_tls_t *);
86
87 #endif