PostgreSQL Source Code git master
Loading...
Searching...
No Matches
auth-scram.c File Reference
#include "postgres.h"
#include <unistd.h>
#include "access/xlog.h"
#include "catalog/pg_control.h"
#include "common/base64.h"
#include "common/hmac.h"
#include "common/saslprep.h"
#include "common/scram-common.h"
#include "common/sha2.h"
#include "libpq/crypt.h"
#include "libpq/sasl.h"
#include "libpq/scram.h"
#include "miscadmin.h"
Include dependency graph for auth-scram.c:

Go to the source code of this file.

Data Structures

struct  scram_state
 

Enumerations

enum  scram_state_enum { SCRAM_AUTH_INIT , SCRAM_AUTH_SALT_SENT , SCRAM_AUTH_FINISHED }
 

Functions

static void scram_get_mechanisms (Port *port, StringInfo buf)
 
static voidscram_init (Port *port, const char *selected_mech, const char *shadow_pass)
 
static int scram_exchange (void *opaq, const char *input, int inputlen, char **output, int *outputlen, const char **logdetail)
 
static void read_client_first_message (scram_state *state, const char *input)
 
static void read_client_final_message (scram_state *state, const char *input)
 
static charbuild_server_first_message (scram_state *state)
 
static charbuild_server_final_message (scram_state *state)
 
static bool verify_client_proof (scram_state *state)
 
static bool verify_final_nonce (scram_state *state)
 
static void mock_scram_secret (const char *username, pg_cryptohash_type *hash_type, int *iterations, int *key_length, char **salt, uint8 *stored_key, uint8 *server_key)
 
static bool is_scram_printable (char *p)
 
static charsanitize_char (char c)
 
static charsanitize_str (const char *s)
 
static uint8scram_mock_salt (const char *username, pg_cryptohash_type hash_type, int key_length)
 
charpg_be_scram_build_secret (const char *password)
 
bool scram_verify_plain_password (const char *username, const char *password, const char *secret)
 
bool parse_scram_secret (const char *secret, int *iterations, pg_cryptohash_type *hash_type, int *key_length, char **salt, uint8 *stored_key, uint8 *server_key)
 
static charread_attr_value (char **input, char attr)
 
static charread_any_attr (char **input, char *attr_p)
 

Variables

const pg_be_sasl_mech pg_be_scram_mech
 
int scram_sha_256_iterations = SCRAM_SHA_256_DEFAULT_ITERATIONS
 

Enumeration Type Documentation

◆ scram_state_enum

Enumerator
SCRAM_AUTH_INIT 
SCRAM_AUTH_SALT_SENT 
SCRAM_AUTH_FINISHED 

Definition at line 126 of file auth-scram.c.

127{
scram_state_enum
Definition auth-scram.c:127
@ SCRAM_AUTH_SALT_SENT
Definition auth-scram.c:129
@ SCRAM_AUTH_FINISHED
Definition auth-scram.c:130
@ SCRAM_AUTH_INIT
Definition auth-scram.c:128

Function Documentation

◆ build_server_final_message()

static char * build_server_final_message ( scram_state state)
static

Definition at line 1410 of file auth-scram.c.

1411{
1412 uint8 ServerSignature[SCRAM_MAX_KEY_LEN];
1414 int siglen;
1415 pg_hmac_ctx *ctx = pg_hmac_create(state->hash_type);
1416
1417 /* calculate ServerSignature */
1418 if (pg_hmac_init(ctx, state->ServerKey, state->key_length) < 0 ||
1419 pg_hmac_update(ctx,
1420 (uint8 *) state->client_first_message_bare,
1421 strlen(state->client_first_message_bare)) < 0 ||
1422 pg_hmac_update(ctx, (uint8 *) ",", 1) < 0 ||
1423 pg_hmac_update(ctx,
1424 (uint8 *) state->server_first_message,
1425 strlen(state->server_first_message)) < 0 ||
1426 pg_hmac_update(ctx, (uint8 *) ",", 1) < 0 ||
1427 pg_hmac_update(ctx,
1428 (uint8 *) state->client_final_message_without_proof,
1429 strlen(state->client_final_message_without_proof)) < 0 ||
1430 pg_hmac_final(ctx, ServerSignature, state->key_length) < 0)
1431 {
1432 elog(ERROR, "could not calculate server signature: %s",
1433 pg_hmac_error(ctx));
1434 }
1435
1436 pg_hmac_free(ctx);
1437
1438 siglen = pg_b64_enc_len(state->key_length);
1439 /* don't forget the zero-terminator */
1440 server_signature_base64 = palloc(siglen + 1);
1441 siglen = pg_b64_encode(ServerSignature,
1442 state->key_length, server_signature_base64,
1443 siglen);
1444 if (siglen < 0)
1445 elog(ERROR, "could not encode server signature");
1446 server_signature_base64[siglen] = '\0';
1447
1448 /*------
1449 * The syntax for the server-final-message is: (RFC 5802)
1450 *
1451 * verifier = "v=" base64
1452 * ;; base-64 encoded ServerSignature.
1453 *
1454 * server-final-message = (server-error / verifier)
1455 * ["," extensions]
1456 *
1457 *------
1458 */
1459 return psprintf("v=%s", server_signature_base64);
1460}
int pg_b64_enc_len(int srclen)
Definition base64.c:224
int pg_b64_encode(const uint8 *src, int len, char *dst, int dstlen)
Definition base64.c:49
uint8_t uint8
Definition c.h:544
#define ERROR
Definition elog.h:39
#define elog(elevel,...)
Definition elog.h:226
pg_hmac_ctx * pg_hmac_create(pg_cryptohash_type type)
Definition hmac.c:77
void pg_hmac_free(pg_hmac_ctx *ctx)
Definition hmac.c:289
const char * pg_hmac_error(pg_hmac_ctx *ctx)
Definition hmac.c:306
int pg_hmac_update(pg_hmac_ctx *ctx, const uint8 *data, size_t len)
Definition hmac.c:223
int pg_hmac_init(pg_hmac_ctx *ctx, const uint8 *key, size_t len)
Definition hmac.c:138
int pg_hmac_final(pg_hmac_ctx *ctx, uint8 *dest, size_t len)
Definition hmac.c:244
void * palloc(Size size)
Definition mcxt.c:1387
static int fb(int x)
char * psprintf(const char *fmt,...)
Definition psprintf.c:43
#define SCRAM_MAX_KEY_LEN

References elog, ERROR, fb(), palloc(), pg_b64_enc_len(), pg_b64_encode(), pg_hmac_create(), pg_hmac_error(), pg_hmac_final(), pg_hmac_free(), pg_hmac_init(), pg_hmac_update(), psprintf(), and SCRAM_MAX_KEY_LEN.

Referenced by scram_exchange().

◆ build_server_first_message()

static char * build_server_first_message ( scram_state state)
static

Definition at line 1200 of file auth-scram.c.

1201{
1202 /*------
1203 * The syntax for the server-first-message is: (RFC 5802)
1204 *
1205 * server-first-message =
1206 * [reserved-mext ","] nonce "," salt ","
1207 * iteration-count ["," extensions]
1208 *
1209 * nonce = "r=" c-nonce [s-nonce]
1210 * ;; Second part provided by server.
1211 *
1212 * c-nonce = printable
1213 *
1214 * s-nonce = printable
1215 *
1216 * salt = "s=" base64
1217 *
1218 * iteration-count = "i=" posit-number
1219 * ;; A positive number.
1220 *
1221 * Example:
1222 *
1223 * r=fyko+d2lbbFgONRv9qkxdawL3rfcNHYJY1ZVvWVs7j,s=QSXCR+Q6sek8bf92,i=4096
1224 *------
1225 */
1226
1227 /*
1228 * Per the spec, the nonce may consist of any printable ASCII characters.
1229 * For convenience, however, we don't use the whole range available,
1230 * rather, we generate some random bytes, and base64 encode them.
1231 */
1233 int encoded_len;
1234
1236 ereport(ERROR,
1238 errmsg("could not generate random nonce")));
1239
1241 /* don't forget the zero-terminator */
1242 state->server_nonce = palloc(encoded_len + 1);
1244 state->server_nonce, encoded_len);
1245 if (encoded_len < 0)
1246 ereport(ERROR,
1248 errmsg("could not encode random nonce")));
1249 state->server_nonce[encoded_len] = '\0';
1250
1251 state->server_first_message =
1252 psprintf("r=%s%s,s=%s,i=%d",
1253 state->client_nonce, state->server_nonce,
1254 state->salt, state->iterations);
1255
1256 return pstrdup(state->server_first_message);
1257}
int errcode(int sqlerrcode)
Definition elog.c:863
int errmsg(const char *fmt,...)
Definition elog.c:1080
#define ereport(elevel,...)
Definition elog.h:150
char * pstrdup(const char *in)
Definition mcxt.c:1781
bool pg_strong_random(void *buf, size_t len)
#define SCRAM_RAW_NONCE_LEN

