From: Stephan Mueller Subject: [PATCH v2 09/10] crypto: AF_ALG: user space interface for hash info Date: Sun, 16 Nov 2014 03:28:52 +0100 Message-ID: <1907032.lnybFlp3cC@tachyon.chronox.de> References: <5365136.g8vbXlhRyC@tachyon.chronox.de> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: Daniel Borkmann , quentin.gouchet@gmail.com, LKML , linux-crypto@vger.kernel.org, ABI/API To: Herbert Xu Return-path: In-Reply-To: <5365136.g8vbXlhRyC@tachyon.chronox.de> Sender: linux-kernel-owner@vger.kernel.org List-Id: linux-crypto.vger.kernel.org The AF_ALG interface allows normal cipher (hash, encrypt, decrypt). However, it does not allow user space to obtain the following generic information about the currently active hash: * digestsize The patch adds a getsockopt interface for the hash ciphers to answer such information requests from user space. The kernel crypto API function calls are used to obtain the real data. As all data are simple integer values, the getsockopt handler function uses put_user() to return the integer value to user space in the *optval parameter of getsockopt. A fully working example using the digestsize interface is provided at http://www.chronox.de/libkcapi.html Signed-off-by: Stephan Mueller --- crypto/algif_hash.c | 35 ++++++++++++++++++++++++++++++++++- include/uapi/linux/if_alg.h | 1 + 2 files changed, 35 insertions(+), 1 deletion(-) diff --git a/crypto/algif_hash.c b/crypto/algif_hash.c index f75db4c..68ae34c 100644 --- a/crypto/algif_hash.c +++ b/crypto/algif_hash.c @@ -216,6 +216,39 @@ static int hash_accept(struct socket *sock, struct socket *newsock, int flags) return err; } +static int hash_getsockopt(struct socket *sock, int level, int optname, + char __user *optval, int __user *optlen) +{ + struct sock *sk = sock->sk; + struct alg_sock *ask = alg_sk(sk); + struct hash_ctx *ctx = ask->private; + const struct af_alg_type *type; + int len = 0; + int err = -EOPNOTSUPP; + + lock_sock(sk); + type = ask->type; + + if (level != SOL_ALG || !type) + goto unlock; + + switch (optname) { + case ALG_GET_DIGESTSIZE: + len = crypto_ahash_digestsize(crypto_ahash_reqtfm(&ctx->req)); + err = 0; + break; + default: + break; + } + +unlock: + release_sock(sk); + if (err >= 0) + err = put_user(len, optlen); + + return err; +} + static struct proto_ops algif_hash_ops = { .family = PF_ALG, @@ -225,7 +258,6 @@ static struct proto_ops algif_hash_ops = { .ioctl = sock_no_ioctl, .listen = sock_no_listen, .shutdown = sock_no_shutdown, - .getsockopt = sock_no_getsockopt, .mmap = sock_no_mmap, .bind = sock_no_bind, .setsockopt = sock_no_setsockopt, @@ -236,6 +268,7 @@ static struct proto_ops algif_hash_ops = { .sendpage = hash_sendpage, .recvmsg = hash_recvmsg, .accept = hash_accept, + .getsockopt = hash_getsockopt, }; static void *hash_bind(const char *name, u32 type, u32 mask) diff --git a/include/uapi/linux/if_alg.h b/include/uapi/linux/if_alg.h index b8fb714..3759d3c 100644 --- a/include/uapi/linux/if_alg.h +++ b/include/uapi/linux/if_alg.h @@ -44,6 +44,7 @@ struct af_alg_aead_assoc { #define ALG_GET_BLOCKSIZE 1 #define ALG_GET_IVSIZE 2 #define ALG_GET_AEAD_AUTHSIZE 3 +#define ALG_GET_DIGESTSIZE 4 /* Operations */ #define ALG_OP_DECRYPT 0 -- 2.1.0