open-source-ideas / ideas

💡 Looking for inspiration for your next open source project? Or perhaps you've got a brilliant idea you can't wait to share with others? Open Source Ideas is a community built specifically for this! 👋
6.57k stars 219 forks source link

Building an Anrdoid-like permissions interface for Linux desktops #34

Open martinruenz opened 7 years ago

martinruenz commented 7 years ago

Project description

Sometimes it is useful to employ 3rd-party software (which might be closed source) that you can not fully trust. Currently, there is no user-friendly way – at least that I am aware of – which would allow you to limit the permissions of such an application. Common mobile operating systems offer some form of privilege management, so that the user can grant permissions, such as accessing contacts, on a per application level. In my opinion, in would be very convenient and lead to a higher level of security to have an equivalent interface under Linux. After all, it is an ordinary wish to use closed-source software, but I don’t think providing access to all personal files is the best default behaviour.

Of course, the system architecture of a mobile OS differs greatly from the one of a Linux desktop. But I think that AppArmor profiles could be managed by a GUI to yield a similar user experience.

Here is a rough mockup of how the controls for a single application could look like:

mockup_s

Questions:

Relevant Technology

The interface itself could be written in various languages. Using python ant gtk would certainly be one popular option.

Who is this for

Creating the GUI itself is trivial and could be done by a novice developer. The more sophisticated part is the management of AppArmor rules and having a strong knowledge of linux systems would certainly help here. I think creating a first prototype shouldn't take too long and an intermediate level should be good enough for development.

Further reading

KOLANICH commented 6 years ago

Also: https://github.com/netblue30/firejail - a sandbox for linux

fluks commented 5 years ago

You can use AppArmor as a blackilist if you first allow everything. I remembered first, that this was not possible. If you use it as a whitelist, then you would need to distribute profiles for programs.

https://lists.ubuntu.com/archives/apparmor/2016-June/009790.html

Maybe allow everything, then deny the things you want to control as a default. If you want to first control only $HOME file operations.

capability,
network,
file,
mount,
ptrace,
signal,
unix,
change_profile,
dbus,
pivot_root,
umount,

deny @{HOME}/ rw,
deny @{HOME}/** rw,