References ereport, errcode(), errmsg(), ERROR, fb(), palloc(), pg_b64_enc_len(), pg_b64_encode(), pg_strong_random(), psprintf(), pstrdup(), and SCRAM_RAW_NONCE_LEN.

Referenced by scram_exchange().

◆ is_scram_printable()

static bool is_scram_printable ( char p)
static

Definition at line 777 of file auth-scram.c.

778{
779 /*------
780 * Printable characters, as defined by SCRAM spec: (RFC 5802)
781 *
782 * printable = %x21-2B / %x2D-7E
783 * ;; Printable ASCII except ",".
784 * ;; Note that any "printable" is also
785 * ;; a valid "value".
786 *------
787 */
788 for (; *p; p++)
789 {
790 if (*p < 0x21 || *p > 0x7E || *p == 0x2C /* comma */ )
791 return false;
792 }
793 return true;
794}

References fb().

Referenced by read_client_first_message().

◆ mock_scram_secret()

static void mock_scram_secret ( const char username,
pg_cryptohash_type hash_type,
int iterations,
int key_length,
char **  salt,
uint8 stored_key,
uint8 server_key 
)
static

Definition at line 695 of file auth-scram.c.

698{
700 char *encoded_salt;
701 int encoded_len;
702
703 /* Enforce the use of SHA-256, which would be realistic enough */
704 *hash_type = PG_SHA256;
705 *key_length = SCRAM_SHA_256_KEY_LEN;
706
707 /*
708 * Generate deterministic salt.
709 *
710 * Note that we cannot reveal any information to an attacker here so the
711 * error messages need to remain generic. This should never fail anyway
712 * as the salt generated for mock authentication uses the cluster's nonce
713 * value.
714 */
715 raw_salt = scram_mock_salt(username, *hash_type, *key_length);
716 if (raw_salt == NULL)
717 elog(ERROR, "could not encode salt");
718
720 /* don't forget the zero-terminator */
721 encoded_salt = (char *) palloc(encoded_len + 1);
724
725 if (encoded_len < 0)
726 elog(ERROR, "could not encode salt");
728
729 *salt = encoded_salt;
731
732 /* StoredKey and ServerKey are not used in a doomed authentication */
735}
static uint8 * scram_mock_salt(const char *username, pg_cryptohash_type hash_type, int key_length)
@ PG_SHA256
Definition cryptohash.h:24
static char * username
Definition initdb.c:153
#define SCRAM_DEFAULT_SALT_LEN
#define SCRAM_SHA_256_KEY_LEN
#define SCRAM_SHA_256_DEFAULT_ITERATIONS
int iterations

References elog, ERROR, fb(), iterations, palloc(), pg_b64_enc_len(), pg_b64_encode(), PG_SHA256, SCRAM_DEFAULT_SALT_LEN, SCRAM_MAX_KEY_LEN, scram_mock_salt(), SCRAM_SHA_256_DEFAULT_ITERATIONS, SCRAM_SHA_256_KEY_LEN, and username.

Referenced by scram_init().

◆ parse_scram_secret()

bool parse_scram_secret ( const char secret,
int iterations,
pg_cryptohash_type hash_type,
int key_length,
char **  salt,
uint8 stored_key,
uint8 server_key 
)

Definition at line 598 of file auth-scram.c.

