aboutsummaryrefslogtreecommitdiff
blob: ffddf72073635f9f9665dd9d2061715dfc76bd71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
# Copyright(c) 2009, Gentoo Foundation
#
# Licensed under the GNU General Public License, v2
#
# $Header: $

"""Check timestamps and MD5sums for files owned by a given installed package"""

__docformat__ = 'epytext'

# =======
# Imports
# =======

import os
import sys
from getopt import gnu_getopt, GetoptError

try:
	import portage.checksum as checksum
except ImportError:
	import portage_checksum as checksum

import gentoolkit.pprinter as pp
from gentoolkit.equery import format_options, mod_usage, Config
from gentoolkit.helpers2 import do_lookup

# =======
# Globals
# =======

QUERY_OPTS = {
	"categoryFilter": None,
	"includeInstalled": False,
	"includeOverlayTree": False,
	"includePortTree": False,
	"checkMD5sum": True,
	"checkTimestamp" : True,
	"isRegex": False,
	"matchExact": True,
	"printMatchInfo": False,
	"showSummary" : True,
	"showPassedFiles" : False,
	"showFailedFiles" : True
}

# =========
# Functions
# =========

def print_help(with_description=True):
	"""Print description, usage and a detailed help message.
	
	@type with_description: bool
	@param with_description: if true, print module's __doc__ string
	"""

	if with_description:
		print __doc__.strip()
		print

	# Deprecation warning added by djanderson, 12/2008
	pp.print_warn("Default action for this module has changed in Gentoolkit 0.3.")
	pp.print_warn("Use globbing to simulate the old behavior (see man equery).")
	pp.print_warn("Use '*' to check all installed packages.")
	print

	print mod_usage(mod_name="check")
	print
	print pp.command("options")
	print format_options((
		(" -h, --help", "display this help message"),
		(" -c, --category CAT", "only check files from packages in CAT"),
		(" -f, --full-regex", "query is a regular expression"),
	))


def parse_module_options(module_opts):
	"""Parse module options and update GLOBAL_OPTS"""

	opts = (x[0] for x in module_opts)
	posargs = (x[1] for x in module_opts)
	for opt, posarg in zip(opts, posargs):
		if opt in ('-h', '--help'):
			print_help()
			sys.exit(0)
		elif opt in ('-c', '--category'):
			QUERY_OPTS['categoryFilter'] = posarg
		elif opt in ('-f', '--full-regex'):
			QUERY_OPTS['isRegex'] = True


def run_checks(files):
	"""Run some basic sanity checks on a package's contents.

	If the file type (ftype) is not a directory or symlink, optionally
	verify MD5 sums or mtimes via verify_obj().

	@see: gentoolkit.packages.get_contents()
	@type files: dict
	@param files: in form {'PATH': ['TYPE', 'TIMESTAMP', 'MD5SUM']}
	@rtype: tuple
	@return:
		passed (int): number of files that passed all checks
		checked (int): number of files checked
		errs (list): check errors' descriptions
	"""

	checked = 0
	passed = 0
	errs = []
	for cfile in files:
		checked += 1
		ftype = files[cfile][0]
		if not os.path.exists(cfile):
			errs.append("%s does not exist" % cfile)
			continue
		elif ftype == "dir":
			if not os.path.isdir(cfile):
				err = "%(cfile)s exists, but is not a directory"
				errs.append(err % locals())
				continue
		elif ftype == "obj":
			new_errs = verify_obj(files, cfile, errs)
			if new_errs != errs:
				errs = new_errs
				continue
		elif ftype == "sym":
			target = files[cfile][2].strip()
			if not os.path.islink(cfile):
				err = "%(cfile)s exists, but is not a symlink"
				errs.append(err % locals())
				continue
			tgt = os.readlink(cfile)
			if tgt != target:
				err = "%(cfile)s does not point to %(target)s"
				errs.append(err % locals())
				continue
		else:
			err = "%(cfile)s has unknown type %(ftype)s"
			errs.append(err % locals())
			continue
		passed += 1

	return passed, checked, errs


def verify_obj(files, cfile, errs):
	"""Verify the MD5 sum and/or mtime and return any errors."""

	if QUERY_OPTS["checkMD5sum"]:
		md5sum = files[cfile][2]
		try: 
			cur_checksum = checksum.perform_md5(cfile, calc_prelink=1)
		except IOError:
			err = "Insufficient permissions to read %(cfile)s"
			errs.append(err % locals())
			return errs
		if cur_checksum != md5sum:
			err = "%(cfile)s has incorrect MD5sum"
			errs.append(err % locals())
			return errs
	if QUERY_OPTS["checkTimestamp"]:
		mtime = int(files[cfile][1])
		st_mtime = os.lstat(cfile).st_mtime
		if st_mtime != mtime:
			err = "%(cfile)s has wrong mtime (is %(st_mtime)d, " + \
				"should be %(mtime)d)"
			errs.append(err % locals())
			return errs

	return errs


def main(input_args):
	"""Parse input and run the program"""

	short_opts = "hac:f"
	long_opts = ('help', 'all', 'category=', 'full-regex')

	try:
		module_opts, queries = gnu_getopt(input_args, short_opts, long_opts)
	except GetoptError, err:
		pp.print_error("Module %s" % err)
		print
		print_help(with_description=False)
		sys.exit(2)

	parse_module_options(module_opts)
	
	if not queries and not QUERY_OPTS["includeInstalled"]:
		print_help()
		sys.exit(2)
	elif queries and not QUERY_OPTS["includeInstalled"]:
		QUERY_OPTS["includeInstalled"] = True
	elif QUERY_OPTS["includeInstalled"]:
		queries = ["*"]

	#
	# Output
	#

	first_run = True
	for query in queries:
		if not first_run:
			print

		matches = do_lookup(query, QUERY_OPTS)

		if not matches:
			pp.print_error("No package found matching %s" % query)

		matches.sort()

		for pkg in matches:
			if not Config["piping"] and Config["verbosityLevel"] >= 3:
				print "[ Checking %s ]" % pp.cpv(pkg.cpv)
			else:
				print "%s:" % pkg.cpv

			passed, checked, errs = run_checks(pkg.get_contents())

			if not Config["piping"] and Config["verbosityLevel"] >= 3:
				for err in errs:
					pp.print_error(err)

			passed = pp.number(str(passed))
			checked = pp.number(str(checked))
			info = " * %(passed)s out of %(checked)s files passed"
			print info % locals()

			first_run = False