David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1 | /* RxRPC security handling |
| 2 | * |
| 3 | * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. |
| 4 | * Written by David Howells (dhowells@redhat.com) |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | */ |
| 11 | |
| 12 | #include <linux/module.h> |
| 13 | #include <linux/net.h> |
| 14 | #include <linux/skbuff.h> |
| 15 | #include <linux/udp.h> |
| 16 | #include <linux/crypto.h> |
| 17 | #include <net/sock.h> |
| 18 | #include <net/af_rxrpc.h> |
David Howells | 3394128 | 2009-09-14 01:17:35 +0000 | [diff] [blame] | 19 | #include <keys/rxrpc-type.h> |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 20 | #include "ar-internal.h" |
| 21 | |
| 22 | static LIST_HEAD(rxrpc_security_methods); |
| 23 | static DECLARE_RWSEM(rxrpc_security_sem); |
| 24 | |
David Howells | 648af7f | 2016-04-07 17:23:51 +0100 | [diff] [blame] | 25 | static const struct rxrpc_security *rxrpc_security_types[] = { |
David Howells | e0e4d82 | 2016-04-07 17:23:58 +0100 | [diff] [blame] | 26 | [RXRPC_SECURITY_NONE] = &rxrpc_no_security, |
David Howells | 648af7f | 2016-04-07 17:23:51 +0100 | [diff] [blame] | 27 | #ifdef CONFIG_RXKAD |
| 28 | [RXRPC_SECURITY_RXKAD] = &rxkad, |
| 29 | #endif |
| 30 | }; |
| 31 | |
| 32 | int __init rxrpc_init_security(void) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 33 | { |
David Howells | 648af7f | 2016-04-07 17:23:51 +0100 | [diff] [blame] | 34 | int i, ret; |
| 35 | |
| 36 | for (i = 0; i < ARRAY_SIZE(rxrpc_security_types); i++) { |
| 37 | if (rxrpc_security_types[i]) { |
| 38 | ret = rxrpc_security_types[i]->init(); |
| 39 | if (ret < 0) |
| 40 | goto failed; |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | return 0; |
| 45 | |
| 46 | failed: |
| 47 | for (i--; i >= 0; i--) |
| 48 | if (rxrpc_security_types[i]) |
| 49 | rxrpc_security_types[i]->exit(); |
| 50 | return ret; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 51 | } |
| 52 | |
David Howells | 648af7f | 2016-04-07 17:23:51 +0100 | [diff] [blame] | 53 | void rxrpc_exit_security(void) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 54 | { |
David Howells | 648af7f | 2016-04-07 17:23:51 +0100 | [diff] [blame] | 55 | int i; |
| 56 | |
| 57 | for (i = 0; i < ARRAY_SIZE(rxrpc_security_types); i++) |
| 58 | if (rxrpc_security_types[i]) |
| 59 | rxrpc_security_types[i]->exit(); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | /* |
| 63 | * look up an rxrpc security module |
| 64 | */ |
David Howells | 648af7f | 2016-04-07 17:23:51 +0100 | [diff] [blame] | 65 | static const struct rxrpc_security *rxrpc_security_lookup(u8 security_index) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 66 | { |
David Howells | 648af7f | 2016-04-07 17:23:51 +0100 | [diff] [blame] | 67 | if (security_index >= ARRAY_SIZE(rxrpc_security_types)) |
| 68 | return NULL; |
| 69 | return rxrpc_security_types[security_index]; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 70 | } |
| 71 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 72 | /* |
| 73 | * initialise the security on a client connection |
| 74 | */ |
| 75 | int rxrpc_init_client_conn_security(struct rxrpc_connection *conn) |
| 76 | { |
David Howells | 648af7f | 2016-04-07 17:23:51 +0100 | [diff] [blame] | 77 | const struct rxrpc_security *sec; |
David Howells | 3394128 | 2009-09-14 01:17:35 +0000 | [diff] [blame] | 78 | struct rxrpc_key_token *token; |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 79 | struct key *key = conn->params.key; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 80 | int ret; |
| 81 | |
| 82 | _enter("{%d},{%x}", conn->debug_id, key_serial(key)); |
| 83 | |
| 84 | if (!key) |
| 85 | return 0; |
| 86 | |
| 87 | ret = key_validate(key); |
| 88 | if (ret < 0) |
| 89 | return ret; |
| 90 | |
David Howells | 146aa8b | 2015-10-21 14:04:48 +0100 | [diff] [blame] | 91 | token = key->payload.data[0]; |
| 92 | if (!token) |
David Howells | 3394128 | 2009-09-14 01:17:35 +0000 | [diff] [blame] | 93 | return -EKEYREJECTED; |
David Howells | 3394128 | 2009-09-14 01:17:35 +0000 | [diff] [blame] | 94 | |
| 95 | sec = rxrpc_security_lookup(token->security_index); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 96 | if (!sec) |
| 97 | return -EKEYREJECTED; |
| 98 | conn->security = sec; |
| 99 | |
| 100 | ret = conn->security->init_connection_security(conn); |
| 101 | if (ret < 0) { |
David Howells | e0e4d82 | 2016-04-07 17:23:58 +0100 | [diff] [blame] | 102 | conn->security = &rxrpc_no_security; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 103 | return ret; |
| 104 | } |
| 105 | |
| 106 | _leave(" = 0"); |
| 107 | return 0; |
| 108 | } |
| 109 | |
| 110 | /* |
| 111 | * initialise the security on a server connection |
| 112 | */ |
| 113 | int rxrpc_init_server_conn_security(struct rxrpc_connection *conn) |
| 114 | { |
David Howells | 648af7f | 2016-04-07 17:23:51 +0100 | [diff] [blame] | 115 | const struct rxrpc_security *sec; |
David Howells | 85f3227 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 116 | struct rxrpc_local *local = conn->params.local; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 117 | struct rxrpc_sock *rx; |
| 118 | struct key *key; |
| 119 | key_ref_t kref; |
David Howells | b4f1342 | 2016-03-04 15:56:19 +0000 | [diff] [blame] | 120 | char kdesc[5 + 1 + 3 + 1]; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 121 | |
| 122 | _enter(""); |
| 123 | |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 124 | sprintf(kdesc, "%u:%u", conn->params.service_id, conn->security_ix); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 125 | |
| 126 | sec = rxrpc_security_lookup(conn->security_ix); |
| 127 | if (!sec) { |
| 128 | _leave(" = -ENOKEY [lookup]"); |
| 129 | return -ENOKEY; |
| 130 | } |
| 131 | |
| 132 | /* find the service */ |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 133 | read_lock(&local->services_lock); |
David Howells | 1e9e5c9 | 2016-09-29 22:37:15 +0100 | [diff] [blame] | 134 | rx = rcu_dereference_protected(local->service, |
| 135 | lockdep_is_held(&local->services_lock)); |
| 136 | if (rx && rx->srx.srx_service == conn->params.service_id) |
| 137 | goto found_service; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 138 | |
| 139 | /* the service appears to have died */ |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 140 | read_unlock(&local->services_lock); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 141 | _leave(" = -ENOENT"); |
| 142 | return -ENOENT; |
| 143 | |
| 144 | found_service: |
| 145 | if (!rx->securities) { |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 146 | read_unlock(&local->services_lock); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 147 | _leave(" = -ENOKEY"); |
| 148 | return -ENOKEY; |
| 149 | } |
| 150 | |
| 151 | /* look through the service's keyring */ |
| 152 | kref = keyring_search(make_key_ref(rx->securities, 1UL), |
| 153 | &key_type_rxrpc_s, kdesc); |
| 154 | if (IS_ERR(kref)) { |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 155 | read_unlock(&local->services_lock); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 156 | _leave(" = %ld [search]", PTR_ERR(kref)); |
| 157 | return PTR_ERR(kref); |
| 158 | } |
| 159 | |
| 160 | key = key_ref_to_ptr(kref); |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 161 | read_unlock(&local->services_lock); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 162 | |
| 163 | conn->server_key = key; |
| 164 | conn->security = sec; |
| 165 | |
| 166 | _leave(" = 0"); |
| 167 | return 0; |
| 168 | } |