601{
602 char *v;
603 char *p;
604 char *scheme_str;
605 char *salt_str;
606 char *iterations_str;
607 char *storedkey_str;
608 char *serverkey_str;
609 int decoded_len;
613
614 /*
615 * The secret is of form:
616 *
617 * SCRAM-SHA-256$<iterations>:<salt>$<storedkey>:<serverkey>
618 */
619 v = pstrdup(secret);
620 scheme_str = strsep(&v, "$");
621 if (v == NULL)
622 goto invalid_secret;
623 iterations_str = strsep(&v, ":");
624 if (v == NULL)
625 goto invalid_secret;
626 salt_str = strsep(&v, "$");
627 if (v == NULL)
628 goto invalid_secret;
629 storedkey_str = strsep(&v, ":");
630 if (v == NULL)
631 goto invalid_secret;
632 serverkey_str = v;
633
634 /* Parse the fields */
635 if (strcmp(scheme_str, "SCRAM-SHA-256") != 0)
636 goto invalid_secret;
637 *hash_type = PG_SHA256;
638 *key_length = SCRAM_SHA_256_KEY_LEN;
639
640 errno = 0;
641 *iterations = strtol(iterations_str, &p, 10);
642 if (*p || errno != 0)
643 goto invalid_secret;
644
645 /*
646 * Verify that the salt is in Base64-encoded format, by decoding it,
647 * although we return the encoded version to the caller.
648 */
653 if (decoded_len < 0)
654 goto invalid_secret;
655 *salt = pstrdup(salt_str);
656
657 /*
658 * Decode StoredKey and ServerKey.
659 */
664 if (decoded_len != *key_length)
665 goto invalid_secret;
666 memcpy(stored_key, decoded_stored_buf, *key_length);
667
672 if (decoded_len != *key_length)
673 goto invalid_secret;
674 memcpy(server_key, decoded_server_buf, *key_length);
675
676 return true;
677
679 *salt = NULL;
680 return false;
681}
int pg_b64_dec_len(int srclen)
Definition base64.c:239
int pg_b64_decode(const char *src, int len, uint8 *dst, int dstlen)
Definition base64.c:116
char * strsep(char **stringp, const char *delim)
Definition strsep.c:49

References fb(), iterations, palloc(), pg_b64_dec_len(), pg_b64_decode(), PG_SHA256, pstrdup(), SCRAM_SHA_256_KEY_LEN, and strsep().

Referenced by get_password_type(), scram_init(), and scram_verify_plain_password().

◆ pg_be_scram_build_secret()

char * pg_be_scram_build_secret ( const char password)

Definition at line 481 of file auth-scram.c.

482{
483 char *prep_password;
486 char *result;
487 const char *errstr = NULL;
488
489 /*
490 * Normalize the password with SASLprep. If that doesn't work, because
491 * the password isn't valid UTF-8 or contains prohibited characters, just
492 * proceed with the original password. (See comments at top of file.)
493 */
495 if (rc == SASLPREP_SUCCESS)
496 password = (const char *) prep_password;
497
498 /* Generate random salt */
502 errmsg("could not generate random salt")));
503
507 &errstr);
508
509 if (prep_password)
511
512 return result;
513}
int scram_sha_256_iterations
Definition auth-scram.c:194
void pfree(void *pointer)
Definition mcxt.c:1616
pg_saslprep_rc pg_saslprep(const char *input, char **output)
Definition saslprep.c:1047
pg_saslprep_rc
Definition saslprep.h:21
@ SASLPREP_SUCCESS
Definition saslprep.h:22
char * scram_build_secret(pg_cryptohash_type hash_type, int key_length, const uint8 *salt, int saltlen, int iterations, const char *password, const char **errstr)
static char * password
Definition streamutil.c:51

References ereport, errcode(), errmsg(), ERROR, fb(), password, pfree(), pg_saslprep(), PG_SHA256, pg_strong_random(), SASLPREP_SUCCESS, scram_build_secret(), SCRAM_DEFAULT_SALT_LEN, scram_sha_256_iterations, and SCRAM_SHA_256_KEY_LEN.

Referenced by encrypt_password().

◆ read_any_attr()

static char * read_any_attr ( char **  input,
char attr_p 
)
static

Definition at line 853 of file auth-scram.c.

854{
855 char *begin = *input;
856 char *end;
857 char attr = *begin;
858
859 if (attr == '\0')
862 errmsg("malformed SCRAM message"),
863 errdetail("Attribute expected, but found end of string.")));
864
865 /*------
866 * attr-val = ALPHA "=" value
867 * ;; Generic syntax of any attribute sent
868 * ;; by server or client
869 *------
870 */
871 if (!((attr >= 'A' && attr <= 'Z') ||
872 (attr >= 'a' && attr <= 'z')))
875 errmsg("malformed SCRAM message"),
876 errdetail("Attribute expected, but found invalid character \"%s\".",
877 sanitize_char(attr))));
878 if (attr_p)
879 *attr_p = attr;
880 begin++;
881
882 if (*begin != '=')
885 errmsg("malformed SCRAM message"),
886 errdetail("Expected character \"=\" for attribute \"%c\".", attr)));
887 begin++;
888
889 end = begin;
890 while (*end && *end != ',')
891 end++;
892
893 if (*end)
894 {
895 *end = '\0';
896 *input = end + 1;
897 }
898 else
899 *input = end;
900
901 return begin;
902}
static char * sanitize_char(char c)
Definition auth-scram.c:805
int errdetail(const char *fmt,...)
Definition elog.c:1216
FILE * input

References ereport, errcode(), errdetail(), errmsg(), ERROR, fb(), input, and sanitize_char().

Referenced by read_client_final_message(), and read_client_first_message().

◆ read_attr_value()

static char * read_attr_value ( char **  input,
char  attr 
)
static

Definition at line 741 of file auth-scram.c.

742{
743 char *begin = *input;
744 char *end;
745
746 if (*begin != attr)
749 errmsg("malformed SCRAM message"),
750 errdetail("Expected attribute \"%c\" but found \"%s\".",
751 attr, sanitize_char(*begin))));
752 begin++;
753
754 if (*begin != '=')
757 errmsg("malformed SCRAM message"),
758 errdetail("Expected character \"=\" for attribute \"%c\".", attr)));
759 begin++;
760
761 end = begin;
762 while (*end && *end != ',')
763 end++;
764
765 if (*end)
766 {
767 *end = '\0';
768 *input = end + 1;
769 }
770 else
771 *input = end;
772
773 return begin;
774}

References ereport, errcode(), errdetail(), errmsg(), ERROR, fb(), input, and sanitize_char().

Referenced by read_client_final_message(), and read_client_first_message().

◆ read_client_final_message()

static void read_client_final_message ( scram_state state,
const char input 
)
static

Definition at line 1264 of file auth-scram.c.

