Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
25c37b3f
Commit
25c37b3f
authored
Mar 10, 2005
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Fix GnuTLS version detection
parent
ef235f26
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
5 deletions
+27
-5
configure.ac
configure.ac
+3
-3
modules/misc/gnutls.c
modules/misc/gnutls.c
+24
-2
No files found.
configure.ac
View file @
25c37b3f
...
@@ -1273,8 +1273,8 @@ AS_IF([test "${enable_gnutls}" != "no"], [
...
@@ -1273,8 +1273,8 @@ AS_IF([test "${enable_gnutls}" != "no"], [
AC_CHECK_HEADER(gcrypt.h,
AC_CHECK_HEADER(gcrypt.h,
[AC_CHECK_LIB(gcrypt, gcry_control,
[AC_CHECK_LIB(gcrypt, gcry_control,
[AC_CHECK_HEADER(gnutls/gnutls.h,
[AC_CHECK_HEADER(gnutls/gnutls.h,
[AC_CHECK_LIB(gnutls, gnutls_
deinit
,
[AC_CHECK_LIB(gnutls, gnutls_
certificate_verify_peers2
,
[have_gnutls="yes"],, ${gnutls_LIBS})])],,
[have_gnutls="yes"],
[old_gnutls="yes"]
, ${gnutls_LIBS})])],,
${gcrypt_LIBS})])
${gcrypt_LIBS})])
AS_IF([test "${have_gnutls}" = "yes"], [
AS_IF([test "${have_gnutls}" = "yes"], [
...
@@ -1282,7 +1282,7 @@ AS_IF([test "${enable_gnutls}" != "no"], [
...
@@ -1282,7 +1282,7 @@ AS_IF([test "${enable_gnutls}" != "no"], [
VLC_ADD_LDFLAGS([gnutls], [-lgnutls -lgcrypt -lgpg-error])
VLC_ADD_LDFLAGS([gnutls], [-lgnutls -lgcrypt -lgpg-error])
], [
], [
AS_IF([test "${enable_gnutls}" = "yes"], [
AS_IF([test "${enable_gnutls}" = "yes"], [
AC_MSG_ERROR([gnutls
/gcrypt TLS/SSL support cannot be compiled
])]
AC_MSG_ERROR([gnutls
not present or too old (version 1.0.17 required)
])]
)]
)]
)]
)]
)
)
...
...
modules/misc/gnutls.c
View file @
25c37b3f
...
@@ -65,6 +65,14 @@ static void Close( vlc_object_t * );
...
@@ -65,6 +65,14 @@ static void Close( vlc_object_t * );
"Allows you to modify the maximum number of resumed TLS sessions that " \
"Allows you to modify the maximum number of resumed TLS sessions that " \
"the cache will hold." )
"the cache will hold." )
#define CHECK_CERT_TEXT N_("Check TLS/SSL server certificate validity")
#define CHECK_CERT_LONGTEXT N_( \
"Ensures that server certificate is valid " \
"(ie. signed by an approved Certificate Authority)." )
#define CHECK_HOSTNAME_TEXT N_("Check TLS/SSL server hostname in certificate")
#define CHECK_HOSTNAME_LONGTEXT N_( \
"Ensures that server hostname in certificate match requested host name." )
vlc_module_begin
();
vlc_module_begin
();
set_description
(
_
(
"GnuTLS TLS encryption layer"
)
);
set_description
(
_
(
"GnuTLS TLS encryption layer"
)
);
...
@@ -73,6 +81,13 @@ vlc_module_begin();
...
@@ -73,6 +81,13 @@ vlc_module_begin();
set_category
(
CAT_ADVANCED
);
set_category
(
CAT_ADVANCED
);
set_subcategory
(
SUBCAT_ADVANCED_MISC
);
set_subcategory
(
SUBCAT_ADVANCED_MISC
);
#if 0
add_bool( "tls-check-cert", VLC_FALSE, NULL, CHECK_CERT_TEXT,
CHECK_CERT_LONGTEXT, VLC_FALSE );
add_bool( "tls-check-hostname", VLC_FALSE, NULL, CHECK_HOSTNAME_TEXT,
CHECK_HOSTNAME_LONGTEXT, VLC_FALSE );
#endif
add_integer
(
"dh-bits"
,
DH_BITS
,
NULL
,
DH_BITS_TEXT
,
add_integer
(
"dh-bits"
,
DH_BITS
,
NULL
,
DH_BITS_TEXT
,
DH_BITS_LONGTEXT
,
VLC_TRUE
);
DH_BITS_LONGTEXT
,
VLC_TRUE
);
add_integer
(
"tls-cache-expiration"
,
CACHE_EXPIRATION
,
NULL
,
add_integer
(
"tls-cache-expiration"
,
CACHE_EXPIRATION
,
NULL
,
...
@@ -865,6 +880,8 @@ Open( vlc_object_t *p_this )
...
@@ -865,6 +880,8 @@ Open( vlc_object_t *p_this )
if
(
count
.
i_int
==
0
)
if
(
count
.
i_int
==
0
)
{
{
const
char
*
psz_version
;
__p_gcry_data
=
VLC_OBJECT
(
p_this
->
p_vlc
);
__p_gcry_data
=
VLC_OBJECT
(
p_this
->
p_vlc
);
gcry_control
(
GCRYCTL_SET_THREAD_CBS
,
&
gcry_threads_vlc
);
gcry_control
(
GCRYCTL_SET_THREAD_CBS
,
&
gcry_threads_vlc
);
...
@@ -874,14 +891,19 @@ Open( vlc_object_t *p_this )
...
@@ -874,14 +891,19 @@ Open( vlc_object_t *p_this )
vlc_mutex_unlock
(
lock
.
p_address
);
vlc_mutex_unlock
(
lock
.
p_address
);
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
}
}
if
(
gnutls_check_version
(
"1.0.0"
)
==
NULL
)
/*
* FIXME: in fact, we currently depends on 1.0.17, but it breaks on
* Debian which as a patched 1.0.16 (which we can use).
*/
psz_version
=
gnutls_check_version
(
"1.0.16"
);
if
(
psz_version
==
NULL
)
{
{
gnutls_global_deinit
(
);
gnutls_global_deinit
(
);
vlc_mutex_unlock
(
lock
.
p_address
);
vlc_mutex_unlock
(
lock
.
p_address
);
msg_Err
(
p_this
,
"unsupported GnuTLS version"
);
msg_Err
(
p_this
,
"unsupported GnuTLS version"
);
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
}
}
msg_Dbg
(
p_this
,
"GnuTLS
initialized"
);
msg_Dbg
(
p_this
,
"GnuTLS
v%s initialized"
,
psz_version
);
}
}
count
.
i_int
++
;
count
.
i_int
++
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment