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 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752
|
/* -*- Mode: C; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
/*
* Functions for handling the text related protocols, original and meta.
*/
#include "memcached.h"
#include "proto_text.h"
#include "authfile.h"
#include "storage.h"
#ifdef TLS
#include "tls.h"
#endif
#include <string.h>
#include <stdlib.h>
static void process_command(conn *c, char *command);
typedef struct token_s {
char *value;
size_t length;
} token_t;
/*
* we get here after reading the value in set/add/replace commands. The command
* has been stored in c->cmd, and the item is ready in c->item.
*/
void complete_nread_ascii(conn *c) {
assert(c != NULL);
item *it = c->item;
int comm = c->cmd;
enum store_item_type ret;
bool is_valid = false;
pthread_mutex_lock(&c->thread->stats.mutex);
c->thread->stats.slab_stats[ITEM_clsid(it)].set_cmds++;
pthread_mutex_unlock(&c->thread->stats.mutex);
if ((it->it_flags & ITEM_CHUNKED) == 0) {
if (strncmp(ITEM_data(it) + it->nbytes - 2, "\r\n", 2) == 0) {
is_valid = true;
}
} else {
char buf[2];
/* should point to the final item chunk */
item_chunk *ch = (item_chunk *) c->ritem;
assert(ch->used != 0);
/* :( We need to look at the last two bytes. This could span two
* chunks.
*/
if (ch->used > 1) {
buf[0] = ch->data[ch->used - 2];
buf[1] = ch->data[ch->used - 1];
} else {
assert(ch->prev);
assert(ch->used == 1);
buf[0] = ch->prev->data[ch->prev->used - 1];
buf[1] = ch->data[ch->used - 1];
}
if (strncmp(buf, "\r\n", 2) == 0) {
is_valid = true;
} else {
assert(1 == 0);
}
}
if (!is_valid) {
// metaset mode always returns errors.
if (c->mset_res) {
c->noreply = false;
}
out_string(c, "CLIENT_ERROR bad data chunk");
} else {
ret = store_item(it, comm, c);
#ifdef ENABLE_DTRACE
uint64_t cas = ITEM_get_cas(it);
switch (c->cmd) {
case NREAD_ADD:
MEMCACHED_COMMAND_ADD(c->sfd, ITEM_key(it), it->nkey,
(ret == 1) ? it->nbytes : -1, cas);
break;
case NREAD_REPLACE:
MEMCACHED_COMMAND_REPLACE(c->sfd, ITEM_key(it), it->nkey,
(ret == 1) ? it->nbytes : -1, cas);
break;
case NREAD_APPEND:
MEMCACHED_COMMAND_APPEND(c->sfd, ITEM_key(it), it->nkey,
(ret == 1) ? it->nbytes : -1, cas);
break;
case NREAD_PREPEND:
MEMCACHED_COMMAND_PREPEND(c->sfd, ITEM_key(it), it->nkey,
(ret == 1) ? it->nbytes : -1, cas);
break;
case NREAD_SET:
MEMCACHED_COMMAND_SET(c->sfd, ITEM_key(it), it->nkey,
(ret == 1) ? it->nbytes : -1, cas);
break;
case NREAD_CAS:
MEMCACHED_COMMAND_CAS(c->sfd, ITEM_key(it), it->nkey, it->nbytes,
cas);
break;
}
#endif
if (c->mset_res) {
// Replace the status code in the response.
// Rest was prepared during mset parsing.
mc_resp *resp = c->resp;
conn_set_state(c, conn_new_cmd);
switch (ret) {
case STORED:
memcpy(resp->wbuf, "OK ", 3);
// Only place noreply is used for meta cmds is a nominal response.
if (c->noreply) {
resp->skip = true;
}
break;
case EXISTS:
memcpy(resp->wbuf, "EX ", 3);
break;
case NOT_FOUND:
memcpy(resp->wbuf, "NF ", 3);
break;
case NOT_STORED:
memcpy(resp->wbuf, "NS ", 3);
break;
default:
c->noreply = false;
out_string(c, "SERVER_ERROR Unhandled storage type.");
}
} else {
switch (ret) {
case STORED:
out_string(c, "STORED");
break;
case EXISTS:
out_string(c, "EXISTS");
break;
case NOT_FOUND:
out_string(c, "NOT_FOUND");
break;
case NOT_STORED:
out_string(c, "NOT_STORED");
break;
default:
out_string(c, "SERVER_ERROR Unhandled storage type.");
}
}
}
c->set_stale = false; /* force flag to be off just in case */
c->mset_res = false;
item_remove(c->item); /* release the c->item reference */
c->item = 0;
}
#define COMMAND_TOKEN 0
#define SUBCOMMAND_TOKEN 1
#define KEY_TOKEN 1
#define MAX_TOKENS 24
#define WANT_TOKENS(ntokens, min, max) \
do { \
if ((min != -1 && ntokens < min) || (max != -1 && ntokens > max)) { \
out_string(c, "ERROR"); \
return; \
} \
} while (0)
#define WANT_TOKENS_OR(ntokens, a, b) \
do { \
if (ntokens != a && ntokens != b) { \
out_string(c, "ERROR"); \
return; \
} \
} while (0)
#define WANT_TOKENS_MIN(ntokens, min) \
do { \
if (ntokens < min) { \
out_string(c, "ERROR"); \
return; \
} \
} while (0)
/*
* Tokenize the command string by replacing whitespace with '\0' and update
* the token array tokens with pointer to start of each token and length.
* Returns total number of tokens. The last valid token is the terminal
* token (value points to the first unprocessed character of the string and
* length zero).
*
* Usage example:
*
* while(tokenize_command(command, ncommand, tokens, max_tokens) > 0) {
* for(int ix = 0; tokens[ix].length != 0; ix++) {
* ...
* }
* ncommand = tokens[ix].value - command;
* command = tokens[ix].value;
* }
*/
static size_t tokenize_command(char *command, token_t *tokens, const size_t max_tokens) {
char *s, *e;
size_t ntokens = 0;
size_t len = strlen(command);
unsigned int i = 0;
assert(command != NULL && tokens != NULL && max_tokens > 1);
s = e = command;
for (i = 0; i < len; i++) {
if (*e == ' ') {
if (s != e) {
tokens[ntokens].value = s;
tokens[ntokens].length = e - s;
ntokens++;
*e = '\0';
if (ntokens == max_tokens - 1) {
e++;
s = e; /* so we don't add an extra token */
break;
}
}
s = e + 1;
}
e++;
}
if (s != e) {
tokens[ntokens].value = s;
tokens[ntokens].length = e - s;
ntokens++;
}
/*
* If we scanned the whole string, the terminal value pointer is null,
* otherwise it is the first unprocessed character.
*/
tokens[ntokens].value = *e == '\0' ? NULL : e;
tokens[ntokens].length = 0;
ntokens++;
return ntokens;
}
int try_read_command_asciiauth(conn *c) {
token_t tokens[MAX_TOKENS];
size_t ntokens;
char *cont = NULL;
// TODO: move to another function.
if (!c->sasl_started) {
char *el;
uint32_t size = 0;
// impossible for the auth command to be this short.
if (c->rbytes < 2)
return 0;
el = memchr(c->rcurr, '\n', c->rbytes);
// If no newline after 1k, getting junk data, close out.
if (!el) {
if (c->rbytes > 1024) {
conn_set_state(c, conn_closing);
return 1;
}
return 0;
}
// Looking for: "set foo 0 0 N\r\nuser pass\r\n"
// key, flags, and ttl are ignored. N is used to see if we have the rest.
// so tokenize doesn't walk past into the value.
// it's fine to leave the \r in, as strtoul will stop at it.
*el = '\0';
ntokens = tokenize_command(c->rcurr, tokens, MAX_TOKENS);
// ensure the buffer is consumed.
c->rbytes -= (el - c->rcurr) + 1;
c->rcurr += (el - c->rcurr) + 1;
// final token is a NULL ender, so we have one more than expected.
if (ntokens < 6
|| strcmp(tokens[0].value, "set") != 0
|| !safe_strtoul(tokens[4].value, &size)) {
if (!c->resp) {
if (!resp_start(c)) {
conn_set_state(c, conn_closing);
return 1;
}
}
out_string(c, "CLIENT_ERROR unauthenticated");
return 1;
}
// we don't actually care about the key at all; it can be anything.
// we do care about the size of the remaining read.
c->rlbytes = size + 2;
c->sasl_started = true; // reuse from binprot sasl, but not sasl :)
}
if (c->rbytes < c->rlbytes) {
// need more bytes.
return 0;
}
// Going to respond at this point, so attach a response object.
if (!c->resp) {
if (!resp_start(c)) {
conn_set_state(c, conn_closing);
return 1;
}
}
cont = c->rcurr;
// advance buffer. no matter what we're stopping.
c->rbytes -= c->rlbytes;
c->rcurr += c->rlbytes;
c->sasl_started = false;
// must end with \r\n
// NB: I thought ASCII sets also worked with just \n, but according to
// complete_nread_ascii only \r\n is valid.
if (strncmp(cont + c->rlbytes - 2, "\r\n", 2) != 0) {
out_string(c, "CLIENT_ERROR bad command line termination");
return 1;
}
// payload should be "user pass", so we can use the tokenizer.
cont[c->rlbytes - 2] = '\0';
ntokens = tokenize_command(cont, tokens, MAX_TOKENS);
if (ntokens < 3) {
out_string(c, "CLIENT_ERROR bad authentication token format");
return 1;
}
if (authfile_check(tokens[0].value, tokens[1].value) == 1) {
out_string(c, "STORED");
c->authenticated = true;
c->try_read_command = try_read_command_ascii;
pthread_mutex_lock(&c->thread->stats.mutex);
c->thread->stats.auth_cmds++;
pthread_mutex_unlock(&c->thread->stats.mutex);
} else {
out_string(c, "CLIENT_ERROR authentication failure");
pthread_mutex_lock(&c->thread->stats.mutex);
c->thread->stats.auth_cmds++;
c->thread->stats.auth_errors++;
pthread_mutex_unlock(&c->thread->stats.mutex);
}
return 1;
}
int try_read_command_ascii(conn *c) {
char *el, *cont;
if (c->rbytes == 0)
return 0;
el = memchr(c->rcurr, '\n', c->rbytes);
if (!el) {
if (c->rbytes > 1024) {
/*
* We didn't have a '\n' in the first k. This _has_ to be a
* large multiget, if not we should just nuke the connection.
*/
char *ptr = c->rcurr;
while (*ptr == ' ') { /* ignore leading whitespaces */
++ptr;
}
if (ptr - c->rcurr > 100 ||
(strncmp(ptr, "get ", 4) && strncmp(ptr, "gets ", 5))) {
conn_set_state(c, conn_closing);
return 1;
}
// ASCII multigets are unbound, so our fixed size rbuf may not
// work for this particular workload... For backcompat we'll use a
// malloc/realloc/free routine just for this.
if (!c->rbuf_malloced) {
if (!rbuf_switch_to_malloc(c)) {
conn_set_state(c, conn_closing);
return 1;
}
}
}
return 0;
}
cont = el + 1;
if ((el - c->rcurr) > 1 && *(el - 1) == '\r') {
el--;
}
*el = '\0';
assert(cont <= (c->rcurr + c->rbytes));
c->last_cmd_time = current_time;
process_command(c, c->rcurr);
c->rbytes -= (cont - c->rcurr);
c->rcurr = cont;
assert(c->rcurr <= (c->rbuf + c->rsize));
return 1;
}
static inline bool set_noreply_maybe(conn *c, token_t *tokens, size_t ntokens)
{
int noreply_index = ntokens - 2;
/*
NOTE: this function is not the first place where we are going to
send the reply. We could send it instead from process_command()
if the request line has wrong number of tokens. However parsing
malformed line for "noreply" option is not reliable anyway, so
it can't be helped.
*/
if (tokens[noreply_index].value
&& strcmp(tokens[noreply_index].value, "noreply") == 0) {
c->noreply = true;
}
return c->noreply;
}
/* client flags == 0 means use no storage for client flags */
static inline int make_ascii_get_suffix(char *suffix, item *it, bool return_cas, int nbytes) {
char *p = suffix;
*p = ' ';
p++;
if (FLAGS_SIZE(it) == 0) {
*p = '0';
p++;
} else {
p = itoa_u32(*((uint32_t *) ITEM_suffix(it)), p);
}
*p = ' ';
p = itoa_u32(nbytes-2, p+1);
if (return_cas) {
*p = ' ';
p = itoa_u64(ITEM_get_cas(it), p+1);
}
*p = '\r';
*(p+1) = '\n';
*(p+2) = '\0';
return (p - suffix) + 2;
}
/* ntokens is overwritten here... shrug.. */
static inline void process_get_command(conn *c, token_t *tokens, size_t ntokens, bool return_cas, bool should_touch) {
char *key;
size_t nkey;
item *it;
token_t *key_token = &tokens[KEY_TOKEN];
int32_t exptime_int = 0;
rel_time_t exptime = 0;
bool fail_length = false;
assert(c != NULL);
mc_resp *resp = c->resp;
if (should_touch) {
// For get and touch commands, use first token as exptime
if (!safe_strtol(tokens[1].value, &exptime_int)) {
out_string(c, "CLIENT_ERROR invalid exptime argument");
return;
}
key_token++;
exptime = realtime(EXPTIME_TO_POSITIVE_TIME(exptime_int));
}
do {
while(key_token->length != 0) {
bool overflow; // not used here.
key = key_token->value;
nkey = key_token->length;
if (nkey > KEY_MAX_LENGTH) {
fail_length = true;
goto stop;
}
it = limited_get(key, nkey, c, exptime, should_touch, DO_UPDATE, &overflow);
if (settings.detail_enabled) {
stats_prefix_record_get(key, nkey, NULL != it);
}
if (it) {
/*
* Construct the response. Each hit adds three elements to the
* outgoing data list:
* "VALUE "
* key
* " " + flags + " " + data length + "\r\n" + data (with \r\n)
*/
{
MEMCACHED_COMMAND_GET(c->sfd, ITEM_key(it), it->nkey,
it->nbytes, ITEM_get_cas(it));
int nbytes = it->nbytes;;
nbytes = it->nbytes;
char *p = resp->wbuf;
memcpy(p, "VALUE ", 6);
p += 6;
memcpy(p, ITEM_key(it), it->nkey);
p += it->nkey;
p += make_ascii_get_suffix(p, it, return_cas, nbytes);
resp_add_iov(resp, resp->wbuf, p - resp->wbuf);
#ifdef EXTSTORE
if (it->it_flags & ITEM_HDR) {
if (storage_get_item(c, it, resp) != 0) {
pthread_mutex_lock(&c->thread->stats.mutex);
c->thread->stats.get_oom_extstore++;
pthread_mutex_unlock(&c->thread->stats.mutex);
item_remove(it);
goto stop;
}
} else if ((it->it_flags & ITEM_CHUNKED) == 0) {
resp_add_iov(resp, ITEM_data(it), it->nbytes);
} else {
resp_add_chunked_iov(resp, it, it->nbytes);
}
#else
if ((it->it_flags & ITEM_CHUNKED) == 0) {
resp_add_iov(resp, ITEM_data(it), it->nbytes);
} else {
resp_add_chunked_iov(resp, it, it->nbytes);
}
#endif
}
if (settings.verbose > 1) {
int ii;
fprintf(stderr, ">%d sending key ", c->sfd);
for (ii = 0; ii < it->nkey; ++ii) {
fprintf(stderr, "%c", key[ii]);
}
fprintf(stderr, "\n");
}
/* item_get() has incremented it->refcount for us */
pthread_mutex_lock(&c->thread->stats.mutex);
if (should_touch) {
c->thread->stats.touch_cmds++;
c->thread->stats.slab_stats[ITEM_clsid(it)].touch_hits++;
} else {
c->thread->stats.lru_hits[it->slabs_clsid]++;
c->thread->stats.get_cmds++;
}
pthread_mutex_unlock(&c->thread->stats.mutex);
#ifdef EXTSTORE
/* If ITEM_HDR, an io_wrap owns the reference. */
if ((it->it_flags & ITEM_HDR) == 0) {
resp->item = it;
}
#else
resp->item = it;
#endif
} else {
pthread_mutex_lock(&c->thread->stats.mutex);
if (should_touch) {
c->thread->stats.touch_cmds++;
c->thread->stats.touch_misses++;
} else {
c->thread->stats.get_misses++;
c->thread->stats.get_cmds++;
}
MEMCACHED_COMMAND_GET(c->sfd, key, nkey, -1, 0);
pthread_mutex_unlock(&c->thread->stats.mutex);
}
key_token++;
if (key_token->length != 0) {
if (!resp_start(c)) {
goto stop;
}
resp = c->resp;
}
}
/*
* If the command string hasn't been fully processed, get the next set
* of tokens.
*/
if (key_token->value != NULL) {
ntokens = tokenize_command(key_token->value, tokens, MAX_TOKENS);
key_token = tokens;
if (!resp_start(c)) {
goto stop;
}
resp = c->resp;
}
} while(key_token->value != NULL);
stop:
if (settings.verbose > 1)
fprintf(stderr, ">%d END\n", c->sfd);
/*
If the loop was terminated because of out-of-memory, it is not
reliable to add END\r\n to the buffer, because it might not end
in \r\n. So we send SERVER_ERROR instead.
*/
if (key_token->value != NULL) {
// Kill any stacked responses we had.
conn_release_items(c);
// Start a new response object for the error message.
if (!resp_start(c)) {
// severe out of memory error.
conn_set_state(c, conn_closing);
return;
}
if (fail_length) {
out_string(c, "CLIENT_ERROR bad command line format");
} else {
out_of_memory(c, "SERVER_ERROR out of memory writing get response");
}
} else {
// Tag the end token onto the most recent response object.
resp_add_iov(resp, "END\r\n", 5);
conn_set_state(c, conn_mwrite);
}
}
inline static void process_stats_detail(conn *c, const char *command) {
assert(c != NULL);
if (strcmp(command, "on") == 0) {
settings.detail_enabled = 1;
out_string(c, "OK");
}
else if (strcmp(command, "off") == 0) {
settings.detail_enabled = 0;
out_string(c, "OK");
}
else if (strcmp(command, "dump") == 0) {
int len;
char *stats = stats_prefix_dump(&len);
write_and_free(c, stats, len);
}
else {
out_string(c, "CLIENT_ERROR usage: stats detail on|off|dump");
}
}
static void process_stat(conn *c, token_t *tokens, const size_t ntokens) {
const char *subcommand = tokens[SUBCOMMAND_TOKEN].value;
assert(c != NULL);
if (ntokens < 2) {
out_string(c, "CLIENT_ERROR bad command line");
return;
}
if (ntokens == 2) {
server_stats(&append_stats, c);
(void)get_stats(NULL, 0, &append_stats, c);
} else if (strcmp(subcommand, "reset") == 0) {
stats_reset();
out_string(c, "RESET");
return;
} else if (strcmp(subcommand, "detail") == 0) {
/* NOTE: how to tackle detail with binary? */
if (ntokens < 4)
process_stats_detail(c, ""); /* outputs the error message */
else
process_stats_detail(c, tokens[2].value);
/* Output already generated */
return;
} else if (strcmp(subcommand, "settings") == 0) {
process_stat_settings(&append_stats, c);
} else if (strcmp(subcommand, "cachedump") == 0) {
char *buf;
unsigned int bytes, id, limit = 0;
if (!settings.dump_enabled) {
out_string(c, "CLIENT_ERROR stats cachedump not allowed");
return;
}
if (ntokens < 5) {
out_string(c, "CLIENT_ERROR bad command line");
return;
}
if (!safe_strtoul(tokens[2].value, &id) ||
!safe_strtoul(tokens[3].value, &limit)) {
out_string(c, "CLIENT_ERROR bad command line format");
return;
}
if (id >= MAX_NUMBER_OF_SLAB_CLASSES) {
out_string(c, "CLIENT_ERROR Illegal slab id");
return;
}
buf = item_cachedump(id, limit, &bytes);
write_and_free(c, buf, bytes);
return;
} else if (strcmp(subcommand, "conns") == 0) {
process_stats_conns(&append_stats, c);
#ifdef EXTSTORE
} else if (strcmp(subcommand, "extstore") == 0) {
process_extstore_stats(&append_stats, c);
#endif
} else {
/* getting here means that the subcommand is either engine specific or
is invalid. query the engine and see. */
if (get_stats(subcommand, strlen(subcommand), &append_stats, c)) {
if (c->stats.buffer == NULL) {
out_of_memory(c, "SERVER_ERROR out of memory writing stats");
} else {
write_and_free(c, c->stats.buffer, c->stats.offset);
c->stats.buffer = NULL;
}
} else {
out_string(c, "ERROR");
}
return;
}
/* append terminator and start the transfer */
append_stats(NULL, 0, NULL, 0, c);
if (c->stats.buffer == NULL) {
out_of_memory(c, "SERVER_ERROR out of memory writing stats");
} else {
write_and_free(c, c->stats.buffer, c->stats.offset);
c->stats.buffer = NULL;
}
}
// slow snprintf for debugging purposes.
static void process_meta_command(conn *c, token_t *tokens, const size_t ntokens) {
assert(c != NULL);
if (tokens[KEY_TOKEN].length > KEY_MAX_LENGTH) {
out_string(c, "CLIENT_ERROR bad command line format");
return;
}
char *key = tokens[KEY_TOKEN].value;
size_t nkey = tokens[KEY_TOKEN].length;
bool overflow; // not used here.
item *it = limited_get(key, nkey, c, 0, false, DONT_UPDATE, &overflow);
if (it) {
mc_resp *resp = c->resp;
size_t total = 0;
size_t ret;
// similar to out_string().
memcpy(resp->wbuf, "ME ", 3);
total += 3;
memcpy(resp->wbuf + total, ITEM_key(it), it->nkey);
total += it->nkey;
resp->wbuf[total] = ' ';
total++;
ret = snprintf(resp->wbuf + total, WRITE_BUFFER_SIZE - (it->nkey + 12),
"exp=%d la=%llu cas=%llu fetch=%s cls=%u size=%lu\r\n",
(it->exptime == 0) ? -1 : (current_time - it->exptime),
(unsigned long long)(current_time - it->time),
(unsigned long long)ITEM_get_cas(it),
(it->it_flags & ITEM_FETCHED) ? "yes" : "no",
ITEM_clsid(it),
(unsigned long) ITEM_ntotal(it));
item_remove(it);
resp->wbytes = total + ret;
resp_add_iov(resp, resp->wbuf, resp->wbytes);
conn_set_state(c, conn_new_cmd);
} else {
out_string(c, "EN");
}
pthread_mutex_lock(&c->thread->stats.mutex);
c->thread->stats.meta_cmds++;
pthread_mutex_unlock(&c->thread->stats.mutex);
}
#define MFLAG_MAX_OPT_LENGTH 20
#define MFLAG_MAX_OPAQUE_LENGTH 32
struct _meta_flags {
unsigned int has_error :1; // flipped if we found an error during parsing.
unsigned int no_update :1;
unsigned int locked :1;
unsigned int vivify :1;
unsigned int la :1;
unsigned int hit :1;
unsigned int value :1;
unsigned int set_stale :1;
unsigned int no_reply :1;
unsigned int has_cas :1;
unsigned int new_ttl :1;
char mode; // single character mode switch, common to ms/ma
rel_time_t exptime;
rel_time_t autoviv_exptime;
rel_time_t recache_time;
int32_t value_len;
uint32_t client_flags;
uint64_t req_cas_id;
uint64_t delta; // ma
uint64_t initial; // ma
};
static int _meta_flag_preparse(token_t *tokens, const size_t ntokens,
struct _meta_flags *of, char **errstr) {
unsigned int i;
int32_t tmp_int;
uint8_t seen[127] = {0};
// Start just past the key token. Look at first character of each token.
for (i = KEY_TOKEN+1; i < ntokens-1; i++) {
uint8_t o = (uint8_t)tokens[i].value[0];
// zero out repeat flags so we don't over-parse for return data.
if (o >= 127 || seen[o] != 0) {
*errstr = "CLIENT_ERROR duplicate flag";
return -1;
}
seen[o] = 1;
switch (o) {
/* Negative exptimes can underflow and end up immortal. realtime() will
immediately expire values that are greater than REALTIME_MAXDELTA, but less
than process_started, so lets aim for that. */
case 'N':
of->locked = 1;
of->vivify = 1;
if (!safe_strtol(tokens[i].value+1, &tmp_int)) {
*errstr = "CLIENT_ERROR bad token in command line format";
of->has_error = 1;
} else {
of->autoviv_exptime = realtime(EXPTIME_TO_POSITIVE_TIME(tmp_int));
}
break;
case 'T':
of->locked = 1;
if (!safe_strtol(tokens[i].value+1, &tmp_int)) {
*errstr = "CLIENT_ERROR bad token in command line format";
of->has_error = 1;
} else {
of->exptime = realtime(EXPTIME_TO_POSITIVE_TIME(tmp_int));
of->new_ttl = true;
}
break;
case 'R':
of->locked = 1;
if (!safe_strtol(tokens[i].value+1, &tmp_int)) {
*errstr = "CLIENT_ERROR bad token in command line format";
of->has_error = 1;
} else {
of->recache_time = realtime(EXPTIME_TO_POSITIVE_TIME(tmp_int));
}
break;
case 'l':
of->la = 1;
of->locked = 1; // need locked to delay LRU bump
break;
case 'O':
break;
case 'k': // known but no special handling
case 's':
case 't':
case 'c':
case 'f':
break;
case 'v':
of->value = 1;
break;
case 'h':
of->locked = 1; // need locked to delay LRU bump
break;
case 'u':
of->no_update = 1;
break;
case 'q':
of->no_reply = 1;
break;
// mset-related.
case 'F':
if (!safe_strtoul(tokens[i].value+1, &of->client_flags)) {
of->has_error = true;
}
break;
case 'S':
if (!safe_strtol(tokens[i].value+1, &tmp_int)) {
of->has_error = true;
} else {
// Size is adjusted for underflow or overflow once the
// \r\n terminator is added.
if (tmp_int < 0 || tmp_int > (INT_MAX - 2)) {
*errstr = "CLIENT_ERROR invalid length";
of->has_error = true;
} else {
of->value_len = tmp_int + 2; // \r\n
}
}
break;
case 'C': // mset, mdelete, marithmetic
if (!safe_strtoull(tokens[i].value+1, &of->req_cas_id)) {
*errstr = "CLIENT_ERROR bad token in command line format";
of->has_error = true;
} else {
of->has_cas = true;
}
break;
case 'M': // mset and marithmetic mode switch
if (tokens[i].length != 2) {
*errstr = "CLIENT_ERROR incorrect length for M token";
of->has_error = 1;
} else {
of->mode = tokens[i].value[1];
}
break;
case 'J': // marithmetic initial value
if (!safe_strtoull(tokens[i].value+1, &of->initial)) {
*errstr = "CLIENT_ERROR invalid numeric initial value";
of->has_error = 1;
}
break;
case 'D': // marithmetic delta value
if (!safe_strtoull(tokens[i].value+1, &of->delta)) {
*errstr = "CLIENT_ERROR invalid numeric delta value";
of->has_error = 1;
}
break;
case 'I':
of->set_stale = 1;
break;
default: // unknown flag, bail.
*errstr = "CLIENT_ERROR invalid flag";
return -1;
}
}
return of->has_error ? -1 : 0;
}
#define META_SPACE(p) { \
*p = ' '; \
p++; \
}
#define META_CHAR(p, c) { \
*p = ' '; \
*(p+1) = c; \
p += 2; \
}
static void process_mget_command(conn *c, token_t *tokens, const size_t ntokens) {
char *key;
size_t nkey;
item *it;
unsigned int i = 0;
struct _meta_flags of = {0}; // option bitflags.
uint32_t hv; // cached hash value for unlocking an item.
bool failed = false;
bool item_created = false;
bool won_token = false;
bool ttl_set = false;
char *errstr = "CLIENT_ERROR bad command line format";
mc_resp *resp = c->resp;
char *p = resp->wbuf;
assert(c != NULL);
WANT_TOKENS_MIN(ntokens, 3);
if (tokens[KEY_TOKEN].length > KEY_MAX_LENGTH) {
out_errstring(c, "CLIENT_ERROR bad command line format");
return;
}
key = tokens[KEY_TOKEN].value;
nkey = tokens[KEY_TOKEN].length;
// NOTE: final token has length == 0.
// KEY_TOKEN == 1. 0 is command.
if (ntokens == 3) {
// TODO: any way to fix this?
out_errstring(c, "CLIENT_ERROR bad command line format");
return;
} else if (ntokens > MFLAG_MAX_OPT_LENGTH) {
// TODO: ensure the command tokenizer gives us at least this many
out_errstring(c, "CLIENT_ERROR options flags are too long");
return;
}
// scrubs duplicated options and sets flags for how to load the item.
if (_meta_flag_preparse(tokens, ntokens, &of, &errstr) != 0) {
out_errstring(c, errstr);
return;
}
c->noreply = of.no_reply;
// TODO: need to indicate if the item was overflowed or not?
// I think we do, since an overflow shouldn't trigger an alloc/replace.
bool overflow = false;
if (!of.locked) {
it = limited_get(key, nkey, c, 0, false, !of.no_update, &overflow);
} else {
// If we had to lock the item, we're doing our own bump later.
it = limited_get_locked(key, nkey, c, DONT_UPDATE, &hv, &overflow);
}
// Since we're a new protocol, we can actually inform users that refcount
// overflow is happening by straight up throwing an error.
// We definitely don't want to re-autovivify by accident.
if (overflow) {
assert(it == NULL);
out_errstring(c, "SERVER_ERROR refcount overflow during fetch");
return;
}
if (it == NULL && of.vivify) {
// Fill in the exptime during parsing later.
it = item_alloc(key, nkey, 0, realtime(0), 2);
// We don't actually need any of do_store_item's logic:
// - already fetched and missed an existing item.
// - lock is still held.
// - not append/prepend/replace
// - not testing CAS
if (it != NULL) {
// I look forward to the day I get rid of this :)
memcpy(ITEM_data(it), "\r\n", 2);
// NOTE: This initializes the CAS value.
do_item_link(it, hv);
item_created = true;
}
}
// don't have to check result of add_iov() since the iov size defaults are
// enough.
if (it) {
if (of.value) {
memcpy(p, "VA ", 3);
p = itoa_u32(it->nbytes-2, p+3);
} else {
memcpy(p, "OK", 2);
p += 2;
}
for (i = KEY_TOKEN+1; i < ntokens-1; i++) {
switch (tokens[i].value[0]) {
case 'T':
ttl_set = true;
it->exptime = of.exptime;
break;
case 'N':
if (item_created) {
it->exptime = of.autoviv_exptime;
won_token = true;
}
break;
case 'R':
// If we haven't autovivified and supplied token is less
// than current TTL, mark a win.
if ((it->it_flags & ITEM_TOKEN_SENT) == 0
&& !item_created
&& it->exptime != 0
&& it->exptime < of.recache_time) {
won_token = true;
}
break;
case 's':
META_CHAR(p, 's');
p = itoa_u32(it->nbytes-2, p);
break;
case 't':
// TTL remaining as of this request.
// needs to be relative because server clocks may not be in sync.
META_CHAR(p, 't');
if (it->exptime == 0) {
*p = '-';
*(p+1) = '1';
p += 2;
} else {
p = itoa_u32(it->exptime - current_time, p);
}
break;
case 'c':
META_CHAR(p, 'c');
p = itoa_u64(ITEM_get_cas(it), p);
break;
case 'f':
META_CHAR(p, 'f');
if (FLAGS_SIZE(it) == 0) {
*p = '0';
p++;
} else {
p = itoa_u32(*((uint32_t *) ITEM_suffix(it)), p);
}
break;
case 'l':
META_CHAR(p, 'l');
p = itoa_u32(current_time - it->time, p);
break;
case 'h':
META_CHAR(p, 'h');
if (it->it_flags & ITEM_FETCHED) {
*p = '1';
} else {
*p = '0';
}
p++;
break;
case 'O':
if (tokens[i].length > MFLAG_MAX_OPAQUE_LENGTH) {
errstr = "CLIENT_ERROR opaque token too long";
goto error;
}
META_SPACE(p);
memcpy(p, tokens[i].value, tokens[i].length);
p += tokens[i].length;
break;
case 'k':
META_CHAR(p, 'k');
memcpy(p, ITEM_key(it), it->nkey);
p += it->nkey;
break;
}
}
// Has this item already sent a token?
// Important to do this here so we don't send W with Z.
// Isn't critical, but easier for client authors to understand.
if (it->it_flags & ITEM_TOKEN_SENT) {
META_CHAR(p, 'Z');
}
if (it->it_flags & ITEM_STALE) {
META_CHAR(p, 'X');
// FIXME: think hard about this. is this a default, or a flag?
if ((it->it_flags & ITEM_TOKEN_SENT) == 0) {
// If we're stale but no token already sent, now send one.
won_token = true;
}
}
if (won_token) {
// Mark a win into the flag buffer.
META_CHAR(p, 'W');
it->it_flags |= ITEM_TOKEN_SENT;
}
*p = '\r';
*(p+1) = '\n';
*(p+2) = '\0';
p += 2;
// finally, chain in the buffer.
resp_add_iov(resp, resp->wbuf, p - resp->wbuf);
if (of.value) {
#ifdef EXTSTORE
if (it->it_flags & ITEM_HDR) {
if (storage_get_item(c, it, resp) != 0) {
pthread_mutex_lock(&c->thread->stats.mutex);
c->thread->stats.get_oom_extstore++;
pthread_mutex_unlock(&c->thread->stats.mutex);
failed = true;
}
} else if ((it->it_flags & ITEM_CHUNKED) == 0) {
resp_add_iov(resp, ITEM_data(it), it->nbytes);
} else {
resp_add_chunked_iov(resp, it, it->nbytes);
}
#else
if ((it->it_flags & ITEM_CHUNKED) == 0) {
resp_add_iov(resp, ITEM_data(it), it->nbytes);
} else {
resp_add_chunked_iov(resp, it, it->nbytes);
}
#endif
}
// need to hold the ref at least because of the key above.
#ifdef EXTSTORE
if (!failed) {
if ((it->it_flags & ITEM_HDR) != 0 && of.value) {
// Only have extstore clean if header and returning value.
resp->item = NULL;
} else {
resp->item = it;
}
} else {
// Failed to set up extstore fetch.
if (of.locked) {
do_item_remove(it);
} else {
item_remove(it);
}
}
#else
resp->item = it;
#endif
} else {
failed = true;
}
if (of.locked) {
// Delayed bump so we could get fetched/last access time pre-update.
if (!of.no_update && it != NULL) {
do_item_bump(c, it, hv);
}
item_unlock(hv);
}
// we count this command as a normal one if we've gotten this far.
// TODO: for autovivify case, miss never happens. Is this okay?
if (!failed) {
pthread_mutex_lock(&c->thread->stats.mutex);
if (ttl_set) {
c->thread->stats.touch_cmds++;
c->thread->stats.slab_stats[ITEM_clsid(it)].touch_hits++;
} else {
c->thread->stats.lru_hits[it->slabs_clsid]++;
c->thread->stats.get_cmds++;
}
pthread_mutex_unlock(&c->thread->stats.mutex);
conn_set_state(c, conn_new_cmd);
} else {
pthread_mutex_lock(&c->thread->stats.mutex);
if (ttl_set) {
c->thread->stats.touch_cmds++;
c->thread->stats.touch_misses++;
} else {
c->thread->stats.get_misses++;
c->thread->stats.get_cmds++;
}
MEMCACHED_COMMAND_GET(c->sfd, key, nkey, -1, 0);
pthread_mutex_unlock(&c->thread->stats.mutex);
// This gets elided in noreply mode.
out_string(c, "EN");
}
return;
error:
if (it) {
do_item_remove(it);
if (of.locked) {
item_unlock(hv);
}
}
out_errstring(c, errstr);
}
static void process_mset_command(conn *c, token_t *tokens, const size_t ntokens) {
char *key;
size_t nkey;
item *it;
int i;
short comm = NREAD_SET;
struct _meta_flags of = {0}; // option bitflags.
char *errstr = "CLIENT_ERROR bad command line format";
uint32_t hv;
mc_resp *resp = c->resp;
char *p = resp->wbuf;
assert(c != NULL);
WANT_TOKENS_MIN(ntokens, 3);
// TODO: most of this is identical to mget.
if (tokens[KEY_TOKEN].length > KEY_MAX_LENGTH) {
out_errstring(c, "CLIENT_ERROR bad command line format");
return;
}
key = tokens[KEY_TOKEN].value;
nkey = tokens[KEY_TOKEN].length;
if (ntokens == 3) {
out_errstring(c, "CLIENT_ERROR bad command line format");
return;
}
if (ntokens > MFLAG_MAX_OPT_LENGTH) {
out_errstring(c, "CLIENT_ERROR options flags too long");
return;
}
// leave space for the status code.
p = resp->wbuf + 3;
// We need to at least try to get the size to properly slurp bad bytes
// after an error.
if (_meta_flag_preparse(tokens, ntokens, &of, &errstr) != 0) {
goto error;
}
// Set noreply after tokens are understood.
c->noreply = of.no_reply;
bool has_error = false;
for (i = KEY_TOKEN+1; i < ntokens-1; i++) {
switch (tokens[i].value[0]) {
// TODO: macro perhaps?
case 'O':
if (tokens[i].length > MFLAG_MAX_OPAQUE_LENGTH) {
errstr = "CLIENT_ERROR opaque token too long";
has_error = true;
break;
}
META_SPACE(p);
memcpy(p, tokens[i].value, tokens[i].length);
p += tokens[i].length;
break;
case 'k':
META_CHAR(p, 'k');
memcpy(p, key, nkey);
p += nkey;
break;
}
}
// "mode switch" to alternative commands
switch (of.mode) {
case 0:
break; // no mode supplied.
case 'E': // Add...
comm = NREAD_ADD;
break;
case 'A': // Append.
comm = NREAD_APPEND;
break;
case 'P': // Prepend.
comm = NREAD_PREPEND;
break;
case 'R': // Replace.
comm = NREAD_REPLACE;
break;
case 'S': // Set. Default.
comm = NREAD_SET;
break;
default:
errstr = "CLIENT_ERROR invalid mode for ms M token";
goto error;
}
// The item storage function doesn't exactly map to mset.
// If a CAS value is supplied, upgrade default SET mode to CAS mode.
// Also allows REPLACE to work, as REPLACE + CAS works the same as CAS.
// add-with-cas works the same as add; but could only LRU bump if match..
// APPEND/PREPEND allow a simplified CAS check.
if (of.has_cas && (comm == NREAD_SET || comm == NREAD_REPLACE)) {
comm = NREAD_CAS;
}
// We attempt to process as much as we can in hopes of getting a valid and
// adjusted vlen, or else the data swallowed after error will be for 0b.
if (has_error)
goto error;
it = item_alloc(key, nkey, of.client_flags, of.exptime, of.value_len);
if (it == 0) {
enum store_item_type status;
// TODO: These could be normalized codes (TL and OM). Need to
// reorganize the output stuff a bit though.
if (! item_size_ok(nkey, of.client_flags, of.value_len)) {
errstr = "SERVER_ERROR object too large for cache";
status = TOO_LARGE;
} else {
errstr = "SERVER_ERROR out of memory storing object";
status = NO_MEMORY;
}
// FIXME: LOGGER_LOG specific to mset, include options.
LOGGER_LOG(c->thread->l, LOG_MUTATIONS, LOGGER_ITEM_STORE,
NULL, status, comm, key, nkey, 0, 0);
/* Avoid stale data persisting in cache because we failed alloc. */
// NOTE: only if SET mode?
it = item_get_locked(key, nkey, c, DONT_UPDATE, &hv);
if (it) {
do_item_unlink(it, hv);
STORAGE_delete(c->thread->storage, it);
do_item_remove(it);
}
item_unlock(hv);
goto error;
}
ITEM_set_cas(it, of.req_cas_id);
c->item = it;
#ifdef NEED_ALIGN
if (it->it_flags & ITEM_CHUNKED) {
c->ritem = ITEM_schunk(it);
} else {
c->ritem = ITEM_data(it);
}
#else
c->ritem = ITEM_data(it);
#endif
c->rlbytes = it->nbytes;
c->cmd = comm;
if (of.set_stale && comm == NREAD_CAS) {
c->set_stale = true;
}
resp->wbytes = p - resp->wbuf;
memcpy(resp->wbuf + resp->wbytes, "\r\n", 2);
resp->wbytes += 2;
// We've written the status line into wbuf, use wbytes to finalize later.
resp_add_iov(resp, resp->wbuf, resp->wbytes);
c->mset_res = true;
conn_set_state(c, conn_nread);
return;
error:
/* swallow the data line */
c->sbytes = of.value_len;
// Note: no errors possible after the item was successfully allocated.
// So we're just looking at dumping error codes and returning.
out_errstring(c, errstr);
// TODO: pass state in? else switching twice meh.
conn_set_state(c, conn_swallow);
}
static void process_mdelete_command(conn *c, token_t *tokens, const size_t ntokens) {
char *key;
size_t nkey;
uint64_t req_cas_id = 0;
item *it = NULL;
int i;
uint32_t hv;
struct _meta_flags of = {0}; // option bitflags.
char *errstr = "CLIENT_ERROR bad command line format";
mc_resp *resp = c->resp;
// reserve 3 bytes for status code
char *p = resp->wbuf + 3;
assert(c != NULL);
WANT_TOKENS_MIN(ntokens, 3);
// TODO: most of this is identical to mget.
if (tokens[KEY_TOKEN].length > KEY_MAX_LENGTH) {
out_string(c, "CLIENT_ERROR bad command line format");
return;
}
key = tokens[KEY_TOKEN].value;
nkey = tokens[KEY_TOKEN].length;
if (ntokens > MFLAG_MAX_OPT_LENGTH) {
out_string(c, "CLIENT_ERROR options flags too long");
return;
}
// scrubs duplicated options and sets flags for how to load the item.
if (_meta_flag_preparse(tokens, ntokens, &of, &errstr) != 0) {
out_errstring(c, "CLIENT_ERROR invalid or duplicate flag");
return;
}
c->noreply = of.no_reply;
assert(c != NULL);
for (i = KEY_TOKEN+1; i < ntokens-1; i++) {
switch (tokens[i].value[0]) {
// TODO: macro perhaps?
case 'O':
if (tokens[i].length > MFLAG_MAX_OPAQUE_LENGTH) {
errstr = "CLIENT_ERROR opaque token too long";
goto error;
}
META_SPACE(p);
memcpy(p, tokens[i].value, tokens[i].length);
p += tokens[i].length;
break;
case 'k':
META_CHAR(p, 'k');
memcpy(p, key, nkey);
p += nkey;
break;
}
}
it = item_get_locked(key, nkey, c, DONT_UPDATE, &hv);
if (it) {
MEMCACHED_COMMAND_DELETE(c->sfd, ITEM_key(it), it->nkey);
// allow only deleting/marking if a CAS value matches.
if (of.has_cas && ITEM_get_cas(it) != req_cas_id) {
pthread_mutex_lock(&c->thread->stats.mutex);
c->thread->stats.delete_misses++;
pthread_mutex_unlock(&c->thread->stats.mutex);
memcpy(resp->wbuf, "EX ", 3);
goto cleanup;
}
// If we're to set this item as stale, we don't actually want to
// delete it. We mark the stale bit, bump CAS, and update exptime if
// we were supplied a new TTL.
if (of.set_stale) {
if (of.new_ttl) {
it->exptime = of.exptime;
}
it->it_flags |= ITEM_STALE;
// Also need to remove TOKEN_SENT, so next client can win.
it->it_flags &= ~ITEM_TOKEN_SENT;
ITEM_set_cas(it, (settings.use_cas) ? get_cas_id() : 0);
// Clients can noreply nominal responses.
if (c->noreply)
resp->skip = true;
memcpy(resp->wbuf, "OK ", 3);
} else {
pthread_mutex_lock(&c->thread->stats.mutex);
c->thread->stats.slab_stats[ITEM_clsid(it)].delete_hits++;
pthread_mutex_unlock(&c->thread->stats.mutex);
do_item_unlink(it, hv);
STORAGE_delete(c->thread->storage, it);
if (c->noreply)
resp->skip = true;
memcpy(resp->wbuf, "OK ", 3);
}
goto cleanup;
} else {
pthread_mutex_lock(&c->thread->stats.mutex);
c->thread->stats.delete_misses++;
pthread_mutex_unlock(&c->thread->stats.mutex);
memcpy(resp->wbuf, "NF ", 3);
goto cleanup;
}
cleanup:
if (it) {
do_item_remove(it);
}
// Item is always returned locked, even if missing.
item_unlock(hv);
resp->wbytes = p - resp->wbuf;
memcpy(resp->wbuf + resp->wbytes, "\r\n", 2);
resp->wbytes += 2;
resp_add_iov(resp, resp->wbuf, resp->wbytes);
conn_set_state(c, conn_new_cmd);
return;
error:
out_errstring(c, errstr);
}
static void process_marithmetic_command(conn *c, token_t *tokens, const size_t ntokens) {
char *key;
size_t nkey;
int i;
struct _meta_flags of = {0}; // option bitflags.
char *errstr = "CLIENT_ERROR bad command line format";
mc_resp *resp = c->resp;
// no reservation (like del/set) since we post-process the status line.
char *p = resp->wbuf;
// If no argument supplied, incr or decr by one.
of.delta = 1;
of.initial = 0; // redundant, for clarity.
bool incr = true; // default mode is to increment.
bool locked = false;
uint32_t hv = 0;
item *it = NULL; // item returned by do_add_delta.
assert(c != NULL);
WANT_TOKENS_MIN(ntokens, 3);
// TODO: most of this is identical to mget.
if (tokens[KEY_TOKEN].length > KEY_MAX_LENGTH) {
out_string(c, "CLIENT_ERROR bad command line format");
return;
}
key = tokens[KEY_TOKEN].value;
nkey = tokens[KEY_TOKEN].length;
if (ntokens > MFLAG_MAX_OPT_LENGTH) {
out_string(c, "CLIENT_ERROR options flags too long");
return;
}
// scrubs duplicated options and sets flags for how to load the item.
if (_meta_flag_preparse(tokens, ntokens, &of, &errstr) != 0) {
out_errstring(c, "CLIENT_ERROR invalid or duplicate flag");
return;
}
c->noreply = of.no_reply;
assert(c != NULL);
// "mode switch" to alternative commands
switch (of.mode) {
case 0: // no switch supplied.
break;
case 'I': // Incr (default)
case '+':
incr = true;
break;
case 'D': // Decr.
case '-':
incr = false;
break;
default:
errstr = "CLIENT_ERROR invalid mode for ma M token";
goto error;
break;
}
// take hash value and manually lock item... hold lock during store phase
// on miss and avoid recalculating the hash multiple times.
hv = hash(key, nkey);
item_lock(hv);
locked = true;
char tmpbuf[INCR_MAX_STORAGE_LEN];
// return a referenced item if it exists, so we can modify it here, rather
// than adding even more parameters to do_add_delta.
bool item_created = false;
switch(do_add_delta(c, key, nkey, incr, of.delta, tmpbuf, &of.req_cas_id, hv, &it)) {
case OK:
if (c->noreply)
resp->skip = true;
memcpy(resp->wbuf, "OK ", 3);
break;
case NON_NUMERIC:
errstr = "CLIENT_ERROR cannot increment or decrement non-numeric value";
goto error;
break;
case EOM:
errstr = "SERVER_ERROR out of memory";
goto error;
break;
case DELTA_ITEM_NOT_FOUND:
if (of.vivify) {
itoa_u64(of.initial, tmpbuf);
int vlen = strlen(tmpbuf);
it = item_alloc(key, nkey, 0, 0, vlen+2);
if (it != NULL) {
memcpy(ITEM_data(it), tmpbuf, vlen);
memcpy(ITEM_data(it) + vlen, "\r\n", 2);
if (do_store_item(it, NREAD_ADD, c, hv)) {
item_created = true;
} else {
// Not sure how we can get here if we're holding the lock.
memcpy(resp->wbuf, "NS ", 3);
}
} else {
errstr = "SERVER_ERROR Out of memory allocating new item";
goto error;
}
} else {
pthread_mutex_lock(&c->thread->stats.mutex);
if (incr) {
c->thread->stats.incr_misses++;
} else {
c->thread->stats.decr_misses++;
}
pthread_mutex_unlock(&c->thread->stats.mutex);
// won't have a valid it here.
memcpy(p, "NF ", 3);
p += 3;
}
break;
case DELTA_ITEM_CAS_MISMATCH:
// also returns without a valid it.
memcpy(p, "EX ", 3);
p += 3;
break;
}
// final loop
// allows building the response with information after vivifying from a
// miss, or returning a new CAS value after add_delta().
if (it) {
size_t vlen = strlen(tmpbuf);
if (of.value) {
memcpy(p, "VA ", 3);
p = itoa_u32(vlen, p+3);
} else {
memcpy(p, "OK", 2);
p += 2;
}
for (i = KEY_TOKEN+1; i < ntokens-1; i++) {
switch (tokens[i].value[0]) {
case 'c':
META_CHAR(p, 'c');
p = itoa_u64(ITEM_get_cas(it), p);
break;
case 't':
META_CHAR(p, 't');
if (it->exptime == 0) {
*p = '-';
*(p+1) = '1';
p += 2;
} else {
p = itoa_u32(it->exptime - current_time, p);
}
break;
case 'T':
it->exptime = of.exptime;
break;
case 'N':
if (item_created) {
it->exptime = of.autoviv_exptime;
}
break;
// TODO: macro perhaps?
case 'O':
if (tokens[i].length > MFLAG_MAX_OPAQUE_LENGTH) {
errstr = "CLIENT_ERROR opaque token too long";
goto error;
}
META_SPACE(p);
memcpy(p, tokens[i].value, tokens[i].length);
p += tokens[i].length;
break;
case 'k':
META_CHAR(p, 'k');
memcpy(p, key, nkey);
p += nkey;
break;
}
}
if (of.value) {
*p = '\r';
*(p+1) = '\n';
p += 2;
memcpy(p, tmpbuf, vlen);
p += vlen;
}
do_item_remove(it);
} else {
// No item to handle. still need to return opaque/key tokens
for (i = KEY_TOKEN+1; i < ntokens-1; i++) {
switch (tokens[i].value[0]) {
// TODO: macro perhaps?
case 'O':
if (tokens[i].length > MFLAG_MAX_OPAQUE_LENGTH) {
errstr = "CLIENT_ERROR opaque token too long";
goto error;
}
META_SPACE(p);
memcpy(p, tokens[i].value, tokens[i].length);
p += tokens[i].length;
break;
case 'k':
META_CHAR(p, 'k');
memcpy(p, key, nkey);
p += nkey;
break;
}
}
}
item_unlock(hv);
resp->wbytes = p - resp->wbuf;
memcpy(resp->wbuf + resp->wbytes, "\r\n", 2);
resp->wbytes += 2;
resp_add_iov(resp, resp->wbuf, resp->wbytes);
conn_set_state(c, conn_new_cmd);
return;
error:
if (it != NULL)
do_item_remove(it);
if (locked)
item_unlock(hv);
out_errstring(c, errstr);
}
static void process_update_command(conn *c, token_t *tokens, const size_t ntokens, int comm, bool handle_cas) {
char *key;
size_t nkey;
unsigned int flags;
int32_t exptime_int = 0;
rel_time_t exptime = 0;
int vlen;
uint64_t req_cas_id=0;
item *it;
assert(c != NULL);
set_noreply_maybe(c, tokens, ntokens);
if (tokens[KEY_TOKEN].length > KEY_MAX_LENGTH) {
out_string(c, "CLIENT_ERROR bad command line format");
return;
}
key = tokens[KEY_TOKEN].value;
nkey = tokens[KEY_TOKEN].length;
if (! (safe_strtoul(tokens[2].value, (uint32_t *)&flags)
&& safe_strtol(tokens[3].value, &exptime_int)
&& safe_strtol(tokens[4].value, (int32_t *)&vlen))) {
out_string(c, "CLIENT_ERROR bad command line format");
return;
}
exptime = realtime(EXPTIME_TO_POSITIVE_TIME(exptime_int));
// does cas value exist?
if (handle_cas) {
if (!safe_strtoull(tokens[5].value, &req_cas_id)) {
out_string(c, "CLIENT_ERROR bad command line format");
return;
}
}
if (vlen < 0 || vlen > (INT_MAX - 2)) {
out_string(c, "CLIENT_ERROR bad command line format");
return;
}
vlen += 2;
if (settings.detail_enabled) {
stats_prefix_record_set(key, nkey);
}
it = item_alloc(key, nkey, flags, exptime, vlen);
if (it == 0) {
enum store_item_type status;
if (! item_size_ok(nkey, flags, vlen)) {
out_string(c, "SERVER_ERROR object too large for cache");
status = TOO_LARGE;
} else {
out_of_memory(c, "SERVER_ERROR out of memory storing object");
status = NO_MEMORY;
}
LOGGER_LOG(c->thread->l, LOG_MUTATIONS, LOGGER_ITEM_STORE,
NULL, status, comm, key, nkey, 0, 0, c->sfd);
/* swallow the data line */
conn_set_state(c, conn_swallow);
c->sbytes = vlen;
/* Avoid stale data persisting in cache because we failed alloc.
* Unacceptable for SET. Anywhere else too? */
if (comm == NREAD_SET) {
it = item_get(key, nkey, c, DONT_UPDATE);
if (it) {
item_unlink(it);
STORAGE_delete(c->thread->storage, it);
item_remove(it);
}
}
return;
}
ITEM_set_cas(it, req_cas_id);
c->item = it;
#ifdef NEED_ALIGN
if (it->it_flags & ITEM_CHUNKED) {
c->ritem = ITEM_schunk(it);
} else {
c->ritem = ITEM_data(it);
}
#else
c->ritem = ITEM_data(it);
#endif
c->rlbytes = it->nbytes;
c->cmd = comm;
conn_set_state(c, conn_nread);
}
static void process_touch_command(conn *c, token_t *tokens, const size_t ntokens) {
char *key;
size_t nkey;
int32_t exptime_int = 0;
rel_time_t exptime = 0;
item *it;
assert(c != NULL);
set_noreply_maybe(c, tokens, ntokens);
if (tokens[KEY_TOKEN].length > KEY_MAX_LENGTH) {
out_string(c, "CLIENT_ERROR bad command line format");
return;
}
key = tokens[KEY_TOKEN].value;
nkey = tokens[KEY_TOKEN].length;
if (!safe_strtol(tokens[2].value, &exptime_int)) {
out_string(c, "CLIENT_ERROR invalid exptime argument");
return;
}
exptime = realtime(EXPTIME_TO_POSITIVE_TIME(exptime_int));
it = item_touch(key, nkey, exptime, c);
if (it) {
pthread_mutex_lock(&c->thread->stats.mutex);
c->thread->stats.touch_cmds++;
c->thread->stats.slab_stats[ITEM_clsid(it)].touch_hits++;
pthread_mutex_unlock(&c->thread->stats.mutex);
out_string(c, "TOUCHED");
item_remove(it);
} else {
pthread_mutex_lock(&c->thread->stats.mutex);
c->thread->stats.touch_cmds++;
c->thread->stats.touch_misses++;
pthread_mutex_unlock(&c->thread->stats.mutex);
out_string(c, "NOT_FOUND");
}
}
static void process_arithmetic_command(conn *c, token_t *tokens, const size_t ntokens, const bool incr) {
char temp[INCR_MAX_STORAGE_LEN];
uint64_t delta;
char *key;
size_t nkey;
assert(c != NULL);
set_noreply_maybe(c, tokens, ntokens);
if (tokens[KEY_TOKEN].length > KEY_MAX_LENGTH) {
out_string(c, "CLIENT_ERROR bad command line format");
return;
}
key = tokens[KEY_TOKEN].value;
nkey = tokens[KEY_TOKEN].length;
if (!safe_strtoull(tokens[2].value, &delta)) {
out_string(c, "CLIENT_ERROR invalid numeric delta argument");
return;
}
switch(add_delta(c, key, nkey, incr, delta, temp, NULL)) {
case OK:
out_string(c, temp);
break;
case NON_NUMERIC:
out_string(c, "CLIENT_ERROR cannot increment or decrement non-numeric value");
break;
case EOM:
out_of_memory(c, "SERVER_ERROR out of memory");
break;
case DELTA_ITEM_NOT_FOUND:
pthread_mutex_lock(&c->thread->stats.mutex);
if (incr) {
c->thread->stats.incr_misses++;
} else {
c->thread->stats.decr_misses++;
}
pthread_mutex_unlock(&c->thread->stats.mutex);
out_string(c, "NOT_FOUND");
break;
case DELTA_ITEM_CAS_MISMATCH:
break; /* Should never get here */
}
}
static void process_delete_command(conn *c, token_t *tokens, const size_t ntokens) {
char *key;
size_t nkey;
item *it;
uint32_t hv;
assert(c != NULL);
if (ntokens > 3) {
bool hold_is_zero = strcmp(tokens[KEY_TOKEN+1].value, "0") == 0;
bool sets_noreply = set_noreply_maybe(c, tokens, ntokens);
bool valid = (ntokens == 4 && (hold_is_zero || sets_noreply))
|| (ntokens == 5 && hold_is_zero && sets_noreply);
if (!valid) {
out_string(c, "CLIENT_ERROR bad command line format. "
"Usage: delete <key> [noreply]");
return;
}
}
key = tokens[KEY_TOKEN].value;
nkey = tokens[KEY_TOKEN].length;
if(nkey > KEY_MAX_LENGTH) {
out_string(c, "CLIENT_ERROR bad command line format");
return;
}
if (settings.detail_enabled) {
stats_prefix_record_delete(key, nkey);
}
it = item_get_locked(key, nkey, c, DONT_UPDATE, &hv);
if (it) {
MEMCACHED_COMMAND_DELETE(c->sfd, ITEM_key(it), it->nkey);
pthread_mutex_lock(&c->thread->stats.mutex);
c->thread->stats.slab_stats[ITEM_clsid(it)].delete_hits++;
pthread_mutex_unlock(&c->thread->stats.mutex);
do_item_unlink(it, hv);
STORAGE_delete(c->thread->storage, it);
do_item_remove(it); /* release our reference */
out_string(c, "DELETED");
} else {
pthread_mutex_lock(&c->thread->stats.mutex);
c->thread->stats.delete_misses++;
pthread_mutex_unlock(&c->thread->stats.mutex);
out_string(c, "NOT_FOUND");
}
item_unlock(hv);
}
static void process_verbosity_command(conn *c, token_t *tokens, const size_t ntokens) {
unsigned int level;
assert(c != NULL);
set_noreply_maybe(c, tokens, ntokens);
if (!safe_strtoul(tokens[1].value, (uint32_t*)&level)) {
out_string(c, "CLIENT_ERROR bad command line format");
return;
}
settings.verbose = level > MAX_VERBOSITY_LEVEL ? MAX_VERBOSITY_LEVEL : level;
out_string(c, "OK");
return;
}
#ifdef MEMCACHED_DEBUG
static void process_misbehave_command(conn *c) {
int allowed = 0;
// try opening new TCP socket
int i = socket(AF_INET, SOCK_STREAM, 0);
if (i != -1) {
allowed++;
close(i);
}
// try executing new commands
i = system("sleep 0");
if (i != -1) {
allowed++;
}
if (allowed) {
out_string(c, "ERROR");
} else {
out_string(c, "OK");
}
}
#endif
static void process_slabs_automove_command(conn *c, token_t *tokens, const size_t ntokens) {
unsigned int level;
double ratio;
assert(c != NULL);
set_noreply_maybe(c, tokens, ntokens);
if (strcmp(tokens[2].value, "ratio") == 0) {
if (ntokens < 5 || !safe_strtod(tokens[3].value, &ratio)) {
out_string(c, "ERROR");
return;
}
settings.slab_automove_ratio = ratio;
} else {
if (!safe_strtoul(tokens[2].value, (uint32_t*)&level)) {
out_string(c, "CLIENT_ERROR bad command line format");
return;
}
if (level == 0) {
settings.slab_automove = 0;
} else if (level == 1 || level == 2) {
settings.slab_automove = level;
} else {
out_string(c, "ERROR");
return;
}
}
out_string(c, "OK");
return;
}
/* TODO: decide on syntax for sampling? */
static void process_watch_command(conn *c, token_t *tokens, const size_t ntokens) {
uint16_t f = 0;
int x;
assert(c != NULL);
set_noreply_maybe(c, tokens, ntokens);
if (!settings.watch_enabled) {
out_string(c, "CLIENT_ERROR watch commands not allowed");
return;
}
if (resp_has_stack(c)) {
out_string(c, "ERROR cannot pipeline other commands before watch");
return;
}
if (ntokens > 2) {
for (x = COMMAND_TOKEN + 1; x < ntokens - 1; x++) {
if ((strcmp(tokens[x].value, "rawcmds") == 0)) {
f |= LOG_RAWCMDS;
} else if ((strcmp(tokens[x].value, "evictions") == 0)) {
f |= LOG_EVICTIONS;
} else if ((strcmp(tokens[x].value, "fetchers") == 0)) {
f |= LOG_FETCHERS;
} else if ((strcmp(tokens[x].value, "mutations") == 0)) {
f |= LOG_MUTATIONS;
} else if ((strcmp(tokens[x].value, "sysevents") == 0)) {
f |= LOG_SYSEVENTS;
} else {
out_string(c, "ERROR");
return;
}
}
} else {
f |= LOG_FETCHERS;
}
switch(logger_add_watcher(c, c->sfd, f)) {
case LOGGER_ADD_WATCHER_TOO_MANY:
out_string(c, "WATCHER_TOO_MANY log watcher limit reached");
break;
case LOGGER_ADD_WATCHER_FAILED:
out_string(c, "WATCHER_FAILED failed to add log watcher");
break;
case LOGGER_ADD_WATCHER_OK:
conn_set_state(c, conn_watch);
event_del(&c->event);
break;
}
}
static void process_memlimit_command(conn *c, token_t *tokens, const size_t ntokens) {
uint32_t memlimit;
assert(c != NULL);
set_noreply_maybe(c, tokens, ntokens);
if (!safe_strtoul(tokens[1].value, &memlimit)) {
out_string(c, "ERROR");
} else {
if (memlimit < 8) {
out_string(c, "MEMLIMIT_TOO_SMALL cannot set maxbytes to less than 8m");
} else {
if (memlimit > 1000000000) {
out_string(c, "MEMLIMIT_ADJUST_FAILED input value is megabytes not bytes");
} else if (slabs_adjust_mem_limit((size_t) memlimit * 1024 * 1024)) {
if (settings.verbose > 0) {
fprintf(stderr, "maxbytes adjusted to %llum\n", (unsigned long long)memlimit);
}
out_string(c, "OK");
} else {
out_string(c, "MEMLIMIT_ADJUST_FAILED out of bounds or unable to adjust");
}
}
}
}
static void process_lru_command(conn *c, token_t *tokens, const size_t ntokens) {
uint32_t pct_hot;
uint32_t pct_warm;
double hot_factor;
int32_t ttl;
double factor;
set_noreply_maybe(c, tokens, ntokens);
if (strcmp(tokens[1].value, "tune") == 0 && ntokens >= 7) {
if (!safe_strtoul(tokens[2].value, &pct_hot) ||
!safe_strtoul(tokens[3].value, &pct_warm) ||
!safe_strtod(tokens[4].value, &hot_factor) ||
!safe_strtod(tokens[5].value, &factor)) {
out_string(c, "ERROR");
} else {
if (pct_hot + pct_warm > 80) {
out_string(c, "ERROR hot and warm pcts must not exceed 80");
} else if (factor <= 0 || hot_factor <= 0) {
out_string(c, "ERROR hot/warm age factors must be greater than 0");
} else {
settings.hot_lru_pct = pct_hot;
settings.warm_lru_pct = pct_warm;
settings.hot_max_factor = hot_factor;
settings.warm_max_factor = factor;
out_string(c, "OK");
}
}
} else if (strcmp(tokens[1].value, "mode") == 0 && ntokens >= 4 &&
settings.lru_maintainer_thread) {
if (strcmp(tokens[2].value, "flat") == 0) {
settings.lru_segmented = false;
out_string(c, "OK");
} else if (strcmp(tokens[2].value, "segmented") == 0) {
settings.lru_segmented = true;
out_string(c, "OK");
} else {
out_string(c, "ERROR");
}
} else if (strcmp(tokens[1].value, "temp_ttl") == 0 && ntokens >= 4 &&
settings.lru_maintainer_thread) {
if (!safe_strtol(tokens[2].value, &ttl)) {
out_string(c, "ERROR");
} else {
if (ttl < 0) {
settings.temp_lru = false;
} else {
settings.temp_lru = true;
settings.temporary_ttl = ttl;
}
out_string(c, "OK");
}
} else {
out_string(c, "ERROR");
}
}
#ifdef EXTSTORE
static void process_extstore_command(conn *c, token_t *tokens, const size_t ntokens) {
set_noreply_maybe(c, tokens, ntokens);
bool ok = true;
if (ntokens < 4) {
ok = false;
} else if (strcmp(tokens[1].value, "free_memchunks") == 0 && ntokens > 4) {
/* per-slab-class free chunk setting. */
unsigned int clsid = 0;
unsigned int limit = 0;
if (!safe_strtoul(tokens[2].value, &clsid) ||
!safe_strtoul(tokens[3].value, &limit)) {
ok = false;
} else {
if (clsid < MAX_NUMBER_OF_SLAB_CLASSES) {
settings.ext_free_memchunks[clsid] = limit;
} else {
ok = false;
}
}
} else if (strcmp(tokens[1].value, "item_size") == 0) {
if (!safe_strtoul(tokens[2].value, &settings.ext_item_size))
ok = false;
} else if (strcmp(tokens[1].value, "item_age") == 0) {
if (!safe_strtoul(tokens[2].value, &settings.ext_item_age))
ok = false;
} else if (strcmp(tokens[1].value, "low_ttl") == 0) {
if (!safe_strtoul(tokens[2].value, &settings.ext_low_ttl))
ok = false;
} else if (strcmp(tokens[1].value, "recache_rate") == 0) {
if (!safe_strtoul(tokens[2].value, &settings.ext_recache_rate))
ok = false;
} else if (strcmp(tokens[1].value, "compact_under") == 0) {
if (!safe_strtoul(tokens[2].value, &settings.ext_compact_under))
ok = false;
} else if (strcmp(tokens[1].value, "drop_under") == 0) {
if (!safe_strtoul(tokens[2].value, &settings.ext_drop_under))
ok = false;
} else if (strcmp(tokens[1].value, "max_frag") == 0) {
if (!safe_strtod(tokens[2].value, &settings.ext_max_frag))
ok = false;
} else if (strcmp(tokens[1].value, "drop_unread") == 0) {
unsigned int v;
if (!safe_strtoul(tokens[2].value, &v)) {
ok = false;
} else {
settings.ext_drop_unread = v == 0 ? false : true;
}
} else {
ok = false;
}
if (!ok) {
out_string(c, "ERROR");
} else {
out_string(c, "OK");
}
}
#endif
static void process_flush_all_command(conn *c, token_t *tokens, const size_t ntokens) {
int32_t exptime = 0;
rel_time_t new_oldest = 0;
set_noreply_maybe(c, tokens, ntokens);
pthread_mutex_lock(&c->thread->stats.mutex);
c->thread->stats.flush_cmds++;
pthread_mutex_unlock(&c->thread->stats.mutex);
if (!settings.flush_enabled) {
// flush_all is not allowed but we log it on stats
out_string(c, "CLIENT_ERROR flush_all not allowed");
return;
}
if (ntokens != (c->noreply ? 3 : 2)) {
if (!safe_strtol(tokens[1].value, &exptime)) {
out_string(c, "CLIENT_ERROR invalid exptime argument");
return;
}
}
/*
If exptime is zero realtime() would return zero too, and
realtime(exptime) - 1 would overflow to the max unsigned
value. So we process exptime == 0 the same way we do when
no delay is given at all.
*/
if (exptime > 0) {
new_oldest = realtime(exptime);
} else { /* exptime == 0 */
new_oldest = current_time;
}
if (settings.use_cas) {
settings.oldest_live = new_oldest - 1;
if (settings.oldest_live <= current_time)
settings.oldest_cas = get_cas_id();
} else {
settings.oldest_live = new_oldest;
}
out_string(c, "OK");
}
static void process_version_command(conn *c) {
out_string(c, "VERSION " VERSION);
}
static void process_quit_command(conn *c) {
conn_set_state(c, conn_mwrite);
c->close_after_write = true;
}
static void process_shutdown_command(conn *c, token_t *tokens, const size_t ntokens) {
if (!settings.shutdown_command) {
out_string(c, "ERROR: shutdown not enabled");
return;
}
if (ntokens == 2) {
conn_set_state(c, conn_closing);
raise(SIGINT);
} else if (ntokens == 3 && strcmp(tokens[SUBCOMMAND_TOKEN].value, "graceful") == 0) {
conn_set_state(c, conn_closing);
raise(SIGUSR1);
} else {
out_string(c, "CLIENT_ERROR invalid shutdown mode");
}
}
static void process_slabs_command(conn *c, token_t *tokens, const size_t ntokens) {
if (ntokens == 5 && strcmp(tokens[COMMAND_TOKEN + 1].value, "reassign") == 0) {
int src, dst, rv;
if (settings.slab_reassign == false) {
out_string(c, "CLIENT_ERROR slab reassignment disabled");
return;
}
if (! (safe_strtol(tokens[2].value, (int32_t*)&src)
&& safe_strtol(tokens[3].value, (int32_t*)&dst))) {
out_string(c, "CLIENT_ERROR bad command line format");
return;
}
rv = slabs_reassign(src, dst);
switch (rv) {
case REASSIGN_OK:
out_string(c, "OK");
break;
case REASSIGN_RUNNING:
out_string(c, "BUSY currently processing reassign request");
break;
case REASSIGN_BADCLASS:
out_string(c, "BADCLASS invalid src or dst class id");
break;
case REASSIGN_NOSPARE:
out_string(c, "NOSPARE source class has no spare pages");
break;
case REASSIGN_SRC_DST_SAME:
out_string(c, "SAME src and dst class are identical");
break;
}
return;
} else if (ntokens >= 4 &&
(strcmp(tokens[COMMAND_TOKEN + 1].value, "automove") == 0)) {
process_slabs_automove_command(c, tokens, ntokens);
} else {
out_string(c, "ERROR");
}
}
static void process_lru_crawler_command(conn *c, token_t *tokens, const size_t ntokens) {
if (ntokens == 4 && strcmp(tokens[COMMAND_TOKEN + 1].value, "crawl") == 0) {
int rv;
if (settings.lru_crawler == false) {
out_string(c, "CLIENT_ERROR lru crawler disabled");
return;
}
rv = lru_crawler_crawl(tokens[2].value, CRAWLER_EXPIRED, NULL, 0,
settings.lru_crawler_tocrawl);
switch(rv) {
case CRAWLER_OK:
out_string(c, "OK");
break;
case CRAWLER_RUNNING:
out_string(c, "BUSY currently processing crawler request");
break;
case CRAWLER_BADCLASS:
out_string(c, "BADCLASS invalid class id");
break;
case CRAWLER_NOTSTARTED:
out_string(c, "NOTSTARTED no items to crawl");
break;
case CRAWLER_ERROR:
out_string(c, "ERROR an unknown error happened");
break;
}
return;
} else if (ntokens == 4 && strcmp(tokens[COMMAND_TOKEN + 1].value, "metadump") == 0) {
if (settings.lru_crawler == false) {
out_string(c, "CLIENT_ERROR lru crawler disabled");
return;
}
if (!settings.dump_enabled) {
out_string(c, "ERROR metadump not allowed");
return;
}
if (resp_has_stack(c)) {
out_string(c, "ERROR cannot pipeline other commands before metadump");
return;
}
int rv = lru_crawler_crawl(tokens[2].value, CRAWLER_METADUMP,
c, c->sfd, LRU_CRAWLER_CAP_REMAINING);
switch(rv) {
case CRAWLER_OK:
// TODO: documentation says this string is returned, but
// it never was before. We never switch to conn_write so
// this o_s call never worked. Need to talk to users and
// decide if removing the OK from docs is fine.
//out_string(c, "OK");
// TODO: Don't reuse conn_watch here.
conn_set_state(c, conn_watch);
event_del(&c->event);
break;
case CRAWLER_RUNNING:
out_string(c, "BUSY currently processing crawler request");
break;
case CRAWLER_BADCLASS:
out_string(c, "BADCLASS invalid class id");
break;
case CRAWLER_NOTSTARTED:
out_string(c, "NOTSTARTED no items to crawl");
break;
case CRAWLER_ERROR:
out_string(c, "ERROR an unknown error happened");
break;
}
return;
} else if (ntokens == 4 && strcmp(tokens[COMMAND_TOKEN + 1].value, "tocrawl") == 0) {
uint32_t tocrawl;
if (!safe_strtoul(tokens[2].value, &tocrawl)) {
out_string(c, "CLIENT_ERROR bad command line format");
return;
}
settings.lru_crawler_tocrawl = tocrawl;
out_string(c, "OK");
return;
} else if (ntokens == 4 && strcmp(tokens[COMMAND_TOKEN + 1].value, "sleep") == 0) {
uint32_t tosleep;
if (!safe_strtoul(tokens[2].value, &tosleep)) {
out_string(c, "CLIENT_ERROR bad command line format");
return;
}
if (tosleep > 1000000) {
out_string(c, "CLIENT_ERROR sleep must be one second or less");
return;
}
settings.lru_crawler_sleep = tosleep;
out_string(c, "OK");
return;
} else if (ntokens == 3) {
if ((strcmp(tokens[COMMAND_TOKEN + 1].value, "enable") == 0)) {
if (start_item_crawler_thread() == 0) {
out_string(c, "OK");
} else {
out_string(c, "ERROR failed to start lru crawler thread");
}
} else if ((strcmp(tokens[COMMAND_TOKEN + 1].value, "disable") == 0)) {
if (stop_item_crawler_thread(CRAWLER_NOWAIT) == 0) {
out_string(c, "OK");
} else {
out_string(c, "ERROR failed to stop lru crawler thread");
}
} else {
out_string(c, "ERROR");
}
return;
} else {
out_string(c, "ERROR");
}
}
#ifdef TLS
static void process_refresh_certs_command(conn *c, token_t *tokens, const size_t ntokens) {
set_noreply_maybe(c, tokens, ntokens);
char *errmsg = NULL;
if (refresh_certs(&errmsg)) {
out_string(c, "OK");
} else {
write_and_free(c, errmsg, strlen(errmsg));
}
return;
}
#endif
// TODO: pipelined commands are incompatible with shifting connections to a
// side thread. Given this only happens in two instances (watch and
// lru_crawler metadump) it should be fine for things to bail. It _should_ be
// unusual for these commands.
// This is hard to fix since tokenize_command() mutilates the read buffer, so
// we can't drop out and back in again.
// Leaving this note here to spend more time on a fix when necessary, or if an
// opportunity becomes obvious.
static void process_command(conn *c, char *command) {
token_t tokens[MAX_TOKENS];
size_t ntokens;
int comm;
assert(c != NULL);
MEMCACHED_PROCESS_COMMAND_START(c->sfd, c->rcurr, c->rbytes);
if (settings.verbose > 1)
fprintf(stderr, "<%d %s\n", c->sfd, command);
/*
* for commands set/add/replace, we build an item and read the data
* directly into it, then continue in nread_complete().
*/
// Prep the response object for this query.
if (!resp_start(c)) {
conn_set_state(c, conn_closing);
return;
}
ntokens = tokenize_command(command, tokens, MAX_TOKENS);
// All commands need a minimum of two tokens: cmd and NULL finalizer
// There are also no valid commands shorter than two bytes.
if (ntokens < 2 || tokens[COMMAND_TOKEN].length < 2) {
out_string(c, "ERROR");
return;
}
// Meta commands are all 2-char in length.
char first = tokens[COMMAND_TOKEN].value[0];
if (first == 'm' && tokens[COMMAND_TOKEN].length == 2) {
switch (tokens[COMMAND_TOKEN].value[1]) {
case 'g':
process_mget_command(c, tokens, ntokens);
break;
case 's':
process_mset_command(c, tokens, ntokens);
break;
case 'd':
process_mdelete_command(c, tokens, ntokens);
break;
case 'n':
out_string(c, "MN");
// mn command forces immediate writeback flush.
conn_set_state(c, conn_mwrite);
break;
case 'a':
process_marithmetic_command(c, tokens, ntokens);
break;
case 'e':
process_meta_command(c, tokens, ntokens);
break;
default:
out_string(c, "ERROR");
break;
}
} else if (first == 'g') {
// Various get commands are very common.
WANT_TOKENS_MIN(ntokens, 3);
if (strcmp(tokens[COMMAND_TOKEN].value, "get") == 0) {
process_get_command(c, tokens, ntokens, false, false);
} else if (strcmp(tokens[COMMAND_TOKEN].value, "gets") == 0) {
process_get_command(c, tokens, ntokens, true, false);
} else if (strcmp(tokens[COMMAND_TOKEN].value, "gat") == 0) {
process_get_command(c, tokens, ntokens, false, true);
} else if (strcmp(tokens[COMMAND_TOKEN].value, "gats") == 0) {
process_get_command(c, tokens, ntokens, true, true);
} else {
out_string(c, "ERROR");
}
} else if (first == 's') {
if (strcmp(tokens[COMMAND_TOKEN].value, "set") == 0 && (comm = NREAD_SET)) {
WANT_TOKENS_OR(ntokens, 6, 7);
process_update_command(c, tokens, ntokens, comm, false);
} else if (strcmp(tokens[COMMAND_TOKEN].value, "stats") == 0) {
process_stat(c, tokens, ntokens);
} else if (strcmp(tokens[COMMAND_TOKEN].value, "shutdown") == 0) {
process_shutdown_command(c, tokens, ntokens);
} else if (strcmp(tokens[COMMAND_TOKEN].value, "slabs") == 0) {
process_slabs_command(c, tokens, ntokens);
} else {
out_string(c, "ERROR");
}
} else if (first == 'a') {
if ((strcmp(tokens[COMMAND_TOKEN].value, "add") == 0 && (comm = NREAD_ADD)) ||
(strcmp(tokens[COMMAND_TOKEN].value, "append") == 0 && (comm = NREAD_APPEND)) ) {
WANT_TOKENS_OR(ntokens, 6, 7);
process_update_command(c, tokens, ntokens, comm, false);
} else {
out_string(c, "ERROR");
}
} else if (first == 'c') {
if (strcmp(tokens[COMMAND_TOKEN].value, "cas") == 0 && (comm = NREAD_CAS)) {
WANT_TOKENS_OR(ntokens, 7, 8);
process_update_command(c, tokens, ntokens, comm, true);
} else if (strcmp(tokens[COMMAND_TOKEN].value, "cache_memlimit") == 0) {
WANT_TOKENS_OR(ntokens, 3, 4);
process_memlimit_command(c, tokens, ntokens);
} else {
out_string(c, "ERROR");
}
} else if (first == 'i') {
if (strcmp(tokens[COMMAND_TOKEN].value, "incr") == 0) {
WANT_TOKENS_OR(ntokens, 4, 5);
process_arithmetic_command(c, tokens, ntokens, 1);
} else {
out_string(c, "ERROR");
}
} else if (first == 'd') {
if (strcmp(tokens[COMMAND_TOKEN].value, "delete") == 0) {
WANT_TOKENS(ntokens, 3, 5);
process_delete_command(c, tokens, ntokens);
} else if (strcmp(tokens[COMMAND_TOKEN].value, "decr") == 0) {
WANT_TOKENS_OR(ntokens, 4, 5);
process_arithmetic_command(c, tokens, ntokens, 0);
} else {
out_string(c, "ERROR");
}
} else if (first == 't') {
if (strcmp(tokens[COMMAND_TOKEN].value, "touch") == 0) {
WANT_TOKENS_OR(ntokens, 4, 5);
process_touch_command(c, tokens, ntokens);
} else {
out_string(c, "ERROR");
}
} else if (
(strcmp(tokens[COMMAND_TOKEN].value, "replace") == 0 && (comm = NREAD_REPLACE)) ||
(strcmp(tokens[COMMAND_TOKEN].value, "prepend") == 0 && (comm = NREAD_PREPEND)) ) {
WANT_TOKENS_OR(ntokens, 6, 7);
process_update_command(c, tokens, ntokens, comm, false);
} else if (strcmp(tokens[COMMAND_TOKEN].value, "bget") == 0) {
// ancient "binary get" command which isn't in any documentation, was
// removed > 10 years ago, etc. Keeping for compatibility reasons but
// we should look deeper into client code and remove this.
WANT_TOKENS_MIN(ntokens, 3);
process_get_command(c, tokens, ntokens, false, false);
} else if (strcmp(tokens[COMMAND_TOKEN].value, "flush_all") == 0) {
WANT_TOKENS(ntokens, 2, 4);
process_flush_all_command(c, tokens, ntokens);
} else if (strcmp(tokens[COMMAND_TOKEN].value, "version") == 0) {
process_version_command(c);
} else if (strcmp(tokens[COMMAND_TOKEN].value, "quit") == 0) {
process_quit_command(c);
} else if (strcmp(tokens[COMMAND_TOKEN].value, "lru_crawler") == 0) {
process_lru_crawler_command(c, tokens, ntokens);
} else if (strcmp(tokens[COMMAND_TOKEN].value, "watch") == 0) {
process_watch_command(c, tokens, ntokens);
} else if (strcmp(tokens[COMMAND_TOKEN].value, "verbosity") == 0) {
WANT_TOKENS_OR(ntokens, 3, 4);
process_verbosity_command(c, tokens, ntokens);
} else if (strcmp(tokens[COMMAND_TOKEN].value, "lru") == 0) {
WANT_TOKENS_MIN(ntokens, 3);
process_lru_command(c, tokens, ntokens);
#ifdef MEMCACHED_DEBUG
// commands which exist only for testing the memcached's security protection
} else if (strcmp(tokens[COMMAND_TOKEN].value, "misbehave") == 0) {
process_misbehave_command(c);
#endif
#ifdef EXTSTORE
} else if (strcmp(tokens[COMMAND_TOKEN].value, "extstore") == 0) {
WANT_TOKENS_MIN(ntokens, 3);
process_extstore_command(c, tokens, ntokens);
#endif
#ifdef TLS
} else if (strcmp(tokens[COMMAND_TOKEN].value, "refresh_certs") == 0) {
process_refresh_certs_command(c, tokens, ntokens);
#endif
} else {
if (strncmp(tokens[ntokens - 2].value, "HTTP/", 5) == 0) {
conn_set_state(c, conn_closing);
} else {
out_string(c, "ERROR");
}
}
return;
}
|