Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

HOST SYSTEM NOT RESPONDING, PROBABLY DOWN. DO YOU WANT TO WAIT? (Y/N)


devel / comp.lang.tcl / Re: Issues with tls 1.7.22 & Fedora 36 with Openssl 3.0?

SubjectAuthor
* Issues with tls 1.7.22 & Fedora 36 with Openssl 3.0?ted@loft.tnolan.com (Ted Nolan
`* Re: Issues with tls 1.7.22 & Fedora 36 with Openssl 3.0?apn
 +- Re: Issues with tls 1.7.22 & Fedora 36 with Openssl 3.0?ted@loft.tnolan.com (Ted Nolan
 `* Re: Issues with tls 1.7.22 & Fedora 36 with Openssl 3.0?saitology9
  `* Re: Issues with tls 1.7.22 & Fedora 36 with Openssl 3.0?Rich
   +- Re: Issues with tls 1.7.22 & Fedora 36 with Openssl 3.0?saitology9
   `- Re: Issues with tls 1.7.22 & Fedora 36 with Openssl 3.0?saitology9

1
Issues with tls 1.7.22 & Fedora 36 with Openssl 3.0?

<jf7ds4Fh7maU1@mid.individual.net>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=19395&group=comp.lang.tcl#19395

  copy link   Newsgroups: comp.lang.tcl
Path: i2pn2.org!i2pn.org!news.swapon.de!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: @ednolan (ted@loft.tnolan.com (Ted Nolan)
Newsgroups: comp.lang.tcl
Subject: Issues with tls 1.7.22 & Fedora 36 with Openssl 3.0?
Date: 25 May 2022 19:20:36 GMT
Organization: loft
Lines: 38
Message-ID: <jf7ds4Fh7maU1@mid.individual.net>
X-Trace: individual.net qkZ2hhYGKriRWhQFW73ddwrQSLM/bkKvoUjkEBg3CgYEL4qURW
X-Orig-Path: not-for-mail
Cancel-Lock: sha1:Og359NgH8BUfSvJksoTuyEbJRLE=
X-Newsreader: trn 4.0-test76 (Apr 2, 2001)
 by: ted@loft.tnolan.com - Wed, 25 May 2022 19:20 UTC

We have recently gotten a Fedora 36/Openssl 3.0/Tcl 8.6/AMD64 system
as part of our enviornment, and I have been having some issues with
code using the supplied Tcltls 1.7.22 which works on other systems.

In particular, when code tries to connect to a REST API (two different
APIs on two different servers) I am getting the error

handshake failed: unexpected eof while reading

doing a bit of googling suggests this may be an issue with Openssl 3.0
reestablishing a change they had previously reverted because it was
causing this issue for people. I think the story is that this is caused
by bad SSL shutdown practices and they reverted to allow people
time to fix things, but figure they have now had long enough.

Anyway, the googling I did also suggested that perhaps adding
SSL_OPIGNORE_UNEXPECTED_EOF to client code might work around the
issue, so I tried that in the tls 1.7.22 code naively changing the

SSL_CTX_set_options( ctx, SSL_OP_ALL)

line in ssl.c to

SSL_CTX_set_options( ctx, SSL_OP_ALL|SSL_OP_IGNORE_UNEXPECTED_EOF)

which got me past (or surpressed) the EOF message, but still did not actually
work.

As a side note, I'm not sure how the tls 1.7.22 that ships with Fedora 36
was actually built, as the "gen_dh_params_openssl" shell procedure in
the gen_dh_params file no longer works with Openssl 3.0. I had to comment
it out (along with gen_dh_params_remote since our hosts can't call out
to the internet) and go with the fallback.

So, is anyone else seeing this issue and if so, is there a work-around?
--
columbiaclosings.com
What's not in Columbia anymore..

Re: Issues with tls 1.7.22 & Fedora 36 with Openssl 3.0?

<t6nn9c$1qs$1@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=19398&group=comp.lang.tcl#19398

  copy link   Newsgroups: comp.lang.tcl
Path: i2pn2.org!i2pn.org!eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail
From: palmtcl@yahoo.com (apn)
Newsgroups: comp.lang.tcl
Subject: Re: Issues with tls 1.7.22 & Fedora 36 with Openssl 3.0?
Date: Thu, 26 May 2022 16:41:40 +0530
Organization: A noiseless patient Spider
Lines: 9
Message-ID: <t6nn9c$1qs$1@dont-email.me>
References: <jf7ds4Fh7maU1@mid.individual.net>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Thu, 26 May 2022 11:11:40 -0000 (UTC)
Injection-Info: reader02.eternal-september.org; posting-host="62b9cd6f09fea7fff019167780b91bb0";
logging-data="1884"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19RDqZF2XSUfAf/LebaTDAe"
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.9.0
Cancel-Lock: sha1:fWGKSk2y+KoB/WSyq3ZAxZglNRQ=
In-Reply-To: <jf7ds4Fh7maU1@mid.individual.net>
Content-Language: en-US
 by: apn - Thu, 26 May 2022 11:11 UTC

On 5/26/2022 12:50 AM, Ted Nolan <tednolan> wrote:
> So, is anyone else seeing this issue and if so, is there a work-around?

You may have better luck logging a ticket at
https://core.tcl-lang.org/tcltls/tktnew or asking on the Tclers chat.

Not sure the author reads c.l.t

/Ashok

Re: Issues with tls 1.7.22 & Fedora 36 with Openssl 3.0?

<jf99ajFrt26U1@mid.individual.net>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=19399&group=comp.lang.tcl#19399

  copy link   Newsgroups: comp.lang.tcl
Path: i2pn2.org!i2pn.org!news.swapon.de!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: @ednolan (ted@loft.tnolan.com (Ted Nolan)
Newsgroups: comp.lang.tcl
Subject: Re: Issues with tls 1.7.22 & Fedora 36 with Openssl 3.0?
Date: 26 May 2022 12:15:15 GMT
Organization: loft
Lines: 16
Message-ID: <jf99ajFrt26U1@mid.individual.net>
References: <jf7ds4Fh7maU1@mid.individual.net> <t6nn9c$1qs$1@dont-email.me>
X-Trace: individual.net ZQzdbDMKHuHXK7YLJkOt9wBUVYvS8WdIsl2mk8DQv6KWBQsIa6
X-Orig-Path: not-for-mail
Cancel-Lock: sha1:3QFmBB/dm/9XUHuRBStpJh20moo=
X-Newsreader: trn 4.0-test76 (Apr 2, 2001)
 by: ted@loft.tnolan.com - Thu, 26 May 2022 12:15 UTC

In article <t6nn9c$1qs$1@dont-email.me>, apn <palmtcl@yahoo.com> wrote:
>On 5/26/2022 12:50 AM, Ted Nolan <tednolan> wrote:
>> So, is anyone else seeing this issue and if so, is there a work-around?
>
>You may have better luck logging a ticket at
>https://core.tcl-lang.org/tcltls/tktnew or asking on the Tclers chat.
>
>Not sure the author reads c.l.t
>
>/Ashok

Thanks, I may do that, though I think I would have to have something
a bit more rigourous to file an actual ticket.
--
columbiaclosings.com
What's not in Columbia anymore..

Re: Issues with tls 1.7.22 & Fedora 36 with Openssl 3.0?

<t6nu1b$19ne$1@gioia.aioe.org>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=19400&group=comp.lang.tcl#19400

  copy link   Newsgroups: comp.lang.tcl
Path: i2pn2.org!i2pn.org!aioe.org!a5rWVvs5S5ZXUwkNcVnRMw.user.46.165.242.91.POSTED!not-for-mail
From: saitology9@gmail.com
Newsgroups: comp.lang.tcl
Subject: Re: Issues with tls 1.7.22 & Fedora 36 with Openssl 3.0?
Date: Thu, 26 May 2022 09:06:46 -0400
Organization: Aioe.org NNTP Server
Message-ID: <t6nu1b$19ne$1@gioia.aioe.org>
References: <jf7ds4Fh7maU1@mid.individual.net> <t6nn9c$1qs$1@dont-email.me>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Info: gioia.aioe.org; logging-data="42734"; posting-host="a5rWVvs5S5ZXUwkNcVnRMw.user.gioia.aioe.org"; mail-complaints-to="abuse@aioe.org";
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.9.0
Content-Language: en-US
X-Notice: Filtered by postfilter v. 0.9.2
 by: saitology9@gmail.com - Thu, 26 May 2022 13:06 UTC

On 5/26/22 7:11 AM, apn wrote:
>
> asking on the Tclers chat.
>

Hello,

Sorry if this is obvious: Is this on Twitter or something? How does one
join the chat?

Re: Issues with tls 1.7.22 & Fedora 36 with Openssl 3.0?

<t6o00k$e52$2@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=19401&group=comp.lang.tcl#19401

  copy link   Newsgroups: comp.lang.tcl
Path: i2pn2.org!i2pn.org!eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail
From: rich@example.invalid (Rich)
Newsgroups: comp.lang.tcl
Subject: Re: Issues with tls 1.7.22 & Fedora 36 with Openssl 3.0?
Date: Thu, 26 May 2022 13:40:37 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 30
Message-ID: <t6o00k$e52$2@dont-email.me>
References: <jf7ds4Fh7maU1@mid.individual.net> <t6nn9c$1qs$1@dont-email.me> <t6nu1b$19ne$1@gioia.aioe.org>
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
Injection-Date: Thu, 26 May 2022 13:40:37 -0000 (UTC)
Injection-Info: reader02.eternal-september.org; posting-host="6b23938ca671dacf29c858ea7aa9a8c4";
logging-data="14498"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18yUA9PuGtLlr3WlrHO5tzh"
User-Agent: tin/2.0.1-20111224 ("Achenvoir") (UNIX) (Linux/3.10.17 (x86_64))
Cancel-Lock: sha1:LencJJ+gtXLLXqMTuxxesWQ7Q+8=
 by: Rich - Thu, 26 May 2022 13:40 UTC

saitology9@gmail.com wrote:
> On 5/26/22 7:11 AM, apn wrote:
>>
>> asking on the Tclers chat.
>>
>
> Hello,
>
> Sorry if this is obvious: Is this on Twitter or something? How does one
> join the chat?

Hmm....

Goes to www.google.com

Insert "tclers chat" into search box, presses search.

First hit is:

Tcl Chatroom - the Tcler's Wiki!
https://wiki.tcl-lang.org \u203a page \u203a Tcl+Chatroom
Introduction. The Tcl Chatroom is an XMPP (Jabber) conference room
that is bridged to an IRC channel. You can use any Jabber or IRC
client to connect, ...
\u200eQuickStart · \u200eWho is who? · \u200eComments

Which is a link to the Tcl wiki page about the chat.

Re: Issues with tls 1.7.22 & Fedora 36 with Openssl 3.0?

<t6p1cb$1gn5$1@gioia.aioe.org>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=19404&group=comp.lang.tcl#19404

  copy link   Newsgroups: comp.lang.tcl
Path: i2pn2.org!i2pn.org!aioe.org!a5rWVvs5S5ZXUwkNcVnRMw.user.46.165.242.91.POSTED!not-for-mail
From: saitology9@gmail.com
Newsgroups: comp.lang.tcl
Subject: Re: Issues with tls 1.7.22 & Fedora 36 with Openssl 3.0?
Date: Thu, 26 May 2022 19:09:58 -0400
Organization: Aioe.org NNTP Server
Message-ID: <t6p1cb$1gn5$1@gioia.aioe.org>
References: <jf7ds4Fh7maU1@mid.individual.net> <t6nn9c$1qs$1@dont-email.me>
<t6nu1b$19ne$1@gioia.aioe.org> <t6o00k$e52$2@dont-email.me>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Info: gioia.aioe.org; logging-data="49893"; posting-host="a5rWVvs5S5ZXUwkNcVnRMw.user.gioia.aioe.org"; mail-complaints-to="abuse@aioe.org";
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.9.0
X-Notice: Filtered by postfilter v. 0.9.2
Content-Language: en-US
 by: saitology9@gmail.com - Thu, 26 May 2022 23:09 UTC

On 5/26/22 9:40 AM, Rich wrote:
>
>
> Tcl Chatroom - the Tcler's Wiki!
> https://wiki.tcl-lang.org \u203a page \u203a Tcl+Chatroom
> Introduction. The Tcl Chatroom is an XMPP (Jabber) conference room
> that is bridged to an IRC channel. You can use any Jabber or IRC
> client to connect, ...
> \u200eQuickStart · \u200eWho is who? · \u200eComments
>
>
> Which is a link to the Tcl wiki page about the chat.
>

Thanks.

Re: Issues with tls 1.7.22 & Fedora 36 with Openssl 3.0?

<t6p1c5$1gn6$1@gioia.aioe.org>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=19405&group=comp.lang.tcl#19405

  copy link   Newsgroups: comp.lang.tcl
Path: i2pn2.org!i2pn.org!aioe.org!a5rWVvs5S5ZXUwkNcVnRMw.user.46.165.242.91.POSTED!not-for-mail
From: saitology9@gmail.com
Newsgroups: comp.lang.tcl
Subject: Re: Issues with tls 1.7.22 & Fedora 36 with Openssl 3.0?
Date: Thu, 26 May 2022 19:09:51 -0400
Organization: Aioe.org NNTP Server
Message-ID: <t6p1c5$1gn6$1@gioia.aioe.org>
References: <jf7ds4Fh7maU1@mid.individual.net> <t6nn9c$1qs$1@dont-email.me>
<t6nu1b$19ne$1@gioia.aioe.org> <t6o00k$e52$2@dont-email.me>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Info: gioia.aioe.org; logging-data="49894"; posting-host="a5rWVvs5S5ZXUwkNcVnRMw.user.gioia.aioe.org"; mail-complaints-to="abuse@aioe.org";
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.9.0
X-Notice: Filtered by postfilter v. 0.9.2
Content-Language: en-US
 by: saitology9@gmail.com - Thu, 26 May 2022 23:09 UTC

On 5/26/22 9:40 AM, Rich wrote:
>
>
> Tcl Chatroom - the Tcler's Wiki!
> https://wiki.tcl-lang.org \u203a page \u203a Tcl+Chatroom
> Introduction. The Tcl Chatroom is an XMPP (Jabber) conference room
> that is bridged to an IRC channel. You can use any Jabber or IRC
> client to connect, ...
> \u200eQuickStart · \u200eWho is who? · \u200eComments
>
>
> Which is a link to the Tcl wiki page about the chat.
>

Thanks.


devel / comp.lang.tcl / Re: Issues with tls 1.7.22 & Fedora 36 with Openssl 3.0?

1
server_pubkey.txt

rocksolid light 0.9.81
clearnet tor