if_alg.h 2.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * if_alg: User-space algorithm interface
 *
 * Copyright (c) 2010 Herbert Xu <herbert@gondor.apana.org.au>
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the Free
 * Software Foundation; either version 2 of the License, or (at your option)
 * any later version.
 *
 */

#ifndef _CRYPTO_IF_ALG_H
#define _CRYPTO_IF_ALG_H

#include <linux/compiler.h>
#include <linux/completion.h>
#include <linux/if_alg.h>
19
#include <linux/scatterlist.h>
20 21 22 23 24 25 26 27 28 29 30 31 32
#include <linux/types.h>
#include <net/sock.h>

#define ALG_MAX_PAGES			16

struct crypto_async_request;

struct alg_sock {
	/* struct sock must be the first member of struct alg_sock */
	struct sock sk;

	struct sock *parent;

33 34
	unsigned int refcnt;

35 36 37 38 39 40 41 42 43 44 45 46
	const struct af_alg_type *type;
	void *private;
};

struct af_alg_completion {
	struct completion completion;
	int err;
};

struct af_alg_control {
	struct af_alg_iv *iv;
	int op;
47
	unsigned int aead_assoclen;
48 49 50 51 52 53 54
};

struct af_alg_type {
	void *(*bind)(const char *name, u32 type, u32 mask);
	void (*release)(void *private);
	int (*setkey)(void *private, const u8 *key, unsigned int keylen);
	int (*accept)(void *private, struct sock *sk);
55
	int (*accept_nokey)(void *private, struct sock *sk);
56
	int (*setauthsize)(void *private, unsigned int authsize);
57 58

	struct proto_ops *ops;
59
	struct proto_ops *ops_nokey;
60 61 62 63 64
	struct module *owner;
	char name[14];
};

struct af_alg_sgl {
65
	struct scatterlist sg[ALG_MAX_PAGES + 1];
66
	struct page *pages[ALG_MAX_PAGES];
67
	unsigned int npages;
68 69 70 71 72 73
};

int af_alg_register_type(const struct af_alg_type *type);
int af_alg_unregister_type(const struct af_alg_type *type);

int af_alg_release(struct socket *sock);
74
void af_alg_release_parent(struct sock *sk);
75 76
int af_alg_accept(struct sock *sk, struct socket *newsock);

77
int af_alg_make_sg(struct af_alg_sgl *sgl, struct iov_iter *iter, int len);
78
void af_alg_free_sg(struct af_alg_sgl *sgl);
79
void af_alg_link_sg(struct af_alg_sgl *sgl_prev, struct af_alg_sgl *sgl_new);
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96

int af_alg_cmsg_send(struct msghdr *msg, struct af_alg_control *con);

int af_alg_wait_for_completion(int err, struct af_alg_completion *completion);
void af_alg_complete(struct crypto_async_request *req, int err);

static inline struct alg_sock *alg_sk(struct sock *sk)
{
	return (struct alg_sock *)sk;
}

static inline void af_alg_init_completion(struct af_alg_completion *completion)
{
	init_completion(&completion->completion);
}

#endif	/* _CRYPTO_IF_ALG_H */