Source file oBus_auth.ml
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
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
let section = Lwt_log.Section.make "obus(auth)"
open Printf
open Lwt.Infix
type capability = [ `Unix_fd ]
let capabilities = [`Unix_fd]
let max_line_length = 42 * 1024
let max_reject = 42
exception Auth_failure of string
let auth_failure fmt = ksprintf (fun msg -> Lwt.fail (Auth_failure msg)) fmt
let () =
Printexc.register_printer
(function
| Auth_failure msg ->
Some(Printf.sprintf "D-Bus authentication failed: %s" msg)
| _ ->
None)
let hex_encode = OBus_util.hex_encode
let hex_decode str =
try
OBus_util.hex_decode str
with
| Invalid_argument _ -> failwith "invalid hex-encoded data"
type data = string
type client_command =
| Client_auth of (string * data option) option
| Client_cancel
| Client_begin
| Client_data of data
| Client_error of string
| Client_negotiate_unix_fd
type server_command =
| Server_rejected of string list
| Server_ok of OBus_address.guid
| Server_data of data
| Server_error of string
| Server_agree_unix_fd
module Cookie =
struct
type t = {
id : int32;
time : int64;
cookie : string;
}
let id c = c.id
let time c = c.time
let cookie c = c.cookie
end
module Keyring : sig
type context = string
(** A context for the SHA-1 method *)
val load : context -> Cookie.t list Lwt.t
(** [load context] load all cookies for context [context] *)
val save : context -> Cookie.t list -> unit Lwt.t
(** [save context cookies] save all cookies with context
[context] *)
end = struct
type context = string
let keyring_directory = lazy(
let%lwt homedir = Lazy.force OBus_util.homedir in
Lwt.return (Filename.concat homedir ".dbus-keyrings")
)
let keyring_file_name context =
let%lwt dir = Lazy.force keyring_directory in
Lwt.return (Filename.concat dir context)
let parse_line line =
Scanf.sscanf line "%ld %Ld %[a-fA-F0-9]"
(fun id time cookie -> { Cookie.id = id;
Cookie.time = time;
Cookie.cookie = cookie })
let print_line cookie =
sprintf "%ld %Ld %s" (Cookie.id cookie) (Cookie.time cookie) (Cookie.cookie cookie)
let load context =
let%lwt fname = keyring_file_name context in
if Sys.file_exists fname then
try%lwt
Lwt_stream.get_while (fun _ -> true) (Lwt_stream.map parse_line (Lwt_io.lines_of_file fname))
with exn ->
let%lwt fname = keyring_file_name context in
let%lwt () = Lwt_log.error_f ~exn ~section "failed to load cookie file %s" fname in
Lwt.fail exn
else
Lwt.return []
let lock_file fname =
let really_lock () =
Lwt_unix.openfile fname
[Unix.O_WRONLY;
Unix.O_EXCL;
Unix.O_CREAT] 0o600
>>= Lwt_unix.close
in
let rec aux = function
| 0 ->
let%lwt () =
try%lwt
let%lwt () = Lwt_unix.unlink fname in
Lwt_log.info_f ~section "stale lock file %s removed" fname
with Unix.Unix_error(error, _, _) as exn ->
let%lwt () = Lwt_log.error_f ~section "failed to remove stale lock file %s: %s" fname (Unix.error_message error) in
Lwt.fail exn
in
(try%lwt
really_lock ()
with Unix.Unix_error(error, _, _) as exn ->
let%lwt () = Lwt_log.error_f ~section "failed to lock file %s after removing it: %s" fname (Unix.error_message error) in
Lwt.fail exn)
| n ->
try%lwt
really_lock ()
with exn ->
let%lwt () = Lwt_log.info_f ~section "waiting for lock file (%d) %s" n fname in
let%lwt () = Lwt_unix.sleep 0.250 in
aux (n - 1)
in
aux 32
let unlock_file fname =
try%lwt
Lwt_unix.unlink fname
with Unix.Unix_error(error, _, _) as exn ->
let%lwt () = Lwt_log.error_f ~section "failed to unlink file %s: %s" fname (Unix.error_message error) in
Lwt.fail exn
let save context cookies =
let%lwt fname = keyring_file_name context in
let tmp_fname = fname ^ "." ^ hex_encode (OBus_util.random_string 8) in
let lock_fname = fname ^ ".lock" in
let%lwt dir = Lazy.force keyring_directory in
let%lwt () =
if not (Sys.file_exists dir) then begin
try%lwt
Lwt_unix.mkdir dir 0o700
with Unix.Unix_error(error, _, _) as exn ->
let%lwt () = Lwt_log.error_f ~section "failed to create directory %s with permissions 0600: %s" dir (Unix.error_message error) in
Lwt.fail exn
end else
Lwt.return ()
in
let%lwt () = lock_file lock_fname in begin
let%lwt () =
try%lwt
Lwt_io.lines_to_file tmp_fname (Lwt_stream.map print_line (Lwt_stream.of_list cookies))
with exn ->
let%lwt () = Lwt_log.error_f ~exn ~section "unable to write temporary keyring file %s" tmp_fname in
Lwt.fail exn
in
try
Lwt_unix.rename tmp_fname fname
with Unix.Unix_error(error, _, _) as exn ->
let%lwt () = Lwt_log.error_f ~section "unable to rename file %s to %s: %s" tmp_fname fname (Unix.error_message error) in
Lwt.fail exn
end
[%lwt.finally
unlock_file lock_fname]
end
type stream = {
recv : unit -> string Lwt.t;
send : string -> unit Lwt.t;
}
let make_stream ~recv ~send = {
recv = (fun () ->
try%lwt
recv ()
with
| Auth_failure _ as exn ->
Lwt.fail exn
| End_of_file ->
Lwt.fail (Auth_failure("input: premature end of input"))
| exn ->
Lwt.fail (Auth_failure("input: " ^ Printexc.to_string exn)));
send = (fun line ->
try%lwt
send line
with
| Auth_failure _ as exn ->
Lwt.fail exn
| exn ->
Lwt.fail (Auth_failure("output: " ^ Printexc.to_string exn)));
}
let stream_of_channels (ic, oc) =
make_stream
~recv:(fun () ->
let buf = Buffer.create 42 in
let rec loop last =
if Buffer.length buf > max_line_length then
Lwt.fail (Auth_failure "input: line too long")
else
Lwt_io.read_char_opt ic >>= function
| None ->
Lwt.fail (Auth_failure "input: premature end of input")
| Some ch ->
Buffer.add_char buf ch;
if last = '\r' && ch = '\n' then
Lwt.return (Buffer.contents buf)
else
loop ch
in
loop '\x00')
~send:(fun line ->
let%lwt () = Lwt_io.write oc line in
Lwt_io.flush oc)
let stream_of_fd fd =
make_stream
~recv:(fun () ->
let buf = Buffer.create 42 and tmp = Bytes.create 1 in
let rec loop last =
if Buffer.length buf > max_line_length then
Lwt.fail (Auth_failure "input: line too long")
else
Lwt_unix.read fd tmp 0 1 >>= function
| 0 ->
Lwt.fail (Auth_failure "input: premature end of input")
| 1 ->
let ch = Bytes.get tmp 0 in
Buffer.add_char buf ch;
if last = '\r' && ch = '\n' then
Lwt.return (Buffer.contents buf)
else
loop ch
| n ->
assert false
in
loop '\x00')
~send:(fun line ->
let rec loop ofs len =
if len = 0 then
Lwt.return ()
else
Lwt_unix.write_string fd line ofs len >>= function
| 0 ->
Lwt.fail (Auth_failure "output: zero byte written")
| n ->
assert (n > 0 && n <= len);
loop (ofs + n) (len - n)
in
loop 0 (String.length line))
let send_line mode stream line =
ignore (Lwt_log.debug_f ~section "%s: sending: %S" mode line);
stream.send (line ^ "\r\n")
let rec recv_line stream =
let%lwt line = stream.recv () in
let len = String.length line in
if len < 2 || not (line.[len - 2] = '\r' && line.[len - 1] = '\n') then
Lwt.fail (Auth_failure("input: invalid line received"))
else
Lwt.return (String.sub line 0 (len - 2))
let rec first f str pos =
if pos = String.length str then
pos
else match f str.[pos] with
| true -> pos
| false -> first f str (pos + 1)
let rec last f str pos =
if pos = 0 then
pos
else match f str.[pos - 1] with
| true -> pos
| false -> first f str (pos - 1)
let blank ch = ch = ' ' || ch = '\t'
let not_blank ch = not (blank ch)
let sub_strip str i j =
let i = first not_blank str i in
let j = last not_blank str j in
if i < j then String.sub str i (j - i) else ""
let split str =
let rec aux i =
let i = first not_blank str i in
if i = String.length str then
[]
else
let j = first blank str i in
String.sub str i (j - i) :: aux j
in
aux 0
let preprocess_line line =
String.iter (function
| '\x01'..'\x7f' -> ()
| _ -> failwith "non-ascii characters in command") line;
let i = first blank line 0 in
if i = 0 then failwith "empty command";
(String.sub line 0 i, sub_strip line i (String.length line))
let rec recv mode command_parser stream =
let%lwt line = recv_line stream in
let%lwt () = Lwt_log.debug_f ~section "%s: received: %S" mode line in
match
try
let command, args = preprocess_line line in
`Success(command_parser command args)
with exn ->
`Failure(exn)
with
| `Success x -> Lwt.return x
| `Failure(Failure msg) ->
let%lwt () = send_line mode stream ("ERROR \"" ^ msg ^ "\"") in
recv mode command_parser stream
| `Failure exn -> Lwt.fail exn
let client_recv = recv "client"
(fun command args -> match command with
| "REJECTED" -> Server_rejected (split args)
| "OK" -> Server_ok(try OBus_uuid.of_string args with _ -> failwith "invalid hex-encoded guid")
| "DATA" -> Server_data(hex_decode args)
| "ERROR" -> Server_error args
| "AGREE_UNIX_FD" -> Server_agree_unix_fd
| _ -> failwith "invalid command")
let server_recv = recv "server"
(fun command args -> match command with
| "AUTH" -> Client_auth(match split args with
| [] -> None
| [mech] -> Some(mech, None)
| [mech; data] -> Some(mech, Some(hex_decode data))
| _ -> failwith "too many arguments")
| "CANCEL" -> Client_cancel
| "BEGIN" -> Client_begin
| "DATA" -> Client_data(hex_decode args)
| "ERROR" -> Client_error args
| "NEGOTIATE_UNIX_FD" -> Client_negotiate_unix_fd
| _ -> failwith "invalid command")
let client_send chans cmd = send_line "client" chans
(match cmd with
| Client_auth None -> "AUTH"
| Client_auth(Some(mechanism, None)) -> sprintf "AUTH %s" mechanism
| Client_auth(Some(mechanism, Some data)) -> sprintf "AUTH %s %s" mechanism (hex_encode data)
| Client_cancel -> "CANCEL"
| Client_begin -> "BEGIN"
| Client_data data -> sprintf "DATA %s" (hex_encode data)
| Client_error msg -> sprintf "ERROR \"%s\"" msg
| Client_negotiate_unix_fd -> "NEGOTIATE_UNIX_FD")
let server_send chans cmd = send_line "server" chans
(match cmd with
| Server_rejected mechs -> String.concat " " ("REJECTED" :: mechs)
| Server_ok guid -> sprintf "OK %s" (OBus_uuid.to_string guid)
| Server_data data -> sprintf "DATA %s" (hex_encode data)
| Server_error msg -> sprintf "ERROR \"%s\"" msg
| Server_agree_unix_fd -> "AGREE_UNIX_FD")
module Client =
struct
type mechanism_return =
| Mech_continue of data
| Mech_ok of data
| Mech_error of string
class virtual mechanism_handler = object
method virtual init : mechanism_return Lwt.t
method data (chall : data) = Lwt.return (Mech_error("no data expected for this mechanism"))
method abort = ()
end
type mechanism = {
mech_name : string;
mech_exec : unit -> mechanism_handler;
}
let mech_name m = m.mech_name
let mech_exec m = m.mech_exec
class mech_external_handler = object
inherit mechanism_handler
method init = Lwt.return (Mech_ok(string_of_int (Unix.getuid ())))
end
class mech_anonymous_handler = object
inherit mechanism_handler
method init = Lwt.return (Mech_ok("obus " ^ OBus_info.version))
end
class mech_dbus_cookie_sha1_handler = object
method init = Lwt.return (Mech_continue(string_of_int (Unix.getuid ())))
method data chal =
let%lwt () = Lwt_log.debug_f ~section "client: dbus_cookie_sha1: chal: %s" chal in
let context, id, chal = Scanf.sscanf chal "%[^/\\ \n\r.] %ld %[a-fA-F0-9]%!" (fun context id chal -> (context, id, chal)) in
let%lwt keyring = Keyring.load context in
let cookie =
try
List.find (fun cookie -> cookie.Cookie.id = id) keyring
with Not_found ->
ksprintf failwith "cookie %ld not found in context %S" id context
in
let rand = hex_encode (OBus_util.random_string 16) in
let resp = sprintf "%s %s" rand (hex_encode (OBus_util.sha_1 (sprintf "%s:%s:%s" chal rand cookie.Cookie.cookie))) in
let%lwt () = Lwt_log.debug_f ~section "client: dbus_cookie_sha1: resp: %s" resp in
Lwt.return (Mech_ok resp)
method abort = ()
end
let mech_external = {
mech_name = "EXTERNAL";
mech_exec = (fun () -> new mech_external_handler);
}
let mech_anonymous = {
mech_name = "ANONYMOUS";
mech_exec = (fun () -> new mech_anonymous_handler);
}
let mech_dbus_cookie_sha1 = {
mech_name = "DBUS_COOKIE_SHA1";
mech_exec = (fun () -> new mech_dbus_cookie_sha1_handler);
}
let default_mechanisms = [mech_external;
mech_dbus_cookie_sha1;
mech_anonymous]
type state =
| Waiting_for_data of mechanism_handler
| Waiting_for_ok
| Waiting_for_reject
type transition =
| Transition of client_command * state * mechanism list
| Success of OBus_address.guid
| Failure
let find_working_mech implemented_mechanisms available_mechanisms =
let rec aux = function
| [] ->
Lwt.return Failure
| { mech_name = name; mech_exec = f } :: mechs ->
match available_mechanisms with
| Some l when not (List.mem name l) ->
aux mechs
| _ ->
let mech = f () in
try%lwt
mech#init >>= function
| Mech_continue resp ->
Lwt.return (Transition(Client_auth(Some (name, Some resp)),
Waiting_for_data mech,
mechs))
| Mech_ok resp ->
Lwt.return (Transition(Client_auth(Some (name, Some resp)),
Waiting_for_ok,
mechs))
| Mech_error msg ->
aux mechs
with exn ->
aux mechs
in
aux implemented_mechanisms
let initial mechs = find_working_mech mechs None
let next mechs available = find_working_mech mechs (Some available)
let transition mechs state cmd = match state with
| Waiting_for_data mech -> begin match cmd with
| Server_data chal ->
begin
try%lwt
mech#data chal >>= function
| Mech_continue resp ->
Lwt.return (Transition(Client_data resp,
Waiting_for_data mech,
mechs))
| Mech_ok resp ->
Lwt.return (Transition(Client_data resp,
Waiting_for_ok,
mechs))
| Mech_error msg ->
Lwt.return (Transition(Client_error msg,
Waiting_for_data mech,
mechs))
with exn ->
Lwt.return (Transition(Client_error(Printexc.to_string exn),
Waiting_for_data mech,
mechs))
end
| Server_rejected am ->
mech#abort;
next mechs am
| Server_error _ ->
mech#abort;
Lwt.return (Transition(Client_cancel,
Waiting_for_reject,
mechs))
| Server_ok guid ->
mech#abort;
Lwt.return (Success guid)
| Server_agree_unix_fd ->
mech#abort;
Lwt.return (Transition(Client_error "command not expected here",
Waiting_for_data mech,
mechs))
end
| Waiting_for_ok -> begin match cmd with
| Server_ok guid ->
Lwt.return (Success guid)
| Server_rejected am ->
next mechs am
| Server_data _
| Server_error _ ->
Lwt.return (Transition(Client_cancel,
Waiting_for_reject,
mechs))
| Server_agree_unix_fd ->
Lwt.return (Transition(Client_error "command not expected here",
Waiting_for_ok,
mechs))
end
| Waiting_for_reject -> begin match cmd with
| Server_rejected am -> next mechs am
| _ -> Lwt.return Failure
end
let authenticate ?(capabilities=[]) ?(mechanisms=default_mechanisms) ~stream () =
let rec loop = function
| Transition(cmd, state, mechs) ->
let%lwt () = client_send stream cmd in
let%lwt cmd = client_recv stream in
transition mechs state cmd >>= loop
| Success guid ->
let%lwt caps =
if List.mem `Unix_fd capabilities then
let%lwt () = client_send stream Client_negotiate_unix_fd in
client_recv stream >>= function
| Server_agree_unix_fd ->
Lwt.return [`Unix_fd]
| Server_error _ ->
Lwt.return []
| _ ->
Lwt.return []
else
Lwt.return []
in
let%lwt () = client_send stream Client_begin in
Lwt.return (guid, caps)
| Failure ->
auth_failure "authentication failure"
in
initial mechanisms >>= loop
end
module Server =
struct
type mechanism_return =
| Mech_continue of data
| Mech_ok of int option
| Mech_reject
class virtual mechanism_handler = object
method init = Lwt.return (None : data option)
method virtual data : data -> mechanism_return Lwt.t
method abort = ()
end
type mechanism = {
mech_name : string;
mech_exec : int option -> mechanism_handler;
}
let mech_name m = m.mech_name
let mech_exec m = m.mech_exec
class mech_external_handler user_id = object
inherit mechanism_handler
method data data =
match user_id, try Some(int_of_string data) with _ -> None with
| Some user_id, Some user_id' when user_id = user_id' ->
Lwt.return (Mech_ok(Some user_id))
| _ ->
Lwt.return Mech_reject
end
class mech_anonymous_handler = object
inherit mechanism_handler
method data _ = Lwt.return (Mech_ok None)
end
class mech_dbus_cookie_sha1_handler = object
inherit mechanism_handler
val context = "org_freedesktop_general"
val mutable state = `State1
val mutable user_id = None
method data resp =
try%lwt
let%lwt () = Lwt_log.debug_f ~section "server: dbus_cookie_sha1: resp: %s" resp in
match state with
| `State1 ->
user_id <- (try Some(int_of_string resp) with _ -> None);
let%lwt keyring = Keyring.load context in
let cur_time = Int64.of_float (Unix.time ()) in
let keyring = List.filter (fun { Cookie.time = time } -> time <= cur_time && Int64.sub cur_time time <= 300L) keyring in
let%lwt id, cookie = match keyring with
| { Cookie.id = id; Cookie.cookie = cookie } :: _ ->
Lwt.return (id, cookie)
| [] ->
let id = Int32.abs (OBus_util.random_int32 ()) in
let cookie = hex_encode (OBus_util.random_string 24) in
let%lwt () = Keyring.save context [{ Cookie.id = id; Cookie.time = cur_time; Cookie.cookie = cookie }] in
Lwt.return (id, cookie)
in
let rand = hex_encode (OBus_util.random_string 16) in
let chal = sprintf "%s %ld %s" context id rand in
let%lwt () = Lwt_log.debug_f ~section "server: dbus_cookie_sha1: chal: %s" chal in
state <- `State2(cookie, rand);
Lwt.return (Mech_continue chal)
| `State2(cookie, my_rand) ->
Scanf.sscanf resp "%s %s"
(fun its_rand comp_sha1 ->
if OBus_util.sha_1 (sprintf "%s:%s:%s" my_rand its_rand cookie) = hex_decode comp_sha1 then
Lwt.return (Mech_ok user_id)
else
Lwt.return Mech_reject)
with _ ->
Lwt.return Mech_reject
method abort = ()
end
let mech_anonymous = {
mech_name = "ANONYMOUS";
mech_exec = (fun uid -> new mech_anonymous_handler);
}
let mech_external = {
mech_name = "EXTERNAL";
mech_exec = (fun uid -> new mech_external_handler uid);
}
let mech_dbus_cookie_sha1 = {
mech_name = "DBUS_COOKIE_SHA1";
mech_exec = (fun uid -> new mech_dbus_cookie_sha1_handler);
}
let default_mechanisms = [mech_external;
mech_dbus_cookie_sha1;
mech_anonymous]
type state =
| Waiting_for_auth
| Waiting_for_data of mechanism_handler
| Waiting_for_begin of int option * capability list
type server_machine_transition =
| Transition of server_command * state
| Accept of int option * capability list
| Failure
let reject mechs =
Lwt.return (Transition(Server_rejected (List.map mech_name mechs),
Waiting_for_auth))
let error msg =
Lwt.return (Transition(Server_error msg,
Waiting_for_auth))
let transition user_id guid capabilities mechs state cmd = match state with
| Waiting_for_auth -> begin match cmd with
| Client_auth None ->
reject mechs
| Client_auth(Some(name, resp)) ->
begin match OBus_util.find_map (fun m -> if m.mech_name = name then Some m.mech_exec else None) mechs with
| None ->
reject mechs
| Some f ->
let mech = f user_id in
try%lwt
let%lwt init = mech#init in
match init, resp with
| None, None ->
Lwt.return (Transition(Server_data "",
Waiting_for_data mech))
| Some chal, None ->
Lwt.return (Transition(Server_data chal,
Waiting_for_data mech))
| Some chal, Some rest ->
reject mechs
| None, Some resp ->
mech#data resp >>= function
| Mech_continue chal ->
Lwt.return (Transition(Server_data chal,
Waiting_for_data mech))
| Mech_ok uid ->
Lwt.return (Transition(Server_ok guid,
Waiting_for_begin(uid, [])))
| Mech_reject ->
reject mechs
with exn ->
reject mechs
end
| Client_begin -> Lwt.return Failure
| Client_error msg -> reject mechs
| _ -> error "AUTH command expected"
end
| Waiting_for_data mech -> begin match cmd with
| Client_data "" ->
Lwt.return (Transition(Server_data "",
Waiting_for_data mech))
| Client_data resp -> begin
try%lwt
mech#data resp >>= function
| Mech_continue chal ->
Lwt.return (Transition(Server_data chal,
Waiting_for_data mech))
| Mech_ok uid ->
Lwt.return (Transition(Server_ok guid,
Waiting_for_begin(uid, [])))
| Mech_reject ->
reject mechs
with exn ->
reject mechs
end
| Client_begin -> mech#abort; Lwt.return Failure
| Client_cancel -> mech#abort; reject mechs
| Client_error _ -> mech#abort; reject mechs
| _ -> mech#abort; error "DATA command expected"
end
| Waiting_for_begin(uid, caps) -> begin match cmd with
| Client_begin ->
Lwt.return (Accept(uid, caps))
| Client_cancel ->
reject mechs
| Client_error _ ->
reject mechs
| Client_negotiate_unix_fd ->
if List.mem `Unix_fd capabilities then
Lwt.return(Transition(Server_agree_unix_fd,
Waiting_for_begin(uid,
if List.mem `Unix_fd caps then
caps
else
`Unix_fd :: caps)))
else
Lwt.return(Transition(Server_error "Unix fd passing is not supported by this server",
Waiting_for_begin(uid, caps)))
| _ ->
error "BEGIN command expected"
end
let authenticate ?(capabilities=[]) ?(mechanisms=default_mechanisms) ?user_id ~guid ~stream () =
let rec loop state count =
let%lwt cmd = server_recv stream in
transition user_id guid capabilities mechanisms state cmd >>= function
| Transition(cmd, state) ->
let count =
match cmd with
| Server_rejected _ -> count + 1
| _ -> count
in
if count >= max_reject then
auth_failure "too many reject"
else
let%lwt () = server_send stream cmd in
loop state count
| Accept(uid, caps) ->
Lwt.return (uid, caps)
| Failure ->
auth_failure "authentication failure"
in
loop Waiting_for_auth 0
end