freebsd-ports/japanese/canna-server/files/patch-server-comm.c
Hiroki Sato aa83bae006 - Use mode 0755 for unix domain socket directory to prevent write
access from users other than the owner (bin).

- Remove /tmp/.iroha_unix before cannaserver starts and after it
  is killed.
2008-11-08 08:49:01 +00:00

15 lines
549 B
C

--- server/comm.c.orig 2004-04-27 06:48:37.000000000 +0900
+++ server/comm.c 2008-11-08 17:38:21.000000000 +0900
@@ -555,10 +555,11 @@
unaddr->sun_family = AF_UNIX;
oldUmask = umask (0);
- if ( mkdir( IR_UNIX_DIR, 0777 ) == -1 &&
+ if ( mkdir( IR_UNIX_DIR, 0755 ) == -1 &&
errno != EEXIST ) {
ir_debug( Dmsg(5, "Can't open %s error No. %d\n",IR_UNIX_DIR, errno));
}
+
if (RkiStrlcpy(unaddr->sun_path, IR_UNIX_PATH, sockpathmax) >= sockpathmax) {
ir_debug( Dmsg(5, "Path to socket is too long\n"));
goto last;