forked from msktutil/msktutil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkrb5wrap.h
278 lines (224 loc) · 8.41 KB
/
krb5wrap.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
/*
*----------------------------------------------------------------------------
*
* krb5wrap.h
*
* (C) 2004-2006 Dan Perry (dperry@pppl.gov)
* (C) 2006 Brian Elliott Finley (finley@anl.gov)
* (C) 2009-2010 Doug Engert (deengert@anl.gov)
* (C) 2010 James Y Knight (foom@fuhm.net)
* (C) 2010-2013 Ken Dreyer <ktdreyer at ktdreyer.com>
* (C) 2012-2017 Mark Proehl <mark at mproehl.net>
* (C) 2012-2017 Olaf Flebbe <of at oflebbe.de>
* (C) 2013-2017 Daniel Kobras <d.kobras at science-computing.de>
*
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*-----------------------------------------------------------------------------
*/
extern krb5_context g_context;
void krb5_error_exit( const char *func, int err_code);
void krb5_warn( const char *func, int err_code);
void
initialize_g_context();
void
destroy_g_context();
class KRB5Principal;
class KRB5Keytab {
krb5_keytab m_keytab;
// make it non copyable
KRB5Keytab(const KRB5Keytab&);
const KRB5Keytab& operator=(const KRB5Keytab&);
public:
KRB5Keytab(const std::string &keytab_name) : m_keytab() {
krb5_error_code ret = krb5_kt_resolve(g_context, keytab_name.c_str(), &m_keytab);
if (ret) {
throw KRB5Exception("krb5_kt_resolve", ret);
}
}
~KRB5Keytab() {
krb5_error_code ret = krb5_kt_close(g_context, m_keytab);
if (ret) {
krb5_warn("krb5_kt_close", ret);
}
}
void addEntry(const KRB5Principal &princ, krb5_kvno kvno, krb5_keyblock &keyblock);
void addEntry(const KRB5Principal &princ, krb5_kvno kvno, krb5_enctype enctype,
const std::string &password, const std::string &salt);
void removeEntry(const KRB5Principal &princ, krb5_kvno kvno, krb5_enctype enctype);
krb5_keytab get() { return m_keytab; }
/* Defined below... */
class cursor;
};
class KRB5Creds {
krb5_creds m_creds;
// make it non copyable
KRB5Creds(const KRB5Creds&);
const KRB5Creds& operator=(const KRB5Creds&);
public:
KRB5Creds() : m_creds() {}
KRB5Creds(KRB5Principal &principal, KRB5Keytab &keytab, const char *tkt_service=NULL);
KRB5Creds(KRB5Principal &principal, const std::string &password, const char *tkt_service=NULL);
~KRB5Creds() {
krb5_free_cred_contents(g_context, &m_creds);
memset(&m_creds, 0, sizeof(m_creds));
}
krb5_creds *get() { return &m_creds; }
void move_from(KRB5Creds &other) {
m_creds = other.m_creds;
memset(&other.m_creds, 0, sizeof(m_creds));
}
};
class KRB5CCache {
krb5_ccache m_ccache;
// make it non copyable
KRB5CCache(const KRB5CCache&);
const KRB5CCache& operator=(const KRB5CCache&);
public:
static const char *defaultName() {
return krb5_cc_default_name(g_context);
}
KRB5CCache(const char *cc_name) : m_ccache() {
krb5_error_code ret = krb5_cc_resolve(g_context, cc_name, &m_ccache);
if (ret)
throw KRB5Exception("krb5_cc_resolve", ret);
}
~KRB5CCache() {
krb5_cc_close(g_context, m_ccache);
}
krb5_ccache get() { return m_ccache; }
void initialize(KRB5Principal &principal);
void store(KRB5Creds &creds);
};
class KRB5Principal {
friend class KRB5Keytab::cursor;
krb5_principal m_princ;
KRB5Principal() : m_princ() {}
void reset_no_free(krb5_principal princ) {
m_princ = princ;
}
// make it non copyable
KRB5Principal(const KRB5Principal&);
const KRB5Principal& operator=(const KRB5Principal&);
public:
KRB5Principal(krb5_principal princ_raw) : m_princ(princ_raw) {}
KRB5Principal(KRB5CCache &ccache) : m_princ() {
krb5_error_code ret = krb5_cc_get_principal(g_context, ccache.get(), &m_princ);
if (ret)
throw KRB5Exception("krb5_cc_get_principal", ret);
}
KRB5Principal(std::string principal_name) : m_princ() {
krb5_error_code ret = krb5_parse_name(g_context, principal_name.c_str(), &m_princ);
if (ret)
throw KRB5Exception("krb5_parse_name", ret);
}
~KRB5Principal() {
if (m_princ)
krb5_free_principal(g_context, m_princ);
}
krb5_principal get() const { return m_princ; }
std::string name();
};
class KRB5Keytab::cursor {
KRB5Keytab &m_keytab;
krb5_kt_cursor m_cursor;
krb5_keytab_entry m_entry;
/* Duplicates part of entry, but oh well. */
KRB5Principal m_princ;
// make it non copyable
cursor(const cursor&);
const cursor& operator=(const cursor&);
bool m_ok;
public:
cursor(KRB5Keytab &keytab);
~cursor();
bool next();
void reset();
KRB5Principal &principal() { return m_princ; }
krb5_kvno kvno() const { return m_entry.vno; }
krb5_enctype enctype() const {
#ifdef HEIMDAL
return static_cast<krb5_enctype>(m_entry.keyblock.keytype);
#else
return m_entry.key.enctype;
#endif
}
krb5_timestamp timestamp() const { return m_entry.timestamp; }
krb5_keyblock key() const {
#ifdef HEIMDAL
return m_entry.keyblock;
#else
return m_entry.key;
#endif
}
};
class KRB5KeytabEntry {
private:
std::string m_principal;
krb5_timestamp m_timestamp;
krb5_kvno m_kvno;
krb5_enctype m_enctype;
krb5_keyblock m_keyblock;
public:
KRB5KeytabEntry(krb5_principal principal,
krb5_timestamp timestamp,
krb5_kvno kvno,
krb5_enctype enctype,
krb5_keyblock keyblock) : m_principal(KRB5Principal(principal).name()),
m_timestamp(timestamp),
m_kvno(kvno),
m_enctype(enctype),
m_keyblock(keyblock) {
krb5_error_code ret = krb5_copy_keyblock_contents(g_context, &keyblock, &m_keyblock);
if (ret) {
throw KRB5Exception("krb5_copy_keyblock_contents", ret);
}
};
KRB5KeytabEntry(KRB5Keytab::cursor& cursor) : m_principal(cursor.principal().name()),
m_timestamp(cursor.timestamp()),
m_kvno(cursor.kvno()),
m_enctype(cursor.enctype()),
m_keyblock(cursor.key()) {
krb5_keyblock tmp = cursor.key();
krb5_error_code ret = krb5_copy_keyblock_contents(g_context, &tmp, &m_keyblock);
if (ret) {
throw KRB5Exception("krb5_copy_keyblock_contents", ret);
}
};
const KRB5KeytabEntry& operator=(const KRB5KeytabEntry& keytab_entry) {
m_principal = keytab_entry.m_principal;
m_timestamp = keytab_entry.m_timestamp;
m_kvno = keytab_entry.m_kvno;
m_enctype = keytab_entry.m_enctype;
m_keyblock = keytab_entry.m_keyblock;
krb5_error_code ret = krb5_copy_keyblock_contents(g_context,
&keytab_entry.m_keyblock,
&m_keyblock);
if (ret) {
throw KRB5Exception("krb5_copy_keyblock_contents", ret);
}
return *this;
};
KRB5KeytabEntry(const KRB5KeytabEntry &keytab_entry) {
(void) operator=(keytab_entry);
};
~KRB5KeytabEntry() { krb5_free_keyblock_contents(g_context, &m_keyblock); };
std::string principal() { return m_principal; };
krb5_timestamp timestamp() { return m_timestamp; };
krb5_kvno kvno() { return m_kvno; };
krb5_enctype enctype() { return m_enctype; };
krb5_keyblock keyblock() { return m_keyblock; };
bool operator < (const KRB5KeytabEntry& other) const {
return m_timestamp < other.m_timestamp;
};
};