2010-02-02 16:25:35 -08:00
|
|
|
#ifndef _FS_CEPH_AUTH_X_H
|
|
|
|
#define _FS_CEPH_AUTH_X_H
|
|
|
|
|
|
|
|
#include <linux/rbtree.h>
|
|
|
|
|
2010-04-06 15:14:15 -07:00
|
|
|
#include <linux/ceph/auth.h>
|
|
|
|
|
2010-02-02 16:25:35 -08:00
|
|
|
#include "crypto.h"
|
|
|
|
#include "auth_x_protocol.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Handle ticket for a single service.
|
|
|
|
*/
|
|
|
|
struct ceph_x_ticket_handler {
|
|
|
|
struct rb_node node;
|
2012-04-15 05:58:06 +00:00
|
|
|
unsigned int service;
|
2010-02-02 16:25:35 -08:00
|
|
|
|
|
|
|
struct ceph_crypto_key session_key;
|
2016-01-14 16:35:35 +01:00
|
|
|
bool have_key;
|
2010-02-02 16:25:35 -08:00
|
|
|
|
|
|
|
u64 secret_id;
|
|
|
|
struct ceph_buffer *ticket_blob;
|
|
|
|
|
|
|
|
unsigned long renew_after, expires;
|
|
|
|
};
|
|
|
|
|
2016-12-02 16:35:07 +01:00
|
|
|
#define CEPHX_AU_ENC_BUF_LEN 128 /* big enough for encrypted blob */
|
2010-02-02 16:25:35 -08:00
|
|
|
|
|
|
|
struct ceph_x_authorizer {
|
2016-04-11 19:34:49 +02:00
|
|
|
struct ceph_authorizer base;
|
2014-11-04 16:32:35 +08:00
|
|
|
struct ceph_crypto_key session_key;
|
2010-02-02 16:25:35 -08:00
|
|
|
struct ceph_buffer *buf;
|
2012-04-15 05:58:06 +00:00
|
|
|
unsigned int service;
|
2010-02-02 16:25:35 -08:00
|
|
|
u64 nonce;
|
2013-03-25 10:26:01 -07:00
|
|
|
u64 secret_id;
|
2016-12-02 16:35:07 +01:00
|
|
|
char enc_buf[CEPHX_AU_ENC_BUF_LEN] __aligned(8);
|
2010-02-02 16:25:35 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ceph_x_info {
|
|
|
|
struct ceph_crypto_key secret;
|
|
|
|
|
|
|
|
bool starting;
|
|
|
|
u64 server_challenge;
|
|
|
|
|
2012-04-15 05:58:06 +00:00
|
|
|
unsigned int have_keys;
|
2010-02-02 16:25:35 -08:00
|
|
|
struct rb_root ticket_handlers;
|
|
|
|
|
|
|
|
struct ceph_x_authorizer auth_authorizer;
|
|
|
|
};
|
|
|
|
|
2013-10-18 13:48:22 -07:00
|
|
|
int ceph_x_init(struct ceph_auth_client *ac);
|
2010-02-02 16:25:35 -08:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|