1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
|
/* $OpenBSD: parse.y,v 1.90 2002/06/09 20:20:58 dhartmei Exp $ */
/*
* Copyright (c) 2001 Markus Friedl. All rights reserved.
* Copyright (c) 2001 Daniel Hartmeier. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
%{
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <net/if.h>
#include <netinet/in.h>
#include <netinet/in_systm.h>
#include <netinet/ip.h>
#include <netinet/ip_icmp.h>
#include <netinet/icmp6.h>
#include <net/pfvar.h>
#include <arpa/inet.h>
#include <stdio.h>
#include <stdlib.h>
#include <ifaddrs.h>
#include <netdb.h>
#include <stdarg.h>
#include <errno.h>
#include <string.h>
#include <ctype.h>
#include <err.h>
#include <pwd.h>
#include "pfctl_parser.h"
static struct pfctl *pf = NULL;
static FILE *fin = NULL;
static int debug = 0;
static int lineno = 1;
static int errors = 0;
static int natmode = 0;
struct node_if {
char ifname[IFNAMSIZ];
u_int8_t not;
struct node_if *next;
};
struct node_proto {
u_int8_t proto;
struct node_proto *next;
};
struct node_host {
struct pf_addr_wrap addr;
struct pf_addr mask;
u_int8_t af;
u_int8_t not;
u_int8_t noroute;
struct node_host *next;
u_int32_t ifindex; /* link-local IPv6 addrs */
};
struct node_port {
u_int16_t port[2];
u_int8_t op;
struct node_port *next;
};
struct node_uid {
uid_t uid[2];
u_int8_t op;
struct node_uid *next;
};
struct node_gid {
gid_t gid[2];
u_int8_t op;
struct node_gid *next;
};
struct node_icmp {
u_int8_t code;
u_int8_t type;
u_int8_t proto;
struct node_icmp *next;
};
struct node_state_opt {
enum { PF_STATE_OPT_MAX=0, PF_STATE_OPT_TIMEOUT=1 };
int type;
union {
u_int32_t max_states;
struct {
int number;
u_int32_t seconds;
} timeout;
} data;
struct node_state_opt *next;
};
struct peer {
struct node_host *host;
struct node_port *port;
};
int rule_consistent(struct pf_rule *);
int yyparse(void);
void ipmask(struct pf_addr *, u_int8_t);
void expand_rdr(struct pf_rdr *, struct node_if *, struct node_host *,
struct node_host *);
void expand_nat(struct pf_nat *, struct node_host *, struct node_host *);
void expand_label_addr(const char *, char *, u_int8_t, struct node_host *);
void expand_label_port(const char *, char *, struct node_port *);
void expand_label_proto(const char *, char *, u_int8_t);
void expand_label_nr(const char *, char *);
void expand_label(char *, u_int8_t, struct node_host *, struct node_port *,
struct node_host *, struct node_port *, u_int8_t);
void expand_rule(struct pf_rule *, struct node_if *, struct node_proto *,
struct node_host *, struct node_port *, struct node_host *,
struct node_port *, struct node_uid *, struct node_gid *,
struct node_icmp *);
struct sym {
struct sym *next;
char *nam;
char *val;
};
struct sym *symhead = NULL;
int symset(char *name, char *val);
char * symget(char *name);
struct ifaddrs *ifa0_lookup(char *ifa_name);
struct ifaddrs *ifa4_lookup(char *ifa_name);
struct ifaddrs *ifa6_lookup(char *ifa_name);
typedef struct {
union {
u_int32_t number;
int i;
char *string;
struct {
u_int8_t b1;
u_int8_t b2;
u_int16_t w;
} b;
struct range {
int a;
int b;
int t;
} range;
struct node_if *interface;
struct node_proto *proto;
struct node_icmp *icmp;
struct node_host *host;
struct node_port *port;
struct node_uid *uid;
struct node_gid *gid;
struct node_state_opt *state_opt;
struct peer peer;
struct {
struct peer src, dst;
} fromto;
struct {
char *string;
struct pf_addr *addr;
u_int8_t rt;
u_int8_t af;
} route;
struct redirection {
struct node_host *address;
struct range rport;
} *redirection;
struct {
int action;
struct node_state_opt *options;
} keep_state;
} v;
int lineno;
} YYSTYPE;
%}
%token PASS BLOCK SCRUB RETURN IN OUT LOG LOGALL QUICK ON FROM TO FLAGS
%token RETURNRST RETURNICMP RETURNICMP6 PROTO INET INET6 ALL ANY ICMPTYPE
%token ICMP6TYPE CODE KEEP MODULATE STATE PORT RDR NAT BINAT ARROW NODF
%token MINTTL IPV6ADDR ERROR ALLOWOPTS FASTROUTE ROUTETO DUPTO NO LABEL
%token NOROUTE FRAGMENT USER GROUP MAXMSS MAXIMUM TTL
%token <v.string> STRING
%token <v.number> NUMBER
%token <v.i> PORTUNARY PORTBINARY
%type <v.interface> interface if_list if_item_not if_item
%type <v.number> port icmptype icmp6type minttl uid gid maxmss
%type <v.i> no dir log quick af nodf allowopts fragment
%type <v.b> action flag flags blockspec
%type <v.range> dport rport
%type <v.proto> proto proto_list proto_item
%type <v.icmp> icmpspec icmp_list icmp6_list icmp_item icmp6_item
%type <v.fromto> fromto
%type <v.peer> ipportspec
%type <v.host> ipspec xhost host address host_list IPV6ADDR
%type <v.port> portspec port_list port_item
%type <v.uid> uids uid_list uid_item
%type <v.gid> gids gid_list gid_item
%type <v.route> route
%type <v.redirection> redirection
%type <v.string> label
%type <v.keep_state> keep
%type <v.state_opt> state_opt_spec state_opt_list state_opt_item
%%
ruleset : /* empty */
| ruleset '\n'
| ruleset pfrule '\n'
| ruleset natrule '\n'
| ruleset binatrule '\n'
| ruleset rdrrule '\n'
| ruleset varset '\n'
| ruleset error '\n' { errors++; }
;
varset : STRING PORTUNARY STRING
{
if (pf->opts & PF_OPT_VERBOSE)
printf("%s = %s\n", $1, $3);
if (symset($1, $3) == -1) {
yyerror("cannot store variable %s", $1);
YYERROR;
}
}
;
pfrule : action dir log quick interface route af proto fromto
uids gids flags icmpspec keep fragment nodf minttl
maxmss allowopts label
{
struct pf_rule r;
struct node_state_opt *o;
if (natmode) {
yyerror("filter rule not permitted in nat mode");
YYERROR;
}
memset(&r, 0, sizeof(r));
r.action = $1.b1;
if ($1.b2) {
r.rule_flag |= PFRULE_RETURNRST;
r.return_ttl = $1.w;
} else
r.return_icmp = $1.w;
r.direction = $2;
r.log = $3;
r.quick = $4;
r.af = $7;
r.flags = $12.b1;
r.flagset = $12.b2;
r.keep_state = $14.action;
o = $14.options;
while (o) {
struct node_state_opt *p = o;
switch (o->type) {
case PF_STATE_OPT_MAX:
if (r.max_states) {
yyerror("state option 'max' "
"multiple definitions");
YYERROR;
}
r.max_states = o->data.max_states;
break;
case PF_STATE_OPT_TIMEOUT:
if (r.timeout[o->data.timeout.number]) {
yyerror("state timeout %s "
"multiple definitions",
pf_timeouts[o->data.
timeout.number].name);
YYERROR;
}
r.timeout[o->data.timeout.number] =
o->data.timeout.seconds;
}
o = o->next;
free(p);
}
if ($15)
r.rule_flag |= PFRULE_FRAGMENT;
if ($16)
r.rule_flag |= PFRULE_NODF;
if ($17)
r.min_ttl = $17;
if ($18)
r.max_mss = $18;
r.allow_opts = $19;
if ($6.rt) {
r.rt = $6.rt;
if ($6.string) {
memcpy(r.rt_ifname, $6.string,
sizeof(r.rt_ifname));
free($6.string);
}
if ($6.addr) {
if (!r.af)
r.af = $6.af;
else if (r.af != $6.af) {
yyerror("address family"
" mismatch");
YYERROR;
}
memcpy(&r.rt_addr, $6.addr,
sizeof(r.rt_addr));
free($6.addr);
}
}
if ($20) {
if (strlen($20) >= PF_RULE_LABEL_SIZE) {
yyerror("rule label too long (max "
"%d chars)", PF_RULE_LABEL_SIZE-1);
YYERROR;
}
strlcpy(r.label, $20, sizeof(r.label));
free($20);
}
expand_rule(&r, $5, $8, $9.src.host, $9.src.port,
$9.dst.host, $9.dst.port, $10, $11, $13);
}
;
action : PASS { $$.b1 = PF_PASS; $$.b2 = $$.w = 0; }
| BLOCK blockspec { $$ = $2; $$.b1 = PF_DROP; }
| SCRUB { $$.b1 = PF_SCRUB; $$.b2 = $$.w = 0; }
;
blockspec : /* empty */ { $$.b2 = 0; $$.w = 0; }
| RETURNRST { $$.b2 = 1; $$.w = 0;}
| RETURNRST '(' TTL NUMBER ')' {
$$.w = $4;
$$.b2 = 1;
}
| RETURNICMP {
$$.b2 = 0;
$$.w = (ICMP_UNREACH << 8) | ICMP_UNREACH_PORT;
}
| RETURNICMP6 {
$$.b2 = 0;
$$.w = (ICMP6_DST_UNREACH << 8) |
ICMP6_DST_UNREACH_NOPORT;
}
| RETURNICMP '(' NUMBER ')' {
$$.w = (ICMP_UNREACH << 8) | $3;
$$.b2 = 0;
}
| RETURNICMP '(' STRING ')' {
const struct icmpcodeent *p;
if ((p = geticmpcodebyname(ICMP_UNREACH, $3,
AF_INET)) == NULL) {
yyerror("unknown icmp code %s", $3);
YYERROR;
}
$$.w = (p->type << 8) | p->code;
$$.b2 = 0;
}
| RETURNICMP6 '(' NUMBER ')' {
$$.w = (ICMP6_DST_UNREACH << 8) | $3;
$$.b2 = 0;
}
| RETURNICMP6 '(' STRING ')' {
const struct icmpcodeent *p;
if ((p = geticmpcodebyname(ICMP6_DST_UNREACH, $3,
AF_INET6)) == NULL) {
yyerror("unknown icmp code %s", $3);
YYERROR;
}
$$.w = (p->type << 8) | p->code;
$$.b2 = 0;
}
;
dir : IN { $$ = PF_IN; }
| OUT { $$ = PF_OUT; }
;
log : /* empty */ { $$ = 0; }
| LOG { $$ = 1; }
| LOGALL { $$ = 2; }
;
quick : /* empty */ { $$ = 0; }
| QUICK { $$ = 1; }
;
interface : /* empty */ { $$ = NULL; }
| ON if_item_not { $$ = $2; }
| ON '{' if_list '}' { $$ = $3; }
;
if_list : if_item_not { $$ = $1; }
| if_list ',' if_item_not { $3->next = $1; $$ = $3; }
;
if_item_not : '!' if_item { $$ = $2; $$->not = 1; }
| if_item { $$ = $1; }
if_item : STRING {
if (ifa0_lookup($1) == 0) {
yyerror("unknown interface %s", $1);
YYERROR;
}
$$ = malloc(sizeof(struct node_if));
if ($$ == NULL)
err(1, "if_item: malloc");
strlcpy($$->ifname, $1, IFNAMSIZ);
$$->not = 0;
$$->next = NULL;
}
;
af : /* empty */ { $$ = 0; }
| INET { $$ = AF_INET; }
| INET6 { $$ = AF_INET6; }
proto : /* empty */ { $$ = NULL; }
| PROTO proto_item { $$ = $2; }
| PROTO '{' proto_list '}' { $$ = $3; }
;
proto_list : proto_item { $$ = $1; }
| proto_list ',' proto_item { $3->next = $1; $$ = $3; }
;
proto_item : NUMBER {
struct protoent *p;
if ((p = getprotobynumber($1)) == NULL) {
yyerror("unknown protocol %d", $1);
YYERROR;
}
$$ = malloc(sizeof(struct node_proto));
if ($$ == NULL)
err(1, "proto_item: malloc");
$$->proto = p->p_proto;
$$->next = NULL;
}
| STRING {
struct protoent *p;
if ((p = getprotobyname($1)) == NULL) {
yyerror("unknown protocol %s", $1);
YYERROR;
}
$$ = malloc(sizeof(struct node_proto));
if ($$ == NULL)
err(1, "proto_item: malloc");
$$->proto = p->p_proto;
$$->next = NULL;
}
;
fromto : ALL {
$$.src.host = NULL;
$$.src.port = NULL;
$$.dst.host = NULL;
$$.dst.port = NULL;
}
| FROM ipportspec TO ipportspec {
$$.src = $2;
$$.dst = $4;
}
;
ipportspec : ipspec { $$.host = $1; $$.port = NULL; }
| ipspec PORT portspec {
$$.host = $1;
$$.port = $3;
}
;
ipspec : ANY { $$ = NULL; }
| xhost { $$ = $1; }
| '{' host_list '}' { $$ = $2; }
;
host_list : xhost { $$ = $1; }
| host_list ',' xhost {
/* both $1 and $3 may be lists, so join them */
$$ = $3;
while ($3->next)
$3 = $3->next;
$3->next = $1;
}
;
xhost : '!' host { $$ = $2; $$->not = 1; }
| host { $$ = $1; }
| NOROUTE {
$$ = calloc(1, sizeof(struct node_host));
if ($$ == NULL)
err(1, "xhost: calloc");
$$->noroute = 1;
}
;
host : address {
struct node_host *n;
for (n = $1; n; n = n->next)
if (n->af == AF_INET)
ipmask(&n->mask, 32);
else
ipmask(&n->mask, 128);
$$ = $1;
}
| address '/' NUMBER {
struct node_host *n;
for (n = $1; n; n = n->next) {
if ($1->af == AF_INET) {
if ($3 < 0 || $3 > 32) {
yyerror(
"illegal netmask value %d",
$3);
YYERROR;
}
} else {
if ($3 < 0 || $3 > 128) {
yyerror(
"illegal netmask value %d",
$3);
YYERROR;
}
}
ipmask(&n->mask, $3);
}
$$ = $1;
}
;
address : '(' STRING ')' {
$$ = calloc(1, sizeof(struct node_host));
if ($$ == NULL)
err(1, "address: calloc");
$$->af = 0;
$$->addr.addr_dyn = (struct pf_addr_dyn *)1;
strncpy($$->addr.addr.pfa.ifname, $2,
sizeof($$->addr.addr.pfa.ifname));
}
| STRING {
if (ifa0_lookup($1)) {
struct ifaddrs *ifa;
/* an interface with this name exists */
if ((ifa = ifa4_lookup($1))) {
struct sockaddr_in *sin =
(struct sockaddr_in *)
ifa->ifa_addr;
$$ = calloc(1,
sizeof(struct node_host));
if ($$ == NULL)
err(1, "address: calloc");
$$->af = AF_INET;
$$->addr.addr_dyn = NULL;
memcpy(&$$->addr.addr, &sin->sin_addr,
sizeof(u_int32_t));
} else if ((ifa = ifa6_lookup($1))) {
struct sockaddr_in6 *sin6 =
(struct sockaddr_in6 *)
ifa->ifa_addr;
$$ = calloc(1,
sizeof(struct node_host));
if ($$ == NULL)
err(1, "address: calloc");
$$->af = AF_INET6;
$$->addr.addr_dyn = NULL;
memcpy(&$$->addr.addr, &sin6->sin6_addr,
sizeof(struct pf_addr));
} else {
yyerror("interface %s has no IP "
"addresses", $1);
YYERROR;
}
} else {
struct node_host *h = NULL, *n;
struct addrinfo hints, *res0, *res;
int error;
memset(&hints, 0, sizeof(hints));
hints.ai_family = PF_UNSPEC;
hints.ai_socktype = SOCK_STREAM; /* DUMMY */
error = getaddrinfo($1, NULL, &hints, &res0);
if (error) {
yyerror("cannot resolve %s: %s",
$1, gai_strerror(error));
YYERROR;
}
for (res = res0; res; res = res->ai_next) {
if (res->ai_family != AF_INET &&
res->ai_family != AF_INET6)
continue;
n = calloc(1, sizeof(struct node_host));
if (n == NULL)
err(1, "address: calloc");
n->af = res->ai_family;
n->addr.addr_dyn = NULL;
if (res->ai_family == AF_INET)
memcpy(&n->addr.addr,
&((struct sockaddr_in *)
res->ai_addr)
->sin_addr.s_addr,
sizeof(struct in_addr));
else {
memcpy(&n->addr.addr,
&((struct sockaddr_in6 *)
res->ai_addr)
->sin6_addr.s6_addr,
sizeof(struct in6_addr));
n->ifindex =
((struct sockaddr_in6 *)
res->ai_addr)
->sin6_scope_id;
}
n->next = h;
h = n;
}
freeaddrinfo(res0);
if (h == NULL) {
yyerror("no IP address found for %s", $1);
YYERROR;
}
$$ = h;
}
}
| NUMBER '.' NUMBER '.' NUMBER '.' NUMBER {
if ($1 < 0 || $3 < 0 || $5 < 0 || $7 < 0 ||
$1 > 255 || $3 > 255 || $5 > 255 || $7 > 255) {
yyerror("illegal ip address %d.%d.%d.%d",
$1, $3, $5, $7);
YYERROR;
}
$$ = calloc(1, sizeof(struct node_host));
if ($$ == NULL)
err(1, "address: calloc");
$$->af = AF_INET;
$$->addr.addr_dyn = NULL;
$$->addr.addr.addr32[0] = htonl(($1 << 24) |
($3 << 16) | ($5 << 8) | $7);
}
| IPV6ADDR { $$ = $1; }
;
portspec : port_item { $$ = $1; }
| '{' port_list '}' { $$ = $2; }
;
port_list : port_item { $$ = $1; }
| port_list ',' port_item { $3->next = $1; $$ = $3; }
;
port_item : port {
$$ = malloc(sizeof(struct node_port));
if ($$ == NULL)
err(1, "port_item: malloc");
$$->port[0] = $1;
$$->port[1] = $1;
$$->op = PF_OP_EQ;
$$->next = NULL;
}
| PORTUNARY port {
$$ = malloc(sizeof(struct node_port));
if ($$ == NULL)
err(1, "port_item: malloc");
$$->port[0] = $2;
$$->port[1] = $2;
$$->op = $1;
$$->next = NULL;
}
| port PORTBINARY port {
$$ = malloc(sizeof(struct node_port));
if ($$ == NULL)
err(1, "port_item: malloc");
$$->port[0] = $1;
$$->port[1] = $3;
$$->op = $2;
$$->next = NULL;
}
;
port : NUMBER {
if ($1 < 0 || $1 > 65535) {
yyerror("illegal port value %d", $1);
YYERROR;
}
$$ = htons($1);
}
| STRING {
struct servent *s = NULL;
s = getservbyname($1, "tcp");
if (s == NULL)
s = getservbyname($1, "udp");
if (s == NULL) {
yyerror("unknown protocol %s", $1);
YYERROR;
}
$$ = s->s_port;
}
;
uids : /* empty */ { $$ = NULL; }
| USER uid_item { $$ = $2; }
| USER '{' uid_list '}' { $$ = $3; }
;
uid_list : uid_item { $$ = $1; }
| uid_list ',' uid_item { $3->next = $1; $$ = $3; }
;
uid_item : uid {
$$ = malloc(sizeof(struct node_uid));
if ($$ == NULL)
err(1, "uid_item: malloc");
$$->uid[0] = $1;
$$->uid[1] = $1;
$$->op = PF_OP_EQ;
$$->next = NULL;
}
| PORTUNARY uid {
if ($2 == UID_MAX && $1 != PF_OP_EQ && $1 != PF_OP_NE) {
yyerror("user unknown requires operator = or !=");
YYERROR;
}
$$ = malloc(sizeof(struct node_uid));
if ($$ == NULL)
err(1, "uid_item: malloc");
$$->uid[0] = $2;
$$->uid[1] = $2;
$$->op = $1;
$$->next = NULL;
}
| uid PORTBINARY uid {
if ($1 == UID_MAX || $3 == UID_MAX) {
yyerror("user unknown requires operator = or !=");
YYERROR;
}
$$ = malloc(sizeof(struct node_uid));
if ($$ == NULL)
err(1, "uid_item: malloc");
$$->uid[0] = $1;
$$->uid[1] = $3;
$$->op = $2;
$$->next = NULL;
}
;
uid : NUMBER {
if ($1 < 0 || $1 >= UID_MAX) {
yyerror("illegal uid value %d", $1);
YYERROR;
}
$$ = $1;
}
| STRING {
if (!strcmp($1, "unknown"))
$$ = UID_MAX;
else {
struct passwd *pw;
if ((pw = getpwnam($1)) == NULL) {
yyerror("unknown user %s", $1);
YYERROR;
}
$$ = pw->pw_uid;
}
}
;
gids : /* empty */ { $$ = NULL; }
| GROUP gid_item { $$ = $2; }
| GROUP '{' gid_list '}' { $$ = $3; }
;
gid_list : gid_item { $$ = $1; }
| gid_list ',' gid_item { $3->next = $1; $$ = $3; }
;
gid_item : gid {
$$ = malloc(sizeof(struct node_gid));
if ($$ == NULL)
err(1, "gid_item: malloc");
$$->gid[0] = $1;
$$->gid[1] = $1;
$$->op = PF_OP_EQ;
$$->next = NULL;
}
| PORTUNARY gid {
if ($2 == GID_MAX && $1 != PF_OP_EQ && $1 != PF_OP_NE) {
yyerror("group unknown requires operator = or !=");
YYERROR;
}
$$ = malloc(sizeof(struct node_gid));
if ($$ == NULL)
err(1, "gid_item: malloc");
$$->gid[0] = $2;
$$->gid[1] = $2;
$$->op = $1;
$$->next = NULL;
}
| gid PORTBINARY gid {
if ($1 == GID_MAX || $3 == GID_MAX) {
yyerror("group unknown requires operator = or !=");
YYERROR;
}
$$ = malloc(sizeof(struct node_gid));
if ($$ == NULL)
err(1, "gid_item: malloc");
$$->gid[0] = $1;
$$->gid[1] = $3;
$$->op = $2;
$$->next = NULL;
}
;
gid : NUMBER {
if ($1 < 0 || $1 >= GID_MAX) {
yyerror("illegal gid value %d", $1);
YYERROR;
}
$$ = $1;
}
| STRING {
if (!strcmp($1, "unknown"))
$$ = GID_MAX;
else {
struct passwd *pw;
if ((pw = getpwnam($1)) == NULL) {
yyerror("unknown group %s", $1);
YYERROR;
}
$$ = pw->pw_uid;
}
}
;
flag : STRING {
int f;
if ((f = parse_flags($1)) < 0) {
yyerror("bad flags %s", $1);
YYERROR;
}
$$.b1 = f;
}
;
flags : /* empty */ { $$.b1 = 0; $$.b2 = 0; }
| FLAGS flag { $$.b1 = $2.b1; $$.b2 = PF_TH_ALL; }
| FLAGS flag "/" flag { $$.b1 = $2.b1; $$.b2 = $4.b1; }
| FLAGS "/" flag { $$.b1 = 0; $$.b2 = $3.b1; }
;
icmpspec : /* empty */ { $$ = NULL; }
| ICMPTYPE icmp_item { $$ = $2; }
| ICMPTYPE '{' icmp_list '}' { $$ = $3; }
| ICMP6TYPE icmp6_item { $$ = $2; }
| ICMP6TYPE '{' icmp6_list '}' { $$ = $3; }
;
icmp_list : icmp_item { $$ = $1; }
| icmp_list ',' icmp_item { $3->next = $1; $$ = $3; }
;
icmp6_list : icmp6_item { $$ = $1; }
| icmp6_list ',' icmp6_item { $3->next = $1; $$ = $3; }
;
icmp_item : icmptype {
$$ = malloc(sizeof(struct node_icmp));
if ($$ == NULL)
err(1, "icmp_item: malloc");
$$->type = $1;
$$->code = 0;
$$->proto = IPPROTO_ICMP;
$$->next = NULL;
}
| icmptype CODE NUMBER {
$$ = malloc(sizeof(struct node_icmp));
if ($$ == NULL)
err(1, "icmp_item: malloc");
if ($3 < 0 || $3 > 255) {
yyerror("illegal icmp code %d", $3);
YYERROR;
}
$$->type = $1;
$$->code = $3 + 1;
$$->proto = IPPROTO_ICMP;
$$->next = NULL;
}
| icmptype CODE STRING {
const struct icmpcodeent *p;
$$ = malloc(sizeof(struct node_icmp));
if ($$ == NULL)
err(1, "icmp_item: malloc");
$$->type = $1;
if ((p = geticmpcodebyname($1, $3,
AF_INET)) == NULL) {
yyerror("unknown icmp-code %s", $3);
YYERROR;
}
$$->code = p->code + 1;
$$->proto = IPPROTO_ICMP;
$$->next = NULL;
}
;
icmp6_item : icmp6type {
$$ = malloc(sizeof(struct node_icmp));
if ($$ == NULL)
err(1, "icmp_item: malloc");
$$->type = $1;
$$->code = 0;
$$->proto = IPPROTO_ICMPV6;
$$->next = NULL;
}
| icmp6type CODE NUMBER {
$$ = malloc(sizeof(struct node_icmp));
if ($$ == NULL)
err(1, "icmp_item: malloc");
if ($3 < 0 || $3 > 255) {
yyerror("illegal icmp6 code %d", $3);
YYERROR;
}
$$->type = $1;
$$->code = $3 + 1;
$$->proto = IPPROTO_ICMPV6;
$$->next = NULL;
}
| icmp6type CODE STRING {
const struct icmpcodeent *p;
$$ = malloc(sizeof(struct node_icmp));
if ($$ == NULL)
err(1, "icmp_item: malloc");
$$->type = $1;
if ((p = geticmpcodebyname($1, $3,
AF_INET6)) == NULL) {
yyerror("unknown icmp6-code %s", $3);
YYERROR;
}
$$->code = p->code + 1;
$$->proto = IPPROTO_ICMPV6;
$$->next = NULL;
}
;
icmptype : STRING {
const struct icmptypeent *p;
if ((p = geticmptypebyname($1, AF_INET)) == NULL) {
yyerror("unknown icmp-type %s", $1);
YYERROR;
}
$$ = p->type + 1;
}
| NUMBER {
if ($1 < 0 || $1 > 255) {
yyerror("illegal icmp type %d", $1);
YYERROR;
}
$$ = $1 + 1;
}
;
icmp6type : STRING {
const struct icmptypeent *p;
if ((p = geticmptypebyname($1, AF_INET6)) == NULL) {
yyerror("unknown ipv6-icmp-type %s", $1);
YYERROR;
}
$$ = p->type + 1;
}
| NUMBER {
if ($1 < 0 || $1 > 255) {
yyerror("illegal icmp6 type %d", $1);
YYERROR;
}
$$ = $1 + 1;
}
;
keep : /* empty */ { $$.action = 0; }
| KEEP STATE state_opt_spec {
$$.action = PF_STATE_NORMAL;
$$.options = $3;
}
| MODULATE STATE state_opt_spec {
$$.action = PF_STATE_MODULATE;
$$.options = $3;
}
;
state_opt_spec : /* empty */ { $$ = NULL; }
| '(' state_opt_list ')' { $$ = $2; }
;
state_opt_list : state_opt_item { $$ = $1; }
| state_opt_list ',' state_opt_item {
$$ = $1;
while ($1->next)
$1 = $1->next;
$1->next = $3;
}
;
state_opt_item : MAXIMUM NUMBER {
if ($2 <= 0) {
yyerror("illegal states max value %d", $2);
YYERROR;
}
$$ = calloc(1, sizeof(struct node_state_opt));
if ($$ == NULL)
err(1, "state_opt_item: calloc");
$$->type = PF_STATE_OPT_MAX;
$$->data.max_states = $2;
$$->next = NULL;
}
| STRING NUMBER {
int i;
for (i = 0; pf_timeouts[i].name &&
strcmp(pf_timeouts[i].name, $1); ++i);
if (!pf_timeouts[i].name) {
yyerror("illegal timeout name %s", $1);
YYERROR;
}
if ($2 < 0) {
yyerror("illegal timeout value %d", $2);
YYERROR;
}
$$ = calloc(1, sizeof(struct node_state_opt));
if ($$ == NULL)
err(1, "state_opt_item: calloc");
$$->type = PF_STATE_OPT_TIMEOUT;
$$->data.timeout.number = pf_timeouts[i].timeout;
$$->data.timeout.seconds = $2;
$$->next = NULL;
}
;
fragment : /* empty */ { $$ = 0; }
| FRAGMENT { $$ = 1; }
minttl : /* empty */ { $$ = 0; }
| MINTTL NUMBER {
if ($2 < 0 || $2 > 255) {
yyerror("illegal min-ttl value %d", $2);
YYERROR;
}
$$ = $2;
}
;
nodf : /* empty */ { $$ = 0; }
| NODF { $$ = 1; }
;
maxmss : /* empty */ { $$ = 0; }
| MAXMSS NUMBER {
if ($2 < 0) {
yyerror("illegal max-mss value %d", $2);
YYERROR;
}
$$ = $2;
}
;
allowopts : /* empty */ { $$ = 0; }
| ALLOWOPTS { $$ = 1; }
label : /* empty */ { $$ = NULL; }
| LABEL STRING {
if (($$ = strdup($2)) == NULL) {
yyerror("rule label strdup() failed");
YYERROR;
}
}
;
no : /* empty */ { $$ = 0; }
| NO { $$ = 1; }
;
rport : port {
$$.a = $1;
$$.b = $$.t = 0;
}
| port ':' '*' {
$$.a = $1;
$$.b = 0;
$$.t = PF_RPORT_RANGE;
}
;
redirection : /* empty */ { $$ = NULL; }
| ARROW address {
$$ = malloc(sizeof(struct redirection));
if ($$ == NULL)
err(1, "redirection: malloc");
if ($2->next) {
yyerror("multiple ip addresses");
YYERROR;
}
$$->address = $2;
$$->rport.a = $$->rport.b = $$->rport.t = 0;
}
| ARROW address PORT rport {
$$ = malloc(sizeof(struct redirection));
if ($$ == NULL)
err(1, "redirection: malloc");
if ($2->next) {
yyerror("multiple ip addresses");
YYERROR;
}
$$->address = $2;
$$->rport = $4;
}
;
natrule : no NAT interface af proto FROM ipspec TO ipspec redirection
{
struct pf_nat nat;
if (!natmode) {
yyerror("nat rule not permitted in filter mode");
YYERROR;
}
memset(&nat, 0, sizeof(nat));
nat.no = $1;
if ($3 != NULL) {
memcpy(nat.ifname, $3->ifname,
sizeof(nat.ifname));
nat.ifnot = $3->not;
free($3);
}
nat.af = $4;
if ($5 != NULL) {
nat.proto = $5->proto;
free($5);
}
if ($7 != NULL && $9 != NULL && $7->af != $9->af) {
yyerror("nat ip versions must match");
YYERROR;
}
if ($7 != NULL) {
if ($7->addr.addr_dyn != NULL) {
if (!nat.af) {
yyerror("address family (inet/"
"inet6) undefined");
YYERROR;
}
$7->af = nat.af;
}
if (nat.af && $7->af != nat.af) {
yyerror("nat ip versions must match");
YYERROR;
}
nat.af = $7->af;
memcpy(&nat.src.addr, &$7->addr,
sizeof(nat.src.addr));
memcpy(&nat.src.mask, &$7->mask,
sizeof(nat.src.mask));
nat.src.not = $7->not;
}
if ($9 != NULL) {
if ($9->addr.addr_dyn != NULL) {
if (!nat.af) {
yyerror("address family (inet/"
"inet6) undefined");
YYERROR;
}
$9->af = nat.af;
}
if (nat.af && $9->af != nat.af) {
yyerror("nat ip versions must match");
YYERROR;
}
nat.af = $9->af;
memcpy(&nat.dst.addr, &$9->addr,
sizeof(nat.dst.addr));
memcpy(&nat.dst.mask, &$9->mask,
sizeof(nat.dst.mask));
nat.dst.not = $9->not;
}
if (nat.no) {
if ($10 != NULL) {
yyerror("'no nat' rule does not need '->'");
YYERROR;
}
} else {
if ($10 == NULL || $10->address == NULL) {
yyerror("'nat' rule requires '-> address'");
YYERROR;
}
if ($10->address->addr.addr_dyn != NULL) {
if (!nat.af) {
yyerror("address family (inet/"
"inet6) undefined");
YYERROR;
}
$10->address->af = nat.af;
}
if (nat.af && $10->address->af != nat.af) {
yyerror("nat ip versions must match");
YYERROR;
}
nat.af = $10->address->af;
memcpy(&nat.raddr, &$10->address->addr,
sizeof(nat.raddr));
free($10->address);
free($10);
}
expand_nat(&nat, $7, $9);
}
;
binatrule : no BINAT interface af proto FROM address TO ipspec redirection
{
struct pf_binat binat;
if (!natmode) {
yyerror("binat rule not permitted in filter mode");
YYERROR;
}
memset(&binat, 0, sizeof(binat));
binat.no = $1;
if ($3 != NULL) {
memcpy(binat.ifname, $3->ifname,
sizeof(binat.ifname));
free($3);
}
binat.af = $4;
if ($5 != NULL) {
binat.proto = $5->proto;
free($5);
}
if ($7 != NULL && $9 != NULL && $7->af != $9->af) {
yyerror("binat ip versions must match");
YYERROR;
}
if ($7 != NULL) {
if ($7->next) {
yyerror("multiple binat ip addresses");
YYERROR;
}
if ($7->addr.addr_dyn != NULL) {
if (!binat.af) {
yyerror("address family (inet/"
"inet6) undefined");
YYERROR;
}
$7->af = binat.af;
}
if (binat.af && $7->af != binat.af) {
yyerror("binat ip versions must match");
YYERROR;
}
binat.af = $7->af;
memcpy(&binat.saddr, &$7->addr,
sizeof(binat.saddr));
free($7);
}
if ($9 != NULL) {
if ($9->next) {
yyerror("multiple binat ip addresses");
YYERROR;
}
if ($9->addr.addr_dyn != NULL) {
if (!binat.af) {
yyerror("address family (inet/"
"inet6) undefined");
YYERROR;
}
$9->af = binat.af;
}
if (binat.af && $9->af != binat.af) {
yyerror("binat ip versions must match");
YYERROR;
}
binat.af = $9->af;
memcpy(&binat.daddr, &$9->addr,
sizeof(binat.daddr));
memcpy(&binat.dmask, &$9->mask,
sizeof(binat.dmask));
binat.dnot = $9->not;
free($9);
}
if (binat.no) {
if ($10 != NULL) {
yyerror("'no binat' rule does not need"
" '->'");
YYERROR;
}
} else {
if ($10 == NULL || $10->address == NULL) {
yyerror("'binat' rule requires"
" '-> address'");
YYERROR;
}
if ($10->address->addr.addr_dyn != NULL) {
if (!binat.af) {
yyerror("address family (inet/"
"inet6) undefined");
YYERROR;
}
$10->address->af = binat.af;
}
if (binat.af && $10->address->af != binat.af) {
yyerror("binat ip versions must match");
YYERROR;
}
binat.af = $10->address->af;
memcpy(&binat.raddr, &$10->address->addr,
sizeof(binat.raddr));
free($10->address);
free($10);
}
pfctl_add_binat(pf, &binat);
}
rdrrule : no RDR interface af proto FROM ipspec TO ipspec dport redirection
{
struct pf_rdr rdr;
if (!natmode) {
yyerror("rdr rule not permitted in filter mode");
YYERROR;
}
memset(&rdr, 0, sizeof(rdr));
rdr.no = $1;
if ($3 != NULL) {
memcpy(rdr.ifname, $3->ifname,
sizeof(rdr.ifname));
rdr.ifnot = $3->not;
}
if ($5 != NULL) {
rdr.proto = $5->proto;
free($5);
}
if ($7 != NULL && $9 != NULL && $7->af != $9->af) {
yyerror("rdr ip versions must match");
YYERROR;
}
if ($7 != NULL) {
if ($7->addr.addr_dyn != NULL) {
if (!rdr.af) {
yyerror("address family (inet/"
"inet6) undefined");
YYERROR;
}
$7->af = rdr.af;
}
if (rdr.af && $7->af != rdr.af) {
yyerror("rdr ip versions must match");
YYERROR;
}
rdr.af = $7->af;
memcpy(&rdr.saddr, &$7->addr,
sizeof(rdr.saddr));
memcpy(&rdr.smask, &$7->mask,
sizeof(rdr.smask));
rdr.snot = $7->not;
}
if ($9 != NULL) {
if ($9->addr.addr_dyn != NULL) {
if (!rdr.af) {
yyerror("address family (inet/"
"inet6) undefined");
YYERROR;
}
$9->af = rdr.af;
}
if (rdr.af && $9->af != rdr.af) {
yyerror("rdr ip versions must match");
YYERROR;
}
rdr.af = $9->af;
memcpy(&rdr.daddr, &$9->addr,
sizeof(rdr.daddr));
memcpy(&rdr.dmask, &$9->mask,
sizeof(rdr.dmask));
rdr.dnot = $9->not;
}
rdr.dport = $10.a;
rdr.dport2 = $10.b;
rdr.opts |= $10.t;
if (rdr.no) {
if ($11 != NULL) {
yyerror("'no rdr' rule does not need '->'");
YYERROR;
}
} else {
if ($11 == NULL || $11->address == NULL) {
yyerror("'rdr' rule requires '-> address'");
YYERROR;
}
if ($11->address->addr.addr_dyn != NULL) {
if (!rdr.af) {
yyerror("address family (inet/"
"inet6) undefined");
YYERROR;
}
$11->address->af = rdr.af;
}
if (rdr.af && $11->address->af != rdr.af) {
yyerror("rdr ip versions must match");
YYERROR;
}
rdr.af = $11->address->af;
memcpy(&rdr.raddr, &$11->address->addr,
sizeof(rdr.raddr));
free($11->address);
rdr.rport = $11->rport.a;
rdr.opts |= $11->rport.t;
free($11);
}
if (rdr.proto && rdr.proto != IPPROTO_TCP &&
rdr.proto != IPPROTO_UDP &&
(rdr.dport || rdr.dport2 || rdr.rport)) {
yyerror("rdr ports are only valid for proto tcp/udp");
YYERROR;
}
expand_rdr(&rdr, $3, $7, $9);
}
;
dport : /* empty */ {
$$.a = $$.b = $$.t = 0;
}
| PORT port {
$$.a = $2;
$$.b = $$.t = 0;
}
| PORT port ':' port {
$$.a = $2;
$$.b = $4;
$$.t = PF_DPORT_RANGE;
}
;
route : /* empty */ {
$$.string = NULL;
$$.rt = 0;
$$.addr = NULL;
$$.af = 0;
}
| FASTROUTE {
$$.string = NULL;
$$.rt = PF_FASTROUTE;
$$.addr = NULL;
}
| ROUTETO STRING ':' address {
$$.string = strdup($2);
$$.rt = PF_ROUTETO;
if ($4->addr.addr_dyn != NULL) {
yyerror("route-to does not support"
" dynamic addresses");
YYERROR;
}
if ($4->next) {
yyerror("multiple routeto ip addresses");
YYERROR;
}
$$.addr = &$4->addr.addr;
$$.af = $4->af;
}
| ROUTETO STRING {
$$.string = strdup($2);
$$.rt = PF_ROUTETO;
$$.addr = NULL;
}
| DUPTO STRING ':' address {
$$.string = strdup($2);
$$.rt = PF_DUPTO;
if ($4->addr.addr_dyn != NULL) {
yyerror("dup-to does not support"
" dynamic addresses");
YYERROR;
}
if ($4->next) {
yyerror("multiple dupto ip addresses");
YYERROR;
}
$$.addr = &$4->addr.addr;
$$.af = $4->af;
}
| DUPTO STRING {
$$.string = strdup($2);
$$.rt = PF_DUPTO;
$$.addr = NULL;
}
;
%%
int
yyerror(char *fmt, ...)
{
va_list ap;
extern char *infile;
errors = 1;
va_start(ap, fmt);
fprintf(stderr, "%s:%d: ", infile, yylval.lineno);
vfprintf(stderr, fmt, ap);
fprintf(stderr, "\n");
va_end(ap);
return (0);
}
int
rule_consistent(struct pf_rule *r)
{
int problems = 0;
if (r->action == PF_SCRUB) {
if (r->quick) {
yyerror("quick does not apply to scrub");
problems++;
}
if (r->keep_state == PF_STATE_MODULATE) {
yyerror("modulate state does not apply to scrub");
problems++;
}
if (r->keep_state == PF_STATE_NORMAL) {
yyerror("keep state does not apply to scrub");
problems++;
}
if (r->src.port_op) {
yyerror("src port does not apply to scrub");
problems++;
}
if (r->dst.port_op) {
yyerror("dst port does not apply to scrub");
problems++;
}
if (r->type || r->code) {
yyerror("icmp-type/code does not apply to scrub");
problems++;
}
if (r->rule_flag & PFRULE_FRAGMENT) {
yyerror("fragment flag does not apply to scrub");
problems++;
}
} else {
if (r->rule_flag & PFRULE_NODF) {
yyerror("nodf only applies to scrub");
problems++;
}
if (r->min_ttl) {
yyerror("min-ttl only applies to scrub");
problems++;
}
if (r->max_mss) {
yyerror("max-mss only applies to scrub");
problems++;
}
}
if (r->proto != IPPROTO_TCP && r->proto != IPPROTO_UDP &&
(r->src.port_op || r->dst.port_op)) {
yyerror("port only applies to tcp/udp");
problems++;
}
if (r->proto != IPPROTO_ICMP && r->proto != IPPROTO_ICMPV6 &&
(r->type || r->code)) {
yyerror("icmp-type/code only applies to icmp");
problems++;
}
if (!r->af && (r->type || r->code)) {
yyerror("must indicate address family with icmp-type/code");
problems++;
}
if ((r->proto == IPPROTO_ICMP && r->af == AF_INET6) ||
(r->proto == IPPROTO_ICMPV6 && r->af == AF_INET)) {
yyerror("icmp version does not match address family");
problems++;
}
if (!(r->rule_flag & PFRULE_RETURNRST) && r->return_icmp &&
((r->af != AF_INET6 && (r->return_icmp>>8) != ICMP_UNREACH) ||
(r->af == AF_INET6 && (r->return_icmp>>8) != ICMP6_DST_UNREACH))) {
yyerror("return-icmp version does not match address family");
problems++;
}
if (r->keep_state == PF_STATE_MODULATE && r->proto &&
r->proto != IPPROTO_TCP) {
yyerror("modulate state can only be applied to TCP rules");
problems++;
}
if (r->allow_opts && r->action != PF_PASS) {
yyerror("allow-opts can only be specified for pass rules");
problems++;
}
if (!r->af && (r->src.addr.addr_dyn != NULL ||
r->dst.addr.addr_dyn != NULL)) {
yyerror("dynamic addresses require address family (inet/inet6)");
problems++;
}
if (r->rule_flag & PFRULE_FRAGMENT && (r->src.port_op ||
r->dst.port_op || r->flagset || r->type || r->code)) {
yyerror("fragments can be filtered only on IP header fields");
problems++;
}
return (-problems);
}
struct keywords {
const char *k_name;
int k_val;
};
/* macro gore, but you should've seen the prior indentation nightmare... */
#define CHECK_ROOT(T,r) \
do { \
if (r == NULL) { \
r = malloc(sizeof(T)); \
if (r == NULL) \
err(1, "malloc"); \
memset(r, 0, sizeof(T)); \
} \
} while (0)
#define FREE_LIST(T,r) \
do { \
T *p, *n = r; \
while (n != NULL) { \
p = n; \
n = n->next; \
free(p); \
} \
} while (0)
#define LOOP_THROUGH(T,n,r,C) \
do { \
T *n = r; \
while (n != NULL) { \
do { \
C; \
} while (0); \
n = n->next; \
} \
} while (0)
void
expand_label_addr(const char *name, char *label, u_int8_t af,
struct node_host *host)
{
char tmp[PF_RULE_LABEL_SIZE];
char *p;
while ((p = strstr(label, name)) != NULL) {
tmp[0] = 0;
strlcat(tmp, label, p-label+1);
if (host->not)
strlcat(tmp, "! ", PF_RULE_LABEL_SIZE);
if (host->addr.addr_dyn != NULL) {
strlcat(tmp, "(", PF_RULE_LABEL_SIZE);
strlcat(tmp, host->addr.addr.pfa.ifname,
PF_RULE_LABEL_SIZE);
strlcat(tmp, ")", PF_RULE_LABEL_SIZE);
} else if (!af || (PF_AZERO(&host->addr.addr, af) &&
PF_AZERO(&host->mask, af)))
strlcat(tmp, "any", PF_RULE_LABEL_SIZE);
else {
char a[48];
int bits;
if (inet_ntop(af, &host->addr.addr, a,
sizeof(a)) == NULL)
strlcat(a, "?", sizeof(a));
strlcat(tmp, a, PF_RULE_LABEL_SIZE);
bits = unmask(&host->mask, af);
a[0] = 0;
if ((af == AF_INET && bits < 32) ||
(af == AF_INET6 && bits < 128))
snprintf(a, sizeof(a), "/%u", bits);
strlcat(tmp, a, PF_RULE_LABEL_SIZE);
}
strlcat(tmp, p+strlen(name), PF_RULE_LABEL_SIZE);
strncpy(label, tmp, PF_RULE_LABEL_SIZE);
}
}
void
expand_label_port(const char *name, char *label, struct node_port *port)
{
char tmp[PF_RULE_LABEL_SIZE];
char *p;
char a1[6], a2[6], op[13];
while ((p = strstr(label, name)) != NULL) {
tmp[0] = 0;
strlcat(tmp, label, p-label+1);
snprintf(a1, sizeof(a1), "%u", ntohs(port->port[0]));
snprintf(a2, sizeof(a2), "%u", ntohs(port->port[1]));
if (!port->op)
op[0] = 0;
else if (port->op == PF_OP_IRG)
snprintf(op, sizeof(op), "%s><%s", a1, a2);
else if (port->op == PF_OP_XRG)
snprintf(op, sizeof(op), "%s<>%s", a1, a2);
else if (port->op == PF_OP_EQ)
snprintf(op, sizeof(op), "%s", a1);
else if (port->op == PF_OP_NE)
snprintf(op, sizeof(op), "!=%s", a1);
else if (port->op == PF_OP_LT)
snprintf(op, sizeof(op), "<%s", a1);
else if (port->op == PF_OP_LE)
snprintf(op, sizeof(op), "<=%s", a1);
else if (port->op == PF_OP_GT)
snprintf(op, sizeof(op), ">%s", a1);
else if (port->op == PF_OP_GE)
snprintf(op, sizeof(op), ">=%s", a1);
strlcat(tmp, op, PF_RULE_LABEL_SIZE);
strlcat(tmp, p+strlen(name), PF_RULE_LABEL_SIZE);
strncpy(label, tmp, PF_RULE_LABEL_SIZE);
}
}
void
expand_label_proto(const char *name, char *label, u_int8_t proto)
{
char tmp[PF_RULE_LABEL_SIZE];
char *p;
struct protoent *pe;
while ((p = strstr(label, name)) != NULL) {
tmp[0] = 0;
strlcat(tmp, label, p-label+1);
pe = getprotobynumber(proto);
if (pe != NULL)
strlcat(tmp, pe->p_name, PF_RULE_LABEL_SIZE);
else
snprintf(tmp+strlen(tmp), PF_RULE_LABEL_SIZE-strlen(tmp),
"%u", proto);
strlcat(tmp, p+strlen(name), PF_RULE_LABEL_SIZE);
strncpy(label, tmp, PF_RULE_LABEL_SIZE);
}
}
void
expand_label_nr(const char *name, char *label)
{
char tmp[PF_RULE_LABEL_SIZE];
char *p;
while ((p = strstr(label, name)) != NULL) {
tmp[0] = 0;
strlcat(tmp, label, p-label+1);
snprintf(tmp+strlen(tmp), PF_RULE_LABEL_SIZE-strlen(tmp),
"%u", pf->rule_nr);
strlcat(tmp, p+strlen(name), PF_RULE_LABEL_SIZE);
strncpy(label, tmp, PF_RULE_LABEL_SIZE);
}
}
void
expand_label(char *label, u_int8_t af,
struct node_host *src_host, struct node_port *src_port,
struct node_host *dst_host, struct node_port *dst_port,
u_int8_t proto)
{
expand_label_addr("$srcaddr", label, af, src_host);
expand_label_addr("$dstaddr", label, af, dst_host);
expand_label_port("$srcport", label, src_port);
expand_label_port("$dstport", label, dst_port);
expand_label_proto("$proto", label, proto);
expand_label_nr("$nr", label);
}
void
expand_rule(struct pf_rule *r,
struct node_if *interfaces, struct node_proto *protos,
struct node_host *src_hosts, struct node_port *src_ports,
struct node_host *dst_hosts, struct node_port *dst_ports,
struct node_uid *uids, struct node_gid *gids,
struct node_icmp *icmp_types)
{
int af = r->af, nomatch = 0, added = 0;
char ifname[IF_NAMESIZE];
char label[PF_RULE_LABEL_SIZE];
strlcpy(label, r->label, sizeof(label));
CHECK_ROOT(struct node_if, interfaces);
CHECK_ROOT(struct node_proto, protos);
CHECK_ROOT(struct node_host, src_hosts);
CHECK_ROOT(struct node_port, src_ports);
CHECK_ROOT(struct node_host, dst_hosts);
CHECK_ROOT(struct node_port, dst_ports);
CHECK_ROOT(struct node_uid, uids);
CHECK_ROOT(struct node_gid, gids);
CHECK_ROOT(struct node_icmp, icmp_types);
LOOP_THROUGH(struct node_if, interface, interfaces,
LOOP_THROUGH(struct node_proto, proto, protos,
LOOP_THROUGH(struct node_icmp, icmp_type, icmp_types,
LOOP_THROUGH(struct node_host, src_host, src_hosts,
LOOP_THROUGH(struct node_port, src_port, src_ports,
LOOP_THROUGH(struct node_host, dst_host, dst_hosts,
LOOP_THROUGH(struct node_port, dst_port, dst_ports,
LOOP_THROUGH(struct node_uid, uid, uids,
LOOP_THROUGH(struct node_gid, gid, gids,
r->af = af;
/* for link-local IPv6 address, interface must match up */
if ((r->af && src_host->af && r->af != src_host->af) ||
(r->af && dst_host->af && r->af != dst_host->af) ||
(src_host->af && dst_host->af &&
src_host->af != dst_host->af) ||
(src_host->ifindex && dst_host->ifindex &&
src_host->ifindex != dst_host->ifindex) ||
(src_host->ifindex && if_nametoindex(interface->ifname) &&
src_host->ifindex != if_nametoindex(interface->ifname)) ||
(dst_host->ifindex && if_nametoindex(interface->ifname) &&
dst_host->ifindex != if_nametoindex(interface->ifname)))
continue;
if (!r->af && src_host->af)
r->af = src_host->af;
else if (!r->af && dst_host->af)
r->af = dst_host->af;
if (if_indextoname(src_host->ifindex, ifname))
memcpy(r->ifname, ifname, sizeof(r->ifname));
else if (if_indextoname(dst_host->ifindex, ifname))
memcpy(r->ifname, ifname, sizeof(r->ifname));
else
memcpy(r->ifname, interface->ifname, sizeof(r->ifname));
strlcpy(r->label, label, PF_RULE_LABEL_SIZE);
expand_label(r->label, r->af, src_host, src_port,
dst_host, dst_port, proto->proto);
r->proto = proto->proto;
r->src.addr = src_host->addr;
r->src.mask = src_host->mask;
r->src.noroute = src_host->noroute;
r->src.not = src_host->not;
r->src.port[0] = src_port->port[0];
r->src.port[1] = src_port->port[1];
r->src.port_op = src_port->op;
r->dst.addr = dst_host->addr;
r->dst.mask = dst_host->mask;
r->dst.noroute = dst_host->noroute;
r->dst.not = dst_host->not;
r->dst.port[0] = dst_port->port[0];
r->dst.port[1] = dst_port->port[1];
r->dst.port_op = dst_port->op;
r->uid.op = uid->op;
r->uid.uid[0] = uid->uid[0];
r->uid.uid[1] = uid->uid[1];
r->gid.op = gid->op;
r->gid.gid[0] = gid->gid[0];
r->gid.gid[1] = gid->gid[1];
r->type = icmp_type->type;
r->code = icmp_type->code;
if (icmp_type->proto && r->proto != icmp_type->proto) {
yyerror("icmp-type mismatch");
nomatch++;
}
if (rule_consistent(r) < 0 || nomatch)
yyerror("skipping rule due to errors");
else {
r->nr = pf->rule_nr++;
pfctl_add_rule(pf, r);
added++;
}
)))))))));
FREE_LIST(struct node_if, interfaces);
FREE_LIST(struct node_proto, protos);
FREE_LIST(struct node_host, src_hosts);
FREE_LIST(struct node_port, src_ports);
FREE_LIST(struct node_host, dst_hosts);
FREE_LIST(struct node_port, dst_ports);
FREE_LIST(struct node_uid, uids);
FREE_LIST(struct node_gid, gids);
FREE_LIST(struct node_icmp, icmp_types);
if (!added)
yyerror("rule expands to no valid combination");
}
void
expand_nat(struct pf_nat *n, struct node_host *src_hosts,
struct node_host *dst_hosts)
{
int af = n->af, added = 0;
CHECK_ROOT(struct node_host, src_hosts);
CHECK_ROOT(struct node_host, dst_hosts);
LOOP_THROUGH(struct node_host, src_host, src_hosts,
LOOP_THROUGH(struct node_host, dst_host, dst_hosts,
n->af = af;
if ((n->af && src_host->af && n->af != src_host->af) ||
(n->af && dst_host->af && n->af != dst_host->af) ||
(src_host->af && dst_host->af &&
src_host->af != dst_host->af))
continue;
if (!n->af && src_host->af)
n->af = src_host->af;
else if (!n->af && dst_host->af)
n->af = dst_host->af;
n->src.addr = src_host->addr;
n->src.mask = src_host->mask;
n->dst.addr = dst_host->addr;
n->dst.mask = dst_host->mask;
pfctl_add_nat(pf, n);
added++;
));
FREE_LIST(struct node_host, src_hosts);
FREE_LIST(struct node_host, dst_hosts);
if (!added)
yyerror("nat rule expands to no valid combinations");
}
void
expand_rdr(struct pf_rdr *r, struct node_if *interfaces,
struct node_host *src_hosts,
struct node_host *dst_hosts)
{
int af = r->af, added = 0;
char ifname[IF_NAMESIZE];
CHECK_ROOT(struct node_if, interfaces);
CHECK_ROOT(struct node_host, src_hosts);
CHECK_ROOT(struct node_host, dst_hosts);
LOOP_THROUGH(struct node_if, interface, interfaces,
LOOP_THROUGH(struct node_host, src_host, src_hosts,
LOOP_THROUGH(struct node_host, dst_host, dst_hosts,
r->af = af;
if ((r->af && src_host->af && r->af != src_host->af) ||
(r->af && dst_host->af && r->af != dst_host->af) ||
(src_host->af && dst_host->af &&
src_host->af != dst_host->af) ||
(src_host->ifindex && dst_host->ifindex &&
src_host->ifindex != dst_host->ifindex) ||
(src_host->ifindex && if_nametoindex(interface->ifname) &&
src_host->ifindex != if_nametoindex(interface->ifname)) ||
(dst_host->ifindex && if_nametoindex(interface->ifname) &&
dst_host->ifindex != if_nametoindex(interface->ifname)))
continue;
if (!r->af && src_host->af)
r->af = src_host->af;
else if (!r->af && dst_host->af)
r->af = dst_host->af;
if (if_indextoname(src_host->ifindex, ifname))
memcpy(r->ifname, ifname, sizeof(r->ifname));
else if (if_indextoname(dst_host->ifindex, ifname))
memcpy(r->ifname, ifname, sizeof(r->ifname));
else
memcpy(r->ifname, interface->ifname, sizeof(r->ifname));
r->saddr = src_host->addr;
r->smask = src_host->mask;
r->daddr = dst_host->addr;
r->dmask = dst_host->mask;
pfctl_add_rdr(pf, r);
added++;
)));
FREE_LIST(struct node_if, interfaces);
FREE_LIST(struct node_host, src_hosts);
FREE_LIST(struct node_host, dst_hosts);
if (!added)
yyerror("rdr rule expands to no valid combination");
}
#undef FREE_LIST
#undef CHECK_ROOT
#undef LOOP_THROUGH
int
kw_cmp(k, e)
const void *k, *e;
{
return (strcmp(k, ((struct keywords *)e)->k_name));
}
int
lookup(char *s)
{
/* this has to be sorted always */
static const struct keywords keywords[] = {
{ "all", ALL},
{ "allow-opts", ALLOWOPTS},
{ "any", ANY},
{ "binat", BINAT},
{ "block", BLOCK},
{ "code", CODE},
{ "dup-to", DUPTO},
{ "fastroute", FASTROUTE},
{ "flags", FLAGS},
{ "fragment", FRAGMENT},
{ "from", FROM},
{ "group", GROUP},
{ "icmp-type", ICMPTYPE},
{ "in", IN},
{ "inet", INET},
{ "inet6", INET6},
{ "ipv6-icmp-type", ICMP6TYPE},
{ "keep", KEEP},
{ "label", LABEL},
{ "log", LOG},
{ "log-all", LOGALL},
{ "max", MAXIMUM},
{ "max-mss", MAXMSS},
{ "min-ttl", MINTTL},
{ "modulate", MODULATE},
{ "nat", NAT},
{ "no", NO},
{ "no-df", NODF},
{ "no-route", NOROUTE},
{ "on", ON},
{ "out", OUT},
{ "pass", PASS},
{ "port", PORT},
{ "proto", PROTO},
{ "quick", QUICK},
{ "rdr", RDR},
{ "return", RETURN},
{ "return-icmp",RETURNICMP},
{ "return-icmp6",RETURNICMP6},
{ "return-rst", RETURNRST},
{ "route-to", ROUTETO},
{ "scrub", SCRUB},
{ "state", STATE},
{ "to", TO},
{ "ttl", TTL},
{ "user", USER},
};
const struct keywords *p;
p = bsearch(s, keywords, sizeof(keywords)/sizeof(keywords[0]),
sizeof(keywords[0]), kw_cmp);
if (p) {
if (debug > 1)
fprintf(stderr, "%s: %d\n", s, p->k_val);
return (p->k_val);
} else {
if (debug > 1)
fprintf(stderr, "string: %s\n", s);
return (STRING);
}
}
char *parsebuf;
int parseindex;
int
lgetc(FILE *fin)
{
int c, next;
restart:
if (parsebuf) {
/* Reading characters from the parse buffer, instead of input */
c = parsebuf[parseindex++];
if (c != '\0')
return (c);
free(parsebuf);
parsebuf = NULL;
parseindex = 0;
goto restart;
}
c = getc(fin);
if (c == '\\') {
next = getc(fin);
if (next != '\n') {
ungetc(next, fin);
return (c);
}
yylval.lineno = lineno;
lineno++;
goto restart;
}
return (c);
}
int
lungetc(int c, FILE *fin)
{
if (parsebuf && parseindex) {
/* XXX breaks on index 0 */
parseindex--;
return (c);
}
return ungetc(c, fin);
}
int
findeol()
{
int c;
if (parsebuf) {
free(parsebuf);
parsebuf = NULL;
parseindex = 0;
}
/* skip to either EOF or the first real EOL */
while (1) {
c = lgetc(fin);
if (c == '\\') {
c = lgetc(fin);
if (c == '\n')
continue;
}
if (c == EOF || c == '\n')
break;
}
return (ERROR);
}
int
yylex(void)
{
char buf[8096], *p, *val;
int endc, c, next;
int token;
top:
p = buf;
while ((c = lgetc(fin)) == ' ' || c == '\t')
;
yylval.lineno = lineno;
if (c == '#')
while ((c = lgetc(fin)) != '\n' && c != EOF)
;
if (c == '$' && parsebuf == NULL) {
while (1) {
if ((c = lgetc(fin)) == EOF)
return (0);
if (p + 1 >= buf + sizeof(buf) - 1) {
yyerror("string too long");
return (findeol());
}
if (isalnum(c) || c == '_') {
*p++ = (char)c;
continue;
}
*p = '\0';
lungetc(c, fin);
break;
}
val = symget(buf);
if (val == NULL)
return (ERROR);
parsebuf = strdup(val);
if (parsebuf == NULL)
err(1, "parsebuf: strdup");
parseindex = 0;
goto top;
}
switch (c) {
case '\'':
case '"':
endc = c;
while (1) {
if ((c = lgetc(fin)) == EOF)
return (0);
if (c == endc) {
*p = '\0';
break;
}
if (c == '\n')
continue;
if (p + 1 >= buf + sizeof(buf) - 1) {
yyerror("string too long");
return (findeol());
}
*p++ = (char)c;
}
yylval.v.string = strdup(buf);
if (yylval.v.string == NULL)
err(1, "yylex: strdup");
return (STRING);
case '=':
yylval.v.i = PF_OP_EQ;
return (PORTUNARY);
case '!':
next = lgetc(fin);
if (next == '=') {
yylval.v.i = PF_OP_NE;
return (PORTUNARY);
}
lungetc(next, fin);
break;
case '<':
next = lgetc(fin);
if (next == '>') {
yylval.v.i = PF_OP_XRG;
return (PORTBINARY);
} else if (next == '=') {
yylval.v.i = PF_OP_LE;
} else {
yylval.v.i = PF_OP_LT;
lungetc(next, fin);
}
return (PORTUNARY);
break;
case '>':
next = lgetc(fin);
if (next == '<') {
yylval.v.i = PF_OP_IRG;
return (PORTBINARY);
} else if (next == '=') {
yylval.v.i = PF_OP_GE;
} else {
yylval.v.i = PF_OP_GT;
lungetc(next, fin);
}
return (PORTUNARY);
break;
case '-':
next = lgetc(fin);
if (next == '>')
return (ARROW);
lungetc(next, fin);
break;
}
/* Need to parse v6 addresses before tokenizing numbers. ick */
if (isxdigit(c) || c == ':') {
struct node_host *node = NULL;
u_int32_t addr[4];
char lookahead[46];
int i = 0;
struct addrinfo hints, *res;
lookahead[i] = c;
while (i < sizeof(lookahead) &&
(isalnum(c) || c == ':' || c == '.' || c == '%')) {
lookahead[++i] = c = lgetc(fin);
}
/* quick check avoids calling inet_pton too often */
lungetc(lookahead[i], fin);
lookahead[i] = '\0';
memset(&hints, 0, sizeof(hints));
hints.ai_family = AF_INET6;
hints.ai_socktype = SOCK_DGRAM; /*dummy*/
hints.ai_flags = AI_NUMERICHOST;
if (getaddrinfo(lookahead, "0", &hints, &res) == 0) {
node = calloc(1, sizeof(struct node_host));
if (node == NULL)
err(1, "yylex: calloc");
node->af = AF_INET6;
node->addr.addr_dyn = NULL;
memcpy(&node->addr.addr,
&((struct sockaddr_in6 *)res->ai_addr)->sin6_addr,
sizeof(addr));
node->ifindex = ((struct sockaddr_in6 *)res->ai_addr)
->sin6_scope_id;
yylval.v.host = node;
return IPV6ADDR;
freeaddrinfo(res);
} else {
free(node);
while (i > 1)
lungetc(lookahead[--i], fin);
c = lookahead[--i];
}
}
if (isdigit(c)) {
int index = 0, base = 10;
u_int64_t n = 0;
yylval.v.number = 0;
while (1) {
if (base == 10) {
if (!isdigit(c))
break;
c -= '0';
} else if (base == 16) {
if (isdigit(c))
c -= '0';
else if (c >= 'a' && c <= 'f')
c -= 'a' - 10;
else if (c >= 'A' && c <= 'F')
c -= 'A' - 10;
else
break;
}
n = n * base + c;
if (n > UINT_MAX) {
yyerror("number is too large");
return (ERROR);
}
c = lgetc(fin);
if (c == EOF)
break;
if (index++ == 0 && n == 0 && c == 'x') {
base = 16;
c = lgetc(fin);
if (c == EOF)
break;
}
}
yylval.v.number = (u_int32_t)n;
if (c != EOF)
lungetc(c, fin);
if (debug > 1)
fprintf(stderr, "number: %d\n", yylval.v.number);
return (NUMBER);
}
#define allowed_in_string(x) \
(isalnum(x) || (ispunct(x) && x != '(' && x != ')' && \
x != '{' && x != '}' && x != '<' && x != '>' && \
x != '!' && x != '=' && x != '/' && x != '#' && \
x != ',' && x != ':' && x != '(' && x != ')'))
if (isalnum(c)) {
do {
*p++ = c;
if (p-buf >= sizeof buf) {
yyerror("string too long");
return (ERROR);
}
} while ((c = lgetc(fin)) != EOF && (allowed_in_string(c)));
lungetc(c, fin);
*p = '\0';
token = lookup(buf);
yylval.v.string = strdup(buf);
if (yylval.v.string == NULL)
err(1, "yylex: strdup");
return (token);
}
if (c == '\n') {
yylval.lineno = lineno;
lineno++;
}
if (c == EOF)
return (0);
return (c);
}
int
parse_rules(FILE *input, struct pfctl *xpf)
{
natmode = 0;
fin = input;
pf = xpf;
lineno = 1;
errors = 0;
yyparse();
return (errors ? -1 : 0);
}
int
parse_nat(FILE *input, struct pfctl *xpf)
{
natmode = 1;
fin = input;
pf = xpf;
lineno = 1;
errors = 0;
yyparse();
return (errors ? -1 : 0);
}
void
ipmask(struct pf_addr *m, u_int8_t b)
{
int i, j = 0;
while (b >= 32) {
m->addr32[j++] = 0xffffffff;
b -= 32;
}
for (i = 31; i > 31-b; --i)
m->addr32[j] |= (1 << i);
if (b)
m->addr32[j] = htonl(m->addr32[j]);
}
/*
* Over-designed efficiency is a French and German concept, so how about
* we wait until they discover this ugliness and make it all fancy.
*/
int
symset(char *nam, char *val)
{
struct sym *sym;
sym = calloc(1, sizeof(*sym));
if (sym == NULL)
return (-1);
sym->nam = strdup(nam);
if (sym->nam == NULL) {
free(sym);
return (-1);
}
sym->val = strdup(val);
if (sym->val == NULL) {
free(sym->nam);
free(sym);
return (-1);
}
sym->next = symhead;
symhead = sym;
return (0);
}
char *
symget(char *nam)
{
struct sym *sym;
for (sym = symhead; sym; sym = sym->next)
if (strcmp(nam, sym->nam) == 0)
return (sym->val);
return (NULL);
}
struct ifaddrs **ifa0tab, **ifa4tab, **ifa6tab;
int ifa0len, ifa4len, ifa6len;
int
ifa_comp(const void *p1, const void *p2)
{
struct ifaddrs *ifa1 = *(struct ifaddrs **)p1;
struct ifaddrs *ifa2 = *(struct ifaddrs **)p2;
return strcmp(ifa1->ifa_name, ifa2->ifa_name);
}
void
ifa_load(void)
{
struct ifaddrs *ifap, *ifa;
void *p;
int ifalen = 0;
if (getifaddrs(&ifap) < 0)
err(1, "getifaddrs");
for (ifa = ifap; ifa; ifa = ifa->ifa_next)
ifalen++;
/* (over-)allocate tables */
ifa0tab = malloc(ifalen * sizeof(void *));
ifa4tab = malloc(ifalen * sizeof(void *));
ifa6tab = malloc(ifalen * sizeof(void *));
if (!ifa0tab || !ifa4tab || !ifa6tab)
err(1, "malloc");
for (ifa = ifap; ifa; ifa = ifa->ifa_next) {
if (ifa->ifa_addr->sa_family == AF_LINK) {
if (bsearch(&ifa, ifa0tab, ifa0len, sizeof(void *),
ifa_comp))
continue; /* take only the first LINK address */
ifa0tab[ifa0len++] = ifa;
qsort(ifa0tab, ifa0len, sizeof(void *), ifa_comp);
}
if (ifa->ifa_addr->sa_family == AF_INET) {
if (bsearch(&ifa, ifa4tab, ifa4len, sizeof(void *),
ifa_comp))
continue; /* take only the first IPv4 address */
ifa4tab[ifa4len++] = ifa;
qsort(ifa4tab, ifa4len, sizeof(void *), ifa_comp);
}
if (ifa->ifa_addr->sa_family == AF_INET6) {
/* XXX - better address selection required! */
if (bsearch(&ifa, ifa6tab, ifa6len, sizeof(void *),
ifa_comp))
continue; /* take only the first IPv6 address */
ifa6tab[ifa6len++] = ifa;
qsort(ifa6tab, ifa6len, sizeof(void *), ifa_comp);
}
}
/* shrink tables */
if ((p = realloc(ifa0tab, ifa0len * sizeof(void *))) == NULL) {
free(ifa0tab);
ifa0tab = NULL;
} else
ifa0tab = p;
if ((p = realloc(ifa4tab, ifa4len * sizeof(void *))) == NULL) {
free(ifa4tab);
ifa4tab = NULL;
} else
ifa4tab = p;
if ((p = realloc(ifa6tab, ifa6len * sizeof(void *))) == NULL) {
free(ifa6tab);
ifa6tab = NULL;
} else
ifa6tab = p;
if (!ifa0tab || !ifa4tab || !ifa6tab)
err(1, "realloc");
}
struct ifaddrs *
ifa0_lookup(char *ifa_name)
{
struct ifaddrs ifa, *ifp = &ifa, **ifpp;
if (!ifa0tab)
ifa_load();
ifa.ifa_name = ifa_name;
ifpp = bsearch(&ifp, ifa0tab, ifa0len, sizeof(void *), ifa_comp);
return ifpp ? *ifpp : NULL;
}
struct ifaddrs *
ifa4_lookup(char *ifa_name)
{
struct ifaddrs ifa, *ifp = &ifa, **ifpp;
if (!ifa4tab)
ifa_load();
ifa.ifa_name = ifa_name;
ifpp = bsearch(&ifp, ifa4tab, ifa4len, sizeof(void *), ifa_comp);
return ifpp ? *ifpp : NULL;
}
struct ifaddrs *
ifa6_lookup(char *ifa_name)
{
struct ifaddrs ifa, *ifp = &ifa, **ifpp;
if (!ifa6tab)
ifa_load();
ifa.ifa_name = ifa_name;
ifpp = bsearch(&ifp, ifa6tab, ifa6len, sizeof(void *), ifa_comp);
return ifpp ? *ifpp : NULL;
}
|