2014-02-17 16:39:37 +01:00
|
|
|
Index: ipmitool-1.8.13/lib/helper.c
|
|
|
|
===================================================================
|
|
|
|
--- ipmitool-1.8.13.orig/lib/helper.c
|
|
|
|
+++ ipmitool-1.8.13/lib/helper.c
|
|
|
|
@@ -657,7 +657,6 @@ ipmi_start_daemon(struct ipmi_intf *intf
|
2010-03-05 16:31:33 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
chdir("/");
|
|
|
|
- umask(0);
|
|
|
|
|
|
|
|
for (fd=0; fd<64; fd++) {
|
|
|
|
if (fd != intf->fd)
|
2014-02-17 16:39:37 +01:00
|
|
|
Index: ipmitool-1.8.13/src/ipmievd.c
|
|
|
|
===================================================================
|
|
|
|
--- ipmitool-1.8.13.orig/src/ipmievd.c
|
|
|
|
+++ ipmitool-1.8.13/src/ipmievd.c
|
|
|
|
@@ -700,6 +700,7 @@ ipmievd_main(struct ipmi_event_intf * ei
|
2010-03-05 16:31:33 +01:00
|
|
|
int i, rc;
|
|
|
|
int daemon = 1;
|
|
|
|
struct sigaction act;
|
|
|
|
+ mode_t oldumask;
|
|
|
|
|
|
|
|
memset(pidfile, 0, 64);
|
|
|
|
sprintf(pidfile, "%s%d", DEFAULT_PIDFILE, eintf->intf->devnum);
|
2014-02-17 16:39:37 +01:00
|
|
|
@@ -761,8 +762,9 @@ ipmievd_main(struct ipmi_event_intf * ei
|
2010-03-05 16:31:33 +01:00
|
|
|
|
2013-02-28 14:22:17 +01:00
|
|
|
ipmi_start_daemon(eintf->intf);
|
|
|
|
|
|
|
|
- umask(022);
|
2010-03-05 16:31:33 +01:00
|
|
|
+ oldumask = umask(022);
|
|
|
|
fp = ipmi_open_file_write(pidfile);
|
|
|
|
+ umask(oldumask);
|
2013-02-28 14:22:17 +01:00
|
|
|
if (fp == NULL) {
|
|
|
|
/* Failed to get fp on PID file -> exit. */
|
|
|
|
log_halt();
|