1265{
1266 char attr;
1267 char *channel_binding;
1268 char *value;
1269 char *begin,
1270 *proof;
1271 char *p;
1273 int client_proof_len;
1274
1275 begin = p = pstrdup(input);
1276
1277 /*------
1278 * The syntax for the server-first-message is: (RFC 5802)
1279 *
1280 * gs2-header = gs2-cbind-flag "," [ authzid ] ","
1281 * ;; GS2 header for SCRAM
1282 * ;; (the actual GS2 header includes an optional
1283 * ;; flag to indicate that the GSS mechanism is not
1284 * ;; "standard", but since SCRAM is "standard", we
1285 * ;; don't include that flag).
1286 *
1287 * cbind-input = gs2-header [ cbind-data ]
1288 * ;; cbind-data MUST be present for
1289 * ;; gs2-cbind-flag of "p" and MUST be absent
1290 * ;; for "y" or "n".
1291 *
1292 * channel-binding = "c=" base64
1293 * ;; base64 encoding of cbind-input.
1294 *
1295 * proof = "p=" base64
1296 *
1297 * client-final-message-without-proof =
1298 * channel-binding "," nonce [","
1299 * extensions]
1300 *
1301 * client-final-message =
1302 * client-final-message-without-proof "," proof
1303 *------
1304 */
1305
1306 /*
1307 * Read channel binding. This repeats the channel-binding flags and is
1308 * then followed by the actual binding data depending on the type.
1309 */
1310 channel_binding = read_attr_value(&p, 'c');
1311 if (state->channel_binding_in_use)
1312 {
1313#ifdef USE_SSL
1314 const char *cbind_data = NULL;
1315 size_t cbind_data_len = 0;
1316 size_t cbind_header_len;
1317 char *cbind_input;
1318 size_t cbind_input_len;
1319 char *b64_message;
1320 int b64_message_len;
1321
1322 Assert(state->cbind_flag == 'p');
1323
1324 /* Fetch hash data of server's SSL certificate */
1327
1328 /* should not happen */
1329 if (cbind_data == NULL || cbind_data_len == 0)
1330 elog(ERROR, "could not get server certificate hash");
1331
1332 cbind_header_len = strlen("p=tls-server-end-point,,"); /* p=type,, */
1335 snprintf(cbind_input, cbind_input_len, "p=tls-server-end-point,,");
1337
1339 /* don't forget the zero-terminator */
1343 if (b64_message_len < 0)
1344 elog(ERROR, "could not encode channel binding data");
1346
1347 /*
1348 * Compare the value sent by the client with the value expected by the
1349 * server.
1350 */
1351 if (strcmp(channel_binding, b64_message) != 0)
1352 ereport(ERROR,
1354 errmsg("SCRAM channel binding check failed")));
1355#else
1356 /* shouldn't happen, because we checked this earlier already */
1357 elog(ERROR, "channel binding not supported by this build");
1358#endif
1359 }
1360 else
1361 {
1362 /*
1363 * If we are not using channel binding, the binding data is expected
1364 * to always be "biws", which is "n,," base64-encoded, or "eSws",
1365 * which is "y,,". We also have to check whether the flag is the same
1366 * one that the client originally sent.
1367 */
1368 if (!(strcmp(channel_binding, "biws") == 0 && state->cbind_flag == 'n') &&
1369 !(strcmp(channel_binding, "eSws") == 0 && state->cbind_flag == 'y'))
1370 ereport(ERROR,
1372 errmsg("unexpected SCRAM channel-binding attribute in client-final-message")));
1373 }
1374
1375 state->client_final_nonce = read_attr_value(&p, 'r');
1376
1377 /* ignore optional extensions, read until we find "p" attribute */
1378 do
1379 {
1380 proof = p - 1;
1381 value = read_any_attr(&p, &attr);
1382 } while (attr != 'p');
1383
1387 client_proof_len) != state->key_length)
1388 ereport(ERROR,
1390 errmsg("malformed SCRAM message"),
1391 errdetail("Malformed proof in client-final-message.")));
1392 memcpy(state->ClientProof, client_proof, state->key_length);
1394
1395 if (*p != '\0')
1396 ereport(ERROR,
1398 errmsg("malformed SCRAM message"),
1399 errdetail("Garbage found at the end of client-final-message.")));
1400
1401 state->client_final_message_without_proof = palloc(proof - begin + 1);
1402 memcpy(state->client_final_message_without_proof, input, proof - begin);
1403 state->client_final_message_without_proof[proof - begin] = '\0';
1404}
static char * read_attr_value(char **input, char attr)
Definition auth-scram.c:741
static char * read_any_attr(char **input, char *attr_p)
Definition auth-scram.c:853
char * be_tls_get_certificate_hash(Port *port, size_t *len)
#define Assert(condition)
Definition c.h:873
static struct @172 value
#define snprintf
Definition port.h:260

References Assert, be_tls_get_certificate_hash(), elog, ereport, errcode(), errdetail(), errmsg(), ERROR, fb(), input, palloc(), pfree(), pg_b64_dec_len(), pg_b64_decode(), pg_b64_enc_len(), pg_b64_encode(), pstrdup(), read_any_attr(), read_attr_value(), snprintf, and value.

Referenced by scram_exchange().

◆ read_client_first_message()

static void read_client_first_message ( scram_state state,
const char input 
)
static

Definition at line 911 of file auth-scram.c.

