lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Wed, 2 Feb 2011 09:45:19 +0100
From:	Jordi Pujol <jordipujolp@...il.com>
To:	Paul Menage <menage@...gle.com>
Cc:	Ingo Molnar <mingo@...e.hu>, linux-kernel@...r.kernel.org,
	Mike Galbraith <efault@....de>,
	Peter Zijlstra <a.p.zijlstra@...llo.nl>
Subject: Re: [RFC/RFT PATCH] cgroup: enable write permission for the group of users

agree, thanks for your replies,

To be polite, for if any user finds this thread, here is a solution, the code 
added to the daemon script

set_writeperm_usergroups() {
	local mountpoint f st_mode
	mountpoint="$(awk '$1 == "cgroup" {print $2}' "/proc/mounts")"
	if [ ! -d "${mountpoint}" ]; then
		log_warning_msg "Can't find cgroups mountpoint"
		return
	fi
	while read f; do
		if st_mode="0x$(stat --format='%a' "${f}")" && \
		[ $((${st_mode} & 0x20)) -eq 0 ]; then
			chmod g+w "${f}"
		fi
	done << EOF
$(find "${mountpoint}" -type f -perm '-u=w')
EOF
}

Regards,

Jordi Pujol

Live never ending Tale
GNU/Linux Live forever!
http://livenet.selfip.com
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