[Bug 980835] Re: tty[1-6] is now root:tty 0660 instead of root:root 0600

2020-09-05 Thread Chris Hofstaedtler
** Changed in: util-linux (Ubuntu) Status: Confirmed => Fix Released -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/980835 Title: tty[1-6] is now root:tty 0660 instead of root:root 0600 To

[Bug 980835] Re: tty[1-6] is now root:tty 0660 instead of root:root 0600

2013-10-09 Thread Phillip Susi
This has been fixed upstream in release 2.23. ** Also affects: util-linux-ng Importance: Undecided Status: New ** Changed in: util-linux-ng Status: New = Fix Released -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 980835] Re: tty[1-6] is now root:tty 0660 instead of root:root 0600

2012-04-13 Thread Adam Conrad
This is actually the code responsible: @@ -686,12 +770,16 @@ static void open_tty(char *tty, struct termios *tp, struct options *op) log_err(%s: tcgetattr: %m, tty); /* -* Linux login(1) will change tty permissions. Use root owner and group -* with

[Bug 980835] Re: tty[1-6] is now root:tty 0660 instead of root:root 0600

2012-04-13 Thread Jamie Strandboge
Adam Conrad points out that all the other /dev/tty[0-9]* have group tty ownership. However, they are 0620: $ ls -l /dev/tty10 crw--w 1 root tty 4, 10 Apr 13 09:29 /dev/tty10 This is presumably from the udev default in /lib/udev/rules.d/50-udev-default.rules: KERNEL==tty[0-9]*,

[Bug 980835] Re: tty[1-6] is now root:tty 0660 instead of root:root 0600

2012-04-13 Thread Adam Conrad
08:36 infinity Right, the code you hilighted is making them 660. 08:36 infinity The code I hilighted (or the removal) is making them remain root:tty. 08:37 infinity If there's a valid argument for the udev rule being 620, we could make util-linux mirror that. -- You received this bug

[Bug 980835] Re: tty[1-6] is now root:tty 0660 instead of root:root 0600

2012-04-13 Thread Joseph Salisbury
** Changed in: util-linux (Ubuntu) Importance: Undecided = Medium ** Changed in: util-linux (Ubuntu) Status: New = Confirmed ** Tags added: kernel-da-key precise -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 980835] Re: tty[1-6] is now root:tty 0660 instead of root:root 0600

2012-04-13 Thread Jamie Strandboge
So, while don't have a strong opinion on if group read is a problem, it seems that if getty is going to allow looser permissions than the default udev rule, (ie adding group read), it should be an active decision to solve a real problem. Before the permissions were more strict, so from a security

[Bug 980835] Re: tty[1-6] is now root:tty 0660 instead of root:root 0600

2012-04-13 Thread Jamie Strandboge
I forgot to mention that this is where udev introduced the change from 0666 to 0620: http://www.mail-archive.com/lfs-book@linuxfromscratch.org/msg09416.html and this is where 0620 was mentioned in Debian (but for makedev, not udev): http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=244751/0620#42

[Bug 980835] Re: tty[1-6] is now root:tty 0660 instead of root:root 0600

2012-04-13 Thread Jamie Strandboge
Maybe it is weak google-fu, but I can't find any justification for why util-linux chose 0660. My gut feeling is they chose it because it seemed reasonable for them at the time, but that doesn't mean it is reasonable for us and I would encourage us to consider using the udev default of 0620. --