912{
913 char *p = pstrdup(input);
915
916
917 /*------
918 * The syntax for the client-first-message is: (RFC 5802)
919 *
920 * saslname = 1*(value-safe-char / "=2C" / "=3D")
921 * ;; Conforms to <value>.
922 *
923 * authzid = "a=" saslname
924 * ;; Protocol specific.
925 *
926 * cb-name = 1*(ALPHA / DIGIT / "." / "-")
927 * ;; See RFC 5056, Section 7.
928 * ;; E.g., "tls-server-end-point" or
929 * ;; "tls-unique".
930 *
931 * gs2-cbind-flag = ("p=" cb-name) / "n" / "y"
932 * ;; "n" -> client doesn't support channel binding.
933 * ;; "y" -> client does support channel binding
934 * ;; but thinks the server does not.
935 * ;; "p" -> client requires channel binding.
936 * ;; The selected channel binding follows "p=".
937 *
938 * gs2-header = gs2-cbind-flag "," [ authzid ] ","
939 * ;; GS2 header for SCRAM
940 * ;; (the actual GS2 header includes an optional
941 * ;; flag to indicate that the GSS mechanism is not
942 * ;; "standard", but since SCRAM is "standard", we
943 * ;; don't include that flag).
944 *
945 * username = "n=" saslname
946 * ;; Usernames are prepared using SASLprep.
947 *
948 * reserved-mext = "m=" 1*(value-char)
949 * ;; Reserved for signaling mandatory extensions.
950 * ;; The exact syntax will be defined in
951 * ;; the future.
952 *
953 * nonce = "r=" c-nonce [s-nonce]
954 * ;; Second part provided by server.
955 *
956 * c-nonce = printable
957 *
958 * client-first-message-bare =
959 * [reserved-mext ","]
960 * username "," nonce ["," extensions]
961 *
962 * client-first-message =
963 * gs2-header client-first-message-bare
964 *
965 * For example:
966 * n,,n=user,r=fyko+d2lbbFgONRv9qkxdawL
967 *
968 * The "n,," in the beginning means that the client doesn't support
969 * channel binding, and no authzid is given. "n=user" is the username.
970 * However, in PostgreSQL the username is sent in the startup packet, and
971 * the username in the SCRAM exchange is ignored. libpq always sends it
972 * as an empty string. The last part, "r=fyko+d2lbbFgONRv9qkxdawL" is
973 * the client nonce.
974 *------
975 */
976
977 /*
978 * Read gs2-cbind-flag. (For details see also RFC 5802 Section 6 "Channel
979 * Binding".)
980 */
981 state->cbind_flag = *p;
982 switch (*p)
983 {
984 case 'n':
985
986 /*
987 * The client does not support channel binding or has simply
988 * decided to not use it. In that case just let it go.
989 */
990 if (state->channel_binding_in_use)
993 errmsg("malformed SCRAM message"),
994 errdetail("The client selected SCRAM-SHA-256-PLUS, but the SCRAM message does not include channel binding data.")));
995
996 p++;
997 if (*p != ',')
1000 errmsg("malformed SCRAM message"),
1001 errdetail("Comma expected, but found character \"%s\".",
1002 sanitize_char(*p))));
1003 p++;
1004 break;
1005 case 'y':
1006
1007 /*
1008 * The client supports channel binding and thinks that the server
1009 * does not. In this case, the server must fail authentication if
1010 * it supports channel binding.
1011 */
1012 if (state->channel_binding_in_use)
1013 ereport(ERROR,
1015 errmsg("malformed SCRAM message"),
1016 errdetail("The client selected SCRAM-SHA-256-PLUS, but the SCRAM message does not include channel binding data.")));
1017
1018#ifdef USE_SSL
1019 if (state->port->ssl_in_use)
1020 ereport(ERROR,
1022 errmsg("SCRAM channel binding negotiation error"),
1023 errdetail("The client supports SCRAM channel binding but thinks the server does not. "
1024 "However, this server does support channel binding.")));
1025#endif
1026 p++;
1027 if (*p != ',')
1028 ereport(ERROR,
1030 errmsg("malformed SCRAM message"),
1031 errdetail("Comma expected, but found character \"%s\".",
1032 sanitize_char(*p))));
1033 p++;
1034 break;
1035 case 'p':
1036
1037 /*
1038 * The client requires channel binding. Channel binding type
1039 * follows, e.g., "p=tls-server-end-point".
1040 */
1041 if (!state->channel_binding_in_use)
1042 ereport(ERROR,
1044 errmsg("malformed SCRAM message"),
1045 errdetail("The client selected SCRAM-SHA-256 without channel binding, but the SCRAM message includes channel binding data.")));
1046
1048
1049 /*
1050 * The only channel binding type we support is
1051 * tls-server-end-point.
1052 */
1053 if (strcmp(channel_binding_type, "tls-server-end-point") != 0)
1054 ereport(ERROR,
1056 errmsg("unsupported SCRAM channel-binding type \"%s\"",
1058 break;
1059 default:
1060 ereport(ERROR,
1062 errmsg("malformed SCRAM message"),
1063 errdetail("Unexpected channel-binding flag \"%s\".",
1064 sanitize_char(*p))));
1065 }
1066
1067 /*
1068 * Forbid optional authzid (authorization identity). We don't support it.
1069 */
1070 if (*p == 'a')
1071 ereport(ERROR,
1073 errmsg("client uses authorization identity, but it is not supported")));
1074 if (*p != ',')
1075 ereport(ERROR,
1077 errmsg("malformed SCRAM message"),
1078 errdetail("Unexpected attribute \"%s\" in client-first-message.",
1079 sanitize_char(*p))));
1080 p++;
1081
1082 state->client_first_message_bare = pstrdup(p);
1083
1084 /*
1085 * Any mandatory extensions would go here. We don't support any.
1086 *
1087 * RFC 5802 specifies error code "e=extensions-not-supported" for this,
1088 * but it can only be sent in the server-final message. We prefer to fail
1089 * immediately (which the RFC also allows).
1090 */
1091 if (*p == 'm')
1092 ereport(ERROR,
1094 errmsg("client requires an unsupported SCRAM extension")));
1095
1096 /*
1097 * Read username. Note: this is ignored. We use the username from the
1098 * startup message instead, still it is kept around if provided as it
1099 * proves to be useful for debugging purposes.
1100 */
1101 state->client_username = read_attr_value(&p, 'n');
1102
1103 /* read nonce and check that it is made of only printable characters */
1104 state->client_nonce = read_attr_value(&p, 'r');
1105 if (!is_scram_printable(state->client_nonce))
1106 ereport(ERROR,
1108 errmsg("non-printable characters in SCRAM nonce")));
1109
1110 /*
1111 * There can be any number of optional extensions after this. We don't
1112 * support any extensions, so ignore them.
1113 */
1114 while (*p != '\0')
1115 read_any_attr(&p, NULL);
1116
1117 /* success! */
1118}
static char * sanitize_str(const char *s)
Definition auth-scram.c:825
static bool is_scram_printable(char *p)
Definition auth-scram.c:777

References ereport, errcode(), errdetail(), errmsg(), ERROR, fb(), input, is_scram_printable(), pstrdup(), read_any_attr(), read_attr_value(), sanitize_char(), and sanitize_str().

Referenced by scram_exchange().

◆ sanitize_char()

static char * sanitize_char ( char  c)
static

Definition at line 805 of file auth-scram.c.

806{
807 static char buf[5];
808
809 if (c >= 0x21 && c <= 0x7E)
810 snprintf(buf, sizeof(buf), "'%c'", c);
811 else
812 snprintf(buf, sizeof(buf), "0x%02x", (unsigned char) c);
813 return buf;
814}
static char buf[DEFAULT_XLOG_SEG_SIZE]
char * c

