jplindst Why do you ask instead of checking it yourself?
vagrant@ubuntu-focal:~$ sudo sysctl fs.protected_regular
|
fs.protected_regular = 2
|
|
vagrant@ubuntu-focal:~$ sudo rm -f /tmp/xx
|
vagrant@ubuntu-focal:~$ sudo touch /tmp/xx
|
vagrant@ubuntu-focal:~$ sudo chmod 600 /tmp/xx
|
vagrant@ubuntu-focal:~$ sudo chown $USER /tmp/xx
|
vagrant@ubuntu-focal:~$ sudo sh -c "echo 1 > /tmp/xx"
|
sh: 1: cannot create /tmp/xx: Permission denied
|
|
vagrant@ubuntu-focal:~$ sudo sysctl fs.protected_regular=0
|
fs.protected_regular = 0
|
vagrant@ubuntu-focal:~$ sudo sh -c "echo 1 > /tmp/xx"
|
|
vagrant@ubuntu-focal:~$ sudo sysctl fs.protected_regular=1
|
fs.protected_regular = 1
|
vagrant@ubuntu-focal:~$ sudo sh -c "echo 1 > /tmp/xx"
|
sh: 1: cannot create /tmp/xx: Permission denied
|
Can you jplindst please proceed and fix this everywhere in Galera? What Alexander did in MDEV-21140 was most likely not the only place where this is needed.
Is this somehow related to https://jira.mariadb.org/browse/MDEV-21140 that was "fixed" but not sure if fix was confirmed.