Update package version to 1.22.2
This commit is contained in:
@@ -1,9 +1,11 @@
|
|||||||
name: krb5
|
name: krb5
|
||||||
description: A network authentication protocol
|
description: A network authentication protocol
|
||||||
version: 1.22.1
|
version: 1.22.2
|
||||||
revision: 2
|
revision: 1
|
||||||
url: https://web.mit.edu/kerberos/
|
url: https://web.mit.edu/kerberos/
|
||||||
license: custom
|
license: custom
|
||||||
|
maintainers:
|
||||||
|
- [email protected]
|
||||||
architecture: any
|
architecture: any
|
||||||
type: source
|
type: source
|
||||||
keep:
|
keep:
|
||||||
@@ -22,4 +24,4 @@ downloads:
|
|||||||
- url: https://kerberos.org/dist/krb5/${BPM_PKG_VERSION%.*}/krb5-${BPM_PKG_VERSION}.tar.gz
|
- url: https://kerberos.org/dist/krb5/${BPM_PKG_VERSION%.*}/krb5-${BPM_PKG_VERSION}.tar.gz
|
||||||
extract_to: ${BPM_SOURCE}
|
extract_to: ${BPM_SOURCE}
|
||||||
extract_strip_components: 1
|
extract_strip_components: 1
|
||||||
checksum: 1a8832b8cad923ebbf1394f67e2efcf41e3a49f460285a66e35adec8fa0053af
|
checksum: 3243ffbc8ea4d4ac22ddc7dd2a1dc54c57874c40648b60ff97009763554eaf13
|
||||||
|
|||||||
@@ -0,0 +1,195 @@
|
|||||||
|
Submitted By: Joe Locash <jlocash at gmail dot com>
|
||||||
|
Date: 2026-01-30
|
||||||
|
Initial Package Version: 1.22.2
|
||||||
|
Upstream Status: Committed
|
||||||
|
Origin: Upstream (see the From line for commit hash)
|
||||||
|
Description: C23 7.28.5.1 specifies search functions such as
|
||||||
|
strchr() as generic, returning const char * if the
|
||||||
|
first argument is of type const char *. Fix uses of
|
||||||
|
strchr() to conform to this change.
|
||||||
|
|
||||||
|
From ad4dcf1856dadc4b352b5c8ff08e51c7290fb41f Mon Sep 17 00:00:00 2001
|
||||||
|
From: Alexander Bokovoy <[email protected]>
|
||||||
|
Date: Wed, 10 Dec 2025 10:42:02 +0200
|
||||||
|
Subject: [PATCH] Fix strchr() conformance to C23
|
||||||
|
|
||||||
|
C23 7.28.5.1 specifies search functions such as strchr() as generic,
|
||||||
|
returning const char * if the first argument is of type const char *.
|
||||||
|
Fix uses of strchr() to conform to this change.
|
||||||
|
|
||||||
|
[[email protected]: altered changes to avoid casts; fixed an
|
||||||
|
additional case]
|
||||||
|
[[email protected]: condensed some declarations; rewrote commit message]
|
||||||
|
|
||||||
|
ticket: 9191 (new)
|
||||||
|
---
|
||||||
|
src/lib/krb5/ccache/ccbase.c | 4 ++--
|
||||||
|
src/lib/krb5/os/expand_path.c | 3 ++-
|
||||||
|
src/lib/krb5/os/locate_kdc.c | 15 +++++++--------
|
||||||
|
src/plugins/preauth/pkinit/pkinit_crypto.h | 2 +-
|
||||||
|
.../preauth/pkinit/pkinit_crypto_openssl.c | 6 +++---
|
||||||
|
src/plugins/preauth/pkinit/pkinit_identity.c | 2 +-
|
||||||
|
src/plugins/preauth/pkinit/pkinit_matching.c | 2 +-
|
||||||
|
src/tests/responder.c | 3 +--
|
||||||
|
8 files changed, 18 insertions(+), 19 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/src/lib/krb5/ccache/ccbase.c b/src/lib/krb5/ccache/ccbase.c
|
||||||
|
index 696b681812d..30a0a410c50 100644
|
||||||
|
--- a/src/lib/krb5/ccache/ccbase.c
|
||||||
|
+++ b/src/lib/krb5/ccache/ccbase.c
|
||||||
|
@@ -201,8 +201,8 @@ krb5_cc_register(krb5_context context, const krb5_cc_ops *ops,
|
||||||
|
krb5_error_code KRB5_CALLCONV
|
||||||
|
krb5_cc_resolve (krb5_context context, const char *name, krb5_ccache *cache)
|
||||||
|
{
|
||||||
|
- char *pfx, *cp;
|
||||||
|
- const char *resid;
|
||||||
|
+ char *pfx;
|
||||||
|
+ const char *cp, *resid;
|
||||||
|
unsigned int pfxlen;
|
||||||
|
krb5_error_code err;
|
||||||
|
const krb5_cc_ops *ops;
|
||||||
|
diff --git a/src/lib/krb5/os/expand_path.c b/src/lib/krb5/os/expand_path.c
|
||||||
|
index 5cbccf08c8b..6569b8820bd 100644
|
||||||
|
--- a/src/lib/krb5/os/expand_path.c
|
||||||
|
+++ b/src/lib/krb5/os/expand_path.c
|
||||||
|
@@ -454,7 +454,8 @@ k5_expand_path_tokens_extra(krb5_context context, const char *path_in,
|
||||||
|
{
|
||||||
|
krb5_error_code ret;
|
||||||
|
struct k5buf buf;
|
||||||
|
- char *tok_begin, *tok_end, *tok_val, **extra_tokens = NULL, *path;
|
||||||
|
+ const char *tok_begin, *tok_end;
|
||||||
|
+ char *tok_val, **extra_tokens = NULL, *path;
|
||||||
|
const char *path_left;
|
||||||
|
size_t nargs = 0, i;
|
||||||
|
va_list ap;
|
||||||
|
diff --git a/src/lib/krb5/os/locate_kdc.c b/src/lib/krb5/os/locate_kdc.c
|
||||||
|
index c186bce51c5..0cceff80006 100644
|
||||||
|
--- a/src/lib/krb5/os/locate_kdc.c
|
||||||
|
+++ b/src/lib/krb5/os/locate_kdc.c
|
||||||
|
@@ -214,8 +214,8 @@ add_host_to_list(struct serverlist *list, const char *hostname, int port,
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
-parse_uri_if_https(const char *host_or_uri, k5_transport *transport,
|
||||||
|
- const char **host, const char **uri_path)
|
||||||
|
+parse_uri_if_https(char *host_or_uri, k5_transport *transport,
|
||||||
|
+ char **host, const char **uri_path)
|
||||||
|
{
|
||||||
|
char *cp;
|
||||||
|
|
||||||
|
@@ -257,8 +257,7 @@ locate_srv_conf_1(krb5_context context, const krb5_data *realm,
|
||||||
|
k5_transport transport, int udpport)
|
||||||
|
{
|
||||||
|
const char *realm_srv_names[4];
|
||||||
|
- char **hostlist = NULL, *realmstr = NULL, *host = NULL;
|
||||||
|
- const char *hostspec;
|
||||||
|
+ char **hostlist = NULL, *realmstr = NULL, *host = NULL, *hostspec;
|
||||||
|
krb5_error_code code;
|
||||||
|
size_t i;
|
||||||
|
int default_port;
|
||||||
|
@@ -587,8 +586,8 @@ prof_locate_server(krb5_context context, const krb5_data *realm,
|
||||||
|
* Return a NULL *host_out if there are any problems parsing the URI.
|
||||||
|
*/
|
||||||
|
static void
|
||||||
|
-parse_uri_fields(const char *uri, k5_transport *transport_out,
|
||||||
|
- const char **host_out, int *primary_out)
|
||||||
|
+parse_uri_fields(char *uri, k5_transport *transport_out,
|
||||||
|
+ char **host_out, int *primary_out)
|
||||||
|
|
||||||
|
{
|
||||||
|
k5_transport transport;
|
||||||
|
@@ -656,8 +655,8 @@ locate_uri(krb5_context context, const krb5_data *realm,
|
||||||
|
krb5_error_code ret;
|
||||||
|
k5_transport transport, host_trans;
|
||||||
|
struct srv_dns_entry *answers, *entry;
|
||||||
|
- char *host, *sitename;
|
||||||
|
- const char *host_field, *path;
|
||||||
|
+ char *host, *sitename, *host_field;
|
||||||
|
+ const char *path;
|
||||||
|
int port, def_port, primary;
|
||||||
|
|
||||||
|
ret = get_sitename(context, realm, &sitename);
|
||||||
|
diff --git a/src/plugins/preauth/pkinit/pkinit_crypto.h b/src/plugins/preauth/pkinit/pkinit_crypto.h
|
||||||
|
index 57bb3cb840b..be2d02c227a 100644
|
||||||
|
--- a/src/plugins/preauth/pkinit/pkinit_crypto.h
|
||||||
|
+++ b/src/plugins/preauth/pkinit/pkinit_crypto.h
|
||||||
|
@@ -440,7 +440,7 @@ krb5_error_code crypto_load_cas_and_crls
|
||||||
|
defines the storage type (file, directory, etc) */
|
||||||
|
int catype, /* IN
|
||||||
|
defines the ca type (anchor, intermediate, crls) */
|
||||||
|
- char *id); /* IN
|
||||||
|
+ const char *id); /* IN
|
||||||
|
defines the location (filename, directory name, etc) */
|
||||||
|
|
||||||
|
/*
|
||||||
|
diff --git a/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c b/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
|
||||||
|
index bd25bae4789..d1fe18e5abf 100644
|
||||||
|
--- a/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
|
||||||
|
+++ b/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
|
||||||
|
@@ -4999,7 +4999,7 @@ load_cas_and_crls(krb5_context context,
|
||||||
|
pkinit_req_crypto_context req_cryptoctx,
|
||||||
|
pkinit_identity_crypto_context id_cryptoctx,
|
||||||
|
int catype,
|
||||||
|
- char *filename)
|
||||||
|
+ const char *filename)
|
||||||
|
{
|
||||||
|
STACK_OF(X509_INFO) *sk = NULL;
|
||||||
|
STACK_OF(X509) *ca_certs = NULL;
|
||||||
|
@@ -5157,7 +5157,7 @@ load_cas_and_crls_dir(krb5_context context,
|
||||||
|
pkinit_req_crypto_context req_cryptoctx,
|
||||||
|
pkinit_identity_crypto_context id_cryptoctx,
|
||||||
|
int catype,
|
||||||
|
- char *dirname)
|
||||||
|
+ const char *dirname)
|
||||||
|
{
|
||||||
|
krb5_error_code retval = EINVAL;
|
||||||
|
char **fnames = NULL, *filename;
|
||||||
|
@@ -5201,7 +5201,7 @@ crypto_load_cas_and_crls(krb5_context context,
|
||||||
|
pkinit_identity_crypto_context id_cryptoctx,
|
||||||
|
int idtype,
|
||||||
|
int catype,
|
||||||
|
- char *id)
|
||||||
|
+ const char *id)
|
||||||
|
{
|
||||||
|
switch (idtype) {
|
||||||
|
case IDTYPE_FILE:
|
||||||
|
diff --git a/src/plugins/preauth/pkinit/pkinit_identity.c b/src/plugins/preauth/pkinit/pkinit_identity.c
|
||||||
|
index 0dcfcfc46a6..ad65f237b07 100644
|
||||||
|
--- a/src/plugins/preauth/pkinit/pkinit_identity.c
|
||||||
|
+++ b/src/plugins/preauth/pkinit/pkinit_identity.c
|
||||||
|
@@ -473,7 +473,7 @@ process_option_ca_crl(krb5_context context,
|
||||||
|
const char *value,
|
||||||
|
int catype)
|
||||||
|
{
|
||||||
|
- char *residual;
|
||||||
|
+ const char *residual;
|
||||||
|
unsigned int typelen;
|
||||||
|
int idtype;
|
||||||
|
|
||||||
|
diff --git a/src/plugins/preauth/pkinit/pkinit_matching.c b/src/plugins/preauth/pkinit/pkinit_matching.c
|
||||||
|
index 0ea072c8876..b3c8df1610f 100644
|
||||||
|
--- a/src/plugins/preauth/pkinit/pkinit_matching.c
|
||||||
|
+++ b/src/plugins/preauth/pkinit/pkinit_matching.c
|
||||||
|
@@ -262,7 +262,7 @@ parse_rule_component(krb5_context context,
|
||||||
|
char err_buf[128];
|
||||||
|
int ret;
|
||||||
|
struct keyword_desc *kw, *nextkw;
|
||||||
|
- char *nk;
|
||||||
|
+ const char *nk;
|
||||||
|
int found_next_kw = 0;
|
||||||
|
char *value = NULL;
|
||||||
|
size_t len;
|
||||||
|
diff --git a/src/tests/responder.c b/src/tests/responder.c
|
||||||
|
index 82f870ea5d4..4221a20283d 100644
|
||||||
|
--- a/src/tests/responder.c
|
||||||
|
+++ b/src/tests/responder.c
|
||||||
|
@@ -282,8 +282,7 @@ responder(krb5_context ctx, void *rawdata, krb5_responder_context rctx)
|
||||||
|
/* Provide a particular response for an OTP challenge. */
|
||||||
|
if (data->otp_answer != NULL) {
|
||||||
|
if (krb5_responder_otp_get_challenge(ctx, rctx, &ochl) == 0) {
|
||||||
|
- key = strchr(data->otp_answer, '=');
|
||||||
|
- if (key != NULL) {
|
||||||
|
+ if (strchr(data->otp_answer, '=') != NULL) {
|
||||||
|
/* Make a copy of the answer that we can chop up. */
|
||||||
|
key = strdup(data->otp_answer);
|
||||||
|
if (key == NULL)
|
||||||
@@ -2,13 +2,21 @@
|
|||||||
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
|
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
|
||||||
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
|
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
|
||||||
|
|
||||||
|
# The prepare function is executed in the root of the temp directory
|
||||||
|
# This function is used for putting downloaded files to the correct location or applying patches
|
||||||
|
prepare() {
|
||||||
|
cd "$BPM_SOURCE"
|
||||||
|
patch -Np1 -i "$BPM_WORKDIR"/strchr-fix.patch
|
||||||
|
}
|
||||||
|
|
||||||
# The build function is executed in the source directory
|
# The build function is executed in the source directory
|
||||||
# This function is used to compile the source code
|
# This function is used to compile the source code
|
||||||
build() {
|
build() {
|
||||||
cd src
|
cd src
|
||||||
|
|
||||||
sed -i -e '/eq 0/{N;s/12 //}' plugins/kdb/db2/libdb2/test/run.test
|
sed -i -e '/eq 0/{N;s/12 //}' plugins/kdb/db2/libdb2/test/run.test
|
||||||
|
|
||||||
|
export CFLAGS="${CFLAGS} -fPIC -fno-strict-aliasing -fstack-protector-all"
|
||||||
./configure --prefix=/usr \
|
./configure --prefix=/usr \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--localstatedir=/var/lib \
|
--localstatedir=/var/lib \
|
||||||
|
|||||||
Reference in New Issue
Block a user