References buf, and snprintf.

Referenced by read_any_attr(), read_attr_value(), and read_client_first_message().

◆ sanitize_str()

static char * sanitize_str ( const char s)
static

Definition at line 825 of file auth-scram.c.

826{
827 static char buf[30 + 1];
828 int i;
829
830 for (i = 0; i < sizeof(buf) - 1; i++)
831 {
832 char c = s[i];
833
834 if (c == '\0')
835 break;
836
837 if (c >= 0x21 && c <= 0x7E)
838 buf[i] = c;
839 else
840 buf[i] = '?';
841 }
842 buf[i] = '\0';
843 return buf;
844}
int i
Definition isn.c:77

References buf, and i.

Referenced by read_client_first_message().

◆ scram_exchange()

static int scram_exchange ( void opaq,
const char input,
int  inputlen,
char **  output,
int outputlen,
const char **  logdetail 
)
static

Definition at line 350 of file auth-scram.c.

352{
354 int result;
355
356 *output = NULL;
357
358 /*
359 * If the client didn't include an "Initial Client Response" in the
360 * SASLInitialResponse message, send an empty challenge, to which the
361 * client will respond with the same data that usually comes in the
362 * Initial Client Response.
363 */
364 if (input == NULL)
365 {
366 Assert(state->state == SCRAM_AUTH_INIT);
367
368 *output = pstrdup("");
369 *outputlen = 0;
371 }
372
373 /*
374 * Check that the input length agrees with the string length of the input.
375 * We can ignore inputlen after this.
376 */
377 if (inputlen == 0)
380 errmsg("malformed SCRAM message"),
381 errdetail("The message is empty.")));
382 if (inputlen != strlen(input))
385 errmsg("malformed SCRAM message"),
386 errdetail("Message length does not match input length.")));
387
388 switch (state->state)
389 {
390 case SCRAM_AUTH_INIT:
391
392 /*
393 * Initialization phase. Receive the first message from client
394 * and be sure that it parsed correctly. Then send the challenge
395 * to the client.
396 */
398
399 /* prepare message to send challenge */
401
404 break;
405
407
408 /*
409 * Final phase for the server. Receive the response to the
410 * challenge previously sent, verify, and let the client know that
411 * everything went well (or not).
412 */
414
418 errmsg("invalid SCRAM response"),
419 errdetail("Nonce does not match.")));
420
421 /*
422 * Now check the final nonce and the client proof.
423 *
424 * If we performed a "mock" authentication that we knew would fail
425 * from the get go, this is where we fail.
426 *
427 * The SCRAM specification includes an error code,
428 * "invalid-proof", for authentication failure, but it also allows
429 * erroring out in an application-specific way. We choose to do
430 * the latter, so that the error message for invalid password is
431 * the same for all authentication methods. The caller will call
432 * ereport(), when we return PG_SASL_EXCHANGE_FAILURE with no
433 * output.
434 *
435 * NB: the order of these checks is intentional. We calculate the
436 * client proof even in a mock authentication, even though it's
437 * bound to fail, to thwart timing attacks to determine if a role
438 * with the given name exists or not.
439 */
440 if (!verify_client_proof(state) || state->doomed)
441 {
443 break;
444 }
445
446 /* Build final message for client */
448
449 /* Success! */
451 state->state = SCRAM_AUTH_FINISHED;
452 break;
453
454 default:
455 elog(ERROR, "invalid SCRAM exchange state");
457 }
458
459 if (result == PG_SASL_EXCHANGE_FAILURE && state->logdetail && logdetail)
460 *logdetail = state->logdetail;
461
462 if (*output)
464
465 if (result == PG_SASL_EXCHANGE_SUCCESS && state->state == SCRAM_AUTH_FINISHED)
466 {
470 }
471
472 return result;
473}
static char * build_server_first_message(scram_state *state)
static void read_client_first_message(scram_state *state, const char *input)
Definition auth-scram.c:911
static bool verify_client_proof(scram_state *state)
static bool verify_final_nonce(scram_state *state)
static void read_client_final_message(scram_state *state, const char *input)
static char * build_server_final_message(scram_state *state)
struct Port * MyProcPort
Definition globals.c:51
FILE * output
#define PG_SASL_EXCHANGE_FAILURE
Definition sasl.h:27
#define PG_SASL_EXCHANGE_CONTINUE
Definition sasl.h:25
#define PG_SASL_EXCHANGE_SUCCESS
Definition sasl.h:26
uint8 scram_ServerKey[SCRAM_MAX_KEY_LEN]
Definition libpq-be.h:187
bool has_scram_keys
Definition libpq-be.h:188
uint8 scram_ClientKey[SCRAM_MAX_KEY_LEN]
Definition libpq-be.h:186

References Assert, build_server_final_message(), build_server_first_message(), elog, ereport, errcode(), errdetail(), errmsg(), ERROR, fb(), Port::has_scram_keys, input, MyProcPort, output, PG_SASL_EXCHANGE_CONTINUE, PG_SASL_EXCHANGE_FAILURE, PG_SASL_EXCHANGE_SUCCESS, pstrdup(), read_client_final_message(), read_client_first_message(), SCRAM_AUTH_FINISHED, SCRAM_AUTH_INIT, SCRAM_AUTH_SALT_SENT, Port::scram_ClientKey, Port::scram_ServerKey, verify_client_proof(), and verify_final_nonce().

◆ scram_get_mechanisms()

static void scram_get_mechanisms ( Port port,
StringInfo  buf 
)
static

Definition at line 204 of file auth-scram.c.

205{
206 /*
207 * Advertise the mechanisms in decreasing order of importance. So the
208 * channel-binding variants go first, if they are supported. Channel
209 * binding is only supported with SSL.
210 */
211#ifdef USE_SSL
212 if (port->ssl_in_use)
213 {
216 }
217#endif
220}
static int port
Definition pg_regress.c:115
#define SCRAM_SHA_256_PLUS_NAME
#define SCRAM_SHA_256_NAME
void appendStringInfoString(StringInfo str, const char *s)
Definition stringinfo.c:230
void appendStringInfoChar(StringInfo str, char ch)
Definition stringinfo.c:242

References appendStringInfoChar(), appendStringInfoString(), buf, port, SCRAM_SHA_256_NAME, and SCRAM_SHA_256_PLUS_NAME.

◆ scram_init()

static void * scram_init ( Port port,
const char selected_mech,
const char shadow_pass 
)
static

