2008-04-17 14:09:13 +00:00
|
|
|
/* apk_blob.h - Alpine Package Keeper (APK)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005-2008 Natanael Copa <n@tanael.org>
|
2011-09-13 08:53:01 +00:00
|
|
|
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
2008-04-17 14:09:13 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
2020-04-22 13:33:41 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only
|
2008-04-17 14:09:13 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef APK_BLOB_H
|
|
|
|
#define APK_BLOB_H
|
|
|
|
|
2012-01-12 12:33:29 +00:00
|
|
|
#include <ctype.h>
|
2008-04-17 14:09:13 +00:00
|
|
|
#include <string.h>
|
2009-07-14 16:14:05 +00:00
|
|
|
|
2009-06-28 15:05:17 +00:00
|
|
|
#include "apk_defines.h"
|
2018-10-26 05:21:52 +00:00
|
|
|
#include "apk_openssl.h"
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2012-02-08 15:01:14 +00:00
|
|
|
typedef const unsigned char *apk_spn_match;
|
|
|
|
typedef unsigned char apk_spn_match_def[256 / 8];
|
|
|
|
|
2008-04-17 14:09:13 +00:00
|
|
|
struct apk_blob {
|
2010-12-09 08:47:09 +00:00
|
|
|
long len;
|
2008-04-17 14:09:13 +00:00
|
|
|
char *ptr;
|
|
|
|
};
|
|
|
|
typedef struct apk_blob apk_blob_t;
|
2009-06-25 12:14:07 +00:00
|
|
|
typedef int (*apk_blob_cb)(void *ctx, apk_blob_t blob);
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2010-12-14 17:51:16 +00:00
|
|
|
#define BLOB_FMT "%.*s"
|
|
|
|
#define BLOB_PRINTF(b) (int)(b).len, (b).ptr
|
|
|
|
|
2009-07-14 16:14:05 +00:00
|
|
|
#define APK_CHECKSUM_NONE 0
|
|
|
|
#define APK_CHECKSUM_MD5 16
|
|
|
|
#define APK_CHECKSUM_SHA1 20
|
2009-08-11 16:02:22 +00:00
|
|
|
#define APK_CHECKSUM_DEFAULT APK_CHECKSUM_SHA1
|
2020-01-24 15:13:43 +00:00
|
|
|
#define APK_CHECKSUM_MAX APK_CHECKSUM_SHA1
|
2009-07-14 16:14:05 +00:00
|
|
|
|
2020-01-24 15:13:43 +00:00
|
|
|
/* Enough space for a hexdump of the longest checksum possible plus
|
|
|
|
* a two-character type prefix */
|
|
|
|
#define APK_BLOB_CHECKSUM_BUF (2 + (2 * APK_CHECKSUM_MAX))
|
2009-08-13 11:10:30 +00:00
|
|
|
|
2020-01-24 15:13:43 +00:00
|
|
|
/* Internal container for checksums */
|
2009-07-14 16:14:05 +00:00
|
|
|
struct apk_checksum {
|
2020-01-24 15:13:43 +00:00
|
|
|
unsigned char data[APK_CHECKSUM_MAX];
|
2009-07-14 16:14:05 +00:00
|
|
|
unsigned char type;
|
|
|
|
};
|
|
|
|
|
2009-08-11 16:02:22 +00:00
|
|
|
static inline const EVP_MD *apk_checksum_evp(int type)
|
2009-07-14 16:14:05 +00:00
|
|
|
{
|
|
|
|
switch (type) {
|
|
|
|
case APK_CHECKSUM_MD5:
|
|
|
|
return EVP_md5();
|
|
|
|
case APK_CHECKSUM_SHA1:
|
|
|
|
return EVP_sha1();
|
|
|
|
}
|
|
|
|
return EVP_md_null();
|
|
|
|
}
|
|
|
|
|
2009-08-11 16:02:22 +00:00
|
|
|
static inline const EVP_MD *apk_checksum_default(void)
|
|
|
|
{
|
|
|
|
return apk_checksum_evp(APK_CHECKSUM_DEFAULT);
|
|
|
|
}
|
|
|
|
|
2009-07-14 06:33:32 +00:00
|
|
|
#define APK_BLOB_IS_NULL(blob) ((blob).ptr == NULL)
|
2008-11-27 14:59:04 +00:00
|
|
|
|
2008-04-17 14:09:13 +00:00
|
|
|
#define APK_BLOB_NULL ((apk_blob_t){0, NULL})
|
|
|
|
#define APK_BLOB_BUF(buf) ((apk_blob_t){sizeof(buf), (char *)(buf)})
|
2009-07-14 16:14:05 +00:00
|
|
|
#define APK_BLOB_CSUM(csum) ((apk_blob_t){(csum).type, (char *)(csum).data})
|
|
|
|
#define APK_BLOB_STRUCT(s) ((apk_blob_t){sizeof(s), (char*)&(s)})
|
2020-09-30 11:11:37 +00:00
|
|
|
#define APK_BLOB_STRLIT(s) ((apk_blob_t){sizeof(s)-1, (char *)(s)})
|
2008-04-17 14:09:13 +00:00
|
|
|
#define APK_BLOB_PTR_LEN(beg,len) ((apk_blob_t){(len), (beg)})
|
|
|
|
#define APK_BLOB_PTR_PTR(beg,end) APK_BLOB_PTR_LEN((beg),(end)-(beg)+1)
|
|
|
|
|
2009-04-14 15:46:35 +00:00
|
|
|
static inline apk_blob_t APK_BLOB_STR(const char *str)
|
|
|
|
{
|
|
|
|
if (str == NULL)
|
|
|
|
return APK_BLOB_NULL;
|
|
|
|
return ((apk_blob_t){strlen(str), (void *)(str)});
|
|
|
|
}
|
|
|
|
|
2012-01-12 12:33:29 +00:00
|
|
|
static inline apk_blob_t apk_blob_trim(apk_blob_t blob)
|
|
|
|
{
|
|
|
|
apk_blob_t b = blob;
|
|
|
|
while (b.len > 0 && isspace(b.ptr[b.len-1]))
|
|
|
|
b.len--;
|
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
2008-04-17 14:09:13 +00:00
|
|
|
char *apk_blob_cstr(apk_blob_t str);
|
2021-11-08 12:19:24 +00:00
|
|
|
apk_blob_t apk_blob_dup(apk_blob_t blob);
|
2012-02-08 15:01:14 +00:00
|
|
|
int apk_blob_spn(apk_blob_t blob, const apk_spn_match accept, apk_blob_t *l, apk_blob_t *r);
|
|
|
|
int apk_blob_cspn(apk_blob_t blob, const apk_spn_match reject, apk_blob_t *l, apk_blob_t *r);
|
2009-07-14 06:33:32 +00:00
|
|
|
int apk_blob_split(apk_blob_t blob, apk_blob_t split, apk_blob_t *l, apk_blob_t *r);
|
2008-04-17 14:09:13 +00:00
|
|
|
int apk_blob_rsplit(apk_blob_t blob, char split, apk_blob_t *l, apk_blob_t *r);
|
2010-06-01 08:49:32 +00:00
|
|
|
apk_blob_t apk_blob_pushed(apk_blob_t buffer, apk_blob_t left);
|
2009-07-14 07:47:20 +00:00
|
|
|
unsigned long apk_blob_hash_seed(apk_blob_t, unsigned long seed);
|
2008-11-27 18:25:01 +00:00
|
|
|
unsigned long apk_blob_hash(apk_blob_t str);
|
|
|
|
int apk_blob_compare(apk_blob_t a, apk_blob_t b);
|
2020-09-30 11:11:37 +00:00
|
|
|
int apk_blob_sort(apk_blob_t a, apk_blob_t b);
|
2021-06-02 19:35:58 +00:00
|
|
|
int apk_blob_starts_with(apk_blob_t a, apk_blob_t b);
|
2015-04-08 08:08:16 +00:00
|
|
|
int apk_blob_ends_with(apk_blob_t str, apk_blob_t suffix);
|
2008-11-06 14:58:58 +00:00
|
|
|
int apk_blob_for_each_segment(apk_blob_t blob, const char *split,
|
2009-06-25 12:14:07 +00:00
|
|
|
apk_blob_cb cb, void *ctx);
|
2008-11-06 14:58:58 +00:00
|
|
|
|
2009-07-14 16:14:05 +00:00
|
|
|
static inline void apk_blob_checksum(apk_blob_t b, const EVP_MD *md, struct apk_checksum *csum)
|
|
|
|
{
|
|
|
|
csum->type = EVP_MD_size(md);
|
|
|
|
EVP_Digest(b.ptr, b.len, csum->data, NULL, md, NULL);
|
|
|
|
}
|
2012-01-12 12:33:29 +00:00
|
|
|
static inline char *apk_blob_chr(apk_blob_t b, unsigned char ch)
|
|
|
|
{
|
|
|
|
return memchr(b.ptr, ch, b.len);
|
|
|
|
}
|
|
|
|
|
2009-07-14 10:27:21 +00:00
|
|
|
void apk_blob_push_blob(apk_blob_t *to, apk_blob_t literal);
|
|
|
|
void apk_blob_push_uint(apk_blob_t *to, unsigned int value, int radix);
|
2009-07-14 16:14:05 +00:00
|
|
|
void apk_blob_push_csum(apk_blob_t *to, struct apk_checksum *csum);
|
2009-07-15 11:48:57 +00:00
|
|
|
void apk_blob_push_base64(apk_blob_t *to, apk_blob_t binary);
|
2009-07-14 10:27:21 +00:00
|
|
|
void apk_blob_push_hexdump(apk_blob_t *to, apk_blob_t binary);
|
2021-07-26 07:15:55 +00:00
|
|
|
void apk_blob_push_fmt(apk_blob_t *to, const char *fmt, ...)
|
|
|
|
__attribute__ ((format (printf, 2, 3)));
|
2009-07-14 10:27:21 +00:00
|
|
|
|
|
|
|
void apk_blob_pull_char(apk_blob_t *b, int expected);
|
|
|
|
unsigned int apk_blob_pull_uint(apk_blob_t *b, int radix);
|
2009-07-14 16:14:05 +00:00
|
|
|
void apk_blob_pull_csum(apk_blob_t *b, struct apk_checksum *csum);
|
2009-07-15 11:48:57 +00:00
|
|
|
void apk_blob_pull_base64(apk_blob_t *b, apk_blob_t to);
|
2009-07-14 10:27:21 +00:00
|
|
|
void apk_blob_pull_hexdump(apk_blob_t *b, apk_blob_t to);
|
2014-11-01 17:15:17 +00:00
|
|
|
int apk_blob_pull_blob_match(apk_blob_t *b, apk_blob_t match);
|
2008-04-17 14:09:13 +00:00
|
|
|
|
|
|
|
#endif
|