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
|
/* $OpenBSD: shf.c,v 1.16 2013/04/19 17:36:09 millert Exp $ */
/*-
* Copyright (c) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011,
* 2012, 2013, 2015, 2016, 2017, 2018, 2019, 2021,
* 2022, 2023
* mirabilos <m@mirbsd.org>
* Copyright (c) 2015
* Daniel Richard G. <skunk@iSKUNK.ORG>
*
* Provided that these terms and disclaimer and all copyright notices
* are retained or reproduced in an accompanying document, permission
* is granted to deal in this work without restriction, including un-
* limited rights to use, publicly perform, distribute, sell, modify,
* merge, give away, or sublicence.
*
* This work is provided "AS IS" and WITHOUT WARRANTY of any kind, to
* the utmost extent permitted by applicable law, neither express nor
* implied; without malicious intent or gross negligence. In no event
* may a licensor, author or contributor be held liable for indirect,
* direct, other damage, loss, or other issues arising in any way out
* of dealing in the work, even if advised of the possibility of such
* damage or existence of a defect, except proven that it results out
* of said person's immediate fault when using the work as intended.
*-
* Use %zX instead of %p and floating point isn't supported at all.
*/
#include "sh.h"
__RCSID("$MirOS: src/bin/mksh/shf.c,v 1.134 2023/03/19 23:31:29 tg Exp $");
/* flags to shf_emptybuf() */
#define EB_READSW 0x01 /* about to switch to reading */
#define EB_GROW 0x02 /* grow buffer if necessary (STRING+DYNAMIC) */
/*
* Replacement stdio routines. Stdio is too flakey on too many machines
* to be useful when you have multiple processes using the same underlying
* file descriptors.
*/
static int shf_fillbuf(struct shf *);
static int shf_emptybuf(struct shf *, int);
/*
* Open a file. First three args are for open(), last arg is flags for
* this package. Returns NULL if file could not be opened, or if a dup
* fails.
*/
struct shf *
shf_open(const char *name, int oflags, int mode, int sflags)
{
struct shf *shf;
ssize_t bsize =
/* at most 512 */
sflags & SHF_UNBUF ? (sflags & SHF_RD ? 1 : 0) : SHF_BSIZE;
int fd, eno;
/* Done before open so if alloca fails, fd won't be lost. */
shf = alloc1(sizeof(struct shf), bsize, ATEMP);
shf->areap = ATEMP;
shf->buf = (unsigned char *)&shf[1];
shf->bsize = bsize;
shf->flags = SHF_ALLOCS;
/* Rest filled in by reopen. */
fd = binopen3(name, oflags, mode);
if (fd < 0) {
eno = errno;
afree(shf, shf->areap);
errno = eno;
return (NULL);
}
if ((sflags & SHF_MAPHI) && fd < FDBASE) {
int nfd;
nfd = fcntl(fd, F_DUPFD, FDBASE);
eno = errno;
close(fd);
if (nfd < 0) {
afree(shf, shf->areap);
errno = eno;
return (NULL);
}
fd = nfd;
}
sflags &= ~SHF_ACCMODE;
sflags |= (oflags & O_ACCMODE) == O_RDONLY ? SHF_RD :
((oflags & O_ACCMODE) == O_WRONLY ? SHF_WR : SHF_RDWR);
return (shf_reopen(fd, sflags, shf));
}
/* helper function for shf_fdopen and shf_reopen */
/* pre-initio() *sflagsp=SHF_WR */
static void
shf_open_hlp(int fd, int *sflagsp, const char *where)
{
int sflags = *sflagsp;
/* use fcntl() to figure out correct read/write flags */
if (sflags & SHF_GETFL) {
int flags = fcntl(fd, F_GETFL, 0);
if (flags < 0)
/* will get an error on first read/write */
sflags |= SHF_RDWR;
else {
switch (flags & O_ACCMODE) {
case O_RDONLY:
sflags |= SHF_RD;
break;
case O_WRONLY:
sflags |= SHF_WR;
break;
case O_RDWR:
sflags |= SHF_RDWR;
break;
}
}
*sflagsp = sflags;
}
if (!(sflags & (SHF_RD | SHF_WR)))
kerrf0(KWF_INTERNAL | KWF_ERR(0xFF) | KWF_NOERRNO,
Tbad_flags, where, sflags);
}
/* Set up the shf structure for a file descriptor. Doesn't fail. */
/* pre-initio() sflags=SHF_WR */
struct shf *
shf_fdopen(int fd, int sflags, struct shf *shf)
{
ssize_t bsize =
/* at most 512 */
(sflags & SHF_UNBUF) ? ((sflags & SHF_RD) ? 1 : 0) : SHF_BSIZE;
shf_open_hlp(fd, &sflags, "shf_fdopen");
if (shf) {
if (bsize) {
shf->buf = alloc(bsize, ATEMP);
sflags |= SHF_ALLOCB;
} else
shf->buf = NULL;
} else {
unsigned char *cp;
cp = alloc1(sizeof(struct shf), bsize, ATEMP);
shf = (void *)cp;
shf->buf = cp + sizeof(struct shf);
sflags |= SHF_ALLOCS;
}
shf->areap = ATEMP;
shf->fd = fd;
shf->rp = shf->wp = shf->buf;
shf->rnleft = 0;
shf->rbsize = bsize;
shf->wnleft = 0; /* force call to shf_emptybuf() */
shf->wbsize = sflags & SHF_UNBUF ? 0 : bsize;
shf->flags = sflags;
shf->errnosv = 0;
shf->bsize = bsize;
if ((sflags & SHF_CLEXEC) && fcntl(fd, F_SETFD, FD_CLOEXEC) == -1)
kwarnf0(KWF_INTERNAL | KWF_WARNING, Tcloexec_failed, "set", fd);
return (shf);
}
/* Set up an existing shf (and buffer) to use the given fd */
struct shf *
shf_reopen(int fd, int sflags, struct shf *shf)
{
ssize_t bsize =
/* at most 512 */
sflags & SHF_UNBUF ? (sflags & SHF_RD ? 1 : 0) : SHF_BSIZE;
shf_open_hlp(fd, &sflags, "shf_reopen");
if (!shf->buf || shf->bsize < bsize)
kerrf0(KWF_INTERNAL | KWF_ERR(0xFF) | KWF_NOERRNO,
Tbad_buf, "shf_reopen", (size_t)shf->buf, shf->bsize);
/* assumes shf->buf and shf->bsize already set up */
shf->fd = fd;
shf->rp = shf->wp = shf->buf;
shf->rnleft = 0;
shf->rbsize = bsize;
shf->wnleft = 0; /* force call to shf_emptybuf() */
shf->wbsize = sflags & SHF_UNBUF ? 0 : bsize;
shf->flags = (shf->flags & (SHF_ALLOCS | SHF_ALLOCB)) | sflags;
shf->errnosv = 0;
if ((sflags & SHF_CLEXEC) && fcntl(fd, F_SETFD, FD_CLOEXEC) == -1)
kwarnf0(KWF_INTERNAL | KWF_WARNING, Tcloexec_failed, "set", fd);
return (shf);
}
/*
* Open a string for reading or writing. If reading, bsize is the number
* of bytes that can be read. If writing, bsize is the maximum number of
* bytes that can be written. If shf is not NULL, it is filled in and
* returned, if it is NULL, shf is allocated. If writing and buf is NULL
* and SHF_DYNAMIC is set, the buffer is allocated (if bsize > 0, it is
* used for the initial size). Doesn't fail.
* When writing, a byte is reserved for a trailing NUL - see shf_sclose().
*/
struct shf *
shf_sopen(char *buf, ssize_t bsize, int sflags, struct shf *shf)
{
if (!((sflags & SHF_RD) ^ (sflags & SHF_WR)))
kerrf0(KWF_INTERNAL | KWF_ERR(0xFF) | KWF_NOERRNO,
Tbad_flags, "shf_sopen", sflags);
if (!shf) {
shf = alloc(sizeof(struct shf), ATEMP);
sflags |= SHF_ALLOCS;
}
shf->areap = ATEMP;
if (!buf && (sflags & SHF_WR) && (sflags & SHF_DYNAMIC)) {
if (bsize <= 0)
bsize = 64;
sflags |= SHF_ALLOCB;
buf = alloc(bsize, shf->areap);
}
shf->fd = -1;
shf->buf = shf->rp = shf->wp = (unsigned char *)buf;
shf->rnleft = bsize;
shf->rbsize = bsize;
shf->wnleft = bsize - 1; /* space for a '\0' */
shf->wbsize = bsize;
shf->flags = sflags | SHF_STRING;
shf->errnosv = 0;
shf->bsize = bsize;
return (shf);
}
/* Open a string for dynamic writing, using already-allocated buffer */
struct shf *
shf_sreopen(char *buf, ssize_t bsize, Area *ap, struct shf *oshf)
{
struct shf *shf;
shf = shf_sopen(buf, bsize, SHF_WR | SHF_DYNAMIC, oshf);
shf->areap = ap;
shf->flags |= SHF_ALLOCB;
return (shf);
}
/* Check whether the string can grow to take n bytes, close it up otherwise */
int
shf_scheck_grow(ssize_t n, struct shf *shf)
{
if (!(shf->flags & SHF_WR))
kerrf0(KWF_INTERNAL | KWF_ERR(0xFF) | KWF_NOERRNO,
Tbad_flags, "shf_scheck", shf->flags);
/* if n < 0 we lose in the macro already */
/* nōn-string can always grow flushing */
if (!(shf->flags & SHF_STRING))
return (0);
while (shf->wnleft < n)
if (shf_emptybuf(shf, EB_GROW) == -1)
break;
if (shf->wnleft < n) {
/* block subsequent writes as we truncate here */
shf->wnleft = 0;
return (1);
}
return (0);
}
/* Flush and close file descriptor, free the shf structure */
int
shf_close(struct shf *shf)
{
int ret = 0;
if (shf->fd >= 0) {
ret = shf_flush(shf);
if (close(shf->fd) < 0)
ret = -1;
}
if (shf->flags & SHF_ALLOCS)
afree(shf, shf->areap);
else if (shf->flags & SHF_ALLOCB)
afree(shf->buf, shf->areap);
return (ret);
}
/* Flush and close file descriptor, don't free file structure */
int
shf_fdclose(struct shf *shf)
{
int ret = 0;
if (shf->fd >= 0) {
ret = shf_flush(shf);
if (close(shf->fd) < 0)
ret = -1;
shf->rnleft = 0;
shf->rp = shf->buf;
shf->wnleft = 0;
shf->fd = -1;
}
return (ret);
}
/*
* Close a string - if it was opened for writing, it is NUL terminated;
* returns a pointer to the string and frees shf if it was allocated
* (does not free string if it was allocated).
*/
char *
shf_sclose(struct shf *shf)
{
unsigned char *s = shf->buf;
/* NUL terminate */
if (shf->flags & SHF_WR)
*shf->wp = '\0';
if (shf->flags & SHF_ALLOCS)
afree(shf, shf->areap);
return ((char *)s);
}
/*
* Un-read what has been read but not examined, or write what has been
* buffered. Returns 0 for success, -1 for (write) error.
*/
int
shf_flush(struct shf *shf)
{
int rv = 0;
if (shf->flags & SHF_STRING)
rv = (shf->flags & SHF_WR) ? -1 : 0;
else if (shf->fd < 0)
kerrf(KWF_INTERNAL | KWF_ERR(0xFF) | KWF_TWOMSG | KWF_NOERRNO,
"shf_flush", "no fd");
else if (shf->flags & SHF_ERROR) {
errno = shf->errnosv;
rv = -1;
} else if (shf->flags & SHF_READING) {
shf->flags &= ~(SHF_EOF | SHF_READING);
if (shf->rnleft > 0) {
if (lseek(shf->fd, (off_t)-shf->rnleft,
SEEK_CUR) == -1) {
shf->flags |= SHF_ERROR;
shf->errnosv = errno;
rv = -1;
}
shf->rnleft = 0;
shf->rp = shf->buf;
}
} else if (shf->flags & SHF_WRITING)
rv = shf_emptybuf(shf, 0);
return (rv);
}
/*
* Write out any buffered data. If currently reading, flushes the read
* buffer. Returns 0 for success, -1 for (write) error.
*/
static int
shf_emptybuf(struct shf *shf, int flags)
{
int ret = 0;
if (!(shf->flags & SHF_STRING) && shf->fd < 0)
kerrf(KWF_INTERNAL | KWF_ERR(0xFF) | KWF_TWOMSG | KWF_NOERRNO,
"shf_emptybuf", "no fd");
if (shf->flags & SHF_ERROR) {
errno = shf->errnosv;
return (-1);
}
if (shf->flags & SHF_READING) {
if (flags & EB_READSW)
/* doesn't happen */
return (0);
ret = shf_flush(shf);
shf->flags &= ~SHF_READING;
}
if (shf->flags & SHF_STRING) {
size_t rp, wp;
/*
* Note that we assume SHF_ALLOCS is not set if
* SHF_ALLOCB is set... (changing the shf pointer could
* cause problems)
*/
if (!(flags & EB_GROW) || !(shf->flags & SHF_DYNAMIC) ||
!(shf->flags & SHF_ALLOCB))
return (-1);
/* allocate more space for buffer */
rp = shf->rp - shf->buf;
wp = shf->wp - shf->buf;
shf->buf = aresize2(shf->buf, 2, shf->wbsize, shf->areap);
shf->rp = shf->buf + rp;
shf->wp = shf->buf + wp;
shf->rbsize += shf->wbsize;
shf->wnleft += shf->wbsize;
shf->wbsize <<= 1;
} else {
if (shf->flags & SHF_WRITING) {
ssize_t n, ntowrite = shf->wp - shf->buf;
unsigned char *buf = shf->buf;
while (ntowrite > 0) {
n = write(shf->fd, buf, ntowrite);
if (n < 0) {
if (errno == EINTR &&
!(shf->flags & SHF_INTERRUPT))
continue;
shf->flags |= SHF_ERROR;
shf->errnosv = errno;
shf->wnleft = 0;
if (buf != shf->buf) {
/*
* allow a second flush
* to work
*/
memmove(shf->buf, buf,
ntowrite);
shf->wp = shf->buf + ntowrite;
/* restore errno for caller */
errno = shf->errnosv;
}
return (-1);
}
buf += n;
ntowrite -= n;
}
if (flags & EB_READSW) {
shf->wp = shf->buf;
shf->wnleft = 0;
shf->flags &= ~SHF_WRITING;
return (0);
}
}
shf->wp = shf->buf;
shf->wnleft = shf->wbsize;
}
shf->flags |= SHF_WRITING;
return (ret);
}
/* Fill up a read buffer. Returns -1 for a read error, 0 otherwise. */
static int
shf_fillbuf(struct shf *shf)
{
ssize_t n;
if (shf->flags & SHF_STRING)
return (0);
if (shf->fd < 0)
kerrf(KWF_INTERNAL | KWF_ERR(0xFF) | KWF_TWOMSG | KWF_NOERRNO,
"shf_fillbuf", "no fd");
if (shf->flags & (SHF_EOF | SHF_ERROR)) {
if (shf->flags & SHF_ERROR)
errno = shf->errnosv;
return (-1);
}
if ((shf->flags & SHF_WRITING) && shf_emptybuf(shf, EB_READSW) == -1)
return (-1);
shf->flags |= SHF_READING;
shf->rp = shf->buf;
while (/* CONSTCOND */ 1) {
n = blocking_read(shf->fd, (char *)shf->buf, shf->rbsize);
if (n < 0 && errno == EINTR && !(shf->flags & SHF_INTERRUPT))
continue;
break;
}
if (n < 0) {
shf->flags |= SHF_ERROR;
shf->errnosv = errno;
shf->rnleft = 0;
shf->rp = shf->buf;
return (-1);
}
if ((shf->rnleft = n) == 0)
shf->flags |= SHF_EOF;
return (0);
}
/*
* Read a buffer from shf. Returns the number of bytes read into buf, if
* no bytes were read, returns 0 if end of file was seen, -1 if a read
* error occurred.
*/
ssize_t
shf_read(char *buf, ssize_t bsize, struct shf *shf)
{
ssize_t ncopy, orig_bsize = bsize;
if (!(shf->flags & SHF_RD))
kerrf0(KWF_INTERNAL | KWF_ERR(0xFF) | KWF_NOERRNO,
Tbad_flags, Tshf_read, shf->flags);
if (bsize <= 0)
kerrf0(KWF_INTERNAL | KWF_ERR(0xFF) | KWF_NOERRNO,
Tbad_buf, Tshf_read, (size_t)buf, bsize);
while (bsize > 0) {
if (shf->rnleft == 0 &&
(shf_fillbuf(shf) == -1 || shf->rnleft == 0))
break;
ncopy = shf->rnleft;
if (ncopy > bsize)
ncopy = bsize;
memcpy(buf, shf->rp, ncopy);
buf += ncopy;
bsize -= ncopy;
shf->rp += ncopy;
shf->rnleft -= ncopy;
}
/* Note: fread(3S) returns 0 for errors - this doesn't */
return (orig_bsize == bsize ? (shf_error(shf) ? -1 : 0) :
orig_bsize - bsize);
}
/*
* Read up to a newline or -1. The newline is put in buf; buf is always
* NUL terminated. Returns NULL on read error or if nothing was read
* before end of file, returns a pointer to the NUL byte in buf
* otherwise.
*/
char *
shf_getse(char *buf, ssize_t bsize, struct shf *shf)
{
unsigned char *end;
ssize_t ncopy;
char *orig_buf = buf;
if (!(shf->flags & SHF_RD))
kerrf0(KWF_INTERNAL | KWF_ERR(0xFF) | KWF_NOERRNO,
Tbad_flags, "shf_getse", shf->flags);
if (bsize <= 0)
return (NULL);
/* save room for NUL */
--bsize;
do {
if (shf->rnleft == 0) {
if (shf_fillbuf(shf) == -1)
return (NULL);
if (shf->rnleft == 0) {
*buf = '\0';
return (buf == orig_buf ? NULL : buf);
}
}
end = (unsigned char *)memchr((char *)shf->rp, '\n',
shf->rnleft);
ncopy = end ? end - shf->rp + 1 : shf->rnleft;
if (ncopy > bsize)
ncopy = bsize;
memcpy(buf, shf->rp, ncopy);
shf->rp += ncopy;
shf->rnleft -= ncopy;
buf += ncopy;
bsize -= ncopy;
#ifdef MKSH_WITH_TEXTMODE
if (buf > orig_buf + 1 && ord(buf[-2]) == ORD('\r') &&
ord(buf[-1]) == ORD('\n')) {
buf--;
bsize++;
buf[-1] = '\n';
}
#endif
} while (!end && bsize);
#ifdef MKSH_WITH_TEXTMODE
if (!bsize && ord(buf[-1]) == ORD('\r')) {
int c = shf_getc(shf);
if (ord(c) == ORD('\n'))
buf[-1] = '\n';
else if (c != -1)
shf_ungetc(c, shf);
}
#endif
*buf = '\0';
return (buf);
}
/* Returns the char read. Returns -1 for error and end of file. */
int
shf_getchar(struct shf *shf)
{
if (!(shf->flags & SHF_RD))
kerrf0(KWF_INTERNAL | KWF_ERR(0xFF) | KWF_NOERRNO,
Tbad_flags, "shf_getchar", shf->flags);
if (shf->rnleft == 0 && (shf_fillbuf(shf) == -1 || shf->rnleft == 0))
return (-1);
--shf->rnleft;
return (ord(*shf->rp++));
}
/*
* Put a character back in the input stream. Returns the character if
* successful, -1 if there is no room.
*/
int
shf_ungetc(int c, struct shf *shf)
{
if (!(shf->flags & SHF_RD))
kerrf0(KWF_INTERNAL | KWF_ERR(0xFF) | KWF_NOERRNO,
Tbad_flags, "shf_ungetc", shf->flags);
if ((shf->flags & SHF_ERROR) || c == -1 ||
(shf->rp == shf->buf && shf->rnleft))
return (-1);
if ((shf->flags & SHF_WRITING) && shf_emptybuf(shf, EB_READSW) == -1)
return (-1);
if (shf->rp == shf->buf)
shf->rp = shf->buf + shf->rbsize;
if (shf->flags & SHF_STRING) {
/*
* Can unget what was read, but not something different;
* we don't want to modify a string.
*/
if ((int)(shf->rp[-1]) != c)
return (-1);
shf->flags &= ~SHF_EOF;
shf->rp--;
shf->rnleft++;
return (c);
}
shf->flags &= ~SHF_EOF;
*--(shf->rp) = c;
shf->rnleft++;
return (c);
}
/*
* Write a character. Returns the character if successful, -1 if the
* char could not be written.
*/
int
shf_putchar(int c, struct shf *shf)
{
if (!(shf->flags & SHF_WR))
kerrf0(KWF_INTERNAL | KWF_ERR(0xFF) | KWF_NOERRNO,
Tbad_flags, "shf_putchar", shf->flags);
if (c == -1)
return (-1);
if (shf->flags & SHF_UNBUF) {
unsigned char cc = (unsigned char)c;
ssize_t n;
if (shf->fd < 0)
kerrf(KWF_INTERNAL | KWF_ERR(0xFF) | KWF_TWOMSG | KWF_NOERRNO,
"shf_putchar", "no fd");
if (shf->flags & SHF_ERROR) {
errno = shf->errnosv;
return (-1);
}
while ((n = write(shf->fd, &cc, 1)) != 1)
if (n < 0) {
if (errno == EINTR &&
!(shf->flags & SHF_INTERRUPT))
continue;
shf->flags |= SHF_ERROR;
shf->errnosv = errno;
return (-1);
}
} else {
/* Flush deals with strings and sticky errors */
if (shf->wnleft == 0 && shf_emptybuf(shf, EB_GROW) == -1)
return (-1);
shf->wnleft--;
*shf->wp++ = c;
}
return (c);
}
/*
* Write a string. Returns the length of the string if successful,
* less if truncated, and -1 if the string could not be written.
*/
ssize_t
shf_putsv(const char *s, struct shf *shf)
{
if (!s)
return (-1);
return (shf_write(s, strlen(s), shf));
}
/*
* Write a buffer. Returns nbytes if successful, less if truncated
* (outputting to string only), and -1 if there is an error.
*/
ssize_t
shf_write(const char *buf, ssize_t nbytes, struct shf *shf)
{
ssize_t n, ncopy, orig_nbytes = nbytes;
if (!(shf->flags & SHF_WR))
kerrf0(KWF_INTERNAL | KWF_ERR(0xFF) | KWF_NOERRNO,
Tbad_flags, Tshf_write, shf->flags);
if (nbytes < 0)
kerrf0(KWF_INTERNAL | KWF_ERR(0xFF) | KWF_NOERRNO,
Tbad_buf, Tshf_write, (size_t)buf, nbytes);
/* don't buffer if buffer is empty and we're writing a large amount */
if ((ncopy = shf->wnleft) &&
(shf->wp != shf->buf || nbytes < shf->wnleft)) {
if (ncopy > nbytes)
ncopy = nbytes;
memcpy(shf->wp, buf, ncopy);
nbytes -= ncopy;
buf += ncopy;
shf->wp += ncopy;
shf->wnleft -= ncopy;
}
if (nbytes > 0) {
if (shf->flags & SHF_STRING) {
/* resize buffer until there's enough space left */
while (nbytes > shf->wnleft)
if (shf_emptybuf(shf, EB_GROW) == -1) {
/* truncate if possible */
if (shf->wnleft == 0)
return (-1);
nbytes = shf->wnleft;
break;
}
/* then write everything into the buffer */
} else {
/* flush deals with sticky errors */
if (shf_emptybuf(shf, EB_GROW) == -1)
return (-1);
/* write chunks larger than window size directly */
if (nbytes > shf->wbsize) {
ncopy = nbytes;
if (shf->wbsize)
ncopy -= nbytes % shf->wbsize;
nbytes -= ncopy;
while (ncopy > 0) {
n = write(shf->fd, buf, ncopy);
if (n < 0) {
if (errno == EINTR &&
!(shf->flags & SHF_INTERRUPT))
continue;
shf->flags |= SHF_ERROR;
shf->errnosv = errno;
shf->wnleft = 0;
/*
* Note: fwrite(3) returns 0
* for errors - this doesn't
*/
return (-1);
}
buf += n;
ncopy -= n;
}
}
/* ... and buffer the rest */
}
if (nbytes > 0) {
/* write remaining bytes to buffer */
memcpy(shf->wp, buf, nbytes);
shf->wp += nbytes;
shf->wnleft -= nbytes;
}
}
return (orig_nbytes);
}
ssize_t
shf_fprintf(struct shf *shf, const char *fmt, ...)
{
va_list args;
ssize_t n;
va_start(args, fmt);
n = shf_vfprintf(shf, fmt, args);
va_end(args);
return (n);
}
ssize_t
shf_snprintf(char *buf, ssize_t bsize, const char *fmt, ...)
{
struct shf shf;
va_list args;
ssize_t n;
if (!buf || bsize <= 0)
kerrf0(KWF_INTERNAL | KWF_ERR(0xFF) | KWF_NOERRNO,
Tbad_buf, "shf_snprintf", (size_t)buf, bsize);
shf_sopen(buf, bsize, SHF_WR, &shf);
va_start(args, fmt);
n = shf_vfprintf(&shf, fmt, args);
va_end(args);
/* NUL terminates */
shf_sclose(&shf);
return (n);
}
char *
shf_smprintf(const char *fmt, ...)
{
struct shf shf;
va_list args;
shf_sopen(NULL, 0, SHF_WR|SHF_DYNAMIC, &shf);
va_start(args, fmt);
shf_vfprintf(&shf, fmt, args);
va_end(args);
/* NUL terminates */
return (shf_sclose(&shf));
}
/* pre-initio() */
char *
kslfmt(ksl number, kui flags, char *numbuf)
{
/* easy for positive number */
if (number >= 0)
return (kulfmt((kul)number, flags, numbuf));
/* negative signed quantity */
if (!IS(flags, FM_TYPE, FL_SGN)) {
/* uh-oh, output a signed quantity unsignedly */
return (kulfmt(mbiA_S2U(kul, ksl, number), flags, numbuf));
}
return (kulfmt(mbiA_S2M(kul, ksl, number), flags | FL_NEG, numbuf));
}
/* pre-initio() */
char *
kulfmt(kul number, kui flags, char *numbuf)
{
char *cp;
cp = numbuf + NUMBUFSZ;
*--cp = '\0';
switch (flags & FM_TYPE) {
case FL_OCT:
do {
*--cp = digits_lc[number & 07UL];
number >>= 3;
} while (number);
if (HAS(flags, FL_HASH) && ord(*cp) != ORD('0'))
*--cp = '0';
break;
case FL_HEX: {
const char *digits;
digits = HAS(flags, FL_UCASE) ? digits_uc : digits_lc;
do {
*--cp = digits[number & 0xFUL];
number >>= 4;
} while (number);
if (HAS(flags, FL_HASH)) {
*--cp = IS(flags, FL_UPPER, FL_UPPER) ? 'X' : 'x';
*--cp = '0';
}
break;
}
default:
do {
*--cp = digits_lc[number % 10UL];
number /= 10UL;
} while (number);
if (IS(flags, FM_TYPE, FL_SGN)) {
if (HAS(flags, FL_NEG))
*--cp = '-';
else if (HAS(flags, FL_PLUS))
*--cp = '+';
else if (HAS(flags, FL_BLANK))
*--cp = ' ';
}
break;
}
return (cp);
}
#ifdef MKSH_HAVE_HUGE
/* pre-initio() */
char *
ksHfmt(ksH number, kui flags, char *numbuf)
{
/* easy for positive number */
if (number >= 0)
return (kuHfmt((kuH)number, flags, numbuf));
/* negative signed quantity */
if (!IS(flags, FM_TYPE, FL_SGN)) {
/* uh-oh, output a signed quantity unsignedly */
return (kuHfmt(mbiA_S2U(kuH, ksH, number), flags, numbuf));
}
return (kuHfmt(mbiA_S2M(kuH, ksH, number), flags | FL_NEG, numbuf));
}
/* pre-initio() */
char *
kuHfmt(kuH number, kui flags, char *numbuf)
{
char *cp;
cp = numbuf + NUMBUFSZ;
*--cp = '\0';
switch (flags & FM_TYPE) {
case FL_OCT:
do {
*--cp = digits_lc[number & 07UL];
number >>= 3;
} while (number);
if (HAS(flags, FL_HASH) && ord(*cp) != ORD('0'))
*--cp = '0';
break;
case FL_HEX: {
const char *digits;
digits = HAS(flags, FL_UCASE) ? digits_uc : digits_lc;
do {
*--cp = digits[number & 0xFUL];
number >>= 4;
} while (number);
if (HAS(flags, FL_HASH)) {
*--cp = IS(flags, FL_UPPER, FL_UPPER) ? 'X' : 'x';
*--cp = '0';
}
break;
}
default:
do {
*--cp = digits_lc[number % 10UL];
number /= 10UL;
} while (number);
if (IS(flags, FM_TYPE, FL_SGN)) {
if (HAS(flags, FL_NEG))
*--cp = '-';
else if (HAS(flags, FL_PLUS))
*--cp = '+';
else if (HAS(flags, FL_BLANK))
*--cp = ' ';
}
break;
}
return (cp);
}
#endif
ssize_t
shf_vfprintf(struct shf *shf, const char *fmt, va_list args)
{
char numbuf[NUMBUFSZ];
const char *s;
char c;
int tmp = 0, flags;
size_t field, precision, len;
/* this stuff for dealing with the buffer */
ssize_t nwritten = 0;
/* for width determination */
const char *lp, *np;
#define VA(type) va_arg(args, type)
if (!fmt)
return (0);
while ((c = *fmt++)) {
if (c != '%') {
shf_putc(c, shf);
nwritten++;
continue;
}
/*
* This will accept flags/fields in any order - not just
* the order specified in printf(3), but this is the way
* _doprnt() seems to work (on BSD and SYSV). The only
* restriction is that the format character must come
* last :-).
*/
flags = 0;
field = precision = 0;
while ((c = *fmt++)) {
switch (c) {
case '#':
flags |= FL_HASH;
continue;
case '+':
flags |= FL_PLUS;
continue;
case '-':
flags |= FL_RIGHT;
continue;
case ' ':
flags |= FL_BLANK;
continue;
case '0':
if (!(flags & FL_DOT))
flags |= FL_ZERO;
continue;
case '.':
flags |= FL_DOT;
precision = 0;
continue;
case '*':
tmp = VA(int);
if (tmp < 0) {
if (flags & FL_DOT)
precision = 0;
else {
field = (unsigned int)-tmp;
flags |= FL_RIGHT;
}
} else if (flags & FL_DOT)
precision = (unsigned int)tmp;
else
field = (unsigned int)tmp;
continue;
case 'h':
flags &= ~FM_SIZES;
flags |= FL_SHORT;
continue;
case 'j':
flags &= ~FM_SIZES;
#ifdef MKSH_HAVE_HUGE
flags |= FL_HUGE;
#else
flags |= FL_LONG;
#endif
continue;
case 'l':
flags &= ~FM_SIZES;
flags |= FL_LONG;
continue;
case 'z':
flags &= ~FM_SIZES;
flags |= FL_SIZET;
continue;
}
if (ctype(c, C_DIGIT)) {
--fmt;
getpn((const char **)&fmt, &tmp);
if (flags & FL_DOT)
precision = (unsigned int)tmp;
else
field = (unsigned int)tmp;
continue;
}
break;
}
if (!c)
/* nasty format */
break;
if (ctype(c, C_UPPER)) {
flags |= FL_UPPER;
c = ksh_tolower(c);
}
switch (c) {
case 'd':
case 'i':
#ifdef MKSH_HAVE_HUGE
if (HAS(flags, FL_HUGE))
s = ksHfmt(VA(ksH), flags | FL_SGN, numbuf);
else
#endif
s = kslfmt(HAS(flags, FL_SIZET) ? (ksl)VA(ssize_t) :
HAS(flags, FL_LONG) ? (ksl)VA(long) :
HAS(flags, FL_SHORT) ? (ksl)(short)VA(int) :
(ksl)VA(int), flags | FL_SGN, numbuf);
goto integral;
case 'o':
flags |= FL_OCT;
if (0)
/* FALLTHROUGH */
case 'u':
flags |= FL_DEC;
if (0)
/* FALLTHROUGH */
case 'x':
flags |= FL_HEX;
#ifdef MKSH_HAVE_HUGE
if (HAS(flags, FL_HUGE))
s = kuHfmt(VA(kuH), flags, numbuf);
else
#endif
s = kulfmt(HAS(flags, FL_SIZET) ? (kul)VA(size_t) :
HAS(flags, FL_LONG) ? (kul)VA(unsigned long) :
HAS(flags, FL_SHORT) ? (kul)(unsigned short)VA(int) :
(kul)VA(unsigned int), flags, numbuf);
integral:
flags |= FL_NUMBER;
len = NUMBUFLEN(numbuf, s);
if (flags & FL_DOT) {
if (precision > len) {
field = precision;
flags |= FL_ZERO;
} else
/* no loss */
precision = len;
}
break;
case 's':
if ((s = VA(const char *)) == NULL)
s = Tnil;
else if (flags & FL_HASH) {
print_value_quoted(shf, s);
continue;
}
len = utf_mbswidth(s);
break;
case 'c':
flags &= ~FL_DOT;
c = (char)(VA(int));
/* FALLTHROUGH */
case '%':
default:
numbuf[0] = c;
numbuf[1] = 0;
s = numbuf;
len = 1;
break;
}
/*
* At this point s should point to a string that is to be
* formatted, and len should be the length of the string.
*/
if (!(flags & FL_DOT) || len < precision)
precision = len;
/* determine whether we can indeed write precision columns */
len = 0;
lp = s;
while (*lp) {
int w = utf_widthadj(lp, &np);
if ((len + w) > precision)
break;
lp = np;
len += w;
}
/* trailing combining characters */
if (UTFMODE)
while (*lp && utf_widthadj(lp, &np) == 0)
lp = np;
/* how much we can actually output */
precision = len;
/* output leading padding */
if (field > precision) {
field -= precision;
if (!(flags & FL_RIGHT)) {
/* skip past sign or 0x when padding with 0 */
if ((flags & (FL_ZERO | FL_NUMBER)) == (FL_ZERO | FL_NUMBER)) {
if (ctype(*s, C_SPC | C_PLUS | C_MINUS)) {
shf_putc(*s, shf);
s++;
precision--;
nwritten++;
} else if (*s == '0') {
shf_putc(*s, shf);
s++;
nwritten++;
if (--precision &&
isCh(*s, 'X', 'x')) {
shf_putc(*s, shf);
s++;
precision--;
nwritten++;
}
}
c = '0';
} else
c = flags & FL_ZERO ? '0' : ' ';
nwritten += field;
while (field--)
shf_putc(c, shf);
field = 0;
} else
c = ' ';
} else
field = 0;
/* output string */
nwritten += (lp - s);
shf_write(s, lp - s, shf);
/* output trailing padding */
nwritten += field;
while (field--)
shf_putc(c, shf);
}
return (shf_error(shf) ? -1 : nwritten);
}
#ifdef MKSH_SHF_NO_INLINE
int
shf_getc(struct shf *shf)
{
return (shf_getc_i(shf));
}
int
shf_putc(int c, struct shf *shf)
{
return (shf_putc_i(c, shf));
}
#endif
#if !HAVE_STRERROR
#if HAVE_STRERRORDESC_NP
/* assume prototype, _GNU_SOURCE may be needed */
#elif HAVE_SYS_ERRLIST
#if !HAVE_SYS_ERRLIST_DECL
extern const int sys_nerr;
extern const char * const sys_errlist[];
#endif
#endif
/* pre-initio() */
const char *
cstrerror(int errnum)
{
#define unkerrstr "Unknown error: "
#define unkerrlen (sizeof(unkerrstr) - 1U)
static char errbuf[unkerrlen + NUMBUFSZ];
#if HAVE_STRERRORDESC_NP
const char *ccp;
#endif
char *cp;
#if HAVE_STRERRORDESC_NP
if ((ccp = strerrordesc_np(errnum)))
return (ccp);
#elif HAVE_SYS_ERRLIST
if (errnum > 0 && errnum < sys_nerr && sys_errlist[errnum])
return (sys_errlist[errnum]);
#endif
/* do not add ERANGE, might be EOVERFLOW */
switch (errnum) {
case 0:
return ("Undefined error: 0");
case EPERM:
return ("Operation not permitted");
case ENOENT:
return ("No such file or directory");
#ifdef ESRCH
case ESRCH:
return ("No such process");
#endif
case E2BIG:
return ("Argument list too long");
case ENOEXEC:
return ("Exec format error");
case EBADF:
return ("Bad file descriptor");
#ifdef ENOMEM
case ENOMEM:
return ("Cannot allocate memory");
#endif
case EACCES:
return ("Permission denied");
case EEXIST:
return ("File exists");
case ENOTDIR:
return ("Not a directory");
case EINVAL:
return ("Invalid argument");
#ifdef ELOOP
case ELOOP:
return ("Too many levels of symbolic links");
#endif
case EOVERFLOW:
return ("Value too large");
default:
cp = kslfmt(errnum, FL_SGN, errbuf + unkerrlen);
cp -= unkerrlen;
memcpy(cp, unkerrstr, unkerrlen);
return (cp);
}
#undef unkerrlen
#undef unkerrstr
}
#elif defined(DEBUG)
/* pre-initio() */
const char *
cstrerror(int errnum)
{
#undef strerror
return (strerror(errnum));
#define strerror dontuse_strerror /* poisoned */
}
#endif
/* fast character classes */
const kui tpl_ctypes[128] = {
/* 0x00 */
CiNUL, CiCNTRL, CiCNTRL, CiCNTRL,
CiCNTRL, CiCNTRL, CiCNTRL, CiCNTRL,
CiCNTRL, CiTAB, CiNL, CiSPX,
CiSPX, CiCR, CiCNTRL, CiCNTRL,
/* 0x10 */
CiCNTRL, CiCNTRL, CiCNTRL, CiCNTRL,
CiCNTRL, CiCNTRL, CiCNTRL, CiCNTRL,
CiCNTRL, CiCNTRL, CiCNTRL, CiCNTRL,
CiCNTRL, CiCNTRL, CiCNTRL, CiCNTRL,
/* 0x20 */
CiSP, CiALIAS | CiVAR1, CiQC, CiHASH,
CiSS, CiPERCT, CiQCL, CiQC,
CiQCL, CiQCL, CiQCX | CiVAR1, CiPLUS,
CiALIAS, CiMINUS, CiALIAS, CiQCM,
/* 0x30 */
CiOCTAL, CiOCTAL, CiOCTAL, CiOCTAL,
CiOCTAL, CiOCTAL, CiOCTAL, CiOCTAL,
CiDIGIT, CiDIGIT, CiCOLON, CiQCL,
CiANGLE, CiEQUAL, CiANGLE, CiQUEST,
/* 0x40 */
CiALIAS | CiVAR1, CiUPPER | CiHEXLT,
CiUPPER | CiHEXLT, CiUPPER | CiHEXLT,
CiUPPER | CiHEXLT, CiUPPER | CiHEXLT,
CiUPPER | CiHEXLT, CiUPPER,
CiUPPER, CiUPPER, CiUPPER, CiUPPER,
CiUPPER, CiUPPER, CiUPPER, CiUPPER,
/* 0x50 */
CiUPPER, CiUPPER, CiUPPER, CiUPPER,
CiUPPER, CiUPPER, CiUPPER, CiUPPER,
CiUPPER, CiUPPER, CiUPPER, CiQCX | CiBRACK,
CiQCX, CiBRACK, CiQCM, CiUNDER,
/* 0x60 */
CiGRAVE, CiLOWER | CiHEXLT,
CiLOWER | CiHEXLT, CiLOWER | CiHEXLT,
CiLOWER | CiHEXLT, CiLOWER | CiHEXLT,
CiLOWER | CiHEXLT, CiLOWER,
CiLOWER, CiLOWER, CiLOWER, CiLOWER,
CiLOWER, CiLOWER, CiLOWER, CiLOWER,
/* 0x70 */
CiLOWER, CiLOWER, CiLOWER, CiLOWER,
CiLOWER, CiLOWER, CiLOWER, CiLOWER,
CiLOWER, CiLOWER, CiLOWER, CiCURLY,
CiQCL, CiCURLY, CiQCX, CiCNTRL
};
#ifdef MKSH__DEBUG_CCLASSES
static int debug_ccls(void);
#endif
/* pre-initio() */
static void
set_ccls(void)
{
#if defined(MKSH_EBCDIC) || defined(MKSH_FAUX_EBCDIC)
int i = 256;
memset(ksh_ctypes, 0, sizeof(ksh_ctypes));
while (i--)
if (ebcdic_map[i] < 0x80U)
ksh_ctypes[i] = tpl_ctypes[ebcdic_map[i]];
#else
memcpy(ksh_ctypes, tpl_ctypes, sizeof(tpl_ctypes));
memset((char *)ksh_ctypes + sizeof(tpl_ctypes), '\0',
sizeof(ksh_ctypes) - sizeof(tpl_ctypes));
#endif
}
/* pre-initio() */
void
set_ifs(const char *s)
{
set_ccls();
ifs0 = *s;
while (*s)
ksh_ctypes[ord(*s++)] |= CiIFS;
#ifdef MKSH__DEBUG_CCLASSES
if (debug_ccls())
exit(254);
#endif
}
#if defined(MKSH_EBCDIC) || defined(MKSH_FAUX_EBCDIC)
#if !HAVE_SETLOCALE_LCALL && !defined(MKSH_FAUX_EBCDIC)
# error EBCDIC support requires use of the system locale
#endif
static void ebcdic_initerr(const char *, size_t, int, int, int) MKSH_A_NORETURN;
/*
* Many headaches with EBCDIC:
* 1. There are numerous EBCDIC variants, and it is not feasible for us
* to support them all. But we can support the EBCDIC code pages that
* contain all (most?) of the characters in ASCII, and these
* usually tend to agree on the code points assigned to the ASCII
* subset. If you need a representative example, look at EBCDIC 1047,
* which is first among equals in the IBM MVS development environment:
* https://web.archive.org/web/20200810035140/https://en.wikipedia.org/wiki/EBCDIC_1047
* Unfortunately, the square brackets are not consistently mapped,
* and for certain reasons, we need an unambiguous bijective
* mapping between EBCDIC and "extended ASCII".
* 2. Character ranges that are contiguous in ASCII, like the letters
* in [A-Z], are broken up into segments (i.e. [A-IJ-RS-Z]), so we
* can't implement e.g. islower() as { return c >= 'a' && c <= 'z'; }
* because it will also return true for a handful of extraneous
* characters (like the plus-minus sign at 0x8F in EBCDIC 1047, a
* little after 'i'). But at least '_' is not one of these.
* 3. The normal [0-9A-Za-z] characters are at codepoints beyond 0x80.
* Not only do they require all 8 bits instead of 7, if chars are
* signed, they will have negative integer values! Something like
* (c - 'A') could actually become (c + 63)! Use the ord() macro to
* ensure you're getting a value in [0, 255] (ORD for constants).
* 4. '\n' is actually NL (0x15, U+0085) instead of LF (0x25, U+000A).
* EBCDIC has a proper newline character instead of "emulating" one
* with line feeds, although this is mapped to LF for our purposes.
* 5. Note that it is possible to compile programs in ASCII mode on IBM
* mainframe systems, using the -qascii option to the XL C compiler.
* We can determine the build mode by looking at __CHARSET_LIB:
* 0 == EBCDIC, 1 == ASCII
*
* UTF-8 is not used, nor is UTF-EBCDIC really. We solve this problem
* by treating it as "nega-UTF-8": on EBCDIC systems, the output is
* converted to the "extended ASCII" codepage from the current EBCDIC
* codepage always so we convert UTF-8 backwards so the conversion
* will result in valid UTF-8. This may introduce fun on the EBCDIC
* side, but as it's not really used anyway we decided to take the risk.
*/
/* pre-initio() */
void
ebcdic_init(void)
{
int i = 256;
unsigned char t;
Wahr mapcache[256];
while (i--)
ebcdic_rtt_toascii[i] = i;
memset(ebcdic_rtt_fromascii, 0xFF, sizeof(ebcdic_rtt_fromascii));
setlocale(LC_ALL, "");
#ifdef MKSH_EBCDIC
errno = ENOTDIR;
if ((i = __etoa_l(ebcdic_rtt_toascii, 256)) != 256)
ebcdic_initerr(SC("mksh: could not map EBCDIC to ASCII"),
-1, i, errno);
#endif
memset(mapcache, 0, sizeof(mapcache));
i = 256;
while (i--) {
t = ebcdic_rtt_toascii[i];
/* ensure unique round-trip capable mapping */
if (mapcache[t])
ebcdic_initerr(SC("mksh: duplicate EBCDIC to ASCII mapping"),
-2, i, ebcdic_rtt_fromascii[t]);
/*
* since there are 256 input octets, this also ensures
* the other mapping direction is completely filled
*/
mapcache[t] = Ja;
/* fill the complete round-trip map */
ebcdic_rtt_fromascii[t] = i;
/*
* Only use the converted value if it's in the range
* [0x00; 0x7F], which I checked; the "extended ASCII"
* characters can be any encoding, not just Latin1,
* and the C1 control characters other than NEL are
* hopeless, but we map EBCDIC NEL to ASCII LF so we
* cannot even use C1 NEL.
* If ever we map to UCS, bump the table width to
* an unsigned int, and or the raw unconverted EBCDIC
* values with 0x01000000 instead.
*/
if (t < 0x80U)
ebcdic_map[i] = (unsigned short)ord(t);
else
ebcdic_map[i] = (unsigned short)(0x100U | ord(i));
}
if (ebcdic_rtt_toascii[0] || ebcdic_rtt_fromascii[0] || ebcdic_map[0])
ebcdic_initerr(SC("mksh: NUL not at position 0"),
ebcdic_rtt_toascii[0], ebcdic_rtt_fromascii[0],
ebcdic_map[0]);
/* ensure control characters, i.e. 0x00‥0x3F and 0xFF, map sanely */
for (i = 0x00; i < 0x20; ++i)
if (!ksh_isctrl(asc2rtt(i)))
goto ebcdic_ctrlmis;
for (i = 0x7F; i < 0xA0; ++i)
if (!ksh_isctrl(asc2rtt(i))) {
ebcdic_ctrlmis:
ebcdic_initerr(SC("mksh: control character mismapping"),
-2, i, asc2rtt(i));
}
/* validate character literals used in the code */
#define litcheck(c,v) \
if (rtt2asc(c) != v) \
ebcdic_initerr(SC("mksh: compiler vs. runtime codepage mismatch"), \
-3, c, rtt2asc(c))
litcheck('\n', 0x0AU);
litcheck('\r', 0x0DU);
litcheck(' ', 0x20U);
litcheck('!', 0x21U);
litcheck('"', 0x22U);
litcheck('#', 0x23U);
litcheck('$', 0x24U);
litcheck('%', 0x25U);
litcheck('&', 0x26U);
litcheck('\'', 0x27U);
litcheck('(', 0x28U);
litcheck(')', 0x29U);
litcheck('*', 0x2AU);
litcheck('+', 0x2BU);
litcheck(',', 0x2CU);
litcheck('-', 0x2DU);
litcheck('.', 0x2EU);
litcheck('/', 0x2FU);
litcheck('0', 0x30U);
litcheck(':', 0x3AU);
litcheck(';', 0x3BU);
litcheck('<', 0x3CU);
litcheck('=', 0x3DU);
litcheck('>', 0x3EU);
litcheck('?', 0x3FU);
litcheck('@', 0x40U);
litcheck('A', 0x41U);
litcheck('B', 0x42U);
litcheck('C', 0x43U);
litcheck('D', 0x44U);
litcheck('E', 0x45U);
litcheck('F', 0x46U);
litcheck('G', 0x47U);
litcheck('H', 0x48U);
litcheck('I', 0x49U);
litcheck('N', 0x4EU);
litcheck('O', 0x4FU);
litcheck('P', 0x50U);
litcheck('Q', 0x51U);
litcheck('R', 0x52U);
litcheck('S', 0x53U);
litcheck('T', 0x54U);
litcheck('U', 0x55U);
litcheck('W', 0x57U);
litcheck('X', 0x58U);
litcheck('Y', 0x59U);
litcheck('[', 0x5BU);
litcheck('\\', 0x5CU);
litcheck(']', 0x5DU);
litcheck('^', 0x5EU);
litcheck('_', 0x5FU);
litcheck('`', 0x60U);
litcheck('a', 0x61U);
litcheck('b', 0x62U);
litcheck('c', 0x63U);
litcheck('d', 0x64U);
litcheck('e', 0x65U);
litcheck('f', 0x66U);
litcheck('g', 0x67U);
litcheck('h', 0x68U);
litcheck('i', 0x69U);
litcheck('j', 0x6AU);
litcheck('k', 0x6BU);
litcheck('l', 0x6CU);
litcheck('n', 0x6EU);
litcheck('p', 0x70U);
litcheck('r', 0x72U);
litcheck('s', 0x73U);
litcheck('t', 0x74U);
litcheck('u', 0x75U);
litcheck('v', 0x76U);
litcheck('w', 0x77U);
litcheck('x', 0x78U);
litcheck('y', 0x79U);
litcheck('{', 0x7BU);
litcheck('|', 0x7CU);
litcheck('}', 0x7DU);
litcheck('~', 0x7EU);
#undef litcheck
/* validate sh.h control character literals */
#define ctlcheck(n,c,v) \
if (rtt2asc(c) != v) \
ebcdic_initerr(SC("mksh: control character mismapping"), \
-3, n, rtt2asc(c))
ctlcheck('@', CTRL_AT, 0x00U);
ctlcheck('A', CTRL_A, 0x01U);
ctlcheck('B', CTRL_B, 0x02U);
ctlcheck('C', CTRL_C, 0x03U);
ctlcheck('D', CTRL_D, 0x04U);
ctlcheck('E', CTRL_E, 0x05U);
ctlcheck('F', CTRL_F, 0x06U);
ctlcheck('G', CTRL_G, 0x07U);
ctlcheck('H', CTRL_H, 0x08U);
ctlcheck('I', CTRL_I, 0x09U);
ctlcheck('J', CTRL_J, 0x0AU);
ctlcheck('K', CTRL_K, 0x0BU);
ctlcheck('L', CTRL_L, 0x0CU);
ctlcheck('M', CTRL_M, 0x0DU);
ctlcheck('N', CTRL_N, 0x0EU);
ctlcheck('O', CTRL_O, 0x0FU);
ctlcheck('P', CTRL_P, 0x10U);
ctlcheck('Q', CTRL_Q, 0x11U);
ctlcheck('R', CTRL_R, 0x12U);
ctlcheck('S', CTRL_S, 0x13U);
ctlcheck('T', CTRL_T, 0x14U);
ctlcheck('U', CTRL_U, 0x15U);
ctlcheck('V', CTRL_V, 0x16U);
ctlcheck('W', CTRL_W, 0x17U);
ctlcheck('X', CTRL_X, 0x18U);
ctlcheck('Y', CTRL_Y, 0x19U);
ctlcheck('Z', CTRL_Z, 0x1AU);
ctlcheck('[', CTRL_BO, 0x1BU);
ctlcheck('\\', CTRL_BK, 0x1CU);
ctlcheck(']', CTRL_BC, 0x1DU);
ctlcheck('^', CTRL_CA, 0x1EU);
ctlcheck('_', CTRL_US, 0x1FU);
ctlcheck('?', CTRL_QM, 0x7FU);
#undef ctlcheck
}
/* pre-initio() */
static void
ebcdic_initerr(const char *s, size_t n, int a, int b, int c)
{
char buf[NUMBUFSZ + 3];
char *cp;
const char *ccp;
SHIKATANAI write(2, s, n);
/*
* a>=0: a,b,c=hex
* a=-1: b=sgn c=errno
* a=-2: b=hex c=hex
* a=-3: b=chr c=hex
*/
if (a == -1) {
ccp = cstrerror(c);
cp = kslfmt(b, FL_SGN, buf + 1U);
*--cp = '<';
buf[NUMBUFSZ] = '>';
buf[NUMBUFSZ + 1U] = ccp ? '<' : '(';
SHIKATANAI write(2, cp, NUMBUFLEN(buf + 1U, cp) + 2U);
if (ccp) {
SHIKATANAI write(2, SZ(ccp));
SHIKATANAI write(2, SC(">\n"));
} else
SHIKATANAI write(2, SC("unknown error)\n"));
exit(255);
}
if (a == -3) {
buf[0] = '<';
buf[1] = b;
buf[2] = '>';
SHIKATANAI write(2, buf, 3);
} else {
if (a != -2) {
cp = kslfmt(a, FL_HEX | FL_UCASE | FL_HASH, buf + 1);
*--cp = '<';
buf[NUMBUFSZ] = '>';
SHIKATANAI write(2, cp, NUMBUFLEN(buf + 1U, cp) + 1U);
}
cp = kslfmt(b, FL_HEX | FL_UCASE | FL_HASH, buf + 1);
*--cp = '<';
buf[NUMBUFSZ] = '>';
SHIKATANAI write(2, cp, NUMBUFLEN(buf + 1U, cp) + 1U);
}
cp = kslfmt(c, FL_HEX | FL_UCASE | FL_HASH, buf + 1);
*--cp = '<';
buf[NUMBUFSZ] = '>';
buf[NUMBUFSZ + 1U] = '\n';
SHIKATANAI write(2, cp, NUMBUFLEN(buf + 1U, cp) + 2U);
exit(255);
}
#endif
#ifdef MKSH__DEBUG_CCLASSES
/*
* This is developer debugging code. It makes no attempt
* at being performant, not redundant, have acceptable
* style, or anything really.
*/
/* pre-initio() */
static unsigned int
v(unsigned int c)
{
if (ord(c) == ORD('\\')) {
printf("\\\\");
return (2);
} else if (c < 0x21U || c > 0x7EU) {
printf("\\x%02X", c);
return (4);
} else {
putchar(c);
return (1);
}
}
#define tabto(len,to) do { \
while (len < to) { \
putchar('\t'); \
len = (len | 7) + 1; \
} \
} while (/* CONSTCOND */ 0)
static char vert[40][40];
static struct ciname {
const char *name;
kui val;
kui bit;
} ci[32], *cibit[32];
/* pre-initio() */
static int
cicomp(const void *a_, const void *b_)
{
const struct ciname *a = a_;
const struct ciname *b = b_;
return (strcmp(a->name, b->name));
}
/* pre-initio() */
static int
debug_ccls(void)
{
unsigned int i, j, k, x, y, z;
printf("\t0 1 2 3 4 5 6 7 ->7\n");
printf("\t0123456789ABCDEF0123456789ABCDEF0123456789ABCDEF0123456789ABCDEF0123456789ABCDEF0123456789ABCDEF0123456789ABCDEF0123456789ABCDEF\n");
#define D(x) do { \
printf("%s\t", #x); \
for (i = 0; i <= 0x7F; ++i) \
putchar(tpl_ctypes[i] & x ? '#' : '-'); \
putchar('\n'); \
} while (/* CONSTCOND */ 0)
#define DCi() do { \
D(CiIFS); \
D(CiCNTRL); \
D(CiUPPER); \
D(CiLOWER); \
D(CiHEXLT); \
D(CiOCTAL); \
D(CiQCL); \
D(CiALIAS); \
D(CiQCX); \
D(CiVAR1); \
D(CiQCM); \
D(CiDIGIT); \
D(CiQC); \
D(CiSPX); \
D(CiCURLY); \
D(CiANGLE); \
D(CiNUL); \
D(CiTAB); \
D(CiNL); \
D(CiCR); \
D(CiSP); \
D(CiHASH); \
D(CiSS); \
D(CiPERCT); \
D(CiPLUS); \
D(CiMINUS); \
D(CiCOLON); \
D(CiEQUAL); \
D(CiQUEST); \
D(CiBRACK); \
D(CiUNDER); \
D(CiGRAVE); \
} while (/* CONSTCOND */ 0)
DCi();
#undef D
putchar('\n');
printf("\t i i i i i i i i i i i i i i i i i\n");
printf("\tC C U L H O A i D C A i P i M C E Q B U G\n");
printf("\ti N P O E C i L i V i I i U N i i H E P I O Q U R N R\n");
printf("\tI T P W X T Q I Q A Q G i S R G N T i i i A i R L N L U E A D A\n");
printf("\tF R E E L A C A C R C I Q P L L U A N C S S S C U U O A S C E V\n");
printf("\tS L R R T L L S X 1 M T C X Y E L B L R P H S T S S N L T K R E\n");
j = 0;
#define D(x,i1,i2,i3) do { \
printf("%s\t", #x); \
for (i = 0; i <= 31; ++i) { \
printf(x & BIT(i) ? "**" : "- "); \
vert[i][j] = (x & BIT(i) ? '#' : '-'); \
} \
printf("\t%08X\n", x); \
++j; \
} while (/* CONSTCOND */ 0)
#define DC_() do { \
D(C_ALIAS, 2, 24, "valid characters in alias names"); \
D(C_ALNUM, 1, 24, "alphanumerical"); \
D(C_ALNUX, 1, 24, "alphanumerical plus underscore (“word character”)"); \
D(C_ALPHA, 1, 24, "alphabetical (upper plus lower)"); \
D(C_ALPHX, 1, 24, "alphabetical plus underscore (identifier lead)"); \
D(C_ASCII, 1, 24, "7-bit ASCII except NUL"); \
D(C_BLANK, 0, 24, "tab and space"); \
D(C_CNTRL, 1, 24, "POSIX control characters"); \
D(C_DIGIT, 1, 24, "decimal digits"); \
D(C_EDCMD, 0, 32, "editor x_locate_word() command"); \
D(C_EDGLB, 0, 32, "escape for globbing"); \
D(C_EDNWC, 0, 32, "editor non-word characters"); \
D(C_EDQ, 0, 32, "editor quotes for tab completion"); \
D(C_GRAPH, 1, 24, "POSIX graphical (alphanumerical plus punctuation)"); \
D(C_HEXLT, 1, 24, "hex letter"); \
D(C_IFS, 0, 24, "IFS whitespace, IFS non-whitespace, NUL"); \
D(C_IFSWS, 0, 24, "IFS whitespace candidates"); \
D(C_LEX1, 0, 24, "(for the lexer)"); \
D(C_LOWER, 1, 24, "lowercase letters"); \
D(C_MFS, 3, 24, "separator for motion"); \
D(C_OCTAL, 1, 24, "octal digit"); \
D(C_PATMO, 0, 24, "pattern magical operator, except space"); \
D(C_PRINT, 1, 24, "POSIX printable characters (graph plus space)"); \
D(C_PUNCT, 0, 40, "POSIX punctuation"); \
D(C_QUOTE, 0, 40, "characters requiring quoting, minus space"); \
D(C_SEDEC, 1, 24, "hexadecimal digit"); \
D(C_SPACE, 1, 24, "POSIX space class"); \
D(C_SUB1, 0, 24, "substitution operations with word"); \
D(C_SUB2, 0, 24, "substitution operations with pattern"); \
D(C_UPPER, 1, 24, "uppercase letters"); \
D(C_VAR1, 0, 24, "substitution parameters, other than positional"); \
} while (/* CONSTCOND */ 0)
DC_();
#undef D
putchar('\n');
for (i = 0; i <= 31; ++i)
vert[i][j] = 0;
j = 0;
#define D(x) do { \
printf("%s\t%s\n", #x, vert[j++]); \
} while (/* CONSTCOND */ 0)
DCi();
#undef D
putchar('\n');
#define D(x) do { \
y = 0; \
while (BIT(y) != x) \
if (y++ == 31) { \
printf("E: %s=%X\n", #x, x); \
exit(255); \
} \
ci[y].name = #x; \
ci[y].val = x; \
ci[y].bit = y; \
} while (/* CONSTCOND */ 0)
DCi();
#undef D
qsort(ci, NELEM(ci), sizeof(struct ciname), &cicomp);
for (i = 0; i < NELEM(ci); ++i) {
cibit[ci[i].bit] = &ci[i];
printf("BIT(%d)\t%08X %s\n", ci[i].bit, ci[i].val, ci[i].name);
}
putchar('\n');
#define D(x) do { \
if (x != CiIFS && (ksh_ctypes[i] & x)) { \
if (z) { \
printf(" | "); \
z += 3; \
} \
printf("%s", #x); \
z += strlen(#x); \
} \
} while (/* CONSTCOND */ 0)
printf("// shf.c begin {{{\n/* fast character classes */\n");
printf("const kui tpl_ctypes[128] = {\n");
x = 0, y = 0; /* fsck GCC */
for (i = 0; i <= 0x7F; ++i) {
if (!(i & 0x0F)) {
printf("\t/* 0x%02X */\n", i);
x = 1; /* did newline */
}
if (x) {
printf("\t");
x = 0;
y = 16;
}
z = 0;
DCi();
if (i != 0x7F) {
putchar(',');
++z;
}
if (((i & 0x03) == 0x03) || ((i & 0x59) == 0x41)) {
putchar('\n');
x = 1;
} else {
if ((i & 0x58) == 0x40)
y = 24;
tabto(z, y);
if (z > 16) {
y = 8;
tabto(z, 24);
}
}
}
#undef D
printf("};\n// shf.c end }}}\n\n");
#define putrangef(len,cond,count) do { \
for (count = 0; count <= 0xFF; ++count) \
if (ksh_ctypes[count] & cond) \
len += v(count); \
} while (/* CONSTCOND */ 0)
#define putranget(len,cond,count,hold,flag) do { \
flag = 0; \
count = -1; \
while (1) { \
++count; \
if (!flag) { \
if (count > 0xFF) \
break; \
if (ksh_ctypes[count] & cond) { \
hold = count; \
flag = 1; \
} \
} else if (count > 0xFF || \
!(ksh_ctypes[count] & cond)) { \
flag = count - 1; \
len += v(hold); \
if (flag == hold + 1) { \
len += v(flag); \
} else if (flag > hold) { \
printf("‥"); \
len += 1 + v(flag); \
} \
if (count > 0xFF) \
break; \
flag = 0; \
} \
} \
} while (/* CONSTCOND */ 0)
#define putrangea(len,cond,count,hold,flag) do { \
flag = 0; \
count = -1; \
while (1) { \
++count; \
if (!flag) { \
if (count > 0xFF) \
break; \
if (ksh_ctypes[count] & cond) { \
len += v(count); \
hold = count; \
flag = count == '0' || \
count == 'A' || \
count == 'a'; \
} \
} else if (count > 0xFF || \
!(ksh_ctypes[count] & cond)) { \
flag = count - 1; \
if (flag == hold + 1) { \
len += v(flag); \
} else if (flag > hold) { \
printf("‥"); \
len += 1 + v(flag); \
} \
if (count > 0xFF) \
break; \
flag = 0; \
} else if ((count - 1) == '9' || \
(count - 1) == 'Z' || \
(count - 1) == 'z') { \
flag = count - 1; \
if (flag == hold + 1) { \
len += v(flag); \
} else if (flag > hold) { \
printf("‥"); \
len += 1 + v(flag); \
} \
len += v(count); \
flag = 0; \
} \
} \
} while (/* CONSTCOND */ 0)
#define DD(n,x,ign) do { \
y = 0; \
while (BIT(y) != x) \
if (y++ == 31) { \
printf("E: %s=%X\n", n, x); \
exit(255); \
} \
printf("#define %s\tBIT(%d)", n, y); \
if (x != ign) { \
printf("\t/* "); \
y = 3; \
switch (x) { \
case CiCNTRL: \
case CiUPPER: case CiLOWER: \
case CiHEXLT: case CiOCTAL: \
putranget(y, x, i, j, k); \
break; \
default: \
putrangef(y, x, i); \
} \
tabto(y, 32); \
printf("*/"); \
} \
putchar('\n'); \
} while (/* CONSTCOND */ 0)
DD("??IFS", CiIFS, CiCNTRL);
printf("// sh.h begin {{{\n/*\n * fast character classes\n */\n\n");
printf("/* internal types, do not reference */\n\n");
#define D(x) DD(#x, x, CiIFS)
printf("/* initially empty — filled at runtime from $IFS */\n");
DCi();
#undef DD
#undef D
printf("/* out of space, but one for *@ would make sense, possibly others */\n\n");
printf("/* compile-time initialised, ASCII only */\n"
"extern const kui tpl_ctypes[128];\n"
"/* run-time, contains C_IFS as well, full 2⁸ octet range */\n"
"EXTERN kui ksh_ctypes[256];\n"
"/* first octet of $IFS, for concatenating \"$*\" */\n"
"EXTERN char ifs0;\n"
"\n");
#define expcond(cond,len,cnt,flg,fnd,cnd) do { \
flg = 1; \
for (cnt = 0; cnt < NELEM(ci); ++cnt) \
if (cond == ci[cnt].val) { \
len += printf("%s", \
ci[cnt].name); \
flg = 0; \
break; \
} \
if (flg) { \
cnd = cond; \
fnd = 0; \
if (cnd != C_GRAPH && \
(cnd & C_GRAPH) == C_GRAPH) { \
len += printf("%s%s", \
fnd ? " | " : "(", \
"C_GRAPH"); \
fnd = 1; \
cnd &= ~C_GRAPH; \
} \
if (cnd != C_PUNCT && \
(cnd & C_PUNCT) == C_PUNCT) { \
len += printf("%s%s", \
fnd ? " | " : "(", \
"C_PUNCT"); \
fnd = 1; \
cnd &= ~C_PUNCT; \
} \
for (cnt = 0; cnt < NELEM(ci); ++cnt) \
if (cnd & ci[cnt].val) { \
len += printf("%s%s", \
fnd ? " | " : "(", \
ci[cnt].name); \
fnd = 1; \
} \
if (!fnd) { \
printf("<ERR>\n"); \
exit(255); \
} \
putchar(')'); \
++len; \
} \
} while (/* CONSTCOND */ 0)
set_ccls(); /* drop CiIFS from ksh_ctypes */
#define D(cond,rng,tabstop,lbl) do { \
printf("/* "); \
y = 3; \
switch (rng) { \
case 0: \
putrangef(y, cond, i); \
break; \
case 1: \
putranget(y, cond, i, j, k); \
break; \
case 2: \
putrangea(y, cond, i, j, k); \
break; \
case 3: \
for (i = 0; i <= 0x7F; ++i) { \
if (!!(ksh_ctypes[i] & cond) ^ \
!!(ksh_ctypes[i] & ( \
C_ALNUX | CiSS))) \
continue; \
printf("<ERR(%02X)>\n", i); \
exit(255); \
} \
y += printf("not alnux or dollar"); \
break; \
} \
if (cond & CiIFS) \
y += printf(" + $IFS"); \
tabto(y, tabstop); \
printf("%s */\n#define %s\t", lbl, #cond); \
expcond(cond, y, i, z, j, k); \
putchar('\n'); \
} while (/* CONSTCOND */ 0)
printf("/* external types */\n\n");
DC_();
#undef D
#define D(x,lbl) do { \
y = printf("#define %s", #x); \
tabto(y, 16); \
expcond(x, y, i, z, j, k); \
tabto(y, 32); \
y += printf("/* "); \
putrangef(y, x, i); \
tabto(y, 40); \
printf("%s */\n", lbl); \
} while (/* CONSTCOND */ 0)
printf("\n/* individual chars you might like */\n");
D(C_ANGLE, "angle brackets");
D(C_COLON, "colon");
D(C_CR, "ASCII carriage return");
D(C_DOLAR, "dollar sign");
D(C_EQUAL, "equals sign");
D(C_GRAVE, "accent gravis");
D(C_HASH, "hash sign");
D(C_LF, "ASCII line feed");
D(C_MINUS, "hyphen-minus");
printf("#ifdef MKSH_WITH_TEXTMODE\n"
"#define C_NL\t(CiNL | CiCR)\t/*\tCR or LF under OS/2 TEXTMODE */\n"
"#else\n"
"#define C_NL\tCiNL\t\t/*\tLF only like under Unix */\n"
"#endif\n");
D(C_NUL, "ASCII NUL");
D(C_PLUS, "plus sign");
D(C_QC, "quote characters");
D(C_QUEST, "question mark");
D(C_SPC, "ASCII space");
D(C_TAB, "ASCII horizontal tabulator");
D(C_UNDER, "underscore");
printf("// sh.h end }}}\n");
return (ksh_ctypes[0] == CiNUL);
}
#endif
|