Definition at line 238 of file auth-scram.c.

239{
241 bool got_secret;
242
244 state->port = port;
245 state->state = SCRAM_AUTH_INIT;
246
247 /*
248 * Parse the selected mechanism.
249 *
250 * Note that if we don't support channel binding, or if we're not using
251 * SSL at all, we would not have advertised the PLUS variant in the first
252 * place. If the client nevertheless tries to select it, it's a protocol
253 * violation like selecting any other SASL mechanism we don't support.
254 */
255#ifdef USE_SSL
256 if (strcmp(selected_mech, SCRAM_SHA_256_PLUS_NAME) == 0 && port->ssl_in_use)
257 state->channel_binding_in_use = true;
258 else
259#endif
261 state->channel_binding_in_use = false;
262 else
265 errmsg("client selected an invalid SASL authentication mechanism")));
266
267 /*
268 * Parse the stored secret.
269 */
270 if (shadow_pass)
271 {
273
275 {
276 if (parse_scram_secret(shadow_pass, &state->iterations,
277 &state->hash_type, &state->key_length,
278 &state->salt,
279 state->StoredKey,
280 state->ServerKey))
281 got_secret = true;
282 else
283 {
284 /*
285 * The password looked like a SCRAM secret, but could not be
286 * parsed.
287 */
288 ereport(LOG,
289 (errmsg("invalid SCRAM secret for user \"%s\"",
290 state->port->user_name)));
291 got_secret = false;
292 }
293 }
294 else
295 {
296 /*
297 * The user doesn't have SCRAM secret. (You cannot do SCRAM
298 * authentication with an MD5 hash.)
299 */
300 state->logdetail = psprintf(_("User \"%s\" does not have a valid SCRAM secret."),
301 state->port->user_name);
302 got_secret = false;
303 }
304 }
305 else
306 {
307 /*
308 * The caller requested us to perform a dummy authentication. This is
309 * considered normal, since the caller requested it, so don't set log
310 * detail.
311 */
312 got_secret = false;
313 }
314
315 /*
316 * If the user did not have a valid SCRAM secret, we still go through the
317 * motions with a mock one, and fail as if the client supplied an
318 * incorrect password. This is to avoid revealing information to an
319 * attacker.
320 */
321 if (!got_secret)
322 {
323 mock_scram_secret(state->port->user_name, &state->hash_type,
324 &state->iterations, &state->key_length,
325 &state->salt,
326 state->StoredKey, state->ServerKey);
327 state->doomed = true;
328 }
329
330 return state;
331}
bool parse_scram_secret(const char *secret, int *iterations, pg_cryptohash_type *hash_type, int *key_length, char **salt, uint8 *stored_key, uint8 *server_key)
Definition auth-scram.c:598
static void mock_scram_secret(const char *username, pg_cryptohash_type *hash_type, int *iterations, int *key_length, char **salt, uint8 *stored_key, uint8 *server_key)
Definition auth-scram.c:695
PasswordType get_password_type(const char *shadow_pass)
Definition crypt.c:90
@ PASSWORD_TYPE_SCRAM_SHA_256
Definition crypt.h:44
#define _(x)
Definition elog.c:91
#define LOG
Definition elog.h:31
#define palloc0_object(type)
Definition fe_memutils.h:75

References _, ereport, errcode(), errmsg(), ERROR, fb(), get_password_type(), LOG, mock_scram_secret(), palloc0_object, parse_scram_secret(), PASSWORD_TYPE_SCRAM_SHA_256, port, psprintf(), SCRAM_AUTH_INIT, SCRAM_SHA_256_NAME, and SCRAM_SHA_256_PLUS_NAME.

◆ scram_mock_salt()

static uint8 * scram_mock_salt ( const char username,
pg_cryptohash_type  hash_type,
int  key_length 
)
static

Definition at line 1469 of file auth-scram.c.

1471{
1472 pg_cryptohash_ctx *ctx;
1475
1476 /*
1477 * Generate salt using a SHA256 hash of the username and the cluster's
1478 * mock authentication nonce. (This works as long as the salt length is
1479 * not larger than the SHA256 digest length. If the salt is smaller, the
1480 * caller will just ignore the extra data.)
1481 */
1483 "salt length greater than SHA256 digest length");
1484
1485 /*
1486 * This may be worth refreshing if support for more hash methods is\
1487 * added.
1488 */
1489 Assert(hash_type == PG_SHA256);
1490
1491 ctx = pg_cryptohash_create(hash_type);
1492 if (pg_cryptohash_init(ctx) < 0 ||
1493 pg_cryptohash_update(ctx, (const uint8 *) username, strlen(username)) < 0 ||
1495 pg_cryptohash_final(ctx, sha_digest, key_length) < 0)
1496 {
1497 pg_cryptohash_free(ctx);
1498 return NULL;
1499 }
1500 pg_cryptohash_free(ctx);
1501
1502 return sha_digest;
1503}
#define StaticAssertDecl(condition, errmessage)
Definition c.h:942
int pg_cryptohash_update(pg_cryptohash_ctx *ctx, const uint8 *data, size_t len)
Definition cryptohash.c:136
pg_cryptohash_ctx * pg_cryptohash_create(pg_cryptohash_type type)
Definition cryptohash.c:74
int pg_cryptohash_init(pg_cryptohash_ctx *ctx)
Definition cryptohash.c:100
void pg_cryptohash_free(pg_cryptohash_ctx *ctx)
Definition cryptohash.c:238
int pg_cryptohash_final(pg_cryptohash_ctx *ctx, uint8 *dest, size_t len)
Definition cryptohash.c:172
#define MOCK_AUTH_NONCE_LEN
Definition pg_control.h:28
#define PG_SHA256_DIGEST_LENGTH
Definition sha2.h:23
char * GetMockAuthenticationNonce(void)
Definition xlog.c:4637

References Assert, fb(), GetMockAuthenticationNonce(), MOCK_AUTH_NONCE_LEN, pg_cryptohash_create(), pg_cryptohash_final(), pg_cryptohash_free(), pg_cryptohash_init(), pg_cryptohash_update(), PG_SHA256, PG_SHA256_DIGEST_LENGTH, SCRAM_DEFAULT_SALT_LEN, SCRAM_MAX_KEY_LEN, StaticAssertDecl, and username.

Referenced by mock_scram_secret().

◆ scram_verify_plain_password()

bool scram_verify_plain_password ( const char username,
const char password,
const char secret 
)

Definition at line 521 of file auth-scram.c.

