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
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
|
/*
SSSD
Kerberos 5 Backend Module - Manage krb5_child
Authors:
Sumit Bose <sbose@redhat.com>
Copyright (C) 2010 Red Hat
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 3 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, see <http://www.gnu.org/licenses/>.
*/
#include <signal.h>
#include "util/util.h"
#include "util/child_common.h"
#include "util/sss_chain_id.h"
#include "providers/krb5/krb5_common.h"
#include "providers/krb5/krb5_auth.h"
#include "src/providers/krb5/krb5_utils.h"
#include "util/sss_ptr_hash.h"
#ifndef KRB5_CHILD_DIR
#ifndef SSSD_LIBEXEC_PATH
#error "SSSD_LIBEXEC_PATH not defined"
#endif /* SSSD_LIBEXEC_PATH */
#define KRB5_CHILD_DIR SSSD_LIBEXEC_PATH
#endif /* KRB5_CHILD_DIR */
#define KRB5_CHILD KRB5_CHILD_DIR"/krb5_child"
#define TIME_T_MAX LONG_MAX
#define int64_to_time_t(val) ((time_t)((val) < TIME_T_MAX ? val : TIME_T_MAX))
struct handle_child_state {
struct tevent_context *ev;
struct krb5child_req *kr;
uint8_t *buf;
ssize_t len;
struct tevent_timer *timeout_handler;
pid_t child_pid;
struct child_io_fds *io;
};
static errno_t pack_authtok(struct io_buffer *buf, size_t *rp,
struct sss_auth_token *tok)
{
uint32_t auth_token_type;
uint32_t auth_token_length = 0;
const char *data;
size_t len;
errno_t ret = EOK;
auth_token_type = sss_authtok_get_type(tok);
switch (auth_token_type) {
case SSS_AUTHTOK_TYPE_EMPTY:
auth_token_length = 0;
data = "";
break;
case SSS_AUTHTOK_TYPE_PASSWORD:
ret = sss_authtok_get_password(tok, &data, &len);
auth_token_length = len + 1;
break;
case SSS_AUTHTOK_TYPE_CCFILE:
ret = sss_authtok_get_ccfile(tok, &data, &len);
auth_token_length = len + 1;
break;
case SSS_AUTHTOK_TYPE_2FA_SINGLE:
ret = sss_authtok_get_2fa_single(tok, &data, &len);
auth_token_length = len + 1;
break;
case SSS_AUTHTOK_TYPE_2FA:
case SSS_AUTHTOK_TYPE_SC_PIN:
case SSS_AUTHTOK_TYPE_SC_KEYPAD:
case SSS_AUTHTOK_TYPE_OAUTH2:
case SSS_AUTHTOK_TYPE_PASSKEY:
case SSS_AUTHTOK_TYPE_PASSKEY_KRB:
case SSS_AUTHTOK_TYPE_PASSKEY_REPLY:
data = (char *) sss_authtok_get_data(tok);
auth_token_length = sss_authtok_get_size(tok);
break;
default:
ret = EINVAL;
}
if (ret == EOK) {
SAFEALIGN_COPY_UINT32(&buf->data[*rp], &auth_token_type, rp);
SAFEALIGN_COPY_UINT32(&buf->data[*rp], &auth_token_length, rp);
if (data != NULL) {
safealign_memcpy(&buf->data[*rp], data, auth_token_length, rp);
}
}
return ret;
}
static errno_t create_send_buffer(struct krb5child_req *kr,
struct io_buffer **io_buf)
{
struct io_buffer *buf;
size_t rp;
const char *keytab;
uint32_t validate;
uint32_t send_pac;
uint32_t use_enterprise_principal;
uint32_t posix_domain = 0;
size_t username_len = 0;
errno_t ret;
keytab = dp_opt_get_cstring(kr->krb5_ctx->opts, KRB5_KEYTAB);
if (keytab == NULL) {
DEBUG(SSSDBG_TRACE_FUNC, "krb5_keytab not set for domain in sssd.conf\n");
keytab = "";
}
validate = dp_opt_get_bool(kr->krb5_ctx->opts, KRB5_VALIDATE) ? 1 : 0;
/* Always send PAC except for local IPA users and IPA server mode */
switch (kr->krb5_ctx->config_type) {
case K5C_IPA_CLIENT:
send_pac = kr->upn_from_different_realm ? 1 : 0;
break;
case K5C_IPA_SERVER:
send_pac = 0;
break;
default:
send_pac = 1;
break;
}
/* Renewals from KCM do not initialize kr->dom */
if (kr->pd->cmd == SSS_CMD_RENEW || kr->dom->type == DOM_TYPE_POSIX) {
posix_domain = 1;
} else if (kr->dom->type != DOM_TYPE_APPLICATION) {
return EINVAL;
}
if (kr->pd->cmd == SSS_CMD_RENEW || kr->pd->cmd == SSS_PAM_CHAUTHTOK_PRELIM
|| kr->pd->cmd == SSS_PAM_CHAUTHTOK || kr->is_offline) {
use_enterprise_principal = false;
} else {
use_enterprise_principal = dp_opt_get_bool(kr->krb5_ctx->opts,
KRB5_USE_ENTERPRISE_PRINCIPAL) ? 1 : 0;
}
buf = talloc(kr, struct io_buffer);
if (buf == NULL) {
DEBUG(SSSDBG_CRIT_FAILURE, "talloc failed.\n");
return ENOMEM;
}
buf->size = 9*sizeof(uint32_t) + strlen(kr->upn);
if (kr->pd->cmd == SSS_PAM_AUTHENTICATE ||
kr->pd->cmd == SSS_PAM_PREAUTH ||
kr->pd->cmd == SSS_CMD_RENEW ||
kr->pd->cmd == SSS_PAM_CHAUTHTOK_PRELIM ||
kr->pd->cmd == SSS_PAM_CHAUTHTOK) {
buf->size += 4*sizeof(uint32_t) + strlen(kr->ccname) + strlen(keytab) +
sss_authtok_get_size(kr->pd->authtok);
buf->size += sizeof(uint32_t);
if (kr->old_ccname) {
buf->size += strlen(kr->old_ccname);
}
}
if (kr->pd->cmd == SSS_PAM_CHAUTHTOK) {
buf->size += 2*sizeof(uint32_t) +
sss_authtok_get_size(kr->pd->newauthtok);
}
if (kr->pd->cmd == SSS_PAM_ACCT_MGMT) {
username_len = strlen(kr->kuserok_user);
buf->size += sizeof(uint32_t) + username_len;
}
buf->data = talloc_size(kr, buf->size);
if (buf->data == NULL) {
DEBUG(SSSDBG_CRIT_FAILURE, "talloc_size failed.\n");
talloc_free(buf);
return ENOMEM;
}
rp = 0;
SAFEALIGN_COPY_UINT32(&buf->data[rp], &kr->pd->cmd, &rp);
SAFEALIGN_COPY_UINT32(&buf->data[rp], &kr->uid, &rp);
SAFEALIGN_COPY_UINT32(&buf->data[rp], &kr->gid, &rp);
SAFEALIGN_COPY_UINT32(&buf->data[rp], &validate, &rp);
SAFEALIGN_COPY_UINT32(&buf->data[rp], &posix_domain, &rp);
SAFEALIGN_COPY_UINT32(&buf->data[rp], &kr->is_offline, &rp);
SAFEALIGN_COPY_UINT32(&buf->data[rp], &send_pac, &rp);
SAFEALIGN_COPY_UINT32(&buf->data[rp], &use_enterprise_principal, &rp);
SAFEALIGN_SET_UINT32(&buf->data[rp], strlen(kr->upn), &rp);
safealign_memcpy(&buf->data[rp], kr->upn, strlen(kr->upn), &rp);
if (kr->pd->cmd == SSS_PAM_AUTHENTICATE ||
kr->pd->cmd == SSS_PAM_PREAUTH ||
kr->pd->cmd == SSS_CMD_RENEW ||
kr->pd->cmd == SSS_PAM_CHAUTHTOK_PRELIM ||
kr->pd->cmd == SSS_PAM_CHAUTHTOK) {
SAFEALIGN_SET_UINT32(&buf->data[rp], strlen(kr->ccname), &rp);
safealign_memcpy(&buf->data[rp], kr->ccname, strlen(kr->ccname), &rp);
if (kr->old_ccname) {
SAFEALIGN_SET_UINT32(&buf->data[rp], strlen(kr->old_ccname), &rp);
safealign_memcpy(&buf->data[rp], kr->old_ccname,
strlen(kr->old_ccname), &rp);
} else {
SAFEALIGN_SET_UINT32(&buf->data[rp], 0, &rp);
}
SAFEALIGN_SET_UINT32(&buf->data[rp], strlen(keytab), &rp);
safealign_memcpy(&buf->data[rp], keytab, strlen(keytab), &rp);
ret = pack_authtok(buf, &rp, kr->pd->authtok);
if (ret) {
return ret;
}
}
if (kr->pd->cmd == SSS_PAM_CHAUTHTOK) {
ret = pack_authtok(buf, &rp, kr->pd->newauthtok);
if (ret) {
return ret;
}
}
if (kr->pd->cmd == SSS_PAM_ACCT_MGMT) {
SAFEALIGN_SET_UINT32(&buf->data[rp], username_len, &rp);
safealign_memcpy(&buf->data[rp], kr->kuserok_user, username_len, &rp);
}
*io_buf = buf;
return EOK;
}
static void krb5_child_terminate(pid_t pid)
{
int ret;
if (pid == 0) {
return;
}
ret = kill(pid, SIGKILL);
if (ret == -1) {
ret = errno;
DEBUG(SSSDBG_CRIT_FAILURE, "kill failed [%d]: %s\n",
ret, sss_strerror(ret));
}
}
static void krb5_child_timeout(struct tevent_context *ev,
struct tevent_timer *te,
struct timeval tv, void *pvt)
{
struct tevent_req *req = talloc_get_type(pvt, struct tevent_req);
struct handle_child_state *state = tevent_req_data(req,
struct handle_child_state);
if (state->timeout_handler == NULL) {
return;
}
/* No I/O expected anymore, make sure sockets are closed properly */
state->io->in_use = false;
DEBUG(SSSDBG_IMPORTANT_INFO,
"Timeout for child [%d] reached. In case KDC is distant or network "
"is slow you may consider increasing value of krb5_auth_timeout.\n",
state->child_pid);
krb5_child_terminate(state->child_pid);
tevent_req_error(req, ETIMEDOUT);
}
static errno_t activate_child_timeout_handler(struct tevent_req *req,
struct tevent_context *ev,
const uint32_t timeout_seconds)
{
struct timeval tv;
struct handle_child_state *state = tevent_req_data(req,
struct handle_child_state);
tv = tevent_timeval_current();
tv = tevent_timeval_add(&tv, timeout_seconds, 0);
state->timeout_handler = tevent_add_timer(ev, state, tv,
krb5_child_timeout, req);
if (state->timeout_handler == NULL) {
DEBUG(SSSDBG_CRIT_FAILURE, "tevent_add_timer failed.\n");
return ENOMEM;
}
return EOK;
}
errno_t set_extra_args(TALLOC_CTX *mem_ctx, struct krb5_ctx *krb5_ctx,
struct sss_domain_info *domain,
const char ***krb5_child_extra_args)
{
const char **extra_args;
const char *krb5_realm;
uint64_t chain_id;
size_t c = 0;
int ret;
if (krb5_ctx == NULL || krb5_child_extra_args == NULL) {
return EINVAL;
}
extra_args = talloc_zero_array(mem_ctx, const char *, 12);
if (extra_args == NULL) {
DEBUG(SSSDBG_OP_FAILURE, "talloc_zero_array failed.\n");
return ENOMEM;
}
extra_args[c] = talloc_asprintf(extra_args,
"--"CHILD_OPT_FAST_CCACHE_UID"=%"SPRIuid,
getuid());
if (extra_args[c] == NULL) {
DEBUG(SSSDBG_OP_FAILURE, "talloc_asprintf failed.\n");
ret = ENOMEM;
goto done;
}
c++;
extra_args[c] = talloc_asprintf(extra_args,
"--"CHILD_OPT_FAST_CCACHE_GID"=%"SPRIgid,
getgid());
if (extra_args[c] == NULL) {
DEBUG(SSSDBG_OP_FAILURE, "talloc_asprintf failed.\n");
ret = ENOMEM;
goto done;
}
c++;
krb5_realm = krb5_ctx->realm;
if (domain != NULL && IS_SUBDOMAIN(domain) && dp_opt_get_bool(krb5_ctx->opts, KRB5_USE_SUBDOMAIN_REALM)) {
DEBUG(SSSDBG_CONF_SETTINGS, "Use subdomain realm %s.\n", domain->realm);
krb5_realm = domain->realm;
}
if (krb5_ctx->realm != NULL) {
extra_args[c] = talloc_asprintf(extra_args, "--"CHILD_OPT_REALM"=%s",
krb5_realm);
if (extra_args[c] == NULL) {
DEBUG(SSSDBG_OP_FAILURE, "talloc_asprintf failed.\n");
ret = ENOMEM;
goto done;
}
c++;
}
if (krb5_ctx->lifetime_str != NULL) {
extra_args[c] = talloc_asprintf(extra_args, "--"CHILD_OPT_LIFETIME"=%s",
krb5_ctx->lifetime_str);
if (extra_args[c] == NULL) {
DEBUG(SSSDBG_OP_FAILURE, "talloc_asprintf failed.\n");
ret = ENOMEM;
goto done;
}
c++;
}
if (krb5_ctx->rlife_str != NULL) {
extra_args[c] = talloc_asprintf(extra_args,
"--"CHILD_OPT_RENEWABLE_LIFETIME"=%s",
krb5_ctx->rlife_str);
if (extra_args[c] == NULL) {
DEBUG(SSSDBG_OP_FAILURE, "talloc_asprintf failed.\n");
ret = ENOMEM;
goto done;
}
c++;
}
if (krb5_ctx->use_fast_str != NULL) {
extra_args[c] = talloc_asprintf(extra_args, "--"CHILD_OPT_USE_FAST"=%s",
krb5_ctx->use_fast_str);
if (extra_args[c] == NULL) {
DEBUG(SSSDBG_OP_FAILURE, "talloc_asprintf failed.\n");
ret = ENOMEM;
goto done;
}
c++;
if (krb5_ctx->fast_principal != NULL) {
extra_args[c] = talloc_asprintf(extra_args,
"--"CHILD_OPT_FAST_PRINCIPAL"=%s",
krb5_ctx->fast_principal);
if (extra_args[c] == NULL) {
DEBUG(SSSDBG_OP_FAILURE, "talloc_asprintf failed.\n");
ret = ENOMEM;
goto done;
}
c++;
}
if (krb5_ctx->fast_use_anonymous_pkinit) {
extra_args[c] = talloc_strdup(extra_args,
"--" CHILD_OPT_FAST_USE_ANONYMOUS_PKINIT);
if (extra_args[c] == NULL) {
DEBUG(SSSDBG_OP_FAILURE, "talloc_strdup failed.\n");
ret = ENOMEM;
goto done;
}
c++;
}
}
if (krb5_ctx->check_pac_flags != 0) {
extra_args[c] = talloc_asprintf(extra_args,
"--"CHILD_OPT_CHECK_PAC"=%"PRIu32,
krb5_ctx->check_pac_flags);
if (extra_args[c] == NULL) {
DEBUG(SSSDBG_OP_FAILURE, "talloc_asprintf failed.\n");
ret = ENOMEM;
goto done;
}
c++;
}
if (krb5_ctx->canonicalize) {
extra_args[c] = talloc_strdup(extra_args,
"--" CHILD_OPT_CANONICALIZE);
if (extra_args[c] == NULL) {
DEBUG(SSSDBG_OP_FAILURE, "talloc_strdup failed.\n");
ret = ENOMEM;
goto done;
}
c++;
}
if (krb5_ctx->sss_creds_password) {
extra_args[c] = talloc_strdup(extra_args,
"--" CHILD_OPT_SSS_CREDS_PASSWORD);
if (extra_args[c] == NULL) {
ret = ENOMEM;
goto done;
}
c++;
}
chain_id = sss_chain_id_get();
extra_args[c] = talloc_asprintf(extra_args,
"--"CHILD_OPT_CHAIN_ID"=%lu",
chain_id);
if (extra_args[c] == NULL) {
DEBUG(SSSDBG_OP_FAILURE, "talloc_asprintf failed.\n");
ret = ENOMEM;
goto done;
}
c++;
extra_args[c] = NULL;
*krb5_child_extra_args = extra_args;
ret = EOK;
done:
if (ret != EOK) {
talloc_free(extra_args);
}
return ret;
}
static void child_exited(int child_status,
struct tevent_signal *sige,
void *pvt)
{
struct child_io_fds *io = talloc_get_type(pvt, struct child_io_fds);
/* Do not free it if we still need to read some data. Just mark that the
* child has exited so we know we need to free it later. */
if (io->in_use) {
io->child_exited = true;
return;
}
/* The child has finished and we don't need to use the file descriptors
* any more. This will close them and remove them from io hash table. */
talloc_free(io);
}
static void child_keep_alive_timeout(struct tevent_context *ev,
struct tevent_timer *te,
struct timeval tv,
void *pvt)
{
struct child_io_fds *io = talloc_get_type(pvt, struct child_io_fds);
DEBUG(SSSDBG_IMPORTANT_INFO, "Keep alive timeout for child [%d] reached.\n",
io->pid);
/* No I/O expected anymore, make sure sockets are closed properly */
io->in_use = false;
krb5_child_terminate(io->pid);
}
static errno_t fork_child(struct tevent_context *ev,
struct krb5child_req *kr,
pid_t *_child_pid,
struct child_io_fds **_io)
{
TALLOC_CTX *tmp_ctx;
int pipefd_to_child[2] = PIPE_INIT;
int pipefd_from_child[2] = PIPE_INIT;
const char **krb5_child_extra_args;
struct child_io_fds *io;
struct tevent_timer *te;
struct timeval tv;
char *io_key;
pid_t pid = 0;
errno_t ret;
tmp_ctx = talloc_new(NULL);
if (tmp_ctx == NULL) {
return ENOMEM;
}
ret = set_extra_args(tmp_ctx, kr->krb5_ctx, kr->dom, &krb5_child_extra_args);
if (ret != EOK) {
DEBUG(SSSDBG_OP_FAILURE, "set_extra_args failed.\n");
goto done;
}
ret = pipe(pipefd_from_child);
if (ret == -1) {
ret = errno;
DEBUG(SSSDBG_CRIT_FAILURE,
"pipe (from) failed [%d][%s].\n", errno, strerror(errno));
goto done;
}
ret = pipe(pipefd_to_child);
if (ret == -1) {
ret = errno;
DEBUG(SSSDBG_CRIT_FAILURE,
"pipe (to) failed [%d][%s].\n", errno, strerror(errno));
goto done;
}
pid = fork();
if (pid == 0) { /* child */
exec_child_ex(tmp_ctx,
pipefd_to_child, pipefd_from_child,
KRB5_CHILD, KRB5_CHILD_LOG_FILE,
krb5_child_extra_args, false,
STDIN_FILENO, STDOUT_FILENO);
/* We should never get here */
DEBUG(SSSDBG_CRIT_FAILURE, "BUG: Could not exec KRB5 child\n");
ret = ERR_INTERNAL;
goto done;
} else if (pid < 0) { /* error */
ret = errno;
DEBUG(SSSDBG_CRIT_FAILURE, "fork failed [%d]: %s\n", ret, strerror(ret));
goto done;
}
/* parent */
io = talloc_zero(tmp_ctx, struct child_io_fds);
if (io == NULL) {
DEBUG(SSSDBG_CRIT_FAILURE, "talloc failed.\n");
ret = ENOMEM;
goto done;
}
talloc_set_destructor((void*)io, child_io_destructor);
io->pid = pid;
/* Set file descriptors. */
io->read_from_child_fd = pipefd_from_child[0];
io->write_to_child_fd = pipefd_to_child[1];
PIPE_FD_CLOSE(pipefd_from_child[1]);
PIPE_FD_CLOSE(pipefd_to_child[0]);
sss_fd_nonblocking(io->read_from_child_fd);
sss_fd_nonblocking(io->write_to_child_fd);
/* Add io to pid:io hash table. */
io_key = talloc_asprintf(tmp_ctx, "%d", pid);
if (io_key == NULL) {
ret = ENOMEM;
goto done;
}
ret = sss_ptr_hash_add(kr->krb5_ctx->io_table, io_key, io,
struct child_io_fds);
if (ret != EOK) {
DEBUG(SSSDBG_OP_FAILURE, "Unable to add child io to hash table "
"[%d]: %s\n", ret, sss_strerror(ret));
goto done;
}
/* Setup child's keep alive timeout for open file descriptors. This timeout
* is quite big to allow additional user interactions when the child is kept
* alive for further communication. */
tv = tevent_timeval_current_ofs(300, 0);
te = tevent_add_timer(ev, io, tv, child_keep_alive_timeout, io);
if (te == NULL) {
DEBUG(SSSDBG_CRIT_FAILURE, "Unable to setup child timeout\n");
ret = ENOMEM;
goto done;
}
/* Setup the child handler. It will free io and remove it from the hash
* table when it exits. */
ret = child_handler_setup(ev, pid, child_exited, io, NULL);
if (ret != EOK) {
DEBUG(SSSDBG_CRIT_FAILURE, "Could not set up child signal handler "
"[%d]: %s\n", ret, sss_strerror(ret));
goto done;
}
/* Steal the io pair so it can outlive this request if needed. */
talloc_steal(kr->krb5_ctx->io_table, io);
*_child_pid = pid;
*_io = io;
ret = EOK;
done:
if (ret != EOK) {
PIPE_CLOSE(pipefd_from_child);
PIPE_CLOSE(pipefd_to_child);
krb5_child_terminate(pid);
}
talloc_free(tmp_ctx);
return ret;
}
static void handle_child_step(struct tevent_req *subreq);
static void handle_child_done(struct tevent_req *subreq);
struct tevent_req *handle_child_send(TALLOC_CTX *mem_ctx,
struct tevent_context *ev,
struct krb5child_req *kr)
{
struct tevent_req *req, *subreq;
struct handle_child_state *state;
char *io_key;
int ret;
struct io_buffer *buf = NULL;
req = tevent_req_create(mem_ctx, &state, struct handle_child_state);
if (req == NULL) {
return NULL;
}
if (kr->krb5_ctx->io_table == NULL) {
/* Create IO/pipe table if it does not exist. */
kr->krb5_ctx->io_table = sss_ptr_hash_create(kr->krb5_ctx, NULL, NULL);
if (kr->krb5_ctx->io_table == NULL) {
ret = ENOMEM;
goto fail;
}
}
state->ev = ev;
state->kr = kr;
state->buf = NULL;
state->len = 0;
state->child_pid = -1;
state->timeout_handler = NULL;
ret = create_send_buffer(kr, &buf);
if (ret != EOK) {
DEBUG(SSSDBG_CRIT_FAILURE, "create_send_buffer failed.\n");
goto fail;
}
if (kr->pd->child_pid == 0) {
/* Create new child. */
ret = fork_child(ev, kr, &state->child_pid, &state->io);
if (ret != EOK) {
DEBUG(SSSDBG_CRIT_FAILURE, "fork_child failed.\n");
goto fail;
}
/* Setup timeout. If failed, terminate the child process. */
ret = activate_child_timeout_handler(req, ev,
dp_opt_get_int(kr->krb5_ctx->opts, KRB5_AUTH_TIMEOUT));
if (ret != EOK) {
DEBUG(SSSDBG_CRIT_FAILURE, "Unable to setup child timeout "
"[%d]: %s\n", ret, sss_strerror(ret));
krb5_child_terminate(state->child_pid);
goto fail;
}
} else {
/* Continue talking to an existing child. */
io_key = talloc_asprintf(state, "%d", kr->pd->child_pid);
if (io_key == NULL) {
ret = ENOMEM;
goto fail;
}
state->io = sss_ptr_hash_lookup(kr->krb5_ctx->io_table, io_key,
struct child_io_fds);
if (state->io == NULL) {
DEBUG(SSSDBG_OP_FAILURE, "Unable to locate pipe for child pid=%s\n",
io_key);
ret = ENOENT;
goto fail;
}
}
state->io->in_use = true;
subreq = write_pipe_safe_send(state, ev, buf->data, buf->size,
state->io->write_to_child_fd);
if (!subreq) {
ret = ENOMEM;
goto fail;
}
tevent_req_set_callback(subreq, handle_child_step, req);
return req;
fail:
tevent_req_error(req, ret);
tevent_req_post(req, ev);
return req;
}
static void handle_child_step(struct tevent_req *subreq)
{
struct tevent_req *req = tevent_req_callback_data(subreq,
struct tevent_req);
struct handle_child_state *state = tevent_req_data(req,
struct handle_child_state);
int ret;
ret = write_pipe_safe_recv(subreq);
talloc_zfree(subreq);
if (ret != EOK) {
goto done;
}
subreq = read_pipe_safe_send(state, state->ev,
state->io->read_from_child_fd);
if (!subreq) {
ret = ENOMEM;
goto done;
}
tevent_req_set_callback(subreq, handle_child_done, req);
done:
if (ret != EOK) {
state->io->in_use = false;
if (state->io->child_exited) {
talloc_free(state->io);
}
tevent_req_error(req, ret);
}
}
static void handle_child_done(struct tevent_req *subreq)
{
struct tevent_req *req = tevent_req_callback_data(subreq,
struct tevent_req);
struct handle_child_state *state = tevent_req_data(req,
struct handle_child_state);
int ret;
talloc_zfree(state->timeout_handler);
ret = read_pipe_safe_recv(subreq, state, &state->buf, &state->len);
state->io->in_use = false;
talloc_zfree(subreq);
if (ret != EOK) {
goto done;
}
done:
state->io->in_use = false;
if (state->io->child_exited) {
talloc_free(state->io);
}
if (ret != EOK) {
tevent_req_error(req, ret);
return;
}
tevent_req_done(req);
}
int handle_child_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
uint8_t **buf, ssize_t *len)
{
struct handle_child_state *state = tevent_req_data(req,
struct handle_child_state);
TEVENT_REQ_RETURN_ON_ERROR(req);
*buf = talloc_move(mem_ctx, &state->buf);
*len = state->len;
return EOK;
}
static const char *krb5_child_response_type_to_str(int32_t type)
{
switch (type) {
case SSS_PAM_ENV_ITEM:
return "Env variable to be set with pam_putenv(3)";
case SSS_PAM_USER_INFO:
return "Message to be displayed to the user";
case SSS_OTP:
return "Authtok was a OTP";
case SSS_PAM_TEXT_MSG:
return "Plain text message to be displayed to the user";
case SSS_PAM_OTP_INFO:
return "OTP info";
case SSS_PASSWORD_PROMPTING:
return "Password prompting is possible";
case SSS_CERT_AUTH_PROMPTING:
return "Certificate based authentication is available";
case SSS_KRB5_INFO_TGT_LIFETIME:
return "TGT lifetime info";
case SSS_KRB5_INFO_UPN:
return "UPN info";
case SSS_CHILD_KEEP_ALIVE:
return "Keep alive";
case SSS_PAM_OAUTH2_INFO:
return "OAuth2 info";
case SSS_PAM_PASSKEY_INFO:
return "Passkey info";
case SSS_PAM_PASSKEY_KRB_INFO:
return "Passkey kerberos info";
}
DEBUG(SSSDBG_MINOR_FAILURE, "Unexpected response type %d\n", type);
return "-unexpected-";
}
errno_t
parse_krb5_child_response(TALLOC_CTX *mem_ctx, uint8_t *buf, ssize_t len,
struct pam_data *pd, int pwd_exp_warning,
struct krb5_child_response **_res)
{
ssize_t pref_len;
size_t p;
errno_t ret;
bool skip;
char *ccname = NULL;
size_t ccname_len = 0;
int32_t msg_status;
int32_t msg_type;
int32_t msg_len;
int64_t time_data;
struct tgt_times tgtt;
uint32_t expiration;
uint32_t msg_subtype;
struct krb5_child_response *res;
const char *upn = NULL;
size_t upn_len = 0;
bool otp = false;
if ((size_t) len < sizeof(int32_t)) {
DEBUG(SSSDBG_CRIT_FAILURE, "message too short.\n");
return EINVAL;
}
memset(&tgtt, 0, sizeof(struct tgt_times));
if (pwd_exp_warning < 0) {
pwd_exp_warning = KERBEROS_PWEXPIRE_WARNING_TIME;
}
/* A buffer with the following structure is expected.
* int32_t status of the request (required)
* message (zero or more)
*
* A message consists of:
* int32_t type of the message
* int32_t length of the following data
* uint8_t[len] data
*/
p=0;
SAFEALIGN_COPY_INT32(&msg_status, buf+p, &p);
while (p < len) {
skip = false;
SAFEALIGN_COPY_INT32(&msg_type, buf+p, &p);
SAFEALIGN_COPY_INT32(&msg_len, buf+p, &p);
DEBUG(SSSDBG_TRACE_LIBS, "child response: "
"status code: %d (%s), msg type: %d (%s), len: %d\n",
msg_status, sss_strerror(msg_status),
msg_type, krb5_child_response_type_to_str(msg_type),
msg_len);
if (msg_len > len - p) {
DEBUG(SSSDBG_CRIT_FAILURE, "message format error [%d] > [%zu].\n",
msg_len, len - p);
return EINVAL;
}
/* We need to save the name of the credential cache file. To find it
* we check if the data part of a message starts with
* CCACHE_ENV_NAME"=". pref_len also counts the trailing '=' because
* sizeof() counts the trailing '\0' of a string. */
pref_len = sizeof(CCACHE_ENV_NAME);
if ((msg_type == SSS_PAM_ENV_ITEM) &&
(msg_len > pref_len) &&
(strncmp((const char *) &buf[p], CCACHE_ENV_NAME"=", pref_len) == 0)) {
ccname = (char *) &buf[p+pref_len];
ccname_len = msg_len-pref_len;
}
if (msg_type == SSS_KRB5_INFO_TGT_LIFETIME &&
msg_len == 4*sizeof(int64_t)) {
SAFEALIGN_COPY_INT64(&time_data, buf+p, NULL);
tgtt.authtime = int64_to_time_t(time_data);
SAFEALIGN_COPY_INT64(&time_data, buf+p+sizeof(int64_t), NULL);
tgtt.starttime = int64_to_time_t(time_data);
SAFEALIGN_COPY_INT64(&time_data, buf+p+2*sizeof(int64_t), NULL);
tgtt.endtime = int64_to_time_t(time_data);
SAFEALIGN_COPY_INT64(&time_data, buf+p+3*sizeof(int64_t), NULL);
tgtt.renew_till = int64_to_time_t(time_data);
DEBUG(SSSDBG_TRACE_LIBS,
"TGT times are [%"SPRItime"][%"SPRItime"][%"SPRItime"][%"SPRItime"].\n",
tgtt.authtime, tgtt.starttime, tgtt.endtime, tgtt.renew_till);
}
if (msg_type == SSS_KRB5_INFO_UPN) {
upn = (char *) buf + p;
upn_len = msg_len;
}
if (msg_type == SSS_PAM_USER_INFO) {
SAFEALIGN_COPY_UINT32(&msg_subtype, buf + p, NULL);
if (msg_subtype == SSS_PAM_USER_INFO_EXPIRE_WARN) {
SAFEALIGN_COPY_UINT32(&expiration,
buf + p + sizeof(uint32_t), NULL);
if (pwd_exp_warning > 0 &&
difftime(pwd_exp_warning, expiration) < 0.0) {
skip = true;
}
}
}
if (msg_type == SSS_OTP) {
otp = true;
skip = true;
}
if (!skip) {
ret = pam_add_response(pd, msg_type, msg_len, &buf[p]);
if (ret != EOK) {
/* This is not a fatal error */
DEBUG(SSSDBG_CRIT_FAILURE, "pam_add_response failed.\n");
}
}
p += msg_len;
if ((p < len) && (p + 2*sizeof(int32_t) > len)) {
DEBUG(SSSDBG_CRIT_FAILURE,
"The remainder of the message is too short.\n");
return EINVAL;
}
}
res = talloc_zero(mem_ctx, struct krb5_child_response);
if (!res) return ENOMEM;
res->otp = otp;
res->msg_status = msg_status;
memcpy(&res->tgtt, &tgtt, sizeof(tgtt));
if (ccname) {
res->ccname = talloc_strndup(res, ccname, ccname_len);
if (res->ccname == NULL) {
DEBUG(SSSDBG_CRIT_FAILURE, "talloc_strndup failed.\n");
talloc_free(res);
return ENOMEM;
}
}
if (upn != NULL) {
res->correct_upn = talloc_strndup(res, upn, upn_len);
if (res->correct_upn == NULL) {
DEBUG(SSSDBG_CRIT_FAILURE, "talloc_strndup failed.\n");
talloc_free(res);
return ENOMEM;
}
}
*_res = res;
return EOK;
}
|