1 /* -------------------------------------------------------------------------
5 * Copyright (c) 2010-2025, PostgreSQL Global Development Group
8 * contrib/auth_delay/auth_delay.c
10 * -------------------------------------------------------------------------
16 #include "libpq/auth.h"
17 #include "utils/guc.h"
22 static int auth_delay_milliseconds
= 0;
25 static ClientAuthentication_hook_type original_client_auth_hook
= NULL
;
28 * Check authentication
31 auth_delay_checks(Port
*port
, int status
)
34 * Any other plugins which use ClientAuthentication_hook.
36 if (original_client_auth_hook
)
37 original_client_auth_hook(port
, status
);
40 * Inject a short delay if authentication failed.
42 if (status
!= STATUS_OK
)
44 pg_usleep(1000L * auth_delay_milliseconds
);
49 * Module Load Callback
54 /* Define custom GUC variables */
55 DefineCustomIntVariable("auth_delay.milliseconds",
56 "Milliseconds to delay before reporting authentication failure",
58 &auth_delay_milliseconds
,
67 MarkGUCPrefixReserved("auth_delay");
70 original_client_auth_hook
= ClientAuthentication_hook
;
71 ClientAuthentication_hook
= auth_delay_checks
;