* configure.ac (AC_CHECK_TYPES): Add struct crypto_report_akcipher. * netlink_crypto.c (decode_crypto_report_akcipher): New function. (crypto_user_alg_nla_decoders): Add CRYPTOCFGA_REPORT_AKCIPHER. --- configure.ac | 1 + netlink_crypto.c | 25 ++++++++++++++++++++++++- 2 files changed, 25 insertions(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac index 005f2d8..5190ff0 100644 --- a/configure.ac +++ b/configure.ac @@ -322,6 +322,7 @@ AC_CHECK_TYPES(m4_normalize([ AC_CHECK_TYPES(m4_normalize([ struct crypto_report_aead, + struct crypto_report_akcipher, struct crypto_report_blkcipher, struct crypto_report_cipher, struct crypto_report_comp, diff --git a/netlink_crypto.c b/netlink_crypto.c index 8729f80..188a3c8 100644 --- a/netlink_crypto.c +++ b/netlink_crypto.c @@ -206,6 +206,28 @@ decode_crypto_report_cipher(struct tcb *const tcp, return true; } +static bool +decode_crypto_report_akcipher(struct tcb *const tcp, + const kernel_ulong_t addr, + const unsigned int len, + const void *const opaque_data) +{ +# ifdef HAVE_STRUCT_CRYPTO_REPORT_AKCIPHER + struct crypto_report_akcipher rakcipher; + + if (len < sizeof(rakcipher)) + printstr_ex(tcp, addr, len, QUOTE_0_TERMINATED); + else if (!umove_or_printaddr(tcp, addr, &rakcipher)) { + PRINT_FIELD_CSTRING("{", rakcipher, type); + tprints("}"); + } +# else + printstr_ex(tcp, addr, len, QUOTE_0_TERMINATED); +# endif + + return true; +} + static const nla_decoder_t crypto_user_alg_nla_decoders[] = { [CRYPTOCFGA_PRIORITY_VAL] = decode_nla_u32, [CRYPTOCFGA_REPORT_LARVAL] = decode_crypto_report_larval, @@ -214,7 +236,8 @@ static const nla_decoder_t crypto_user_alg_nla_decoders[] = { [CRYPTOCFGA_REPORT_AEAD] = decode_crypto_report_aead, [CRYPTOCFGA_REPORT_COMPRESS] = decode_crypto_report_comp, [CRYPTOCFGA_REPORT_RNG] = decode_crypto_report_rng, - [CRYPTOCFGA_REPORT_CIPHER] = decode_crypto_report_cipher + [CRYPTOCFGA_REPORT_CIPHER] = decode_crypto_report_cipher, + [CRYPTOCFGA_REPORT_AKCIPHER] = decode_crypto_report_akcipher }; static void -- 2.7.4 ------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot _______________________________________________ Strace-devel mailing list Strace-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/strace-devel