summaryrefslogtreecommitdiff
path: root/bin/swift-object-auditor.py
diff options
context:
space:
mode:
Diffstat (limited to 'bin/swift-object-auditor.py')
-rwxr-xr-xbin/swift-object-auditor.py69
1 files changed, 69 insertions, 0 deletions
diff --git a/bin/swift-object-auditor.py b/bin/swift-object-auditor.py
new file mode 100755
index 000000000..5d0e54e66
--- /dev/null
+++ b/bin/swift-object-auditor.py
@@ -0,0 +1,69 @@
+#!/usr/bin/python
+# Copyright (c) 2010 OpenStack, LLC.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+# implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+import os
+import signal
+import sys
+from ConfigParser import ConfigParser
+
+from swift.obj.auditor import ObjectAuditor
+from swift.common import utils
+
+if __name__ == '__main__':
+ if len(sys.argv) < 2:
+ print "Usage: object-auditor CONFIG_FILE [once]"
+ sys.exit()
+
+ once = len(sys.argv) > 2 and sys.argv[2] == 'once'
+
+ c = ConfigParser()
+ if not c.read(sys.argv[1]):
+ print "Unable to read config file."
+ sys.exit(1)
+
+ server_conf = dict(c.items('object-server'))
+ if c.has_section('object-auditor'):
+ auditor_conf = dict(c.items('object-auditor'))
+ else:
+ print "Unable to find object-auditor config section in %s." % \
+ sys.argv[1]
+ sys.exit(1)
+
+ logger = utils.get_logger(auditor_conf, 'object-auditor')
+ # log uncaught exceptions
+ sys.excepthook = lambda *exc_info: \
+ logger.critical('UNCAUGHT EXCEPTION', exc_info=exc_info)
+ sys.stdout = sys.stderr = utils.LoggerFileObject(logger)
+
+ utils.drop_privileges(server_conf.get('user', 'swift'))
+
+ try:
+ os.setsid()
+ except OSError:
+ pass
+
+ def kill_children(*args):
+ signal.signal(signal.SIGTERM, signal.SIG_IGN)
+ os.killpg(0, signal.SIGTERM)
+ sys.exit()
+
+ signal.signal(signal.SIGTERM, kill_children)
+
+ auditor = ObjectAuditor(server_conf, auditor_conf)
+ if once:
+ auditor.audit_once()
+ else:
+ auditor.audit_forever()