WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: [Solved] in havoc terminal emulator: yes causes broken pipes  (Read 5700 times)

Offline GNUser

  • Wiki Author
  • Hero Member
  • *****
  • Posts: 1465
[Solved] in havoc terminal emulator: yes causes broken pipes
« on: October 26, 2023, 02:42:41 PM »
I'm experimenting with wayland on TCL14 x86_64.

Any shell script that relies on the  yes  command causes the  havoc  terminal emulator (with default configuration) to be littered with "Broken pipe" warnings. This includes the  tce-load  shell script:

Code: [Select]
$ tce-load -wil bmon
bmon.tcz.dep OK
Downloading: libconfuse.tcz
Connecting to gnuser.ddns.net (24.0.182.246:80)
saving to 'libconfuse.tcz'
libconfuse.tcz       100% |********************************| 24576  0:00:00 ETA
'libconfuse.tcz' saved
libconfuse.tcz: OK
yes: Broken pipe
Downloading: bmon.tcz
Connecting to gnuser.ddns.net (24.0.182.246:80)
saving to 'bmon.tcz'
bmon.tcz             100% |********************************| 49152  0:00:00 ETA
'bmon.tcz' saved
bmon.tcz: OK
yes: Broken pipe

I've never seen this issue when using  tce-load  in X session, regardless of the terminal emulator being used.

In the case of  tce-load  the warnings are cosmetic. However, the same issue causes some of my shell scripts (those that use  yes  to give encryption password to bcrypt) to hang indefinitely (with upward tick in CPU usage and laptop's fans coming on).

Any ideas what could be causing this "Broken pipe" warning related to  yes  (and how to fix it)?
« Last Edit: October 28, 2023, 11:06:56 PM by Rich »

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14760
Re: in havoc terminal emulator: yes causes broken pipes
« Reply #1 on: October 26, 2023, 03:55:16 PM »
The same thing happens with the weston terminal.

Offline GNUser

  • Wiki Author
  • Hero Member
  • *****
  • Posts: 1465
Re: in havoc terminal emulator: yes causes broken pipes
« Reply #2 on: October 26, 2023, 03:58:44 PM »
Good to know--so it isn't anything specific to havoc. I'll keep digging.

Offline patrikg

  • Wiki Author
  • Hero Member
  • *****
  • Posts: 701
Re: in havoc terminal emulator: yes causes broken pipes
« Reply #3 on: October 26, 2023, 05:03:07 PM »
Have you google it??
Can it be like this ??
https://stackoverflow.com/questions/20573282/hudson-yes-standard-output-broken-pipe
That the command that yes should send the yes to, have exit before ??
So what command is being used in the script to send yes to ??

Some text from the stackoverflow:
Quote
You could also report the bug against the component that runs the pipeline. The bug is in not restoring SIGPIPE to the default handler after the child is forked. It is what programs expect when they are run in a terminal on POSIX systems. Though I don't know whether there is a standard way to do it for a java-based program. jvm probably raises an exception for every write error so not-dying on SIGPIPE is not a problem for a java program.
So maybe it's the error comes from the shell that handling the signal correct.

Offline jazzbiker

  • Hero Member
  • *****
  • Posts: 934
Re: in havoc terminal emulator: yes causes broken pipes
« Reply #4 on: October 26, 2023, 05:56:48 PM »
That the command that yes should send the yes to, have exit before ??

Of course, it is the only way for yes to exit :-)

@GNUser, busybox yes dies silently. Are You sure that exactly busybox yes is envoked? Can You ensure this with the full path call?

Offline GNUser

  • Wiki Author
  • Hero Member
  • *****
  • Posts: 1465
Re: in havoc terminal emulator: yes causes broken pipes
« Reply #5 on: October 26, 2023, 06:43:43 PM »
Hi patrikg. Yes, I have done an internet search.
Hi jazzbiker. I don't have coreutils loaded. The only  yes  on my system is the busybox applet.

Offline curaga

  • Administrator
  • Hero Member
  • *****
  • Posts: 11033
Re: in havoc terminal emulator: yes causes broken pipes
« Reply #6 on: October 27, 2023, 02:10:56 AM »
That stackoverflow link does look like the most likely explanation. IOW, it's a bug in those two terminals, havoc and weston terminal.
The only barriers that can stop you are the ones you create yourself.

Offline GNUser

  • Wiki Author
  • Hero Member
  • *****
  • Posts: 1465
