1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* RxRPC security handling
4 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
8 #include <linux/module.h>
10 #include <linux/skbuff.h>
11 #include <linux/udp.h>
12 #include <linux/crypto.h>
14 #include <net/af_rxrpc.h>
15 #include <keys/rxrpc-type.h>
16 #include "ar-internal.h"
18 static const struct rxrpc_security *rxrpc_security_types[] = {
19 [RXRPC_SECURITY_NONE] = &rxrpc_no_security,
21 [RXRPC_SECURITY_RXKAD] = &rxkad,
25 int __init rxrpc_init_security(void)
29 for (i = 0; i < ARRAY_SIZE(rxrpc_security_types); i++) {
30 if (rxrpc_security_types[i]) {
31 ret = rxrpc_security_types[i]->init();
40 for (i--; i >= 0; i--)
41 if (rxrpc_security_types[i])
42 rxrpc_security_types[i]->exit();
46 void rxrpc_exit_security(void)
50 for (i = 0; i < ARRAY_SIZE(rxrpc_security_types); i++)
51 if (rxrpc_security_types[i])
52 rxrpc_security_types[i]->exit();
56 * look up an rxrpc security module
58 const struct rxrpc_security *rxrpc_security_lookup(u8 security_index)
60 if (security_index >= ARRAY_SIZE(rxrpc_security_types))
62 return rxrpc_security_types[security_index];
66 * initialise the security on a client connection
68 int rxrpc_init_client_conn_security(struct rxrpc_connection *conn)
70 const struct rxrpc_security *sec;
71 struct rxrpc_key_token *token;
72 struct key *key = conn->params.key;
75 _enter("{%d},{%x}", conn->debug_id, key_serial(key));
80 ret = key_validate(key);
84 for (token = key->payload.data[0]; token; token = token->next) {
85 sec = rxrpc_security_lookup(token->security_index);
94 ret = conn->security->init_connection_security(conn, token);
96 conn->security = &rxrpc_no_security;
105 * Set the ops a server connection.
107 const struct rxrpc_security *rxrpc_get_incoming_security(struct rxrpc_sock *rx,
110 const struct rxrpc_security *sec;
111 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
115 sec = rxrpc_security_lookup(sp->hdr.securityIndex);
117 trace_rxrpc_abort(0, "SVS",
118 sp->hdr.cid, sp->hdr.callNumber, sp->hdr.seq,
119 RX_INVALID_OPERATION, EKEYREJECTED);
120 skb->mark = RXRPC_SKB_MARK_REJECT_ABORT;
121 skb->priority = RX_INVALID_OPERATION;
125 if (sp->hdr.securityIndex != RXRPC_SECURITY_NONE &&
127 trace_rxrpc_abort(0, "SVR",
128 sp->hdr.cid, sp->hdr.callNumber, sp->hdr.seq,
129 RX_INVALID_OPERATION, EKEYREJECTED);
130 skb->mark = RXRPC_SKB_MARK_REJECT_ABORT;
131 skb->priority = sec->no_key_abort;
139 * Find the security key for a server connection.
141 struct key *rxrpc_look_up_server_security(struct rxrpc_connection *conn,
143 u32 kvno, u32 enctype)
145 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
146 struct rxrpc_sock *rx;
147 struct key *key = ERR_PTR(-EKEYREJECTED);
148 key_ref_t kref = NULL;
149 char kdesc[5 + 1 + 3 + 1 + 12 + 1 + 12 + 1];
155 sprintf(kdesc, "%u:%u:%u:%u",
156 sp->hdr.serviceId, sp->hdr.securityIndex, kvno, enctype);
158 sprintf(kdesc, "%u:%u:%u",
159 sp->hdr.serviceId, sp->hdr.securityIndex, kvno);
161 sprintf(kdesc, "%u:%u",
162 sp->hdr.serviceId, sp->hdr.securityIndex);
166 rx = rcu_dereference(conn->params.local->service);
170 /* look through the service's keyring */
171 kref = keyring_search(make_key_ref(rx->securities, 1UL),
172 &key_type_rxrpc_s, kdesc, true);
174 key = ERR_CAST(kref);
178 key = key_ref_to_ptr(kref);
180 ret = key_validate(key);