phy: mdio-octeon: Use devm_mdiobus_alloc_size()
[linux-2.6/btrfs-unstable.git] / net / ceph / auth_x.h
blobe8b7c6917d472f69d356252415efcb76a4afd3cf
1 #ifndef _FS_CEPH_AUTH_X_H
2 #define _FS_CEPH_AUTH_X_H
4 #include <linux/rbtree.h>
6 #include <linux/ceph/auth.h>
8 #include "crypto.h"
9 #include "auth_x_protocol.h"
12 * Handle ticket for a single service.
14 struct ceph_x_ticket_handler {
15 struct rb_node node;
16 unsigned int service;
18 struct ceph_crypto_key session_key;
19 struct ceph_timespec validity;
21 u64 secret_id;
22 struct ceph_buffer *ticket_blob;
24 unsigned long renew_after, expires;
28 struct ceph_x_authorizer {
29 struct ceph_crypto_key session_key;
30 struct ceph_buffer *buf;
31 unsigned int service;
32 u64 nonce;
33 u64 secret_id;
34 char reply_buf[128]; /* big enough for encrypted blob */
37 struct ceph_x_info {
38 struct ceph_crypto_key secret;
40 bool starting;
41 u64 server_challenge;
43 unsigned int have_keys;
44 struct rb_root ticket_handlers;
46 struct ceph_x_authorizer auth_authorizer;
49 int ceph_x_init(struct ceph_auth_client *ac);
51 #endif