Spaces:
Runtime error
Runtime error
File size: 89,814 Bytes
cd8bd0a | 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 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 | import { randomUUID, createHash } from "crypto";
import {
getProviderConnections,
getProviderNodes,
validateApiKey,
updateProviderConnection,
getSettings,
getCachedSettings,
getSessionAccountAffinity,
upsertSessionAccountAffinity,
touchSessionAccountAffinity,
deleteSessionAccountAffinity,
} from "@/lib/localDb";
import {
DEFAULT_QUOTA_THRESHOLD_PERCENT,
getQuotaCache,
getQuotaWindowStatus,
isAccountQuotaExhausted,
} from "@/domain/quotaCache";
import {
isAccountUnavailable,
getUnavailableUntil,
getEarliestRateLimitedUntil,
cooldownUntilMs,
formatRetryAfter,
checkFallbackError,
isModelLocked,
getModelLockoutInfo,
lockModel,
hasPerModelQuota,
getRuntimeProviderProfile,
recordModelLockoutFailure,
} from "@omniroute/open-sse/services/accountFallback.ts";
import { isLocalProvider } from "@omniroute/open-sse/config/providerRegistry.ts";
import { COOLDOWN_MS, RateLimitReason } from "@omniroute/open-sse/config/constants.ts";
import {
preflightQuota,
isQuotaPreflightEnabled,
} from "@omniroute/open-sse/services/quotaPreflight.ts";
import { resolveResilienceSettings } from "@/lib/resilience/settings";
import { resolveModelLockoutSettings } from "@/lib/resilience/modelLockoutSettings";
import { syncHealthFromDB, type KeyHealth } from "@omniroute/open-sse/services/apiKeyRotator.ts";
import {
classifyProviderError,
PROVIDER_ERROR_TYPES,
} from "@omniroute/open-sse/services/errorClassifier.ts";
import {
getCodexModelScope,
getCodexQuotaWindowFilterForModel,
toCodexBaseQuotaWindowName,
toCodexScopedQuotaWindowName,
} from "@omniroute/open-sse/config/codexQuotaScopes.ts";
import {
getProviderById,
getProviderAlias,
resolveProviderId,
NOAUTH_PROVIDERS,
WEB_COOKIE_PROVIDERS,
} from "@/shared/constants/providers";
import { isModelExcludedByConnection } from "@/domain/connectionModelRules";
import { isNoAuthProviderBlockedBySettings } from "./noAuthProviderSettings";
import * as log from "../utils/logger";
import { fisherYatesShuffle, getNextFromDeckSync } from "@/shared/utils/shuffleDeck";
type JsonRecord = Record<string, unknown>;
interface ProviderConnectionView {
id: string;
provider: string;
email: string | null;
isActive: boolean;
rateLimitedUntil: string | null;
testStatus: string | null;
apiKey: string | null;
accessToken: string | null;
refreshToken: string | null;
tokenExpiresAt: string | null;
expiresAt: string | null;
projectId: string | null;
defaultModel: string | null;
providerSpecificData: JsonRecord;
lastUsedAt: string | null;
consecutiveUseCount: number;
priority: number;
lastError: string | null;
lastErrorType: string | null;
lastErrorSource: string | null;
errorCode: string | number | null;
backoffLevel: number;
maxConcurrent: number | null;
// Per-window quota cutoff overrides β null means "no overrides, inherit
// resilience-settings defaults." Read by getProviderCredentialsWithQuotaPreflight
// to decide whether to invoke the upstream usage fetcher.
quotaWindowThresholds: Record<string, number> | null;
}
interface RecoverableConnectionState {
connectionId: string;
testStatus?: string | null;
lastError?: string | null;
rateLimitedUntil?: string | null;
errorCode?: string | number | null;
lastErrorType?: string | null;
lastErrorSource?: string | null;
}
interface CredentialSelectionOptions {
allowSuppressedConnections?: boolean;
allowRateLimitedConnections?: boolean;
bypassQuotaPolicy?: boolean;
forcedConnectionId?: string | null;
excludeConnectionIds?: string[] | null;
sessionKey?: string | null;
sessionAffinityTtlMs?: number | null;
}
interface CooldownInspectionState {
connection: ProviderConnectionView;
connectionCooldownMs: number | null;
codexScopeCooldownMs: number | null;
retryableModelCooldownMs: number | null;
}
const MIN_QUOTA_THRESHOLD_PERCENT = 1;
const MAX_QUOTA_THRESHOLD_PERCENT = 100;
const NON_RETRYABLE_MODEL_LOCKOUT_REASONS = new Set(["not_found", "not_found_local"]);
function asRecord(value: unknown): JsonRecord {
return value && typeof value === "object" && !Array.isArray(value) ? (value as JsonRecord) : {};
}
function toStringOrNull(value: unknown): string | null {
return typeof value === "string" && value.trim().length > 0 ? value : null;
}
function toNumber(value: unknown, fallback = 0): number {
if (typeof value === "number" && Number.isFinite(value)) return value;
if (typeof value === "string" && value.trim().length > 0) {
const parsed = Number(value);
return Number.isFinite(parsed) ? parsed : fallback;
}
return fallback;
}
function toNullableNumber(value: unknown): number | null {
if (value === null || value === undefined) return null;
const parsed = toNumber(value, Number.NaN);
return Number.isFinite(parsed) ? parsed : null;
}
function toProviderConnection(value: unknown): ProviderConnectionView {
const row = asRecord(value);
// Only accept the per-window override map when it's a plain object β
// anything else collapses to null so the preflight gate treats it as "no
// overrides set."
const rawThresholds = row.quotaWindowThresholds;
const quotaWindowThresholds: Record<string, number> | null =
rawThresholds && typeof rawThresholds === "object" && !Array.isArray(rawThresholds)
? (rawThresholds as Record<string, number>)
: null;
return {
id: toStringOrNull(row.id) || "",
provider: toStringOrNull(row.provider) || "",
email: toStringOrNull(row.email),
isActive: row.isActive === true,
rateLimitedUntil: toStringOrNull(row.rateLimitedUntil),
testStatus: toStringOrNull(row.testStatus),
apiKey: toStringOrNull(row.apiKey),
accessToken: toStringOrNull(row.accessToken),
refreshToken: toStringOrNull(row.refreshToken),
tokenExpiresAt: toStringOrNull(row.tokenExpiresAt),
expiresAt: toStringOrNull(row.expiresAt),
projectId: toStringOrNull(row.projectId),
defaultModel: toStringOrNull(row.defaultModel),
providerSpecificData: asRecord(row.providerSpecificData),
lastUsedAt: toStringOrNull(row.lastUsedAt),
consecutiveUseCount: toNumber(row.consecutiveUseCount, 0),
priority: toNumber(row.priority, 999),
lastError: toStringOrNull(row.lastError),
lastErrorType: toStringOrNull(row.lastErrorType),
lastErrorSource: toStringOrNull(row.lastErrorSource),
errorCode:
typeof row.errorCode === "string" || typeof row.errorCode === "number" ? row.errorCode : null,
backoffLevel: toNumber(row.backoffLevel, 0),
maxConcurrent: toNullableNumber(row.maxConcurrent),
quotaWindowThresholds,
};
}
function toBooleanOrDefault(value: unknown, fallback: boolean): boolean {
return typeof value === "boolean" ? value : fallback;
}
function readHeaderValue(
headers:
| Headers
| { get?: (name: string) => string | null }
| Record<string, string | string[] | undefined>
| null
| undefined,
name: string
): string | null {
if (!headers) return null;
if (typeof (headers as Headers).get === "function") {
const value = (headers as Headers).get(name) || (headers as Headers).get(name.toLowerCase());
return typeof value === "string" && value.trim().length > 0 ? value.trim() : null;
}
const recordHeaders = headers as Record<string, string | string[] | undefined>;
const value =
recordHeaders[name] || recordHeaders[name.toLowerCase()] || recordHeaders[name.toUpperCase()];
if (Array.isArray(value)) {
return typeof value[0] === "string" && value[0].trim().length > 0 ? value[0].trim() : null;
}
return typeof value === "string" && value.trim().length > 0 ? value.trim() : null;
}
function normalizeSessionKey(value: unknown, prefix: string): string | null {
if (typeof value !== "string" || value.trim().length === 0) return null;
const trimmed = value.trim();
if (trimmed.length <= 180 && /^[A-Za-z0-9._:-]+$/.test(trimmed)) {
return `${prefix}:${trimmed}`;
}
return `${prefix}:sha256:${createHash("sha256").update(trimmed).digest("hex")}`;
}
function extractTextForSessionHash(value: unknown): string | null {
if (typeof value === "string") return value;
if (Array.isArray(value)) {
const parts = value
.map((item) => {
if (typeof item === "string") return item;
const record = asRecord(item);
if (typeof record.text === "string") return record.text;
if (typeof record.content === "string") return record.content;
return null;
})
.filter(Boolean) as string[];
return parts.length > 0 ? parts.join("\n") : JSON.stringify(value);
}
if (value && typeof value === "object") return JSON.stringify(value);
return null;
}
function getFirstInputText(body: unknown): string | null {
const record = asRecord(body);
if (record.input !== undefined) {
if (typeof record.input === "string") return record.input;
if (Array.isArray(record.input)) {
for (const item of record.input) {
const itemRecord = asRecord(item);
const text = extractTextForSessionHash(itemRecord.content ?? item);
if (text && text.trim().length > 0) return text;
}
}
const text = extractTextForSessionHash(record.input);
if (text && text.trim().length > 0) return text;
}
if (Array.isArray(record.messages)) {
const userMessage = record.messages.find((message) => asRecord(message).role === "user");
const firstMessage = userMessage ?? record.messages[0];
const text = extractTextForSessionHash(asRecord(firstMessage).content ?? firstMessage);
if (text && text.trim().length > 0) return text;
}
return null;
}
export function extractSessionAffinityKey(
body: unknown,
headers?: Headers | { get?: (name: string) => string | null } | null
): string | null {
const headerKey = normalizeSessionKey(
readHeaderValue(headers, "x-codex-session-id") ??
readHeaderValue(headers, "x-session-id") ??
readHeaderValue(headers, "x-omniroute-session"),
"header"
);
if (headerKey) return headerKey;
const record = asRecord(body);
const metadata = asRecord(record.metadata);
const explicitKey =
normalizeSessionKey(metadata.session_id, "metadata") ??
normalizeSessionKey(metadata.sessionId, "metadata") ??
normalizeSessionKey(record.conversation_id, "conversation") ??
normalizeSessionKey(record.session_id, "session") ??
normalizeSessionKey(record.prompt_cache_key, "prompt-cache");
if (explicitKey) return explicitKey;
const inputText = getFirstInputText(body);
if (!inputText || inputText.trim().length === 0) return null;
return `input:sha256:${createHash("sha256").update(inputText.slice(0, 4096)).digest("hex")}`;
}
function formatSessionKeyForLog(sessionKey: string): string {
return `${sessionKey.slice(0, 18)}...`;
}
function getCodexLimitPolicy(providerSpecificData: JsonRecord): {
use5h: boolean;
useWeekly: boolean;
} {
const policy = asRecord(providerSpecificData.codexLimitPolicy);
return {
use5h: toBooleanOrDefault(policy.use5h, true),
useWeekly: toBooleanOrDefault(policy.useWeekly, true),
};
}
interface QuotaLimitPolicy {
enabled: boolean;
thresholdPercent: number;
windows: string[];
}
interface QuotaCacheView {
quotas?: Record<
string,
{
remainingPercentage?: number;
resetAt?: string | null;
}
>;
}
function normalizeQuotaThreshold(
value: unknown,
fallback = DEFAULT_QUOTA_THRESHOLD_PERCENT
): number {
const parsed = toNumber(value, fallback);
return Math.min(MAX_QUOTA_THRESHOLD_PERCENT, Math.max(MIN_QUOTA_THRESHOLD_PERCENT, parsed));
}
function normalizeWindowName(windowName: unknown): string | null {
if (typeof windowName !== "string") return null;
const normalized = windowName.trim().toLowerCase();
return normalized.length > 0 ? normalized : null;
}
function uniqueWindows(windows: string[]): string[] {
return [...new Set(windows)];
}
function normalizeCodexWindowName(windowName: unknown): string | null {
if (typeof windowName !== "string") return null;
const normalized = windowName.trim().toLowerCase();
if (normalized === "session (5h)" || normalized === "5h" || normalized === "five_hour") {
return "session";
}
if (normalized === "weekly (7d)" || normalized === "7d" || normalized === "seven_day") {
return "weekly";
}
return toCodexBaseQuotaWindowName(normalized);
}
function applyCodexWindowPolicy(rawWindows: string[], providerSpecificData: JsonRecord): string[] {
const codexPolicy = getCodexLimitPolicy(providerSpecificData);
const normalizedRaw = rawWindows.map(normalizeCodexWindowName).filter(Boolean) as string[];
// Preserve explicitly configured custom windows, but enforce canonical Codex windows
// from toggles so weekly exhaustion is never skipped when useWeekly=true.
let windows = [...normalizedRaw];
windows = windows.filter((windowName) => {
if (windowName === "session") return codexPolicy.use5h;
if (windowName === "weekly") return codexPolicy.useWeekly;
return true;
});
if (codexPolicy.use5h) windows.push("session");
if (codexPolicy.useWeekly) windows.push("weekly");
return uniqueWindows(windows);
}
function getCodexScopeRateLimitedUntil(
providerSpecificData: JsonRecord,
model: string | null
): string | null {
if (!model) return null;
const scope = getCodexModelScope(model);
const scopeMap = asRecord(providerSpecificData.codexScopeRateLimitedUntil);
const value = scopeMap[scope];
return typeof value === "string" && value.trim().length > 0 ? value : null;
}
function isCodexScopeUnavailable(
connection: ProviderConnectionView,
model: string | null
): boolean {
const until = getCodexScopeRateLimitedUntil(connection.providerSpecificData, model);
if (!until) return false;
return new Date(until).getTime() > Date.now();
}
function getEarliestCodexScopeRateLimitedUntil(
connections: ProviderConnectionView[],
model: string | null
): string | null {
let earliest: string | null = null;
let earliestMs = Infinity;
for (const conn of connections) {
const until = getCodexScopeRateLimitedUntil(conn.providerSpecificData, model);
if (!until) continue;
const ms = new Date(until).getTime();
if (!Number.isFinite(ms) || ms <= Date.now()) continue;
if (ms < earliestMs) {
earliest = until;
earliestMs = ms;
}
}
return earliest;
}
function normalizeStatus(value: string | null): string {
return (value || "").trim().toLowerCase();
}
function isTerminalConnectionStatus(connection: ProviderConnectionView): boolean {
const status = normalizeStatus(connection.testStatus);
return status === "credits_exhausted" || status === "banned" || status === "expired";
}
function resolveTerminalConnectionStatus(
status: number,
result: { permanent?: boolean; creditsExhausted?: boolean },
providerErrorType: string | null = null
): string | null {
if (result.creditsExhausted || status === 402) return "credits_exhausted";
if (
providerErrorType === PROVIDER_ERROR_TYPES.PROJECT_ROUTE_ERROR ||
providerErrorType === PROVIDER_ERROR_TYPES.OAUTH_INVALID_TOKEN
) {
return null;
}
if (result.permanent || providerErrorType === PROVIDER_ERROR_TYPES.FORBIDDEN) {
return "banned";
}
if (
providerErrorType === PROVIDER_ERROR_TYPES.ACCOUNT_DEACTIVATED ||
providerErrorType === PROVIDER_ERROR_TYPES.UNAUTHORIZED ||
status === 401
) {
return "expired";
}
return null;
}
export function resolveQuotaLimitPolicy(
provider: string,
providerSpecificData: JsonRecord
): QuotaLimitPolicy {
const rawPolicy = asRecord(providerSpecificData.limitPolicy);
const rawWindows = Array.isArray(rawPolicy.windows) ? rawPolicy.windows : [];
const windows = rawWindows.map(normalizeWindowName).filter(Boolean) as string[];
if (provider === "codex") {
const defaultWindows = applyCodexWindowPolicy(windows, providerSpecificData);
const enabled = toBooleanOrDefault(rawPolicy.enabled, defaultWindows.length > 0);
return {
enabled,
thresholdPercent: normalizeQuotaThreshold(rawPolicy.thresholdPercent),
windows: defaultWindows,
};
}
return {
enabled: toBooleanOrDefault(rawPolicy.enabled, false),
thresholdPercent: normalizeQuotaThreshold(rawPolicy.thresholdPercent),
windows,
};
}
export function evaluateQuotaLimitPolicy(
provider: string,
connection: ProviderConnectionView,
requestedModel: string | null = null
): { blocked: boolean; reasons: string[]; resetAt: string | null } {
const policy = resolveQuotaLimitPolicy(provider, connection.providerSpecificData);
if (!policy.enabled || policy.windows.length === 0) {
return { blocked: false, reasons: [], resetAt: null };
}
const reasons: string[] = [];
const resetCandidates: Array<string | null> = [];
for (const windowName of policy.windows) {
const effectiveWindowName =
provider === "codex" ? toCodexScopedQuotaWindowName(windowName, requestedModel) : windowName;
const status = getQuotaWindowStatus(
connection.id,
effectiveWindowName,
policy.thresholdPercent
);
if (!status?.reachedThreshold) continue;
reasons.push(`${effectiveWindowName} usage ${Math.round(status.usedPercentage)}%`);
resetCandidates.push(status.resetAt);
}
return {
blocked: reasons.length > 0,
reasons,
resetAt: getEarliestFutureDate(resetCandidates),
};
}
function parseFutureDateMs(value: string | null): number | null {
if (!value) return null;
// Tolerate numeric-epoch strings (e.g. "1781696905131.0") as well as ISO
// strings β the rate_limited_until TEXT column can hold either (#3954).
const ms = cooldownUntilMs(value);
if (!Number.isFinite(ms) || ms <= Date.now()) return null;
return ms;
}
function getEarliestFutureDate(candidates: Array<string | null>): string | null {
return (
candidates
.map((candidate) => ({
raw: candidate,
ms: parseFutureDateMs(candidate),
}))
.filter((entry) => entry.ms !== null)
.sort((a, b) => (a.ms as number) - (b.ms as number))[0]?.raw || null
);
}
function isRetryableModelLockoutReason(reason: unknown): boolean {
return typeof reason === "string" && reason.length > 0
? !NON_RETRYABLE_MODEL_LOCKOUT_REASONS.has(reason)
: false;
}
function pushClampedPercentage(percentages: number[], value: number): void {
if (Number.isFinite(value)) {
percentages.push(Math.max(0, Math.min(100, value)));
}
}
function isResetAtInPast(resetAt: string | null): boolean {
if (!resetAt) return false;
const resetMs = new Date(resetAt).getTime();
return Number.isFinite(resetMs) && resetMs <= Date.now();
}
function collectPolicyQuotaHeadroomPercentages(
provider: string,
connection: ProviderConnectionView,
policy: QuotaLimitPolicy,
requestedModel: string | null
): number[] {
const percentages: number[] = [];
const seenWindows = new Set<string>();
for (const windowName of policy.windows) {
const scopedWindow =
provider === "codex" ? toCodexScopedQuotaWindowName(windowName, requestedModel) : windowName;
const normalizedWindow = normalizeWindowName(scopedWindow);
if (!normalizedWindow || seenWindows.has(normalizedWindow)) continue;
seenWindows.add(normalizedWindow);
const status = getQuotaWindowStatus(connection.id, normalizedWindow, policy.thresholdPercent);
if (status) pushClampedPercentage(percentages, status.remainingPercentage);
}
return percentages;
}
function collectCachedQuotaHeadroomPercentages(
provider: string,
connection: ProviderConnectionView,
requestedModel: string | null
): number[] {
const quotaEntry = getQuotaCache(connection.id) as QuotaCacheView | null;
const rawQuotas = quotaEntry?.quotas || {};
const codexWindowFilter =
provider === "codex" ? getCodexQuotaWindowFilterForModel(requestedModel) : undefined;
const percentages: number[] = [];
for (const [quotaName, quota] of Object.entries(rawQuotas)) {
if (codexWindowFilter && !codexWindowFilter(quotaName)) continue;
if (!quota || isResetAtInPast(toStringOrNull(quota.resetAt))) continue;
pushClampedPercentage(percentages, toNumber(quota.remainingPercentage, Number.NaN));
}
return percentages;
}
function getConnectionQuotaHeadroomPercent(
provider: string,
connection: ProviderConnectionView,
requestedModel: string | null = null
): number | null {
const policy = resolveQuotaLimitPolicy(provider, connection.providerSpecificData);
const policyPercentages = collectPolicyQuotaHeadroomPercentages(
provider,
connection,
policy,
requestedModel
);
const percentages =
policyPercentages.length > 0
? policyPercentages
: collectCachedQuotaHeadroomPercentages(provider, connection, requestedModel);
return percentages.length > 0 ? Math.min(...percentages) : null;
}
function getConnectionErrorPenalty(connection: ProviderConnectionView): number {
const errorType = normalizeStatus(connection.lastErrorType);
const errorSource = normalizeStatus(connection.lastErrorSource);
const numericErrorCode = toNumber(connection.errorCode, 0);
let penalty = 0;
if (connection.lastError) penalty += 6;
if (
errorType === "rate_limited" ||
errorType === "quota_exhausted" ||
errorType === "quota" ||
numericErrorCode === 429
) {
penalty += 24;
} else if (numericErrorCode === 401 || numericErrorCode === 403 || errorSource === "oauth") {
penalty += 18;
} else if (numericErrorCode >= 500) {
penalty += 10;
}
return penalty;
}
function getConnectionRecencyPenalty(connection: ProviderConnectionView): number {
if (!connection.lastUsedAt) return 0;
const ageMs = Date.now() - new Date(connection.lastUsedAt).getTime();
if (!Number.isFinite(ageMs)) return 0;
if (ageMs < 15_000) return 3;
if (ageMs < 60_000) return 2;
if (ageMs < 5 * 60_000) return 1;
return 0;
}
function getP2CConnectionScore(
provider: string,
connection: ProviderConnectionView,
requestedModel: string | null = null
): { score: number; quotaHeadroomPercent: number | null } {
const quotaBlocked = evaluateQuotaLimitPolicy(provider, connection, requestedModel).blocked;
const quotaExhausted = isAccountQuotaExhausted(connection.id);
const quotaHeadroomPercent = getConnectionQuotaHeadroomPercent(
provider,
connection,
requestedModel
);
let quotaPenalty = 0;
if (quotaHeadroomPercent !== null) {
quotaPenalty += Math.round((100 - quotaHeadroomPercent) / 8);
if (quotaHeadroomPercent <= 10) quotaPenalty += 10;
else if (quotaHeadroomPercent <= 25) quotaPenalty += 4;
} else if (!quotaBlocked && !quotaExhausted) {
quotaPenalty += 4;
}
const score =
(quotaExhausted ? 200 : 0) +
(quotaBlocked ? 80 : 0) +
getConnectionErrorPenalty(connection) +
Math.min(40, (connection.backoffLevel || 0) * 8) +
quotaPenalty +
Math.min(12, (connection.consecutiveUseCount || 0) * 2) +
getConnectionRecencyPenalty(connection) +
Math.min(6, Math.max(0, connection.priority || 0) - 1);
return { score, quotaHeadroomPercent };
}
function compareP2CConnections(
provider: string,
a: ProviderConnectionView,
b: ProviderConnectionView,
requestedModel: string | null = null
): number {
const aScore = getP2CConnectionScore(provider, a, requestedModel);
const bScore = getP2CConnectionScore(provider, b, requestedModel);
if (aScore.score !== bScore.score) {
return aScore.score - bScore.score;
}
const aHeadroom = aScore.quotaHeadroomPercent ?? -1;
const bHeadroom = bScore.quotaHeadroomPercent ?? -1;
if (aHeadroom !== bHeadroom) {
return bHeadroom - aHeadroom;
}
if ((a.priority || 999) !== (b.priority || 999)) {
return (a.priority || 999) - (b.priority || 999);
}
return a.id.localeCompare(b.id);
}
function compareLruConnections(a: ProviderConnectionView, b: ProviderConnectionView): number {
if (!a.lastUsedAt && !b.lastUsedAt) return (a.priority || 999) - (b.priority || 999);
if (!a.lastUsedAt) return -1;
if (!b.lastUsedAt) return 1;
const recencyDelta = new Date(a.lastUsedAt).getTime() - new Date(b.lastUsedAt).getTime();
if (recencyDelta !== 0) return recencyDelta;
if ((a.consecutiveUseCount || 0) !== (b.consecutiveUseCount || 0)) {
return (a.consecutiveUseCount || 0) - (b.consecutiveUseCount || 0);
}
return (a.priority || 999) - (b.priority || 999);
}
async function selectSessionAffinityConnection(
provider: string,
sessionKey: string | null | undefined,
connections: ProviderConnectionView[],
ttlMs = 0
): Promise<ProviderConnectionView | null> {
if (!sessionKey || connections.length === 0 || ttlMs <= 0) return null;
const existing = getSessionAccountAffinity(sessionKey, provider, ttlMs);
if (existing) {
const connection = connections.find((candidate) => candidate.id === existing.connectionId);
if (connection) {
touchSessionAccountAffinity(sessionKey, provider, Date.now(), ttlMs);
await updateProviderConnection(connection.id, {
lastUsedAt: new Date().toISOString(),
consecutiveUseCount: (connection.consecutiveUseCount || 0) + 1,
});
log.info(
"AUTH",
`session_key=${formatSessionKeyForLog(sessionKey)} -> connection ${connection.id.slice(
0,
8
)} (affinity)`
);
return connection;
}
deleteSessionAccountAffinity(sessionKey, provider);
log.info(
"AUTH",
`affinity cleared for session_key=${formatSessionKeyForLog(sessionKey)} provider=${provider}`
);
}
const connection = [...connections].sort(compareLruConnections)[0] ?? null;
if (!connection) return null;
upsertSessionAccountAffinity(sessionKey, provider, connection.id, Date.now(), ttlMs);
await updateProviderConnection(connection.id, {
lastUsedAt: new Date().toISOString(),
consecutiveUseCount: 1,
});
log.info(
"AUTH",
`new affinity created for session_key=${formatSessionKeyForLog(
sessionKey
)} -> connection ${connection.id.slice(0, 8)}`
);
return connection;
}
/**
* Sentinel connection id used for the synthetic credentials of no-auth /
* keyless providers. It is NOT a real DB row, so it
* cannot carry cooldown state β the account-fallback loop must be able to
* exclude it (#3061), otherwise it gets re-selected forever.
*/
const SYNTHETIC_NOAUTH_CONNECTION_ID = "noauth";
type AnonymousFallbackProviderDefinition = {
anonymousFallback?: boolean;
noAuth?: boolean;
};
function buildSyntheticNoAuthCredentials(providerSpecificData: JsonRecord = {}): {
apiKey: null;
accessToken: null;
refreshToken: null;
expiresAt: null;
projectId: null;
defaultModel: null;
copilotToken: null;
providerSpecificData: JsonRecord;
connectionId: typeof SYNTHETIC_NOAUTH_CONNECTION_ID;
testStatus: "active";
lastError: null;
lastErrorType: null;
lastErrorSource: null;
errorCode: null;
rateLimitedUntil: null;
maxConcurrent: null;
allRateLimited?: never;
allExpired?: never;
retryAfter?: never;
retryAfterHuman?: never;
} {
return {
apiKey: null,
accessToken: null,
refreshToken: null,
expiresAt: null,
projectId: null,
defaultModel: null,
copilotToken: null,
providerSpecificData,
connectionId: SYNTHETIC_NOAUTH_CONNECTION_ID,
testStatus: "active",
lastError: null,
lastErrorType: null,
lastErrorSource: null,
errorCode: null,
rateLimitedUntil: null,
maxConcurrent: null,
};
}
/**
* #4954 β A no-auth provider ("OpenCode Free", MiMoCode, β¦) has no DB-backed
* credential, but its NoAuthAccountCard DOES persist a real connection row whose
* `providerSpecificData` carries the per-account proxy/rotation config
* (`fingerprints` + `accountProxies`). The synthetic credentials returned above
* default to an empty `providerSpecificData`, so without hydration the executor
* never sees those proxies and every request egresses direct. Pull just the
* rotation-relevant fields off the active connection so the executor can honor
* them. Best-effort: any read failure falls back to empty (historical behavior).
*/
async function loadNoAuthProviderSpecificData(providerId: string): Promise<JsonRecord> {
try {
const connectionsRaw = await getProviderConnections({ provider: providerId });
const connections = (Array.isArray(connectionsRaw) ? connectionsRaw : []).map(
toProviderConnection
);
const hydrated: JsonRecord = {};
for (const conn of connections) {
const psd = conn.providerSpecificData;
if (!psd || typeof psd !== "object") continue;
if (Array.isArray(psd.fingerprints) && !Array.isArray(hydrated.fingerprints)) {
hydrated.fingerprints = psd.fingerprints;
}
if (Array.isArray(psd.accountProxies) && !Array.isArray(hydrated.accountProxies)) {
hydrated.accountProxies = psd.accountProxies;
}
}
return hydrated;
} catch {
return {};
}
}
function providerCanUseSyntheticNoAuthFallback(providerId: string): boolean {
const providerDef = getProviderById(providerId) as
| AnonymousFallbackProviderDefinition
| undefined;
const noAuthProviderDef = (
NOAUTH_PROVIDERS as Record<string, AnonymousFallbackProviderDefinition | undefined>
)[providerId];
const webCookieProviderDef = (
WEB_COOKIE_PROVIDERS as Record<string, AnonymousFallbackProviderDefinition | undefined>
)[providerId];
return (
providerDef?.anonymousFallback === true ||
noAuthProviderDef?.noAuth === true ||
webCookieProviderDef?.noAuth === true
);
}
async function maybeSyntheticNoAuthFallback(
providerId: string,
excludedConnectionIds: Set<string>
) {
if (!providerCanUseSyntheticNoAuthFallback(providerId)) return null;
if (excludedConnectionIds.has(SYNTHETIC_NOAUTH_CONNECTION_ID)) return null;
// #4954: hydrate per-account proxy/rotation config off the connection row so
// no-auth executors (opencode, mimocode) actually honor configured proxies.
const providerSpecificData = await loadNoAuthProviderSpecificData(providerId);
return buildSyntheticNoAuthCredentials(providerSpecificData);
}
function normalizeExcludedConnectionIds(
excludeConnectionId: string | null,
extraExcludedConnectionIds: string[] | null | undefined
): Set<string> {
const normalized = new Set<string>();
if (typeof excludeConnectionId === "string" && excludeConnectionId.trim().length > 0) {
normalized.add(excludeConnectionId.trim());
}
if (Array.isArray(extraExcludedConnectionIds)) {
for (const connectionId of extraExcludedConnectionIds) {
if (typeof connectionId === "string" && connectionId.trim().length > 0) {
normalized.add(connectionId.trim());
}
}
}
return normalized;
}
function buildQuotaPreflightRateLimitedResult(
provider: string,
blockedByPreflight: Array<{
id: string;
quotaPercent?: number;
resetAt?: string | null;
}>
) {
const retryAfter =
getEarliestFutureDate(blockedByPreflight.map((entry) => entry.resetAt ?? null)) ||
new Date(Date.now() + 5 * 60 * 1000).toISOString();
const blockedSummary = blockedByPreflight
.map((entry) => {
const percent = Number.isFinite(entry.quotaPercent)
? `${Math.round((entry.quotaPercent as number) * 100)}%`
: "quota exhausted";
return `${entry.id.slice(0, 8)}(${percent})`;
})
.join("; ");
log.info("AUTH", `${provider} | quota preflight filtered account(s): ${blockedSummary}`);
return {
allRateLimited: true,
retryAfter,
retryAfterHuman: formatRetryAfter(retryAfter),
lastError: `All ${provider} accounts blocked by quota preflight`,
lastErrorCode: 429,
};
}
// Provider-scoped mutexes prevent race conditions during account selection without
// serializing unrelated providers behind a single global lock.
const selectionMutexes = new Map<string, Promise<void>>();
function getSelectionMutexKey(provider: string, options: CredentialSelectionOptions): string {
return [
resolveProviderId(provider) || provider,
options.forcedConnectionId ? `forced:${options.forcedConnectionId}` : "pool",
].join(":");
}
function createSelectionLock(key: string) {
const currentMutex = selectionMutexes.get(key) ?? Promise.resolve();
let resolveMutex: (() => void) | undefined;
const nextMutex = new Promise<void>((resolve) => {
resolveMutex = resolve;
});
selectionMutexes.set(key, nextMutex);
return {
wait: currentMutex,
release: () => {
resolveMutex?.();
if (selectionMutexes.get(key) === nextMutex) {
selectionMutexes.delete(key);
}
},
};
}
// βββ Anti-Thundering Herd: per-connection mutex for markAccountUnavailable βββ
// Prevents multiple concurrent requests from marking the same connection
// unavailable in parallel, which was the root cause of cascading 502 lockouts.
const markMutexes = new Map<string, Promise<void>>();
// Strict-Random shuffle deck moved to src/shared/utils/shuffleDeck.ts
// auth.ts uses getNextFromDeckSync inside the provider-scoped selection mutex.
// Re-export for backwards compat with existing test imports.
export { fisherYatesShuffle, getNextFromDeckSync as getNextFromDeck };
/**
* Resolve provider aliases (e.g., nvidia -> nvidia_nim) for DB lookup
*/
async function getProviderSearchPool(provider: string): Promise<string[]> {
const canonicalProvider = resolveProviderId(provider);
const canonicalAlias = getProviderAlias(canonicalProvider);
if (provider === "nvidia") {
return ["nvidia", "nvidia_nim"];
}
if (provider === "nvidia_nim") {
return ["nvidia_nim", "nvidia"];
}
const searchPool = new Set([provider, canonicalProvider, canonicalAlias].filter(Boolean));
// Built-in providers already resolve through static ids/aliases. Only
// compatible/custom providers need provider_nodes expansion back to the
// generated internal connection ids. (#3058)
if (getProviderById(canonicalProvider)) {
return Array.from(searchPool);
}
// Custom provider nodes are referenced by user-facing prefixes in combos
// (for example "78code/gpt-5.4"), but live credentials are stored under
// internal provider ids like openai-compatible-responses-<uuid>.
try {
const providerNodes = await getProviderNodes();
for (const node of Array.isArray(providerNodes) ? providerNodes : []) {
const nodeRecord = asRecord(node);
const nodePrefix = typeof nodeRecord.prefix === "string" ? nodeRecord.prefix.trim() : "";
const nodeId = typeof nodeRecord.id === "string" ? nodeRecord.id.trim() : "";
if (!nodePrefix || !nodeId) continue;
if (
nodePrefix === provider ||
nodePrefix === canonicalProvider ||
nodePrefix === canonicalAlias
) {
searchPool.add(nodeId);
}
}
} catch {
// Best-effort alias expansion only.
}
return Array.from(searchPool);
}
/**
* Get provider credentials from localDb
* Filters out unavailable accounts and returns the selected account based on strategy
* @param {string} provider - Provider name
* @param {string|null} excludeConnectionId - Connection ID to exclude (for retry with next account)
*/
export async function getProviderCredentials(
provider: string,
excludeConnectionId: string | null = null,
allowedConnections: string[] | null = null,
requestedModel: string | null = null,
options: CredentialSelectionOptions = {}
) {
const selectionLock = createSelectionLock(getSelectionMutexKey(provider, options));
try {
await selectionLock.wait;
// No-auth providers (e.g. opencode) need no DB connection β return synthetic credentials
// so the executor receives a valid credentials object without auth headers being added.
const resolvedId = resolveProviderId(provider);
const providerMaps: Record<string, { noAuth?: boolean } | undefined>[] = [
NOAUTH_PROVIDERS as Record<string, { noAuth?: boolean } | undefined>,
WEB_COOKIE_PROVIDERS as Record<string, { noAuth?: boolean } | undefined>,
];
if (providerMaps.some((map) => map[resolvedId]?.noAuth)) {
if (await isNoAuthProviderBlockedBySettings(resolvedId)) return null;
// #3061: there is only one synthetic "noauth" connection for a no-auth
// provider. If the caller already tried and excluded it (account-fallback
// after a persistent upstream error), do NOT hand it back β that would let
// the chat fallback loop re-select "noauth" forever (no real DB row β no
// cooldown to brake it), writing logs every iteration until the disk fills.
// Returning null here lets the handler stop after a single attempt.
const excludedForNoAuth = normalizeExcludedConnectionIds(
excludeConnectionId,
options.excludeConnectionIds
);
return await maybeSyntheticNoAuthFallback(resolvedId, excludedForNoAuth);
}
const allowSuppressedConnections = options.allowSuppressedConnections === true;
const allowRateLimitedConnections =
allowSuppressedConnections || options.allowRateLimitedConnections === true;
const bypassQuotaPolicy = options.bypassQuotaPolicy === true;
const forcedConnectionId =
typeof options.forcedConnectionId === "string" && options.forcedConnectionId.trim().length > 0
? options.forcedConnectionId.trim()
: null;
const excludedConnectionIds = normalizeExcludedConnectionIds(
excludeConnectionId,
options.excludeConnectionIds
);
// Fix #922: Check for aliases (nvidia/nvidia_nim) to ensure credentials are found
const providersToSearch = await getProviderSearchPool(provider);
const connectionResults = await Promise.all(
providersToSearch.map((p) => getProviderConnections({ provider: p, isActive: true }))
);
const connectionsRaw = connectionResults.filter(Array.isArray).flat();
let connections = (Array.isArray(connectionsRaw) ? connectionsRaw : [])
.map(toProviderConnection)
.filter((conn) => conn.id.length > 0);
// allowedConnections: restrict to specific connection IDs (from API key policy, #363)
if (allowedConnections && allowedConnections.length > 0) {
connections = connections.filter((conn) => allowedConnections.includes(conn.id));
}
if (forcedConnectionId) {
connections = connections.filter((conn) => conn.id === forcedConnectionId);
}
log.debug(
"AUTH",
`${provider} | total connections: ${connections.length}, excludeIds: ${
excludedConnectionIds.size > 0 ? Array.from(excludedConnectionIds).join(",") : "none"
}, forcedId: ${forcedConnectionId || "none"}`
);
if (connections.length === 0) {
// Check all connections (including inactive) to see if rate limited
// Fix #922: Also search aliases here
const allConnectionsResults = await Promise.all(
providersToSearch.map((p) => getProviderConnections({ provider: p }))
);
let allConnections = (allConnectionsResults.filter(Array.isArray).flat() as unknown[])
.map(toProviderConnection)
.filter((conn) => conn.id.length > 0);
if (allowedConnections && allowedConnections.length > 0) {
allConnections = allConnections.filter((conn) => allowedConnections.includes(conn.id));
}
if (forcedConnectionId) {
allConnections = allConnections.filter((conn) => conn.id === forcedConnectionId);
}
log.debug("AUTH", `${provider} | all connections (incl inactive): ${allConnections.length}`);
if (allConnections.length > 0) {
const earliest = getEarliestRateLimitedUntil(allConnections);
if (earliest) {
log.warn(
"AUTH",
`${provider} | all ${allConnections.length} accounts rate limited (${formatRetryAfter(earliest)})`
);
return {
allRateLimited: true,
retryAfter: earliest,
retryAfterHuman: formatRetryAfter(earliest),
};
}
log.warn("AUTH", `${provider} | ${allConnections.length} accounts found but none active`);
allConnections.forEach((c) => {
log.debug(
"AUTH",
` β ${c.id?.slice(0, 8)} | isActive=${c.isActive} | rateLimitedUntil=${c.rateLimitedUntil || "none"} | testStatus=${c.testStatus}`
);
});
// If every existing connection is in a terminal state (expired/banned/
// credits_exhausted), surface that as a re-auth signal instead of the
// generic "No credentials" 400. The classic case is AWS SSO/Kiro
// refresh tokens hitting their 90-day TTL: all connections flip to
// is_active=0 with testStatus=banned|expired, and without this branch
// the dashboard sees a misleading "bad_request" code.
const terminalConnections = allConnections.filter(isTerminalConnectionStatus);
if (terminalConnections.length === allConnections.length) {
const syntheticFallback = await maybeSyntheticNoAuthFallback(resolvedId, excludedConnectionIds);
if (syntheticFallback) return syntheticFallback;
const statusCounts = new Map<string, number>();
for (const c of terminalConnections) {
const key = normalizeStatus(c.testStatus) || "expired";
statusCounts.set(key, (statusCounts.get(key) || 0) + 1);
}
const dominantStatus =
[...statusCounts.entries()].sort((a, b) => b[1] - a[1])[0]?.[0] || "expired";
return {
allExpired: true,
expiredCount: terminalConnections.length,
expiredStatus: dominantStatus,
};
}
}
const syntheticFallback = await maybeSyntheticNoAuthFallback(resolvedId, excludedConnectionIds);
if (syntheticFallback) return syntheticFallback;
log.warn("AUTH", `No credentials for ${provider}`);
return null;
}
// Auto-decay backoffLevel for accounts whose rateLimitedUntil has passed.
// Without this, high backoffLevel permanently deprioritizes accounts even
// after the rate limit window expires, creating a deadlock where the account
// needs a successful request to reset but never gets selected.
for (const c of connections) {
if (
c.backoffLevel > 0 &&
!isTerminalConnectionStatus(c) &&
!isAccountUnavailable(c.rateLimitedUntil)
) {
c.backoffLevel = 0;
updateProviderConnection(c.id, {
backoffLevel: 0,
testStatus: "active",
lastError: null,
lastErrorAt: null,
lastErrorType: null,
lastErrorSource: null,
errorCode: null,
}).catch(() => {});
}
}
// Filter out unavailable accounts and excluded connection
const availableConnections = connections.filter((c) => {
if (excludedConnectionIds.has(c.id)) return false;
if (requestedModel && isModelExcludedByConnection(requestedModel, c.providerSpecificData)) {
return false;
}
if (!allowSuppressedConnections) {
if (!allowRateLimitedConnections && isAccountUnavailable(c.rateLimitedUntil)) return false;
if (isTerminalConnectionStatus(c)) return false;
if (provider === "codex" && isCodexScopeUnavailable(c, requestedModel)) return false;
// Per-model lockout: if this specific model is locked on this connection, skip it
if (requestedModel && isModelLocked(provider, c.id, requestedModel)) return false;
}
return true;
});
log.debug(
"AUTH",
`${provider} | available: ${availableConnections.length}/${connections.length}`
);
connections.forEach((c) => {
const excluded = excludedConnectionIds.has(c.id);
const rateLimited = isAccountUnavailable(c.rateLimitedUntil);
const terminalStatus = isTerminalConnectionStatus(c);
const codexScopeLimited = provider === "codex" && isCodexScopeUnavailable(c, requestedModel);
const modelLocked =
Boolean(requestedModel) && isModelLocked(provider, c.id, requestedModel as string);
const modelExcluded =
Boolean(requestedModel) &&
isModelExcludedByConnection(requestedModel as string, c.providerSpecificData);
if (excluded || rateLimited) {
log.debug(
"AUTH",
` β ${c.id?.slice(0, 8)} | ${excluded ? "excluded" : ""} ${rateLimited ? `rateLimited until ${c.rateLimitedUntil}` : ""}${allowSuppressedConnections && rateLimited ? " (retained for combo live test)" : ""}`
);
} else if (modelExcluded) {
log.debug(
"AUTH",
` β ${c.id?.slice(0, 8)} | excluded by per-account model rule for ${requestedModel}`
);
} else if (terminalStatus) {
log.debug(
"AUTH",
allowSuppressedConnections
? ` β ${c.id?.slice(0, 8)} | retained terminal status=${c.testStatus} for combo live test`
: ` β ${c.id?.slice(0, 8)} | skipped terminal status=${c.testStatus}`
);
} else if (codexScopeLimited) {
const scopeUntil = getCodexScopeRateLimitedUntil(c.providerSpecificData, requestedModel);
log.debug(
"AUTH",
allowSuppressedConnections
? ` β ${c.id?.slice(0, 8)} | retained codex scope-limited account until ${scopeUntil} for combo live test`
: ` β ${c.id?.slice(0, 8)} | codex scope-limited until ${scopeUntil}`
);
} else if (modelLocked) {
const lockout = getModelLockoutInfo(provider, c.id, requestedModel);
log.debug(
"AUTH",
allowSuppressedConnections
? ` β ${c.id?.slice(0, 8)} | retained model lockout for ${requestedModel} (${lockout?.remainingMs || 0}ms remaining) for combo live test`
: ` β ${c.id?.slice(0, 8)} | model-locked for ${requestedModel} (${lockout?.remainingMs || 0}ms remaining)`
);
}
});
if (availableConnections.length === 0) {
const cooldownStates: CooldownInspectionState[] = connections.map((connection) => {
const connectionCooldownMs = parseFutureDateMs(connection.rateLimitedUntil);
const codexScopeCooldownMs =
provider === "codex"
? parseFutureDateMs(
getCodexScopeRateLimitedUntil(connection.providerSpecificData, requestedModel)
)
: null;
const modelLockout = requestedModel
? getModelLockoutInfo(provider, connection.id, requestedModel)
: null;
const retryableModelCooldownMs =
modelLockout &&
modelLockout.remainingMs > 0 &&
isRetryableModelLockoutReason(modelLockout.reason)
? Date.now() + modelLockout.remainingMs
: null;
return {
connection,
connectionCooldownMs,
codexScopeCooldownMs,
retryableModelCooldownMs,
};
});
const cooldownCandidates = cooldownStates
.flatMap((state) => {
const candidates: Array<{ ms: number; connection: ProviderConnectionView }> = [];
if (state.connectionCooldownMs !== null) {
candidates.push({ ms: state.connectionCooldownMs, connection: state.connection });
}
if (state.codexScopeCooldownMs !== null) {
candidates.push({ ms: state.codexScopeCooldownMs, connection: state.connection });
}
if (state.retryableModelCooldownMs !== null) {
candidates.push({ ms: state.retryableModelCooldownMs, connection: state.connection });
}
return candidates;
})
.sort((a, b) => a.ms - b.ms);
const allBlockedByModelCooldown =
Boolean(requestedModel) &&
cooldownStates.length > 0 &&
cooldownStates.every((state) => {
const hasModelSpecificCooldown =
state.codexScopeCooldownMs !== null || state.retryableModelCooldownMs !== null;
return hasModelSpecificCooldown && state.connectionCooldownMs === null;
});
const earliestCandidate = cooldownCandidates[0];
const earliest =
earliestCandidate?.ms && Number.isFinite(earliestCandidate.ms)
? new Date(earliestCandidate.ms).toISOString()
: null;
if (earliest) {
const earliestConn = earliestCandidate?.connection;
log.warn(
"AUTH",
allBlockedByModelCooldown
? `${provider} | all ${connections.length} active accounts cooling down for model ${requestedModel} (${formatRetryAfter(earliest)}) | lastErrorCode=${earliestConn?.errorCode}, lastError=${earliestConn?.lastError?.slice(0, 50)}`
: `${provider} | all ${connections.length} active accounts rate limited (${formatRetryAfter(earliest)}) | lastErrorCode=${earliestConn?.errorCode}, lastError=${earliestConn?.lastError?.slice(0, 50)}`
);
return {
allRateLimited: true,
retryAfter: earliest,
retryAfterHuman: formatRetryAfter(earliest),
lastError: earliestConn?.lastError || null,
lastErrorCode: allBlockedByModelCooldown ? 429 : earliestConn?.errorCode || null,
cooldownScope: allBlockedByModelCooldown ? "model" : "connection",
cooldownModel: allBlockedByModelCooldown ? requestedModel : null,
};
}
const syntheticFallback = await maybeSyntheticNoAuthFallback(resolvedId, excludedConnectionIds);
if (syntheticFallback) return syntheticFallback;
log.warn("AUTH", `${provider} | all ${connections.length} accounts unavailable`);
return null;
}
let policyEligibleConnections = availableConnections;
const blockedByPolicy: Array<{
id: string;
reasons: string[];
resetAt: string | null;
}> = [];
if (!bypassQuotaPolicy) {
policyEligibleConnections = availableConnections.filter((connection) => {
const evaluation = evaluateQuotaLimitPolicy(provider, connection, requestedModel);
if (!evaluation.blocked) return true;
blockedByPolicy.push({
id: connection.id,
reasons: evaluation.reasons,
resetAt: evaluation.resetAt,
});
return false;
});
} else if (availableConnections.length > 0) {
log.debug("AUTH", `${provider} | bypassing quota policy for combo live test`);
}
if (blockedByPolicy.length > 0) {
log.info(
"AUTH",
`${provider} | quota policy filtered ${blockedByPolicy.length} account(s): ${blockedByPolicy
.map((entry) => `${entry.id.slice(0, 8)}(${entry.reasons.join(", ")})`)
.join("; ")}`
);
}
if (policyEligibleConnections.length === 0 && availableConnections.length > 0) {
const earliestResetAt = getEarliestFutureDate(blockedByPolicy.map((entry) => entry.resetAt));
const earliestResetMs = parseFutureDateMs(earliestResetAt);
const retryAfter = earliestResetMs
? new Date(earliestResetMs).toISOString()
: new Date(Date.now() + 5 * 60 * 1000).toISOString();
return {
allRateLimited: true,
retryAfter,
retryAfterHuman: formatRetryAfter(retryAfter),
lastError: `All ${provider} accounts reached configured quota threshold`,
lastErrorCode: 429,
};
}
// Quota-aware: filter out accounts with exhausted quota
const withQuota = policyEligibleConnections.filter((c) => !isAccountQuotaExhausted(c.id));
const exhaustedQuota = policyEligibleConnections.filter((c) => isAccountQuotaExhausted(c.id));
if (exhaustedQuota.length > 0) {
log.info(
"AUTH",
`${provider} | quota-aware: ${withQuota.length} with quota, skipping ${exhaustedQuota.length} exhausted`
);
}
if (withQuota.length === 0 && exhaustedQuota.length > 0) {
// All remaining eligible accounts are exhausted
const earliestResetAt = getEarliestFutureDate(
exhaustedQuota.map((c) => {
const entry = getQuotaCache(c.id);
return entry?.nextResetAt || null;
})
);
const earliestResetMs = parseFutureDateMs(earliestResetAt);
const retryAfter = earliestResetMs
? new Date(earliestResetMs).toISOString()
: new Date(Date.now() + 5 * 60 * 1000).toISOString();
return {
allRateLimited: true,
retryAfter,
retryAfterHuman: formatRetryAfter(retryAfter),
lastError: `All ${provider} accounts have exhausted their quota`,
lastErrorCode: 429,
};
}
const orderedConnections = withQuota;
const settings = await getSettings();
const strategy = settings.fallbackStrategy || "fill-first";
const sessionAffinityTtlMs =
provider === "codex"
? Number.isFinite(Number(options.sessionAffinityTtlMs)) &&
Number(options.sessionAffinityTtlMs) > 0
? Number(options.sessionAffinityTtlMs)
: Number.isFinite(Number(settings.codexSessionAffinityTtlMs)) &&
Number(settings.codexSessionAffinityTtlMs) > 0
? Number(settings.codexSessionAffinityTtlMs)
: 0
: 0;
let connection;
const affinityConnection = await selectSessionAffinityConnection(
provider,
options.sessionKey,
orderedConnections,
sessionAffinityTtlMs
);
if (affinityConnection) {
connection = affinityConnection;
} else if (options.sessionKey) {
log.info(
"AUTH",
`session_key=${formatSessionKeyForLog(options.sessionKey)} has no available affinity target`
);
}
if (connection) {
// Session affinity selected a connection before global sticky routing.
} else if (strategy === "round-robin") {
const stickyLimit = toNumber((settings as Record<string, unknown>).stickyRoundRobinLimit, 3);
// If excluding an account (fallback scenario), skip sticky logic and go straight to LRU
// This prevents the system from getting stuck on a failed account
const isFallbackScenario = excludeConnectionId !== null;
if (!isFallbackScenario) {
// Sort by lastUsed (most recent first) to find current candidate
const byRecency = [...orderedConnections].sort((a: any, b: any) => {
if (!a.lastUsedAt && !b.lastUsedAt) return (a.priority || 999) - (b.priority || 999);
if (!a.lastUsedAt) return 1;
if (!b.lastUsedAt) return -1;
return new Date(b.lastUsedAt).getTime() - new Date(a.lastUsedAt).getTime();
});
const current = byRecency[0];
const currentCount = current?.consecutiveUseCount || 0;
if (current && current.lastUsedAt && currentCount < stickyLimit) {
// Stay with current account
connection = current;
log.debug(
"AUTH",
`${provider} round-robin: staying with ${current.id?.slice(0, 8)}... (count=${currentCount}/${stickyLimit})`
);
// Update lastUsedAt and increment count (await to ensure persistence)
await updateProviderConnection(connection.id, {
lastUsedAt: new Date().toISOString(),
consecutiveUseCount: (connection.consecutiveUseCount || 0) + 1,
});
} else {
// Pick the least recently used (excluding current if possible)
// Also penalize accounts with high backoffLevel (previously rate-limited)
// so they don't get immediately re-selected after cooldown (#340)
const sortedByOldest = [...orderedConnections].sort((a: any, b: any) => {
// Penalize previously rate-limited accounts (backoffLevel > 0)
const aBackoff = a.backoffLevel || 0;
const bBackoff = b.backoffLevel || 0;
if (aBackoff !== bBackoff) return aBackoff - bBackoff; // lower backoff first
if (!a.lastUsedAt && !b.lastUsedAt) return (a.priority || 999) - (b.priority || 999);
if (!a.lastUsedAt) return -1;
if (!b.lastUsedAt) return 1;
return new Date(a.lastUsedAt).getTime() - new Date(b.lastUsedAt).getTime();
});
connection = sortedByOldest[0];
log.debug(
"AUTH",
`${provider} round-robin: switching to LRU ${connection.id?.slice(0, 8)}... (current count=${currentCount} >= limit=${stickyLimit} or no lastUsedAt)`
);
// Update lastUsedAt and reset count to 1 (await to ensure persistence)
await updateProviderConnection(connection.id, {
lastUsedAt: new Date().toISOString(),
consecutiveUseCount: 1,
});
}
} else {
// Fallback scenario: excluded an account due to failure
// Always pick the least recently used to ensure proper cycling
// Also penalize accounts with high backoffLevel (#340)
const sortedByOldest = [...orderedConnections].sort((a: any, b: any) => {
const aBackoff = a.backoffLevel || 0;
const bBackoff = b.backoffLevel || 0;
if (aBackoff !== bBackoff) return aBackoff - bBackoff;
if (!a.lastUsedAt && !b.lastUsedAt) return (a.priority || 999) - (b.priority || 999);
if (!a.lastUsedAt) return -1;
if (!b.lastUsedAt) return 1;
return new Date(a.lastUsedAt).getTime() - new Date(b.lastUsedAt).getTime();
});
connection = sortedByOldest[0];
log.info(
"AUTH",
`${provider} round-robin: FALLBACK MODE - excluded ${excludeConnectionId?.slice(0, 8)}..., picked LRU ${connection.id?.slice(0, 8)}...`
);
// Update lastUsedAt and reset count to 1 (await to ensure persistence)
await updateProviderConnection(connection.id, {
lastUsedAt: new Date().toISOString(),
consecutiveUseCount: 1,
});
}
} else if (strategy === "p2c") {
const candidatePool = withQuota.length > 0 ? withQuota : orderedConnections;
// Power of Two Choices: sample from the quota-eligible pool and compare
// health instead of defaulting to random-first selection.
if (candidatePool.length <= 2) {
connection = [...candidatePool].sort((a, b) =>
compareP2CConnections(provider, a, b, requestedModel)
)[0];
} else {
const i =
parseInt(randomUUID().replace(/-/g, "").substring(0, 8), 16) % candidatePool.length;
let j =
parseInt(randomUUID().replace(/-/g, "").substring(0, 8), 16) % (candidatePool.length - 1);
if (j >= i) j++;
const a = candidatePool[i];
const b = candidatePool[j];
connection = compareP2CConnections(provider, a, b, requestedModel) <= 0 ? a : b;
}
} else if (strategy === "random") {
// Random: Fisher-Yates-inspired random pick
const idx =
parseInt(randomUUID().replace(/-/g, "").substring(0, 8), 16) % orderedConnections.length;
connection = orderedConnections[idx];
} else if (strategy === "least-used") {
// Least Used: pick the one with oldest lastUsedAt
const sorted = [...orderedConnections].sort((a, b) => {
if (!a.lastUsedAt && !b.lastUsedAt) return (a.priority || 999) - (b.priority || 999);
if (!a.lastUsedAt) return -1;
if (!b.lastUsedAt) return 1;
return new Date(a.lastUsedAt).getTime() - new Date(b.lastUsedAt).getTime();
});
connection = sorted[0];
} else if (strategy === "cost-optimized") {
// Cost Optimized: sort by priority ascending (lower = cheaper/preferred)
// Future: can be enhanced with actual cost data per provider
const sorted = [...orderedConnections].sort(
(a, b) => (a.priority || 999) - (b.priority || 999)
);
connection = sorted[0];
} else if (strategy === "strict-random") {
// Strict Random: shuffle deck β uses each account once before reshuffling
const ids = orderedConnections.map((c) => c.id);
const selectedId = getNextFromDeckSync(`conn:${provider}`, ids);
connection = orderedConnections.find((c) => c.id === selectedId) || orderedConnections[0];
} else {
// Default: fill-first (already sorted by priority in getProviderConnections)
connection = orderedConnections[0];
}
const apiKeyHealth = connection.providerSpecificData?.apiKeyHealth as
| Record<string, KeyHealth>
| undefined;
if (apiKeyHealth) {
syncHealthFromDB(connection.id, apiKeyHealth);
}
return {
apiKey: connection.apiKey,
accessToken: connection.accessToken,
refreshToken: connection.refreshToken,
expiresAt: connection.tokenExpiresAt || connection.expiresAt || null,
projectId: connection.projectId,
// #474: surface the connection's configured defaultModel so the chat /
// embeddings handlers can resolve a bare model name (e.g. an alias that
// resolved to "auto") to a real provider model ID before the upstream call.
defaultModel: connection.defaultModel || null,
copilotToken:
typeof connection.providerSpecificData.copilotToken === "string"
? connection.providerSpecificData.copilotToken
: null,
providerSpecificData: connection.providerSpecificData,
// Fields the generic quota fetcher (open-sse/services/genericQuotaFetcher.ts)
// needs to delegate to getUsageForProvider for any provider β kept aliased
// (`id` + `connectionId`) for back-compat with callers that already use the
// connectionId name.
id: connection.id,
provider: connection.provider,
email: connection.email,
connectionId: connection.id,
// Include current status for optimization check
testStatus: connection.testStatus,
lastError: connection.lastError,
lastErrorType: connection.lastErrorType,
lastErrorSource: connection.lastErrorSource,
errorCode: connection.errorCode,
rateLimitedUntil: connection.rateLimitedUntil,
maxConcurrent: connection.maxConcurrent,
// Surface per-window quota overrides so the preflight latency gate in
// getProviderCredentialsWithQuotaPreflight can see them. Without this,
// user-set cutoffs would silently never enforce.
quotaWindowThresholds: connection.quotaWindowThresholds ?? null,
};
} finally {
selectionLock.release();
}
}
export async function getProviderCredentialsWithQuotaPreflight(
provider: string,
excludeConnectionId: string | null = null,
allowedConnections: string[] | null = null,
requestedModel: string | null = null,
options: CredentialSelectionOptions = {}
) {
if (options.bypassQuotaPolicy === true) {
return getProviderCredentials(
provider,
excludeConnectionId,
allowedConnections,
requestedModel,
options
);
}
const blockedByPreflight: Array<{
id: string;
quotaPercent?: number;
resetAt?: string | null;
}> = [];
const excludedConnectionIds = normalizeExcludedConnectionIds(
excludeConnectionId,
options.excludeConnectionIds
);
const resilience = resolveResilienceSettings(await getCachedSettings());
const { defaultThresholdPercent, warnThresholdPercent, providerWindowDefaults } =
resilience.quotaPreflight;
const providerWindowMap = providerWindowDefaults[provider] || {};
const providerHasDefaults = Object.keys(providerWindowMap).length > 0;
// The factory default is "block at 2% remaining" β effectively "right
// before 429." Skipping preflight at that level is a clean no-op. If an
// operator has raised the global to anything stricter (e.g. 20% remaining
// = stop at 80% used), preflight needs to run for every connection so the
// tighter floor is honored.
const FACTORY_NO_OP_REMAINING_PERCENT = 2;
const globalDefaultIsRestrictive = defaultThresholdPercent > FACTORY_NO_OP_REMAINING_PERCENT;
while (true) {
const credentials = await getProviderCredentials(
provider,
null,
allowedConnections,
requestedModel,
{
...options,
excludeConnectionIds: Array.from(excludedConnectionIds),
}
);
if (!credentials) {
if (blockedByPreflight.length > 0) {
return buildQuotaPreflightRateLimitedResult(provider, blockedByPreflight);
}
return null;
}
if (
("allRateLimited" in credentials && credentials.allRateLimited) ||
("allExpired" in credentials && credentials.allExpired)
) {
return credentials;
}
const connectionId = credentials.connectionId;
if (!connectionId) {
return credentials;
}
// Cascading resolver: per-connection override β per-(provider, window)
// default β global default. Used per-window when the fetcher exposes
// multiple windows, and once (with window=null) for single-signal
// fetchers. The warn fallback is uniform β windows don't need their own
// warn levels in v1.
const perConnectionWindowOverrides =
(credentials as { quotaWindowThresholds?: Record<string, number> | null })
.quotaWindowThresholds || {};
// Latency gate: skip the upstream usage fetch entirely when there's
// nothing to enforce. Preflight is only worth its cost when at least
// one of the following is true:
// β’ a per-connection override on this row
// β’ a per-(provider, window) default in resilience settings
// β’ the legacy `quotaPreflightEnabled` flag in providerSpecificData
// β’ the global default is stricter than the factory no-op level
// (factory = 2% remaining, basically "right before 429" β anything
// stricter means the operator wants enforcement everywhere)
// Otherwise the resolver would return the factory default for every
// window, and a near-exhausted account would still be caught by the
// normal 429 β cooldown path.
// Explicit per-connection opt-out always wins over global/provider defaults.
// isQuotaPreflightEnabled is strict-=== true (back-compat), so it returns
// false for both "not set" and "explicit false" β we need an explicit check
// here to distinguish them.
const legacyForceDisable =
(credentials as { providerSpecificData?: Record<string, unknown> }).providerSpecificData
?.quotaPreflightEnabled === false;
if (legacyForceDisable) return credentials;
const hasConnectionOverrides = Object.keys(perConnectionWindowOverrides).length > 0;
const legacyForceEnable = isQuotaPreflightEnabled(credentials);
if (
!hasConnectionOverrides &&
!providerHasDefaults &&
!legacyForceEnable &&
!globalDefaultIsRestrictive
) {
return credentials;
}
// Returns the minimum-remaining cutoff for a window β matches the
// dashboard's quota bars so the number the user types in the modal
// means the same thing as the percentage rendered on the bar.
const resolveMinRemainingPercent = (windowName: string | null): number => {
if (windowName !== null) {
const lookupWindowNames =
provider === "codex"
? uniqueWindows(
[windowName, toCodexBaseQuotaWindowName(windowName)].filter(Boolean) as string[]
)
: [windowName];
for (const lookupWindowName of lookupWindowNames) {
const override = perConnectionWindowOverrides[lookupWindowName];
if (typeof override === "number") return override;
const providerDefault = providerWindowMap[lookupWindowName];
if (typeof providerDefault === "number") return providerDefault;
}
}
return defaultThresholdPercent;
};
const preflightCredentials =
requestedModel && provider === "codex" ? { ...credentials, requestedModel } : credentials;
const preflight = await preflightQuota(provider, connectionId, preflightCredentials, {
resolveMinRemainingPercent,
resolveWarnRemainingPercent: () => warnThresholdPercent,
});
if (preflight.proceed) {
return credentials;
}
blockedByPreflight.push({
id: connectionId,
quotaPercent: preflight.quotaPercent,
resetAt: preflight.resetAt ?? null,
});
excludedConnectionIds.add(connectionId);
log.info(
"AUTH",
`${provider} | preflight blocked ${connectionId.slice(0, 8)}${
Number.isFinite(preflight.quotaPercent)
? ` at ${Math.round((preflight.quotaPercent as number) * 100)}%`
: ""
}`
);
}
}
/**
* Mark account as unavailable β reads backoffLevel from DB, calculates cooldown with exponential backoff, saves new level
* @param {string} connectionId
* @param {number} status - HTTP status code
* @param {string} errorText - Error message
* @param {string|null} provider
* @param {string|null} model - Model name for per-model lockout
* @returns {{ shouldFallback: boolean, cooldownMs: number }}
*/
export async function markAccountUnavailable(
connectionId: string,
status: number,
errorText: string,
provider: string | null = null,
model: string | null = null,
providerProfile = null,
options: {
persistUnavailableState?: boolean;
/** Caller is the combo engine β it records its own model-level lockouts. */
isCombo?: boolean;
} = {}
) {
const currentMutex = markMutexes.get(connectionId) || Promise.resolve();
let resolveMutex: (() => void) | undefined;
markMutexes.set(
connectionId,
new Promise((resolve) => {
resolveMutex = resolve;
})
);
try {
await currentMutex;
// Read current connection to get backoffLevel
const connectionsRaw = await getProviderConnections({ provider });
const connections = (Array.isArray(connectionsRaw) ? connectionsRaw : [])
.map(toProviderConnection)
.filter((connection) => connection.id.length > 0);
const conn = connections.find((connection) => connection.id === connectionId);
const backoffLevel = conn?.backoffLevel || 0;
// T06/T10/T36: terminal statuses should not be overwritten by transient cooldown state.
if (conn && isTerminalConnectionStatus(conn)) {
log.info(
"AUTH",
`${connectionId.slice(0, 8)} terminal status=${conn.testStatus}, skipping cooldown overwrite`
);
return { shouldFallback: true, cooldownMs: 0 };
}
// βββ Anti-Thundering Herd Guard βββββββββββββββββββββββββββββββββ
// If this connection was ALREADY marked unavailable by a prior concurrent
// request (within the mutex window), skip re-marking to avoid resetting
// the cooldown timer or double-incrementing the backoff level.
if (conn?.rateLimitedUntil && new Date(conn.rateLimitedUntil).getTime() > Date.now()) {
log.info(
"AUTH",
`${connectionId.slice(0, 8)} already marked unavailable (until ${conn.rateLimitedUntil}), skipping duplicate mark`
);
return {
shouldFallback: true,
cooldownMs: new Date(conn.rateLimitedUntil).getTime() - Date.now(),
};
}
// T09: Codex scope-aware lockout guard (codex vs spark independent pools).
if (provider === "codex" && model) {
const scopeRateLimitedUntil = getCodexScopeRateLimitedUntil(
conn?.providerSpecificData || {},
model
);
if (scopeRateLimitedUntil && new Date(scopeRateLimitedUntil).getTime() > Date.now()) {
log.info(
"AUTH",
`${connectionId.slice(0, 8)} already scope-limited for ${getCodexModelScope(model)} (until ${scopeRateLimitedUntil}), skipping duplicate mark`
);
return {
shouldFallback: true,
cooldownMs: new Date(scopeRateLimitedUntil).getTime() - Date.now(),
};
}
}
const effectiveProviderProfile =
providerProfile || (provider ? await getRuntimeProviderProfile(provider) : null);
// #4530 follow-up: the combo.ts lockout sites forward the admin-configured
// maxCooldownMs cap to recordModelLockoutFailure, but the markAccountUnavailable
// lockout sites (per-model quota, grok-web 403, local 404) never did, so the cap
// fell back to BACKOFF_CONFIG.max here. Resolve it once and pass it at every site.
const mlSettings = resolveModelLockoutSettings(await getCachedSettings());
const fallbackResult = checkFallbackError(
status,
errorText,
backoffLevel,
model,
provider,
null,
effectiveProviderProfile
);
// Read passthroughModels from connection config (user-configured per-model quota)
const connProviderSpecificData = (conn?.providerSpecificData as Record<string, unknown>) || {};
const connectionPassthroughModels = connProviderSpecificData.passthroughModels as
| boolean
| undefined;
// #2997: per-connection opt-out of the TRANSIENT connection cooldown. When set,
// a recoverable failure records lastError/backoff but does NOT cool the
// connection, so getProviderCredentials keeps selecting it. Terminal states
// (banned/expired/credits_exhausted) are unaffected β they are resolved below
// via resolveTerminalConnectionStatus() and still take the connection out.
// NOTE: this first cut scopes the opt-out to the CONNECTION-level cooldown only;
// per-model lockout branches (per-model quota 403/404, codex scope) are left
// as-is β extending disableCooling to model lockout is a follow-up.
const disableCooling = connProviderSpecificData.disableCooling === true;
const isPerModelQuotaProvider = hasPerModelQuota(provider, model, connectionPassthroughModels);
const modelLockoutOptions = { maxCooldownMs: effectiveProviderProfile?.maxCooldownMs };
if (
isPerModelQuotaProvider &&
provider &&
provider !== "codex" &&
model &&
(status === 404 || status === 429 || status >= 500)
) {
const reason =
status === 404
? "not_found"
: status === 429 && fallbackResult.reason === RateLimitReason.QUOTA_EXHAUSTED
? "quota_exhausted"
: status === 429
? "rate_limited"
: "server_error";
const lockout = recordModelLockoutFailure(
provider,
connectionId,
model,
reason,
status,
status === 404
? (effectiveProviderProfile?.baseCooldownMs ?? COOLDOWN_MS.notFoundLocal)
: (fallbackResult.baseCooldownMs ?? effectiveProviderProfile?.baseCooldownMs ?? 0),
effectiveProviderProfile,
{
...modelLockoutOptions,
exactCooldownMs:
fallbackResult.usedUpstreamRetryHint === true ? fallbackResult.cooldownMs : null,
maxCooldownMs: mlSettings.maxCooldownMs,
}
);
// Update last error for observability (without changing terminal status)
updateProviderConnection(connectionId, {
lastErrorType: reason,
lastError: `Model ${model} ${reason}`,
lastErrorAt: new Date().toISOString(),
errorCode: status,
}).catch(() => {});
log.info(
"AUTH",
`Model-only lockout for ${provider}:${model} β ${status} ${reason} ${Math.ceil(lockout.cooldownMs / 1000)}s (failureCount=${lockout.failureCount}, connection stays active)`
);
return { shouldFallback: true, cooldownMs: lockout.cooldownMs };
}
const result = fallbackResult;
const { shouldFallback, cooldownMs: rawCooldownMs, newBackoffLevel, reason } = result;
if (!shouldFallback) return { shouldFallback: false, cooldownMs: 0 };
const providerErrorType = classifyProviderError(status, errorText, provider);
if (provider && resolveProviderId(provider) === "grok-web" && status === 403 && model) {
const lockout = recordModelLockoutFailure(
provider,
connectionId,
model,
"forbidden",
status,
effectiveProviderProfile?.baseCooldownMs ?? COOLDOWN_MS.serviceUnavailable,
effectiveProviderProfile,
{ maxCooldownMs: mlSettings.maxCooldownMs }
);
updateProviderConnection(connectionId, {
lastErrorType: "forbidden",
lastError: `Mode ${model} forbidden for this Grok account`,
lastErrorAt: new Date().toISOString(),
errorCode: status,
}).catch(() => {});
log.info(
"AUTH",
`Mode-only lockout for ${provider}:${model} β 403 forbidden ${Math.ceil(lockout.cooldownMs / 1000)}s (connection stays active)`
);
return { shouldFallback: true, cooldownMs: lockout.cooldownMs };
}
const terminalStatus = resolveTerminalConnectionStatus(
status,
result as { permanent?: boolean; creditsExhausted?: boolean },
providerErrorType
);
const cooldownMs = terminalStatus ? 0 : rawCooldownMs;
// ββ #3027: per-model subscription/permission 403 β model-only lockout ββ
if (isPerModelQuotaProvider && status === 403 && provider && model && !terminalStatus) {
const lockout = recordModelLockoutFailure(
provider,
connectionId,
model,
"forbidden",
status,
fallbackResult.baseCooldownMs ??
effectiveProviderProfile?.baseCooldownMs ??
COOLDOWN_MS.serviceUnavailable,
effectiveProviderProfile,
{
...modelLockoutOptions,
exactCooldownMs:
fallbackResult.usedUpstreamRetryHint === true ? fallbackResult.cooldownMs : null,
maxCooldownMs: mlSettings.maxCooldownMs,
}
);
updateProviderConnection(connectionId, {
lastErrorType: "forbidden",
lastError: `Model ${model} forbidden (per-model access/subscription)`,
lastErrorAt: new Date().toISOString(),
errorCode: status,
}).catch(() => {});
log.info(
"AUTH",
`Model-only lockout for ${provider}:${model} β 403 forbidden ${Math.ceil(lockout.cooldownMs / 1000)}s (per-model quota provider, connection stays active)`
);
return { shouldFallback: true, cooldownMs: lockout.cooldownMs };
}
// ββ 404 model-only lockout: connection stays active ββ
// For local providers (detected by URL), a 404 means the specific model
// doesn't exist or isn't available for this account β it should NOT lock
// out the entire connection.
const connBaseUrl = (conn?.providerSpecificData as Record<string, unknown>)?.baseUrl as
| string
| undefined;
if (isLocalProvider(connBaseUrl) && status === 404 && provider && model) {
const lockout = recordModelLockoutFailure(
provider,
connectionId,
model,
"not_found",
status,
status === 404
? (effectiveProviderProfile?.baseCooldownMs ?? COOLDOWN_MS.notFoundLocal)
: COOLDOWN_MS.notFoundLocal,
effectiveProviderProfile,
{ maxCooldownMs: mlSettings.maxCooldownMs }
);
updateProviderConnection(connectionId, {
lastErrorType: "not_found",
lastError: `Model ${model} not_found`,
lastErrorAt: new Date().toISOString(),
errorCode: status,
}).catch(() => {});
log.info(
"AUTH",
`Model-only lockout for ${provider}:${model} β 404 not_found ${Math.ceil(lockout.cooldownMs / 1000)}s (failureCount=${lockout.failureCount}, connection stays active)`
);
return { shouldFallback: true, cooldownMs: lockout.cooldownMs };
}
const errorMsg = typeof errorText === "string" ? errorText.slice(0, 100) : "Provider error";
// T09: Codex per-scope lockout (do not block the whole account globally).
if (provider === "codex" && status === 429 && model && conn) {
const scope = getCodexModelScope(model);
const existingScopeMap = asRecord(conn.providerSpecificData.codexScopeRateLimitedUntil);
const persistedScopeUntil = getCodexScopeRateLimitedUntil(conn.providerSpecificData, model);
const scopeRateLimitedUntil = persistedScopeUntil || getUnavailableUntil(cooldownMs);
const scopeCooldownMs = Math.max(new Date(scopeRateLimitedUntil).getTime() - Date.now(), 0);
await updateProviderConnection(connectionId, {
testStatus: "unavailable",
lastError: errorMsg,
errorCode: status,
lastErrorAt: new Date().toISOString(),
backoffLevel: newBackoffLevel ?? backoffLevel,
providerSpecificData: {
...conn.providerSpecificData,
codexScopeRateLimitedUntil: {
...existingScopeMap,
[scope]: scopeRateLimitedUntil,
},
},
});
if (scopeCooldownMs > 0) {
lockModel(provider, connectionId, model, reason || "unknown", scopeCooldownMs);
}
if (status && errorMsg) {
console.error(`β ${provider} [${status}] (${scope}): ${errorMsg}`);
}
return { shouldFallback: true, cooldownMs: scopeCooldownMs };
}
const baseUpdate = {
lastError: errorMsg,
lastErrorType: providerErrorType,
errorCode: status,
lastErrorAt: new Date().toISOString(),
backoffLevel: newBackoffLevel ?? backoffLevel,
};
const persistUnavailableState = options.persistUnavailableState !== false;
if (!persistUnavailableState) {
// Combo-managed transient failure (e.g. 429): keep the connection clean in
// the DB, but record an in-memory model lockout so credential selection
// skips this exact provider+connection+model while it cools down β other
// models on the same connection stay usable.
if (provider && model && cooldownMs > 0) {
lockModel(provider, connectionId, model, reason || "unknown", cooldownMs);
}
await updateProviderConnection(connectionId, {
...baseUpdate,
});
} else if (cooldownMs > 0 && !disableCooling) {
await updateProviderConnection(connectionId, {
...baseUpdate,
rateLimitedUntil: getUnavailableUntil(cooldownMs),
testStatus: "unavailable",
});
} else {
await updateProviderConnection(connectionId, {
...baseUpdate,
rateLimitedUntil: null,
...(terminalStatus ? { testStatus: terminalStatus } : {}),
});
}
// T-AUTODISABLE: If auto-disable setting is enabled and error is permanent/terminal,
// mark account as inactive so it is never retried again.
// Uses getCachedSettings() to avoid DB overhead on hot error path.
// NOTE: For permanent bans we disable immediately β no threshold needed,
// because a permanent ban (403 "Verify your account" / ToS violation) will
// NEVER recover, so retrying is pointless regardless of attempt count.
if ((result as { permanent?: boolean }).permanent) {
try {
const settings = await getCachedSettings();
const autoDisableEnabled = settings.autoDisableBannedAccounts ?? false;
if (autoDisableEnabled) {
await updateProviderConnection(connectionId, { isActive: false });
log.info(
"AUTH",
`Auto-disabled ${connectionId.slice(0, 8)} β permanent ban detected (autoDisableBannedAccounts=true)`
);
}
} catch (e) {
log.info("AUTH", `Auto-disable check failed (non-fatal): ${e}`);
}
}
if (provider && status && errorMsg) {
console.error(`β ${provider} [${status}]: ${errorMsg}`);
}
return { shouldFallback: true, cooldownMs };
} finally {
if (resolveMutex) resolveMutex();
// Cleanup stale mutex entries (avoid memory leak)
markMutexes.delete(connectionId);
}
}
/**
* Clear account error status (only if currently has error)
* Optimized to avoid unnecessary DB updates
*/
export async function clearAccountError(
connectionId: string,
currentConnection: Partial<RecoverableConnectionState>
) {
// Only update if currently has error status
const hasError =
(currentConnection.testStatus && currentConnection.testStatus !== "active") ||
currentConnection.lastError ||
currentConnection.rateLimitedUntil ||
currentConnection.errorCode ||
currentConnection.lastErrorType ||
currentConnection.lastErrorSource;
if (!hasError) return; // Skip if already clean
await updateProviderConnection(connectionId, {
testStatus: "active",
lastError: null,
lastErrorAt: null,
lastErrorType: null,
lastErrorSource: null,
errorCode: null,
rateLimitedUntil: null,
backoffLevel: 0,
});
log.info("AUTH", `Account ${connectionId.slice(0, 8)} error cleared`);
}
export async function clearRecoveredProviderState(
credentials: Partial<RecoverableConnectionState> | null
) {
if (!credentials?.connectionId) return;
await clearAccountError(credentials.connectionId, credentials);
}
type AuthRequestHeaders = Headers | Record<string, string | string[] | undefined>;
type AuthRequestLike = {
headers?: AuthRequestHeaders | null;
url?: string | null;
};
function readNonEmptyUrlToken(request: AuthRequestLike): string | null {
if (typeof request?.url !== "string" || request.url.trim().length === 0) return null;
try {
const url = new URL(request.url, "http://localhost");
const segments = url.pathname
.split("/")
.map((segment) => segment.trim())
.filter(Boolean);
if (segments[0] === "vscode" && segments[1]) {
const decodedSegment = decodeURIComponent(segments[1]).trim();
if (decodedSegment.length > 0) return decodedSegment;
}
if (segments[0] === "api" && segments[1] === "v1" && segments[2] === "vscode") {
if (segments[3] && segments[3] !== "raw" && segments[3] !== "combos") {
const decodedSegment = decodeURIComponent(segments[3]).trim();
if (decodedSegment.length > 0) return decodedSegment;
}
if ((segments[3] === "raw" || segments[3] === "combos") && segments[4]) {
const decodedSegment = decodeURIComponent(segments[4]).trim();
if (decodedSegment.length > 0) return decodedSegment;
}
}
// NOTE: query-string token fallbacks (`?token=`/`?key=`/`?apiKey=`/`?api_key=`)
// were intentionally REMOVED. They are a broad credential-in-URL surface that
// leaks into access logs, Referer headers and proxy logs, and β because this
// extractor also feeds management auth β would let `?token=<mgmt-key>`
// authenticate management routes. The VS Code integration only needs the
// path-scoped `/vscode/<token>/β¦` form above. (security review, #3300 follow-up)
} catch {
return null;
}
return null;
}
/**
* Extract API key from request auth inputs.
*
* Honors explicit auth headers and (for client-facing routes only) a
* path-scoped URL token:
* - `Authorization: Bearer <key>` (OpenAI / OmniRoute / Codex CLI / Bearer clients)
* - `x-api-key: <key>` (Anthropic Messages API contract β Claude Code,
* `@anthropic-ai/sdk`, any SDK that sets `anthropic-version`)
* - `/vscode/<key>/...` (path-scoped tokenized aliases β only when `allowUrl`)
*
* When multiple inputs are present, explicit auth headers win.
*
* The `x-api-key` fallback only triggers when the request also carries an
* `anthropic-version` header β the documented signal that the caller is
* speaking the Anthropic Messages API contract. Without this scoping,
* non-Anthropic SDKs that happen to set `x-api-key` (or local-mode tools
* with placeholder keys) would be treated as authenticated attempts and
* rejected by per-route gates that compare against OmniRoute keys.
*
* `opts.allowUrl` (default `true`) gates the path-scoped URL token. Management
* auth MUST pass `allowUrl: false` β a credential in the URL must never
* authenticate a management route (it leaks into logs/Referer and would widen
* the management surface). See the #3300 security follow-up.
*/
export function extractApiKey(request: AuthRequestLike, opts?: { allowUrl?: boolean }) {
const authHeader =
readHeaderValue(request?.headers, "Authorization") ||
readHeaderValue(request?.headers, "authorization");
if (typeof authHeader === "string") {
const trimmedHeader = authHeader.trim();
if (trimmedHeader.toLowerCase().startsWith("bearer ")) {
return trimmedHeader.slice(7).trim() || null;
}
}
// Issue #2225: Anthropic Messages API clients authenticate via x-api-key.
// Gate the fallback on the anthropic-version header so we don't trip up
// local-mode requests from non-Anthropic clients that send placeholder
// x-api-key values (which would otherwise be rejected as Invalid API key).
const anthropicVersion =
readHeaderValue(request?.headers, "anthropic-version") ||
readHeaderValue(request?.headers, "Anthropic-Version");
if (anthropicVersion) {
const xApiKey =
readHeaderValue(request?.headers, "x-api-key") ||
readHeaderValue(request?.headers, "X-Api-Key");
if (typeof xApiKey === "string") {
const trimmed = xApiKey.trim();
if (trimmed.length > 0) return trimmed;
}
}
if (opts?.allowUrl === false) return null;
return readNonEmptyUrlToken(request);
}
/**
* Validate API key (optional - for local use can skip).
* Feature #1350: Supports OMNIROUTE_API_KEY / ROUTER_API_KEY env vars as
* persistent passthrough keys that always validate, surviving Docker
* restarts and backup restores without DB dependency.
*/
export async function isValidApiKey(apiKey: string) {
if (!apiKey) return false;
// Persistent env-var key β always valid regardless of DB state (#1350)
const envKey = process.env.OMNIROUTE_API_KEY || process.env.ROUTER_API_KEY;
if (envKey && apiKey === envKey) return true;
return await validateApiKey(apiKey);
}
|