blob: 50cb5f1ee0c029a54f54bec718738903415aeda3 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
David Howells17926a72007-04-26 15:48:28 -07002/* RxRPC security handling
3 *
4 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
David Howells17926a72007-04-26 15:48:28 -07006 */
7
8#include <linux/module.h>
9#include <linux/net.h>
10#include <linux/skbuff.h>
11#include <linux/udp.h>
12#include <linux/crypto.h>
13#include <net/sock.h>
14#include <net/af_rxrpc.h>
David Howells33941282009-09-14 01:17:35 +000015#include <keys/rxrpc-type.h>
David Howells17926a72007-04-26 15:48:28 -070016#include "ar-internal.h"
17
David Howells648af7f2016-04-07 17:23:51 +010018static const struct rxrpc_security *rxrpc_security_types[] = {
David Howellse0e4d822016-04-07 17:23:58 +010019 [RXRPC_SECURITY_NONE] = &rxrpc_no_security,
David Howells648af7f2016-04-07 17:23:51 +010020#ifdef CONFIG_RXKAD
21 [RXRPC_SECURITY_RXKAD] = &rxkad,
22#endif
23};
24
25int __init rxrpc_init_security(void)
David Howells17926a72007-04-26 15:48:28 -070026{
David Howells648af7f2016-04-07 17:23:51 +010027 int i, ret;
28
29 for (i = 0; i < ARRAY_SIZE(rxrpc_security_types); i++) {
30 if (rxrpc_security_types[i]) {
31 ret = rxrpc_security_types[i]->init();
32 if (ret < 0)
33 goto failed;
34 }
35 }
36
37 return 0;
38
39failed:
40 for (i--; i >= 0; i--)
41 if (rxrpc_security_types[i])
42 rxrpc_security_types[i]->exit();
43 return ret;
David Howells17926a72007-04-26 15:48:28 -070044}
45
David Howells648af7f2016-04-07 17:23:51 +010046void rxrpc_exit_security(void)
David Howells17926a72007-04-26 15:48:28 -070047{
David Howells648af7f2016-04-07 17:23:51 +010048 int i;
49
50 for (i = 0; i < ARRAY_SIZE(rxrpc_security_types); i++)
51 if (rxrpc_security_types[i])
52 rxrpc_security_types[i]->exit();
David Howells17926a72007-04-26 15:48:28 -070053}
54
55/*
56 * look up an rxrpc security module
57 */
David Howells12da59f2020-09-16 08:37:29 +010058const struct rxrpc_security *rxrpc_security_lookup(u8 security_index)
David Howells17926a72007-04-26 15:48:28 -070059{
David Howells648af7f2016-04-07 17:23:51 +010060 if (security_index >= ARRAY_SIZE(rxrpc_security_types))
61 return NULL;
62 return rxrpc_security_types[security_index];
David Howells17926a72007-04-26 15:48:28 -070063}
64
David Howells17926a72007-04-26 15:48:28 -070065/*
66 * initialise the security on a client connection
67 */
68int rxrpc_init_client_conn_security(struct rxrpc_connection *conn)
69{
David Howells648af7f2016-04-07 17:23:51 +010070 const struct rxrpc_security *sec;
David Howells33941282009-09-14 01:17:35 +000071 struct rxrpc_key_token *token;
David Howells19ffa012016-04-04 14:00:36 +010072 struct key *key = conn->params.key;
David Howells17926a72007-04-26 15:48:28 -070073 int ret;
74
75 _enter("{%d},{%x}", conn->debug_id, key_serial(key));
76
77 if (!key)
78 return 0;
79
80 ret = key_validate(key);
81 if (ret < 0)
82 return ret;
83
David Howells41057eb2020-09-16 08:19:12 +010084 for (token = key->payload.data[0]; token; token = token->next) {
85 sec = rxrpc_security_lookup(token->security_index);
86 if (sec)
87 goto found;
88 }
89 return -EKEYREJECTED;
David Howells33941282009-09-14 01:17:35 +000090
David Howells41057eb2020-09-16 08:19:12 +010091found:
David Howells17926a72007-04-26 15:48:28 -070092 conn->security = sec;
93
David Howells41057eb2020-09-16 08:19:12 +010094 ret = conn->security->init_connection_security(conn, token);
David Howells17926a72007-04-26 15:48:28 -070095 if (ret < 0) {
David Howellse0e4d822016-04-07 17:23:58 +010096 conn->security = &rxrpc_no_security;
David Howells17926a72007-04-26 15:48:28 -070097 return ret;
98 }
99
100 _leave(" = 0");
101 return 0;
102}
103
104/*
David Howellsec832bd2020-09-16 08:00:44 +0100105 * Set the ops a server connection.
David Howells17926a72007-04-26 15:48:28 -0700106 */
David Howellsec832bd2020-09-16 08:00:44 +0100107const struct rxrpc_security *rxrpc_get_incoming_security(struct rxrpc_sock *rx,
108 struct sk_buff *skb)
David Howells17926a72007-04-26 15:48:28 -0700109{
David Howells648af7f2016-04-07 17:23:51 +0100110 const struct rxrpc_security *sec;
David Howells063c60d2019-12-20 16:17:16 +0000111 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells17926a72007-04-26 15:48:28 -0700112
113 _enter("");
114
David Howells063c60d2019-12-20 16:17:16 +0000115 sec = rxrpc_security_lookup(sp->hdr.securityIndex);
David Howells17926a72007-04-26 15:48:28 -0700116 if (!sec) {
David Howells063c60d2019-12-20 16:17:16 +0000117 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;
David Howellsec832bd2020-09-16 08:00:44 +0100122 return NULL;
David Howells17926a72007-04-26 15:48:28 -0700123 }
124
David Howellsec832bd2020-09-16 08:00:44 +0100125 if (sp->hdr.securityIndex != RXRPC_SECURITY_NONE &&
126 !rx->securities) {
David Howells063c60d2019-12-20 16:17:16 +0000127 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;
David Howellsec832bd2020-09-16 08:00:44 +0100131 skb->priority = sec->no_key_abort;
132 return NULL;
David Howells17926a72007-04-26 15:48:28 -0700133 }
134
David Howellsec832bd2020-09-16 08:00:44 +0100135 return sec;
136}
137
138/*
139 * Find the security key for a server connection.
140 */
141struct key *rxrpc_look_up_server_security(struct rxrpc_connection *conn,
142 struct sk_buff *skb,
143 u32 kvno, u32 enctype)
144{
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];
150 int ret;
151
152 _enter("");
153
154 if (enctype)
155 sprintf(kdesc, "%u:%u:%u:%u",
156 sp->hdr.serviceId, sp->hdr.securityIndex, kvno, enctype);
157 else if (kvno)
158 sprintf(kdesc, "%u:%u:%u",
159 sp->hdr.serviceId, sp->hdr.securityIndex, kvno);
160 else
161 sprintf(kdesc, "%u:%u",
162 sp->hdr.serviceId, sp->hdr.securityIndex);
163
164 rcu_read_lock();
165
166 rx = rcu_dereference(conn->params.local->service);
167 if (!rx)
168 goto out;
169
David Howells17926a72007-04-26 15:48:28 -0700170 /* look through the service's keyring */
171 kref = keyring_search(make_key_ref(rx->securities, 1UL),
David Howellsdcf49db2019-06-26 21:02:32 +0100172 &key_type_rxrpc_s, kdesc, true);
David Howells17926a72007-04-26 15:48:28 -0700173 if (IS_ERR(kref)) {
David Howellsec832bd2020-09-16 08:00:44 +0100174 key = ERR_CAST(kref);
175 goto out;
176 }
177
178 key = key_ref_to_ptr(kref);
179
180 ret = key_validate(key);
181 if (ret < 0) {
182 key_put(key);
183 key = ERR_PTR(ret);
184 goto out;
David Howells17926a72007-04-26 15:48:28 -0700185 }
186
David Howells063c60d2019-12-20 16:17:16 +0000187out:
David Howellsec832bd2020-09-16 08:00:44 +0100188 rcu_read_unlock();
189 return key;
David Howells17926a72007-04-26 15:48:28 -0700190}