summaryrefslogtreecommitdiffstats
path: root/usr.sbin/mountd
diff options
context:
space:
mode:
authorpjd <pjd@FreeBSD.org>2005-09-16 11:24:28 +0000
committerpjd <pjd@FreeBSD.org>2005-09-16 11:24:28 +0000
commitc71407b5890e69c4a1adc0e0936f0d7e9cd24be4 (patch)
treed2465334cbecfbd0881a19b190bef28772de14f5 /usr.sbin/mountd
parentd2f7ab28daf6bc7f93eb290728f89c7d713ca0ce (diff)
downloadFreeBSD-src-c71407b5890e69c4a1adc0e0936f0d7e9cd24be4.zip
FreeBSD-src-c71407b5890e69c4a1adc0e0936f0d7e9cd24be4.tar.gz
Pidfiles should be created with permission preventing users from opening
them for reading. When user can open file for reading, he can also flock(2) it, which can lead to confusions. Pointed out by: green
Diffstat (limited to 'usr.sbin/mountd')
-rw-r--r--usr.sbin/mountd/mountd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/mountd/mountd.c b/usr.sbin/mountd/mountd.c
index e557b59..52ccc57 100644
--- a/usr.sbin/mountd/mountd.c
+++ b/usr.sbin/mountd/mountd.c
@@ -275,7 +275,7 @@ main(argc, argv)
udp6sock = tcp6sock = 0;
/* Check that another mountd isn't already running. */
- pfh = pidfile_open(_PATH_MOUNTDPID, 0644, &otherpid);
+ pfh = pidfile_open(_PATH_MOUNTDPID, 0600, &otherpid);
if (pfh == NULL) {
if (errno == EEXIST)
errx(1, "mountd already running, pid: %d.", otherpid);
OpenPOWER on IntegriCloud