Posted by mcortese on Wed 14 Dec 2005 at 14:32
Modern desktop computers running Linux have a sort of double personality that they do not usually share with Windows-based PCs. On the one hand, they are used as single-user workstations where the operator is granted full access to the machine resources, and on the other hand they are also real servers.
Of course there is no reason why a network user located far away should have free access to our machine's audio device or, much worse, to the modem configuration.
With Linux rising popularity in the desktop market, we need a way to distinguish the "user in front of the screen" (better named desktop user) from the "user from far away" (better named remote user), and grant them different rights. This is how I solved this problem for my local network of double souled computers.
A group-based solution
To begin with, all services that need to be accessed selectively, need to be associated to a group, and the file permissions should be set accordingly. For example, if we wnat that "right people" is able to play music, change the volume, and grab their talking into the microphone, the sound device should be readable and writeable by group audio and not by anyone else. Like that:
crw-rw---- 1 root audio 116, 33 9-dic 22:42 /dev/snd/timer
You can use the following groups for a number of commonly available services (feel free to add your own items to this intentionally incomplete list):
(Previously we covered the Debian groups here.)
Please note that if you are using udev, you may need to change the file /etc/udev/permissions.rules to have the new settings applied by default.The next step, in line with the best practice of secure computing i.e. deny power by default, is to be sure that the above mentioned groups have no permanent members. Edit /etc/group and check that no regular users are listed in the last field of the groups you are interested in.
Members on the fly
At this point it should be clear that the problem now is no more a matter of "who can access that file/service", but rather of "who is member of that group". The trick is to make a user a member of one or more groups "on the fly", based on the login method.
Surprisingly enough, there is a PAM module that does exactly this: pam_group. A line like:
auth optional pam_group.soshould be added to all the relevant files in /etc/pam.d/, for example to /etc/pam.d/gdm (assuming you are using GDM for the graphical login) and /etc/pam.d/login.
The pam_group module has its own configuration file (/etc/security/group.conf) that needs to be set up properly. The syntax is a little over-complicated, but it allows for the most flexible configuration.
The following example shows how to give membership to the audio, video, cdrom, floppy, and dip groups to the users that authenticate themselves via GDM:
gdm; *; *; Al0000-2400; audio, video, cdrom, floppy
How much secure is it?
It should be noted that the method depicted above is a good solution, and at least prevents remote users from accidentally shoot full-volume music out of the loudspeakers in a far and possibly crowded site. But if you are talking about security in terms of preventing a malicious, yet regular user to access the resources when he should not, then this method is not secure.
Imagine a desktop user (logged in via GDM, and hence with full membership to audio group) doing the following:
$ id uid=1000(mfc) gid=1000(mfc) groups=24(cdrom),29(audio), 44(video),1000(mfc) $ cp `which mpg123` . $ chown .audio mpg123 $ chmod g+s mpg123 $ ls -l mpg123 -rwxr-sr-x 1 mfc audio 38K Dec 10 00:48 mpg123What we have here is a program that, when executed, gets the rights of group audio no matter what the rights of the caller are:
$ su mfc Password: $ id uid=1000(mfc) gid=1000(mfc) groups=1000(mfc) $ ./mpg123 my_preferred_song.mp3
Nevertheless, this system still provide trivial protection against users who have never desktop access to your machine.
This article can be found online at the Debian Administration website at the following bookmarkable URL:
This article is copyright 2005 mcortese - please ask for permission to republish or translate.