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
|
/* default_c99_handler.c - emulate SPE C99 library calls.
*
* Copyright (C) 2005 IBM Corp.
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License,
* or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
* License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this library; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <pthread.h>
#include <stdlib.h>
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <errno.h>
#include <linux/limits.h>
#include <bits/posix2_lim.h>
#include "default_c99_handler.h"
#include "handler_utils.h"
/* SPE C99 Handlers - Overview:
* This file implements handlers for SPE C99 library operations such
* as printf(3) using standard C library facilities that are available
* on the PPE.
*
* This approach optimizes for space over time. The local store footprint
* of the SPE C99 library is reduced by handling file and string operations
* on the PPE. This allows the programmer to reserve local store for high
* compute intensity software, while still providing functional interfaces.
*
* The major drawback of this approach is performance. Since I/O is not
* buffered on the SPE, application performance may suffer with repeated
* calls to putc(3), for instance. Applications requiring high performance
* buffered I/O should consider other solutions, such as NEWLIB.
*
* SPE-side Stubs:
* The SPE-side of this interface is most likely implemented with a set of
* assembly language stub routines. These are responsible for pushing SPE
* register parameters onto the stack per the SPE-ABI, and then for executing
* a stop-and-signal instruction with a reserved signal code
* (currently 0x2100/SPE_PROGRAM_LIBRARY_CALL).
* By convention, the next word following the stop-and-signal instruction
* will contain the C99 op-code along with a pointer to the beginning of
* the call stack frame.
*
* Variable argument library calls are converted side into equivilent va_list
* form, i.e. printf(3) becomes vprintf(3) and scanf(3) becomes vscanf(3). This * conversion takes place within the SPE stub routines.
*
* PPE-Side Handlers:
* The PPE application or library receives stop-and-signal notification
* from the OS. The default_c99_handler() routine is then called in order
* to parse the C99 op-code and branch to a specific C99 handler, such as
* default_c99_handler_vprintf().
*
* The C99 handlers use direct-mapped access to LS in order to fetch parameters
* from the stack frame, and to place return values (including errno) into the
* expected locations.
*/
#define SPE_C99_OP_SHIFT 24
#define SPE_C99_OP_MASK 0xff
#define SPE_C99_DATA_MASK 0xffffff
#define SPE_C99_OP(_v) (((_v) >> SPE_C99_OP_SHIFT) & SPE_C99_OP_MASK)
#define SPE_C99_DATA(_v) ((_v) & SPE_C99_DATA_MASK)
enum {
SPE_C99_UNUSED,
SPE_C99_CLEARERR,
SPE_C99_FCLOSE,
SPE_C99_FEOF,
SPE_C99_FERROR,
SPE_C99_FFLUSH,
SPE_C99_FGETC,
SPE_C99_FGETPOS,
SPE_C99_FGETS,
SPE_C99_FILENO,
SPE_C99_FOPEN,
SPE_C99_FPUTC,
SPE_C99_FPUTS,
SPE_C99_FREAD,
SPE_C99_FREOPEN,
SPE_C99_FSEEK,
SPE_C99_FSETPOS,
SPE_C99_FTELL,
SPE_C99_FWRITE,
SPE_C99_GETC,
SPE_C99_GETCHAR,
SPE_C99_GETS,
SPE_C99_PERROR,
SPE_C99_PUTC,
SPE_C99_PUTCHAR,
SPE_C99_PUTS,
SPE_C99_REMOVE,
SPE_C99_RENAME,
SPE_C99_REWIND,
SPE_C99_SETBUF,
SPE_C99_SETVBUF,
SPE_C99_SYSTEM,
SPE_C99_TMPFILE,
SPE_C99_TMPNAM,
SPE_C99_UNGETC,
SPE_C99_VFPRINTF,
SPE_C99_VFSCANF,
SPE_C99_VPRINTF,
SPE_C99_VSCANF,
SPE_C99_VSNPRINTF,
SPE_C99_VSPRINTF,
SPE_C99_VSSCANF,
SPE_C99_LAST_OPCODE,
};
#define SPE_C99_NR_OPCODES ((SPE_C99_LAST_OPCODE - SPE_C99_CLEARERR) + 1)
#define SPE_STDIN 1
#define SPE_STDOUT 2
#define SPE_STDERR 3
#define SPE_FOPEN_MAX (FOPEN_MAX+1)
#define SPE_FOPEN_MIN 4
#define SPE_STDIO_BUFSIZ 1024
/**
* spe_FILE_ptrs - an indexed array of 'FILE *', used by SPE C99 calls.
*
* A layer of indirection to report back indices rather than 'FILE *',
* so as to be type safe w/r/t the 64-bit PPC-ABI.
*
* The indices {0,1,2,3} are aliases to {NULL,stdin,stdout,stderr}.
*/
static pthread_mutex_t spe_c99_file_mutex = PTHREAD_MUTEX_INITIALIZER;
static int nr_spe_FILE_ptrs = 3;
static FILE *spe_FILE_ptrs[SPE_FOPEN_MAX] = {
NULL,
NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL,
};
typedef unsigned long long __va_elem;
/* Allocate stack space for vargs array. */
#define __VA_LIST_ALIGN 16UL
#define __VA_LIST_ALLOCA(_nr) \
(__va_elem *)(((unsigned long)alloca((_nr+1) * sizeof(__va_elem) + __VA_LIST_ALIGN) \
+ __VA_LIST_ALIGN - 1) & ~(__VA_LIST_ALIGN - 1))
#ifdef __powerpc64__
#define __VA_LIST_PUT(_vargs, _type, _a) \
((_type *) ((unsigned long) _vargs + sizeof(__va_elem) - sizeof(_type)))[0] = (_a); \
_vargs = (__va_elem *)_vargs + 1
#define __VA_TEMP_ALLOCA(_nr) (struct __va_temp *) alloca((_nr+1) * sizeof(struct __va_temp))
#else /* !__powerpc64__ */
#define __OFFSET(_type) (sizeof(_type)-1)
#define __MASK(_type) ~(__OFFSET(_type))
/* Align '_vargs' properly for '_type'. */
#define __VA_LIST_ALIGN_TO_TYPE(_vargs, _type) \
(((unsigned long) (_vargs) + __OFFSET(_type)) & __MASK(_type))
/* Put a value into the va_list pointed to by '_vargs'.
*/
#define __VA_LIST_PUT(_vargs, _type, _a) \
_vargs = (__va_elem *) __VA_LIST_ALIGN_TO_TYPE(_vargs, _type); \
((_type *) _vargs)[0] = (_a); \
_vargs = (__va_elem *)(((_type *) _vargs) + 1)
#define __VA_TEMP_ALLOCA(_nr) NULL /* unused */
#endif /* !__powerpc64__ */
#define GET_LS_VARG(_name) { \
memcpy(&(_name), GET_LS_PTR(spe_vlist->next_arg), sizeof(_name)); \
spe_vlist->next_arg += 16; \
if ((spe_vlist->next_arg & LS_ADDR_MASK) == \
(spe_vlist->caller_stack & LS_ADDR_MASK)) { \
spe_vlist->next_arg += 32; \
} \
}
/* SPE va_list structure,
* per SPU-ABI definition.
*/
struct spe_va_list {
unsigned int next_arg;
unsigned int pad0[3];
unsigned int caller_stack;
unsigned int pad1[3];
};
#if !defined(__powerpc64__)
/* PPC-32 va_list structure.
* When nr is greater than 8,
* called function takes parms
* from 'ptr'.
*/
struct __ppc32_va_list {
unsigned char nr_gpr;
unsigned char nr_fpr;
unsigned short reserved;
void *ptr;
};
#endif /* __powerpc64__ */
/* Temporary area to save long value or pointer on ppc64. */
struct __va_temp {
long long llval;
int *ptr;
};
static int __do_vfprintf(FILE * stream, char *format, __va_elem * vlist)
{
#if !defined(__powerpc64__)
struct __ppc32_va_list ap;
ap.nr_gpr = 127;
ap.nr_fpr = 127;
ap.ptr = (void *) vlist;
return vfprintf(stream, format, (void *) &ap);
#else
return vfprintf(stream, format, (void *) vlist);
#endif
}
static int __do_vsprintf(char *string, char *format, __va_elem * vlist)
{
#if !defined(__powerpc64__)
struct __ppc32_va_list ap;
ap.nr_gpr = 127;
ap.nr_fpr = 127;
ap.ptr = (void *) vlist;
return vsprintf(string, format, (void *) &ap);
#else
return vsprintf(string, format, (void *) vlist);
#endif
}
static int __do_vsnprintf(char *string, size_t size, char *format,
__va_elem * vlist)
{
#if !defined(__powerpc64__)
struct __ppc32_va_list ap;
ap.nr_gpr = 127;
ap.nr_fpr = 127;
ap.ptr = (void *) vlist;
return vsnprintf(string, size, format, (void *) &ap);
#else
return vsnprintf(string, size, format, (void *) vlist);
#endif
}
static int __do_vfscanf(FILE * stream, char *format, __va_elem * vlist)
{
#if !defined(__powerpc64__)
struct __ppc32_va_list ap;
ap.nr_gpr = 127;
ap.nr_fpr = 127;
ap.ptr = (void *) vlist;
return vfscanf(stream, format, (void *) &ap);
#else
return vfscanf(stream, format, (void *) vlist);
#endif
}
static int __do_vsscanf(char *string, char *format, __va_elem * vlist)
{
#if !defined(__powerpc64__)
struct __ppc32_va_list ap;
ap.nr_gpr = 127;
ap.nr_fpr = 127;
ap.ptr = (void *) vlist;
return vsscanf(string, format, (void *) &ap);
#else
return vsscanf(string, format, (void *) vlist);
#endif
}
#ifdef __powerpc64__
static void __copy_va_temp(struct __va_temp *vtemps)
{
while (vtemps->ptr) {
*vtemps->ptr = vtemps->llval;
vtemps++;
}
}
#else /* !__powerpc64__ */
#define __copy_va_temp(vtemps) /* do nothing */
#endif /* __powerpc64__ */
static inline FILE *get_FILE_nolock(int nr)
{
FILE *ret;
if (nr <= 0) {
ret = NULL;
} else if (nr >= SPE_FOPEN_MAX) {
ret = NULL;
} else {
switch (nr) {
case SPE_STDIN:
ret = (spe_FILE_ptrs[1]) ? spe_FILE_ptrs[1] : stdin;
break;
case SPE_STDOUT:
ret = (spe_FILE_ptrs[2]) ? spe_FILE_ptrs[2] : stdout;
break;
case SPE_STDERR:
ret = (spe_FILE_ptrs[3]) ? spe_FILE_ptrs[3] : stderr;
break;
default:
ret = spe_FILE_ptrs[nr];
break;
}
}
return ret;
}
static inline FILE *get_FILE(int nr)
{
FILE *ret;
pthread_mutex_lock(&spe_c99_file_mutex);
ret = get_FILE_nolock(nr);
pthread_mutex_unlock(&spe_c99_file_mutex);
return ret;
}
#define SKIP_PRECISION(p, pr) { \
pr = 0; \
if (*p == '.') { \
switch (*++p) { \
case '0': \
case '1': \
case '2': \
case '3': \
case '4': \
case '5': \
case '6': \
case '7': \
case '8': \
case '9': \
while (*p && isdigit(*p)) p++; \
break; \
case '*': \
GET_LS_VARG(pr); \
__VA_LIST_PUT(vlist, int, pr); \
p++; \
break; \
default: \
break; \
} \
} \
}
#define SKIP_FIELD_WIDTH(p, fw, output) { \
fw = 0; \
switch (*p) { \
case '0': \
case '1': \
case '2': \
case '3': \
case '4': \
case '5': \
case '6': \
case '7': \
case '8': \
case '9': \
while (*p && isdigit(*p)) p++; \
break; \
case '*': \
if (output) { \
GET_LS_VARG(fw); \
__VA_LIST_PUT(vlist, int, fw); \
} \
p++; \
break; \
default: \
break; \
} \
}
#define SKIP_PRINTF_FLAG_CHARS(p) { \
int done = 0; \
do { \
switch (*p) { \
case '#': \
case '0': \
case '-': \
case '+': \
case ' ': \
p++; \
break; \
default: \
done = 1; \
break; \
} \
} while (!done); \
}
#define SKIP_LENGTH_MODIFIERS(p, h, l) { \
int done = 0; \
h = 0; l = 0; \
do { \
switch (*p) { \
case 'h': \
h++; \
p++; \
break; \
case 'l': \
l++; \
p++; \
break; \
case 'j': \
l = 2; \
p++; \
break; \
case 'z': \
case 't': \
l = 1; \
p++; \
break; \
default: \
done = 1; \
break; \
} \
} while (!done); \
}
#define COUNT_FIELD_WIDTH(p, output) { \
switch (*p) { \
case '0': \
case '1': \
case '2': \
case '3': \
case '4': \
case '5': \
case '6': \
case '7': \
case '8': \
case '9': \
while (*p && isdigit(*p)) p++; \
break; \
case '*': \
p++; \
if (output) nr++; \
break; \
default: \
break; \
} \
}
#define COUNT_PRECISION(p, output) { \
if (*p == '.') { \
switch (*++p) { \
case '0': \
case '1': \
case '2': \
case '3': \
case '4': \
case '5': \
case '6': \
case '7': \
case '8': \
case '9': \
while (*p && isdigit(*p)) p++; \
break; \
case '*': \
if (output) nr++; \
p++; \
break; \
default: \
break; \
} \
} \
}
#define SKIP_SCANF_FLAG_CHARS(p, sp) { \
int done = 0; \
sp = 0; \
do { \
switch (*p) { \
case '*': \
sp = 1; \
p++; \
break; \
default: \
done = 1; \
break; \
} \
} while (!done); \
}
#define SKIP_CHAR_SET(p) \
{ \
p++; \
if (*p == '^') p++; \
if (*p == ']') p++; \
p = strchr(p, ']'); \
if (p == NULL) { \
DEBUG_PRINTF("SKIP_CHAR_SET() error."); \
return 1; \
} \
}
static int __nr_format_args(const char *format)
{
char *p;
int nr = 0;
for (p = (char *) format; *p; p++, nr++) {
p = strchr(p, '%');
if (!p) {
/* Done with formatting. */
break;
}
}
/* Loosely estimate of the number of format arguments
* by scanning for '%'. Multiply the return value by
* 3 in order to account for variable format width or
* precision.
*/
return nr * 3;
}
static int __parse_printf_format(char *ls, char *format,
struct spe_va_list *spe_vlist,
__va_elem * vlist, struct __va_temp *vtemps, int nr_vargs)
{
int fw, pr;
int format_half, format_long;
int ival;
double dval;
long long llval;
unsigned int ls_offset;
char *p;
void *ptr;
for (p = format; nr_vargs > 0 && *p; p++) {
p = strchr(p, '%');
if (!p) {
/* Done with formatting. */
break;
}
p++;
nr_vargs--;
SKIP_PRINTF_FLAG_CHARS(p);
SKIP_FIELD_WIDTH(p, fw, 1);
SKIP_PRECISION(p, pr);
SKIP_LENGTH_MODIFIERS(p, format_half, format_long);
switch (*p) {
case 'd':
case 'i':
case 'o':
case 'u':
case 'x':
case 'X':
if (format_long == 2) {
GET_LS_VARG(llval);
__VA_LIST_PUT(vlist, long long, llval);
break;
#ifdef __powerpc64__
} else if (format_long) {
GET_LS_VARG(ival);
switch (*p) {
case 'd':
case 'i':
__VA_LIST_PUT(vlist, long, (long)ival);
break;
default:
__VA_LIST_PUT(vlist, unsigned long,
(unsigned long)(unsigned int)ival);
break;
}
break;
#endif /* __powerpc64__*/
}
/* fall through */
case 'c':
GET_LS_VARG(ival);
__VA_LIST_PUT(vlist, int, ival);
break;
case 'a':
case 'A':
case 'e':
case 'E':
case 'f':
case 'F':
case 'g':
case 'G':
GET_LS_VARG(dval);
__VA_LIST_PUT(vlist, double, dval);
break;
case 'p':
GET_LS_VARG(ival);
__VA_LIST_PUT(vlist, unsigned long,
(unsigned long)(unsigned int)ival);
break;
case 's':
GET_LS_VARG(ls_offset);
ptr = GET_LS_PTR(ls_offset);
__VA_LIST_PUT(vlist, char *, ptr);
break;
case 'n':
GET_LS_VARG(ls_offset);
ptr = GET_LS_PTR(ls_offset);
#ifdef __powerpc64__
if (format_long == 1) {
vtemps->ptr = ptr;
__VA_LIST_PUT(vlist, long long *, &vtemps->llval);
vtemps++;
break;
}
#endif /* __powerpc64__ */
__VA_LIST_PUT(vlist, void *, ptr);
break;
default:
break;
}
}
#ifdef __powerpc64__
vtemps->ptr = NULL;
#endif /* __powerpc64__ */
return 0;
}
static int __parse_scanf_format(char *ls, char *format,
struct spe_va_list *spe_vlist,
__va_elem * vlist, struct __va_temp *vtemps, int nr_vargs)
{
int fw;
int format_half, format_long, suppress;
unsigned int ls_offset;
char *p;
void *ptr;
for (p = format; nr_vargs > 0 && *p; p++) {
p = strchr(p, '%');
if (!p) {
/* No more formatting. */
break;
}
p++;
nr_vargs--;
SKIP_SCANF_FLAG_CHARS(p, suppress);
SKIP_FIELD_WIDTH(p, fw, 0);
SKIP_LENGTH_MODIFIERS(p, format_half, format_long);
switch (*p) {
case 'd':
case 'i':
case 'o':
case 'u':
case 'x':
case 'X':
case 'n':
#ifdef __powerpc64__
if (format_long == 1) {
if (!suppress) {
GET_LS_VARG(ls_offset);
ptr = GET_LS_PTR(ls_offset);
vtemps->ptr = ptr;
__VA_LIST_PUT(vlist, long long *, &vtemps->llval);
vtemps++;
}
break;
}
#endif /* __powerpc64__ */
/* fall through */
case 'a':
case 'A':
case 'e':
case 'E':
case 'f':
case 'F':
case 'g':
case 'G':
case 'c':
case 's':
if (!suppress) {
GET_LS_VARG(ls_offset);
ptr = GET_LS_PTR(ls_offset);
__VA_LIST_PUT(vlist, void *, ptr);
}
break;
case 'p':
if (!suppress) {
#ifdef __powerpc64__
GET_LS_VARG(ls_offset);
ptr = GET_LS_PTR(ls_offset);
vtemps->ptr = ptr;
__VA_LIST_PUT(vlist, long long *, &vtemps->llval);
vtemps++;
#else /* !__powerpc64__ */
GET_LS_VARG(ls_offset);
ptr = GET_LS_PTR(ls_offset);
__VA_LIST_PUT(vlist, int *, ptr);
#endif /* !__powerpc64__ */
}
break;
case '[':
SKIP_CHAR_SET(p);
if (!suppress) {
GET_LS_VARG(ls_offset);
ptr = GET_LS_PTR(ls_offset);
__VA_LIST_PUT(vlist, char *, ptr);
}
break;
case '%':
break;
default:
break;
}
}
#ifdef __powerpc64__
vtemps->ptr = NULL;
#endif /* __powerpc64__ */
return 0;
}
/**
* default_c99_handler_remove
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* int remove(const char *pathname);
*/
static int default_c99_handler_remove(char *ls, unsigned long opdata)
{
DECL_1_ARGS();
DECL_RET();
char *path;
int rc;
DEBUG_PRINTF("%s\n", __func__);
path = GET_LS_PTR(arg0->slot[0]);
rc = remove(path);
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
/**
* default_c99_handler_rename
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* int rename(const char *oldname, const char *newname);
*/
static int default_c99_handler_rename(char *ls, unsigned long opdata)
{
DECL_2_ARGS();
DECL_RET();
char *oldname;
char *newname;
int rc;
DEBUG_PRINTF("%s\n", __func__);
oldname = GET_LS_PTR(arg0->slot[0]);
newname = GET_LS_PTR(arg1->slot[0]);
rc = rename(oldname, newname);
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
/**
* default_c99_handler_tmpfile
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* FILE *tmpfile(void);
*/
static int default_c99_handler_tmpfile(char *ls, unsigned long opdata)
{
DECL_0_ARGS();
DECL_RET();
int i;
DEBUG_PRINTF("%s\n", __func__);
if (nr_spe_FILE_ptrs >= SPE_FOPEN_MAX) {
PUT_LS_RC(0, 0, 0, EMFILE);
} else {
for (i = SPE_FOPEN_MIN; i < SPE_FOPEN_MAX; i++) {
if (spe_FILE_ptrs[i] == NULL) {
spe_FILE_ptrs[i] = tmpfile();
if (spe_FILE_ptrs[i])
nr_spe_FILE_ptrs++;
else
i = 0;
PUT_LS_RC(i, 0, 0, errno);
break;
}
}
if (i == SPE_FOPEN_MAX) {
PUT_LS_RC(0, 0, 0, EMFILE);
}
}
return 0;
}
/**
* default_c99_handler_tmpnam
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* char *tmpnam(char *s);
*
* For integrity reasons we return failure. We should expose
* mkstemp() instead.
*/
static int default_c99_handler_tmpnam(char *ls, unsigned long opdata)
{
DECL_0_ARGS();
DECL_RET();
DEBUG_PRINTF("%s\n", __func__);
PUT_LS_RC(0, 0, 0, 0);
return 0;
}
/**
* default_c99_handler_fclose
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* int fclose(FILE *stream);
*/
static int default_c99_handler_fclose(char *ls, unsigned long opdata)
{
DECL_1_ARGS();
DECL_RET();
FILE *stream;
int rc;
DEBUG_PRINTF("%s\n", __func__);
stream = get_FILE(arg0->slot[0]);
pthread_mutex_lock(&spe_c99_file_mutex);
rc = fclose(stream);
if (rc == 0) {
spe_FILE_ptrs[arg0->slot[0]] = NULL;
nr_spe_FILE_ptrs--;
}
pthread_mutex_unlock(&spe_c99_file_mutex);
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
/**
* default_c99_handler_fflush
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* int fflush(FILE *stream);
*/
static int default_c99_handler_fflush(char *ls, unsigned long opdata)
{
DECL_1_ARGS();
DECL_RET();
FILE *stream;
int rc;
DEBUG_PRINTF("%s\n", __func__);
stream = get_FILE(arg0->slot[0]);
rc = fflush(stream);
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
/**
* default_c99_handler_fopen
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* FILE *fopen(const char *path, const char *mode);
*/
static int default_c99_handler_fopen(char *ls, unsigned long opdata)
{
DECL_2_ARGS();
DECL_RET();
char *path;
char *mode;
FILE *f;
int i, rc = 0, err = EMFILE;
DEBUG_PRINTF("%s\n", __func__);
path = GET_LS_PTR(arg0->slot[0]);
mode = GET_LS_PTR(arg1->slot[0]);
pthread_mutex_lock(&spe_c99_file_mutex);
if (nr_spe_FILE_ptrs < SPE_FOPEN_MAX) {
for (i = SPE_FOPEN_MIN; i < SPE_FOPEN_MAX; i++) {
if (spe_FILE_ptrs[i] == NULL) {
f = fopen(path, mode);
err = errno;
if (f) {
spe_FILE_ptrs[i] = f;
nr_spe_FILE_ptrs++;
rc = i;
}
break;
}
}
}
pthread_mutex_unlock(&spe_c99_file_mutex);
PUT_LS_RC(rc, 0, 0, err);
return 0;
}
/**
* default_c99_handler_freopen
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* FILE *freopen(const char *path, const char *mode, FILE *stream);
*/
static int default_c99_handler_freopen(char *ls, unsigned long opdata)
{
DECL_3_ARGS();
DECL_RET();
char *path;
char *mode;
int i;
DEBUG_PRINTF("%s\n", __func__);
i = arg2->slot[0];
if ((i <= 0) || (i >= SPE_FOPEN_MAX)) {
PUT_LS_RC(1, 0, 0, EBADF);
} else {
path = GET_LS_PTR(arg0->slot[0]);
mode = GET_LS_PTR(arg1->slot[0]);
pthread_mutex_lock(&spe_c99_file_mutex);
spe_FILE_ptrs[i] = freopen(path, mode, get_FILE_nolock(i));
if (spe_FILE_ptrs[i]) {
PUT_LS_RC(i, 0, 0, 0);
} else {
PUT_LS_RC(0, 0, 0, errno);
}
pthread_mutex_unlock(&spe_c99_file_mutex);
}
return 0;
}
/**
* default_c99_handler_setbuf
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* void setbuf(FILE *stream, char *buf);
*/
static int default_c99_handler_setbuf(char *ls, unsigned long opdata)
{
DECL_2_ARGS();
FILE *stream;
char *buf;
DEBUG_PRINTF("%s\n", __func__);
stream = get_FILE(arg0->slot[0]);
buf = GET_LS_PTR_NULL(arg1->slot[0]);
setvbuf(stream, buf, buf ? _IOFBF : _IONBF, SPE_STDIO_BUFSIZ);
return 0;
}
/**
* default_c99_handler_setvbuf
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* int setvbuf(FILE *stream, char *buf, int mode , size_t size);
*/
static int default_c99_handler_setvbuf(char *ls, unsigned long opdata)
{
DECL_4_ARGS();
DECL_RET();
FILE *stream;
char *buf;
int mode;
size_t size;
int rc;
DEBUG_PRINTF("%s\n", __func__);
stream = get_FILE(arg0->slot[0]);
buf = GET_LS_PTR_NULL(arg1->slot[0]);
mode = arg2->slot[0];
size = arg3->slot[0];
rc = setvbuf(stream, buf, mode, size);
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
/**
* default_c99_handler_vfprintf
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* int vfprintf(FILE *stream, const char *format, va_list ap);
*/
static int default_c99_handler_vfprintf(char *ls, unsigned long opdata)
{
DECL_3_ARGS();
DECL_RET();
FILE *stream;
char *format;
int rc, nr_vargs;
struct spe_va_list spe_vlist;
__va_elem *vlist;
struct __va_temp *vtemps; /* for %n in 64-bit PPC-ABI */
DEBUG_PRINTF("%s\n", __func__);
stream = get_FILE(arg0->slot[0]);
format = GET_LS_PTR(arg1->slot[0]);
memcpy(&spe_vlist, arg2, sizeof(struct spe_va_list));
nr_vargs = __nr_format_args(format);
vlist = __VA_LIST_ALLOCA(nr_vargs);
vtemps = __VA_TEMP_ALLOCA(nr_vargs);
rc = __parse_printf_format(ls, format, &spe_vlist, vlist, vtemps, nr_vargs);
if (rc == 0) {
rc = __do_vfprintf(stream, format, vlist);
__copy_va_temp(vtemps);
}
else {
rc = -1;
}
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
/**
* default_c99_handler_vfscanf
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* int vfscanf(FILE *stream, const char *format, va_list ap);
*/
static int default_c99_handler_vfscanf(char *ls, unsigned long opdata)
{
DECL_3_ARGS();
DECL_RET();
FILE *stream;
char *format;
int rc, nr_vargs;
struct spe_va_list spe_vlist;
__va_elem *vlist;
struct __va_temp *vtemps;
DEBUG_PRINTF("%s\n", __func__);
stream = get_FILE(arg0->slot[0]);
format = GET_LS_PTR(arg1->slot[0]);
memcpy(&spe_vlist, arg2, sizeof(struct spe_va_list));
nr_vargs = __nr_format_args(format);
vlist = __VA_LIST_ALLOCA(nr_vargs);
vtemps = __VA_TEMP_ALLOCA(nr_vargs);
rc = __parse_scanf_format(ls, format, &spe_vlist, vlist, vtemps, nr_vargs);
if (rc == 0) {
rc = __do_vfscanf(stream, format, vlist);
__copy_va_temp(vtemps);
}
else {
rc = EOF;
}
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
/**
* default_c99_handler_vprintf
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* int vprintf(const char *format, va_list ap);
*/
static int default_c99_handler_vprintf(char *ls, unsigned long opdata)
{
DECL_2_ARGS();
DECL_RET();
FILE *stream;
char *format;
int rc, nr_vargs;
struct spe_va_list spe_vlist;
__va_elem *vlist;
struct __va_temp *vtemps; /* for %n in 64-bit PPC-ABI */
DEBUG_PRINTF("%s\n", __func__);
stream = get_FILE(SPE_STDOUT);
format = GET_LS_PTR(arg0->slot[0]);
memcpy(&spe_vlist, arg1, sizeof(struct spe_va_list));
nr_vargs = __nr_format_args(format);
vlist = __VA_LIST_ALLOCA(nr_vargs);
vtemps = __VA_TEMP_ALLOCA(nr_vargs);
rc = __parse_printf_format(ls, format, &spe_vlist, vlist, vtemps, nr_vargs);
if (rc == 0) {
rc = __do_vfprintf(stream, format, vlist);
__copy_va_temp(vtemps);
}
else {
rc = -1;
}
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
/**
* default_c99_handler_vscanf
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* int vscanf(const char *format, va_list ap);
*/
static int default_c99_handler_vscanf(char *ls, unsigned long opdata)
{
DECL_2_ARGS();
DECL_RET();
FILE *stream;
char *format;
int rc, nr_vargs;
struct spe_va_list spe_vlist;
__va_elem *vlist;
struct __va_temp *vtemps;
DEBUG_PRINTF("%s\n", __func__);
stream = get_FILE(SPE_STDIN);
format = GET_LS_PTR(arg0->slot[0]);
memcpy(&spe_vlist, arg1, sizeof(struct spe_va_list));
nr_vargs = __nr_format_args(format);
vlist = __VA_LIST_ALLOCA(nr_vargs);
vtemps = __VA_TEMP_ALLOCA(nr_vargs);
rc = __parse_scanf_format(ls, format, &spe_vlist, vlist, vtemps, nr_vargs);
if (rc == 0) {
rc = __do_vfscanf(stream, format, vlist);
__copy_va_temp(vtemps);
}
else {
rc = EOF;
}
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
/**
* default_c99_handler_vsnprintf
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* int vsnprintf(char *str, size_t size, const char *format, va_list ap);
*/
static int default_c99_handler_vsnprintf(char *ls, unsigned long opdata)
{
DECL_4_ARGS();
DECL_RET();
char *str;
char *format;
size_t size;
int rc, nr_vargs;
struct spe_va_list spe_vlist;
__va_elem *vlist;
struct __va_temp *vtemps; /* for %n in 64-bit PPC-ABI */
DEBUG_PRINTF("%s\n", __func__);
str = GET_LS_PTR(arg0->slot[0]);
size = arg1->slot[0];
format = GET_LS_PTR(arg2->slot[0]);
memcpy(&spe_vlist, arg3, sizeof(struct spe_va_list));
nr_vargs = __nr_format_args(format);
vlist = __VA_LIST_ALLOCA(nr_vargs);
vtemps = __VA_TEMP_ALLOCA(nr_vargs);
rc = __parse_printf_format(ls, format, &spe_vlist, vlist, vtemps, nr_vargs);
if (rc == 0) {
rc = __do_vsnprintf(str, size, format, vlist);
__copy_va_temp(vtemps);
}
else {
rc = -1;
}
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
/**
* default_c99_handler_vsprintf
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* int vsprintf(char *str, const char *format, va_list ap);
*/
static int default_c99_handler_vsprintf(char *ls, unsigned long opdata)
{
DECL_3_ARGS();
DECL_RET();
char *str;
char *format;
int rc, nr_vargs;
struct spe_va_list spe_vlist;
__va_elem *vlist;
struct __va_temp *vtemps; /* for %n in 64-bit PPC-ABI */
DEBUG_PRINTF("%s\n", __func__);
str = GET_LS_PTR(arg0->slot[0]);
format = GET_LS_PTR(arg1->slot[0]);
memcpy(&spe_vlist, arg2, sizeof(struct spe_va_list));
nr_vargs = __nr_format_args(format);
vlist = __VA_LIST_ALLOCA(nr_vargs);
vtemps = __VA_TEMP_ALLOCA(nr_vargs);
rc = __parse_printf_format(ls, format, &spe_vlist, vlist, vtemps, nr_vargs);
if (rc == 0) {
rc = __do_vsprintf(str, format, vlist);
__copy_va_temp(vtemps);
}
else {
rc = -1;
}
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
/**
* default_c99_handler_vsscanf
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* int vsscanf(const char *str, const char *format, va_list ap);
*/
static int default_c99_handler_vsscanf(char *ls, unsigned long opdata)
{
DECL_3_ARGS();
DECL_RET();
char *str;
char *format;
int rc, nr_vargs;
struct spe_va_list spe_vlist;
__va_elem *vlist;
struct __va_temp *vtemps;
DEBUG_PRINTF("%s\n", __func__);
str = GET_LS_PTR(arg0->slot[0]);
format = GET_LS_PTR(arg1->slot[0]);
memcpy(&spe_vlist, arg2, sizeof(struct spe_va_list));
nr_vargs = __nr_format_args(format);
vlist = __VA_LIST_ALLOCA(nr_vargs);
vtemps = __VA_TEMP_ALLOCA(nr_vargs);
rc = __parse_scanf_format(ls, format, &spe_vlist, vlist, vtemps, nr_vargs);
if (rc == 0) {
rc = __do_vsscanf(str, format, vlist);
__copy_va_temp(vtemps);
}
else {
rc = EOF;
}
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
/**
* default_c99_handler_fgetc
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* int fgetc(FILE *stream);
*/
static int default_c99_handler_fgetc(char *ls, unsigned long opdata)
{
DECL_1_ARGS();
DECL_RET();
FILE *stream;
int rc;
DEBUG_PRINTF("%s\n", __func__);
stream = get_FILE(arg0->slot[0]);
rc = fgetc(stream);
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
/**
* default_c99_handler_fgets
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* char *fgets(char *s, int size, FILE *stream);
*/
static int default_c99_handler_fgets(char *ls, unsigned long opdata)
{
DECL_3_ARGS();
DECL_RET();
char *s;
FILE *stream;
int size;
int rc;
DEBUG_PRINTF("%s\n", __func__);
s = GET_LS_PTR(arg0->slot[0]);
size = arg1->slot[0];
stream = get_FILE(arg2->slot[0]);
rc = (fgets(s, size, stream) == s) ? arg0->slot[0] : 0;
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
/**
* default_c99_handler_fileno
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE library operation, implementing:
*
* int fileno(FILE *stream);
*/
static int default_c99_handler_fileno(char *ls, unsigned long opdata)
{
DECL_1_ARGS();
DECL_RET();
FILE *stream;
int rc;
DEBUG_PRINTF("%s\n", __func__);
stream = get_FILE(arg0->slot[0]);
rc = fileno(stream);
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
/**
* default_c99_handler_fputc
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* int fputc(int c, FILE *stream);
*/
static int default_c99_handler_fputc(char *ls, unsigned long opdata)
{
DECL_2_ARGS();
DECL_RET();
FILE *stream;
int c;
int rc;
DEBUG_PRINTF("%s\n", __func__);
c = arg0->slot[0];
stream = get_FILE(arg1->slot[0]);
rc = fputc(c, stream);
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
/**
* default_c99_handler_fputs
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* int fputs(const char *s, FILE *stream);
*/
static int default_c99_handler_fputs(char *ls, unsigned long opdata)
{
DECL_2_ARGS();
DECL_RET();
char *s;
FILE *stream;
int rc;
DEBUG_PRINTF("%s\n", __func__);
s = GET_LS_PTR(arg0->slot[0]);
stream = get_FILE(arg1->slot[0]);
rc = fputs(s, stream);
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
/**
* default_c99_handler_getc
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* int getc(FILE *stream);
*/
static int default_c99_handler_getc(char *ls, unsigned long opdata)
{
DECL_1_ARGS();
DECL_RET();
FILE *stream;
int rc;
DEBUG_PRINTF("%s\n", __func__);
stream = get_FILE(arg0->slot[0]);
rc = getc(stream);
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
/**
* default_c99_handler_getchar
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* int getchar(void);
*/
static int default_c99_handler_getchar(char *ls, unsigned long opdata)
{
DECL_0_ARGS();
DECL_RET();
FILE *stream;
int rc;
DEBUG_PRINTF("%s\n", __func__);
stream = get_FILE(SPE_STDIN);
rc = getc(stream);
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
/**
* default_c99_handler_gets
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* char *gets(char *s);
*
* Implementation note: gets() is a classic security/integrity
* hole, since its impossible to tell how many characters will
* be input.
*/
static int default_c99_handler_gets(char *ls, unsigned long opdata)
{
DECL_1_ARGS();
DECL_RET();
FILE *stream;
char *s, *r;
int rc;
int size;
DEBUG_PRINTF("%s\n", __func__);
stream = get_FILE(SPE_STDIN);
s = GET_LS_PTR(arg0->slot[0]);
size = LS_SIZE - arg0->slot[0];
r = fgets(s, size, stream);
rc = (r == s) ? arg0->slot[0] : 0;
if (r == s) { /* remove trailing linefeed character. */
char *p = s + strlen(s);
if (p > s && p[-1] == '\n') p[-1] = '\0';
}
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
/**
* default_c99_handler_putc
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* int putc(int c, FILE *stream);
*/
static int default_c99_handler_putc(char *ls, unsigned long opdata)
{
DECL_2_ARGS();
DECL_RET();
FILE *f;
int rc;
DEBUG_PRINTF("%s\n", __func__);
f = get_FILE(arg1->slot[0]);
rc = putc(arg0->slot[0], f);
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
/**
* default_c99_handler_putchar
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* int putchar(int c);
*/
static int default_c99_handler_putchar(char *ls, unsigned long opdata)
{
DECL_1_ARGS();
DECL_RET();
FILE *stream;
int rc;
DEBUG_PRINTF("%s\n", __func__);
stream = get_FILE(SPE_STDOUT);
rc = putc(arg0->slot[0], stream);
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
/**
* default_c99_handler_puts
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* int puts(const char *s);
*/
static int default_c99_handler_puts(char *ls, unsigned long opdata)
{
DECL_1_ARGS();
DECL_RET();
char *s;
int rc;
DEBUG_PRINTF("%s\n", __func__);
s = GET_LS_PTR(arg0->slot[0]);
rc = puts(s);
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
/**
* default_c99_handler_ungetc
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* int ungetc(int c, FILE *stream);
*/
static int default_c99_handler_ungetc(char *ls, unsigned long opdata)
{
DECL_2_ARGS();
DECL_RET();
FILE *stream;
int rc, c;
DEBUG_PRINTF("%s\n", __func__);
c = arg0->slot[0];
stream = get_FILE(arg1->slot[0]);
rc = ungetc(c, stream);
PUT_LS_RC(rc, 0, 0, 0);
return 0;
}
/**
* default_c99_handler_fread
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* size_t fread(void *ptr, size_t size, size_t nmemb, FILE *stream);
*/
static int default_c99_handler_fread(char *ls, unsigned long opdata)
{
DECL_4_ARGS();
DECL_RET();
void *ptr;
size_t size, nmemb;
FILE *stream;
int rc = 0;
DEBUG_PRINTF("%s\n", __func__);
ptr = GET_LS_PTR(arg0->slot[0]);
size = arg1->slot[0];
nmemb = arg2->slot[0];
stream = get_FILE(arg3->slot[0]);
rc = fread(ptr, size, nmemb, stream);
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
/**
* default_c99_handler_fwrite
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* size_t fwrite(const void *ptr, size_t size, size_t nmemb, FILE *stream);
*/
static int default_c99_handler_fwrite(char *ls, unsigned long opdata)
{
DECL_4_ARGS();
DECL_RET();
void *ptr;
size_t size, nmemb;
FILE *stream;
int rc;
DEBUG_PRINTF("%s\n", __func__);
ptr = GET_LS_PTR(arg0->slot[0]);
size = arg1->slot[0];
nmemb = arg2->slot[0];
stream = get_FILE(arg3->slot[0]);
rc = fwrite(ptr, size, nmemb, stream);
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
/**
* default_c99_handler_fgetpos
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* int fgetpos(FILE *stream, fpos_t *pos);
*/
static int default_c99_handler_fgetpos(char *ls, unsigned long opdata)
{
DECL_2_ARGS();
DECL_RET();
FILE *stream;
fpos_t *pos;
int rc;
DEBUG_PRINTF("%s\n", __func__);
stream = get_FILE(arg0->slot[0]);
pos = (fpos_t *) GET_LS_PTR(arg1->slot[0]);
rc = fgetpos(stream, pos);
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
/**
* default_c99_handler_fseek
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* int fseek(FILE *stream, long offset, int whence);
*/
static int default_c99_handler_fseek(char *ls, unsigned long opdata)
{
DECL_3_ARGS();
DECL_RET();
FILE *stream;
long offset;
int whence;
int rc;
DEBUG_PRINTF("%s\n", __func__);
stream = get_FILE(arg0->slot[0]);
offset = (long) arg1->slot[0];
whence = arg2->slot[0];
rc = fseek(stream, offset, whence);
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
/**
* default_c99_handler_fsetpos
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* int fsetpos(FILE *stream, fpos_t *pos);
*/
static int default_c99_handler_fsetpos(char *ls, unsigned long opdata)
{
DECL_2_ARGS();
DECL_RET();
FILE *stream;
fpos_t *pos;
int rc;
DEBUG_PRINTF("%s\n", __func__);
stream = get_FILE(arg0->slot[0]);
pos = (fpos_t *) GET_LS_PTR(arg1->slot[0]);
rc = fsetpos(stream, pos);
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
/**
* default_c99_handler_ftell
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* long ftell(FILE *stream);
*/
static int default_c99_handler_ftell(char *ls, unsigned long opdata)
{
DECL_1_ARGS();
DECL_RET();
FILE *stream;
int rc;
DEBUG_PRINTF("%s\n", __func__);
stream = get_FILE(arg0->slot[0]);
rc = ftell(stream);
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
/**
* default_c99_handler_rewind
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* void rewind(FILE *stream);
*/
static int default_c99_handler_rewind(char *ls, unsigned long opdata)
{
DECL_1_ARGS();
FILE *stream;
DEBUG_PRINTF("%s\n", __func__);
stream = get_FILE(arg0->slot[0]);
rewind(stream);
return 0;
}
/**
* default_c99_handler_clearerr
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* void clearerr(FILE *stream);
*/
static int default_c99_handler_clearerr(char *ls, unsigned long opdata)
{
DECL_1_ARGS();
FILE *stream;
DEBUG_PRINTF("%s\n", __func__);
stream = get_FILE(arg0->slot[0]);
clearerr(stream);
return 0;
}
/**
* default_c99_handler_feof
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* int feof(FILE *stream);
*/
static int default_c99_handler_feof(char *ls, unsigned long opdata)
{
DECL_1_ARGS();
DECL_RET();
FILE *stream;
int rc;
DEBUG_PRINTF("%s\n", __func__);
stream = get_FILE(arg0->slot[0]);
rc = feof(stream);
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
/**
* default_c99_handler_ferror
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* void ferror(FILE *stream);
*/
static int default_c99_handler_ferror(char *ls, unsigned long opdata)
{
DECL_1_ARGS();
DECL_RET();
FILE *stream;
int rc;
DEBUG_PRINTF("%s\n", __func__);
stream = get_FILE(arg0->slot[0]);
rc = ferror(stream);
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
/**
* default_c99_handler_perror
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data, plus the value of errno on the SPU
* must be passed.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* void perror(const char *s);
*/
static int default_c99_handler_perror(char *ls, unsigned long opdata)
{
DECL_2_ARGS();
char *s;
DEBUG_PRINTF("%s\n", __func__);
s = GET_LS_PTR_NULL(arg0->slot[0]);
errno = arg1->slot[0];
/*
* Older versions did not pass errno, so using older SPU newlib with
* current libspe will likely give ouput like "Unknown error 262016".
*/
perror(s);
return 0;
}
/**
* default_c99_handler_system
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* SPE C99 library operation, per: ISO/IEC C Standard 9899:1999,
* implementing:
*
* int system(const char *string);
*/
static int default_c99_handler_system(char *ls, unsigned long opdata)
{
DECL_1_ARGS();
DECL_RET();
char *string;
int rc;
DEBUG_PRINTF("%s\n", __func__);
string = GET_LS_PTR(arg0->slot[0]);
rc = system(string);
PUT_LS_RC(rc, 0, 0, errno);
return 0;
}
static int (*default_c99_funcs[SPE_C99_NR_OPCODES]) (char *, unsigned long) = {
[SPE_C99_UNUSED] = NULL,
[SPE_C99_CLEARERR] = default_c99_handler_clearerr,
[SPE_C99_FCLOSE] = default_c99_handler_fclose,
[SPE_C99_FEOF] = default_c99_handler_feof,
[SPE_C99_FERROR] = default_c99_handler_ferror,
[SPE_C99_FFLUSH] = default_c99_handler_fflush,
[SPE_C99_FGETC] = default_c99_handler_fgetc,
[SPE_C99_FGETPOS] = default_c99_handler_fgetpos,
[SPE_C99_FGETS] = default_c99_handler_fgets,
[SPE_C99_FILENO] = default_c99_handler_fileno,
[SPE_C99_FOPEN] = default_c99_handler_fopen,
[SPE_C99_FPUTC] = default_c99_handler_fputc,
[SPE_C99_FPUTS] = default_c99_handler_fputs,
[SPE_C99_FREAD] = default_c99_handler_fread,
[SPE_C99_FREOPEN] = default_c99_handler_freopen,
[SPE_C99_FSEEK] = default_c99_handler_fseek,
[SPE_C99_FSETPOS] = default_c99_handler_fsetpos,
[SPE_C99_FTELL] = default_c99_handler_ftell,
[SPE_C99_FWRITE] = default_c99_handler_fwrite,
[SPE_C99_GETC] = default_c99_handler_getc,
[SPE_C99_GETCHAR] = default_c99_handler_getchar,
[SPE_C99_GETS] = default_c99_handler_gets,
[SPE_C99_PERROR] = default_c99_handler_perror,
[SPE_C99_PUTC] = default_c99_handler_putc,
[SPE_C99_PUTCHAR] = default_c99_handler_putchar,
[SPE_C99_PUTS] = default_c99_handler_puts,
[SPE_C99_REMOVE] = default_c99_handler_remove,
[SPE_C99_RENAME] = default_c99_handler_rename,
[SPE_C99_REWIND] = default_c99_handler_rewind,
[SPE_C99_SETBUF] = default_c99_handler_setbuf,
[SPE_C99_SETVBUF] = default_c99_handler_setvbuf,
[SPE_C99_SYSTEM] = default_c99_handler_system,
[SPE_C99_TMPFILE] = default_c99_handler_tmpfile,
[SPE_C99_TMPNAM] = default_c99_handler_tmpnam,
[SPE_C99_UNGETC] = default_c99_handler_ungetc,
[SPE_C99_VFPRINTF] = default_c99_handler_vfprintf,
[SPE_C99_VFSCANF] = default_c99_handler_vfscanf,
[SPE_C99_VPRINTF] = default_c99_handler_vprintf,
[SPE_C99_VSCANF] = default_c99_handler_vscanf,
[SPE_C99_VSNPRINTF] = default_c99_handler_vsnprintf,
[SPE_C99_VSPRINTF] = default_c99_handler_vsprintf,
[SPE_C99_VSSCANF] = default_c99_handler_vsscanf,
};
/**
* default_c99_handler
* @ls: base pointer to SPE local-store area.
* @opdata: per C99 call opcode & data.
*
* Top-level dispatch for SPE C99 library operations.
*/
int _base_spe_default_c99_handler(unsigned long *base, unsigned long offset)
{
int op, opdata;
if (!base) {
DEBUG_PRINTF("%s: mmap LS required.\n", __func__);
return 1;
}
offset = (offset & LS_ADDR_MASK) & ~0x1;
opdata = *((int *)((char *) base + offset));
op = SPE_C99_OP(opdata);
if ((op <= 0) || (op >= SPE_C99_NR_OPCODES)) {
DEBUG_PRINTF("%s: Unhandled type %08x\n", __func__,
SPE_C99_OP(opdata));
return 1;
}
default_c99_funcs[op] ((char *) base, opdata);
return 0;
}
|