523{
524 char *encoded_salt;
525 uint8 *salt;
526 int saltlen;
527 int iterations;
528 int key_length = 0;
529 pg_cryptohash_type hash_type;
534 char *prep_password;
536 const char *errstr = NULL;
537
538 if (!parse_scram_secret(secret, &iterations, &hash_type, &key_length,
540 {
541 /*
542 * The password looked like a SCRAM secret, but could not be parsed.
543 */
544 ereport(LOG,
545 (errmsg("invalid SCRAM secret for user \"%s\"", username)));
546 return false;
547 }
548
550 salt = palloc(saltlen);
552 saltlen);
553 if (saltlen < 0)
554 {
555 ereport(LOG,
556 (errmsg("invalid SCRAM secret for user \"%s\"", username)));
557 return false;
558 }
559
560 /* Normalize the password */
562 if (rc == SASLPREP_SUCCESS)
564
565 /* Compute Server Key based on the user-supplied plaintext password */
566 if (scram_SaltedPassword(password, hash_type, key_length,
567 salt, saltlen, iterations,
568 salted_password, &errstr) < 0 ||
569 scram_ServerKey(salted_password, hash_type, key_length,
570 computed_key, &errstr) < 0)
571 {
572 elog(ERROR, "could not compute server key: %s", errstr);
573 }
574
575 if (prep_password)
577
578 /*
579 * Compare the secret's Server Key with the one computed from the
580 * user-supplied password.
581 */
582 return memcmp(computed_key, server_key, key_length) == 0;
583}
pg_cryptohash_type
Definition cryptohash.h:20
int scram_ServerKey(const uint8 *salted_password, pg_cryptohash_type hash_type, int key_length, uint8 *result, const char **errstr)
int scram_SaltedPassword(const char *password, pg_cryptohash_type hash_type, int key_length, const uint8 *salt, int saltlen, int iterations, uint8 *result, const char **errstr)

References elog, ereport, errmsg(), ERROR, fb(), iterations, LOG, palloc(), parse_scram_secret(), password, pfree(), pg_b64_dec_len(), pg_b64_decode(), pg_saslprep(), SASLPREP_SUCCESS, SCRAM_MAX_KEY_LEN, scram_SaltedPassword(), scram_ServerKey(), and username.

Referenced by plain_crypt_verify().

◆ verify_client_proof()

static bool verify_client_proof ( scram_state state)
static

Definition at line 1147 of file auth-scram.c.

1148{
1151 pg_hmac_ctx *ctx = pg_hmac_create(state->hash_type);
1152 int i;
1153 const char *errstr = NULL;
1154
1155 /*
1156 * Calculate ClientSignature. Note that we don't log directly a failure
1157 * here even when processing the calculations as this could involve a mock
1158 * authentication.
1159 */
1160 if (pg_hmac_init(ctx, state->StoredKey, state->key_length) < 0 ||
1161 pg_hmac_update(ctx,
1162 (uint8 *) state->client_first_message_bare,
1163 strlen(state->client_first_message_bare)) < 0 ||
1164 pg_hmac_update(ctx, (uint8 *) ",", 1) < 0 ||
1165 pg_hmac_update(ctx,
1166 (uint8 *) state->server_first_message,
1167 strlen(state->server_first_message)) < 0 ||
1168 pg_hmac_update(ctx, (uint8 *) ",", 1) < 0 ||
1169 pg_hmac_update(ctx,
1170 (uint8 *) state->client_final_message_without_proof,
1171 strlen(state->client_final_message_without_proof)) < 0 ||
1172 pg_hmac_final(ctx, ClientSignature, state->key_length) < 0)
1173 {
1174 elog(ERROR, "could not calculate client signature: %s",
1175 pg_hmac_error(ctx));
1176 }
1177
1178 pg_hmac_free(ctx);
1179
1180 /* Extract the ClientKey that the client calculated from the proof */
1181 for (i = 0; i < state->key_length; i++)
1182 state->ClientKey[i] = state->ClientProof[i] ^ ClientSignature[i];
1183
1184 /* Hash it one more time, and compare with StoredKey */
1185 if (scram_H(state->ClientKey, state->hash_type, state->key_length,
1186 client_StoredKey, &errstr) < 0)
1187 elog(ERROR, "could not hash stored key: %s", errstr);
1188
1189 if (memcmp(client_StoredKey, state->StoredKey, state->key_length) != 0)
1190 return false;
1191
1192 return true;
1193}
int scram_H(const uint8 *input, pg_cryptohash_type hash_type, int key_length, uint8 *result, const char **errstr)

References elog, ERROR, fb(), i, pg_hmac_create(), pg_hmac_error(), pg_hmac_final(), pg_hmac_free(), pg_hmac_init(), pg_hmac_update(), scram_H(), and SCRAM_MAX_KEY_LEN.

Referenced by scram_exchange().

◆ verify_final_nonce()

static bool verify_final_nonce ( scram_state state)
static

Definition at line 1125 of file auth-scram.c.

1126{
1127 int client_nonce_len = strlen(state->client_nonce);
1128 int server_nonce_len = strlen(state->server_nonce);
1129 int final_nonce_len = strlen(state->client_final_nonce);
1130
1132 return false;
1133 if (memcmp(state->client_final_nonce, state->client_nonce, client_nonce_len) != 0)
1134 return false;
1135 if (memcmp(state->client_final_nonce + client_nonce_len, state->server_nonce, server_nonce_len) != 0)
1136 return false;
1137
1138 return true;
1139}

References fb().

Referenced by scram_exchange().

Variable Documentation

◆ pg_be_scram_mech

const pg_be_sasl_mech pg_be_scram_mech
Initial value:
= {
}
static void * scram_init(Port *port, const char *selected_mech, const char *shadow_pass)
Definition auth-scram.c:238
static int scram_exchange(void *opaq, const char *input, int inputlen, char **output, int *outputlen, const char **logdetail)
Definition auth-scram.c:350
static void scram_get_mechanisms(Port *port, StringInfo buf)
Definition auth-scram.c:204
#define PG_MAX_SASL_MESSAGE_LENGTH
Definition sasl.h:35

Definition at line 114 of file auth-scram.c.

Referenced by CheckPWChallengeAuth().

◆ scram_sha_256_iterations

int scram_sha_256_iterations = SCRAM_SHA_256_DEFAULT_ITERATIONS

Definition at line 194 of file auth-scram.c.

Referenced by pg_be_scram_build_secret().