Skip to content
Advertisement

Retrieve logged on user name or id in the process running under root

I need to run from a privileged (root) application another application with current logged on user.

getenv("USER") and getenv("LOGNAME") return “root” in the privileged application. Effective and current user ids are 0.

JavaScript

I found something close to my needs, user-1000.slice, but I would like to avoid using fscanf on the file /proc/self/cgroup.

JavaScript

The code bellow outputs 1000 as desired. Is there any more convenient way or API to get a user name of current UI session from a privileged application?

JavaScript

Advertisement

Answer

I noticed it lately that the upstart process is running under a log on user, I thought it is running under root. So, my solution below looks better than one with extracting user id from /proc/self/cgroup.

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement