📄 tls.c
字号:
/***************************************************************************** * tls.c ***************************************************************************** * Copyright (C) 2004-2005 the VideoLAN team * $Id: tls.c 16434 2006-08-30 15:18:13Z hartman $ * * Authors: Rémi Denis-Courmont <rem # videolan.org> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************//** * @file * libvlc interface to the Transport Layer Security (TLS) plugins. */#include <stdlib.h>#include <vlc/vlc.h>#include "vlc_tls.h"static tls_t *tls_Init( vlc_object_t *p_this ){ tls_t *p_tls; vlc_value_t lockval; var_Create( p_this->p_libvlc, "tls_mutex", VLC_VAR_MUTEX ); var_Get( p_this->p_libvlc, "tls_mutex", &lockval ); vlc_mutex_lock( lockval.p_address ); p_tls = vlc_object_find( p_this, VLC_OBJECT_TLS, FIND_ANYWHERE ); if( p_tls == NULL ) { p_tls = vlc_object_create( p_this, VLC_OBJECT_TLS ); if( p_tls == NULL ) { vlc_mutex_unlock( lockval.p_address ); return NULL; } p_tls->p_module = module_Need( p_tls, "tls", 0, 0 ); if( p_tls->p_module == NULL ) { msg_Err( p_tls, "TLS/SSL provider not found" ); vlc_mutex_unlock( lockval.p_address ); vlc_object_destroy( p_tls ); return NULL; } vlc_object_attach( p_tls, p_this->p_vlc ); vlc_object_yield( p_tls ); msg_Dbg( p_tls, "TLS/SSL provider initialized" ); } vlc_mutex_unlock( lockval.p_address ); return p_tls;}static voidtls_Deinit( tls_t *p_tls ){ int i; vlc_value_t lockval; var_Get( p_tls->p_libvlc, "tls_mutex", &lockval ); vlc_mutex_lock( lockval.p_address ); vlc_object_release( p_tls ); i = p_tls->i_refcount; if( i == 0 ) vlc_object_detach( p_tls ); vlc_mutex_unlock( lockval.p_address ); if( i == 0 ) { module_Unneed( p_tls, p_tls->p_module ); msg_Dbg( p_tls, "TLS/SSL provider deinitialized" ); vlc_object_destroy( p_tls ); }}/** * Allocates a whole server's TLS credentials. * * @param psz_cert required (Unicode) path to an x509 certificate. * @param psz_key required (Unicode) path to the PKCS private key for * the certificate. * * @return NULL on error. */tls_server_t *tls_ServerCreate( vlc_object_t *p_this, const char *psz_cert, const char *psz_key ){ tls_t *p_tls; tls_server_t *p_server; p_tls = tls_Init( p_this ); if( p_tls == NULL ) return NULL; if( psz_key == NULL ) psz_key = psz_cert; p_server = p_tls->pf_server_create( p_tls, psz_cert, psz_key ); if( p_server != NULL ) { msg_Dbg( p_tls, "TLS/SSL server initialized" ); return p_server; } else msg_Err( p_tls, "TLS/SSL server error" ); tls_Deinit( p_tls ); return NULL;}/** * Releases data allocated with tls_ServerCreate. */voidtls_ServerDelete( tls_server_t *p_server ){ tls_t *p_tls = (tls_t *)p_server->p_parent; p_server->pf_delete( p_server ); tls_Deinit( p_tls );}/** * Allocates a client's TLS credentials and shakes hands through the network. * This is a blocking network operation. * * @param fd stream socket through which to establish the secure communication * layer. * @param psz_hostname Server Name Indication to pass to the server, or NULL. * * @return NULL on error. **/tls_session_t *tls_ClientCreate( vlc_object_t *p_this, int fd, const char *psz_hostname ){ tls_t *p_tls; tls_session_t *p_session; p_tls = tls_Init( p_this ); if( p_tls == NULL ) return NULL; p_session = p_tls->pf_client_create( p_tls ); if( p_session != NULL ) { int i_val; for( i_val = tls_ClientSessionHandshake( p_session, fd, psz_hostname ); i_val > 0; i_val = tls_SessionContinueHandshake( p_session ) ); if( i_val == 0 ) { msg_Dbg( p_this, "TLS/SSL client initialized" ); return p_session; } msg_Err( p_this, "TLS/SSL session handshake error" ); } else msg_Err( p_this, "TLS/SSL client error" ); tls_Deinit( p_tls ); return NULL;}/** * Releases data allocated with tls_ClientCreate. * It is your job to close the underlying socket. */voidtls_ClientDelete( tls_session_t *p_session ){ tls_t *p_tls = (tls_t *)p_session->p_parent; p_session->pf_close( p_session ); tls_Deinit( p_tls );}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -