Android签名机制之---签名验证过程详解
一、前言
今天是元旦,也是Single Dog的嚎叫之日,只能寫博客來祛除寂寞了,今天我們繼續來看一下Android中的簽名機制的姊妹篇:Android中是如何驗證一個Apk的簽名。在前一篇文章中我們介紹了,Android中是如何對程序進行簽名的,不了解的同學可以轉戰:
http://blog.csdn.net/jiangwei0910410003/article/details/50402000
當然在了解我們今天說到的知識點,這篇文章也是需要了解的,不然會有些知識點有些困惑的。
二、知識摘要
在我們沒有開始這篇文章之前,我們回顧一下之前說到的簽名機制流程:
1、對Apk中的每個文件做一次算法(數據摘要+Base64編碼),保存到MANIFEST.MF文件中
2、對MANIFEST.MF整個文件做一次算法(數據摘要+Base64編碼),存放到CERT.SF文件的頭屬性中,在對MANIFEST.MF文件中各個屬性塊做一次算法(數據摘要+Base64編碼),存到到一個屬性塊中。
3、對CERT.SF文件做簽名,內容存檔到CERT.RSA中
所以通過上面的流程可以知道,我們今天來驗證簽名流程也是這三個步驟
三、代碼分析
我們既然要了解Android中的應用程序的簽名驗證過程的話,那么我們肯定需要從一個類來開始看起,那就是PackageManagerService.java,因為這個類是Apk在安裝的過程中核心類:frameworks\base\services\core\java\com\android\server\pm\PackageManagerService.java
private void installPackageLI(InstallArgs args, PackageInstalledInfo res) {……PackageParser pp = new PackageParser();……try {pp.collectCertificates(pkg, parseFlags);pp.collectManifestDigest(pkg);} catch (PackageParserException e) {res.setError("Failed collect during installPackageLI", e);return;}……我們可以看到,有一個核心類:PackageParserframeworks\base\core\java\android\content\pm\PackageParser.java
這個類也是見名知意,就是需要解析Apk包,那么就會涉及到簽名信息了,下面我們就從這個類開始入手:
import static android.content.pm.PackageManager.INSTALL_PARSE_FAILED_BAD_MANIFEST; import static android.content.pm.PackageManager.INSTALL_PARSE_FAILED_BAD_PACKAGE_NAME; import static android.content.pm.PackageManager.INSTALL_PARSE_FAILED_CERTIFICATE_ENCODING; import static android.content.pm.PackageManager.INSTALL_PARSE_FAILED_INCONSISTENT_CERTIFICATES; import static android.content.pm.PackageManager.INSTALL_PARSE_FAILED_MANIFEST_MALFORMED; import static android.content.pm.PackageManager.INSTALL_PARSE_FAILED_NOT_APK; import static android.content.pm.PackageManager.INSTALL_PARSE_FAILED_NO_CERTIFICATES; import static android.content.pm.PackageManager.INSTALL_PARSE_FAILED_UNEXPECTED_EXCEPTION;我們看到了幾個我們很熟悉的信息:import static android.content.pm.PackageManager.INSTALL_PARSE_FAILED_NO_CERTIFICATES;這個是在安裝apk包的時候出現的錯誤,沒有證書:
那么我們就先來查找一下這個字段:
private static Certificate[][] loadCertificates(StrictJarFile jarFile, ZipEntry entry)throws PackageParserException {InputStream is = null;try {// We must read the stream for the JarEntry to retrieve// its certificates.is = jarFile.getInputStream(entry);readFullyIgnoringContents(is);return jarFile.getCertificateChains(entry);} catch (IOException | RuntimeException e) {throw new PackageParserException(INSTALL_PARSE_FAILED_UNEXPECTED_EXCEPTION,"Failed reading " + entry.getName() + " in " + jarFile, e);} finally {IoUtils.closeQuietly(is);} }這個方法是加載證書內容的
1、驗證Apk中的每個文件的算法(數據摘要+Base64編碼)和MANIFEST.MF文件中的對應屬性塊內容是否配對
首先獲取StrictJarFile文件中的InputStream對象
StrictJarFile這個類:libcore\luni\src\main\java\java\util\jar\StrictJarFile.java
public InputStream getInputStream(ZipEntry ze) {final InputStream is = getZipInputStream(ze);if (isSigned) {JarVerifier.VerifierEntry entry = verifier.initEntry(ze.getName());if (entry == null) {return is;}return new JarFile.JarFileInputStream(is, ze.getSize(), entry);}return is; }
1》獲取到VerifierEntry對象entry
在JarVerifier.java:libcore\luni\src\main\java\java\util\jar\JarVerifier.java
VerifierEntry initEntry(String name) {// If no manifest is present by the time an entry is found,// verification cannot occur. If no signature files have// been found, do not verify.if (manifest == null || signatures.isEmpty()) {return null;}Attributes attributes = manifest.getAttributes(name);// entry has no digestif (attributes == null) {return null;}ArrayList<Certificate[]> certChains = new ArrayList<Certificate[]>();Iterator<Map.Entry<String, HashMap<String, Attributes>>> it = signatures.entrySet().iterator();while (it.hasNext()) {Map.Entry<String, HashMap<String, Attributes>> entry = it.next();HashMap<String, Attributes> hm = entry.getValue();if (hm.get(name) != null) {// Found an entry for entry name in .SF fileString signatureFile = entry.getKey();Certificate[] certChain = certificates.get(signatureFile);if (certChain != null) {certChains.add(certChain);}}}// entry is not signedif (certChains.isEmpty()) {return null;}Certificate[][] certChainsArray = certChains.toArray(new Certificate[certChains.size()][]);for (int i = 0; i < DIGEST_ALGORITHMS.length; i++) {final String algorithm = DIGEST_ALGORITHMS[i];final String hash = attributes.getValue(algorithm + "-Digest");if (hash == null) {continue;}byte[] hashBytes = hash.getBytes(StandardCharsets.ISO_8859_1);try {return new VerifierEntry(name, MessageDigest.getInstance(algorithm), hashBytes,certChainsArray, verifiedEntries);} catch (NoSuchAlgorithmException ignored) {}}return null; }就是構造一個VerifierEntry對象:/*** Stores and a hash and a message digest and verifies that massage digest* matches the hash.*/ static class VerifierEntry extends OutputStream {private final String name;private final MessageDigest digest;private final byte[] hash;private final Certificate[][] certChains;private final Hashtable<String, Certificate[][]> verifiedEntries;VerifierEntry(String name, MessageDigest digest, byte[] hash,Certificate[][] certChains, Hashtable<String, Certificate[][]> verifedEntries) {this.name = name;this.digest = digest;this.hash = hash;this.certChains = certChains;this.verifiedEntries = verifedEntries;}/*** Updates a digest with one byte.*/@Overridepublic void write(int value) {digest.update((byte) value);}/*** Updates a digest with byte array.*/@Overridepublic void write(byte[] buf, int off, int nbytes) {digest.update(buf, off, nbytes);}/*** Verifies that the digests stored in the manifest match the decrypted* digests from the .SF file. This indicates the validity of the* signing, not the integrity of the file, as its digest must be* calculated and verified when its contents are read.** @throws SecurityException* if the digest value stored in the manifest does <i>not</i>* agree with the decrypted digest as recovered from the* <code>.SF</code> file.*/void verify() {byte[] d = digest.digest();if (!MessageDigest.isEqual(d, Base64.decode(hash))) {throw invalidDigest(JarFile.MANIFEST_NAME, name, name);}verifiedEntries.put(name, certChains);} }要構造這個對象,必須事先準備好參數。第一個參數很簡單,就是要驗證的文件名,直接將name傳進來就好了。第二個參數是計算摘要的對象,可以通過MessageDigest.getInstance獲得,不過要先告知到底要用哪個摘要算法,同樣也是通過查看MANIFEST.MF文件中對應名字的屬性值來決定的:所以可以知道所用的摘要算法是SHA1。第三個參數是對應文件的摘要值,這是通過讀取MANIFEST.MF文件獲得的:
第四個參數是證書鏈,即對該apk文件簽名的所有證書鏈信息。為什么是二維數組呢?這是因為Android允許用多個證書對apk進行簽名,但是它們的證書文件名必須不同,這個知識點,我在之前的一篇文章中:簽名過程詳解?中有提到。
最后一個參數是已經驗證過的文件列表,VerifierEntry在完成了對指定文件的摘要驗證之后會將該文件的信息加到其中。
static final class JarFileInputStream extends FilterInputStream {private long count;private ZipEntry zipEntry;private JarVerifier.VerifierEntry entry;private boolean done = false;JarFileInputStream(InputStream is, ZipEntry ze,JarVerifier.VerifierEntry e) {super(is);zipEntry = ze;count = zipEntry.getSize();entry = e;}@Overridepublic int read() throws IOException {if (done) {return -1;}if (count > 0) {int r = super.read();if (r != -1) {entry.write(r);count--;} else {count = 0;}if (count == 0) {done = true;entry.verify();}return r;} else {done = true;entry.verify();return -1;}}@Overridepublic int read(byte[] buf, int off, int nbytes) throws IOException {if (done) {return -1;}if (count > 0) {int r = super.read(buf, off, nbytes);if (r != -1) {int size = r;if (count < size) {size = (int) count;}entry.write(buf, off, size);count -= size;} else {count = 0;}if (count == 0) {done = true;entry.verify();}return r;} else {done = true;entry.verify();return -1;}}@Overridepublic int available() throws IOException {if (done) {return 0;}return super.available();}@Overridepublic long skip(long byteCount) throws IOException {return Streams.skipByReading(this, byteCount);} }
玄機原來在這里,這里的JarFileInputStream.read確實會調用其父類的read讀取指定的apk內文件的內容,并且將其傳給JarVerifier.VerifierEntry.write函數。當文件讀完后,會接著調用JarVerifier.VerifierEntry.verify函數對其進行驗證。JarVerifier.VerifierEntry.write函數非常簡單:
就是將讀到的文件的內容傳給digest,這個digest就是前面在構造JarVerifier.VerifierEntry傳進來的,對應于在MANIFEST.MF文件中指定的摘要算法。萬事具備,接下來想要驗證就很簡單了:
通過digest就可以算出apk內指定文件的真實摘要值。而記錄在MANIFEST.MF文件中對應該文件的摘要值,也在構造JarVerifier.VerifierEntry時傳遞給了hash變量。不過這個hash值是經過Base64編碼的。所以在比較之前,必須通過Base64解碼。如果不一致的話,會拋出SecurityException異常:
private static SecurityException invalidDigest(String signatureFile, String name,String jarName) {throw new SecurityException(signatureFile + " has invalid digest for " + name +" in " + jarName); }到這里我們就分析了,Android中是如何驗證MANIFEST.MF文件中的內容的,我們這里再來看一下,這里拋出異常出去:
這里捕獲到異常之后,會在拋異常出去:
在這里就會拋出異常信息,所以如果我們修改了一個Apk中的一個文件內容的話,這里肯定是安裝不上的。
2、驗證CERT.SF文件的簽名信息和CERT.RSA中的內容是否一致
1》我們就來看看StrictJarFile中的getCertificateChains方法:
/*** Return all certificate chains for a given {@link ZipEntry} belonging to this jar.* This method MUST be called only after fully exhausting the InputStream belonging* to this entry.** Returns {@code null} if this jar file isn't signed or if this method is* called before the stream is processed.*/ public Certificate[][] getCertificateChains(ZipEntry ze) {if (isSigned) {return verifier.getCertificateChains(ze.getName());}return null; }這里有一個變量判斷:isSigned,他是在構造方法中賦值的:public StrictJarFile(String fileName) throws IOException {this.nativeHandle = nativeOpenJarFile(fileName);this.raf = new RandomAccessFile(fileName, "r");try {// Read the MANIFEST and signature files up front and try to// parse them. We never want to accept a JAR File with broken signatures// or manifests, so it's best to throw as early as possible.HashMap<String, byte[]> metaEntries = getMetaEntries();this.manifest = new Manifest(metaEntries.get(JarFile.MANIFEST_NAME), true);this.verifier = new JarVerifier(fileName, manifest, metaEntries);isSigned = verifier.readCertificates() && verifier.isSignedJar();} catch (IOException ioe) {nativeClose(this.nativeHandle);throw ioe;}guard.open("close"); }去verifier中看看這兩個方法:/*** If the associated JAR file is signed, check on the validity of all of the* known signatures.** @return {@code true} if the associated JAR is signed and an internal* check verifies the validity of the signature(s). {@code false} if* the associated JAR file has no entries at all in its {@code* META-INF} directory. This situation is indicative of an invalid* JAR file.* <p>* Will also return {@code true} if the JAR file is <i>not</i>* signed.* @throws SecurityException* if the JAR file is signed and it is determined that a* signature block file contains an invalid signature for the* corresponding signature file.*/ synchronized boolean readCertificates() {if (metaEntries.isEmpty()) {return false;}Iterator<String> it = metaEntries.keySet().iterator();while (it.hasNext()) {String key = it.next();if (key.endsWith(".DSA") || key.endsWith(".RSA") || key.endsWith(".EC")) {verifyCertificate(key);it.remove();}}return true; }這個方法其實很簡單,就是判斷metaEntries中是否為空,說白了,就是判斷Apk中的META-INF文件夾中是否為空,只有文件就返回true。再來看看isSignedJar方法:/*** Returns a <code>boolean</code> indication of whether or not the* associated jar file is signed.** @return {@code true} if the JAR is signed, {@code false}* otherwise.*/ boolean isSignedJar() {return certificates.size() > 0; }這個方法直接判斷certificates這個集合是否為空。我們全局搜索一下這個集合在哪里存入的數據的地方,找到了verifyCertificate方法,同時我們發現,在上面的readCertificates方法中,就調用了這個方法,其實這個方法就是讀取證書信息的。
下面來看一下verifyCertificate方法:
/*** @param certFile*/ private void verifyCertificate(String certFile) {// Found Digital Sig, .SF should already have been readString signatureFile = certFile.substring(0, certFile.lastIndexOf('.')) + ".SF";byte[] sfBytes = metaEntries.get(signatureFile);if (sfBytes == null) {return;}byte[] manifestBytes = metaEntries.get(JarFile.MANIFEST_NAME);// Manifest entry is required for any verifications.if (manifestBytes == null) {return;}byte[] sBlockBytes = metaEntries.get(certFile);try {Certificate[] signerCertChain = JarUtils.verifySignature(new ByteArrayInputStream(sfBytes),new ByteArrayInputStream(sBlockBytes));if (signerCertChain != null) {certificates.put(signatureFile, signerCertChain);}} catch (IOException e) {return;} catch (GeneralSecurityException e) {throw failedVerification(jarName, signatureFile);}// Verify manifest hash in .sf fileAttributes attributes = new Attributes();HashMap<String, Attributes> entries = new HashMap<String, Attributes>();try {ManifestReader im = new ManifestReader(sfBytes, attributes);im.readEntries(entries, null);} catch (IOException e) {return;}// Do we actually have any signatures to look at?if (attributes.get(Attributes.Name.SIGNATURE_VERSION) == null) {return;}boolean createdBySigntool = false;String createdBy = attributes.getValue("Created-By");if (createdBy != null) {createdBySigntool = createdBy.indexOf("signtool") != -1;}// Use .SF to verify the mainAttributes of the manifest// If there is no -Digest-Manifest-Main-Attributes entry in .SF// file, such as those created before java 1.5, then we ignore// such verification.if (mainAttributesEnd > 0 && !createdBySigntool) {String digestAttribute = "-Digest-Manifest-Main-Attributes";if (!verify(attributes, digestAttribute, manifestBytes, 0, mainAttributesEnd, false, true)) {throw failedVerification(jarName, signatureFile);}}// Use .SF to verify the whole manifest.String digestAttribute = createdBySigntool ? "-Digest" : "-Digest-Manifest";if (!verify(attributes, digestAttribute, manifestBytes, 0, manifestBytes.length, false, false)) {Iterator<Map.Entry<String, Attributes>> it = entries.entrySet().iterator();while (it.hasNext()) {Map.Entry<String, Attributes> entry = it.next();Manifest.Chunk chunk = manifest.getChunk(entry.getKey());if (chunk == null) {return;}if (!verify(entry.getValue(), "-Digest", manifestBytes,chunk.start, chunk.end, createdBySigntool, false)) {throw invalidDigest(signatureFile, entry.getKey(), jarName);}}}metaEntries.put(signatureFile, null);signatures.put(signatureFile, entries); }2》獲取證書信息,并且驗證CERT.SF文件的簽名信息和CERT.RSA中的內容是否一致。
// Found Digital Sig, .SF should already have been read String signatureFile = certFile.substring(0, certFile.lastIndexOf('.')) + ".SF"; byte[] sfBytes = metaEntries.get(signatureFile); if (sfBytes == null) {return; } byte[] manifestBytes = metaEntries.get(JarFile.MANIFEST_NAME); // Manifest entry is required for any verifications. if (manifestBytes == null) {return; } byte[] sBlockBytes = metaEntries.get(certFile); try {Certificate[] signerCertChain = JarUtils.verifySignature(new ByteArrayInputStream(sfBytes),new ByteArrayInputStream(sBlockBytes));if (signerCertChain != null) {certificates.put(signatureFile, signerCertChain);} } catch (IOException e) {return; } catch (GeneralSecurityException e) {throw failedVerification(jarName, signatureFile); }這里首先獲取到,簽名文件。我們在之前的一篇文章中說到了,簽名文件和證書文件的名字是一樣的。
同時這里還調用了JarUtils類:libcore\luni\src\main\java\org\apache\harmony\security\utils\JarUtils.java
中的verifySignature方法來獲取證書,這里就不做太多的解釋了,如何從一個RSA文件中獲取證書,這樣的代碼網上也是有的,而且后面我會演示一下,如何獲取。
/*** This method handle all the work with PKCS7, ASN1 encoding, signature verifying,* and certification path building.* See also PKCS #7: Cryptographic Message Syntax Standard:* http://www.ietf.org/rfc/rfc2315.txt* @param signature - the input stream of signature file to be verified* @param signatureBlock - the input stream of corresponding signature block file* @return array of certificates used to verify the signature file* @throws IOException - if some errors occurs during reading from the stream* @throws GeneralSecurityException - if signature verification process fails*/ public static Certificate[] verifySignature(InputStream signature, InputStreamsignatureBlock) throws IOException, GeneralSecurityException {BerInputStream bis = new BerInputStream(signatureBlock);ContentInfo info = (ContentInfo)ContentInfo.ASN1.decode(bis);SignedData signedData = info.getSignedData();if (signedData == null) {throw new IOException("No SignedData found");}Collection<org.apache.harmony.security.x509.Certificate> encCerts= signedData.getCertificates();if (encCerts.isEmpty()) {return null;}X509Certificate[] certs = new X509Certificate[encCerts.size()];int i = 0;for (org.apache.harmony.security.x509.Certificate encCert : encCerts) {certs[i++] = new X509CertImpl(encCert);}List<SignerInfo> sigInfos = signedData.getSignerInfos();SignerInfo sigInfo;if (!sigInfos.isEmpty()) {sigInfo = sigInfos.get(0);} else {return null;}// IssuerX500Principal issuer = sigInfo.getIssuer();// Certificate serial numberBigInteger snum = sigInfo.getSerialNumber();// Locate the certificateint issuerSertIndex = 0;for (i = 0; i < certs.length; i++) {if (issuer.equals(certs[i].getIssuerDN()) &&snum.equals(certs[i].getSerialNumber())) {issuerSertIndex = i;break;}}if (i == certs.length) { // No issuer certificate foundreturn null;}if (certs[issuerSertIndex].hasUnsupportedCriticalExtension()) {throw new SecurityException("Can not recognize a critical extension");}// Get Signature instanceSignature sig = null;String da = sigInfo.getDigestAlgorithm();String dea = sigInfo.getDigestEncryptionAlgorithm();String alg = null;if (da != null && dea != null) {alg = da + "with" + dea;try {sig = Signature.getInstance(alg, OpenSSLProvider.PROVIDER_NAME);} catch (NoSuchAlgorithmException e) {}}if (sig == null) {alg = da;if (alg == null) {return null;}try {sig = Signature.getInstance(alg, OpenSSLProvider.PROVIDER_NAME);} catch (NoSuchAlgorithmException e) {return null;}}sig.initVerify(certs[issuerSertIndex]);......這里返回的是一個證書的數組。
3、MANIFEST.MF整個文件簽名在CERT.SF文件中頭屬性中的值是否匹配以及驗證MANIFEST.MF文件中的各個屬性塊的簽名在CERT.SF文件中是否匹配
這里的entry也是傳入的,我們看到傳入的是:-Digest
這樣就是CERT.SF文件中的一個條目:
2》第二件事是:驗證MANIFEST.MF文件中的各個屬性塊的簽名在CERT.SF文件中是否匹配
// Use .SF to verify the whole manifest. String digestAttribute = createdBySigntool ? "-Digest" : "-Digest-Manifest"; if (!verify(attributes, digestAttribute, manifestBytes, 0, manifestBytes.length, false, false)) {Iterator<Map.Entry<String, Attributes>> it = entries.entrySet().iterator();while (it.hasNext()) {Map.Entry<String, Attributes> entry = it.next();Manifest.Chunk chunk = manifest.getChunk(entry.getKey());if (chunk == null) {return;}if (!verify(entry.getValue(), "-Digest", manifestBytes,chunk.start, chunk.end, createdBySigntool, false)) {throw invalidDigest(signatureFile, entry.getKey(), jarName);}} }這里我們可以看到也是同樣調用verify方法來驗證CERT.SF中的條目信息的。最后我們再看一下是如何配對簽名信息的,在PackageParser中的collectCertificates方法:
這里會比對已經安裝的apk的簽名和準備要安裝的apk的簽名是否一致,如果不一致的話,就會報錯:
這個錯,也是我們經常會遇到的,就是同樣的apk,簽名不一致導致的問題。
我們從上面的分析代碼中可以看到,這里的Signature比對簽名,其實就是比對證書中的公鑰信息:
上面我們就看完了Android中驗證簽名信息的流程,下面我們再來梳理一下流程吧:
所有有關apk文件的簽名驗證工作都是在JarVerifier里面做的,一共分成三步:
1、JarVerifier.VerifierEntry.verify做了驗證,即保證apk文件中包含的所有文件,對應的摘要值與MANIFEST.MF文件中記錄的一致。
2、JarVeirifer.verifyCertificate使用證書文件(在META-INF目錄下,以.DSA、.RSA或者.EC結尾的文件)檢驗簽名文件(在META-INF目錄下,和證書文件同名,但擴展名為.SF的文件)是沒有被修改過的。這里我們可以注意到,Android中在驗證的過程中對SF喝RSA文件的名字并不關心,這個在之前的 簽名過程?文章中介紹到了。
3、JarVeirifer.verifyCertificate中使用簽名文件CERT.SF,檢驗MANIFEST.MF文件中的內容也沒有被篡改過
綜上所述:
首先,如果你改變了apk包中的任何文件,那么在apk安裝校驗時,改變后的文件摘要信息與MANIFEST.MF的檢驗信息不同,于是驗證失敗,程序就不能成功安裝。
其次,如果你對更改的過的文件相應的算出新的摘要值,然后更改MANIFEST.MF文件里面對應的屬性值,那么必定與CERT.SF文件中算出的摘要值不一樣,照樣驗證失敗。
這里都會提示安裝失敗信息:
如果你還不死心,繼續計算MANIFEST.MF的摘要值,相應的更改CERT.SF里面的值.
那么數字簽名值必定與CERT.RSA文件中記錄的不一樣,還是失敗。
這里的失敗信息:
那么能不能繼續偽造數字簽名呢?不可能,因為沒有數字證書對應的私鑰。
所以,如果要重新打包后的應用程序能再Android設備上安裝,必須對其進行重簽名。
從上面的分析可以得出,只要修改了Apk中的任何內容,就必須重新簽名,不然會提示安裝失敗,當然這里不會分析,后面一篇文章會注重分析為何會提示安裝失敗。
總結
到這里我們就介紹完了Android中的apk的簽名驗證過程,再結合之前的一篇文章,我們可以了解到了Android中的簽名機制了。這個也是對Android中的安全機制的一個深入了解吧,新年快樂~~
PS: 關注微信,最新Android技術實時推送
轉載于:https://www.cnblogs.com/roccheung/p/5797262.html
《新程序員》:云原生和全面數字化實踐50位技術專家共同創作,文字、視頻、音頻交互閱讀總結
以上是生活随笔為你收集整理的Android签名机制之---签名验证过程详解的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Jmeter教程索引贴
- 下一篇: view是怎么被展示在手机上的?