26RCSID(
"$Id: 6abb3599984bdd8a40748fbe5297a64bb8f9f1d1 $")
28#define LOG_PREFIX mctx->mi->name
30#include <freeradius-devel/server/base.h>
31#include <freeradius-devel/server/exec_legacy.h>
32#include <freeradius-devel/server/module_rlm.h>
33#include <freeradius-devel/tls/strerror.h>
34#include <freeradius-devel/util/debug.h>
35#include <freeradius-devel/radius/defs.h>
37#include <freeradius-devel/util/base16.h>
38#include <freeradius-devel/util/md4.h>
39#include <freeradius-devel/util/md5.h>
40#include <freeradius-devel/util/misc.h>
41#include <freeradius-devel/util/sha1.h>
43#include <freeradius-devel/unlang/function.h>
44#include <freeradius-devel/unlang/xlat_func.h>
51#ifdef WITH_AUTH_WINBIND
57# include <openssl/rc4.h>
66#define ACB_DISABLED 0x00010000
67#define ACB_HOMDIRREQ 0x00020000
68#define ACB_PWNOTREQ 0x00040000
69#define ACB_TEMPDUP 0x00080000
70#define ACB_NORMAL 0x00100000
71#define ACB_MNS 0x00200000
72#define ACB_DOMTRUST 0x00400000
73#define ACB_WSTRUST 0x00800000
74#define ACB_SVRTRUST 0x01000000
75#define ACB_PWNOEXP 0x02000000
76#define ACB_AUTOLOCK 0x04000000
77#define ACB_FR_EXPIRED 0x00020000
84#ifdef WITH_AUTH_WINBIND
93#ifdef WITH_AUTH_WINBIND
128#ifdef WITH_AUTH_WINBIND
134#define MSCHAP_CALL_ENV(_x) \
135static const call_env_method_t mschap_ ## _x ## _method_env = { \
136 FR_CALL_ENV_METHOD_OUT(mschap_ ## _x ## _call_env_t), \
137 .env = (call_env_parser_t[]){ \
138 { FR_CALL_ENV_SUBSECTION("attributes", NULL, CALL_ENV_FLAG_REQUIRED, _x ## _call_env) }, \
139 CALL_ENV_TERMINATOR \
143#define MSCHAP_COMMON_CALL_ENV(_x) \
144{ FR_CALL_ENV_PARSE_ONLY_OFFSET("chap_challenge", FR_TYPE_OCTETS, CALL_ENV_FLAG_ATTRIBUTE | CALL_ENV_FLAG_REQUIRED, mschap_ ## _x ## _call_env_t, chap_challenge), \
145 .pair.dflt = "Vendor-Specific.Microsoft.CHAP-Challenge", .pair.dflt_quote = T_BARE_WORD }, \
146{ FR_CALL_ENV_PARSE_ONLY_OFFSET("chap_response", FR_TYPE_OCTETS, CALL_ENV_FLAG_ATTRIBUTE | CALL_ENV_FLAG_REQUIRED, mschap_ ## _x ## _call_env_t, chap_response), \
147 .pair.dflt = "Vendor-Specific.Microsoft.CHAP-Response", .pair.dflt_quote = T_BARE_WORD }, \
148{ FR_CALL_ENV_PARSE_ONLY_OFFSET("chap2_response", FR_TYPE_OCTETS, CALL_ENV_FLAG_ATTRIBUTE | CALL_ENV_FLAG_REQUIRED, mschap_ ## _x ## _call_env_t, chap2_response), \
149 .pair.dflt = "Vendor-Specific.Microsoft.CHAP2-Response", .pair.dflt_quote = T_BARE_WORD }
151#define MSCHAP_OPT_CALL_ENV(_opt, _x) \
152{ FR_CALL_ENV_PARSE_ONLY_OFFSET(STRINGIFY(_opt), FR_TYPE_OCTETS, CALL_ENV_FLAG_ATTRIBUTE, mschap_ ## _x ## _call_env_t, _opt) }
269 REDEBUG(
"No user identity found in current request");
284 if (*p !=
'[')
return 0;
286 for (p++; *p && !
done; p++) {
378 bool tainted =
false;
386 if (
strncasecmp(arg->vb_strvalue,
"Challenge", 9) == 0) {
389 if (!chap_challenge) {
390 REDEBUG(
"No MS-CHAP-Challenge in the request");
393 tainted = chap_challenge->vp_tainted;
399 if (chap_challenge->vp_length == 8) {
400 RDEBUG2(
"mschap1: %02x", chap_challenge->vp_octets[0]);
401 data = chap_challenge->vp_octets;
408 }
else if (chap_challenge->vp_length == 16) {
411 char const *username_str;
417 REDEBUG(
"Vendor-Specific.Microsoft.CHAP2-Response is required to calculate MS-CHAPv1 challenge");
430 if (response->vp_length < 50) {
431 REDEBUG(
"Vendor-Specific.Microsoft.CHAP-Response has the wrong format");
448 name_vp = response_name ? response_name : user_name;
453 username_str = memchr(name_vp->vp_strvalue,
'\\', name_vp->vp_length);
454 if (username_str != NULL) {
455 if (
inst->with_ntdomain_hack) {
458 RWDEBUG2(
"NT Domain delimiter found, should 'with_ntdomain_hack' be enabled?");
459 username_str = name_vp->vp_strvalue;
462 username_str = name_vp->vp_strvalue;
464 username_len = name_vp->vp_length - (username_str - name_vp->vp_strvalue);
467 ((user_name->vp_length != response_name->vp_length) ||
468 (memcmp(user_name->vp_strvalue, response_name->vp_strvalue, user_name->vp_length) != 0))) {
469 RWDEBUG2(
"%pP is not the same as %pP from EAP-MSCHAPv2", user_name, response_name);
477 RDEBUG2(
"Creating challenge with username \"%pV\"",
480 username_str, username_len);
484 REDEBUG(
"Invalid MS-CHAP challenge length");
492 }
else if (
strncasecmp(arg->vb_strvalue,
"NT-Response", 11) == 0) {
498 REDEBUG(
"No MS-CHAP-Response or MS-CHAP2-Response was found in the request");
501 tainted = response->vp_tainted;
508 REDEBUG(
"No NT-Response in MS-CHAP-Response");
512 if (response->vp_length < 50) {
513 REDEBUG(
"Vendor-Specific.Microsoft.CHAP-Response has the wrong format");
522 data = response->vp_octets + 26;
529 }
else if (
strncasecmp(arg->vb_strvalue,
"LM-Response", 11) == 0) {
533 REDEBUG(
"No MS-CHAP-Response was found in the request");
536 tainted = response->vp_tainted;
538 if (response->vp_length < 50) {
539 REDEBUG(
"Vendor-Specific.Microsoft.CHAP-Response has the wrong format");
546 if ((response->vp_octets[1] & 0x01) != 0) {
547 REDEBUG(
"No LM-Response in MS-CHAP-Response");
550 data = response->vp_octets + 2;
558 }
else if (
strncasecmp(arg->vb_strvalue,
"Domain-Name", 11) == 0) {
570 if (strncmp(user_name->vp_strvalue,
"host/", 5) == 0) {
577 p = strchr(user_name->vp_strvalue,
'.');
579 RDEBUG2(
"setting Domain-Name to same as machine name");
587 p = strchr(user_name->vp_strvalue,
'\\');
589 REDEBUG(
"No domain name was found in the User-Name");
608 }
else if (
strncasecmp(arg->vb_strvalue,
"NT-Domain", 9) == 0) {
620 if (strncmp(user_name->vp_strvalue,
"host/", 5) == 0) {
627 p = strchr(user_name->vp_strvalue,
'.');
629 RDEBUG2(
"setting NT-Domain to same as machine name");
643 p = strchr(user_name->vp_strvalue,
'\\');
645 REDEBUG(
"No NT-Domain was found in the User-Name");
664 }
else if (
strncasecmp(arg->vb_strvalue,
"User-Name", 9) == 0) {
676 if (strncmp(user_name->vp_strvalue,
"host/", 5) == 0) {
677 p = user_name->vp_strvalue + 5;
700 p = strchr(user_name->vp_strvalue,
'\\');
704 p = user_name->vp_strvalue;
715 }
else if (
strncasecmp(arg->vb_strvalue,
"NT-Hash", 7) == 0) {
716 arg = fr_value_box_list_next(
in, arg);
717 if ((!arg) || (arg->vb_length == 0))
721 REDEBUG(
"Failed generating Password.NT");
728 RDEBUG2(
"NT-Hash of \"known-good\" password: %pV", vb);
735 }
else if (
strncasecmp(arg->vb_strvalue,
"LM-Hash", 7) == 0) {
736 arg = fr_value_box_list_next(
in, arg);
737 if ((!arg) || (arg->vb_length == 0))
744 RDEBUG2(
"LM-Hash of %s = %pV", arg->vb_strvalue, vb);
748 REDEBUG(
"Unknown expansion string '%pV'", arg);
756 RWDEBUG2(
"Failed to do anything intelligent");
768#ifdef WITH_AUTH_WINBIND
774 wbcCtxFree(wbctx->
ctx);
783 wbctx->
ctx = wbcCtxCreate();
811static int write_all(
int fd,
char const *buf,
size_t len)
814 char const *end = buf + len;
819 slen = write(fd, p, end - p);
820 if (slen <= 0)
return -1;
822 fr_assert((
size_t) slen <= (
size_t) (end - p));
827 if (write(fd,
"\n", 1) <= 0)
return -1;
867 int status, len, to_child=-1, from_child=-1;
868 pid_t pid, child_pid;
873 RDEBUG2(
"Doing MS-CHAPv2 password change via ntlm_auth helper");
881 REDEBUG(
"could not exec ntlm_auth cpw command");
889 vb = fr_value_box_list_head(&cpw_ctx->
cpw_user);
890 if (!vb)
goto ntlm_auth_err;
892 if (
write_all(to_child, vb->vb_strvalue, vb->vb_length) < 0) {
893 REDEBUG(
"Failed to write username to child");
898 vb = fr_value_box_list_head(&cpw_ctx->
cpw_domain);
899 if (!vb)
goto no_domain;
901 if (
write_all(to_child, vb->vb_strvalue, vb->vb_length) < 0) {
902 REDEBUG(
"Failed to write domain to child");
907 RWDEBUG2(
"No ntlm_auth domain set, username must be full-username to work");
911 size =
snprintf(buf,
sizeof(buf),
"new-nt-password-blob: ");
914 if (
write_all(to_child, buf, size) < 0) {
915 RDEBUG2(
"failed to write new password blob to child");
919 size =
snprintf(buf,
sizeof(buf),
"old-nt-hash-blob: ");
922 if (
write_all(to_child, buf, size) < 0) {
923 REDEBUG(
"Failed to write old hash blob to child");
931 size =
snprintf(buf,
sizeof(buf),
"new-lm-password-blob: %01032i", 0);
932 if (
write_all(to_child, buf, size) < 0) {
933 REDEBUG(
"Failed to write dummy LM password to child");
936 size =
snprintf(buf,
sizeof(buf),
"old-lm-hash-blob: %032i", 0);
937 if (
write_all(to_child, buf, size) < 0) {
938 REDEBUG(
"Failed to write dummy LM hash to child");
942 REDEBUG(
"Failed to send finish to child");
954 REDEBUG(
"Failure reading from child");
961 RDEBUG2(
"ntlm_auth said: %s", buf);
963 child_pid = waitpid(pid, &status, 0);
964 if (child_pid == 0) {
965 REDEBUG(
"Timeout waiting for child");
968 if (child_pid != pid) {
973 if (strstr(buf,
"Password-Change: Yes")) {
974 RDEBUG2(
"ntlm_auth password change succeeded");
978 pmsg = strstr(buf,
"Password-Change-Error: ");
980 emsg =
strsep(&pmsg,
"\n");
982 emsg =
"could not find error";
984 REDEBUG(
"ntlm auth password change failed: %s", emsg);
1008 RDEBUG2(
"Doing MS-CHAPv2 password change locally");
1014 }
else if (vb->vb_length == 0) {
1015 REDEBUG(
"Local MS-CHAPv2 password change - didn't give any result, assuming failure");
1019 RDEBUG2(
"MS-CHAPv2 password change succeeded: %pV", vb);
1035 REDEBUG(
"MS-CHAPv2 password change not configured");
1058 switch (auth_ctx->
method) {
1071 REDEBUG(
"FAILED: No Password.NT/LM. Cannot perform authentication");
1102 true,
true,
inst->ntlm_auth_timeout);
1111 p = strcasestr(
buffer,
"0xC0000");
1116 if (strcmp(p,
"224") == 0) {
1119 }
else if (strcmp(p,
"234") == 0) {
1122 }
else if (strcmp(p,
"072") == 0) {
1142 if (strcasestr(
buffer,
"0xC0000224") ||
1143 strcasestr(
buffer,
"Password expired") ||
1144 strcasestr(
buffer,
"Password has expired") ||
1145 strcasestr(
buffer,
"Password must be changed") ||
1146 strcasestr(
buffer,
"Must change password")) {
1150 if (strcasestr(
buffer,
"0xC0000234") ||
1151 strcasestr(
buffer,
"Account locked out")) {
1156 if (strcasestr(
buffer,
"0xC0000072") ||
1157 strcasestr(
buffer,
"Account disabled")) {
1162 if (strcasestr(
buffer,
"0xC000005E") ||
1163 strcasestr(
buffer,
"No logon servers")) {
1168 if (strcasestr(
buffer,
"could not obtain winbind separator") ||
1169 strcasestr(
buffer,
"Reading winbind reply failed")) {
1174 RDEBUG2(
"External script failed");
1175 p = strchr(
buffer,
'\n');
1188 if (memcmp(
buffer,
"NT_KEY: ", 8) != 0) {
1189 REDEBUG(
"Invalid output from ntlm_auth: expecting 'NT_KEY: ' prefix");
1196 len = strlen(
buffer + 8);
1198 REDEBUG2(
"Invalid output from ntlm_auth: NT_KEY too short, expected 32 bytes got %zu bytes",
1209 REDEBUG(
"Invalid output from ntlm_auth: NT_KEY has non-hex values");
1215#ifdef WITH_AUTH_WINBIND
1224 RERROR(
"Internal error: Unknown mschap auth method (%d)", auth_ctx->
method);
1236 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
1237 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
1238 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
1239 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
1242 { 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2,
1243 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2,
1244 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2,
1245 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2 };
1248 { 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x74,
1249 0x68, 0x65, 0x20, 0x4d, 0x50, 0x50, 0x45, 0x20, 0x4d,
1250 0x61, 0x73, 0x74, 0x65, 0x72, 0x20, 0x4b, 0x65, 0x79 };
1253 { 0x4f, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x6c, 0x69,
1254 0x65, 0x6e, 0x74, 0x20, 0x73, 0x69, 0x64, 0x65, 0x2c, 0x20,
1255 0x74, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x74, 0x68,
1256 0x65, 0x20, 0x73, 0x65, 0x6e, 0x64, 0x20, 0x6b, 0x65, 0x79,
1257 0x3b, 0x20, 0x6f, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x73,
1258 0x65, 0x72, 0x76, 0x65, 0x72, 0x20, 0x73, 0x69, 0x64, 0x65,
1259 0x2c, 0x20, 0x69, 0x74, 0x20, 0x69, 0x73, 0x20, 0x74, 0x68,
1260 0x65, 0x20, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x20,
1261 0x6b, 0x65, 0x79, 0x2e };
1264 { 0x4f, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x6c, 0x69,
1265 0x65, 0x6e, 0x74, 0x20, 0x73, 0x69, 0x64, 0x65, 0x2c, 0x20,
1266 0x74, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x74, 0x68,
1267 0x65, 0x20, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x20,
1268 0x6b, 0x65, 0x79, 0x3b, 0x20, 0x6f, 0x6e, 0x20, 0x74, 0x68,
1269 0x65, 0x20, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x20, 0x73,
1270 0x69, 0x64, 0x65, 0x2c, 0x20, 0x69, 0x74, 0x20, 0x69, 0x73,
1271 0x20, 0x74, 0x68, 0x65, 0x20, 0x73, 0x65, 0x6e, 0x64, 0x20,
1272 0x6b, 0x65, 0x79, 0x2e };
1287 memcpy(masterkey, digest, 16);
1292 int keylen,
int issend)
1298 memset(digest, 0, 20);
1313 memcpy(sesskey, digest, keylen);
1345 memcpy (sendkey, enckey1, 16);
1346 memcpy (recvkey, enckey2, 16);
1375 RDEBUG2(
"Found MS-CHAP-Challenge, but no MS-CHAP response or Change-Password");
1379 if (!
inst->auth_type) {
1380 WARN(
"No 'authenticate %s {...}' section or 'Auth-Type = %s' set. Cannot setup MS-CHAP authentication",
1391 unsigned char ident,
int mschap_result,
int mschap_version,
fr_pair_t *smb_ctrl,
1397 char const *message = NULL;
1400 char new_challenge[33],
buffer[128];
1403 if ((mschap_result == -648) ||
1404 ((mschap_result == 0) &&
1406 REDEBUG(
"Password has expired. User should retry authentication");
1413 message =
"Password expired";
1422 }
else if ((mschap_result == -691) ||
1423 (smb_ctrl && (((smb_ctrl->vp_uint32 &
ACB_DISABLED) != 0) ||
1425 REDEBUG(
"SMB-Account-Ctrl (or ntlm_auth) "
1426 "says that the account is disabled, "
1427 "or is not a normal or workstation trust account");
1430 message =
"Account disabled";
1436 }
else if ((mschap_result == -647) ||
1437 (smb_ctrl && ((smb_ctrl->vp_uint32 &
ACB_AUTOLOCK) != 0))) {
1438 REDEBUG(
"SMB-Account-Ctrl (or ntlm_auth) "
1439 "says that the account is locked out");
1442 message =
"Account locked out";
1445 }
else if (mschap_result < 0) {
1448 retry =
inst->allow_retry;
1449 message =
"Authentication failed";
1455 switch (mschap_version) {
1457 for (p = new_challenge, i = 0; i < 2; i++) p +=
snprintf(p, 9,
"%08x",
fr_rand());
1459 error, retry, new_challenge);
1463 for (p = new_challenge, i = 0; i < 4; i++) p +=
snprintf(p, 9,
"%08x",
fr_rand());
1465 error, retry, new_challenge, message);
1506 if (request->parent) {
1510 if (password)
goto found_password;
1516 REDEBUG2(
"No control.%s.%s or control.%s.%s found. Cannot create Password.NT",
1540 RERROR(
"Failed generating Password.NT");
1542 if (ephemeral) TALLOC_FREE(password);
1547 RDEBUG3(
"Hashed control.%pP to create %s = %pV",
1553 if (ephemeral) TALLOC_FREE(password);
1563 RDEBUG3(
"Found control.%pP", password);
1590 REDEBUG(
"Password change failed");
1601 RDEBUG2(
"Password change successful");
1614 int seq, new_nt_enc_len;
1624 RDEBUG2(
"MS-CHAPv2 password change request received");
1626 if (auth_ctx->
cpw->vp_length != 68) {
1627 REDEBUG(
"%s has the wrong format: length %zu != 68", env_data->
chap2_cpw->name, auth_ctx->
cpw->vp_length);
1631 if (auth_ctx->
cpw->vp_octets[0] != 7) {
1632 REDEBUG(
"%s has the wrong format: code %d != 7", env_data->
chap2_cpw->name, auth_ctx->
cpw->vp_octets[0]);
1649 for (seq = 1; seq < 4; seq++) {
1654 if (nt_enc->vp_length < 4) {
1659 if (nt_enc->vp_octets[0] != 6) {
1664 if ((nt_enc->vp_octets[2] == 0) && (nt_enc->vp_octets[3] == seq)) {
1675 if ((new_nt_enc_len + nt_enc->vp_length - 4) >
sizeof(cpw_ctx->
new_nt_encrypted)) {
1680 memcpy(cpw_ctx->
new_nt_encrypted + new_nt_enc_len, nt_enc->vp_octets + 4, nt_enc->vp_length - 4);
1681 new_nt_enc_len += nt_enc->vp_length - 4;
1684 if (new_nt_enc_len != 516) {
1685 REDEBUG(
"Unpacked %s length is %d - should be 516", env_data->
chap_nt_enc_pw->name, new_nt_enc_len);
1705 RDEBUG2(
"Password change payload valid");
1719 *mschap_version = 1;
1721 RDEBUG2(
"Processing MS-CHAPv1 response");
1726 if (challenge->vp_length < 8) {
1734 if (response->vp_length < 50) {
1743 if (!(response->vp_octets[1] & 0x01)) {
1744 REDEBUG2(
"Client used unsupported method LM-Password");
1753 mschap_result =
do_mschap(
inst, request, auth_ctx, challenge->vp_octets, response->vp_octets + offset, nthashhash);
1758 return mschap_error(p_result,
inst, request, *response->vp_octets, mschap_result, *mschap_version, auth_ctx->
smb_ctrl, env_data);
1768 fr_pair_t *user_name, *name_vp, *response_name, *peer_challenge_attr;
1769 uint8_t const *peer_challenge;
1770 char const *username_str;
1771 size_t username_len;
1776 *mschap_version = 2;
1778 RDEBUG2(
"Processing MS-CHAPv2 response");
1783 if (challenge->vp_length < 16) {
1791 if (response->vp_length < 50) {
1812 name_vp = response_name ? response_name : user_name;
1817 if ((username_str = strchr(name_vp->vp_strvalue,
'\\')) != NULL) {
1818 if (
inst->with_ntdomain_hack) {
1821 RWDEBUG2(
"NT Domain delimiter found, should 'with_ntdomain_hack' be enabled?");
1822 username_str = name_vp->vp_strvalue;
1825 username_str = name_vp->vp_strvalue;
1827 username_len = name_vp->vp_length - (username_str - name_vp->vp_strvalue);
1829 if (response_name && ((user_name->vp_length != response_name->vp_length) ||
1830 (
strncasecmp(user_name->vp_strvalue, response_name->vp_strvalue, user_name->vp_length) != 0))) {
1831 RWDEBUG(
"%pP is not the same as %pP from EAP-MSCHAPv2", user_name, response_name);
1844 RDEBUG2(
"No Password.NT available. Trying OpenDirectory Authentication");
1845 od_mschap_auth(p_result, request, challenge, user_name, env_data);
1849 peer_challenge = response->vp_octets + 2;
1852 if (peer_challenge_attr) {
1853 RDEBUG2(
"Overriding peer challenge");
1854 peer_challenge = peer_challenge_attr->vp_octets;
1864 RDEBUG2(
"Creating challenge with username \"%pV\"",
1868 challenge->vp_octets,
1869 username_str, username_len);
1871 mschap_result =
do_mschap(
inst, request, auth_ctx, mschap_challenge, response->vp_octets + 26, nthashhash);
1877 mschap_result, *mschap_version, auth_ctx->
smb_ctrl, env_data);
1880#ifdef WITH_AUTH_WINBIND
1881 if (
inst->wb_retry_with_normalised_username) {
1883 if (response_name) {
1884 if (strcmp(username_str, response_name->vp_strvalue)) {
1885 RDEBUG2(
"Normalising username %pV -> %pV",
1887 &response_name->data);
1888 username_str = response_name->vp_strvalue;
1897 response->vp_octets + 26,
1899 challenge->vp_octets,
1919 int mschap_version = 0;
1923 if (auth_ctx->
cpw) {
1930 REDEBUG(
"Missing Password.NT - required for change password request");
1934 REDEBUG(
"chap_nt_enc_pw option is not set - required for change password request");
1947 RDEBUG2(
"Clearing expiry bit in SMB-Acct-Ctrl to allow authentication");
1948 auth_ctx->
smb_ctrl->vp_uint32 &= ~ACB_FR_EXPIRED;
1960 p[0] = auth_ctx->
cpw->vp_octets[1];
1963 memcpy(p + 2, auth_ctx->
cpw->vp_octets + 18, 48);
1968 REDEBUG(
"control.Auth-Type = %s set for a request that does not contain %s",
1985 &mschap_version, nthashhash,
1988 challenge, response);
1992 &mschap_version, nthashhash,
1995 challenge, response);
1998 REDEBUG(
"control.Auth-Type = %s set for a request that does not contain %s or %s attributes",
2005 if (
inst->use_mppe) {
2010 switch (mschap_version) {
2012 RDEBUG2(
"Generating MS-CHAPv1 MPPE keys");
2013 memset(mppe_sendkey, 0, 32);
2032 RDEBUG2(
"Generating MS-CHAPv2 MPPE keys");
2045 vp->vp_uint32 =
inst->require_encryption ? 2 : 1;
2048 vp->vp_uint32 =
inst->require_strong ? 4 : 6;
2061 EVP_CIPHER_CTX *evp_ctx;
2063 int c, ntlen =
sizeof(nt_pass_decrypted);
2064 size_t passlen, i = 0, len = 0;
2069 MEM(evp_ctx = EVP_CIPHER_CTX_new());
2071 if (
unlikely(EVP_EncryptInit_ex(evp_ctx, EVP_rc4(), NULL, auth_ctx->
nt_password->vp_octets, NULL) != 1)) {
2072 EVP_CIPHER_CTX_free(evp_ctx);
2073 fr_tls_strerror_printf(NULL);
2074 RPERROR(
"Failed initialising RC4 ctx");
2078 if (
unlikely(EVP_CIPHER_CTX_set_key_length(evp_ctx, auth_ctx->
nt_password->vp_length) != 1)) {
2079 EVP_CIPHER_CTX_free(evp_ctx);
2080 fr_tls_strerror_printf(NULL);
2081 RPERROR(
"Failed setting key length");
2086 EVP_CIPHER_CTX_free(evp_ctx);
2087 fr_tls_strerror_printf(NULL);
2088 RPERROR(
"Failed ingesting new password");
2092 EVP_CIPHER_CTX_free(evp_ctx);
2100 passlen = nt_pass_decrypted[512];
2101 passlen += nt_pass_decrypted[513] << 8;
2102 if ((nt_pass_decrypted[514] != 0) ||
2103 (nt_pass_decrypted[515] != 0)) {
2104 REDEBUG(
"Decrypted new password blob claims length > 65536, probably an invalid Password.NT");
2111 if (passlen > 512) {
2112 REDEBUG(
"Decrypted new password blob claims length %zu > 512, "
2113 "probably an invalid Password.NT", passlen);
2117 p = nt_pass_decrypted + 512 - passlen;
2134 REDEBUG(
"Old NT hash value from client does not match our value");
2147 new_pass->vp_length = 0;
2149 while (i < passlen) {
2158 }
else if (c <= 0x7ff) {
2171 while (i < passlen) {
2181 }
else if (c < 0x7ff) {
2182 *x++ = 0xc0 + (c >> 6);
2183 *x++ = 0x80 + (c & 0x3f);
2186 *x++ = 0xe0 + (c >> 12);
2187 *x++ = 0x80 + ((c>>6) & 0x3f);
2188 *x++ = 0x80 + (c & 0x3f);
2216#ifdef WITH_AUTH_WINBIND
2217 rlm_mschap_thread_t *t = talloc_get_type_abort(mctx->
thread, rlm_mschap_thread_t);
2231 .method =
inst->method,
2232 .env_data = env_data,
2233#ifdef WITH_AUTH_WINBIND
2256 if (smb_account_ctrl_text) {
2271 RDEBUG2(
"SMB-Account-Ctrl says no password is required");
2291 if (auth_ctx->
cpw) {
2296 REDEBUG(
"Missing Password.NT - required for change password request");
2302 switch (auth_ctx->
method) {
2316 REDEBUG(
"Local MS-CHAPv2 password changes require OpenSSL support");
2322 REDEBUG(
"No ntlm_auth username set, passchange will definitely fail!");
2360 our_mctx.
rctx = auth_ctx;
2376 if (!
inst->auth_type) {
2377 WARN(
"Failed to find 'authenticate %s {...}' section. MS-CHAP authentication will likely not work",
2386 if (
inst->wb_username) {
2387#ifdef WITH_AUTH_WINBIND
2388 inst->method = AUTH_WBCLIENT;
2396 if (
inst->ntlm_auth) {
2400 switch (
inst->method) {
2402 DEBUG(
"Using internal authentication");
2405 DEBUG(
"Using auto password or ntlm_auth");
2408 DEBUG(
"Authenticating by calling 'ntlm_auth'");
2410#ifdef WITH_AUTH_WINBIND
2412 DEBUG(
"Authenticating directly to winbind");
2424 cf_log_err(
conf,
"ntml_auth_timeout '%pVs' is too small (minimum: 1s)",
2429 cf_log_err(
conf,
"ntlm_auth_timeout '%pVs' is too large (maximum: 10s)",
2434#define CHECK_OPTION(_option) cp = cf_pair_find(attrs, STRINGIFY(_option)); \
2436 WARN("Missing option \"" STRINGIFY(_option) "\", setting use_mppe to \"no\""); \
2437 inst->use_mppe = false; \
2438 goto done_mppe_check; \
2445 if (
inst->use_mppe) {
2475#ifdef WITH_AUTH_WINBIND
2479 rlm_mschap_thread_t *t = talloc_get_type_abort(mctx->
thread, rlm_mschap_thread_t);
2482 if (!(t->slab = mschap_slab_list_alloc(t, mctx->
el, &
inst->reuse,
winbind_ctx_alloc, NULL, NULL,
false,
false))) {
2483 ERROR(
"Connection handle pool instantiation failed");
2492 rlm_mschap_thread_t *t = talloc_get_type_abort(mctx->
thread, rlm_mschap_thread_t);
2507#ifdef WITH_AUTH_WINBIND
2508 .thread_inst_size =
sizeof(rlm_mschap_thread_t),
unlang_action_t
Returned by unlang_op_t calls, determine the next action of the interpreter.
@ UNLANG_ACTION_PUSHED_CHILD
unlang_t pushed a new child onto the stack, execute it instead of continuing.
@ UNLANG_ACTION_FAIL
Encountered an unexpected error.
@ UNLANG_ACTION_CALCULATE_RESULT
Calculate a new section rlm_rcode_t value.
static int const char char buffer[256]
int do_auth_wbclient(rlm_mschap_t const *inst, request_t *request, uint8_t const *challenge, uint8_t const *response, uint8_t nthashhash[NT_DIGEST_LENGTH], mschap_auth_ctx_t *auth_ctx)
Check NTLM authentication direct to winbind via Samba's libwbclient library.
#define fr_base16_encode(_out, _in)
#define fr_base16_decode(_err, _out, _in, _no_trailing)
#define USES_APPLE_DEPRECATED_API
#define CALL_ENV_TERMINATOR
#define FR_CALL_ENV_METHOD_OUT(_inst)
Helper macro for populating the size/type fields of a call_env_method_t from the output structure typ...
call_env_parser_t const * env
Parsing rules for call method env.
#define FR_CALL_ENV_SUBSECTION(_name, _name2, _flags, _subcs)
Specify a call_env_parser_t which defines a nested subsection.
@ CALL_ENV_FLAG_SUBSECTION
This is a subsection.
@ CALL_ENV_FLAG_ATTRIBUTE
Tmpl MUST contain an attribute reference.
@ CALL_ENV_FLAG_REQUIRED
Associated conf pair or section is required.
@ CALL_ENV_FLAG_NULLABLE
Tmpl expansions are allowed to produce no output.
#define FR_CALL_ENV_OFFSET(_name, _cast_type, _flags, _struct, _field)
Specify a call_env_parser_t which writes out runtime results to the specified field.
#define FR_CALL_ENV_PARSE_ONLY_OFFSET(_name, _cast_type, _flags, _struct, _parse_field)
Specify a call_env_parser_t which writes out the result of the parsing phase to the field specified.
#define CONF_PARSER_TERMINATOR
#define FR_CONF_DEPRECATED(_name, _struct, _field)
conf_parser_t entry which raises an error if a matching CONF_PAIR is found
#define FR_CONF_OFFSET(_name, _struct, _field)
conf_parser_t which parses a single CONF_PAIR, writing the result to a field in a struct
#define FR_CONF_POINTER(_name, _type, _flags, _res_p)
conf_parser_t which parses a single CONF_PAIR producing a single global result
#define FR_CONF_OFFSET_FLAGS(_name, _flags, _struct, _field)
conf_parser_t which parses a single CONF_PAIR, writing the result to a field in a struct
#define FR_CONF_OFFSET_SUBSECTION(_name, _flags, _struct, _field, _subcs)
conf_parser_t which populates a sub-struct using a CONF_SECTION
@ CONF_FLAG_XLAT
string will be dynamically expanded.
@ CONF_FLAG_SUBSECTION
Instead of putting the information into a configuration structure, the configuration file routines MA...
Defines a CONF_PAIR to C data type mapping.
Configuration AVP similar to a fr_pair_t.
A section grouping multiple CONF_PAIR.
CONF_SECTION * cf_section_find(CONF_SECTION const *cs, char const *name1, char const *name2)
Find a CONF_SECTION with name1 and optionally name2.
#define cf_log_err(_cf, _fmt,...)
#define FR_DBUFF_TMP(_start, _len_or_end)
Creates a compound literal to pass into functions which accept a dbuff.
static int fr_dcursor_append(fr_dcursor_t *cursor, void *v)
Insert a single item at the end of the list.
fr_dict_attr_t const ** out
Where to write a pointer to the resolved fr_dict_attr_t.
fr_dict_t const ** out
Where to write a pointer to the loaded/resolved fr_dict_t.
#define DICT_AUTOLOAD_TERMINATOR
fr_dict_enum_value_t const * fr_dict_enum_by_name(fr_dict_attr_t const *da, char const *name, ssize_t len)
Specifies an attribute which must be present for the module to function.
Specifies a dictionary which must be loaded/loadable for the module to function.
#define MODULE_MAGIC_INIT
Stop people using different module/library/server versions together.
#define EXEC_TIMEOUT
Default wait time for exec calls (in seconds).
int radius_exec_program_legacy(char *out, size_t outlen, request_t *request, char const *cmd, fr_pair_list_t *input_pairs, bool exec_wait, bool shell_escape, fr_time_delta_t timeout)
Execute a program.
pid_t radius_start_program_legacy(int *stdin_fd, int *stdout_fd, int *stderr_fd, char const *cmd, request_t *request, bool exec_wait, fr_pair_list_t *input_pairs, bool shell_escape)
Start a process.
int radius_readfrom_program_legacy(int fd, pid_t pid, fr_time_delta_t timeout, char *answer, int left)
Read from the child process.
static xlat_action_t mschap_xlat(TALLOC_CTX *ctx, fr_dcursor_t *out, xlat_ctx_t const *xctx, request_t *request, fr_value_box_list_t *in)
Get data from MSCHAP attributes.
TALLOC_CTX * unlang_interpret_frame_talloc_ctx(request_t *request)
Get a talloc_ctx which is valid only for this frame.
rlm_rcode_t rcode
The current rcode, from executing the instruction or merging the result from a frame.
#define REXDENT()
Exdent (unindent) R* messages by one level.
#define RHEXDUMP1(_data, _len, _fmt,...)
#define RDEBUG_ENABLED3
True if request debug level 1-3 messages are enabled.
#define RWDEBUG2(fmt,...)
#define REDEBUG2(fmt,...)
#define RINDENT()
Indent R* messages by one level.
void fr_md4_calc(uint8_t out[static MD4_DIGEST_LENGTH], uint8_t const *in, size_t inlen)
Calculate the MD4 hash of the contents of a buffer.
#define MD4_DIGEST_LENGTH
@ FR_TYPE_STRING
String of printable characters.
@ FR_TYPE_UINT8
8 Bit unsigned integer.
@ FR_TYPE_UINT32
32 Bit unsigned integer.
@ FR_TYPE_OCTETS
Raw octets.
int fr_digest_cmp(uint8_t const *a, uint8_t const *b, size_t length)
Do a comparison of two authentication digests by comparing the FULL data.
int strncasecmp(char *s1, char *s2, int n)
char * strsep(char **stringp, char const *delim)
int strcasecmp(char *s1, char *s2)
void * env_data
Per call environment data.
module_instance_t const * mi
Instance of the module being instantiated.
void * thread
Thread specific instance data.
void * rctx
Resume ctx that a module previously set.
fr_event_list_t * el
Event list to register any IO handlers and timers against.
void * thread
Thread instance data.
module_instance_t const * mi
Instance of the module being instantiated.
module_instance_t * mi
Instance of the module being instantiated.
Temporary structure to hold arguments for module calls.
Temporary structure to hold arguments for instantiation calls.
Temporary structure to hold arguments for thread_instantiation calls.
xlat_t * module_rlm_xlat_register(TALLOC_CTX *ctx, module_inst_ctx_t const *mctx, char const *name, xlat_func_t func, fr_type_t return_type)
bool module_rlm_section_type_set(request_t *request, fr_dict_attr_t const *type_da, fr_dict_enum_value_t const *enumv)
Set the next section type if it's not already set.
module_t common
Common fields presented by all modules.
int mschap_nt_password_hash(uint8_t out[static NT_DIGEST_LENGTH], char const *password)
Converts Unicode password to 16-byte NT hash with MD4.
void mschap_add_reply(request_t *request, uint8_t ident, fr_dict_attr_t const *da, char const *value, size_t len)
void mschap_auth_response(char const *username, size_t username_len, uint8_t const *nt_hash_hash, uint8_t const *ntresponse, uint8_t const *peer_challenge, uint8_t const *auth_challenge, char *response)
void mschap_challenge_hash(uint8_t challenge[static MSCHAP_CHALLENGE_LENGTH], uint8_t const peer_challenge[static MSCHAP_PEER_CHALLENGE_LENGTH], uint8_t const auth_challenge[static MSCHAP_PEER_AUTHENTICATOR_CHALLENGE_LENGTH], char const *user_name, size_t user_name_len)
int fr_pair_value_memdup(fr_pair_t *vp, uint8_t const *src, size_t len, bool tainted)
Copy data into an "octets" data type.
fr_pair_t * fr_pair_find_by_da_nested(fr_pair_list_t const *list, fr_pair_t const *prev, fr_dict_attr_t const *da)
Find a pair with a matching fr_dict_attr_t, by walking the nested fr_dict_attr_t tree.
fr_pair_t * fr_pair_find_by_da(fr_pair_list_t const *list, fr_pair_t const *prev, fr_dict_attr_t const *da)
Find the first pair with a matching da.
fr_pair_t * fr_pair_parent(fr_pair_t const *vp)
Return a pointer to the parent pair.
fr_pair_t * fr_pair_afrom_da(TALLOC_CTX *ctx, fr_dict_attr_t const *da)
Dynamically allocate a new attribute and assign a fr_dict_attr_t.
int fr_pair_value_bstr_alloc(fr_pair_t *vp, char **out, size_t size, bool tainted)
Pre-allocate a memory buffer for a "string" type value pair.
int fr_pair_value_mem_alloc(fr_pair_t *vp, uint8_t **out, size_t size, bool tainted)
Pre-allocate a memory buffer for a "octets" type value pair.
static ssize_t normify(normalise_t *action, uint8_t *buffer, size_t bufflen, char const *known_good, size_t len, size_t min_len)
fr_pair_t * password_find(bool *ephemeral, TALLOC_CTX *ctx, request_t *request, fr_dict_attr_t const *allowed_attrs[], size_t allowed_attrs_len, bool normify)
Find a "known good" password in the control list of a request.
static const conf_parser_t config[]
static fr_dict_attr_t const * attr_user_name
#define pair_update_request(_attr, _da)
uint32_t fr_rand(void)
Return a 32-bit random number.
#define RETURN_UNLANG_INVALID
#define RETURN_UNLANG_RCODE(_rcode)
#define RETURN_UNLANG_FAIL
#define RETURN_UNLANG_REJECT
rlm_rcode_t
Return codes indicating the result of the module call.
@ RLM_MODULE_INVALID
The module considers the request invalid.
@ RLM_MODULE_OK
The module is OK, continue.
@ RLM_MODULE_DISALLOW
Reject the request (user is locked out).
@ RLM_MODULE_REJECT
Immediately reject the request.
@ RLM_MODULE_NOTFOUND
User not found.
@ RLM_MODULE_NOOP
Module succeeded without doing anything.
#define RETURN_UNLANG_NOOP
static int mod_thread_instantiate(module_thread_inst_ctx_t const *mctx)
static int mod_thread_detach(module_thread_inst_ctx_t const *mctx)
static const uint8_t SHSpad2[40]
fr_dict_attr_t const * attr_smb_account_ctrl
#define CHECK_OPTION(_option)
static unlang_action_t mschap_process_response(unlang_result_t *p_result, int *mschap_version, uint8_t nthashhash[static NT_DIGEST_LENGTH], rlm_mschap_t const *inst, request_t *request, mschap_auth_ctx_t *auth_ctx, fr_pair_t *challenge, fr_pair_t *response)
static const call_env_parser_t xlat_call_env[]
static void mppe_chap2_get_keys128(uint8_t const *nt_hashhash, uint8_t const *nt_response, uint8_t *sendkey, uint8_t *recvkey)
static void mppe_add_reply(UNUSED rlm_mschap_t const *inst, request_t *request, fr_dict_attr_t const *da, uint8_t const *value, size_t len)
fr_dict_attr_t const * attr_nt_password
fr_dict_attr_t const * attr_ms_chap_new_cleartext_password
fr_dict_autoload_t rlm_mschap_dict[]
#define ACB_MNS
MNS logon user account.
static const call_env_parser_t auth_call_env[]
tmpl_t const * chap_response
static unlang_action_t mschap_process_v2_response(unlang_result_t *p_result, int *mschap_version, uint8_t nthashhash[static NT_DIGEST_LENGTH], rlm_mschap_t const *inst, request_t *request, mschap_auth_ctx_t *auth_ctx, fr_pair_t *challenge, fr_pair_t *response)
fr_dict_attr_t const * attr_eap_identity
tmpl_t const * chap2_response
static unlang_action_t mschap_error(unlang_result_t *p_result, rlm_mschap_t const *inst, request_t *request, unsigned char ident, int mschap_result, int mschap_version, fr_pair_t *smb_ctrl, mschap_auth_call_env_t *env_data)
#define ACB_AUTOLOCK
Account auto locked.
#define MSCHAP_CALL_ENV(_x)
fr_dict_attr_t const * attr_smb_account_ctrl_text
static unlang_action_t mod_authenticate_resume(unlang_result_t *p_result, module_ctx_t const *mctx, request_t *request)
Complete mschap authentication after any tmpls have been expanded.
static const call_env_parser_t autz_call_env[]
#define ACB_TEMPDUP
Temporary duplicate account.
static int pdb_decode_acct_ctrl(char const *p)
static fr_dict_t const * dict_freeradius
static void mppe_GetMasterKey(uint8_t const *nt_hashhash, uint8_t const *nt_response, uint8_t *masterkey)
static const call_env_method_t mschap_auth_method_env
static int nt_password_find(TALLOC_CTX *ctx, fr_pair_t **out, rlm_mschap_t const *inst, request_t *request)
Find a Password.NT value, or create one from a Password.Cleartext, or Password.With-Header attribute.
#define ACB_FR_EXPIRED
Password Expired.
#define ACB_DISABLED
User account disabled.
static unlang_action_t mschap_process_cpw_request(unlang_result_t *p_result, rlm_mschap_t const *inst, request_t *request, mschap_auth_ctx_t *auth_ctx)
static fr_dict_t const * dict_radius
static const uint8_t magic1[27]
static int mod_bootstrap(module_inst_ctx_t const *mctx)
static const uint8_t SHSpad1[40]
fr_dict_attr_t const * attr_auth_type
fr_dict_attr_t const * attr_ms_chap_user_name
tmpl_t const * chap_response
static unlang_action_t mod_authorize(unlang_result_t *p_result, module_ctx_t const *mctx, request_t *request)
static void mppe_GetAsymmetricStartKey(uint8_t *masterkey, uint8_t *sesskey, int keylen, int issend)
static xlat_arg_parser_t const mschap_xlat_args[]
fr_dict_attr_t const * attr_ms_chap_use_ntlm_auth
#define ACB_HOMDIRREQ
Home directory required.
tmpl_t const * chap2_response
static int write_all(int fd, char const *buf, size_t len)
fr_dict_attr_t const * attr_cleartext_password
fr_dict_attr_autoload_t rlm_mschap_dict_attr[]
static unlang_action_t mod_authenticate(unlang_result_t *p_result, module_ctx_t const *mctx, request_t *request)
static const uint8_t magic3[84]
static int do_mschap_cpw(rlm_mschap_t const *inst, request_t *request, mschap_auth_ctx_t *auth_ctx, uint8_t *new_nt_password, uint8_t *old_nt_hash)
static int do_mschap(rlm_mschap_t const *inst, request_t *request, mschap_auth_ctx_t *auth_ctx, uint8_t const *challenge, uint8_t const *response, uint8_t nthashhash[static NT_DIGEST_LENGTH])
static const uint8_t magic2[84]
#define ACB_DOMTRUST
Interdomain trust account.
#define ACB_WSTRUST
Workstation trust account.
static void mppe_chap2_gen_keys128(uint8_t const *nt_hashhash, uint8_t const *response, uint8_t *sendkey, uint8_t *recvkey)
fr_dict_attr_t const * attr_ms_chap_new_nt_password
#define ACB_NORMAL
Normal user account.
tmpl_t const * chap_challenge
#define ACB_PWNOTREQ
User password not required.
static const conf_parser_t module_config[]
fr_dict_attr_t const * attr_ms_chap_peer_challenge
static int mschap_cpw_prepare(request_t *request, mschap_auth_ctx_t *auth_ctx)
Validate data required for change password requests.
#define MSCHAP_OPT_CALL_ENV(_opt, _x)
static int mod_instantiate(module_inst_ctx_t const *mctx)
#define ACB_PWNOEXP
User password does not expire.
static fr_pair_t * mschap_identity_find(request_t *request, fr_dict_attr_t const *attr_user_name)
static const conf_parser_t passchange_config[]
tmpl_t const * chap_challenge
#define MSCHAP_COMMON_CALL_ENV(_x)
#define ACB_SVRTRUST
Server trust account.
static const conf_parser_t winbind_config[]
uint8_t new_nt_encrypted[516]
MSCHAP_AUTH_METHOD method
tmpl_t const * mppe_encryption_types
tmpl_t const * ntlm_cpw_domain
tmpl_t const * ntlm_cpw_username
tmpl_t const * chap_nt_enc_pw
tmpl_t const * mppe_send_key
rlm_mschap_t const * inst
fr_value_box_list_t cpw_user
tmpl_t const * chap_response
fr_value_box_list_t cpw_domain
tmpl_t const * chap_challenge
tmpl_t const * chap2_response
fr_value_box_list_t local_cpw_result
tmpl_t const * mppe_encryption_policy
mschap_auth_call_env_t * env_data
tmpl_t const * mppe_recv_key
tmpl_t const * chap_error
uint8_t old_nt_hash[NT_DIGEST_LENGTH]
tmpl_t const * chap2_success
mschap_cpw_ctx_t * cpw_ctx
tmpl_t const * chap_mppe_keys
static int winbind_ctx_alloc(winbind_ctx_t *wbctx, UNUSED void *uctx)
static conf_parser_t reuse_winbind_config[]
static int _mod_ctx_free(winbind_ctx_t *wbctx)
#define FR_SBUFF_IN(_start, _len_or_end)
#define FR_SBUFF_OUT(_start, _len_or_end)
#define SECTION_NAME(_name1, _name2)
Define a section name consisting of a verb and a noun.
char const * name
Instance name e.g. user_database.
CONF_SECTION * conf
Module's instance configuration.
size_t inst_size
Size of the module's instance data.
void * data
Module's instance data.
void * boot
Data allocated during the boostrap phase.
#define MODULE_BINDING_TERMINATOR
Terminate a module binding list.
Named methods exported by a module.
#define pair_append_control(_attr, _da)
Allocate and append a fr_pair_t to the control list.
#define pair_update_reply(_attr, _da)
Return or allocate a fr_pair_t in the reply list.
static fr_dict_attr_t const * tmpl_attr_tail_da(tmpl_t const *vpt)
Return the last attribute reference da.
void fr_sha1_init(fr_sha1_ctx *context)
void fr_sha1_final(uint8_t digest[static SHA1_DIGEST_LENGTH], fr_sha1_ctx *context)
void fr_sha1_update(fr_sha1_ctx *context, uint8_t const *in, size_t len)
#define FR_SLAB_CONFIG_CONF_PARSER
conf_parser_t entries to populate user configurable slab values
void smbhash(unsigned char *out, unsigned char const *in, unsigned char *key)
void smbdes_mschap(uint8_t const win_password[16], uint8_t const *challenge, uint8_t *response)
void smbdes_lmpwdhash(char const *password, uint8_t *lmhash)
PUBLIC int snprintf(char *string, size_t length, char *format, va_alist)
unlang_action_t unlang_module_yield(request_t *request, module_method_t resume, unlang_module_signal_t signal, fr_signal_t sigmask, void *rctx)
Yield a request back to the interpreter from within a module.
eap_aka_sim_process_conf_t * inst
Stores an attribute, a value and various bits of other data.
fr_dict_attr_t const *_CONST da
Dictionary attribute defines the attribute number, vendor and type of the pair.
char const * fr_syserror(int num)
Guaranteed to be thread-safe version of strerror.
#define talloc_get_type_abort_const
#define fr_time_delta_lt(_a, _b)
static fr_time_delta_t fr_time_delta_from_sec(int64_t sec)
#define fr_time_delta_ispos(_a)
#define fr_time_delta_gt(_a, _b)
int unlang_tmpl_push(TALLOC_CTX *ctx, unlang_result_t *p_result, fr_value_box_list_t *out, request_t *request, tmpl_t const *tmpl, unlang_tmpl_args_t *args, bool top_frame)
Push a tmpl onto the stack for evaluation.
unsigned int required
Argument must be present, and non-empty.
#define XLAT_ARG_PARSER_TERMINATOR
@ XLAT_ACTION_FAIL
An xlat function failed.
@ XLAT_ACTION_DONE
We're done evaluating this level of nesting.
Definition for a single argument consumed by an xlat function.
#define fr_strerror_printf(_fmt,...)
Log to thread local error buffer.
int fr_value_box_asprintf(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_dict_attr_t const *enumv, bool tainted, char const *fmt,...)
Print a formatted string using our internal printf wrapper and assign it to a value box.
int fr_value_box_strdup(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_dict_attr_t const *enumv, char const *src, bool tainted)
Copy a nul terminated string to a fr_value_box_t.
int fr_value_box_memdup(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_dict_attr_t const *enumv, uint8_t const *src, size_t len, bool tainted)
Copy a buffer to a fr_value_box_t.
#define fr_box_strvalue_len(_val, _len)
#define fr_box_time_delta(_val)
#define fr_value_box_alloc_null(_ctx)
Allocate a value box for later use with a value assignment function.
static size_t char ** out
#define fr_box_octets(_val, _len)
void * env_data
Expanded call env data.
module_ctx_t const * mctx
Synthesised module calling ctx.
int xlat_func_args_set(xlat_t *x, xlat_arg_parser_t const args[])
Register the arguments of an xlat.
void xlat_func_call_env_set(xlat_t *x, call_env_method_t const *env_method)
Register call environment of an xlat.