Re: in havoc terminal emulator: yes causes broken pipes
« Reply #7 on: October 27, 2023, 10:17:52 AM »
IOW, it's a bug in those two terminals, havoc and weston terminal.
Darn. In that case, I created this trivial wrapper script for yes, which does away with the errors when using tce-load:
Code: [Select]
#!/bin/sh
exec /usr/bin/yes "$@" 2>/dev/null
But that doesn't solve scripts where yes is needed multiple times in same pipeline. Even with the wrapper script, something like this:
Code: [Select]
yes "password" | bcrypt somefileseems to enter an endless loop, driving CPU usage way up. Workaround for this situation is this kludge:
Code: [Select]
i=1
while true; do
echo "password"
[ $i -eq 2 ] && break
i=$(( $i + 1 ))
done | bcrypt somefile
If I figure out how to properly fix the bug in the terminal emulators, I'll post it here.

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14760
Re: in havoc terminal emulator: yes causes broken pipes
« Reply #8 on: October 27, 2023, 10:24:16 AM »
Why not file a bug report against weston or havoc?

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11532
Re: in havoc terminal emulator: yes causes broken pipes
« Reply #9 on: October 27, 2023, 10:37:13 AM »
Hi GNUser
... But that doesn't solve scripts where yes is needed multiple times in same pipeline. Even with the wrapper script, something like this:
Code: [Select]
yes "password" | bcrypt somefileseems to enter an endless loop, driving CPU usage way up. ...
What if you do it like this:
Code: [Select]
echo -e  "password\npassword" | bcrypt somefile

Offline GNUser

  • Wiki Author
  • Hero Member
  • *****
  • Posts: 1465
Re: in havoc terminal emulator: yes causes broken pipes
« Reply #10 on: October 27, 2023, 11:03:38 AM »
Why not file a bug report against weston or havoc?
Good idea. Will do.

What if you do it like this:
Code: [Select]
echo -e  "password\npassword" | bcrypt somefile
Wow. Yes, that works and is much more elegant. Thank you!

Offline jazzbiker

  • Hero Member
  • *****
  • Posts: 934
Re: in havoc terminal emulator: yes causes broken pipes
« Reply #11 on: October 27, 2023, 11:09:20 AM »

Darn. In that case, I created this trivial wrapper script for yes, which does away with the errors when using tce-load:
Code: [Select]
#!/bin/sh
exec /usr/bin/yes "$@" 2>/dev/null
But that doesn't solve scripts where yes is needed multiple times in same pipeline. Even with the wrapper script, something like this:
Code: [Select]
yes "password" | bcrypt somefileseems to enter an endless loop, driving CPU usage way up. Workaround for this situation is this kludge:
Code: [Select]
i=1
while true; do
echo "password"
[ $i -eq 2 ] && break
i=$(( $i + 1 ))
done | bcrypt somefile
If I figure out how to properly fix the bug in the terminal emulators, I'll post it here.

Maybe trap instruction in the wrapper will help? Something like
Code: [Select]
#!/bin/sh
trap 'exit 0' SIGPIPE
exec /usr/bin/yes "$@" 2>/dev/null

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11532
Re: in havoc terminal emulator: yes causes broken pipes
« Reply #12 on: October 27, 2023, 12:42:44 PM »
Hi GNUser
You are welcome. Thanks for confirming it worked.

If you feel like satisfying my curiosity, what happens if you do this:
Code: [Select]
echo -e  "password\npassword\npassword" | bcrypt somefileI expect another  Broken pipe  message, but reality may differ from my expectations.

Offline GNUser

  • Wiki Author
  • Hero Member
  • *****
  • Posts: 1465
Re: in havoc terminal emulator: yes causes broken pipes
« Reply #13 on: October 27, 2023, 03:39:23 PM »
Hi jazzbiker. No luck with the trap. But it's not surprising because with the exec statement, the script no longer exists in RAM when /usr/bin/yes executes.

So I also tried your suggestion without exec, like this:
Code: [Select]
#!/bin/sh
trap 'exit 0' SIGPIPE
/usr/bin/yes "$@" 2>/dev/null
But no luck with that, either.

Hi Rich. The superfluous passwords do not cause a Broken pipe message, surprisingly:
Code: [Select]
$ echo -e "tinycore\ntinycore\ntinycore\ntinycore\ntinycore\ntinycore" | bcrypt test.txt
Encryption key:
Again:
$
So the problem does not seem to be due to  yes  not knowing when to stop.

I'm happy with the wrapper script to fix the cosmetic issue when using  tce-load  and Rich's workaround for bcrypt. Thank you all :)
« Last Edit: October 27, 2023, 03:40:58 PM by GNUser »

Offline jazzbiker

  • Hero Member
  • *****
  • Posts: 934
Re: in havoc terminal emulator: yes causes broken pipes
« Reply #14 on: October 27, 2023, 04:02:48 PM »
Hi GNUser,

I see that the problem is solved, so maybe if it is still interesting for You and You have a spare minute You may try not use the wrapper for yes but try declaration of the SIGPIPE handler inside tce-load script.

Edit: maybe better to set ignore for the SIGPIPE:
Code: [Select]
trap '' SIGPIPE
Hi Rich. The superfluous passwords do not cause a Broken pipe message, surprisingly:
Code: [Select]
$ echo -e "tinycore\ntinycore\ntinycore\ntinycore\ntinycore\ntinycore" | bcrypt test.txt
Encryption key:
Again:
$
Probably the pipe is buffered and the string is small enough to be placed in the buffer as a whole.
« Last Edit: October 27, 2023, 04:15:39 PM by jazzbiker »