2 * algif_hash: User-space interface for hash algorithms
4 * This file provides the user-space API for hash algorithms.
6 * Copyright (c) 2010 Herbert Xu <herbert@gondor.apana.org.au>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the Free
10 * Software Foundation; either version 2 of the License, or (at your option)
15 #include <crypto/hash.h>
16 #include <crypto/if_alg.h>
17 #include <linux/init.h>
18 #include <linux/kernel.h>
20 #include <linux/module.h>
21 #include <linux/net.h>
25 struct af_alg_sgl sgl;
29 struct af_alg_completion completion;
34 struct ahash_request req;
37 struct algif_hash_tfm {
38 struct crypto_ahash *hash;
42 static int hash_alloc_result(struct sock *sk, struct hash_ctx *ctx)
49 ds = crypto_ahash_digestsize(crypto_ahash_reqtfm(&ctx->req));
51 ctx->result = sock_kmalloc(sk, ds, GFP_KERNEL);
55 memset(ctx->result, 0, ds);
60 static void hash_free_result(struct sock *sk, struct hash_ctx *ctx)
67 ds = crypto_ahash_digestsize(crypto_ahash_reqtfm(&ctx->req));
69 sock_kzfree_s(sk, ctx->result, ds);
73 static int hash_sendmsg(struct socket *sock, struct msghdr *msg,
76 int limit = ALG_MAX_PAGES * PAGE_SIZE;
77 struct sock *sk = sock->sk;
78 struct alg_sock *ask = alg_sk(sk);
79 struct hash_ctx *ctx = ask->private;
83 if (limit > sk->sk_sndbuf)
84 limit = sk->sk_sndbuf;
88 if ((msg->msg_flags & MSG_MORE))
89 hash_free_result(sk, ctx);
91 err = af_alg_wait_for_completion(crypto_ahash_init(&ctx->req),
99 while (msg_data_left(msg)) {
100 int len = msg_data_left(msg);
105 len = af_alg_make_sg(&ctx->sgl, &msg->msg_iter, len);
107 err = copied ? 0 : len;
111 ahash_request_set_crypt(&ctx->req, ctx->sgl.sg, NULL, len);
113 err = af_alg_wait_for_completion(crypto_ahash_update(&ctx->req),
115 af_alg_free_sg(&ctx->sgl);
120 iov_iter_advance(&msg->msg_iter, len);
125 ctx->more = msg->msg_flags & MSG_MORE;
127 err = hash_alloc_result(sk, ctx);
131 ahash_request_set_crypt(&ctx->req, NULL, ctx->result, 0);
132 err = af_alg_wait_for_completion(crypto_ahash_final(&ctx->req),
139 return err ?: copied;
142 static ssize_t hash_sendpage(struct socket *sock, struct page *page,
143 int offset, size_t size, int flags)
145 struct sock *sk = sock->sk;
146 struct alg_sock *ask = alg_sk(sk);
147 struct hash_ctx *ctx = ask->private;
150 if (flags & MSG_SENDPAGE_NOTLAST)
154 sg_init_table(ctx->sgl.sg, 1);
155 sg_set_page(ctx->sgl.sg, page, size, offset);
157 if (!(flags & MSG_MORE)) {
158 err = hash_alloc_result(sk, ctx);
161 } else if (!ctx->more)
162 hash_free_result(sk, ctx);
164 ahash_request_set_crypt(&ctx->req, ctx->sgl.sg, ctx->result, size);
166 if (!(flags & MSG_MORE)) {
168 err = crypto_ahash_finup(&ctx->req);
170 err = crypto_ahash_digest(&ctx->req);
173 err = crypto_ahash_init(&ctx->req);
174 err = af_alg_wait_for_completion(err, &ctx->completion);
179 err = crypto_ahash_update(&ctx->req);
182 err = af_alg_wait_for_completion(err, &ctx->completion);
186 ctx->more = flags & MSG_MORE;
194 static int hash_recvmsg(struct socket *sock, struct msghdr *msg, size_t len,
197 struct sock *sk = sock->sk;
198 struct alg_sock *ask = alg_sk(sk);
199 struct hash_ctx *ctx = ask->private;
200 unsigned ds = crypto_ahash_digestsize(crypto_ahash_reqtfm(&ctx->req));
207 msg->msg_flags |= MSG_TRUNC;
210 result = ctx->result;
211 err = hash_alloc_result(sk, ctx);
215 ahash_request_set_crypt(&ctx->req, NULL, ctx->result, 0);
217 if (!result && !ctx->more) {
218 err = af_alg_wait_for_completion(
219 crypto_ahash_init(&ctx->req),
225 if (!result || ctx->more) {
227 err = af_alg_wait_for_completion(crypto_ahash_final(&ctx->req),
233 err = memcpy_to_msg(msg, ctx->result, len);
236 hash_free_result(sk, ctx);
242 static int hash_accept(struct socket *sock, struct socket *newsock, int flags,
245 struct sock *sk = sock->sk;
246 struct alg_sock *ask = alg_sk(sk);
247 struct hash_ctx *ctx = ask->private;
248 struct ahash_request *req = &ctx->req;
249 char state[crypto_ahash_statesize(crypto_ahash_reqtfm(req)) ? : 1];
251 struct alg_sock *ask2;
252 struct hash_ctx *ctx2;
258 err = more ? crypto_ahash_export(req, state) : 0;
264 err = af_alg_accept(ask->parent, newsock, kern);
270 ctx2 = ask2->private;
276 err = crypto_ahash_import(&ctx2->req, state);
285 static struct proto_ops algif_hash_ops = {
288 .connect = sock_no_connect,
289 .socketpair = sock_no_socketpair,
290 .getname = sock_no_getname,
291 .ioctl = sock_no_ioctl,
292 .listen = sock_no_listen,
293 .shutdown = sock_no_shutdown,
294 .getsockopt = sock_no_getsockopt,
295 .mmap = sock_no_mmap,
296 .bind = sock_no_bind,
297 .setsockopt = sock_no_setsockopt,
298 .poll = sock_no_poll,
300 .release = af_alg_release,
301 .sendmsg = hash_sendmsg,
302 .sendpage = hash_sendpage,
303 .recvmsg = hash_recvmsg,
304 .accept = hash_accept,
307 static int hash_check_key(struct socket *sock)
311 struct alg_sock *pask;
312 struct algif_hash_tfm *tfm;
313 struct sock *sk = sock->sk;
314 struct alg_sock *ask = alg_sk(sk);
321 pask = alg_sk(ask->parent);
325 lock_sock_nested(psk, SINGLE_DEPTH_NESTING);
345 static int hash_sendmsg_nokey(struct socket *sock, struct msghdr *msg,
350 err = hash_check_key(sock);
354 return hash_sendmsg(sock, msg, size);
357 static ssize_t hash_sendpage_nokey(struct socket *sock, struct page *page,
358 int offset, size_t size, int flags)
362 err = hash_check_key(sock);
366 return hash_sendpage(sock, page, offset, size, flags);
369 static int hash_recvmsg_nokey(struct socket *sock, struct msghdr *msg,
370 size_t ignored, int flags)
374 err = hash_check_key(sock);
378 return hash_recvmsg(sock, msg, ignored, flags);
381 static int hash_accept_nokey(struct socket *sock, struct socket *newsock,
382 int flags, bool kern)
386 err = hash_check_key(sock);
390 return hash_accept(sock, newsock, flags, kern);
393 static struct proto_ops algif_hash_ops_nokey = {
396 .connect = sock_no_connect,
397 .socketpair = sock_no_socketpair,
398 .getname = sock_no_getname,
399 .ioctl = sock_no_ioctl,
400 .listen = sock_no_listen,
401 .shutdown = sock_no_shutdown,
402 .getsockopt = sock_no_getsockopt,
403 .mmap = sock_no_mmap,
404 .bind = sock_no_bind,
405 .setsockopt = sock_no_setsockopt,
406 .poll = sock_no_poll,
408 .release = af_alg_release,
409 .sendmsg = hash_sendmsg_nokey,
410 .sendpage = hash_sendpage_nokey,
411 .recvmsg = hash_recvmsg_nokey,
412 .accept = hash_accept_nokey,
415 static void *hash_bind(const char *name, u32 type, u32 mask)
417 struct algif_hash_tfm *tfm;
418 struct crypto_ahash *hash;
420 tfm = kzalloc(sizeof(*tfm), GFP_KERNEL);
422 return ERR_PTR(-ENOMEM);
424 hash = crypto_alloc_ahash(name, type, mask);
427 return ERR_CAST(hash);
435 static void hash_release(void *private)
437 struct algif_hash_tfm *tfm = private;
439 crypto_free_ahash(tfm->hash);
443 static int hash_setkey(void *private, const u8 *key, unsigned int keylen)
445 struct algif_hash_tfm *tfm = private;
448 err = crypto_ahash_setkey(tfm->hash, key, keylen);
454 static void hash_sock_destruct(struct sock *sk)
456 struct alg_sock *ask = alg_sk(sk);
457 struct hash_ctx *ctx = ask->private;
459 hash_free_result(sk, ctx);
460 sock_kfree_s(sk, ctx, ctx->len);
461 af_alg_release_parent(sk);
464 static int hash_accept_parent_nokey(void *private, struct sock *sk)
466 struct hash_ctx *ctx;
467 struct alg_sock *ask = alg_sk(sk);
468 struct algif_hash_tfm *tfm = private;
469 struct crypto_ahash *hash = tfm->hash;
470 unsigned len = sizeof(*ctx) + crypto_ahash_reqsize(hash);
472 ctx = sock_kmalloc(sk, len, GFP_KERNEL);
479 af_alg_init_completion(&ctx->completion);
483 ahash_request_set_tfm(&ctx->req, hash);
484 ahash_request_set_callback(&ctx->req, CRYPTO_TFM_REQ_MAY_BACKLOG,
485 af_alg_complete, &ctx->completion);
487 sk->sk_destruct = hash_sock_destruct;
492 static int hash_accept_parent(void *private, struct sock *sk)
494 struct algif_hash_tfm *tfm = private;
496 if (!tfm->has_key && crypto_ahash_has_setkey(tfm->hash))
499 return hash_accept_parent_nokey(private, sk);
502 static const struct af_alg_type algif_type_hash = {
504 .release = hash_release,
505 .setkey = hash_setkey,
506 .accept = hash_accept_parent,
507 .accept_nokey = hash_accept_parent_nokey,
508 .ops = &algif_hash_ops,
509 .ops_nokey = &algif_hash_ops_nokey,
514 static int __init algif_hash_init(void)
516 return af_alg_register_type(&algif_type_hash);
519 static void __exit algif_hash_exit(void)
521 int err = af_alg_unregister_type(&algif_type_hash);
525 module_init(algif_hash_init);
526 module_exit(algif_hash_exit);
527 MODULE_LICENSE("GPL");