summaryrefslogblamecommitdiff
path: root/src/verify.c
blob: cfb800a49d0cf5be9581d9828c44c40a0089a0e5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                                         
                                                          






                                                                           
                  
                  
                  



                         
                      
 
                                                                                 
 
                                 

                               
 
                                    
                                                                             
                                                                                       
                                                                            
                                 



                                                                              



                                                 
                                                                                            
                              

                                                                 
                                                              
                                           


                                                                                 



                                         







                                                         

                                                          




                              
/* verify.c - Alpine Package Keeper (APK)
 *
 * Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
 * All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 as published
 * by the Free Software Foundation. See http://www.gnu.org/ for details.
 */

#include <errno.h>
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>

#include "apk_applet.h"
#include "apk_database.h"
#include "apk_print.h"

static int verify_main(void *ctx, struct apk_database *db, int argc, char **argv)
{
	struct apk_sign_ctx sctx;
	struct apk_istream *is;
	int i, r, ok, rc = 0;

	for (i = 0; i < argc; i++) {
		apk_sign_ctx_init(&sctx, APK_SIGN_VERIFY, NULL, db->keys_fd);
		is = apk_bstream_gunzip_mpart(apk_bstream_from_file(AT_FDCWD, argv[i]),
					      apk_sign_ctx_mpart_cb, &sctx);
		if (is == NULL) {
			if (apk_verbosity >= 1)
				apk_error("%s: %s", argv[i], strerror(errno));
			else
				printf("%s\n", argv[i]);
			apk_sign_ctx_free(&sctx);
			rc++;
			continue;
		}
		r = apk_tar_parse(is, apk_sign_ctx_verify_tar, &sctx, FALSE, &db->id_cache);
		is->close(is);
		ok = sctx.control_verified && sctx.data_verified;
		if (apk_verbosity >= 1)
			apk_message("%s: %d - %s", argv[i], r,
				ok ? "OK" :
				!sctx.control_verified ? "UNTRUSTED" : "FAILED");
		else if (!ok)
			printf("%s\n", argv[i]);
		if (!ok)
			rc++;
		apk_sign_ctx_free(&sctx);
	}

	return rc;
}

static struct apk_applet apk_verify = {
	.name = "verify",
	.help = "Verify package integrity and signature",
	.arguments = "FILE...",
	.open_flags = APK_OPENF_READ | APK_OPENF_NO_STATE,
	.forced_flags = APK_ALLOW_UNTRUSTED,
	.main = verify_main,
};

APK_DEFINE_APPLET(apk_verify);