git » pacman.git » main » tree

[main] / 0001-Initial-asignify-support.patch

  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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
From e1d126e44f7ec7556414de2befc7c115f7d2da99 Mon Sep 17 00:00:00 2001
From: "Urja (ARMLFS builder)" <urja+armlfs@urja.dev>
Date: Sat, 22 Jun 2024 15:29:44 +0300
Subject: [PATCH] Initial asignify support

---
 lib/libalpm/alpm.c             |   2 +-
 lib/libalpm/be_sync.c          |   2 +-
 lib/libalpm/handle.c           |   6 +-
 lib/libalpm/meson.build        |   9 +-
 lib/libalpm/signing_asignify.c | 575 +++++++++++++++++++++++++++++++++
 meson.build                    |   9 +-
 meson_options.txt              |   3 +
 7 files changed, 598 insertions(+), 8 deletions(-)
 create mode 100644 lib/libalpm/signing_asignify.c

diff --git a/lib/libalpm/alpm.c b/lib/libalpm/alpm.c
index 32b93b3..46845af 100644
--- a/lib/libalpm/alpm.c
+++ b/lib/libalpm/alpm.c
@@ -119,7 +119,7 @@ int SYMEXPORT alpm_capabilities(void)
 #ifdef HAVE_LIBCURL
 		| ALPM_CAPABILITY_DOWNLOADER
 #endif
-#ifdef HAVE_LIBGPGME
+#if (defined HAVE_LIBGPGME) || (defined HAVE_ASIGNIFY)
 		| ALPM_CAPABILITY_SIGNATURES
 #endif
 		| 0;
