summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2012-06-12 09:20:10 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2012-06-12 09:20:10 -0400
commita524967e8d5c4c22e49cd619aed20c87a316c0be (patch)
tree12180d161763fb166330e49759fd415a048af3e7
parent503ea9de36d74ac6d7ad564d04a923a016592ccd (diff)
downloadbcfg2-a524967e8d5c4c22e49cd619aed20c87a316c0be.tar.gz
bcfg2-a524967e8d5c4c22e49cd619aed20c87a316c0be.tar.bz2
bcfg2-a524967e8d5c4c22e49cd619aed20c87a316c0be.zip
fixed major security flaw in Trigger plugin
-rw-r--r--src/lib/Server/Plugins/Trigger.py40
1 files changed, 25 insertions, 15 deletions
diff --git a/src/lib/Server/Plugins/Trigger.py b/src/lib/Server/Plugins/Trigger.py
index eb3310a4e..b173031fe 100644
--- a/src/lib/Server/Plugins/Trigger.py
+++ b/src/lib/Server/Plugins/Trigger.py
@@ -1,17 +1,7 @@
import os
+import pipes
import Bcfg2.Server.Plugin
-
-
-def async_run(prog, args):
- pid = os.fork()
- if pid:
- os.waitpid(pid, 0)
- else:
- dpid = os.fork()
- if not dpid:
- os.system(" ".join([prog] + args))
- os._exit(0)
-
+from subprocess import Popen, PIPE
class Trigger(Bcfg2.Server.Plugin.Plugin,
Bcfg2.Server.Plugin.Statistics):
@@ -30,15 +20,35 @@ class Trigger(Bcfg2.Server.Plugin.Plugin,
"unloading" % self.data)
raise Bcfg2.Server.Plugin.PluginInitError
+ def async_run(self, args):
+ pid = os.fork()
+ if pid:
+ os.waitpid(pid, 0)
+ else:
+ dpid = os.fork()
+ if not dpid:
+ self.debug_log("Running %s" % " ".join(pipes.quote(a)
+ for a in args))
+ proc = Popen(args, stdin=PIPE, stdout=PIPE, stderr=PIPE)
+ (out, err) = proc.communicate()
+ rv = proc.wait()
+ if rv != 0:
+ self.logger.error("Trigger: Error running %s (%s): %s" %
+ (args[0], rv, err))
+ elif err:
+ self.debug_log("Trigger: Error: %s" % err)
+ os._exit(0)
+
def process_statistics(self, metadata, _):
args = [metadata.hostname, '-p', metadata.profile, '-g',
':'.join([g for g in metadata.groups])]
+ self.debug_log("running triggers")
for notifier in os.listdir(self.data):
+ self.debug_log("running %s" % notifier)
if ((notifier[-1] == '~') or
(notifier[:2] == '.#') or
(notifier[-4:] == '.swp') or
(notifier in ['SCCS', '.svn', '4913'])):
continue
- npath = self.data + '/' + notifier
- self.logger.debug("Running %s %s" % (npath, " ".join(args)))
- async_run(npath, args)
+ npath = os.path.join(self.data, notifier)
+ self.async_run([npath] + args)