xref: /openbmc/linux/include/net/sctp/auth.h (revision 976e3645923bdd2fe7893aae33fd7a21098bfb28)
147505b8bSThomas Gleixner /* SPDX-License-Identifier: GPL-2.0-or-later */
260c778b2SVlad Yasevich /* SCTP kernel implementation
31f485649SVlad Yasevich  * (C) Copyright 2007 Hewlett-Packard Development Company, L.P.
41f485649SVlad Yasevich  *
560c778b2SVlad Yasevich  * This file is part of the SCTP kernel implementation
61f485649SVlad Yasevich  *
71f485649SVlad Yasevich  * Please send any bug reports or fixes you make to the
81f485649SVlad Yasevich  * email address(es):
991705c61SDaniel Borkmann  *    lksctp developers <linux-sctp@vger.kernel.org>
101f485649SVlad Yasevich  *
111f485649SVlad Yasevich  * Written or modified by:
121f485649SVlad Yasevich  *   Vlad Yasevich     <vladislav.yasevich@hp.com>
131f485649SVlad Yasevich  */
141f485649SVlad Yasevich 
151f485649SVlad Yasevich #ifndef __sctp_auth_h__
161f485649SVlad Yasevich #define __sctp_auth_h__
171f485649SVlad Yasevich 
181f485649SVlad Yasevich #include <linux/list.h>
196871584aSReshetova, Elena #include <linux/refcount.h>
201f485649SVlad Yasevich 
211f485649SVlad Yasevich struct sctp_endpoint;
221f485649SVlad Yasevich struct sctp_association;
231f485649SVlad Yasevich struct sctp_authkey;
2465b07e5dSVlad Yasevich struct sctp_hmacalgo;
255821c769SHerbert Xu struct crypto_shash;
261f485649SVlad Yasevich 
271f485649SVlad Yasevich /*
281f485649SVlad Yasevich  * Define a generic struct that will hold all the info
291f485649SVlad Yasevich  * necessary for an HMAC transform
301f485649SVlad Yasevich  */
311f485649SVlad Yasevich struct sctp_hmac {
321f485649SVlad Yasevich 	__u16 hmac_id;		/* one of the above ids */
331f485649SVlad Yasevich 	char *hmac_name;	/* name for loading */
341f485649SVlad Yasevich 	__u16 hmac_len;		/* length of the signature */
351f485649SVlad Yasevich };
361f485649SVlad Yasevich 
371f485649SVlad Yasevich /* This is generic structure that containst authentication bytes used
381f485649SVlad Yasevich  * as keying material.  It's a what is referred to as byte-vector all
391f485649SVlad Yasevich  * over SCTP-AUTH
401f485649SVlad Yasevich  */
411f485649SVlad Yasevich struct sctp_auth_bytes {
426871584aSReshetova, Elena 	refcount_t refcnt;
431f485649SVlad Yasevich 	__u32 len;
441f485649SVlad Yasevich 	__u8  data[];
451f485649SVlad Yasevich };
461f485649SVlad Yasevich 
471f485649SVlad Yasevich /* Definition for a shared key, weather endpoint or association */
481f485649SVlad Yasevich struct sctp_shared_key {
491f485649SVlad Yasevich 	struct list_head key_list;
501f485649SVlad Yasevich 	struct sctp_auth_bytes *key;
511b1e0bc9SXin Long 	refcount_t refcnt;
521b1e0bc9SXin Long 	__u16 key_id;
53601590ecSXin Long 	__u8 deactivated;
541f485649SVlad Yasevich };
551f485649SVlad Yasevich 
561f485649SVlad Yasevich #define key_for_each(__key, __list_head) \
571f485649SVlad Yasevich 	list_for_each_entry(__key, __list_head, key_list)
581f485649SVlad Yasevich 
591f485649SVlad Yasevich #define key_for_each_safe(__key, __tmp, __list_head) \
601f485649SVlad Yasevich 	list_for_each_entry_safe(__key, __tmp, __list_head, key_list)
611f485649SVlad Yasevich 
sctp_auth_key_hold(struct sctp_auth_bytes * key)621f485649SVlad Yasevich static inline void sctp_auth_key_hold(struct sctp_auth_bytes *key)
631f485649SVlad Yasevich {
641f485649SVlad Yasevich 	if (!key)
651f485649SVlad Yasevich 		return;
661f485649SVlad Yasevich 
676871584aSReshetova, Elena 	refcount_inc(&key->refcnt);
681f485649SVlad Yasevich }
691f485649SVlad Yasevich 
701f485649SVlad Yasevich void sctp_auth_key_put(struct sctp_auth_bytes *key);
711f485649SVlad Yasevich struct sctp_shared_key *sctp_auth_shkey_create(__u16 key_id, gfp_t gfp);
721f485649SVlad Yasevich void sctp_auth_destroy_keys(struct list_head *keys);
731f485649SVlad Yasevich int sctp_auth_asoc_init_active_key(struct sctp_association *asoc, gfp_t gfp);
741f485649SVlad Yasevich struct sctp_shared_key *sctp_auth_get_shkey(
751f485649SVlad Yasevich 				const struct sctp_association *asoc,
761f485649SVlad Yasevich 				__u16 key_id);
771f485649SVlad Yasevich int sctp_auth_asoc_copy_shkeys(const struct sctp_endpoint *ep,
781f485649SVlad Yasevich 				struct sctp_association *asoc,
791f485649SVlad Yasevich 				gfp_t gfp);
801f485649SVlad Yasevich int sctp_auth_init_hmacs(struct sctp_endpoint *ep, gfp_t gfp);
815821c769SHerbert Xu void sctp_auth_destroy_hmacs(struct crypto_shash *auth_hmacs[]);
821f485649SVlad Yasevich struct sctp_hmac *sctp_auth_get_hmac(__u16 hmac_id);
831f485649SVlad Yasevich struct sctp_hmac *sctp_auth_asoc_get_hmac(const struct sctp_association *asoc);
841f485649SVlad Yasevich void sctp_auth_asoc_set_default_hmac(struct sctp_association *asoc,
851f485649SVlad Yasevich 				     struct sctp_hmac_algo_param *hmacs);
861f485649SVlad Yasevich int sctp_auth_asoc_verify_hmac_id(const struct sctp_association *asoc,
87d06f6082SAl Viro 				    __be16 hmac_id);
886d85e68fSXin Long int sctp_auth_send_cid(enum sctp_cid chunk,
896d85e68fSXin Long 		       const struct sctp_association *asoc);
906d85e68fSXin Long int sctp_auth_recv_cid(enum sctp_cid chunk,
916d85e68fSXin Long 		       const struct sctp_association *asoc);
921f485649SVlad Yasevich void sctp_auth_calculate_hmac(const struct sctp_association *asoc,
931b1e0bc9SXin Long 			      struct sk_buff *skb, struct sctp_auth_chunk *auth,
941b1e0bc9SXin Long 			      struct sctp_shared_key *ep_key, gfp_t gfp);
951b1e0bc9SXin Long void sctp_auth_shkey_release(struct sctp_shared_key *sh_key);
961b1e0bc9SXin Long void sctp_auth_shkey_hold(struct sctp_shared_key *sh_key);
9765b07e5dSVlad Yasevich 
9865b07e5dSVlad Yasevich /* API Helpers */
9965b07e5dSVlad Yasevich int sctp_auth_ep_add_chunkid(struct sctp_endpoint *ep, __u8 chunk_id);
10065b07e5dSVlad Yasevich int sctp_auth_ep_set_hmacs(struct sctp_endpoint *ep,
10165b07e5dSVlad Yasevich 			    struct sctp_hmacalgo *hmacs);
102601590ecSXin Long int sctp_auth_set_key(struct sctp_endpoint *ep, struct sctp_association *asoc,
10365b07e5dSVlad Yasevich 		      struct sctp_authkey *auth_key);
10465b07e5dSVlad Yasevich int sctp_auth_set_active_key(struct sctp_endpoint *ep,
105601590ecSXin Long 			     struct sctp_association *asoc, __u16 key_id);
10665b07e5dSVlad Yasevich int sctp_auth_del_key_id(struct sctp_endpoint *ep,
107601590ecSXin Long 			 struct sctp_association *asoc, __u16 key_id);
108601590ecSXin Long int sctp_auth_deact_key_id(struct sctp_endpoint *ep,
109601590ecSXin Long 			   struct sctp_association *asoc, __u16 key_id);
110*03f96127SXin Long int sctp_auth_init(struct sctp_endpoint *ep, gfp_t gfp);
111*03f96127SXin Long void sctp_auth_free(struct sctp_endpoint *ep);
11265b07e5dSVlad Yasevich 
1131f485649SVlad Yasevich #endif
114