diff --git a/lib/libalpm/be_sync.c b/lib/libalpm/be_sync.c
index e47cdef..4191b75 100644
--- a/lib/libalpm/be_sync.c
+++ b/lib/libalpm/be_sync.c
@@ -727,7 +727,7 @@ alpm_db_t *_alpm_db_register_sync(alpm_handle_t *handle, const char *treename,
 
 	_alpm_log(handle, ALPM_LOG_DEBUG, "registering sync database '%s'\n", treename);
 
-#ifndef HAVE_LIBGPGME
+#if !defined(HAVE_LIBGPGME) && !defined(HAVE_ASIGNIFY) 
 	if(level != 0 && level != ALPM_SIG_USE_DEFAULT) {
 		RET_ERR(handle, ALPM_ERR_MISSING_CAPABILITY_SIGNATURES, NULL);
 	}
diff --git a/lib/libalpm/handle.c b/lib/libalpm/handle.c
index ff573fb..7309ca1 100644
--- a/lib/libalpm/handle.c
+++ b/lib/libalpm/handle.c
@@ -851,7 +851,7 @@ int SYMEXPORT alpm_option_set_default_siglevel(alpm_handle_t *handle,
 	if(level == ALPM_SIG_USE_DEFAULT) {
 		RET_ERR(handle, ALPM_ERR_WRONG_ARGS, -1);
 	}
-#ifdef HAVE_LIBGPGME
+#if defined HAVE_LIBGPGME || defined HAVE_ASIGNIFY
 	handle->siglevel = level;
 #else
 	if(level != 0) {
@@ -871,7 +871,7 @@ int SYMEXPORT alpm_option_set_local_file_siglevel(alpm_handle_t *handle,
 		int level)
 {
 	CHECK_HANDLE(handle, return -1);
-#ifdef HAVE_LIBGPGME
+#if defined HAVE_LIBGPGME || defined HAVE_ASIGNIFY
 	handle->localfilesiglevel = level;
 #else
 	if(level != 0 && level != ALPM_SIG_USE_DEFAULT) {
@@ -895,7 +895,7 @@ int SYMEXPORT alpm_option_set_remote_file_siglevel(alpm_handle_t *handle,
 		int level)
 {
 	CHECK_HANDLE(handle, return -1);
-#ifdef HAVE_LIBGPGME
+#if defined HAVE_LIBGPGME || defined HAVE_ASIGNIFY
 	handle->remotefilesiglevel = level;
 #else
 	if(level != 0 && level != ALPM_SIG_USE_DEFAULT) {
diff --git a/lib/libalpm/meson.build b/lib/libalpm/meson.build
index 607e91a..50b4eb3 100644
--- a/lib/libalpm/meson.build
+++ b/lib/libalpm/meson.build
@@ -1,3 +1,8 @@
+signing_src = 'signing.c'
+if conf.get('HAVE_ASIGNIFY')
+signing_src = 'signing_asignify.c'
+endif
+
 libalpm_sources = files('''
   add.h add.c
   alpm.h alpm.c
@@ -24,9 +29,9 @@ libalpm_sources = files('''
   pkghash.h pkghash.c
   rawstr.c
   remove.h remove.c
-  signing.c signing.h
+  signing.h
   sync.h sync.c
   trans.h trans.c
   util.h util.c
   version.c
-'''.split())
+'''.split(), signing_src)
diff --git a/lib/libalpm/signing_asignify.c b/lib/libalpm/signing_asignify.c
new file mode 100644
index 0000000..7e42c1d
--- /dev/null
+++ b/lib/libalpm/signing_asignify.c
@@ -0,0 +1,575 @@
+/*
+ *  signing_asignify.c
+ *
+ *  Copyright (c) 2008-2024 Pacman Development Team <pacman-dev@lists.archlinux.org>
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+#include <dirent.h>
+#include <sys/stat.h>
+
+#include <asignify.h>
+
+/* libalpm */
+#include "signing.h"
+#include "package.h"
+#include "base64.h"
+#include "util.h"
+#include "log.h"
+#include "alpm.h"
+#include "handle.h"
+
+int SYMEXPORT alpm_decode_signature(const char *base64_data,
+		unsigned char **data, size_t *data_len)
+{
+	size_t len = strlen(base64_data);
+	unsigned char *usline = (unsigned char *)base64_data;
+	/* reasonable allocation of expected length is 3/4 of encoded length */
+	size_t destlen = len * 3 / 4;
+	MALLOC(*data, destlen, goto error);
+	if(base64_decode(*data, &destlen, usline, len)) {
+		free(*data);
+		goto error;
+	}
+	*data_len = destlen;
+	return 0;
+
+error:
+	*data = NULL;
+	*data_len = 0;
+	return -1;
+}
+
+/**
+ * Determine if we have a key is known in our local keyring.
+ * @param handle the context handle
+ * @param fpr the fingerprint key ID to look up
+ * @return 1 if key is known, 0 if key is unknown, -1 on error
+ */
+int _alpm_key_in_keychain(alpm_handle_t *handle, const char *fpr)
+{
+	(void)fpr;
+	_alpm_log(handle, ALPM_LOG_DEBUG, "alpm_key_in_keychain: dummy\n");
+	return 0;
+}
+
+/**
+ * Import a key defined by a fingerprint into the local keyring.
+ * @param handle the context handle
+ * @param uid a user ID of the key to import
+ * @param fpr the fingerprint key ID to import
+ * @return 0 on success, -1 on error
+ */
+int _alpm_key_import(alpm_handle_t *handle, const char *uid, const char *fpr)
+{
+	(void)uid; (void)fpr;
+	_alpm_log(handle, ALPM_LOG_DEBUG, "alpm_key_import: dummy\n");
+	return 0;
+}
+
+/* This is not directly used by other files; should have no callers now. */
+int _alpm_gpgme_checksig(alpm_handle_t *handle, const char *path,
+		const char *base64_sig, alpm_siglist_t *siglist)
+{
+	(void)path; (void)base64_sig;
+	_alpm_log(handle, ALPM_LOG_DEBUG, "alpm_gpgme_checksig: dummy\n");
+	siglist->count = 0;
+	handle->pm_errno = ALPM_ERR_MISSING_CAPABILITY_SIGNATURES;
+	return -1;
+}
+
+
+/* This is what we're here for. The rest is fixing the impedance mismatches lol.
+ * Returns -1 for no/bad pubkey, 0 for bad signature/data, 1 for all verified.*/
+static int _alpm_asignify_vfy(alpm_handle_t *handle, const char *pubkey, const char *sigfn, const char *datafn)
+{
+	struct asignify_verify_ctx * vrf;
+	int ret = -1;
+	vrf = asignify_verify_init();
+	
+	/* Load pubkey - this is the expected way out if we don't have a key for this repo. */
+	if (!asignify_verify_load_pubkey(vrf, pubkey)) {
+		_alpm_log(handle, ALPM_LOG_DEBUG, "cannot load pubkey %s (%s)\n", pubkey, asignify_verify_get_error(vrf));
+		goto cleanup;
+	}
+	ret = 0;
+
+	/* Load and verify digests file - this is the expected way out if we have the wrong pubkey. */
+	if (!asignify_verify_load_signature(vrf, sigfn)) {
+		_alpm_log(handle, ALPM_LOG_DEBUG, "cannot verify sigfn %s (%s)\n", sigfn, asignify_verify_get_error(vrf));
+		goto cleanup;
+	}
+
+	/* This is the way out if the data does not match the .sig */
+	if (!asignify_verify_file(vrf, datafn)) {
+		_alpm_log(handle, ALPM_LOG_WARNING, "cannot verify file %s (%s)\n", datafn, asignify_verify_get_error(vrf));
+		goto cleanup;
+	}
+
+	/* All matched, neat. */
+	ret = 1;
+
+cleanup:
+	/* Cleanup */
+	asignify_verify_free(vrf);
+	return ret;
+}
+
+
+static const char _alpm_keybase[] = "/etc/pacman.d/keys/"; // + <db>.pub
+static const char _alpm_keysuffix[] = ".pub";
+
+static int _alpm_pubkey_filter(const struct dirent * de)
+{
+	int l = strlen(de->d_name);
+	int sufl = strlen(_alpm_keysuffix);
+	if (l <= sufl) return 0;
+
+	/* Not .pub? Not pubkey. */
+	if (memcmp(de->d_name+(l-sufl), _alpm_keysuffix, sufl) != 0)
+		return 0;
+
+	return 1;
+
+}
+
+/* This is just to compare the key id between our signature
+ * and a keyfile, to match the right keyfile for verify by asignify */
+/* We compare the raw base64. Should be fine lol. */
+
+static const char _alpm_asig_prefix[] = "asignify-sig:1:";
+static const char _alpm_apub_prefix[] = "asignify-pubkey:1:";
+
+static int _alpm_asignify_cmp(unsigned char *sigdat, char *keyfn)
+{
+	const int previewl = 40;
+	const int sig_i0 = strlen(_alpm_asig_prefix);
+	const int pub_i0 = strlen(_alpm_apub_prefix);
+
+	unsigned char keydat[previewl];
+	int kfd = open(keyfn, O_RDONLY);
+	int rl = 0;
+	if(kfd < 0) {
+		return -1;
+	}
+	do {
+		int rv = read(kfd, keydat+rl, previewl-rl);
+		if (rv <= 0) {
+			close(kfd);
+			return -1;
+		}
+		rl += rv;
+	} while (rl < previewl);
+	close(kfd);
+	if (memcmp(keydat, _alpm_apub_prefix, pub_i0) != 0)
+		return 1;
+	for (int i = 0; i < (previewl - pub_i0); i++) {
+		unsigned char s = sigdat[i + sig_i0];
+		if (s != keydat[i + pub_i0]) return 1;
+		if (s == ':') return 0;
+	}
+	/* ???? */
+	return -1;
+}
+
+/**
+ * Check the signature for the given file path.
+ * If base64_sig is provided, it will be used as the signature data after
+ * decoding. If base64_sig is NULL, expect a signature file next to path
+ * (e.g. "%s.sig").
+ *
+ * The return value will be 0 if nothing abnormal happened during the signature
+ * check, and -1 if an error occurred while checking signatures or if a
+ * signature could not be found; pm_errno will be set. Note that "abnormal"
+ * does not include a failed signature; the value in siglist should be checked
+ * to determine if the signature(s) are good.
+ * @param handle the context handle
+ * @param path the full path to a file
+ * @param base64_sig optional PGP signature data in base64 encoding
+ * @param siglist a pointer to storage for signature results
+ * @return 0 in normal cases, -1 if the something failed in the check process
+ */
+static int _alpm_checksig(alpm_handle_t *handle, const char *path,
+		const char *base64_sig, alpm_siglist_t *siglist)
+{
+	int ret = -1, sigcount, vfr = -1;
+	char *sigpath = NULL;
+	unsigned char *decoded_sigdata = NULL;
+	char tmpsigfn[] = "/tmp/pacman-sig-XXXXXX";
+	char * keypath = NULL;
+	alpm_sigresult_t *result;
+
+	if(!path || _alpm_access(handle, NULL, path, R_OK) != 0) {
+		RET_ERR(handle, ALPM_ERR_NOT_A_FILE, -1);
+	}
+
+	if(!siglist) {
+		RET_ERR(handle, ALPM_ERR_WRONG_ARGS, -1);
+	}
+	siglist->count = 0;
+
+	_alpm_log(handle, ALPM_LOG_DEBUG, "checking signature for %s\n", path);
+
+	const int previewl = 40;
+	if(!base64_sig) {
+		sigpath = _alpm_sigpath(handle, path);
+		int sigfd = open(sigpath, O_RDONLY);
+		int rl = 0;
+
+		if(sigfd < 0) {
+			_alpm_log(handle, ALPM_LOG_DEBUG,
+			"sig path %s could not be opened\n",
+					sigpath);
+			GOTO_ERR(handle, ALPM_ERR_SIG_MISSING, error);
+		}
+		MALLOC(decoded_sigdata, previewl, 
+			GOTO_ERR(handle, ALPM_ERR_MEMORY, error));
+		do {
+			int rv = read(sigfd, decoded_sigdata+rl, previewl-rl);
+			if (rv <= 0) {
+				GOTO_ERR(handle, ALPM_ERR_SYSTEM, error);
+			}
+			rl += rv;
+		} while (rl < previewl);
+		close(sigfd);
+	} else {
+	/* asignify only uses files, toss sig into a file. */
+		size_t data_len;
+		ssize_t wrv;
+		size_t written = 0;
+		int decode_ret = alpm_decode_signature(base64_sig,
+				&decoded_sigdata, &data_len);
+		if ((decode_ret) || (data_len < previewl)) {
+			GOTO_ERR(handle, ALPM_ERR_SIG_INVALID, error);
+		}
+
+		int wfd = mkstemp(tmpsigfn);
+		if (wfd < 0) {
+			GOTO_ERR(handle, ALPM_ERR_SYSTEM, error);
+		}
+		do {
+			wrv = write(wfd, decoded_sigdata+written, data_len-written);
+			if (wrv < 0) {
+				GOTO_ERR(handle, ALPM_ERR_SYSTEM, error);
+			}
+			written += wrv;
+		} while (written < data_len);
+		close(wfd);
+		CALLOC(sigpath, strlen(tmpsigfn)+1, sizeof(char), GOTO_ERR(handle, ALPM_ERR_MEMORY, error));
+		strcpy(sigpath, tmpsigfn);
+	}
+
+	if (memcmp(_alpm_asig_prefix, decoded_sigdata, strlen(_alpm_asig_prefix)) != 0) {
+		GOTO_ERR(handle, ALPM_ERR_SIG_INVALID, error);
+	}
+
+	char *foundkey = NULL;
+	struct dirent **keylist;
+	int n;
+	MALLOC(keypath, strlen(_alpm_keybase) + 256 + 1, GOTO_ERR(handle, ALPM_ERR_MEMORY, error));
+	strcpy(keypath, _alpm_keybase);
+	int baselen = strlen(_alpm_keybase);
+
+	n = scandir(_alpm_keybase, &keylist, _alpm_pubkey_filter, alphasort);
+	if (n >= 0) {
+		int i;
+		for (i = 0; i < n; i++) {
+			strcpy(keypath+baselen, keylist[i]->d_name);
+			if ((!foundkey)&&(_alpm_asignify_cmp(decoded_sigdata, keypath) == 0)) {
+				foundkey = strdup(keylist[i]->d_name);
+				vfr = _alpm_asignify_vfy(handle, keypath, sigpath, path);
+			}
+			free(keylist[i]);
+		}
+		FREE(keylist);
+	}
+	if (!foundkey) foundkey = strdup("(none)");
+
+	/* Synth the signature info */
+	sigcount = 1;
+	CALLOC(siglist->results, sigcount, sizeof(alpm_sigresult_t),
+			GOTO_ERR(handle, ALPM_ERR_MEMORY, error));
+	siglist->count = sigcount;
+	result = siglist->results;
+	
+	
+	result->key.uid = foundkey;
+	switch (vfr) {
+		default:
+		case -1:
+			result->status = ALPM_SIGSTATUS_KEY_UNKNOWN;
+			result->validity = ALPM_SIGVALIDITY_UNKNOWN;
+			break;
+		case 0:
+			result->status = ALPM_SIGSTATUS_INVALID;
+			result->validity = ALPM_SIGVALIDITY_UNKNOWN;
+			break;
+
+		case 1:
+			result->status = ALPM_SIGSTATUS_VALID;
+			result->validity = ALPM_SIGVALIDITY_FULL;
+			break;
+	}
+	ret = 0;
+error:
+	FREE(keypath);
+	if ((base64_sig) && (sigpath)) {
+		unlink(sigpath);
+	}
+	FREE(sigpath);
+	FREE(decoded_sigdata);
+	return ret;
+}
+
+/**
+ * Form a signature path given a file path.
+ * Caller must free the result.
+ * @param handle the context handle
+ * @param path the full path to a file
+ * @return the path with '.sig' appended, NULL on errors
+ */
+char *_alpm_sigpath(alpm_handle_t *handle, const char *path)
+{
+	char *sigpath;
+	size_t len;
+
+	if(!path) {
+		return NULL;
+	}
+	len = strlen(path) + 5;
+	CALLOC(sigpath, len, sizeof(char), RET_ERR(handle, ALPM_ERR_MEMORY, NULL));
+	sprintf(sigpath, "%s.sig", path);
+	return sigpath;
+}
+
+/**
+ * Helper for checking the PGP signature for the given file path.
+ * This wraps #_alpm_gpgme_checksig in a slightly friendlier manner to simplify
+ * handling of optional signatures and marginal/unknown trust levels and
+ * handling the correct error code return values.
+ * @param handle the context handle
+ * @param path the full path to a file
+ * @param base64_sig optional PGP signature data in base64 encoding
+ * @param optional whether signatures are optional (e.g., missing OK)
+ * @param marginal whether signatures with marginal trust are acceptable
+ * @param unknown whether signatures with unknown trust are acceptable
+ * @param sigdata a pointer to storage for signature results
+ * @return 0 on success, -1 on error (consult pm_errno or sigdata)
+ */
+int _alpm_check_pgp_helper(alpm_handle_t *handle, const char *path,
+		const char *base64_sig, int optional, int marginal, int unknown,
+		alpm_siglist_t **sigdata)
+{
+	alpm_siglist_t *siglist;
+	int ret;
+
+	CALLOC(siglist, 1, sizeof(alpm_siglist_t),
+			RET_ERR(handle, ALPM_ERR_MEMORY, -1));
+
+	ret = _alpm_checksig(handle, path, base64_sig, siglist);
+	if(ret && handle->pm_errno == ALPM_ERR_SIG_MISSING) {
+		if(optional) {
+			_alpm_log(handle, ALPM_LOG_DEBUG, "missing optional signature\n");
+			handle->pm_errno = ALPM_ERR_OK;
+			ret = 0;
+		} else {
+			_alpm_log(handle, ALPM_LOG_DEBUG, "missing required signature\n");
+			/* ret will already be -1 */
+		}
+	} else if(ret) {
+		_alpm_log(handle, ALPM_LOG_DEBUG, "signature check failed\n");
+		/* ret will already be -1 */
+	} else {
+		size_t num;
+		for(num = 0; !ret && num < siglist->count; num++) {
+			switch(siglist->results[num].status) {
+				case ALPM_SIGSTATUS_VALID:
+				case ALPM_SIGSTATUS_KEY_EXPIRED:
+					_alpm_log(handle, ALPM_LOG_DEBUG, "signature is valid\n");
+					switch(siglist->results[num].validity) {
+						case ALPM_SIGVALIDITY_FULL:
+							_alpm_log(handle, ALPM_LOG_DEBUG, "signature is fully trusted\n");
+							break;
+						case ALPM_SIGVALIDITY_MARGINAL:
+							_alpm_log(handle, ALPM_LOG_DEBUG, "signature is marginal trust\n");
+							if(!marginal) {
+								ret = -1;
+							}
+							break;
+						case ALPM_SIGVALIDITY_UNKNOWN:
+							_alpm_log(handle, ALPM_LOG_DEBUG, "signature is unknown trust\n");
+							if(!unknown) {
+								ret = -1;
+							}
+							break;
+						case ALPM_SIGVALIDITY_NEVER:
+							_alpm_log(handle, ALPM_LOG_DEBUG, "signature should never be trusted\n");
+							ret = -1;
+							break;
+					}
+					break;
+				case ALPM_SIGSTATUS_SIG_EXPIRED:
+				case ALPM_SIGSTATUS_KEY_UNKNOWN:
+				case ALPM_SIGSTATUS_KEY_DISABLED:
+				case ALPM_SIGSTATUS_INVALID:
+					_alpm_log(handle, ALPM_LOG_DEBUG, "signature is not valid\n");
+					ret = -1;
+					break;
+			}
+		}
+	}
+
+	if(sigdata) {
+		*sigdata = siglist;
+	} else {
+		alpm_siglist_cleanup(siglist);
+		free(siglist);
+	}
+
+	return ret;
+}
+
+/**
+ * Examine a signature result list and take any appropriate or necessary
+ * actions. This may include asking the user to import a key or simply printing
+ * helpful failure messages so the user can take action out of band.
+ * @param handle the context handle
+ * @param identifier a friendly name for the signed resource; usually a
+ * database or package name
+ * @param siglist a pointer to storage for signature results
+ * @param optional whether signatures are optional (e.g., missing OK)
+ * @param marginal whether signatures with marginal trust are acceptable
+ * @param unknown whether signatures with unknown trust are acceptable
+ * @return 0 if all signatures are OK, -1 on errors, 1 if we should retry the
+ * validation process
+ */
+int _alpm_process_siglist(alpm_handle_t *handle, const char *identifier,
+		alpm_siglist_t *siglist, int optional, int marginal, int unknown)
+{
+	size_t i;
+	int retry = 0;
+
+	if(!optional && siglist->count == 0) {
+		_alpm_log(handle, ALPM_LOG_ERROR,
+				_("%s: missing required signature\n"), identifier);
+	}
+
+	for(i = 0; i < siglist->count; i++) {
+		alpm_sigresult_t *result = siglist->results + i;
+		const char *name = result->key.uid ? result->key.uid : result->key.fingerprint;
+		switch(result->status) {
+			case ALPM_SIGSTATUS_VALID:
+			case ALPM_SIGSTATUS_KEY_EXPIRED:
+				switch(result->validity) {
+					case ALPM_SIGVALIDITY_FULL:
+						break;
+					case ALPM_SIGVALIDITY_MARGINAL:
+						if(!marginal) {
+							_alpm_log(handle, ALPM_LOG_ERROR,
+									_("%s: signature from \"%s\" is marginal trust\n"),
+									identifier, name);
+							/* QUESTION(handle, ALPM_QUESTION_EDIT_KEY_TRUST, &result->key, NULL, NULL, &answer); */
+						}
+						break;
+					case ALPM_SIGVALIDITY_UNKNOWN:
+						if(!unknown) {
+							_alpm_log(handle, ALPM_LOG_ERROR,
+									_("%s: signature from \"%s\" is unknown trust\n"),
+									identifier, name);
+							/* QUESTION(handle, ALPM_QUESTION_EDIT_KEY_TRUST, &result->key, NULL, NULL, &answer); */
+						}
+						break;
+					case ALPM_SIGVALIDITY_NEVER:
+						_alpm_log(handle, ALPM_LOG_ERROR,
+								_("%s: signature from \"%s\" should never be trusted\n"),
+								identifier, name);
+						break;
+				}
+				break;
+			case ALPM_SIGSTATUS_KEY_UNKNOWN:
+				/* ensure this key is still actually unknown; we may have imported it
+				 * on an earlier call to this function. */
+				_alpm_log(handle, ALPM_LOG_ERROR,
+						_("%s: key \"%s\" is unknown\n"), identifier, name);
+
+				break;
+			case ALPM_SIGSTATUS_KEY_DISABLED:
+				_alpm_log(handle, ALPM_LOG_ERROR,
+						_("%s: key \"%s\" is disabled\n"), identifier, name);
+				break;
+			case ALPM_SIGSTATUS_SIG_EXPIRED:
+				_alpm_log(handle, ALPM_LOG_ERROR,
+						_("%s: signature from \"%s\" is expired\n"), identifier, name);
+				break;
+			case ALPM_SIGSTATUS_INVALID:
+				_alpm_log(handle, ALPM_LOG_ERROR,
+						_("%s: signature from \"%s\" is invalid\n"),
+						identifier, name);
+				break;
+		}
+	}
+
+	return retry;
+}
+
+int SYMEXPORT alpm_pkg_check_pgp_signature(alpm_pkg_t *pkg,
+		alpm_siglist_t *siglist)
+{
+	/* AFAIK this is only used by pacman for package info dump */
+	ASSERT(pkg != NULL, return -1);
+	ASSERT(siglist != NULL, RET_ERR(pkg->handle, ALPM_ERR_WRONG_ARGS, -1));
+	pkg->handle->pm_errno = ALPM_ERR_OK;
+
+	return _alpm_checksig(pkg->handle, pkg->filename,
+			pkg->base64_sig, siglist);
+}
+
+int SYMEXPORT alpm_db_check_pgp_signature(alpm_db_t *db,
+		alpm_siglist_t *siglist)
+{
+	/* AFAIK this is unused */
+	ASSERT(db != NULL, return -1);
+	ASSERT(siglist != NULL, RET_ERR(db->handle, ALPM_ERR_WRONG_ARGS, -1));
+	db->handle->pm_errno = ALPM_ERR_OK;
+
+	return _alpm_checksig(db->handle, _alpm_db_path(db), NULL, siglist);
+}
+
+int SYMEXPORT alpm_siglist_cleanup(alpm_siglist_t *siglist)
+{
+	ASSERT(siglist != NULL, return -1);
+	size_t num;
+	for(num = 0; num < siglist->count; num++) {
+		alpm_sigresult_t *result = siglist->results + num;
+		FREE(result->key.uid);
+	}
+
+	if(siglist->count) {
+		free(siglist->results);
+	}
+	siglist->results = NULL;
+	siglist->count = 0;
+	return 0;
+}
+
+int SYMEXPORT alpm_extract_keyid(alpm_handle_t *handle, const char *identifier,
+		const unsigned char *sig, const size_t len, alpm_list_t **keys)
+{
+	(void)handle; (void)identifier; (void)sig; (void)len; (void)keys;
+	return 0;
+}
diff --git a/meson.build b/meson.build
index 79fc3ef..ca66dbe 100644
--- a/meson.build
+++ b/meson.build
@@ -112,6 +112,12 @@ gpgme = dependency('gpgme',
                    not_found_message : 'gpgme @0@ is needed for GPG signature support'.format(needed_gpgme_version))
 conf.set('HAVE_LIBGPGME', gpgme.found())
 
+asignify = cc.find_library('asignify', has_headers:['asignify.h'],
+	required : get_option('asignify'),
+	static : get_option('buildstatic'))
+conf.set('HAVE_ASIGNIFY', asignify.found())
+
+
 want_crypto = get_option('crypto')
 if want_crypto == 'openssl'
   libcrypto = dependency('libcrypto', static : get_option('buildstatic'),
@@ -331,7 +337,7 @@ libcommon = static_library(
   gnu_symbol_visibility : 'hidden',
   install : false)
 
-alpm_deps = [crypto_provider, libarchive, libcurl, libintl, gpgme]
+alpm_deps = [crypto_provider, libarchive, libcurl, libintl, gpgme, asignify]
 
 libalpm_a = static_library(
   'alpm_objlib',
@@ -496,6 +502,7 @@ message('\n    '.join([
   '  debug build              : @0@'.format(get_option('buildtype') == 'debug'),
   '  Use libcurl              : @0@'.format(conf.get('HAVE_LIBCURL')),
   '  Use GPGME                : @0@'.format(conf.get('HAVE_LIBGPGME')),
+  '  Use asignify             : @0@'.format(conf.get('HAVE_ASIGNIFY')),
   '  Use OpenSSL              : @0@'.format(conf.has('HAVE_LIBSSL') and
                                             conf.get('HAVE_LIBSSL') == 1),
   '  Use nettle               : @0@'.format(conf.has('HAVE_LIBNETTLE') and
diff --git a/meson_options.txt b/meson_options.txt
index d004002..ce8546c 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -51,6 +51,9 @@ option('crypto', type : 'combo', choices : ['openssl', 'nettle'],
 option('gpgme', type : 'feature', value : 'auto',
        description : 'use GPGME for PGP signature verification')
 
+option('asignify', type : 'feature', value : 'auto',
+       description : 'use asignify for signature verification')
+
 option('i18n', type : 'boolean', value : true,
        description : 'enable localization of pacman, libalpm and scripts')
 
-- 
2.44.0