1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
|
/*-
* Copyright 2016 Vsevolod Stakhov
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "lua_common.h"
#include "message.h"
#include "protocol.h"
#include "filter.h"
#include "dns.h"
#include "util.h"
#include "images.h"
#include "archives.h"
#include "cfg_file.h"
#include "email_addr.h"
#include "utlist.h"
#include "cryptobox.h"
#include "unix-std.h"
/***
* @module rspamd_task
* This module provides routines for tasks manipulation in rspamd. Tasks usually
* represent messages being scanned, and this API provides access to such elements
* as headers, symbols, metrics and so on and so forth. Normally, task objects
* are passed to the lua callbacks allowing to check specific properties of messages
* and add the corresponding symbols to the scan's results.
@example
rspamd_config.DATE_IN_PAST = function(task)
if rspamd_config:get_api_version() >= 5 then
local dm = task:get_date{format = 'message', gmt = true}
local dt = task:get_date{format = 'connect', gmt = true}
-- A day
if dt - dm > 86400 then
return true
end
end
return false
end
*/
/* Task methods */
LUA_FUNCTION_DEF (task, get_message);
LUA_FUNCTION_DEF (task, process_message);
/***
* @method task:get_cfg()
* Get configuration object for a task.
* @return {rspamd_config} (config.md)[configuration object] for the task
*/
LUA_FUNCTION_DEF (task, get_cfg);
LUA_FUNCTION_DEF (task, set_cfg);
LUA_FUNCTION_DEF (task, destroy);
/***
* @method task:get_mempool()
* Returns memory pool valid for a lifetime of task. It is used internally by
* many rspamd routines.
* @return {rspamd_mempool} memory pool object
*/
LUA_FUNCTION_DEF (task, get_mempool);
/***
* @method task:get_session()
* Returns asynchronous session object that is used by many rspamd asynchronous
* utilities internally.
* @return {rspamd_session} session object
*/
LUA_FUNCTION_DEF (task, get_session);
/***
* @method task:get_ev_base()
* Return asynchronous event base for using in callbacks and resolver.
* @return {rspamd_ev_base} event base
*/
LUA_FUNCTION_DEF (task, get_ev_base);
/***
* @method task:insert_result(symbol, weigth[, option1, ...])
* Insert specific symbol to the tasks scanning results assigning the initial
* weight to it.
* @param {string} symbol symbol to insert
* @param {number} weight initial weight (this weight is multiplied by the metric weight)
* @param {string} options list of optional options attached to a symbol inserted
@example
local function cb(task)
if task:get_header('Some header') then
task:insert_result('SOME_HEADER', 1.0, 'Got some header')
end
end
*/
LUA_FUNCTION_DEF (task, insert_result);
/***
* @method task:set_pre_results(action, description)
* Sets pre-result for a task. It is used in pre-filters to specify early results
* of the task scanned. If a pre-filter sets some result, then further processing
* may be skipped. For selecting action it is possible to use global table
* `rspamd_actions` or a string value:
*
* - `reject`: reject message permanently
* - `add header`: add spam header
* - `rewrite subject`: rewrite subject to spam subject
* - `greylist`: greylist message
* - `accept` or `no action`: whitelist message
* @param {rspamd_action or string} action a numeric or string action value
* @param {string} description optional descripton
@example
local function cb(task)
local gr = task:get_header('Greylist')
if gr and gr == 'greylist' then
task:set_pre_result(rspamd_actions['greylist'], 'Greylisting required')
end
end
*/
LUA_FUNCTION_DEF (task, set_pre_result);
/***
* @method task:append_message(message)
* Adds a message to scanning output.
* @param {string} message
@example
local function cb(task)
task:append_message('Example message')
end
*/
LUA_FUNCTION_DEF (task, append_message);
/***
* @method task:get_urls([need_emails])
* Get all URLs found in a message.
* @param {boolean} need_emails if `true` then reutrn also email urls
* @return {table rspamd_url} list of all urls found
@example
local function phishing_cb(task)
local urls = task:get_urls();
if urls then
for _,url in ipairs(urls) do
if url:is_phished() then
return true
end
end
end
return false
end
*/
LUA_FUNCTION_DEF (task, get_urls);
/***
* @method task:has_urls([need_emails])
* Returns 'true' if a task has urls listed
* @param {boolean} need_emails if `true` then reutrn also email urls
* @return {boolean} true if a task has urls (urls or emails if `need_emails` is true)
*/
LUA_FUNCTION_DEF (task, has_urls);
/***
* @method task:get_content()
* Get raw content for the specified task
* @return {text} the data contained in the task
*/
LUA_FUNCTION_DEF (task, get_content);
/***
* @method task:get_rawbody()
* Get raw body for the specified task
* @return {text} the data contained in the task
*/
LUA_FUNCTION_DEF (task, get_rawbody);
/***
* @method task:get_emails()
* Get all email addresses found in a message.
* @return {table rspamd_url} list of all email addresses found
*/
LUA_FUNCTION_DEF (task, get_emails);
/***
* @method task:get_text_parts()
* Get all text (and HTML) parts found in a message
* @return {table rspamd_text_part} list of text parts
*/
LUA_FUNCTION_DEF (task, get_text_parts);
/***
* @method task:get_parts()
* Get all mime parts found in a message
* @return {table rspamd_mime_part} list of mime parts
*/
LUA_FUNCTION_DEF (task, get_parts);
/***
* @method task:get_request_header(name)
* Get value of a HTTP request header.
* @param {string} name name of header to get
* @return {rspamd_text} value of an HTTP header
*/
LUA_FUNCTION_DEF (task, get_request_header);
/***
* @method task:set_request_header(name, value)
* Set value of a HTTP request header. If value is omitted, then a header is removed
* @param {string} name name of header to get
* @param {rspamd_text/string} value new header's value
*/
LUA_FUNCTION_DEF (task, set_request_header);
/***
* @method task:get_header(name[, case_sensitive])
* Get decoded value of a header specified with optional case_sensitive flag.
* By default headers are searched in caseless matter.
* @param {string} name name of header to get
* @param {boolean} case_sensitive case sensitiveness flag to search for a header
* @return {string} decoded value of a header
*/
LUA_FUNCTION_DEF (task, get_header);
/***
* @method task:get_header_raw(name[, case_sensitive])
* Get raw value of a header specified with optional case_sensitive flag.
* By default headers are searched in caseless matter.
* @param {string} name name of header to get
* @param {boolean} case_sensitive case sensitiveness flag to search for a header
* @return {string} raw value of a header
*/
LUA_FUNCTION_DEF (task, get_header_raw);
/***
* @method task:get_header_full(name[, case_sensitive])
* Get raw value of a header specified with optional case_sensitive flag.
* By default headers are searched in caseless matter. This method returns more
* information about the header as a list of tables with the following structure:
*
* - `name` - name of a header
* - `value` - raw value of a header
* - `decoded` - decoded value of a header
* - `tab_separated` - `true` if a header and a value are separated by `tab` character
* - `empty_separator` - `true` if there are no separator between a header and a value
* @param {string} name name of header to get
* @param {boolean} case_sensitive case sensitiveness flag to search for a header
* @return {list of tables} all values of a header as specified above
@example
function check_header_delimiter_tab(task, header_name)
for _,rh in ipairs(task:get_header_full(header_name)) do
if rh['tab_separated'] then return true end
end
return false
end
*/
LUA_FUNCTION_DEF (task, get_header_full);
/***
* @method task:get_raw_headers()
* Get all undecoded headers of a message as a string
* @return {rspamd_text} all raw headers for a message as opaque text
*/
LUA_FUNCTION_DEF (task, get_raw_headers);
/***
* @method task:get_received_headers()
* Returns a list of tables of parsed received headers. A tables returned have
* the following structure:
*
* - `from_hostname` - string that represents hostname provided by a peer
* - `from_ip` - string representation of IP address as provided by a peer
* - `real_hostname` - hostname as resolved by MTA
* - `real_ip` - string representation of IP as resolved by PTR request of MTA
* - `by_hostname` - MTA hostname
* - `proto` - protocol, e.g. ESMTP or ESMTPS
* - `timestamp` - received timetamp
* - `for` - for value (unparsed mailbox)
*
* Please note that in some situations rspamd cannot parse all the fields of received headers.
* In that case you should check all strings for validity.
* @return {table of tables} list of received headers described above
*/
LUA_FUNCTION_DEF (task, get_received_headers);
/***
* @method task:get_queue_id()
* Returns queue ID of the message being processed.
*/
LUA_FUNCTION_DEF (task, get_queue_id);
/***
* @method task:get_uid()
* Returns ID of the task being processed.
*/
LUA_FUNCTION_DEF (task, get_uid);
/***
* @method task:get_resolver()
* Returns ready to use rspamd_resolver object suitable for making asynchronous DNS requests.
* @return {rspamd_resolver} resolver object associated with the task's session
* @example
local logger = require "rspamd_logger"
local function task_cb(task)
local function dns_cb(resolver, to_resolve, results, err)
-- task object is available due to closure
task:inc_dns_req()
if results then
logger.info(string.format('<%s> [%s] resolved for symbol: %s',
task:get_message_id(), to_resolve, 'EXAMPLE_SYMBOL'))
task:insert_result('EXAMPLE_SYMBOL', 1)
end
end
local r = task:get_resolver()
r:resolve_a(task:get_session(), task:get_mempool(), 'example.com', dns_cb)
end
*/
LUA_FUNCTION_DEF (task, get_resolver);
/***
* @method task:inc_dns_req()
* Increment number of DNS requests for the task. Is used just for logging purposes.
*/
LUA_FUNCTION_DEF (task, inc_dns_req);
/***
* @method task:get_dns_req()
* Get number of dns requests being sent in the task
* @return {number} number of DNS requests
*/
LUA_FUNCTION_DEF (task, get_dns_req);
/***
* @method task:has_recipients([type])
* Return true if there are SMTP or MIME recipients for a task.
* @param {integer|string} type if specified has the following meaning: `0` or `any` means try SMTP recipients and fallback to MIME if failed, `1` or `smtp` means checking merely SMTP recipients and `2` or `mime` means MIME recipients only
* @return {bool} `true` if there are recipients of the following type
*/
LUA_FUNCTION_DEF (task, has_recipients);
/***
* @method task:get_recipients([type])
* Return SMTP or MIME recipients for a task. This function returns list of internet addresses each one is a table with the following structure:
*
* - `name` - name of internet address in UTF8, e.g. for `Vsevolod Stakhov <blah@foo.com>` it returns `Vsevolod Stakhov`
* - `addr` - address part of the address
* - `user` - user part (if present) of the address, e.g. `blah`
* - `domain` - domain part (if present), e.g. `foo.com`
* @param {integer|string} type if specified has the following meaning: `0` or `any` means try SMTP recipients and fallback to MIME if failed, `1` or `smtp` means checking merely SMTP recipients and `2` or `mime` means MIME recipients only
* @return {list of addresses} list of recipients or `nil`
*/
LUA_FUNCTION_DEF (task, get_recipients);
/***
* @method task:has_from([type])
* Return true if there is SMTP or MIME sender for a task.
* @param {integer|string} type if specified has the following meaning: `0` or `any` means try SMTP recipients and fallback to MIME if failed, `1` or `smtp` means checking merely SMTP recipients and `2` or `mime` means MIME recipients only
* @return {bool} `true` if there is sender of the following type
*/
LUA_FUNCTION_DEF (task, has_from);
/***
* @method task:get_from([type])
* Return SMTP or MIME sender for a task. This function returns list of internet addresses each one is a table with the following structure:
*
* - `name` - name of internet address in UTF8, e.g. for `Vsevolod Stakhov <blah@foo.com>` it returns `Vsevolod Stakhov`
* - `addr` - address part of the address
* - `user` - user part (if present) of the address, e.g. `blah`
* - `domain` - domain part (if present), e.g. `foo.com`
* @param {integer|string} type if specified has the following meaning: `0` or `any` means try SMTP sender and fallback to MIME if failed, `1` or `smtp` means checking merely SMTP sender and `2` or `mime` means MIME `From:` only
* @return {list of addresses} list of recipients or `nil`
*/
LUA_FUNCTION_DEF (task, get_from);
/***
* @method task:get_user()
* Returns authenticated user name for this task if specified by an MTA.
* @return {string} username or nil
*/
LUA_FUNCTION_DEF (task, get_user);
LUA_FUNCTION_DEF (task, set_user);
/***
* @method task:get_from_ip()
* Returns [ip_addr](ip.md) object of a sender that is provided by MTA
* @return {rspamd_ip} ip address object
*/
LUA_FUNCTION_DEF (task, get_from_ip);
/***
* @method task:set_from_ip(str)
* Set tasks's IP address based on the passed string
* @param {string} str string representation of ip
*/
LUA_FUNCTION_DEF (task, set_from_ip);
LUA_FUNCTION_DEF (task, get_from_ip_num);
/***
* @method task:get_client_ip()
* Returns [ip_addr](ip.md) object of a client connected to rspamd (normally, it is an IP address of MTA)
* @return {rspamd_ip} ip address object
*/
LUA_FUNCTION_DEF (task, get_client_ip);
/***
* @method task:get_helo()
* Returns the value of SMTP helo provided by MTA.
* @return {string} HELO value
*/
LUA_FUNCTION_DEF (task, get_helo);
LUA_FUNCTION_DEF (task, set_helo);
/***
* @method task:get_hostname()
* Returns the value of sender's hostname provided by MTA
* @return {string} hostname value
*/
LUA_FUNCTION_DEF (task, get_hostname);
LUA_FUNCTION_DEF (task, set_hostname);
/***
* @method task:get_images()
* Returns list of all images found in a task as a table of `rspamd_image`.
* Each image has the following methods:
*
* * `get_width` - return width of an image in pixels
* * `get_height` - return height of an image in pixels
* * `get_type` - return string representation of image's type (e.g. 'jpeg')
* * `get_filename` - return string with image's file name
* * `get_size` - return size in bytes
* @return {list of rspamd_image} images found in a message
*/
LUA_FUNCTION_DEF (task, get_images);
/***
* @method task:get_archives()
* Returns list of all archives found in a task as a table of `rspamd_archive`.
* Each archive has the following methods available:
*
* * `get_files` - return list of strings with filenames inside archive
* * `get_files_full` - return list of tables with all information about files
* * `is_encrypted` - return true if an archive is encrypted
* * `get_type` - return string representation of image's type (e.g. 'zip')
* * `get_filename` - return string with archive's file name
* * `get_size` - return size in bytes
* @return {list of rspamd_archive} archives found in a message
*/
LUA_FUNCTION_DEF (task, get_archives);
/***
* @method task:get_symbol(name)
* Searches for a symbol `name` in all metrics results and returns a list of tables
* one per metric that describes the symbol inserted. Please note that this function
* is intended to return values for **inserted** symbols, so if this symbol was not
* inserted it won't be in the function's output. This method is useful for post-filters mainly.
* The symbols are returned as the list of the following tables:
*
* - `metric` - name of metric
* - `score` - score of a symbol in that metric
* - `options` - a table of strings representing options of a symbol
* - `group` - a group of symbol (or 'ungrouped')
* @param {string} name symbol's name
* @return {list of tables} list of tables or nil if symbol was not found in any metric
*/
LUA_FUNCTION_DEF (task, get_symbol);
/***
* @method task:get_symbols()
* Returns array of all symbols matched for this task
* @return {table, table} table of strings with symbols names + table of theirs scores
*/
LUA_FUNCTION_DEF (task, get_symbols);
/***
* @method task:get_symbols_numeric()
* Returns array of all symbols matched for this task
* @return {table|number, table|number} table of numbers with symbols ids + table of theirs scores
*/
LUA_FUNCTION_DEF (task, get_symbols_numeric);
/***
* @method task:has_symbol(name)
* Fast path to check if a specified symbol is in the task's results
* @param {string} name symbol's name
* @return {boolean} `true` if symbol has been found
*/
LUA_FUNCTION_DEF (task, has_symbol);
/***
* @method task:get_date(type[, gmt])
* Returns timestamp for a connection or for a MIME message. This function can be called with a
* single table arguments with the following fields:
*
* * `format` - a format of date returned:
* - `message` - returns a mime date as integer (unix timestamp)
* - `message_str` - returns a mime date as string (UTC format)
* - `connect` - returns a unix timestamp of a connection to rspamd
* - `connect_str` - returns connection time in UTC format
* * `gmt` - returns date in `GMT` timezone (normal for unix timestamps)
*
* By default this function returns connection time in numeric format.
* @param {string} type date format as described above
* @param {boolean} gmt gmt flag as described above
* @return {string/number} date representation according to format
* @example
rspamd_config.DATE_IN_PAST = function(task)
local dm = task:get_date{format = 'message', gmt = true}
local dt = task:get_date{format = 'connect', gmt = true}
-- A day
if dt - dm > 86400 then
return true
end
return false
end
*/
LUA_FUNCTION_DEF (task, get_date);
/***
* @method task:get_message_id()
* Returns message id of the specified task
* @return {string} if of a message
*/
LUA_FUNCTION_DEF (task, get_message_id);
LUA_FUNCTION_DEF (task, get_timeval);
/***
* @method task:get_metric_score(name)
* Get the current score of metric `name`. Should be used in post-filters only.
* @param {string} name name of a metric
* @return {table} table containing the current score and required score of the metric
*/
LUA_FUNCTION_DEF (task, get_metric_score);
/***
* @method task:get_metric_action(name)
* Get the current action of metric `name`. Should be used in post-filters only.
* @param {string} name name of a metric
* @return {string} the current action of the metric as a string
*/
LUA_FUNCTION_DEF (task, get_metric_action);
/***
* @method task:set_metric_score(name, score)
* Set the current score of metric `name`. Should be used in post-filters only.
* @param {string} name name of a metric
* @param {number} score the current score of the metric
*/
LUA_FUNCTION_DEF (task, set_metric_score);
/***
* @method task:set_metric_action(name, action)
* Set the current action of metric `name`. Should be used in post-filters only.
* @param {string} name name of a metric
* @param {string} action name to set
*/
LUA_FUNCTION_DEF (task, set_metric_action);
/***
* @method task:learn(is_spam[, classifier)
* Learn classifier `classifier` with the task. If `is_spam` is true then message
* is learnt as spam. Otherwise HAM is learnt. By default, this function learns
* `bayes` classifier.
* @param {boolean} is_spam learn spam or ham
* @param {string} classifier classifier's name
* @return {boolean} `true` if classifier has been learnt successfully
*/
LUA_FUNCTION_DEF (task, learn);
/***
* @method task:set_settings(obj)
* Set users settings object for a task. The format of this object is described
* [here](https://rspamd.com/doc/configuration/settings.html).
* @param {any} obj any lua object that corresponds to the settings format
*/
LUA_FUNCTION_DEF (task, set_settings);
/***
* @method task:get_settings()
* Gets users settings object for a task. The format of this object is described
* [here](https://rspamd.com/doc/configuration/settings.html).
* @return {lua object} lua object generated from UCL
*/
LUA_FUNCTION_DEF (task, get_settings);
/***
* @method task:lookup_settings(key)
* Gets users settings object with the specified key for a task.
* @param {string} key key to lookup
* @return {lua object} lua object generated from UCL
*/
LUA_FUNCTION_DEF (task, lookup_settings);
/***
* @method task:get_settings_id()
* Get numeric hash of settings id if specified for this task. 0 is returned otherwise.
* @return {number} settings-id hash
*/
LUA_FUNCTION_DEF (task, get_settings_id);
/***
* @method task:set_rmilter_reply(obj)
* Set special reply for rmilter
* @param {any} obj any lua object that corresponds to the settings format
* @example
task:set_rmilter_reply({
add_headers = {['X-Lua'] = 'test'},
-- 1 is the position of header to remove
remove_headers = {['DKIM-Signature'] = 1},
})
*/
LUA_FUNCTION_DEF (task, set_rmilter_reply);
/***
* @method task:process_re(params)
* Processes the specified regexp and returns number of captures (cached or new)
* Params is the table with the follwoing fields (mandatory fields are marked with `*`):
* - `re`* : regular expression object
* - `type`*: type of regular expression:
* + `mime`: mime regexp
* + `header`: header regexp
* + `rawheader`: raw header expression
* + `rawmime`: raw mime regexp
* + `body`: raw body regexp
* + `url`: url regexp
* - `header`: for header and rawheader regexp means the name of header
* - `strong`: case sensitive match for headers
* @return {number} number of regexp occurences in the task (limited by 255 so far)
*/
LUA_FUNCTION_DEF (task, process_regexp);
/*
* Deprecated functions!
*/
LUA_FUNCTION_DEF (task, cache_set);
LUA_FUNCTION_DEF (task, cache_get);
/***
* @method task:get_size()
* Returns size of the task in bytes (that includes headers + parts size)
* @return {number} size in bytes
*/
LUA_FUNCTION_DEF (task, get_size);
/***
* @method task:set_flag(flag_name[, set])
* Set specific flag for task:
*
* - `no_log`: do not log task summary
* - `no_stat`: do not include task into scanned stats
* - `pass_all`: check all filters for task
* - `extended_urls`: output extended info about urls
* - `skip`: skip task processing
* - `learn_spam`: learn message as spam
* - `learn_ham`: learn message as ham
* - `broken_headers`: header data is broken for a message
* @param {string} flag to set
* @param {boolean} set set or clear flag (default is set)
@example
--[[
For messages with undefined queue ID (scanned with rspamc or WebUI)
do not include results into statistics and do not log task summary
(it will not appear in the WebUI history as well).
]]--
-- Callback function to set flags
local function no_log_stat_cb(task)
if not task:get_queue_id() then
task:set_flag('no_log')
task:set_flag('no_stat')
end
end
rspamd_config:register_symbol({
name = 'LOCAL_NO_LOG_STAT',
type = 'postfilter',
callback = no_log_stat_cb
})
*/
LUA_FUNCTION_DEF (task, set_flag);
/***
* @method task:has_flag(flag_name)
* Checks for a specific flag in task:
*
* - `no_log`: do not log task summary
* - `no_stat`: do not include task into scanned stats
* - `pass_all`: check all filters for task
* - `extended_urls`: output extended info about urls
* - `skip`: skip task processing
* - `learn_spam`: learn message as spam
* - `learn_ham`: learn message as ham
* - `broken_headers`: header data is broken for a message
* @param {string} flag to check
* @return {boolean} true if flags is set
*/
LUA_FUNCTION_DEF (task, has_flag);
/***
* @method task:get_flags()
* Get list of flags for task:
*
* - `no_log`: do not log task summary
* - `no_stat`: do not include task into scanned stats
* - `pass_all`: check all filters for task
* - `extended_urls`: output extended info about urls
* - `skip`: skip task processing
* - `learn_spam`: learn message as spam
* - `learn_ham`: learn message as ham
* - `broken_headers`: header data is broken for a message
* @return {array of strings} table with all flags as strings
*/
LUA_FUNCTION_DEF (task, get_flags);
/***
* @method task:get_digest()
* Returns message's unique digest (32 hex symbols)
* @return {string} hex digest
*/
LUA_FUNCTION_DEF (task, get_digest);
static const struct luaL_reg tasklib_f[] = {
{NULL, NULL}
};
static const struct luaL_reg tasklib_m[] = {
LUA_INTERFACE_DEF (task, get_message),
LUA_INTERFACE_DEF (task, destroy),
LUA_INTERFACE_DEF (task, process_message),
LUA_INTERFACE_DEF (task, set_cfg),
LUA_INTERFACE_DEF (task, get_cfg),
LUA_INTERFACE_DEF (task, get_mempool),
LUA_INTERFACE_DEF (task, get_session),
LUA_INTERFACE_DEF (task, get_ev_base),
LUA_INTERFACE_DEF (task, insert_result),
LUA_INTERFACE_DEF (task, set_pre_result),
LUA_INTERFACE_DEF (task, append_message),
LUA_INTERFACE_DEF (task, has_urls),
LUA_INTERFACE_DEF (task, get_urls),
LUA_INTERFACE_DEF (task, get_content),
LUA_INTERFACE_DEF (task, get_rawbody),
LUA_INTERFACE_DEF (task, get_emails),
LUA_INTERFACE_DEF (task, get_text_parts),
LUA_INTERFACE_DEF (task, get_parts),
LUA_INTERFACE_DEF (task, get_request_header),
LUA_INTERFACE_DEF (task, set_request_header),
LUA_INTERFACE_DEF (task, get_header),
LUA_INTERFACE_DEF (task, get_header_raw),
LUA_INTERFACE_DEF (task, get_header_full),
LUA_INTERFACE_DEF (task, get_raw_headers),
LUA_INTERFACE_DEF (task, get_received_headers),
LUA_INTERFACE_DEF (task, get_queue_id),
LUA_INTERFACE_DEF (task, get_uid),
LUA_INTERFACE_DEF (task, get_resolver),
LUA_INTERFACE_DEF (task, inc_dns_req),
LUA_INTERFACE_DEF (task, get_dns_req),
LUA_INTERFACE_DEF (task, has_recipients),
LUA_INTERFACE_DEF (task, get_recipients),
LUA_INTERFACE_DEF (task, has_from),
LUA_INTERFACE_DEF (task, get_from),
LUA_INTERFACE_DEF (task, get_user),
LUA_INTERFACE_DEF (task, set_user),
{"get_addr", lua_task_get_from_ip},
{"get_ip", lua_task_get_from_ip},
{"get_from_addr", lua_task_get_from_ip},
LUA_INTERFACE_DEF (task, get_from_ip),
LUA_INTERFACE_DEF (task, set_from_ip),
LUA_INTERFACE_DEF (task, get_from_ip_num),
LUA_INTERFACE_DEF (task, get_client_ip),
LUA_INTERFACE_DEF (task, get_helo),
LUA_INTERFACE_DEF (task, set_helo),
LUA_INTERFACE_DEF (task, get_hostname),
LUA_INTERFACE_DEF (task, set_hostname),
LUA_INTERFACE_DEF (task, get_images),
LUA_INTERFACE_DEF (task, get_archives),
LUA_INTERFACE_DEF (task, get_symbol),
LUA_INTERFACE_DEF (task, get_symbols),
LUA_INTERFACE_DEF (task, get_symbols_numeric),
LUA_INTERFACE_DEF (task, has_symbol),
LUA_INTERFACE_DEF (task, get_date),
LUA_INTERFACE_DEF (task, get_message_id),
LUA_INTERFACE_DEF (task, get_timeval),
LUA_INTERFACE_DEF (task, get_metric_score),
LUA_INTERFACE_DEF (task, get_metric_action),
LUA_INTERFACE_DEF (task, set_metric_score),
LUA_INTERFACE_DEF (task, set_metric_action),
LUA_INTERFACE_DEF (task, learn),
LUA_INTERFACE_DEF (task, set_settings),
LUA_INTERFACE_DEF (task, get_settings),
LUA_INTERFACE_DEF (task, lookup_settings),
LUA_INTERFACE_DEF (task, get_settings_id),
LUA_INTERFACE_DEF (task, cache_get),
LUA_INTERFACE_DEF (task, cache_set),
LUA_INTERFACE_DEF (task, process_regexp),
LUA_INTERFACE_DEF (task, get_size),
LUA_INTERFACE_DEF (task, set_flag),
LUA_INTERFACE_DEF (task, get_flags),
LUA_INTERFACE_DEF (task, has_flag),
LUA_INTERFACE_DEF (task, set_rmilter_reply),
LUA_INTERFACE_DEF (task, get_digest),
{"__tostring", rspamd_lua_class_tostring},
{NULL, NULL}
};
/* Image methods */
LUA_FUNCTION_DEF (image, get_width);
LUA_FUNCTION_DEF (image, get_height);
LUA_FUNCTION_DEF (image, get_type);
LUA_FUNCTION_DEF (image, get_filename);
LUA_FUNCTION_DEF (image, get_size);
static const struct luaL_reg imagelib_m[] = {
LUA_INTERFACE_DEF (image, get_width),
LUA_INTERFACE_DEF (image, get_height),
LUA_INTERFACE_DEF (image, get_type),
LUA_INTERFACE_DEF (image, get_filename),
LUA_INTERFACE_DEF (image, get_size),
{"__tostring", rspamd_lua_class_tostring},
{NULL, NULL}
};
/* Archive methods */
LUA_FUNCTION_DEF (archive, get_type);
LUA_FUNCTION_DEF (archive, get_files);
LUA_FUNCTION_DEF (archive, get_files_full);
LUA_FUNCTION_DEF (archive, is_encrypted);
LUA_FUNCTION_DEF (archive, get_filename);
LUA_FUNCTION_DEF (archive, get_size);
static const struct luaL_reg archivelib_m[] = {
LUA_INTERFACE_DEF (archive, get_type),
LUA_INTERFACE_DEF (archive, get_files),
LUA_INTERFACE_DEF (archive, get_files_full),
LUA_INTERFACE_DEF (archive, is_encrypted),
LUA_INTERFACE_DEF (archive, get_filename),
LUA_INTERFACE_DEF (archive, get_size),
{"__tostring", rspamd_lua_class_tostring},
{NULL, NULL}
};
/* Blob methods */
LUA_FUNCTION_DEF (text, len);
LUA_FUNCTION_DEF (text, str);
LUA_FUNCTION_DEF (text, ptr);
LUA_FUNCTION_DEF (text, gc);
static const struct luaL_reg textlib_m[] = {
LUA_INTERFACE_DEF (text, len),
LUA_INTERFACE_DEF (text, str),
LUA_INTERFACE_DEF (text, ptr),
{"__len", lua_text_len},
{"__tostring", lua_text_str},
{"__gc", lua_text_gc},
{NULL, NULL}
};
/* Utility functions */
struct rspamd_task *
lua_check_task (lua_State * L, gint pos)
{
void *ud = rspamd_lua_check_udata (L, pos, "rspamd{task}");
luaL_argcheck (L, ud != NULL, pos, "'task' expected");
return ud ? *((struct rspamd_task **)ud) : NULL;
}
struct rspamd_task *
lua_check_task_maybe (lua_State * L, gint pos)
{
void *ud = rspamd_lua_check_udata_maybe (L, pos, "rspamd{task}");
return ud ? *((struct rspamd_task **)ud) : NULL;
}
static struct rspamd_image *
lua_check_image (lua_State * L)
{
void *ud = rspamd_lua_check_udata (L, 1, "rspamd{image}");
luaL_argcheck (L, ud != NULL, 1, "'image' expected");
return ud ? *((struct rspamd_image **)ud) : NULL;
}
static struct rspamd_archive *
lua_check_archive (lua_State * L)
{
void *ud = rspamd_lua_check_udata (L, 1, "rspamd{archive}");
luaL_argcheck (L, ud != NULL, 1, "'archive' expected");
return ud ? *((struct rspamd_archive **)ud) : NULL;
}
struct rspamd_lua_text *
lua_check_text (lua_State * L, gint pos)
{
void *ud = rspamd_lua_check_udata (L, pos, "rspamd{text}");
luaL_argcheck (L, ud != NULL, pos, "'text' expected");
return ud ? (struct rspamd_lua_text *)ud : NULL;
}
/* Task methods */
static int
lua_task_process_message (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
if (task != NULL) {
if (task->msg.len > 0) {
if (rspamd_message_parse (task) == 0) {
lua_pushboolean (L, TRUE);
}
else {
lua_pushboolean (L, FALSE);
}
}
else {
lua_pushnil (L);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static int
lua_task_get_cfg (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
struct rspamd_config **pcfg;
if (task) {
pcfg = lua_newuserdata (L, sizeof (gpointer));
rspamd_lua_setclass (L, "rspamd{config}", -1);
*pcfg = task->cfg;
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static int
lua_task_set_cfg (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
void *ud = rspamd_lua_check_udata (L, 2, "rspamd{config}");
if (task) {
luaL_argcheck (L, ud != NULL, 1, "'config' expected");
task->cfg = ud ? *((struct rspamd_config **)ud) : NULL;
}
else {
return luaL_error (L, "invalid arguments");
}
return 0;
}
static int
lua_task_destroy (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
if (task != NULL) {
rspamd_task_free (task);
}
return 0;
}
static int
lua_task_get_message (lua_State * L)
{
GMimeMessage **pmsg;
struct rspamd_task *task = lua_check_task (L, 1);
if (task != NULL) {
if (task->message != NULL) {
pmsg = lua_newuserdata (L, sizeof (GMimeMessage *));
rspamd_lua_setclass (L, "rspamd{message}", -1);
*pmsg = task->message;
}
else {
lua_pushnil (L);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static int
lua_task_get_mempool (lua_State * L)
{
rspamd_mempool_t **ppool;
struct rspamd_task *task = lua_check_task (L, 1);
if (task != NULL) {
ppool = lua_newuserdata (L, sizeof (rspamd_mempool_t *));
rspamd_lua_setclass (L, "rspamd{mempool}", -1);
*ppool = task->task_pool;
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static int
lua_task_get_session (lua_State * L)
{
struct rspamd_async_session **psession;
struct rspamd_task *task = lua_check_task (L, 1);
if (task != NULL) {
psession = lua_newuserdata (L, sizeof (void *));
rspamd_lua_setclass (L, "rspamd{session}", -1);
*psession = task->s;
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static int
lua_task_get_ev_base (lua_State * L)
{
struct event_base **pbase;
struct rspamd_task *task = lua_check_task (L, 1);
if (task != NULL) {
pbase = lua_newuserdata (L, sizeof (struct event_base *));
rspamd_lua_setclass (L, "rspamd{ev_base}", -1);
*pbase = task->ev_base;
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_insert_result (lua_State * L)
{
struct rspamd_task *task = lua_check_task (L, 1);
const gchar *symbol_name, *param;
double flag;
GList *params = NULL;
gint i, top;
if (task != NULL) {
symbol_name =
rspamd_mempool_strdup (task->task_pool, luaL_checkstring (L, 2));
flag = luaL_checknumber (L, 3);
top = lua_gettop (L);
/* Get additional options */
for (i = 4; i <= top; i++) {
if (lua_type (L, i) == LUA_TSTRING) {
param = luaL_checkstring (L, i);
params =
g_list_prepend (params,
rspamd_mempool_strdup (task->task_pool, param));
}
else if (lua_type (L, i) == LUA_TTABLE) {
lua_pushvalue (L, i);
lua_pushnil (L);
while (lua_next (L, -2)) {
param = lua_tostring (L, -1);
params = g_list_prepend (params,
rspamd_mempool_strdup (task->task_pool,
param));
lua_pop (L, 1);
}
lua_pop (L, 1);
}
}
if (params) {
params = g_list_reverse (params);
}
rspamd_task_insert_result (task, symbol_name, flag, params);
}
else {
return luaL_error (L, "invalid arguments");
}
return 0;
}
static gint
lua_task_set_pre_result (lua_State * L)
{
struct rspamd_task *task = lua_check_task (L, 1);
struct metric_result *mres;
gchar *action_str;
gint action = METRIC_ACTION_MAX;
if (task != NULL) {
if (lua_type (L, 2) == LUA_TNUMBER) {
action = lua_tointeger (L, 2);
}
else if (lua_type (L, 2) == LUA_TSTRING) {
rspamd_action_from_str (lua_tostring (L, 2), &action);
}
if (action < METRIC_ACTION_MAX && action >= METRIC_ACTION_REJECT) {
/* We also need to set the default metric to that result */
mres = rspamd_create_metric_result (task, DEFAULT_METRIC);
if (mres != NULL) {
mres->score = mres->metric->actions[action].score;
mres->action = action;
}
task->pre_result.action = action;
if (lua_gettop (L) >= 3) {
action_str = rspamd_mempool_strdup (task->task_pool,
luaL_checkstring (L, 3));
task->pre_result.str = action_str;
ucl_object_insert_key (task->messages,
ucl_object_fromstring (action_str), "smtp_message", 0,
false);
}
else {
task->pre_result.str = "unknown";
}
msg_info_task ("<%s>: set pre-result to %s: '%s'",
task->message_id, rspamd_action_to_str (action),
task->pre_result.str);
/* Don't classify or filter message if pre-filter sets results */
task->processed_stages |= (RSPAMD_TASK_STAGE_FILTERS |
RSPAMD_TASK_STAGE_CLASSIFIERS |
RSPAMD_TASK_STAGE_CLASSIFIERS_PRE |
RSPAMD_TASK_STAGE_CLASSIFIERS_POST);
}
else {
return luaL_error (L, "invalid arguments");
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 0;
}
static gint
lua_task_append_message (lua_State * L)
{
struct rspamd_task *task = lua_check_task (L, 1);
const gchar *message = luaL_checkstring (L, 2), *category;
if (task != NULL) {
if (lua_type (L, 3) == LUA_TSTRING) {
category = luaL_checkstring (L, 3);
}
else {
category = "unknown";
}
ucl_object_insert_key (task->messages,
ucl_object_fromstring (message), category, 0,
true);
}
else {
return luaL_error (L, "invalid arguments");
}
return 0;
}
struct lua_tree_cb_data {
lua_State *L;
int i;
};
static void
lua_tree_url_callback (gpointer key, gpointer value, gpointer ud)
{
struct rspamd_lua_url *url;
struct lua_tree_cb_data *cb = ud;
url = lua_newuserdata (cb->L, sizeof (struct rspamd_lua_url));
rspamd_lua_setclass (cb->L, "rspamd{url}", -1);
url->url = value;
lua_rawseti (cb->L, -2, cb->i++);
}
static gint
lua_task_get_urls (lua_State * L)
{
struct rspamd_task *task = lua_check_task (L, 1);
struct lua_tree_cb_data cb;
gboolean need_emails = FALSE;
gsize sz;
if (task) {
if (lua_gettop (L) >= 2) {
need_emails = lua_toboolean (L, 2);
}
sz = g_hash_table_size (task->urls);
if (need_emails) {
sz += g_hash_table_size (task->emails);
}
lua_createtable (L, sz, 0);
cb.i = 1;
cb.L = L;
g_hash_table_foreach (task->urls, lua_tree_url_callback, &cb);
if (need_emails) {
g_hash_table_foreach (task->emails, lua_tree_url_callback, &cb);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_has_urls (lua_State * L)
{
struct rspamd_task *task = lua_check_task (L, 1);
gboolean need_emails = FALSE, ret = FALSE;
if (task) {
if (lua_gettop (L) >= 2) {
need_emails = lua_toboolean (L, 2);
}
if (g_hash_table_size (task->urls) > 0) {
ret = TRUE;
}
if (need_emails && g_hash_table_size (task->emails) > 0) {
ret = TRUE;
}
}
else {
return luaL_error (L, "invalid arguments");
}
lua_pushboolean (L, ret);
return 1;
}
static gint
lua_task_get_content (lua_State * L)
{
struct rspamd_task *task = lua_check_task (L, 1);
struct rspamd_lua_text *t;
if (task) {
t = lua_newuserdata (L, sizeof (*t));
rspamd_lua_setclass (L, "rspamd{text}", -1);
t->len = task->msg.len;
t->start = task->msg.begin;
t->flags = 0;
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_get_rawbody (lua_State * L)
{
struct rspamd_task *task = lua_check_task (L, 1);
struct rspamd_lua_text *t;
if (task) {
t = lua_newuserdata (L, sizeof (*t));
rspamd_lua_setclass (L, "rspamd{text}", -1);
if (task->raw_headers_content.len > 0) {
g_assert (task->raw_headers_content.len <= task->msg.len);
t->start = task->msg.begin + task->raw_headers_content.len;
t->len = task->msg.len - task->raw_headers_content.len;
}
else {
t->len = task->msg.len;
t->start = task->msg.begin;
}
t->flags = 0;
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_get_emails (lua_State * L)
{
struct rspamd_task *task = lua_check_task (L, 1);
struct lua_tree_cb_data cb;
if (task) {
lua_createtable (L, g_hash_table_size (task->emails), 0);
cb.i = 1;
cb.L = L;
g_hash_table_foreach (task->emails, lua_tree_url_callback, &cb);
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_get_text_parts (lua_State * L)
{
guint i;
struct rspamd_task *task = lua_check_task (L, 1);
struct rspamd_mime_text_part *part, **ppart;
if (task != NULL) {
lua_createtable (L, task->text_parts->len, 0);
for (i = 0; i < task->text_parts->len; i ++) {
part = g_ptr_array_index (task->text_parts, i);
ppart = lua_newuserdata (L, sizeof (struct rspamd_mime_text_part *));
*ppart = part;
rspamd_lua_setclass (L, "rspamd{textpart}", -1);
/* Make it array */
lua_rawseti (L, -2, i + 1);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_get_parts (lua_State * L)
{
guint i;
struct rspamd_task *task = lua_check_task (L, 1);
struct rspamd_mime_part *part, **ppart;
if (task != NULL) {
lua_createtable (L, task->parts->len, 0);
for (i = 0; i < task->parts->len; i ++) {
part = g_ptr_array_index (task->parts, i);
ppart = lua_newuserdata (L, sizeof (struct rspamd_mime_part *));
*ppart = part;
rspamd_lua_setclass (L, "rspamd{mimepart}", -1);
/* Make it array */
lua_rawseti (L, -2, i + 1);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_get_request_header (lua_State *L)
{
rspamd_ftok_t *hdr;
struct rspamd_task *task = lua_check_task (L, 1);
const gchar *s;
struct rspamd_lua_text *t;
s = luaL_checkstring (L, 2);
if (s && task) {
hdr = rspamd_task_get_request_header (task, s);
if (hdr) {
t = lua_newuserdata (L, sizeof (*t));
rspamd_lua_setclass (L, "rspamd{text}", -1);
t->start = hdr->begin;
t->len = hdr->len;
t->flags = 0;
return 1;
}
else {
lua_pushnil (L);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_set_request_header (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
const gchar *s, *v = NULL;
rspamd_fstring_t *buf;
struct rspamd_lua_text *t;
rspamd_ftok_t *hdr, *new_name;
gsize len, vlen;
s = luaL_checklstring (L, 2, &len);
if (s && task) {
if (lua_type (L, 3) == LUA_TSTRING) {
v = luaL_checklstring (L, 2, &vlen);
}
else if (lua_type (L, 3) == LUA_TUSERDATA) {
t = lua_check_text (L, 3);
if (t != NULL) {
v = t->start;
vlen = t->len;
}
}
if (v != NULL) {
buf = rspamd_fstring_new_init (v, vlen);
hdr = rspamd_ftok_map (buf);
buf = rspamd_fstring_new_init (s, len);
new_name = rspamd_ftok_map (buf);
rspamd_task_add_request_header (task, new_name, hdr);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 0;
}
gint
rspamd_lua_push_header (lua_State * L,
GPtrArray *ar,
const gchar *name,
gboolean strong,
gboolean full,
gboolean raw)
{
struct raw_header *rh;
guint i;
const gchar *val;
if (ar == NULL || ar->len == 0) {
lua_pushnil (L);
return 1;
}
if (full) {
lua_createtable (L, ar->len, 0);
}
PTR_ARRAY_FOREACH (ar, i, rh) {
if (full) {
/* Create new associated table for a header */
lua_createtable (L, 0, 6);
rspamd_lua_table_set (L, "name", rh->name);
if (rh->value) {
rspamd_lua_table_set (L, "value", rh->value);
}
if (rh->decoded) {
rspamd_lua_table_set (L, "decoded", rh->decoded);
}
lua_pushstring (L, "tab_separated");
lua_pushboolean (L, rh->tab_separated);
lua_settable (L, -3);
lua_pushstring (L, "empty_separator");
lua_pushboolean (L, rh->empty_separator);
lua_settable (L, -3);
rspamd_lua_table_set (L, "separator", rh->separator);
lua_rawseti (L, -2, i + 1);
}
else {
if (!raw) {
val = rh->decoded;
}
else {
val = rh->value;
}
if (val) {
lua_pushstring (L, val);
}
else {
lua_pushnil (L);
}
return 1;
}
}
return 1;
}
static gint
lua_task_get_header_common (lua_State *L, gboolean full, gboolean raw)
{
gboolean strong = FALSE;
struct rspamd_task *task = lua_check_task (L, 1);
const gchar *name;
GPtrArray *ar;
name = luaL_checkstring (L, 2);
if (name && task) {
if (lua_gettop (L) == 3) {
strong = lua_toboolean (L, 3);
}
ar = rspamd_message_get_header_array (task, name, strong);
return rspamd_lua_push_header (L, ar, name,
strong, full, raw);
}
else {
return luaL_error (L, "invalid arguments");
}
}
static gint
lua_task_get_header_full (lua_State * L)
{
return lua_task_get_header_common (L, TRUE, TRUE);
}
static gint
lua_task_get_header (lua_State * L)
{
return lua_task_get_header_common (L, FALSE, FALSE);
}
static gint
lua_task_get_header_raw (lua_State * L)
{
return lua_task_get_header_common (L, FALSE, TRUE);
}
static gint
lua_task_get_raw_headers (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
struct rspamd_lua_text *t;
if (task) {
t = lua_newuserdata (L, sizeof (*t));
rspamd_lua_setclass (L, "rspamd{text}", -1);
t->start = task->raw_headers_content.begin;
t->len = task->raw_headers_content.len;
t->flags = 0;
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_get_received_headers (lua_State * L)
{
struct rspamd_task *task = lua_check_task (L, 1);
struct received_header *rh;
const gchar *proto;
guint i, k = 1;
if (task) {
lua_createtable (L, task->received->len, 0);
for (i = 0; i < task->received->len; i ++) {
rh = g_ptr_array_index (task->received, i);
if (G_UNLIKELY (rh->from_ip == NULL &&
rh->real_ip == NULL &&
rh->real_hostname == NULL &&
rh->by_hostname == NULL && rh->timestamp == 0 &&
rh->for_mbox == NULL)) {
continue;
}
lua_createtable (L, 0, 8);
rspamd_lua_table_set (L, "from_hostname", rh->from_hostname);
rspamd_lua_table_set (L, "from_ip", rh->from_ip);
rspamd_lua_table_set (L, "real_hostname", rh->real_hostname);
lua_pushstring (L, "real_ip");
rspamd_lua_ip_push (L, rh->addr);
lua_settable (L, -3);
lua_pushstring (L, "proto");
switch (rh->type) {
case RSPAMD_RECEIVED_SMTP:
proto = "smtp";
break;
case RSPAMD_RECEIVED_ESMTP:
proto = "esmtp";
break;
case RSPAMD_RECEIVED_ESMTPS:
proto = "esmtps";
break;
case RSPAMD_RECEIVED_ESMTPA:
proto = "esmtpa";
break;
case RSPAMD_RECEIVED_ESMTPSA:
proto = "esmtpsa";
break;
case RSPAMD_RECEIVED_LMTP:
proto = "lmtp";
break;
case RSPAMD_RECEIVED_IMAP:
proto = "imap";
break;
case RSPAMD_RECEIVED_UNKNOWN:
default:
proto = "unknown";
break;
}
lua_pushstring (L, proto);
lua_settable (L, -3);
lua_pushstring (L, "timestamp");
lua_pushnumber (L, rh->timestamp);
lua_settable (L, -3);
rspamd_lua_table_set (L, "by_hostname", rh->by_hostname);
rspamd_lua_table_set (L, "for", rh->for_mbox);
lua_rawseti (L, -2, k ++);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_get_queue_id (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
if (task) {
if (task->queue_id != NULL && strcmp (task->queue_id, "undef") != 0) {
lua_pushstring (L, task->queue_id);
}
else {
lua_pushnil (L);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_get_uid (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
if (task) {
lua_pushstring (L, task->task_pool->tag.uid);
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_get_resolver (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
struct rspamd_dns_resolver **presolver;
if (task != NULL && task->resolver != NULL) {
presolver = lua_newuserdata (L, sizeof (void *));
rspamd_lua_setclass (L, "rspamd{resolver}", -1);
*presolver = task->resolver;
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_inc_dns_req (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
if (task != NULL) {
task->dns_requests++;
}
else {
return luaL_error (L, "invalid arguments");
}
return 0;
}
static gint
lua_task_get_dns_req (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
if (task != NULL) {
lua_pushnumber (L, task->dns_requests);
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
enum rspamd_address_type {
RSPAMD_ADDRESS_ANY = 0,
RSPAMD_ADDRESS_SMTP = 1,
RSPAMD_ADDRESS_MIME = 2,
RSPAMD_ADDRESS_RAW_ANY = 3,
RSPAMD_ADDRESS_RAW_SMTP = 4,
RSPAMD_ADDRESS_RAW_MIME = 5,
RSPAMD_ADDRESS_MAX
};
/*
* Convert element at the specified position to the type
* for get_from/get_recipients
*/
static enum rspamd_address_type
lua_task_str_to_get_type (lua_State *L, gint pos)
{
const gchar *type = NULL;
gint ret = RSPAMD_ADDRESS_ANY;
guint64 h;
gsize sz;
/* Get what value */
if (lua_type (L, pos) == LUA_TNUMBER) {
ret = lua_tonumber (L, pos);
if (ret >= RSPAMD_ADDRESS_ANY && ret < RSPAMD_ADDRESS_MAX) {
return ret;
}
return RSPAMD_ADDRESS_ANY;
}
else if (lua_type (L, pos) == LUA_TSTRING) {
type = lua_tolstring (L, pos, &sz);
if (type && sz > 0) {
h = rspamd_cryptobox_fast_hash_specific (RSPAMD_CRYPTOBOX_XXHASH64,
type, sz, 0xdeadbabe);
switch (h) {
case 0xDA081341FB600389ULL: /* mime */
ret = RSPAMD_ADDRESS_MIME;
break;
case 0xEEC8A7832F8C43ACULL: /* any */
ret = RSPAMD_ADDRESS_ANY;
break;
case 0x472274D5193B2A80ULL: /* smtp */
case 0xEFE0F586CC9F14A9ULL: /* envelope */
ret = RSPAMD_ADDRESS_SMTP;
break;
case 0x9DA887501690DE20ULL: /* raw_mime */
ret = RSPAMD_ADDRESS_RAW_MIME;
break;
case 0x6B54FE02DEB595A4ULL: /* raw_smtp */
case 0xE0E596C861777B02ULL: /* raw_envelope */
ret = RSPAMD_ADDRESS_RAW_SMTP;
break;
case 0x2C49DBE3A10A0197ULL: /* raw_any */
ret = RSPAMD_ADDRESS_RAW_ANY;
break;
}
}
}
return ret;
}
static void
lua_push_email_address (lua_State *L, struct rspamd_email_address *addr)
{
if (addr) {
lua_createtable (L, 0, 3);
if (addr->addr_len > 0) {
lua_pushstring (L, "addr");
lua_pushlstring (L, addr->addr, addr->addr_len);
lua_settable (L, -3);
}
else {
lua_pushstring (L, "addr");
lua_pushstring (L, "");
lua_settable (L, -3);
}
if (addr->domain_len > 0) {
lua_pushstring (L, "domain");
lua_pushlstring (L, addr->domain, addr->domain_len);
lua_settable (L, -3);
}
else {
lua_pushstring (L, "domain");
lua_pushstring (L, "");
lua_settable (L, -3);
}
if (addr->user_len > 0) {
lua_pushstring (L, "user");
lua_pushlstring (L, addr->user, addr->user_len);
lua_settable (L, -3);
}
else {
lua_pushstring (L, "user");
lua_pushstring (L, "");
lua_settable (L, -3);
}
}
}
static void
lua_push_emails_address_list (lua_State *L, GPtrArray *addrs)
{
struct rspamd_email_address *addr;
guint i;
lua_createtable (L, addrs->len, 0);
for (i = 0; i < addrs->len; i ++) {
addr = g_ptr_array_index (addrs, i);
lua_push_email_address (L, addr);
lua_rawseti (L, -2, i + 1);
}
}
static gint
lua_task_get_recipients (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
InternetAddressList *addrs = NULL;
GPtrArray *ptrs = NULL;
gint what = 0;
if (task) {
if (lua_gettop (L) == 2) {
/* Get what value */
what = lua_task_str_to_get_type (L, 2);
}
switch (what) {
case RSPAMD_ADDRESS_SMTP:
/* Here we check merely envelope rcpt */
ptrs = task->rcpt_envelope;
break;
case RSPAMD_ADDRESS_MIME:
/* Here we check merely mime rcpt */
addrs = task->rcpt_mime;
break;
case RSPAMD_ADDRESS_ANY:
default:
if (task->rcpt_envelope) {
ptrs = task->rcpt_envelope;
}
else {
addrs = task->rcpt_mime;
}
break;
}
if (addrs) {
lua_push_internet_address_list (L, addrs);
}
else if (ptrs) {
lua_push_emails_address_list (L, ptrs);
}
else {
lua_pushnil (L);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
#define CHECK_ADDR(addr) do { \
if (addr == NULL) { \
ret = 0; \
} \
else { \
ret = internet_address_list_length (addr) > 0 ? 1 : 0; \
} \
} while (0)
#define CHECK_EMAIL_ADDR(addr) do { \
if (addr == NULL) { \
ret = 0; \
} \
else { \
ret = addr->flags & RSPAMD_EMAIL_ADDR_VALID; \
} \
} while (0)
#define CHECK_EMAIL_ADDR_LIST(addr) do { \
if (addr == NULL) { \
ret = 0; \
} \
else { \
ret = addr->len > 0; \
} \
} while (0)
static gint
lua_task_has_from (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
gint what = 0;
gboolean ret = FALSE;
if (task) {
if (lua_gettop (L) == 2) {
/* Get what value */
what = lua_task_str_to_get_type (L, 2);
}
switch (what) {
case RSPAMD_ADDRESS_SMTP:
/* Here we check merely envelope rcpt */
CHECK_EMAIL_ADDR (task->from_envelope);
break;
case RSPAMD_ADDRESS_MIME:
/* Here we check merely mime rcpt */
CHECK_ADDR (task->from_mime);
break;
case RSPAMD_ADDRESS_ANY:
default:
CHECK_EMAIL_ADDR (task->from_envelope);
if (!ret) {
CHECK_ADDR (task->from_mime);
}
break;
}
}
else {
return luaL_error (L, "invalid arguments");
}
lua_pushboolean (L, ret);
return 1;
}
static gint
lua_task_has_recipients (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
gint what = 0;
gboolean ret = FALSE;
if (task) {
if (lua_gettop (L) == 2) {
/* Get what value */
what = lua_task_str_to_get_type (L, 2);
}
switch (what) {
case RSPAMD_ADDRESS_SMTP:
/* Here we check merely envelope rcpt */
CHECK_EMAIL_ADDR_LIST (task->rcpt_envelope);
break;
case RSPAMD_ADDRESS_MIME:
/* Here we check merely mime rcpt */
CHECK_ADDR (task->rcpt_mime);
break;
case RSPAMD_ADDRESS_ANY:
default:
CHECK_EMAIL_ADDR_LIST (task->rcpt_envelope);
if (!ret) {
CHECK_ADDR (task->rcpt_mime);
}
break;
}
}
else {
return luaL_error (L, "invalid arguments");
}
lua_pushboolean (L, ret);
return 1;
}
static gint
lua_task_get_from (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
InternetAddressList *addrs = NULL;
struct rspamd_email_address *addr = NULL;
gint what = 0;
if (task) {
if (lua_gettop (L) == 2) {
/* Get what value */
what = lua_task_str_to_get_type (L, 2);
}
switch (what) {
case RSPAMD_ADDRESS_SMTP:
/* Here we check merely envelope rcpt */
addr = task->from_envelope;
break;
case RSPAMD_ADDRESS_MIME:
/* Here we check merely mime rcpt */
addrs = task->from_mime;
break;
case RSPAMD_ADDRESS_ANY:
default:
if (task->from_envelope) {
addr = task->from_envelope;
}
else {
addrs = task->from_mime;
}
break;
}
if (addrs) {
lua_push_internet_address_list (L, addrs);
}
else if (addr) {
/* Create table to preserve compatibility */
if (addr->addr) {
lua_createtable (L, 1, 0);
lua_push_email_address (L, addr);
lua_rawseti (L, -2, 1);
}
else {
lua_pushnil (L);
}
}
else {
lua_pushnil (L);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_get_user (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
if (task) {
if (task->user != NULL) {
lua_pushstring (L, task->user);
}
else {
lua_pushnil (L);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_set_user (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
const gchar *new_user;
if (task) {
new_user = luaL_checkstring (L, 2);
if (new_user) {
task->user = rspamd_mempool_strdup (task->task_pool, new_user);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 0;
}
static gint
lua_task_get_from_ip (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
if (task) {
rspamd_lua_ip_push (L, task->from_addr);
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_set_from_ip (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
const gchar *ip_str = luaL_checkstring (L, 2);
rspamd_inet_addr_t *addr = NULL;
if (!task || !ip_str) {
lua_pushstring (L, "invalid parameters");
return lua_error (L);
}
else {
if (!rspamd_parse_inet_address (&addr,
ip_str,
0)) {
msg_warn_task ("cannot get IP from received header: '%s'",
ip_str);
}
else {
if (task->from_addr) {
rspamd_inet_address_destroy (task->from_addr);
}
task->from_addr = addr;
}
}
return 0;
}
static gint
lua_task_get_from_ip_num (lua_State *L)
{
msg_err ("this function is deprecated and should no longer be used");
lua_pushnil (L);
return 1;
}
static gint
lua_task_get_client_ip (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
if (task) {
rspamd_lua_ip_push (L, task->client_addr);
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_get_helo (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
if (task) {
if (task->helo != NULL) {
lua_pushstring (L, (gchar *)task->helo);
return 1;
}
else {
lua_pushnil (L);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_set_helo (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
const gchar *new_helo;
if (task) {
new_helo = luaL_checkstring (L, 2);
if (new_helo) {
task->helo = rspamd_mempool_strdup (task->task_pool, new_helo);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 0;
}
static gint
lua_task_get_hostname (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
if (task) {
if (task->hostname != NULL) {
/* Check whether it looks like an IP address */
if (*task->hostname == '[') {
/*
* From the milter documentation:
* If the reverse lookup fails or if none of the IP
* addresses of the resolved host name matches the
* original IP address, hostname will contain the
* message sender's IP address enclosed in square
* brackets (e.g. `[a.b.c.d]')
*/
lua_pushstring (L, "unknown");
}
else {
lua_pushstring (L, task->hostname);
}
}
else {
lua_pushnil (L);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_set_hostname (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
const gchar *new_hostname;
if (task) {
new_hostname = luaL_checkstring (L, 2);
if (new_hostname) {
task->hostname = rspamd_mempool_strdup (task->task_pool,
new_hostname);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 0;
}
static gint
lua_task_get_images (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
guint nelt = 0, i;
struct rspamd_mime_part *part;
struct rspamd_image **pimg;
if (task) {
lua_newtable (L);
for (i = 0; i < task->parts->len; i ++) {
part = g_ptr_array_index (task->parts, i);
if (part->flags & RSPAMD_MIME_PART_IMAGE) {
pimg = lua_newuserdata (L, sizeof (struct rspamd_image *));
rspamd_lua_setclass (L, "rspamd{image}", -1);
*pimg = part->specific_data;
lua_rawseti (L, -2, ++nelt);
}
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_get_archives (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
guint nelt = 0, i;
struct rspamd_mime_part *part;
struct rspamd_archive **parch;
if (task) {
lua_createtable (L, task->parts->len, 0);
for (i = 0; i < task->parts->len; i ++) {
part = g_ptr_array_index (task->parts, i);
if (part->flags & RSPAMD_MIME_PART_ARCHIVE) {
parch = lua_newuserdata (L, sizeof (struct rspamd_archive *));
rspamd_lua_setclass (L, "rspamd{archive}", -1);
*parch = part->specific_data;
lua_rawseti (L, -2, ++nelt);
}
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static inline gboolean
lua_push_symbol_result (lua_State *L,
struct rspamd_task *task,
struct metric *metric,
const gchar *symbol)
{
struct metric_result *metric_res;
struct symbol *s;
gint j;
GList *opt;
metric_res = g_hash_table_lookup (task->results, metric->name);
if (metric_res) {
if ((s = g_hash_table_lookup (metric_res->symbols, symbol)) != NULL) {
j = 1;
lua_newtable (L);
lua_pushstring (L, "metric");
lua_pushstring (L, metric->name);
lua_settable (L, -3);
lua_pushstring (L, "score");
lua_pushnumber (L, s->score);
lua_settable (L, -3);
if (s->def && s->def->gr) {
lua_pushstring (L, "group");
lua_pushstring (L, s->def->gr->name);
lua_settable (L, -3);
}
else {
lua_pushstring (L, "group");
lua_pushstring (L, "ungrouped");
lua_settable (L, -3);
}
if (s->options) {
opt = s->options;
lua_pushstring (L, "options");
lua_newtable (L);
while (opt) {
lua_pushstring (L, opt->data);
lua_rawseti (L, -2, j++);
opt = g_list_next (opt);
}
lua_settable (L, -3);
}
return TRUE;
}
}
return FALSE;
}
static gint
lua_task_get_symbol (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
const gchar *symbol;
struct metric *metric;
GList *cur = NULL, *metric_list;
gboolean found = FALSE;
gint i = 1;
symbol = luaL_checkstring (L, 2);
if (task && symbol) {
metric_list = g_hash_table_lookup (task->cfg->metrics_symbols, symbol);
if (metric_list) {
lua_newtable (L);
cur = metric_list;
}
else {
metric = task->cfg->default_metric;
}
if (!cur && metric) {
if ((found = lua_push_symbol_result (L, task, metric, symbol))) {
lua_newtable (L);
lua_rawseti (L, -2, i++);
}
}
else {
while (cur) {
metric = cur->data;
if (lua_push_symbol_result (L, task, metric, symbol)) {
lua_rawseti (L, -2, i++);
found = TRUE;
}
cur = g_list_next (cur);
}
}
}
else {
return luaL_error (L, "invalid arguments");
}
if (!found) {
lua_pushnil (L);
}
return 1;
}
static gint
lua_task_has_symbol (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
const gchar *symbol;
struct metric_result *mres;
gboolean found = FALSE;
symbol = luaL_checkstring (L, 2);
if (task && symbol) {
mres = g_hash_table_lookup (task->results, DEFAULT_METRIC);
if (mres) {
found = g_hash_table_lookup (mres->symbols, symbol) != NULL;
}
lua_pushboolean (L, found);
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_get_symbols (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
struct metric_result *mres;
gint i = 1;
GHashTableIter it;
gpointer k, v;
struct symbol *s;
if (task) {
mres = g_hash_table_lookup (task->results, DEFAULT_METRIC);
if (mres) {
lua_createtable (L, g_hash_table_size (mres->symbols), 0);
lua_createtable (L, g_hash_table_size (mres->symbols), 0);
g_hash_table_iter_init (&it, mres->symbols);
while (g_hash_table_iter_next (&it, &k, &v)) {
s = v;
lua_pushstring (L, k);
lua_rawseti (L, -3, i);
lua_pushnumber (L, s->score);
lua_rawseti (L, -2, i);
i ++;
}
}
else {
lua_createtable (L, 0, 0);
lua_createtable (L, 0, 0);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 2;
}
static gint
lua_task_get_symbols_numeric (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
struct metric_result *mres;
gint i = 1, id;
GHashTableIter it;
gpointer k, v;
struct symbol *s;
if (task) {
mres = g_hash_table_lookup (task->results, DEFAULT_METRIC);
if (mres) {
lua_createtable (L, g_hash_table_size (mres->symbols), 0);
lua_createtable (L, g_hash_table_size (mres->symbols), 0);
g_hash_table_iter_init (&it, mres->symbols);
while (g_hash_table_iter_next (&it, &k, &v)) {
id = rspamd_symbols_cache_find_symbol (task->cfg->cache,
k);
s = v;
lua_pushnumber (L, id);
lua_rawseti (L, -3, i);
lua_pushnumber (L, s->score);
lua_rawseti (L, -2, i);
i ++;
}
}
else {
lua_createtable (L, 0, 0);
lua_createtable (L, 0, 0);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 2;
}
enum lua_date_type {
DATE_CONNECT = 0,
DATE_MESSAGE,
DATE_CONNECT_STRING,
DATE_MESSAGE_STRING
};
static enum lua_date_type
lua_task_detect_date_type (lua_State *L, gint idx, gboolean *gmt)
{
enum lua_date_type type = DATE_CONNECT;
if (lua_type (L, idx) == LUA_TNUMBER) {
gint num = lua_tonumber (L, idx);
if (num >= DATE_CONNECT && num <= DATE_MESSAGE_STRING) {
return num;
}
}
else if (lua_type (L, idx) == LUA_TTABLE) {
const gchar *str;
lua_pushvalue (L, idx);
lua_pushstring (L, "format");
lua_gettable (L, -2);
str = lua_tostring (L, -1);
if (g_ascii_strcasecmp (str, "message") == 0) {
type = DATE_MESSAGE;
}
else if (g_ascii_strcasecmp (str, "connect_str") == 0) {
type = DATE_CONNECT_STRING;
}
else if (g_ascii_strcasecmp (str, "message_str") == 0) {
type = DATE_MESSAGE_STRING;
}
lua_pop (L, 1);
lua_pushstring (L, "gmt");
lua_gettable (L, -2);
if (lua_type (L, -1) == LUA_TBOOLEAN) {
*gmt = lua_toboolean (L, -1);
}
/* Value and table */
lua_pop (L, 2);
}
return type;
}
static gint
lua_task_get_date (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
gdouble tim;
enum lua_date_type type = DATE_CONNECT;
gboolean gmt = TRUE;
if (task != NULL) {
if (lua_gettop (L) > 1) {
type = lua_task_detect_date_type (L, 2, &gmt);
}
/* Get GMT date and store it to time_t */
if (type == DATE_CONNECT || type == DATE_CONNECT_STRING) {
tim = (tv_to_msec (&task->tv)) / 1000.;
if (!gmt) {
struct tm t;
time_t tt;
tt = tim;
localtime_r (&tt, &t);
#if !defined(__sun)
t.tm_gmtoff = 0;
#endif
t.tm_isdst = 0;
tim = mktime (&t);
}
}
else {
if (task->message) {
time_t tt;
gint offset;
g_mime_message_get_date (task->message, &tt, &offset);
if (!gmt) {
tt += (offset * 60 * 60) / 100 + (offset * 60 * 60) % 100;
}
tim = tt;
}
else {
tim = 0.0;
}
}
if (type == DATE_CONNECT || type == DATE_MESSAGE) {
lua_pushnumber (L, tim);
}
else {
GTimeVal tv;
gchar *out;
double_to_tv (tim, &tv);
out = g_time_val_to_iso8601 (&tv);
lua_pushstring (L, out);
g_free (out);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_get_message_id (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
if (task != NULL) {
if (task->message_id != NULL) {
lua_pushstring (L, task->message_id);
}
else {
lua_pushnil (L);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_get_timeval (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
if (task != NULL) {
lua_createtable (L, 0, 2);
lua_pushstring (L, "tv_sec");
lua_pushnumber (L, (lua_Number)task->tv.tv_sec);
lua_settable (L, -3);
lua_pushstring (L, "tv_usec");
lua_pushnumber (L, (lua_Number)task->tv.tv_usec);
lua_settable (L, -3);
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_get_size (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
if (task != NULL) {
lua_pushnumber (L, task->msg.len);
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
/**
* - `no_log`: do not log task summary
* - `no_stat`: do not include task into scanned stats
* - `pass_all`: check all filters for task
* - `extended_urls`: output extended info about urls
* - `skip`: skip task processing
*/
#define LUA_TASK_FLAG_WRITE(flag, set) do { \
task->flags = (set) ? (task->flags | (flag)) : (task->flags & ~(flag)); \
} while(0)
#define LUA_TASK_SET_FLAG(flag, strname, macro, set) do { \
if (!found && strcmp ((flag), strname) == 0) { \
LUA_TASK_FLAG_WRITE((macro), set); \
found = TRUE; \
} \
} while(0)
#define LUA_TASK_FLAG_READ(flag) do { \
lua_pushboolean(L, !!(task->flags & (flag))); \
} while(0)
#define LUA_TASK_GET_FLAG(flag, strname, macro) do { \
if (!found && strcmp ((flag), strname) == 0) { \
LUA_TASK_FLAG_READ((macro)); \
found = TRUE; \
} \
} while(0)
static gint
lua_task_set_flag (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
const gchar *flag = luaL_checkstring (L, 2);
gboolean set = TRUE, found = FALSE;
if (lua_gettop (L) >= 3) {
set = lua_toboolean (L, 3);
}
if (task != NULL && flag != NULL) {
LUA_TASK_SET_FLAG (flag, "pass_all", RSPAMD_TASK_FLAG_PASS_ALL, set);
LUA_TASK_SET_FLAG (flag, "no_log", RSPAMD_TASK_FLAG_NO_LOG, set);
LUA_TASK_SET_FLAG (flag, "no_stat", RSPAMD_TASK_FLAG_NO_STAT, set);
LUA_TASK_SET_FLAG (flag, "skip", RSPAMD_TASK_FLAG_SKIP, set);
LUA_TASK_SET_FLAG (flag, "extended_urls", RSPAMD_TASK_FLAG_EXT_URLS, set);
LUA_TASK_SET_FLAG (flag, "learn_spam", RSPAMD_TASK_FLAG_LEARN_SPAM, set);
LUA_TASK_SET_FLAG (flag, "learn_ham", RSPAMD_TASK_FLAG_LEARN_HAM, set);
LUA_TASK_SET_FLAG (flag, "broken_headers",
RSPAMD_TASK_FLAG_BROKEN_HEADERS, set);
if (!found) {
msg_warn_task ("unknown flag requested: %s", flag);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 0;
}
static gint
lua_task_has_flag (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
const gchar *flag = luaL_checkstring (L, 2);
gboolean found = FALSE;
if (task != NULL && flag != NULL) {
LUA_TASK_GET_FLAG (flag, "pass_all", RSPAMD_TASK_FLAG_PASS_ALL);
LUA_TASK_GET_FLAG (flag, "no_log", RSPAMD_TASK_FLAG_NO_LOG);
LUA_TASK_GET_FLAG (flag, "no_stat", RSPAMD_TASK_FLAG_NO_STAT);
LUA_TASK_GET_FLAG (flag, "skip", RSPAMD_TASK_FLAG_SKIP);
LUA_TASK_GET_FLAG (flag, "extended_urls", RSPAMD_TASK_FLAG_EXT_URLS);
LUA_TASK_GET_FLAG (flag, "learn_spam", RSPAMD_TASK_FLAG_LEARN_SPAM);
LUA_TASK_GET_FLAG (flag, "learn_ham", RSPAMD_TASK_FLAG_LEARN_HAM);
LUA_TASK_GET_FLAG (flag, "broken_headers",
RSPAMD_TASK_FLAG_BROKEN_HEADERS);
if (!found) {
msg_warn_task ("unknown flag requested: %s", flag);
lua_pushboolean (L, 0);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_get_flags (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
gint idx = 1;
guint flags, bit, i;
if (task) {
lua_createtable (L, 8, 0);
flags = task->flags;
for (i = 0; i < sizeof (task->flags) * NBBY; i ++) {
bit = (1U << i);
if (flags & bit) {
switch (bit) {
case RSPAMD_TASK_FLAG_PASS_ALL:
lua_pushstring (L, "pass_all");
lua_rawseti (L, -2, idx ++);
break;
case RSPAMD_TASK_FLAG_NO_LOG:
lua_pushstring (L, "no_log");
lua_rawseti (L, -2, idx++);
break;
case RSPAMD_TASK_FLAG_NO_STAT:
lua_pushstring (L, "no_stat");
lua_rawseti (L, -2, idx++);
break;
case RSPAMD_TASK_FLAG_SKIP:
lua_pushstring (L, "skip");
lua_rawseti (L, -2, idx++);
break;
case RSPAMD_TASK_FLAG_EXT_URLS:
lua_pushstring (L, "extended_urls");
lua_rawseti (L, -2, idx++);
break;
case RSPAMD_TASK_FLAG_BROKEN_HEADERS:
lua_pushstring (L, "broken_headers");
lua_rawseti (L, -2, idx++);
break;
case RSPAMD_TASK_FLAG_LEARN_SPAM:
lua_pushstring (L, "learn_spam");
lua_rawseti (L, -2, idx++);
break;
case RSPAMD_TASK_FLAG_LEARN_HAM:
lua_pushstring (L, "learn_ham");
lua_rawseti (L, -2, idx++);
break;
default:
break;
}
}
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_get_digest (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
gchar hexbuf[33];
gint r;
if (task) {
r = rspamd_encode_hex_buf (task->digest, sizeof (task->digest),
hexbuf, sizeof (hexbuf) - 1);
if (r > 0) {
hexbuf[r] = '\0';
lua_pushstring (L, hexbuf);
}
else {
lua_pushnil (L);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_learn (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
gboolean is_spam = FALSE;
const gchar *clname = NULL;
GError *err = NULL;
int ret = 1;
if (task == NULL) {
return luaL_error (L, "invalid arguments");
}
is_spam = lua_toboolean(L, 2);
if (lua_gettop (L) > 2) {
clname = luaL_checkstring (L, 3);
}
if (!rspamd_learn_task_spam (task, is_spam, clname, &err)) {
lua_pushboolean (L, FALSE);
if (err != NULL) {
lua_pushstring (L, err->message);
ret = 2;
}
}
else {
lua_pushboolean (L, TRUE);
}
return ret;
}
static gint
lua_task_set_settings (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
ucl_object_t *settings;
const ucl_object_t *act, *elt, *metric_elt;
struct metric_result *mres;
guint i;
settings = ucl_object_lua_import (L, 2);
if (settings != NULL && task != NULL) {
metric_elt = ucl_object_lookup (settings, DEFAULT_METRIC);
if (metric_elt) {
task->settings = ucl_object_ref (metric_elt);
ucl_object_unref (settings);
}
else {
task->settings = settings;
}
act = ucl_object_lookup (task->settings, "actions");
if (act) {
/* Adjust desired actions */
mres = g_hash_table_lookup (task->results, DEFAULT_METRIC);
if (mres == NULL) {
mres = rspamd_create_metric_result (task, DEFAULT_METRIC);
}
for (i = 0; i < METRIC_ACTION_MAX; i++) {
elt = ucl_object_lookup_any (act, rspamd_action_to_str (i),
rspamd_action_to_str_alt (i), NULL);
if (elt) {
mres->actions_limits[i] = ucl_object_todouble (elt);
msg_debug_task ("adjusted action %s to %.2f",
ucl_object_key (elt), mres->actions_limits[i]);
}
}
}
rspamd_symbols_cache_process_settings (task, task->cfg->cache);
}
else {
return luaL_error (L, "invalid arguments");
}
return 0;
}
static gint
lua_task_set_rmilter_reply (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
ucl_object_t *reply;
reply = ucl_object_lua_import (L, 2);
if (reply != NULL && task != NULL) {
rspamd_mempool_set_variable (task->task_pool, "rmilter-reply",
reply, (rspamd_mempool_destruct_t)ucl_object_unref);
}
else {
return luaL_error (L, "invalid arguments");
}
return 0;
}
static gint
lua_task_get_settings (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
if (task != NULL) {
if (task->settings) {
return ucl_object_push_lua (L, task->settings, true);
}
else {
lua_pushnil (L);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_lookup_settings (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
const gchar *key = NULL;
const ucl_object_t *elt;
if (task != NULL) {
if (lua_isstring (L, 2)) {
key = lua_tostring (L, 2);
}
if (task->settings) {
if (key == NULL) {
return ucl_object_push_lua (L, task->settings, true);
}
else {
elt = ucl_object_lookup (task->settings, key);
if (elt) {
return ucl_object_push_lua (L, elt, true);
}
else {
lua_pushnil (L);
}
}
}
else {
lua_pushnil (L);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_get_settings_id (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
guint32 *hp;
if (task != NULL) {
hp = rspamd_mempool_get_variable (task->task_pool, "settings_hash");
if (hp) {
lua_pushnumber (L, *hp);
}
else {
lua_pushnil (L);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_cache_get (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
if (task) {
msg_err_task ("this function is deprecated and will return nothing");
}
lua_pushnumber (L, -1);
return 1;
}
static gint
lua_task_cache_set (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
if (task) {
msg_err_task ("this function is deprecated and will return nothing");
}
lua_pushnumber (L, 0);
return 1;
}
static gint
lua_task_process_regexp (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
struct rspamd_lua_regexp *re = NULL;
gboolean strong = FALSE;
const gchar *type_str = NULL, *header_str = NULL;
gsize header_len = 0;
GError *err = NULL;
gint ret = 0;
enum rspamd_re_type type = RSPAMD_RE_BODY;
/*
* - `re`* : regular expression object
* - `type`*: type of regular expression:
* + `mime`: mime regexp
* + `rawmime`: raw mime regexp
* + `header`: header regexp
* + `rawheader`: raw header expression
* + `body`: raw body regexp
* + `url`: url regexp
* - `header`: for header and rawheader regexp means the name of header
* - `strong`: case sensitive match for headers
*/
if (task != NULL) {
if (!rspamd_lua_parse_table_arguments (L, 2, &err,
"*re=U{regexp};*type=S;header=V;strong=B",
&re, &type_str, &header_len, &header_str,
&strong)) {
msg_err_task ("cannot get parameters list: %e", err);
if (err) {
g_error_free (err);
}
}
else {
type = rspamd_re_cache_type_from_string (type_str);
if ((type == RSPAMD_RE_HEADER || type == RSPAMD_RE_RAWHEADER)
&& header_str == NULL) {
msg_err_task (
"header argument is mandatory for header/rawheader regexps");
}
else {
ret = rspamd_re_cache_process (task, re->re, type,
(gpointer) header_str, header_len, strong);
}
}
}
else {
return luaL_error (L, "invalid arguments");
}
lua_pushnumber (L, ret);
return 1;
}
static gint
lua_task_get_metric_score (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
const gchar *metric_name;
gdouble rs;
struct metric_result *metric_res;
metric_name = luaL_checkstring (L, 2);
if (task && metric_name) {
if ((metric_res =
g_hash_table_lookup (task->results, metric_name)) != NULL) {
lua_createtable (L, 2, 0);
lua_pushnumber (L, metric_res->score);
rs = rspamd_task_get_required_score (task, metric_res);
lua_rawseti (L, -2, 1);
lua_pushnumber (L, rs);
lua_rawseti (L, -2, 2);
}
else {
lua_pushnil (L);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_get_metric_action (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
const gchar *metric_name;
struct metric_result *metric_res;
enum rspamd_metric_action action;
metric_name = luaL_checkstring (L, 2);
if (metric_name == NULL) {
metric_name = DEFAULT_METRIC;
}
if (task && metric_name) {
if ((metric_res =
g_hash_table_lookup (task->results, metric_name)) != NULL) {
action = rspamd_check_action_metric (task, metric_res);
lua_pushstring (L, rspamd_action_to_str (action));
}
else {
lua_pushnil (L);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_set_metric_score (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
const gchar *metric_name;
struct metric_result *metric_res;
gdouble nscore;
metric_name = luaL_checkstring (L, 2);
nscore = luaL_checknumber (L, 3);
if (metric_name == NULL) {
metric_name = DEFAULT_METRIC;
}
if (task && metric_name) {
if ((metric_res =
g_hash_table_lookup (task->results, metric_name)) != NULL) {
metric_res->score = nscore;
lua_pushboolean (L, true);
}
else {
lua_pushboolean (L, false);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_task_set_metric_action (lua_State *L)
{
struct rspamd_task *task = lua_check_task (L, 1);
const gchar *metric_name, *action_name;
struct metric_result *metric_res;
gint action;
metric_name = luaL_checkstring (L, 2);
if (metric_name == NULL) {
metric_name = DEFAULT_METRIC;
}
action_name = luaL_checkstring (L, 3);
if (task && metric_name && action_name) {
if ((metric_res =
g_hash_table_lookup (task->results, metric_name)) != NULL) {
if (rspamd_action_from_str (action_name, &action)) {
metric_res->action = action;
lua_pushboolean (L, true);
}
else {
lua_pushboolean (L, false);
}
}
else {
lua_pushboolean (L, false);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
/* Image functions */
static gint
lua_image_get_width (lua_State *L)
{
struct rspamd_image *img = lua_check_image (L);
if (img != NULL) {
lua_pushnumber (L, img->width);
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_image_get_height (lua_State *L)
{
struct rspamd_image *img = lua_check_image (L);
if (img != NULL) {
lua_pushnumber (L, img->height);
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_image_get_type (lua_State *L)
{
struct rspamd_image *img = lua_check_image (L);
if (img != NULL) {
lua_pushstring (L, rspamd_image_type_str (img->type));
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_image_get_size (lua_State *L)
{
struct rspamd_image *img = lua_check_image (L);
if (img != NULL) {
lua_pushinteger (L, img->data->len);
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_image_get_filename (lua_State *L)
{
struct rspamd_image *img = lua_check_image (L);
if (img != NULL && img->filename != NULL) {
lua_pushstring (L, img->filename);
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
/* Arvhive methods */
static gint
lua_archive_get_type (lua_State *L)
{
struct rspamd_archive *arch = lua_check_archive (L);
if (arch != NULL) {
lua_pushstring (L, rspamd_archive_type_str (arch->type));
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_archive_get_files (lua_State *L)
{
struct rspamd_archive *arch = lua_check_archive (L);
guint i;
struct rspamd_archive_file *f;
if (arch != NULL) {
lua_createtable (L, arch->files->len, 0);
for (i = 0; i < arch->files->len; i ++) {
f = g_ptr_array_index (arch->files, i);
lua_pushlstring (L, f->fname->str, f->fname->len);
lua_rawseti (L, -2, i + 1);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_archive_get_files_full (lua_State *L)
{
struct rspamd_archive *arch = lua_check_archive (L);
guint i;
struct rspamd_archive_file *f;
if (arch != NULL) {
lua_createtable (L, arch->files->len, 0);
for (i = 0; i < arch->files->len; i ++) {
f = g_ptr_array_index (arch->files, i);
lua_createtable (L, 0, 4);
lua_pushstring (L, "name");
lua_pushlstring (L, f->fname->str, f->fname->len);
lua_settable (L, -3);
lua_pushstring (L, "compressed_size");
lua_pushnumber (L, f->compressed_size);
lua_settable (L, -3);
lua_pushstring (L, "uncompressed_size");
lua_pushnumber (L, f->uncompressed_size);
lua_settable (L, -3);
lua_pushstring (L, "encrypted");
lua_pushboolean (L, (f->flags & RSPAMD_ARCHIVE_FILE_ENCRYPTED) ? true : false);
lua_settable (L, -3);
lua_rawseti (L, -2, i + 1);
}
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_archive_is_encrypted (lua_State *L)
{
struct rspamd_archive *arch = lua_check_archive (L);
if (arch != NULL) {
lua_pushboolean (L, (arch->flags & RSPAMD_ARCHIVE_ENCRYPTED) ? true : false);
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_archive_get_size (lua_State *L)
{
struct rspamd_archive *arch = lua_check_archive (L);
if (arch != NULL) {
lua_pushinteger (L, arch->size);
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_archive_get_filename (lua_State *L)
{
struct rspamd_archive *arch = lua_check_archive (L);
if (arch != NULL) {
lua_pushstring (L, arch->archive_name);
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
/* Text methods */
static gint
lua_text_len (lua_State *L)
{
struct rspamd_lua_text *t = lua_check_text (L, 1);
gsize l = 0;
if (t != NULL) {
l = t->len;
}
else {
return luaL_error (L, "invalid arguments");
}
lua_pushnumber (L, l);
return 1;
}
static gint
lua_text_str (lua_State *L)
{
struct rspamd_lua_text *t = lua_check_text (L, 1);
if (t != NULL) {
lua_pushlstring (L, t->start, t->len);
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_text_ptr (lua_State *L)
{
struct rspamd_lua_text *t = lua_check_text (L, 1);
if (t != NULL) {
lua_pushlightuserdata (L, (gpointer)t->start);
}
else {
return luaL_error (L, "invalid arguments");
}
return 1;
}
static gint
lua_text_gc (lua_State *L)
{
struct rspamd_lua_text *t = lua_check_text (L, 1);
if (t != NULL) {
if (t->flags & RSPAMD_TEXT_FLAG_OWN) {
if (t->flags & RSPAMD_TEXT_FLAG_MMAPED) {
munmap ((gpointer)t->start, t->len);
}
else {
g_free ((gpointer)t->start);
}
}
}
return 0;
}
/* Init part */
static gint
lua_load_task (lua_State * L)
{
lua_newtable (L);
luaL_register (L, NULL, tasklib_f);
return 1;
}
static void
luaopen_archive (lua_State * L)
{
rspamd_lua_new_class (L, "rspamd{archive}", archivelib_m);
lua_pop (L, 1);
}
void
luaopen_task (lua_State * L)
{
rspamd_lua_new_class (L, "rspamd{task}", tasklib_m);
lua_pop (L, 1);
rspamd_lua_add_preload (L, "rspamd_task", lua_load_task);
luaopen_archive (L);
}
void
luaopen_image (lua_State * L)
{
rspamd_lua_new_class (L, "rspamd{image}", imagelib_m);
lua_pop (L, 1);
}
void
luaopen_text (lua_State *L)
{
rspamd_lua_new_class (L, "rspamd{text}", textlib_m);
lua_pop (L, 1);
}
void
rspamd_lua_task_push (lua_State *L, struct rspamd_task *task)
{
struct rspamd_task **ptask;
ptask = lua_newuserdata (L, sizeof (gpointer));
rspamd_lua_setclass (L, "rspamd{task}", -1);
*ptask = task;
}
|