2016-02-25 14:26:31 +01:00
|
|
|
Index: ipmitool-1.8.16/lib/helper.c
|
2014-02-17 16:39:37 +01:00
|
|
|
===================================================================
|
2016-02-25 14:26:31 +01:00
|
|
|
--- ipmitool-1.8.16.orig/lib/helper.c 2015-11-22 13:50:54.000000000 +0100
|
|
|
|
+++ ipmitool-1.8.16/lib/helper.c 2016-02-25 13:25:40.147488838 +0100
|
|
|
|
@@ -659,7 +659,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)
|
2016-02-25 14:26:31 +01:00
|
|
|
Index: ipmitool-1.8.16/src/ipmievd.c
|
2014-02-17 16:39:37 +01:00
|
|
|
===================================================================
|
2016-02-25 14:26:31 +01:00
|
|
|
--- ipmitool-1.8.16.orig/src/ipmievd.c 2015-11-22 13:50:54.000000000 +0100
|
|
|
|
+++ ipmitool-1.8.16/src/ipmievd.c 2016-02-25 13:25:40.155489280 +0100
|
|
|
|
@@ -701,6 +701,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);
|
2016-02-25 14:26:31 +01:00
|
|
|
@@ -763,8 +764,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();
|