Author Topic: lol, modern mkfifo (coreutils->=2021) freezes with old Linux kernel v<=4.*  (Read 1820 times)

0 Members and 1 Guest are viewing this topic.

Offline DiTBhoTopic starter

  • Super Contributor
  • ***
  • Posts: 4217
  • Country: gb
So, emerge is based on Python, but it also uses a lot of coreutils utilities.
One of them is mkfifo, and ...

... with the new stage4 I made on Catalyst (2023/12/20), it freezes with old Linux kernel v<=4.*
whereas it perfectly works with kernel v6.*!

Moral of the story, you can no more mix new rootfs with old kernels
You need to update both kernel and rootfs

(that's a serious problem for all the kernel drivers (e.g. PCI-canbus-HBA, PCI-optical-fiber-HBA, etc...) that cannot be easily ported from v4 to { v5, v6, ... })
The opposite of courage is not cowardice, it is conformity. Even a dead fish can go with the flow
 

Offline DiTBhoTopic starter

  • Super Contributor
  • ***
  • Posts: 4217
  • Country: gb
Re: lol, modern mkfifo (coreutils->=2021) freezes with old Linux kernel v<=4.*
« Reply #1 on: December 27, 2023, 12:08:39 pm »
posix fifo freezes when opened in blocking mode, see here
The opposite of courage is not cowardice, it is conformity. Even a dead fish can go with the flow
 

Offline DavidAlfa

  • Super Contributor
  • ***
  • Posts: 6178
  • Country: es
Re: lol, modern mkfifo (coreutils->=2021) freezes with old Linux kernel v<=4.*
« Reply #2 on: December 27, 2023, 12:16:55 pm »
Ahh this is the stuff I love about linux. So many good things... but so messy after 1-2 years and lots of things got deprecated/changed/updated.
After so many years, I finally understood why vendors providing the firmware sources still used ubuntu 14!
Everything has to be reworked every year if you want to keep it updated... endless work!
Here the "Don't touch if not broken" rule applies heavily, so "I will update because newer means better and..." DON'T if working! :-DD
« Last Edit: December 27, 2023, 05:26:13 pm by DavidAlfa »
Hantek DSO2x1x            Drive        FAQ          DON'T BUY HANTEK! (Aka HALF-MADE)
Stm32 Soldering FW      Forum      Github      Donate
 
The following users thanked this post: DiTBho

Online magic

  • Super Contributor
  • ***
  • Posts: 7050
  • Country: pl
Re: lol, modern mkfifo (coreutils->=2021) freezes with old Linux kernel v<=4.*
« Reply #3 on: December 27, 2023, 05:15:57 pm »
Code: [Select]
$ uname -r
3.10.18
$ pwd
/dev/shm/coreutils-9.4
$ time strace ./src/mkfifo test 2>&1 |tail -n 6
close(3)                                = 0
mknod("test", S_IFIFO|0666)             = 0
close(1)                                = 0
close(2)                                = 0
exit_group(0)                           = ?
+++ exited with 0 +++

real    0m0.021s
user    0m0.000s
sys     0m0.000s

 :-//
 

Offline DiTBhoTopic starter

  • Super Contributor
  • ***
  • Posts: 4217
  • Country: gb
Re: lol, modern mkfifo (coreutils->=2021) freezes with old Linux kernel v<=4.*
« Reply #4 on: December 27, 2023, 05:32:09 pm »
It seems there was a bug report in 2020: has *IT* come back? Who knows ...
It seems mkfifo hangs when using -m 600 (as invoked by emerge), otherwise it works OK.

Perplexed ...  :-//
The opposite of courage is not cowardice, it is conformity. Even a dead fish can go with the flow
 

Online magic

  • Super Contributor
  • ***
  • Posts: 7050
  • Country: pl
Re: lol, modern mkfifo (coreutils->=2021) freezes with old Linux kernel v<=4.*
« Reply #5 on: December 27, 2023, 06:02:44 pm »
600 also works for me.

Besides, coreutils mkfifo doesn't open the fifo, it only creates it and immediately terminates as indicated by strace.

edit
Actually, it opens the fifo if -m is passed, in the subsequent call to lib/lchmod.c:lchmod()
Code: [Select]
mknod("test", S_IFIFO|0600)             = 0
open("test", O_RDONLY|O_LARGEFILE|O_NOFOLLOW|O_CLOEXEC|O_PATH) = 3
readlinkat(3, "", 0xbee9b83c, 1)        = -1 ENOENT (No such file or directory)
close(3)                                = 0
readlink("test", 0xbee9b83c, 1)         = -1 EINVAL (Invalid argument)
chmod("test", 0600)                     = 0
close(1)                                = 0
close(2)                                = 0
exit_group(0)                           = ?
+++ exited with 0 +++
But it works...


This call hanging despite O_PATH could be a kernel bug perhaps. Not sure why it's OK on my system, maybe it's specific to some 4.x release or maybe my ARM vendor backported fixes to this old 3.x branch... (this is not a vanilla kernel I'm testing with)
« Last Edit: December 27, 2023, 06:48:28 pm by magic »
 

Offline DiTBhoTopic starter

  • Super Contributor
  • ***
  • Posts: 4217
  • Country: gb
Re: lol, modern mkfifo (coreutils->=2021) freezes with old Linux kernel v<=4.*
« Reply #6 on: December 27, 2023, 06:58:12 pm »
Also gpg (so, everything related to --sync, --update, ... manifest) now crashes with the hostname "tigra-mips32/be"

It seems it really hates the "/" char (1)
changed it into "tigra-mips32-be", and it's back working again  :o :o :o

... ah, computer science ...


(1) not manually done, not my choice, it got "injected" by the automator due to the profile names
  • mips32/be
  • mips32/le
  • ...
The opposite of courage is not cowardice, it is conformity. Even a dead fish can go with the flow
 


Share me

Digg  Facebook  SlashDot  Delicious  Technorati  Twitter  Google  Yahoo
Smf