From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter Seiderer Date: Thu, 9 Jan 2020 21:50:25 +0100 Subject: [Buildroot] dillo In-Reply-To: <372b903d-cd05-28bd-b1ba-7ac3314ee165@cam.ac.uk> References: <372b903d-cd05-28bd-b1ba-7ac3314ee165@cam.ac.uk> Message-ID: <20200109215025.377ae5b8@gmx.net> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net Hello Jonathan added CC buildroot at buildroot.org On Thu, 9 Jan 2020 17:09:12 +0000, Jonathan Kimmitt wrote: > Dear Peter, > > Are you a maintainer for the dillo port to buildroot? If so I have some > patches for you Yes, somehow... > > concerning SSL compatibility, relative to the 2019.11 release. No doubt > they need reworking to be upstream worthy. Thanks for the patches, some remarks: - 0003-SSL_library_init.patch > SSL_library_init is now a #define, causing this check to fail ... > > --- a/configure.ac 2020-01-09 14:57:27.823065488 +0000 > +++ b/configure.ac 2020-01-09 14:59:35.735065000 +0000 > @@ -276,7 +276,7 @@ > > if test "x$ssl_ok" = "xyes"; then > old_libs="$LIBS" > - AC_CHECK_LIB(ssl, SSL_library_init, ssl_ok=yes, ssl_ok=no, -lcrypto) > + AC_CHECK_LIB(ssl, OPENSSL_init_ssl, ssl_ok=yes, ssl_ok=no, -lcrypto) > LIBS="$old_libs" > fi Which openssl provider/library did you use, openssl (BR2_PACKAGE_LIBOPENSSL=y) or libressl (BR2_PACKAGE_LIBRESSL=y)? Will test/check your patch (but needs some time, I am no daily dillo user ;-) )... - 0004-certificate.patch > --- a/dpi/https.c 2015-06-30 15:06:08.000000000 +0100 > +++ b/dpi/https.c 2020-01-09 15:28:25.843058400 +0000 > @@ -475,9 +475,12 @@ > break; > case X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT: > /*Either self signed and untrusted*/ > +#if 0 > /*Extract CN from certificate name information*/ > if ((cn = strstr(remote_cert->name, "/CN=")) == NULL) { > - strcpy(buf, "(no CN given)"); > +#endif > + strcpy(buf, "(no CN given)"); > +#if 0 > } else { > char *cn_end; > > @@ -489,6 +492,7 @@ > strncpy(buf, cn, (size_t) (cn_end - cn)); > buf[cn_end - cn] = '\0'; > } > +#endif > msg = dStrconcat("The remote certificate is self-signed and " > "untrusted.\nFor address: ", buf, NULL); > d_cmd = a_Dpip_build_cmd( This one looks like upstream commit 'Support OpenSSL 1.1.0' ([1]) and according to the mercurial info should be contained in the 3.0.5 release (in case I read the mercurial info right), but seems not to be contained in the dillo-3.0.5.tar.bz2 sources... Regards, Peter [1] https://hg.dillo.org/dillo/rev/b171b8610400 > > Regards, > > Jonathan Kimmitt > > >