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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
use std::{
collections::VecDeque,
convert::{TryFrom, TryInto},
pin::Pin,
sync::{
atomic::{AtomicBool, AtomicU32, Ordering},
Arc,
},
task::{Context, Poll},
};
use futures::{future::BoxFuture, Future, Stream, TryStreamExt};
use parking_lot::RwLock;
use rasn_ldap::{
AuthenticationChoice, BindRequest, BindResponse, Controls, ExtendedRequest, LdapMessage, LdapResult, ProtocolOp,
ResultCode, SaslCredentials, SearchResultDone, UnbindRequest,
};
use crate::{
conn::{LdapConnection, MessageStream},
controls::SimplePagedResultsControl,
error::Error,
oid,
options::TlsOptions,
request::SearchRequest,
Attribute, ModifyRequest, SearchEntry,
};
pub type Result<T> = std::result::Result<T, Error>;
fn check_result(result: LdapResult) -> Result<()> {
if result.result_code == ResultCode::Success || result.result_code == ResultCode::SaslBindInProgress {
Ok(())
} else {
Err(Error::OperationFailed(result.into()))
}
}
pub struct LdapClientBuilder {
address: String,
port: u16,
tls_options: TlsOptions,
}
impl LdapClientBuilder {
pub fn port(mut self, port: u16) -> Self {
self.port = port;
self
}
pub fn tls_options(mut self, options: TlsOptions) -> Self {
self.tls_options = options;
self
}
pub async fn connect(self) -> Result<LdapClient> {
LdapClient::connect(self.address, self.port, self.tls_options).await
}
}
#[derive(Clone)]
pub struct LdapClient {
connection: LdapConnection,
id_counter: Arc<AtomicU32>,
}
impl LdapClient {
pub fn builder<A: AsRef<str>>(address: A) -> LdapClientBuilder {
LdapClientBuilder {
address: address.as_ref().to_owned(),
port: 389,
tls_options: TlsOptions::plain(),
}
}
pub(crate) async fn connect<A>(address: A, port: u16, tls_options: TlsOptions) -> Result<Self>
where
A: AsRef<str>,
{
let connection = LdapConnection::connect(address, port, tls_options).await?;
Ok(Self {
connection,
id_counter: Arc::new(AtomicU32::new(2)),
})
}
fn new_id(&self) -> u32 {
self.id_counter.fetch_add(1, Ordering::SeqCst)
}
async fn do_bind(&mut self, req: BindRequest) -> Result<BindResponse> {
let id = self.new_id();
let msg = LdapMessage::new(id, ProtocolOp::BindRequest(req));
let item = self.connection.send_recv(msg).await?;
match item.protocol_op {
ProtocolOp::BindResponse(resp) => {
let result = resp.clone();
check_result(LdapResult::new(
resp.result_code,
resp.matched_dn,
resp.diagnostic_message,
))?;
Ok(result)
}
_ => Err(Error::InvalidResponse),
}
}
fn new_sasl_bind_req(&self, mech: &str, creds: Option<&[u8]>) -> BindRequest {
let auth_choice = AuthenticationChoice::Sasl(SaslCredentials::new(
mech.as_bytes().to_vec().into(),
creds.map(|c| c.to_vec().into()),
));
BindRequest::new(3, Default::default(), auth_choice)
}
pub async fn simple_bind<U, P>(&mut self, username: U, password: P) -> Result<()>
where
U: AsRef<str>,
P: AsRef<str>,
{
let auth_choice = AuthenticationChoice::Simple(password.as_ref().to_owned().into());
let req = BindRequest::new(3, username.as_ref().to_owned().into(), auth_choice);
self.do_bind(req).await?;
Ok(())
}
pub async fn sasl_external_bind(&mut self) -> Result<()> {
let req = self.new_sasl_bind_req("EXTERNAL", None);
self.do_bind(req).await?;
Ok(())
}
#[cfg(feature = "gssapi")]
pub async fn sasl_gssapi_bind<S: AsRef<str>>(&mut self, realm: S) -> Result<()> {
use cross_krb5::{ClientCtx, InitiateFlags, K5Ctx, Step};
const SASL_RECV_MAX_SIZE: u32 = 0x0200_0000;
let spn = format!("ldap/{}", realm.as_ref());
let (client_ctx, token) =
ClientCtx::new(InitiateFlags::empty(), None, &spn, None).map_err(|e| Error::GssApiError(e.to_string()))?;
let req = self.new_sasl_bind_req("GSSAPI", Some(token.as_ref()));
let response = self.do_bind(req).await?;
let token = match response.server_sasl_creds {
Some(token) => token,
_ => return Err(Error::NoSaslCredentials),
};
let step = client_ctx
.step(&token)
.map_err(|e| Error::GssApiError(format!("{}", e)))?;
let mut client_ctx = match step {
Step::Finished((ctx, None)) => ctx,
_ => {
return Err(Error::GssApiError(
"GSSAPI exchange not finished or has an additional token".to_owned(),
))
}
};
let req = self.new_sasl_bind_req("GSSAPI", None);
let response = self.do_bind(req).await?;
if response.server_sasl_creds.is_none() {
return Err(Error::NoSaslCredentials);
}
let recv_max_size = SASL_RECV_MAX_SIZE.to_be_bytes();
let size_msg = client_ctx
.wrap(true, &recv_max_size)
.map_err(|e| Error::GssApiError(format!("{}", e)))?;
let req = self.new_sasl_bind_req("GSSAPI", Some(size_msg.as_ref()));
self.do_bind(req).await?;
Ok(())
}
pub async fn unbind(&mut self) -> Result<()> {
let id = self.new_id();
let msg = LdapMessage::new(id, ProtocolOp::UnbindRequest(UnbindRequest));
self.connection.send(msg).await?;
Ok(())
}
pub async fn whoami(&mut self) -> Result<Option<String>> {
let id = self.new_id();
let msg = LdapMessage::new(
id,
ProtocolOp::ExtendedReq(ExtendedRequest {
request_name: oid::WHOAMI_OID.into(),
request_value: None,
}),
);
let resp = self.connection.send_recv(msg).await?;
match resp.protocol_op {
ProtocolOp::ExtendedResp(resp) => {
check_result(LdapResult::new(
resp.result_code,
resp.matched_dn,
resp.diagnostic_message,
))?;
Ok(resp.response_value.map(|v| String::from_utf8_lossy(&v).into_owned()))
}
_ => Err(Error::InvalidResponse),
}
}
pub async fn search(&mut self, request: SearchRequest) -> Result<SearchEntries> {
let id = self.new_id();
let msg = LdapMessage::new(id, ProtocolOp::SearchRequest(request.into()));
let stream = self.connection.send_recv_stream(msg).await?;
Ok(SearchEntries {
inner: stream,
page_control: None,
page_finished: Arc::new(AtomicBool::new(false)),
})
}
pub async fn search_one(&mut self, request: SearchRequest) -> Result<Option<SearchEntry>> {
let entries = self.search(request).await?;
let mut attrs = entries.try_collect::<VecDeque<_>>().await?;
Ok(attrs.pop_front())
}
pub fn search_paged(&mut self, request: SearchRequest, page_size: u32) -> Pages {
Pages {
page_control: Arc::new(RwLock::new(SimplePagedResultsControl::new(page_size))),
page_finished: Arc::new(AtomicBool::new(true)),
client: self.clone(),
request,
page_size,
inner: None,
}
}
pub async fn modify(&mut self, request: ModifyRequest) -> Result<()> {
let id = self.new_id();
let msg = LdapMessage::new(id, ProtocolOp::ModifyRequest(request.into()));
let resp = self.connection.send_recv(msg).await?;
match resp.protocol_op {
ProtocolOp::ModifyResponse(resp) => {
check_result(LdapResult::new(
resp.0.result_code,
resp.0.matched_dn,
resp.0.diagnostic_message,
))?;
Ok(())
}
_ => Err(Error::InvalidResponse),
}
}
pub async fn add<S, I>(&mut self, dn: S, attributes: I) -> Result<()>
where
S: AsRef<str>,
I: IntoIterator<Item = Attribute>,
{
let id = self.new_id();
let msg = LdapMessage::new(
id,
ProtocolOp::AddRequest(rasn_ldap::AddRequest {
entry: dn.as_ref().to_owned().into_bytes().into(),
attributes: attributes.into_iter().map(Into::into).collect(),
}),
);
let resp = self.connection.send_recv(msg).await?;
match resp.protocol_op {
ProtocolOp::AddResponse(resp) => {
check_result(LdapResult::new(
resp.0.result_code,
resp.0.matched_dn,
resp.0.diagnostic_message,
))?;
Ok(())
}
_ => Err(Error::InvalidResponse),
}
}
pub async fn delete<S: AsRef<str>>(&mut self, dn: S) -> Result<()> {
let id = self.new_id();
let msg = LdapMessage::new(
id,
ProtocolOp::DelRequest(rasn_ldap::DelRequest(dn.as_ref().to_owned().into_bytes().into())),
);
let resp = self.connection.send_recv(msg).await?;
match resp.protocol_op {
ProtocolOp::DelResponse(resp) => {
check_result(LdapResult::new(
resp.0.result_code,
resp.0.matched_dn,
resp.0.diagnostic_message,
))?;
Ok(())
}
_ => Err(Error::InvalidResponse),
}
}
}
pub struct Pages {
page_control: Arc<RwLock<SimplePagedResultsControl>>,
page_finished: Arc<AtomicBool>,
client: LdapClient,
request: SearchRequest,
page_size: u32,
inner: Option<BoxFuture<'static, Result<SearchEntries>>>,
}
impl Pages {
fn is_page_finished(&self) -> bool {
self.page_finished.load(Ordering::SeqCst)
}
}
impl Stream for Pages {
type Item = Result<SearchEntries>;
fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
if !self.page_control.read().has_entries() {
return Poll::Ready(None);
}
if self.inner.is_none() {
if !self.is_page_finished() {
return Poll::Ready(None);
}
let mut client = self.client.clone();
let request = self.request.clone();
let control_ref = self.page_control.clone();
let page_size = self.page_size;
let page_finished = self.page_finished.clone();
self.page_finished.store(false, Ordering::SeqCst);
let fut = async move {
let id = client.new_id();
let mut msg = LdapMessage::new(id, ProtocolOp::SearchRequest(request.into()));
msg.controls = Some(vec![control_ref.read().clone().with_size(page_size).try_into()?]);
let stream = client.connection.send_recv_stream(msg).await?;
Ok(SearchEntries {
inner: stream,
page_control: Some(control_ref),
page_finished,
})
};
self.inner = Some(Box::pin(fut));
}
match Pin::new(self.inner.as_mut().unwrap()).poll(cx) {
Poll::Pending => Poll::Pending,
Poll::Ready(Err(err)) => Poll::Ready(Some(Err(err))),
Poll::Ready(Ok(entries)) => {
self.inner = None;
Poll::Ready(Some(Ok(entries)))
}
}
}
}
pub struct SearchEntries {
inner: MessageStream,
page_control: Option<Arc<RwLock<SimplePagedResultsControl>>>,
page_finished: Arc<AtomicBool>,
}
impl SearchEntries {
fn search_done(
self: Pin<&mut Self>,
controls: Option<Controls>,
done: SearchResultDone,
) -> Poll<Option<Result<SearchEntry>>> {
self.page_finished.store(true, Ordering::SeqCst);
if done.0.result_code == ResultCode::Success {
if let Some(ref control_ref) = self.page_control {
let page_control = controls.and_then(|controls| {
controls
.into_iter()
.find(|c| c.control_type == SimplePagedResultsControl::OID)
.and_then(|c| SimplePagedResultsControl::try_from(c).ok())
});
if let Some(page_control) = page_control {
*control_ref.write() = page_control;
Poll::Ready(None)
} else {
Poll::Ready(Some(Err(Error::InvalidResponse)))
}
} else {
Poll::Ready(None)
}
} else {
Poll::Ready(Some(Err(Error::OperationFailed(done.0.into()))))
}
}
}
impl Stream for SearchEntries {
type Item = Result<SearchEntry>;
fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
loop {
let rc = match Pin::new(&mut self.inner).poll_next(cx) {
Poll::Pending => Poll::Pending,
Poll::Ready(None) => Poll::Ready(Some(Err(Error::ConnectionClosed))),
Poll::Ready(Some(msg)) => match msg.protocol_op {
ProtocolOp::SearchResEntry(item) => Poll::Ready(Some(Ok(item.into()))),
ProtocolOp::SearchResRef(_) => continue,
ProtocolOp::SearchResDone(done) => self.search_done(msg.controls, done),
_ => Poll::Ready(Some(Err(Error::InvalidResponse))),
},
};
return rc;
}
}
}