1 /* RxRPC security handling
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
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.
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>
18 #include <net/af_rxrpc.h>
19 #include <keys/rxrpc-type.h>
20 #include "ar-internal.h"
22 static LIST_HEAD(rxrpc_security_methods
);
23 static DECLARE_RWSEM(rxrpc_security_sem
);
25 static const struct rxrpc_security
*rxrpc_security_types
[] = {
26 [RXRPC_SECURITY_NONE
] = &rxrpc_no_security
,
28 [RXRPC_SECURITY_RXKAD
] = &rxkad
,
32 int __init
rxrpc_init_security(void)
36 for (i
= 0; i
< ARRAY_SIZE(rxrpc_security_types
); i
++) {
37 if (rxrpc_security_types
[i
]) {
38 ret
= rxrpc_security_types
[i
]->init();
47 for (i
--; i
>= 0; i
--)
48 if (rxrpc_security_types
[i
])
49 rxrpc_security_types
[i
]->exit();
53 void rxrpc_exit_security(void)
57 for (i
= 0; i
< ARRAY_SIZE(rxrpc_security_types
); i
++)
58 if (rxrpc_security_types
[i
])
59 rxrpc_security_types
[i
]->exit();
63 * look up an rxrpc security module
65 static const struct rxrpc_security
*rxrpc_security_lookup(u8 security_index
)
67 if (security_index
>= ARRAY_SIZE(rxrpc_security_types
))
69 return rxrpc_security_types
[security_index
];
73 * initialise the security on a client connection
75 int rxrpc_init_client_conn_security(struct rxrpc_connection
*conn
)
77 const struct rxrpc_security
*sec
;
78 struct rxrpc_key_token
*token
;
79 struct key
*key
= conn
->params
.key
;
82 _enter("{%d},{%x}", conn
->debug_id
, key_serial(key
));
87 ret
= key_validate(key
);
91 token
= key
->payload
.data
[0];
95 sec
= rxrpc_security_lookup(token
->security_index
);
100 ret
= conn
->security
->init_connection_security(conn
);
102 conn
->security
= &rxrpc_no_security
;
111 * initialise the security on a server connection
113 int rxrpc_init_server_conn_security(struct rxrpc_connection
*conn
)
115 const struct rxrpc_security
*sec
;
116 struct rxrpc_local
*local
= conn
->params
.local
;
117 struct rxrpc_sock
*rx
;
120 char kdesc
[5 + 1 + 3 + 1];
124 sprintf(kdesc
, "%u:%u", conn
->service_id
, conn
->security_ix
);
126 sec
= rxrpc_security_lookup(conn
->security_ix
);
128 _leave(" = -ENOKEY [lookup]");
132 /* find the service */
133 read_lock(&local
->services_lock
);
134 rx
= rcu_dereference_protected(local
->service
,
135 lockdep_is_held(&local
->services_lock
));
136 if (rx
&& (rx
->srx
.srx_service
== conn
->service_id
||
137 rx
->second_service
== conn
->service_id
))
140 /* the service appears to have died */
141 read_unlock(&local
->services_lock
);
142 _leave(" = -ENOENT");
146 if (!rx
->securities
) {
147 read_unlock(&local
->services_lock
);
148 _leave(" = -ENOKEY");
152 /* look through the service's keyring */
153 kref
= keyring_search(make_key_ref(rx
->securities
, 1UL),
154 &key_type_rxrpc_s
, kdesc
);
156 read_unlock(&local
->services_lock
);
157 _leave(" = %ld [search]", PTR_ERR(kref
));
158 return PTR_ERR(kref
);
161 key
= key_ref_to_ptr(kref
);
162 read_unlock(&local
->services_lock
);
164 conn
->server_key
= key
;
165 conn
->security
= sec
;