Export extractExTags and updateExclTags
[ganeti-local] / autotools / check-tar
1 #!/usr/bin/python
2 #
3
4 # Copyright (C) 2010 Google Inc.
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 # General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 # 02110-1301, USA.
20
21
22 """Script to check tarball generated by Automake.
23
24 """
25
26 import sys
27 import stat
28 import tarfile
29
30
31 def ReportError(member, msg):
32   print >>sys.stderr, "%s: %s" % (member.name, msg)
33
34
35 def main():
36   tf = tarfile.open(fileobj=sys.stdin)
37
38   success = True
39
40   for member in tf.getmembers():
41     if member.uid != 0:
42       success = False
43       ReportError(member, "Owned by UID %s, not UID 0" % member.uid)
44
45     if member.gid != 0:
46       success = False
47       ReportError(member, "Owned by GID %s, not GID 0" % member.gid)
48
49     if member.mode & (stat.S_IWGRP | stat.S_IWOTH):
50       success = False
51       ReportError(member, "World or group writeable (mode is %o)" % member.mode)
52
53   if success:
54     sys.exit(0)
55
56   sys.exit(1)
57
58
59 if __name__ == "__main__":
60   main()