new check ZipCheck (Ville Skyttä)

git-svn-id: svn+ssh://rpmlint.zarb.org/home/projects/rpmlint/svn/trunk@805 9bc8b190-ac0f-0410-8968-dc7d1f502856
This commit is contained in:
Frédéric Lepied 2003-12-22 11:29:38 +00:00 committed by Ville Skyttä
parent a4ddc936db
commit 0f9314890b
3 changed files with 101 additions and 0 deletions

View File

@ -25,6 +25,7 @@ DEFAULT_CHECKS=("DistributionCheck",
"SourceCheck",
"SpecCheck",
"NamingPolicyCheck",
"ZipCheck",
)
info=0

2
README
View File

@ -24,6 +24,7 @@ Implemented checks:
o %post; %pre, %postun and %preun script checks (PostCheck).
o /etc/rc.d/init.d checks (InitScriptCheck).
o Spec file checks (SpecCheck).
o Zip/Jar file checks (ZipCheck).
If you want to change configuration options or the list of checks, use
the global configuration file /etc/rpmlint/config or in the user
@ -76,5 +77,6 @@ PerlVersionTrick boolean 1
CrossCompilation regex '-mandrake-linux-[^/]+$'
UsrLibBinaryException regex '^/usr/lib/(perl|python|menu|pkgconfig|lib[^/]+\.(so|l?a)$)'
UseEpoch boolean 0
UseIndexedJars boolean 1
ValidSrcPerms list of modes (0644, 0755)
KernelModuleRPMsOK boolean 1

98
ZipCheck.py Normal file
View File

@ -0,0 +1,98 @@
#------------------------------------------------------------------------------
# File : ZipCheck.py
# Package : rpmlint
# Author : Ville Skyttä
# Created on : Thu Oct 30 00:14:45 EET 2003
# Version : $Id$
# Purpose : Verify Zip/Jar file correctness
#------------------------------------------------------------------------------
from Filter import *
import AbstractCheck
import Config
import os
import re
import stat
import zipfile
zip_regex=re.compile('\.(zip|[ewj]ar)$')
jar_regex=re.compile('\.[ewj]ar$')
classpath_regex=re.compile('^\s*Class-Path\s*:', re.M | re.I)
want_indexed_jars = Config.getOption('UseIndexedJars', 1)
class ZipCheck(AbstractCheck.AbstractCheck):
def __init__(self):
AbstractCheck.AbstractCheck.__init__(self, "ZipCheck")
def check(self, pkg):
for i in pkg.getFilesInfo():
f = pkg.dirName() + i[0]
if zip_regex.search(f) and \
stat.S_ISREG(os.lstat(f)[stat.ST_MODE]) and \
zipfile.is_zipfile(f):
zip = None
try:
zip = zipfile.ZipFile(f, 'r')
badcrc = zip.testzip()
if badcrc:
printError(pkg, 'bad-crc-in-zip: %s' % badcrc, i[0])
compressed = 0
for zinfo in zip.infolist():
if zinfo.compress_type != zipfile.ZIP_STORED:
compressed = 1
break
if not compressed:
printWarning(pkg, 'uncompressed-zip', i[0])
# additional jar checks
if jar_regex.search(f):
try:
mf = zip.read('META-INF/MANIFEST.MF')
if classpath_regex.search(mf):
printWarning(pkg, 'class-path-in-manifest', i[0])
except KeyError:
printError(pkg, 'no-jar-manifest', i[0])
try:
zinfo = zip.getinfo('META-INF/INDEX.LIST')
if not want_indexed_jars:
printWarning(pkg, 'jar-indexed', i[0])
except KeyError:
if want_indexed_jars:
printWarning(pkg, 'jar-not-indexed', i[0])
pass
finally:
zip and zip.close()
check = ZipCheck()
if Config.info:
addDetails(
'bad-crc-in-zip',
'''The reported file in the zip fails the CRC check. Usually this is a
sign of a corrupt zip file.''',
'uncompressed-zip',
'''The zip file is not compressed.''',
'class-path-in-manifest',
'''The META-INF/MANIFEST file in the jar contains a hardcoded Class-Path.
These entries do not work with older Java versions and even if they do work,
they are inflexible and usually cause nasty surprises.''',
'no-jar-manifest',
'''The jar file does not contain a META-INF/MANIFEST file.''',
'jar-indexed',
'''The jar file is indexed, ie. it contains the META-INF/INDEX.LIST file.
These files are known to cause problems with some older Java versions.''',
'jar-not-indexed',
'''The jar file is not indexed, ie. it does not contain the META-INF/INDEX.LIST
file. Indexed jars speed up the class searching process of classloaders
in some situations.''',
)
# ZipCheck.py ends here