* [Buildroot] [PATCH 1/1] package/lxc: switch from gnutls to openssl
@ 2019-07-05 16:50 Fabrice Fontaine
2019-07-27 20:42 ` Thomas Petazzoni
0 siblings, 1 reply; 4+ messages in thread
From: Fabrice Fontaine @ 2019-07-05 16:50 UTC (permalink / raw)
To: buildroot
Fixes:
- http://autobuild.buildroot.org/results/c0a9565ae65336d55cdedc67adff221a7fa1a2c8
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
...itch-from-gnutls-to-openssl-for-sha1.patch | 232 ++++++++++++++++++
package/lxc/lxc.mk | 16 +-
2 files changed, 241 insertions(+), 7 deletions(-)
create mode 100644 package/lxc/0001-Switch-from-gnutls-to-openssl-for-sha1.patch
diff --git a/package/lxc/0001-Switch-from-gnutls-to-openssl-for-sha1.patch b/package/lxc/0001-Switch-from-gnutls-to-openssl-for-sha1.patch
new file mode 100644
index 0000000000..a5a9bf47cb
--- /dev/null
+++ b/package/lxc/0001-Switch-from-gnutls-to-openssl-for-sha1.patch
@@ -0,0 +1,232 @@
+From fa2bb6ba532c5e7f92df8cbae50a68af519f9997 Mon Sep 17 00:00:00 2001
+From: Serge Hallyn <shallyn@cisco.com>
+Date: Fri, 14 Jun 2019 03:08:26 +0000
+Subject: [PATCH] Switch from gnutls to openssl for sha1
+
+The reason for this is because openssl can be statically linked
+against, gnutls cannot.
+
+Signed-off-by: Serge Hallyn <shallyn@cisco.com>
+[Retrieved from:
+https://github.com/lxc/lxc/commit/fa2bb6ba532c5e7f92df8cbae50a68af519f9997]
+Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
+---
+ configure.ac | 27 +++++++++++++++------------
+ src/lxc/Makefile.am | 8 ++++----
+ src/lxc/lxccontainer.c | 18 +++++++++++-------
+ src/lxc/utils.c | 29 +++++++++++++++++++++--------
+ src/lxc/utils.h | 5 ++---
+ 5 files changed, 53 insertions(+), 34 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index 3caa45ba8e..a041f2fdb0 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -257,6 +257,8 @@ fi
+
+ AM_CONDITIONAL([ENABLE_API_DOCS], [test "x$HAVE_DOXYGEN" != "x"])
+
++AC_CONFIG_MACRO_DIRS([config])
++
+ # Apparmor
+ AC_ARG_ENABLE([apparmor],
+ [AC_HELP_STRING([--enable-apparmor], [enable apparmor support [default=auto]])],
+@@ -267,20 +269,21 @@ if test "$enable_apparmor" = "auto" ; then
+ fi
+ AM_CONDITIONAL([ENABLE_APPARMOR], [test "x$enable_apparmor" = "xyes"])
+
+-# GnuTLS
+-AC_ARG_ENABLE([gnutls],
+- [AC_HELP_STRING([--enable-gnutls], [enable GnuTLS support [default=auto]])],
+- [], [enable_gnutls=auto])
++# OpenSSL
++# libssl-dev
++AC_ARG_ENABLE([openssl],
++ [AC_HELP_STRING([--enable-openssl], [enable OpenSSL support [default=auto]])],
++ [], [enable_openssl=auto])
++
++if test "$enable_openssl" = "auto" ; then
++ AC_CHECK_LIB([ssl], [OPENSSL_init_ssl], [enable_openssl=yes], [enable_openssl=no])
+
+-if test "$enable_gnutls" = "auto" ; then
+- AC_CHECK_LIB([gnutls], [gnutls_hash_fast], [enable_gnutls=yes], [enable_gnutls=no])
+ fi
+-AM_CONDITIONAL([ENABLE_GNUTLS], [test "x$enable_gnutls" = "xyes"])
++AM_CONDITIONAL([ENABLE_OPENSSL], [test "x$enable_openssl" = "xyes"])
+
+-AM_COND_IF([ENABLE_GNUTLS],
+- [AC_CHECK_HEADER([gnutls/gnutls.h],[],[AC_MSG_ERROR([You must install the GnuTLS development package in order to compile lxc])])
+- AC_CHECK_LIB([gnutls], [gnutls_hash_fast],[true],[AC_MSG_ERROR([You must install the GnuTLS development package in order to compile lxc])])
+- AC_SUBST([GNUTLS_LIBS], [-lgnutls])])
++AM_COND_IF([ENABLE_OPENSSL],
++ [AC_CHECK_HEADER([openssl/engine.h],[],[AC_MSG_ERROR([You must install the OpenSSL development package in order to compile lxc])])
++ AC_SUBST([OPENSSL_LIBS], '-lssl -lcrypto')])
+
+ # SELinux
+ AC_ARG_ENABLE([selinux],
+@@ -1014,7 +1017,7 @@ Environment:
+ - distribution: $with_distro
+ - init script type(s): $init_script
+ - rpath: $enable_rpath
+- - GnuTLS: $enable_gnutls
++ - OpenSSL: $enable_openssl
+ - Bash integration: $enable_bash
+
+ Security features:
+diff --git a/src/lxc/Makefile.am b/src/lxc/Makefile.am
+index 49b3b014d1..4b18ac5d82 100644
+--- a/src/lxc/Makefile.am
++++ b/src/lxc/Makefile.am
+@@ -210,8 +210,8 @@ if ENABLE_APPARMOR
+ AM_CFLAGS += -DHAVE_APPARMOR
+ endif
+
+-if ENABLE_GNUTLS
+-AM_CFLAGS += -DHAVE_LIBGNUTLS
++if ENABLE_OPENSSL
++AM_CFLAGS += -DHAVE_OPENSSL
+ endif
+
+ if ENABLE_SECCOMP
+@@ -248,7 +248,7 @@ liblxc_la_LDFLAGS = -pthread \
+ -version-info @LXC_ABI_MAJOR@
+
+ liblxc_la_LIBADD = $(CAP_LIBS) \
+- $(GNUTLS_LIBS) \
++ $(OPENSSL_LIBS) \
+ $(SELINUX_LIBS) \
+ $(SECCOMP_LIBS) \
+ $(DLOG_LIBS)
+@@ -307,7 +307,7 @@ endif
+
+ LDADD = liblxc.la \
+ @CAP_LIBS@ \
+- @GNUTLS_LIBS@ \
++ @OPENSSL_LIBS@ \
+ @SECCOMP_LIBS@ \
+ @SELINUX_LIBS@ \
+ @DLOG_LIBS@
+diff --git a/src/lxc/lxccontainer.c b/src/lxc/lxccontainer.c
+index 253f07f683..a618645f81 100644
+--- a/src/lxc/lxccontainer.c
++++ b/src/lxc/lxccontainer.c
+@@ -79,6 +79,10 @@
+ #include "utils.h"
+ #include "version.h"
+
++#if HAVE_OPENSSL
++#include <openssl/evp.h>
++#endif
++
+ /* major()/minor() */
+ #ifdef MAJOR_IN_MKDEV
+ #include <sys/mkdev.h>
+@@ -1654,9 +1658,9 @@ static bool prepend_lxc_header(char *path, const char *t, char *const argv[])
+ char *contents;
+ FILE *f;
+ int ret = -1;
+-#if HAVE_LIBGNUTLS
+- int i;
+- unsigned char md_value[SHA_DIGEST_LENGTH];
++#if HAVE_OPENSSL
++ int i, md_len = 0;
++ unsigned char md_value[EVP_MAX_MD_SIZE];
+ char *tpath;
+ #endif
+
+@@ -1697,14 +1701,14 @@ static bool prepend_lxc_header(char *path, const char *t, char *const argv[])
+ if (ret < 0)
+ goto out_free_contents;
+
+-#if HAVE_LIBGNUTLS
++#if HAVE_OPENSSL
+ tpath = get_template_path(t);
+ if (!tpath) {
+ ERROR("Invalid template \"%s\" specified", t);
+ goto out_free_contents;
+ }
+
+- ret = sha1sum_file(tpath, md_value);
++ ret = sha1sum_file(tpath, md_value, &md_len);
+ if (ret < 0) {
+ ERROR("Failed to get sha1sum of %s", tpath);
+ free(tpath);
+@@ -1730,9 +1734,9 @@ static bool prepend_lxc_header(char *path, const char *t, char *const argv[])
+ fprintf(f, "\n");
+ }
+
+-#if HAVE_LIBGNUTLS
++#if HAVE_OPENSSL
+ fprintf(f, "# Template script checksum (SHA-1): ");
+- for (i=0; i<SHA_DIGEST_LENGTH; i++)
++ for (i=0; i<md_len; i++)
+ fprintf(f, "%02x", md_value[i]);
+ fprintf(f, "\n");
+ #endif
+diff --git a/src/lxc/utils.c b/src/lxc/utils.c
+index bf193a88b8..6d8a65818a 100644
+--- a/src/lxc/utils.c
++++ b/src/lxc/utils.c
+@@ -330,17 +330,30 @@ int lxc_wait_for_pid_status(pid_t pid)
+ return status;
+ }
+
+-#if HAVE_LIBGNUTLS
+-#include <gnutls/gnutls.h>
+-#include <gnutls/crypto.h>
++#ifdef HAVE_OPENSSL
++#include <openssl/evp.h>
+
+-__attribute__((constructor))
+-static void gnutls_lxc_init(void)
++static int do_sha1_hash(const char *buf, int buflen, unsigned char *md_value, int *md_len)
+ {
+- gnutls_global_init();
++ EVP_MD_CTX *mdctx;
++ const EVP_MD *md;
++
++ md = EVP_get_digestbyname("sha1");
++ if(!md) {
++ printf("Unknown message digest: sha1\n");
++ return -1;
++ }
++
++ mdctx = EVP_MD_CTX_new();
++ EVP_DigestInit_ex(mdctx, md, NULL);
++ EVP_DigestUpdate(mdctx, buf, buflen);
++ EVP_DigestFinal_ex(mdctx, md_value, md_len);
++ EVP_MD_CTX_free(mdctx);
++
++ return 0;
+ }
+
+-int sha1sum_file(char *fnam, unsigned char *digest)
++int sha1sum_file(char *fnam, unsigned char *digest, int *md_len)
+ {
+ char *buf;
+ int ret;
+@@ -394,7 +407,7 @@ int sha1sum_file(char *fnam, unsigned char *digest)
+ }
+
+ buf[flen] = '\0';
+- ret = gnutls_hash_fast(GNUTLS_DIG_SHA1, buf, flen, (void *)digest);
++ ret = do_sha1_hash(buf, flen, (void *)digest, md_len);
+ free(buf);
+ return ret;
+ }
+diff --git a/src/lxc/utils.h b/src/lxc/utils.h
+index 9f1c21dddb..dd6404f0b3 100644
+--- a/src/lxc/utils.h
++++ b/src/lxc/utils.h
+@@ -98,9 +98,8 @@ extern int lxc_pclose(struct lxc_popen_FILE *fp);
+ extern int wait_for_pid(pid_t pid);
+ extern int lxc_wait_for_pid_status(pid_t pid);
+
+-#if HAVE_LIBGNUTLS
+-#define SHA_DIGEST_LENGTH 20
+-extern int sha1sum_file(char *fnam, unsigned char *md_value);
++#if HAVE_OPENSSL
++extern int sha1sum_file(char *fnam, unsigned char *md_value, int *md_len);
+ #endif
+
+ /* initialize rand with urandom */
diff --git a/package/lxc/lxc.mk b/package/lxc/lxc.mk
index a059fd578e..0f5790b4b5 100644
--- a/package/lxc/lxc.mk
+++ b/package/lxc/lxc.mk
@@ -10,6 +10,8 @@ LXC_LICENSE = LGPL-2.1+
LXC_LICENSE_FILES = COPYING
LXC_DEPENDENCIES = host-pkgconf
LXC_INSTALL_STAGING = YES
+# We're patching configure.ac
+LXC_AUTORECONF = YES
LXC_CONF_OPTS = --disable-apparmor --with-distro=buildroot \
--disable-werror \
@@ -19,13 +21,6 @@ ifeq ($(BR2_PACKAGE_BASH_COMPLETION),y)
LXC_DEPENDENCIES += bash-completion
endif
-ifeq ($(BR2_PACKAGE_GNUTLS),y)
-LXC_CONF_OPTS += --enable-gnutls
-LXC_DEPENDENCIES += gnutls
-else
-LXC_CONF_OPTS += --disable-gnutls
-endif
-
ifeq ($(BR2_PACKAGE_LIBCAP),y)
LXC_CONF_OPTS += --enable-capabilities
LXC_DEPENDENCIES += libcap
@@ -47,4 +42,11 @@ else
LXC_CONF_OPTS += --disable-selinux
endif
+ifeq ($(BR2_PACKAGE_OPENSSL),y)
+LXC_CONF_OPTS += --enable-openssl
+LXC_DEPENDENCIES += openssl
+else
+LXC_CONF_OPTS += --disable-openssl
+endif
+
$(eval $(autotools-package))
--
2.20.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* [Buildroot] [PATCH 1/1] package/lxc: switch from gnutls to openssl
2019-07-05 16:50 [Buildroot] [PATCH 1/1] package/lxc: switch from gnutls to openssl Fabrice Fontaine
@ 2019-07-27 20:42 ` Thomas Petazzoni
2019-07-28 9:32 ` Yann E. MORIN
0 siblings, 1 reply; 4+ messages in thread
From: Thomas Petazzoni @ 2019-07-27 20:42 UTC (permalink / raw)
To: buildroot
Hello Fabrice,
On Fri, 5 Jul 2019 18:50:40 +0200
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:
> Fixes:
> - http://autobuild.buildroot.org/results/c0a9565ae65336d55cdedc67adff221a7fa1a2c8
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Thanks, but this is not entirely convincing, for two reasons:
- The actual build failure is due to libgnutls.so using __atomic
built-ins, without being linked to libatomic.so. This is a problem
that can affect any other package that uses libgnutls.so (and a
question is why we're not seeing more failures like this, from other
packages that use libgnutls).
- Switching to openssl is certainly OK, but the lxc configure.ac logic
does just OPENSSL_LIBS='-lssl -lcrypto', which is pretty much
guaranteed to fail in static linking scenarios, as it doesn't
account for second-order dependencies of openssl (the classic -lz
missing).
Could you have a look at the libgnutls.so/libatomic.so issue, and
double check if lxc/openssl builds fine in a static linking
configuration ? For the latter, it is possible that lxc already depends
on libz for another reason, in which case the problem will not be
visible.
Thanks!
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 1/1] package/lxc: switch from gnutls to openssl
2019-07-27 20:42 ` Thomas Petazzoni
@ 2019-07-28 9:32 ` Yann E. MORIN
2019-07-28 21:20 ` Fabrice Fontaine
0 siblings, 1 reply; 4+ messages in thread
From: Yann E. MORIN @ 2019-07-28 9:32 UTC (permalink / raw)
To: buildroot
Thomas, Fabrice, J?r?me, All,
On 2019-07-27 22:42 +0200, Thomas Petazzoni spake thusly:
> On Fri, 5 Jul 2019 18:50:40 +0200
> Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:
>
> > Fixes:
> > - http://autobuild.buildroot.org/results/c0a9565ae65336d55cdedc67adff221a7fa1a2c8
> >
> > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
>
> Thanks, but this is not entirely convincing, for two reasons:
>
> - The actual build failure is due to libgnutls.so using __atomic
> built-ins, without being linked to libatomic.so. This is a problem
> that can affect any other package that uses libgnutls.so (and a
> question is why we're not seeing more failures like this, from other
> packages that use libgnutls).
>
> - Switching to openssl is certainly OK, but the lxc configure.ac logic
> does just OPENSSL_LIBS='-lssl -lcrypto', which is pretty much
> guaranteed to fail in static linking scenarios, as it doesn't
> account for second-order dependencies of openssl (the classic -lz
> missing).
>
> Could you have a look at the libgnutls.so/libatomic.so issue, and
> double check if lxc/openssl builds fine in a static linking
> configuration ? For the latter, it is possible that lxc already depends
> on libz for another reason, in which case the problem will not be
> visible.
Although I agree with Thomas' review, we'll nonetheless have to
understand and/or fix the -lz issue when we next bump lxz, as that new
version *will* have switched to using openssl instead of gnutls anyway.
So I would say that, barring a good explanations about the atomic issue,
this backport from upstream is good-enough (with -lz fixed/explained).
Regards,
Yann E. MORIN.
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 1/1] package/lxc: switch from gnutls to openssl
2019-07-28 9:32 ` Yann E. MORIN
@ 2019-07-28 21:20 ` Fabrice Fontaine
0 siblings, 0 replies; 4+ messages in thread
From: Fabrice Fontaine @ 2019-07-28 21:20 UTC (permalink / raw)
To: buildroot
Dear all,
Le dim. 28 juil. 2019 ? 11:32, Yann E. MORIN <yann.morin.1998@free.fr> a ?crit :
>
> Thomas, Fabrice, J?r?me, All,
>
> On 2019-07-27 22:42 +0200, Thomas Petazzoni spake thusly:
> > On Fri, 5 Jul 2019 18:50:40 +0200
> > Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:
> >
> > > Fixes:
> > > - http://autobuild.buildroot.org/results/c0a9565ae65336d55cdedc67adff221a7fa1a2c8
> > >
> > > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> >
> > Thanks, but this is not entirely convincing, for two reasons:
> >
> > - The actual build failure is due to libgnutls.so using __atomic
> > built-ins, without being linked to libatomic.so. This is a problem
> > that can affect any other package that uses libgnutls.so (and a
> > question is why we're not seeing more failures like this, from other
> > packages that use libgnutls).
> >
> > - Switching to openssl is certainly OK, but the lxc configure.ac logic
> > does just OPENSSL_LIBS='-lssl -lcrypto', which is pretty much
> > guaranteed to fail in static linking scenarios, as it doesn't
> > account for second-order dependencies of openssl (the classic -lz
> > missing).
> >
> > Could you have a look at the libgnutls.so/libatomic.so issue, and
gnutls issue was fixed by https://patchwork.ozlabs.org/patch/1132098
which was sent a few days after the lxc's patch so this patch is not
really needed anymore. I'll set it as non applicable.
> > double check if lxc/openssl builds fine in a static linking
> > configuration ? For the latter, it is possible that lxc already depends
> > on libz for another reason, in which case the problem will not be
> > visible.
For the record, lxc already depends on dynamic library since 2015 and
https://git.buildroot.net/buildroot/commit/package/lxc?id=29a6df448dd6b4e70594254803412350111be091
>
> Although I agree with Thomas' review, we'll nonetheless have to
> understand and/or fix the -lz issue when we next bump lxz, as that new
> version *will* have switched to using openssl instead of gnutls anyway.
lxc released 3.2.1, I'll send a new patch for this bump.
>
> So I would say that, barring a good explanations about the atomic issue,
> this backport from upstream is good-enough (with -lz fixed/explained).
>
> Regards,
> Yann E. MORIN.
>
> --
> .-----------------.--------------------.------------------.--------------------.
> | Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
> | +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
> | +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
> | http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
> '------------------------------^-------^------------------^--------------------'
Best Regards,
Fabrice
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-07-28 21:20 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-07-05 16:50 [Buildroot] [PATCH 1/1] package/lxc: switch from gnutls to openssl Fabrice Fontaine
2019-07-27 20:42 ` Thomas Petazzoni
2019-07-28 9:32 ` Yann E. MORIN
2019-07-28 21:20 ` Fabrice Fontaine
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox