70e9980ac6
- Resolves: rhbz#1060325 - Does sssd-ad use the most suitable attribute for group name - Resolves: upstream #2335 - Investigate using the krb5 responder for driving the PAM conversation with OTPs - Enable cmocka tests for secondary architectures
33 lines
1.1 KiB
Diff
33 lines
1.1 KiB
Diff
From 004632f9a319d829e83fcd1617be4b6a2f15e7a4 Mon Sep 17 00:00:00 2001
|
|
From: Sumit Bose <sbose@redhat.com>
|
|
Date: Thu, 8 Jan 2015 17:10:42 +0100
|
|
Subject: [PATCH 103/114] pam: handle 2FA authentication token in the responder
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Reviewed-by: Lukáš Slebodník <lslebodn@redhat.com>
|
|
(cherry picked from commit ea98a7af0584d7667b6c07c19a4b22942c94ca5d)
|
|
---
|
|
src/responder/pam/pamsrv_cmd.c | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/src/responder/pam/pamsrv_cmd.c b/src/responder/pam/pamsrv_cmd.c
|
|
index 0b54402729e77f22391c6bd17fd8c937ddea3592..2ca5aa789ab98aea9005b891be1a36ea91ab40f4 100644
|
|
--- a/src/responder/pam/pamsrv_cmd.c
|
|
+++ b/src/responder/pam/pamsrv_cmd.c
|
|
@@ -143,6 +143,10 @@ static int extract_authtok_v2(struct sss_auth_token *tok,
|
|
auth_token_length);
|
|
}
|
|
break;
|
|
+ case SSS_AUTHTOK_TYPE_2FA:
|
|
+ ret = sss_authtok_set(tok, SSS_AUTHTOK_TYPE_2FA,
|
|
+ auth_token_data, auth_token_length);
|
|
+ break;
|
|
default:
|
|
return EINVAL;
|
|
}
|
|
--
|
|
2.4.0
|
|
|