summaryrefslogtreecommitdiffstats
path: root/rtkit-daemon.c
blob: 3ecc1f7840a0d9bdd3af7f08933c4a62546094eb (plain)
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
/*-*- Mode: C; c-basic-offset: 8 -*-*/

/***
  This file is part of RealtimeKit.

  Copyright 2009 Lennart Poettering
  Copyright 2010 Maarten Lankhorst

  RealtimeKit is free software: you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation, either version 3 of the License, or
  (at your option) any later version.

  RealtimeKit is distributed in the hope that it will be useful, but
  WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with RealtimeKit. If not, see <http://www.gnu.org/licenses/>.
***/

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <stdbool.h>
#include <unistd.h>
#include <stdio.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <string.h>
#include <sched.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <stdlib.h>
#include <inttypes.h>
#include <dbus/dbus.h>
#include <pwd.h>
#include <sys/capability.h>
#include <sys/prctl.h>
#include <time.h>
#include <assert.h>
#include <getopt.h>
#include <signal.h>
#include <sys/poll.h>
#include <sys/eventfd.h>
#include <pthread.h>
#include <dirent.h>
#include <syslog.h>
#include <grp.h>

#include "rtkit.h"
#include "sd-daemon.h"

#ifndef __linux__
#error "This stuff only works on Linux!"
#endif

#ifndef SCHED_RESET_ON_FORK
/* "Your libc lacks the definition of SCHED_RESET_ON_FORK. We'll now define it ourselves, however make sure your kernel is new enough! */
#define SCHED_RESET_ON_FORK 0x40000000
#endif

#ifndef RLIMIT_RTTIME
#define RLIMIT_RTTIME 15
#endif

#define INTROSPECT_XML                                                  \
        DBUS_INTROSPECT_1_0_XML_DOCTYPE_DECL_NODE                       \
        "<node>\n"                                                      \
        "        <interface name=\"org.freedesktop.RealtimeKit1\">\n"   \
        "                <method name=\"MakeThreadRealtime\">\n"        \
        "                        <arg name=\"thread\" type=\"t\" direction=\"in\"/>\n" \
        "                        <arg name=\"priority\" type=\"u\" direction=\"in\"/>\n" \
        "                </method>\n"                                   \
        "                <method name=\"MakeThreadRealtimeWithPID\">\n"        \
        "                        <arg name=\"process\" type=\"t\" direction=\"in\"/>\n" \
        "                        <arg name=\"thread\" type=\"t\" direction=\"in\"/>\n" \
        "                        <arg name=\"priority\" type=\"u\" direction=\"in\"/>\n" \
        "                </method>\n"                                   \
        "                <method name=\"MakeThreadHighPriority\">\n"          \
        "                        <arg name=\"thread\" type=\"t\" direction=\"in\"/>\n" \
        "                        <arg name=\"priority\" type=\"i\" direction=\"in\"/>\n" \
        "                </method>\n"                                   \
        "                <method name=\"MakeThreadHighPriorityWithPID\">\n"          \
        "                        <arg name=\"process\" type=\"t\" direction=\"in\"/>\n" \
        "                        <arg name=\"thread\" type=\"t\" direction=\"in\"/>\n" \
        "                        <arg name=\"priority\" type=\"i\" direction=\"in\"/>\n" \
        "                </method>\n"                                   \
        "                <method name=\"ResetKnown\"/>\n"               \
        "                <method name=\"ResetAll\"/>\n"                 \
        "                <method name=\"Exit\"/>\n"                     \
        "                <property name=\"RTTimeUSecMax\" type=\"x\" access=\"read\"/>\n" \
        "                <property name=\"MaxRealtimePriority\" type=\"i\" access=\"read\"/>\n" \
        "                <property name=\"MinNiceLevel\" type=\"i\" access=\"read\"/>\n" \
        "        </interface>\n"                                        \
        "        <interface name=\"org.freedesktop.DBus.Properties\">\n"\
        "                <method name=\"Get\">"                         \
        "                       <arg name=\"interface\" direction=\"in\" type=\"s\"/>\n" \
        "                       <arg name=\"property\" direction=\"in\" type=\"s\"/>\n" \
        "                       <arg name=\"value\" direction=\"out\" type=\"v\"/>\n" \
        "                </method>\n"                                   \
        "        </interface>\n"                                        \
        "        <interface name=\"org.freedesktop.DBus.Introspectable\">\n" \
        "                <method name=\"Introspect\">\n"                \
        "                        <arg name=\"data\" type=\"s\" direction=\"out\"/>\n" \
        "                </method>\n"                                   \
        "        </interface>\n"                                        \
        "</node>\n"

/* Similar to assert(), but has side effects, and hence shall never be optimized away, regardless of NDEBUG */
#define assert_se(expr)                                                 \
        do {                                                            \
                if (__builtin_expect(!(expr), 0)) {                     \
                        fprintf(stderr, "Assertion %s failed at %s:%u, function %s(). Aborting.\n", #expr, __FILE__, __LINE__, __PRETTY_FUNCTION__); \
                        abort();                                        \
                }                                                       \
        } while(0)

#define ELEMENTSOF(x) (sizeof(x)/sizeof(x[0]))

#define TIMESPEC_MSEC(ts) (((int64_t) (ts).tv_sec * 1000LL) + ((int64_t) (ts).tv_nsec / 1000000LL))

/* If we actually execute a request we temporarily upgrade our realtime priority to this level */
static unsigned our_realtime_priority = 21;

/* Normally we run at this nice level */
static int our_nice_level = 1;

/* The maximum realtime priority to hand out */
static unsigned max_realtime_priority = 20;

/* The minimum nice level to hand out */
static int min_nice_level = -15;

/* Username we shall run under */
static const char *username = "rtkit";

/* Enforce that clients have RLIMIT_RTTIME set to a value <= this */
static unsigned long long rttime_usec_max = 200000ULL; /* 200 ms */

/* How many users do we supervise at max? */
static unsigned users_max = 2048;

/* How many processes of a single user do we supervise at max? */
static unsigned processes_per_user_max = 15;

/* How many threads of a single user do we supervise at max? */
static unsigned threads_per_user_max = 25;

/* Refuse further requests if one user issues more than ACTIONS_PER_BURST_MAX in this time */
static unsigned actions_burst_sec = 20;

/* Refuse further requests if one user issues more than this many in ACTIONS_BURST_SEC time */
static unsigned actions_per_burst_max = 25;

/* Drop privileges */
static bool do_drop_privileges = TRUE;

/* Change root directory to /proc */
static bool do_chroot = TRUE;

/* Limit resources */
static bool do_limit_resources = TRUE;

/* Run a canary watchdog */
static bool do_canary = TRUE;

/* Canary cheep interval */
static unsigned canary_cheep_msec = 5000; /* 5s */

/* Canary watchdog interval */
static unsigned canary_watchdog_msec = 10000; /* 10s */

/* Watchdog realtime priority */
static unsigned canary_watchdog_realtime_priority = 99;

/* How long after the canary died shall we refuse further RT requests? */
static unsigned canary_refusal_sec = 5*60;

/* Demote root processes? */
static bool canary_demote_root = FALSE;

/* Demote unknown processes? */
static bool canary_demote_unknown = FALSE;

/* Log to stderr? */
static bool log_stderr = FALSE;

/* Scheduling policy to use */
static int sched_policy = SCHED_RR;

struct thread {
        /* We use the thread id plus its starttime as a unique identifier for threads */
        pid_t pid;
        unsigned long long starttime;

        struct thread *next;
};

struct process {
        /* We use the process id plus its starttime as a unique identifier for processes */
        pid_t pid;
        unsigned long long starttime;

        struct thread *threads;
        struct process *next;
};

struct rtkit_user {
        uid_t uid;

        time_t timestamp;
        unsigned n_actions;

        struct process *processes;
        unsigned n_processes;
        unsigned n_threads;

        struct rtkit_user *next;
};

static struct rtkit_user *users = NULL;
static unsigned n_users = 0;
static unsigned n_total_processes = 0;
static unsigned n_total_threads = 0;
static const char *proc = NULL;
static int quit_fd = -1, canary_fd = -1;
static pthread_t canary_thread_id = 0, watchdog_thread_id = 0;
static volatile uint32_t refuse_until = 0;

static const char *get_proc_path(void) {
        /* Useful for chroot environments */

        if (proc)
                return proc;

        return "/proc";
}

static char* get_user_name(uid_t uid, char *user, size_t len) {
        struct passwd *pw;

        if ((pw = getpwuid(uid))) {
                strncpy(user, pw->pw_name, len-1);
                user[len-1] = 0;
                return user;
        }

        snprintf(user, len-1, "%llu", (unsigned long long) uid);
        user[len-1] = 0;
        return user;
}

static int read_starttime(pid_t pid, pid_t tid, unsigned long long *st) {
        char fn[128], line[256], *p;
        int r;
        FILE *f;

        if (tid != 0)
                assert_se(snprintf(fn, sizeof(fn)-1, "%s/%llu/task/%llu/stat", get_proc_path(), (unsigned long long) pid, (unsigned long long) tid) < (int) (sizeof(fn)-1));
        else
                assert_se(snprintf(fn, sizeof(fn)-1, "%s/%llu/stat", get_proc_path(), (unsigned long long) pid) < (int) (sizeof(fn)-1));
        fn[sizeof(fn)-1] = 0;

        if (!(f = fopen(fn, "r")))
                return -errno;

        if (!(fgets(line, sizeof(line), f))) {
                r = -errno;
                fclose(f);
                return r;
        }

        fclose(f);

        /* Let's skip the pid and comm fields. The latter is enclosed
         * in () but does not escape any () in its value, so let's
         * skip over it manually */

        if (!(p = strrchr(line, ')')))
                return -EIO;

        p++;

        if (sscanf(p, " "
                   "%*c "  /* state */
                   "%*d "  /* ppid */
                   "%*d "  /* pgrp */
                   "%*d "  /* session */
                   "%*d "  /* tty_nr */
                   "%*d "  /* tpgid */
                   "%*u "  /* flags */
                   "%*u "  /* minflt */
                   "%*u "  /* cminflt */
                   "%*u "  /* majflt */
                   "%*u "  /* cmajflt */
                   "%*u "  /* utime */
                   "%*u "  /* stime */
                   "%*d "  /* cutime */
                   "%*d "  /* cstime */
                   "%*d "  /* priority */
                   "%*d "  /* nice */
                   "%*d "  /* num_threads */
                   "%*d "  /* itrealvalue */
                   "%llu "  /* starttime */,
                   st) != 1)
                return -EIO;

        return 0;
}

static void free_thread(struct thread *t) {
        free(t);
}

static void free_process(struct process *p) {
        struct thread *t;

        while ((t = p->threads)) {
                p->threads = t->next;
                free_thread(t);
        }

        free(p);
}

static void free_user(struct rtkit_user *u) {
        struct process *p;

        while ((p = u->processes)) {
                u->processes = p->next;
                free_process(p);
        }

        free(u);
}

static bool user_in_burst(struct rtkit_user *u) {
        time_t now = time(NULL);

        return now < u->timestamp + (time_t) actions_burst_sec;
}

static bool verify_burst(struct rtkit_user *u) {

        if (!user_in_burst(u)) {
                /* Restart burst phase */
                time(&u->timestamp);
                u->n_actions = 0;
                return true;
        }

        if (u->n_actions >= actions_per_burst_max) {
                char user[64];
                syslog(LOG_WARNING, "Warning: Reached burst limit for user '%s', denying request.\n", get_user_name(u->uid, user, sizeof(user)));
                return false;
        }

        u->n_actions++;
        return true;
}

static int find_user(struct rtkit_user **_u, uid_t uid) {
        struct rtkit_user *u;

        for (u = users; u; u = u->next)
                if (u->uid == uid) {
                        *_u = u;
                        return 0;
                }

        if (n_users >= users_max)  {
                syslog(LOG_WARNING, "Warning: Reached maximum concurrent user limit, denying request.\n");
                return -EBUSY;
        }

        if (!(u = malloc(sizeof(struct rtkit_user))))
                return -ENOMEM;

        u->uid = uid;
        u->timestamp = time(NULL);
        u->n_actions = 0;
        u->processes = NULL;
        u->n_processes = u->n_threads = 0;
        u->next = users;
        users = u;
        n_users++;

        *_u = u;
        return 0;
}

static int find_process(struct process** _p, struct rtkit_user *u, pid_t pid, unsigned long long starttime) {
        struct process *p;

        for (p = u->processes; p; p = p->next)
                if (p->pid == pid && p->starttime == starttime) {
                        *_p = p;
                        return 0;
                }

        if (u->n_processes >= processes_per_user_max) {
                char user[64];
                syslog(LOG_WARNING, "Warning: Reached maximum concurrent process limit for user '%s', denying request.\n", get_user_name(u->uid, user, sizeof(user)));
                return -EBUSY;
        }

        if (!(p = malloc(sizeof(struct process))))
                return -ENOMEM;

        p->pid = pid;
        p->starttime = starttime;
        p->threads = NULL;
        p->next = u->processes;
        u->processes = p;
        u->n_processes++;
        n_total_processes++;

        *_p = p;
        return 0;
}

static int find_thread(struct thread** _t, struct rtkit_user *u, struct process *p, pid_t pid, unsigned long long starttime) {
        struct thread *t;

        for (t = p->threads; t; t = t->next)
                if (t->pid == pid && t->starttime == starttime)  {
                        *_t = t;
                        return 0;
                }

        if (u->n_threads >= threads_per_user_max) {
                char user[64];
                syslog(LOG_WARNING, "Warning: Reached maximum concurrent threads limit for user '%s', denying request.\n", get_user_name(u->uid, user, sizeof(user)));
                return -EBUSY;
        }

        if (!(t = malloc(sizeof(struct thread))))
                return -ENOMEM;

        t->pid = pid;
        t->starttime = starttime;
        t->next = p->threads;
        p->threads = t;
        u->n_threads++;
        n_total_threads++;

        *_t = t;
        return 0;
}

static bool thread_relevant(struct process *p, struct thread *t) {
        unsigned long long st;
        int r;

        /* This checks if a thread still matters to us, i.e. if its
         * PID still refers to the same thread and if it is still high
         * priority or real time */

        if ((r = read_starttime(p->pid, t->pid, &st)) < 0) {

                /* Did the thread die? */
                if (r == -ENOENT)
                        return FALSE;

                syslog(LOG_WARNING, "Warning: failed to read start time: %s\n", strerror(-r));
                return FALSE;
        }

        /* Did the thread get replaced by another thread? */
        if (st != t->starttime)
                return FALSE;

        if ((r = sched_getscheduler(t->pid)) < 0) {

                /* Maybe it died right now? */
                if (errno == ESRCH)
                        return FALSE;

                syslog(LOG_WARNING, "Warning: failed to read scheduler policy: %s\n", strerror(errno));
                return FALSE;
        }

        /* Is this a realtime thread? */
        r &= ~SCHED_RESET_ON_FORK;
        if (r == SCHED_RR || r == SCHED_FIFO)
                return TRUE;

        errno = 0;
        r = getpriority(PRIO_PROCESS, t->pid);
        if (errno != 0) {

                /* Maybe it died right now? */
                if (errno == ESRCH)
                        return FALSE;

                syslog(LOG_WARNING, "Warning: failed to read nice level: %s\n", strerror(errno));
                return FALSE;
        }

        /* Is this a high priority thread? */
        if (r < 0)
                return TRUE;

        return FALSE;
}

static void thread_gc(struct rtkit_user *u, struct process *p) {
        struct thread *t, *n, *l;

        /* Cleanup dead theads of a specific user we don't need to keep track about anymore */

        for (l = NULL, t = p->threads; t; t = n) {
                n = t->next;

                if (!thread_relevant(p, t)) {
                        free_thread(t);
                        if (l)
                                l->next = n;
                        else
                                p->threads = n;

                        assert(u->n_threads >= 1);
                        u->n_threads--;

                        assert(n_total_threads >= 1);
                        n_total_threads--;
                } else
                        l = t;
        }

        assert(!p->threads || u->n_threads);
}

static void process_gc(struct rtkit_user *u) {
        struct process *p, *n, *l;

        /* Cleanup dead processes of a specific user we don't need to keep track about anymore */

        for (l = NULL, p = u->processes; p; p = n) {
                n = p->next;
                thread_gc(u, p);

                if (!p->threads) {
                        free_process(p);
                        if (l)
                                l->next = n;
                        else
                                u->processes = n;

                        assert(u->n_processes >= 1);
                        u->n_processes--;

                        assert(n_total_processes >= 1);
                        n_total_processes--;
                } else
                        l = p;
        }

        assert(!u->processes == !u->n_processes);
}

static void user_gc(void) {
        struct rtkit_user *u, *n, *l;

        /* Cleanup all users we don't need to keep track about anymore */

        for (l = NULL, u = users; u; u = n) {
                n = u->next;
                process_gc(u);

                if (!u->processes && !user_in_burst(u)) {
                        free_user(u);
                        if (l)
                                l->next = n;
                        else
                                users = n;

                        assert(n_users >= 1);
                        n_users--;
                } else
                        l = u;
        }

        assert(!users == !n_users);
}

static bool startswith(const char *s, const char *prefix) {
        return strncmp(s, prefix, strlen(prefix)) == 0;
}

static int self_set_realtime(unsigned priority) {
        struct sched_param param;
        int r;

        memset(&param, 0, sizeof(param));
        param.sched_priority = priority;

        if (sched_setscheduler(0, sched_policy|SCHED_RESET_ON_FORK, &param) < 0) {
                r = -errno;
                syslog(LOG_ERR, "Failed to make ourselves RT: %s\n", strerror(errno));
                goto finish;
        }

        r = 0;

finish:
        return r;
}

static void self_drop_realtime(int nice_level) {
        struct sched_param param;

        memset(&param, 0, sizeof(param));

        if (sched_setscheduler(0, SCHED_OTHER, &param) < 0)
                syslog(LOG_WARNING, "Warning: Failed to reset scheduling to SCHED_OTHER: %s\n", strerror(errno));

        if (setpriority(PRIO_PROCESS, 0, nice_level) < 0)
                syslog(LOG_WARNING, "Warning: Failed to reset nice level to %u: %s\n", our_nice_level, strerror(errno));
}

/* Verifies that RLIMIT_RTTIME is set for the specified process */
static int verify_process_rttime(struct process *p) {
        char fn[128];
        FILE *f;
        int r;
        bool good = false;

        assert_se(snprintf(fn, sizeof(fn)-1, "%s/%llu/limits", get_proc_path(), (unsigned long long) p->pid) < (int) (sizeof(fn)-1));
        fn[sizeof(fn)-1] = 0;

        if (!(f = fopen(fn, "r"))) {
                r = -errno;
                syslog(LOG_ERR, "Failed to open '%s': %s\n", fn, strerror(errno));
                return r;
        }

        for (;;) {
                char line[128];
                char soft[32], hard[32];
                unsigned long long rttime;
                char *e = NULL;

                if (!fgets(line, sizeof(line), f))
                        break;

                if (!startswith(line, "Max realtime timeout"))
                        continue;

                if (sscanf(line + 20, "%s %s", soft, hard) != 2) {
                        syslog(LOG_WARNING, "Warning: parse failure in %s.\n", fn);
                        break;
                }

                errno = 0;
                rttime = strtoll(hard, &e, 10);

                if (errno != 0 || !e || *e != 0)
                        break;

                if (rttime <= rttime_usec_max)
                        good = true;

                break;
        }

        fclose(f);

        return good ? 0 : -EPERM;
}

static int verify_process_user(struct rtkit_user *u, struct process *p) {
        char fn[128];
        int r;
        struct stat st;

        assert_se(snprintf(fn, sizeof(fn)-1, "%s/%llu", get_proc_path(), (unsigned long long) p->pid) < (int) (sizeof(fn)-1));
        fn[sizeof(fn)-1] = 0;

        memset(&st, 0, sizeof(st));
        if (stat(fn, &st) < 0) {
                r = -errno;

                if (r != -ENOENT)
                        syslog(LOG_WARNING, "Warning: Failed to stat() file '%s': %s\n", fn, strerror(-r));

                return r;
        }

        return st.st_uid == u->uid ? 0 : -EPERM;
}

static int verify_process_starttime(struct process *p) {
        unsigned long long st;
        int r;

        if ((r = read_starttime(p->pid, 0, &st)) < 0) {

                if (r != -ENOENT)
                        syslog(LOG_WARNING, "Warning: Failed to read start time of process %llu: %s\n", (unsigned long long) p->pid, strerror(-r));

                return r;
        }

        return st == p->starttime ? 0 : -EPERM;
}

static int verify_thread_starttime(struct process *p, struct thread *t) {
        unsigned long long st;
        int r;

        if ((r = read_starttime(p->pid, t->pid, &st)) < 0) {

                if (r != -ENOENT)
                        syslog(LOG_WARNING, "Warning: Failed to read start time of thread %llu: %s\n", (unsigned long long) t->pid, strerror(-r));

                return r;
        }

        return st == t->starttime ? 0 : -EPERM;
}

static int thread_reset(pid_t tid) {
        struct sched_param param;
        int r = 0;

        memset(&param, 0, sizeof(param));
        param.sched_priority = 0;

        if (sched_setscheduler(tid, SCHED_OTHER, &param) < 0) {
                if (errno != ESRCH)
                        syslog(LOG_WARNING, "Warning: Failed to reset scheduling to SCHED_OTHER for thread %llu: %s\n", (unsigned long long) tid, strerror(errno));
                r = -1;
        }

        if (setpriority(PRIO_PROCESS, tid, 0) < 0) {
                if (errno != ESRCH)
                        syslog(LOG_WARNING, "Warning: Failed to reset nice level to 0 for thread %llu: %s\n", (unsigned long long) tid, strerror(errno));
                r = -1;
        }

        return r;
}

static char* get_exe_name(pid_t pid, char *exe, size_t len) {
        char fn[128];
        ssize_t n;

        assert_se(snprintf(fn, sizeof(fn)-1, "%s/%llu/exe", get_proc_path(), (unsigned long long) pid) < (int) (sizeof(fn)-1));
        fn[sizeof(fn)-1] = 0;

        if ((n = readlink(fn, exe, len-1)) < 0) {
                snprintf(exe, len-1, "n/a");
                exe[len-1] = 0;
        } else
                exe[n] = 0;

        return exe;
}

static int process_set_realtime(struct rtkit_user *u, struct process *p, struct thread *t, unsigned priority) {
        int r;
        struct sched_param param;
        char user[64], exe[128];

        if ((int) priority < sched_get_priority_min(sched_policy) ||
            (int) priority > sched_get_priority_max(sched_policy))
                return -EINVAL;

        /* We always want to be able to get a higher RT priority than
         * the client */
        if (priority >= our_realtime_priority ||
            priority > max_realtime_priority)
                return -EPERM;

        /* Make sure users don't flood us with requests */
        if (!verify_burst(u))
                return -EBUSY;

        /* Temporarily become a realtime process. We do this to make
         * sure that our verification code is not preempted by an evil
         * client's code which might have gotten RT through
         * us. */
        if ((r = self_set_realtime(our_realtime_priority)) < 0)
                return r;

        /* Let's make sure that everything is alright before we make
         * the process realtime */
        if ((r = verify_process_user(u, p)) < 0 ||
            (r = verify_process_starttime(p)) < 0 ||
            (r = verify_process_rttime(p)) < 0 ||
            (r = verify_thread_starttime(p, t)) < 0)
                goto finish;

        /* Ok, everything seems to be in order, now, let's do it */
        memset(&param, 0, sizeof(param));
        param.sched_priority = (int) priority;
        if (sched_setscheduler(t->pid, sched_policy|SCHED_RESET_ON_FORK, &param) < 0) {
                r = -errno;
                syslog(LOG_ERR, "Failed to make thread %llu RT: %s\n", (unsigned long long) t->pid, strerror(errno));
                goto finish;
        }

        /* We do some sanity checks afterwards, to verify that the
         * caller didn't play games with us and replaced the process
         * behind the PID */
        if ((r = verify_thread_starttime(p, t)) < 0 ||
            (r = verify_process_rttime(p)) < 0 ||
            (r = verify_process_starttime(p)) < 0 ||
            (r = verify_process_user(u, p)) < 0) {

                thread_reset(t->pid);
                goto finish;
        }

        syslog(LOG_INFO, "Successfully made thread %llu of process %llu (%s) owned by '%s' RT at priority %u.\n",
               (unsigned long long) t->pid,
               (unsigned long long) p->pid,
               get_exe_name(p->pid, exe, sizeof(exe)),
               get_user_name(u->uid, user, sizeof(user)),
               priority);

        r = 0;

finish:
        self_drop_realtime(our_nice_level);

        return r;
}

static int process_set_high_priority(struct rtkit_user *u, struct process *p, struct thread *t, int priority) {
        int r;
        struct sched_param param;
        char user[64], exe[128];

        if (priority < PRIO_MIN || priority >= PRIO_MAX)
                return -EINVAL;

        if (priority < min_nice_level)
                return -EPERM;

        /* Make sure users don't flood us with requests */
        if (!verify_burst(u))
                return -EBUSY;

        /* Temporarily become a realtime process */
        if ((r = self_set_realtime(our_realtime_priority)) < 0)
                return r;

        /* Let's make sure that everything is alright before we make
         * the process high priority */
        if ((r = verify_process_user(u, p)) < 0 ||
            (r = verify_process_starttime(p)) < 0 ||
            (r = verify_thread_starttime(p, t)) < 0)
                goto finish;

        /* Ok, everything seems to be in order, now, let's do it */
        memset(&param, 0, sizeof(param));
        param.sched_priority = 0;
        if (sched_setscheduler(t->pid, SCHED_OTHER|SCHED_RESET_ON_FORK, &param) < 0) {
                r = -errno;
                syslog(LOG_ERR, "Failed to make process %llu SCHED_NORMAL: %s\n", (unsigned long long) t->pid, strerror(errno));
                goto finish;
        }

        if (setpriority(PRIO_PROCESS, t->pid, priority) < 0) {
                r = -errno;
                syslog(LOG_ERR, "Failed to set nice level of process %llu to %i: %s\n", (unsigned long long) t->pid, priority, strerror(errno));
                goto finish;
        }

        if ((r = verify_thread_starttime(p, t)) < 0 ||
            (r = verify_process_starttime(p)) < 0 ||
            (r = verify_process_user(u, p)) < 0) {

                thread_reset(t->pid);
                goto finish;
        }

        syslog(LOG_INFO, "Successfully made thread %llu of process %llu (%s) owned by '%s' high priority at nice level %i.\n",
               (unsigned long long) t->pid,
               (unsigned long long) p->pid,
               get_exe_name(p->pid, exe, sizeof(exe)),
               get_user_name(u->uid, user, sizeof(user)),
               priority);

        r = 0;

finish:
        self_drop_realtime(our_nice_level);

        return r;
}

static void reset_known(void) {
        struct rtkit_user *u;
        struct process *p;
        struct thread *t;
        unsigned n_demoted = 0;

        syslog(LOG_INFO, "Demoting known real-time threads.\n");

        for (u = users; u; u = u->next)
                for (p = u->processes; p; p = p->next)
                        for (t = p->threads; t; t = t->next)
                                if (verify_process_user(u, p) >= 0 &&
                                    verify_process_starttime(p) >= 0 &&
                                    verify_thread_starttime(p, t) >= 0)
                                        if (thread_reset(t->pid) >= 0) {
                                                char exe[64];
                                                syslog(LOG_NOTICE, "Successfully demoted thread %llu of process %llu (%s).\n",
                                                       (unsigned long long) t->pid,
                                                       (unsigned long long) p->pid,
                                                       get_exe_name(p->pid, exe, sizeof(exe)));
                                                n_demoted++;
                                        }

        syslog(LOG_NOTICE, "Demoted %u threads.\n", n_demoted);
}

static int reset_all(void) {
        DIR *pd;
        int r;
        unsigned n_demoted = 0;

        /* Goes through /proc and demotes *all* threads to
         * SCHED_OTHER */

        syslog(LOG_INFO, "Demoting known and unknown real-time threads.\n");

        if (!(pd = opendir(get_proc_path()))) {
                r = -errno;
                syslog(LOG_ERR, "opendir(%s) failed: %s\n", get_proc_path(), strerror(errno));
                return r;
        }

        for (;;) {
                const struct dirent *pde;
                char *e = NULL;
                unsigned long long pid;
                char fn[128];
                DIR *td;
                struct stat st;

                if (!(pde = readdir(pd)))
                        break;

                if (!(pde->d_type & DT_DIR))
                        continue;

                errno = 0;
                pid = strtoull(pde->d_name, &e, 10);
                if (errno != 0 || !e || *e != 0)
                        continue;

                if ((pid_t) pid == getpid() ||
                    pid == 1)
                        continue;

                assert_se(snprintf(fn, sizeof(fn)-1, "%s/%llu", get_proc_path(), pid) < (int) (sizeof(fn)-1));
                fn[sizeof(fn)-1] = 0;

                if (stat(fn, &st) < 0) {
                        if (errno != ENOENT)
                                syslog(LOG_WARNING, "Warning: stat(%s) failed: %s\n", fn, strerror(errno));
                        continue;
                }

                if (!S_ISDIR(st.st_mode))
                        continue;

                if (!canary_demote_root && st.st_uid == 0)
                        continue;

                assert_se(snprintf(fn, sizeof(fn)-1, "%s/%llu/task", get_proc_path(), pid) < (int) (sizeof(fn)-1));
                fn[sizeof(fn)-1] = 0;

                if (!(td = opendir(fn)))
                        continue;

                for (;;) {
                        const struct dirent *tde;
                        unsigned long long tid;

                        if (!(tde = readdir(td)))
                                break;

                        if (!(tde->d_type & DT_DIR))
                                continue;

                        e = NULL;
                        errno = 0;
                        tid = strtoull(tde->d_name, &e, 10);
                        if (errno != 0 || !e || *e != 0)
                                continue;

                        if ((r = sched_getscheduler(tid)) < 0) {
                                if (errno != ESRCH)
                                        syslog(LOG_WARNING, "Warning: sched_getscheduler() failed: %s\n", strerror(errno));
                                continue;
                        }

                        if (r == SCHED_FIFO || r == SCHED_RR ||
                            r == (SCHED_FIFO|SCHED_RESET_ON_FORK) || r == (SCHED_RR|SCHED_RESET_ON_FORK))
                                if (thread_reset((pid_t) tid) >= 0) {
                                        char exe[64];
                                        syslog(LOG_NOTICE, "Successfully demoted thread %llu of process %llu (%s).\n",
                                               (unsigned long long) tid,
                                               (unsigned long long) pid,
                                               get_exe_name(pid, exe, sizeof(exe)));
                                        n_demoted++;
                                }
                }

                closedir(td);
        }

        closedir(pd);

        syslog(LOG_NOTICE, "Demoted %u threads.\n", n_demoted);

        return 0;
}

/* This mimics dbus_bus_get_unix_user() */
static unsigned long get_unix_process_id(
                DBusConnection *connection,
                const char *name,
                DBusError *error) {

        DBusMessage *m, *r;
        uint32_t pid = (uint32_t) -1;

        assert_se(m = dbus_message_new_method_call(
                                  DBUS_SERVICE_DBUS,
                                  DBUS_PATH_DBUS,
                                  DBUS_INTERFACE_DBUS,
                                  "GetConnectionUnixProcessID"));

        assert_se(dbus_message_append_args(
                                  m,
                                  DBUS_TYPE_STRING, &name,
                                  DBUS_TYPE_INVALID));

        r = dbus_connection_send_with_reply_and_block(connection, m, -1, error);
        dbus_message_unref (m);

        if (!r)
                goto finish;

        if (dbus_set_error_from_message(error, r))
                goto finish;

        if (!dbus_message_get_args(
                            r, error,
                            DBUS_TYPE_UINT32, &pid,
                            DBUS_TYPE_INVALID)) {
                pid = (uint32_t) -1;
                goto finish;
        }

finish:

        if (r)
                dbus_message_unref(r);

        return (unsigned long) pid;
}

static int lookup_client(
                struct rtkit_user **_u,
                struct process **_p,
                struct thread **_t,
                DBusConnection *c,
                DBusMessage *m,
                pid_t pid,
                pid_t tid) {

        DBusError error;
        int r;
        unsigned long uid;
        unsigned long long starttime;
        struct rtkit_user *u;
        struct process *p;
        struct thread *t;

        dbus_error_init(&error);

        /* Determine caller credentials */
        if ((uid = dbus_bus_get_unix_user(c, dbus_message_get_sender(m), &error)) == (unsigned long) -1) {
                syslog(LOG_ERR, "dbus_message_get_unix_user() failed: %s\n", error.message);
                r = -EIO;
                goto fail;
        }

        if (pid == (pid_t) -1 &&
            (pid = get_unix_process_id(c, dbus_message_get_sender(m), &error)) == (pid_t) -1) {
                syslog(LOG_ERR, "get_unix_process_id() failed: %s\n", error.message);
                r = -EIO;
                goto fail;
        }

        /* Find or create user structure */
        if ((r = find_user(&u, (uid_t) uid) < 0))
                goto fail;

        /* Find or create process structure */
        if ((r = read_starttime((pid_t) pid, 0, &starttime)) < 0)
                goto fail;

        if ((r = find_process(&p, u, (pid_t) pid, starttime)) < 0)
                goto fail;

        /* Find or create thread structure */
        if (tid == 0)
                tid = p->pid;

        if ((r = read_starttime(p->pid, tid, &starttime)) < 0)
                goto fail;

        if ((r = find_thread(&t, u, p, (pid_t) tid, starttime)) < 0)
                goto fail;

        *_u = u;
        *_p = p;
        *_t = t;

        return 0;

fail:
        dbus_error_free(&error);

        return r;
}

static const char *translate_error_forward(int error) {
        switch (error) {
                case -EPERM:
                case -EACCES:
                case -EBUSY:
                        return DBUS_ERROR_ACCESS_DENIED;

                case -ENOMEM:
                        return DBUS_ERROR_NO_MEMORY;

                default:
                        return DBUS_ERROR_FAILED;
        }
}

static int translate_error_backwards(const char *name) {
        if (strcmp(name, DBUS_ERROR_NO_MEMORY) == 0)
                return -ENOMEM;
        if (strcmp(name, DBUS_ERROR_SERVICE_UNKNOWN) == 0 ||
            strcmp(name, DBUS_ERROR_NAME_HAS_NO_OWNER) == 0)
                return -ENOENT;
        if (strcmp(name, DBUS_ERROR_ACCESS_DENIED) == 0 ||
            strcmp(name, DBUS_ERROR_AUTH_FAILED) == 0)
                return -EACCES;

        return -EIO;
}

static int verify_polkit(DBusConnection *c, struct rtkit_user *u, struct process *p, const char *action) {
        DBusError error;
        DBusMessage *m = NULL, *r = NULL;
        const char *unix_process = "unix-process";
        const char *pid = "pid";
        const char *uid = "uid";
        const char *start_time = "start-time";
        const char *cancel_id = "";
        uint32_t flags = 0;
        uint32_t pid_u32 = p->pid;
        uint32_t uid_u32 = (uint32_t)u->uid;
        DBusMessageIter iter_msg, iter_struct, iter_array, iter_dict, iter_variant;
        uint64_t start_time_u64 = p->starttime;
        int ret;
        dbus_bool_t authorized = FALSE;

        dbus_error_init(&error);

        assert_se(m = dbus_message_new_method_call(
                                  "org.freedesktop.PolicyKit1",
                                  "/org/freedesktop/PolicyKit1/Authority",
                                  "org.freedesktop.PolicyKit1.Authority",
                                  "CheckAuthorization"));

        dbus_message_iter_init_append(m, &iter_msg);
        assert_se(dbus_message_iter_open_container(&iter_msg, DBUS_TYPE_STRUCT, NULL, &iter_struct));
        assert_se(dbus_message_iter_append_basic(&iter_struct, DBUS_TYPE_STRING, &unix_process));
        assert_se(dbus_message_iter_open_container(&iter_struct, DBUS_TYPE_ARRAY, "{sv}", &iter_array));

        assert_se(dbus_message_iter_open_container(&iter_array, DBUS_TYPE_DICT_ENTRY, NULL, &iter_dict));
        assert_se(dbus_message_iter_append_basic(&iter_dict, DBUS_TYPE_STRING, &pid));
        assert_se(dbus_message_iter_open_container(&iter_dict, DBUS_TYPE_VARIANT, "u", &iter_variant));
        assert_se(dbus_message_iter_append_basic(&iter_variant, DBUS_TYPE_UINT32, &pid_u32));
        assert_se(dbus_message_iter_close_container(&iter_dict, &iter_variant));
        assert_se(dbus_message_iter_close_container(&iter_array, &iter_dict));

        assert_se(dbus_message_iter_open_container(&iter_array, DBUS_TYPE_DICT_ENTRY, NULL, &iter_dict));
        assert_se(dbus_message_iter_append_basic(&iter_dict, DBUS_TYPE_STRING, &start_time));
        assert_se(dbus_message_iter_open_container(&iter_dict, DBUS_TYPE_VARIANT, "t", &iter_variant));
        assert_se(dbus_message_iter_append_basic(&iter_variant, DBUS_TYPE_UINT64, &start_time_u64));
        assert_se(dbus_message_iter_close_container(&iter_dict, &iter_variant));
        assert_se(dbus_message_iter_close_container(&iter_array, &iter_dict));

        assert_se(dbus_message_iter_open_container(&iter_array, DBUS_TYPE_DICT_ENTRY, NULL, &iter_dict));
        assert_se(dbus_message_iter_append_basic(&iter_dict, DBUS_TYPE_STRING, &uid));
        assert_se(dbus_message_iter_open_container(&iter_dict, DBUS_TYPE_VARIANT, "u", &iter_variant));
        assert_se(dbus_message_iter_append_basic(&iter_variant, DBUS_TYPE_UINT32, &uid_u32));
        assert_se(dbus_message_iter_close_container(&iter_dict, &iter_variant));
        assert_se(dbus_message_iter_close_container(&iter_array, &iter_dict));

        assert_se(dbus_message_iter_close_container(&iter_struct, &iter_array));
        assert_se(dbus_message_iter_close_container(&iter_msg, &iter_struct));

        assert_se(dbus_message_iter_append_basic(&iter_msg, DBUS_TYPE_STRING, &action));

        assert_se(dbus_message_iter_open_container(&iter_msg, DBUS_TYPE_ARRAY, "{ss}", &iter_array));
        assert_se(dbus_message_iter_close_container(&iter_msg, &iter_array));

        assert_se(dbus_message_iter_append_basic(&iter_msg, DBUS_TYPE_UINT32, &flags));
        assert_se(dbus_message_iter_append_basic(&iter_msg, DBUS_TYPE_STRING, &cancel_id));

        if (!(r = dbus_connection_send_with_reply_and_block(c, m, -1, &error))) {
                ret = translate_error_backwards(error.name);
                goto finish;
        }

        if (dbus_set_error_from_message(&error, r)) {
                ret = translate_error_backwards(error.name);
                goto finish;
        }

        if (!dbus_message_iter_init(r, &iter_msg) ||
            dbus_message_iter_get_arg_type(&iter_msg) != DBUS_TYPE_STRUCT) {
                ret = -EIO;
                goto finish;
        }

        dbus_message_iter_recurse(&iter_msg, &iter_struct);

        if (dbus_message_iter_get_arg_type(&iter_struct) != DBUS_TYPE_BOOLEAN) {
                ret = -EIO;
                goto finish;
        }

        dbus_message_iter_get_basic(&iter_struct, &authorized);

        ret = authorized ? 0 : -EPERM;

finish:

        if (m)
                dbus_message_unref(m);

        if (r)
                dbus_message_unref(r);

        if (error.message)
                syslog(LOG_WARNING, "Warning: PolicyKit call failed: %s\n", error.message);

        dbus_error_free(&error);

        return ret;
}

static int verify_canary_refusal(void) {
        struct timespec now;

        assert_se(clock_gettime(CLOCK_MONOTONIC, &now) == 0);

        if (now.tv_sec < (time_t) refuse_until) {
                syslog(LOG_WARNING, "Recovering from system lockup, not allowing further RT threads.\n");
                return -EPERM;
        }

        return 0;
}

static void add_variant(
        DBusMessage *m,
        int type,
        const void *data) {

        DBusMessageIter iter, sub;
        char t[2];

        t[0] = (char) type;
        t[1] = 0;

        dbus_message_iter_init_append(m, &iter);

        assert_se(dbus_message_iter_open_container(&iter, DBUS_TYPE_VARIANT, t, &sub));
        assert_se(dbus_message_iter_append_basic(&sub, type, data));
        assert_se(dbus_message_iter_close_container(&iter, &sub));
}

static int handle_dbus_prop_get(const char* property, DBusMessage *r) {
        if (strcmp(property, "RTTimeUSecMax") == 0)
                add_variant(r, DBUS_TYPE_INT64, &rttime_usec_max);
        else if (strcmp(property, "MaxRealtimePriority") == 0)
                add_variant(r, DBUS_TYPE_INT32, &max_realtime_priority);
        else if (strcmp(property, "MinNiceLevel") == 0)
                add_variant(r, DBUS_TYPE_INT32, &min_nice_level);
        else
                return -1;

        return 0;
}

static DBusHandlerResult dbus_handler(DBusConnection *c, DBusMessage *m, void *userdata) {
        DBusError error;
        DBusMessage *r = NULL;
        int is2 = 0;

        dbus_error_init(&error);

        /* We garbage collect on every user call */
        user_gc();

        if (dbus_message_is_method_call(m, "org.freedesktop.RealtimeKit1", "MakeThreadRealtime") ||
            (is2 = dbus_message_is_method_call(m, "org.freedesktop.RealtimeKit1", "MakeThreadRealtimeWithPID"))) {
                uint64_t thread, process = (uint64_t) -1;
                uint32_t priority;
                struct rtkit_user *u;
                struct process *p;
                struct thread *t;
                int ret;

                if ((ret = verify_canary_refusal()) < 0) {
                        assert_se(r = dbus_message_new_error_printf(m, translate_error_forward(ret), strerror(-ret)));
                        goto finish;
                }

                if (is2)
                        ret = dbus_message_get_args(m, &error,
                                                    DBUS_TYPE_UINT64, &process,
                                                    DBUS_TYPE_UINT64, &thread,
                                                    DBUS_TYPE_UINT32, &priority,
                                                    DBUS_TYPE_INVALID);
                else
                        ret = dbus_message_get_args(m, &error,
                                                    DBUS_TYPE_UINT64, &thread,
                                                    DBUS_TYPE_UINT32, &priority,
                                                    DBUS_TYPE_INVALID);

                if (!ret) {
                        syslog(LOG_DEBUG, "Failed to parse MakeThreadRealtime() method call: %s\n", error.message);
                        assert_se(r = dbus_message_new_error(m, error.name, error.message));

                        goto finish;
                }

                if ((ret = lookup_client(&u, &p, &t, c, m, (pid_t)process, (pid_t) thread)) < 0) {
                        syslog(LOG_DEBUG, "Failed to look up client: %s\n", strerror(-ret));
                        assert_se(r = dbus_message_new_error_printf(m, translate_error_forward(ret), strerror(-ret)));
                        goto finish;
                }

                if ((ret = verify_polkit(c, u, p, "org.freedesktop.RealtimeKit1.acquire-real-time")) < 0) {
                        assert_se(r = dbus_message_new_error_printf(m, translate_error_forward(ret), strerror(-ret)));
                        goto finish;
                }

                if ((ret = process_set_realtime(u, p, t, priority))) {
                        assert_se(r = dbus_message_new_error_printf(m, translate_error_forward(ret), strerror(-ret)));
                        goto finish;
                }

                assert_se(r = dbus_message_new_method_return(m));

        } else if (dbus_message_is_method_call(m, "org.freedesktop.RealtimeKit1", "MakeThreadHighPriority")
                   || (is2 = dbus_message_is_method_call(m, "org.freedesktop.RealtimeKit1", "MakeThreadHighPriorityWithPID"))) {

                uint64_t thread, process = (uint64_t) -1;
                int32_t priority;
                struct rtkit_user *u;
                struct process *p;
                struct thread *t;
                int ret;

                if ((ret = verify_canary_refusal()) < 0) {
                        assert_se(r = dbus_message_new_error_printf(m, translate_error_forward(ret), strerror(-ret)));
                        goto finish;
                }

                if (is2)
                        ret = dbus_message_get_args(m, &error,
                                                    DBUS_TYPE_UINT64, &process,
                                                    DBUS_TYPE_UINT64, &thread,
                                                    DBUS_TYPE_INT32, &priority,
                                                    DBUS_TYPE_INVALID);
                else
                        ret = dbus_message_get_args(m, &error,
                                                    DBUS_TYPE_UINT64, &thread,
                                                    DBUS_TYPE_INT32, &priority,
                                                    DBUS_TYPE_INVALID);

                if (!ret) {
                        syslog(LOG_DEBUG, "Failed to parse MakeThreadHighPriority() method call: %s\n", error.message);
                        assert_se(r = dbus_message_new_error(m, error.name, error.message));

                        goto finish;
                }

                if ((ret = lookup_client(&u, &p, &t, c, m, (pid_t)process, (pid_t) thread)) < 0) {
                        syslog(LOG_DEBUG, "Failed to look up client: %s\n", strerror(-ret));
                        assert_se(r = dbus_message_new_error_printf(m, translate_error_forward(ret), strerror(-ret)));
                        goto finish;
                }

                if ((ret = verify_polkit(c, u, p, "org.freedesktop.RealtimeKit1.acquire-high-priority")) < 0) {
                        assert_se(r = dbus_message_new_error_printf(m, translate_error_forward(ret), strerror(-ret)));
                        goto finish;
                }

                if ((ret = process_set_high_priority(u, p, t, priority))) {
                        assert_se(r = dbus_message_new_error_printf(m, translate_error_forward(ret), strerror(-ret)));
                        goto finish;
                }

                assert_se(r = dbus_message_new_method_return(m));

        } else if (dbus_message_is_method_call(m, "org.freedesktop.RealtimeKit1", "ResetAll")) {

                reset_all();
                user_gc();
                assert_se(r = dbus_message_new_method_return(m));

        } else if (dbus_message_is_method_call(m, "org.freedesktop.RealtimeKit1", "ResetKnown")) {

                reset_known();
                user_gc();
                assert_se(r = dbus_message_new_method_return(m));

        } else if (dbus_message_is_method_call(m, "org.freedesktop.RealtimeKit1", "Exit")) {

                assert_se(r = dbus_message_new_method_return(m));
                assert_se(dbus_connection_send(c, r, NULL));
                dbus_message_unref(r);
                r = NULL;

                dbus_connection_close(c);

        } else if (dbus_message_is_method_call(m, "org.freedesktop.DBus.Properties", "Get")) {
                const char *interface, *property;

                if (!dbus_message_get_args(m, &error,
                                           DBUS_TYPE_STRING, &interface,
                                           DBUS_TYPE_STRING, &property,
                                           DBUS_TYPE_INVALID)) {

                        syslog(LOG_DEBUG, "Failed to parse property get call: %s\n", error.message);
                        assert_se(r = dbus_message_new_error(m, error.name, error.message));
                        goto finish;
                }

                if (strcmp(interface, "org.freedesktop.RealtimeKit1") == 0) {
                        assert_se(r = dbus_message_new_method_return(m));

                        if (!handle_dbus_prop_get(property, r) < 0) {
                                dbus_message_unref(r);
                                assert_se(r = dbus_message_new_error_printf(
                                          m,
                                          DBUS_ERROR_UNKNOWN_METHOD,
                                          "Unknown property %s",
                                          property));
                        }
                } else
                        return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;

        } else if (dbus_message_is_method_call(m, "org.freedesktop.DBus.Introspectable", "Introspect")) {
                const char *xml = INTROSPECT_XML;

                assert_se(r = dbus_message_new_method_return(m));
                assert_se(dbus_message_append_args(
                                          r,
                                          DBUS_TYPE_STRING, &xml,
                                          DBUS_TYPE_INVALID));
        } else
                return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;

        syslog(LOG_DEBUG, "Supervising %u threads of %u processes of %u users.\n",
                n_total_threads,
                n_total_processes,
                n_users);

        sd_notifyf(0,
                   "STATUS=Supervising %u threads of %u processes of %u users.",
                   n_total_threads,
                   n_total_processes,
                   n_users);

finish:
        if (r) {
                assert_se(dbus_connection_send(c, r, NULL));
                dbus_message_unref(r);
        }

        dbus_error_free(&error);

        return DBUS_HANDLER_RESULT_HANDLED;
}

static int setup_dbus(DBusConnection **c) {
        static const DBusObjectPathVTable vtable = {
                .message_function = dbus_handler,
        };

        DBusError error;

        dbus_error_init(&error);

        if (!(*c = dbus_bus_get_private(DBUS_BUS_SYSTEM, &error))) {
                syslog(LOG_ERR, "Failed to connect to system bus: %s\n", error.message);
                goto fail;
        }

        if (dbus_bus_request_name(*c, RTKIT_SERVICE_NAME, DBUS_NAME_FLAG_DO_NOT_QUEUE, &error) < 0) {
                syslog(LOG_ERR, "Failed to register name on bus: %s\n", error.message);
                goto fail;
        }

        assert_se(dbus_connection_register_object_path(*c, RTKIT_OBJECT_PATH, &vtable, NULL));

        return 0;

fail:
        dbus_error_free(&error);
        return -EIO;
}


static void block_all_signals(void) {
        sigset_t set;

        assert_se(sigfillset(&set) == 0);
        assert_se(pthread_sigmask(SIG_BLOCK, &set, NULL) == 0);
}

static void* canary_thread(void *data) {
        struct timespec last_cheep, now;
        struct pollfd pollfd;

        assert(canary_fd >= 0);
        assert(quit_fd >= 0);

        /* Make sure we are not disturbed by any signal */
        block_all_signals();
        self_drop_realtime(0);

        memset(&pollfd, 0, sizeof(pollfd));
        pollfd.fd = quit_fd;
        pollfd.events = POLLIN;

        assert_se(clock_gettime(CLOCK_MONOTONIC, &now) == 0);
        last_cheep = now;

        syslog(LOG_DEBUG, "Canary thread running.\n");

        for (;;) {
                int r;
                int64_t msec;

                msec = TIMESPEC_MSEC(last_cheep) + canary_cheep_msec - TIMESPEC_MSEC(now);

                if (msec < 0)
                        msec = 0;

                r = poll(&pollfd, 1, (int) msec);

                assert_se(clock_gettime(CLOCK_MONOTONIC, &now) == 0);

                if (r < 0) {
                        if (errno == EINTR || errno == EAGAIN)
                                continue;

                        syslog(LOG_ERR, "poll() failed: %s\n", strerror(errno));
                        break;
                }

                if (pollfd.revents) {
                        syslog(LOG_DEBUG, "Exiting canary thread.\n");
                        break;
                }

                if (TIMESPEC_MSEC(last_cheep) + canary_cheep_msec <= TIMESPEC_MSEC(now)) {
                        eventfd_t value = 1;

                        if (eventfd_write(canary_fd, value) < 0) {
                                syslog(LOG_ERR, "eventfd_write() failed: %s\n", strerror(errno));
                                break;
                        }

                        last_cheep = now;
                        continue;
                }
        }

        return NULL;
}

static void* watchdog_thread(void *data) {
        enum {
                POLLFD_CANARY,
                POLLFD_QUIT,
                _POLLFD_MAX
        };
        struct timespec last_cheep, now;
        struct pollfd pollfd[_POLLFD_MAX];

        assert(canary_fd >= 0);
        assert(quit_fd >= 0);

        /* Make sure we are not disturbed by any signal */
        block_all_signals();
        self_set_realtime(canary_watchdog_realtime_priority);

        memset(pollfd, 0, sizeof(pollfd));
        pollfd[POLLFD_CANARY].fd = canary_fd;
        pollfd[POLLFD_CANARY].events = POLLIN;
        pollfd[POLLFD_QUIT].fd = quit_fd;
        pollfd[POLLFD_QUIT].events = POLLIN;

        assert_se(clock_gettime(CLOCK_MONOTONIC, &now) == 0);
        last_cheep = now;

        syslog(LOG_DEBUG, "Watchdog thread running.\n");

        for (;;) {
                int r;
                int64_t msec;

                msec = TIMESPEC_MSEC(last_cheep) + canary_watchdog_msec - TIMESPEC_MSEC(now);

                if (msec < 0)
                        msec = 0;

                r = poll(pollfd, _POLLFD_MAX, (int) msec);

                assert_se(clock_gettime(CLOCK_MONOTONIC, &now) == 0);

                if (r < 0) {
                        if (errno == EINTR || errno == EAGAIN)
                                continue;

                        syslog(LOG_ERR, "poll() failed: %s\n", strerror(errno));
                        break;
                }

                if (pollfd[POLLFD_QUIT].revents) {
                        syslog(LOG_DEBUG, "Exiting watchdog thread.\n");
                        break;
                }

                if (pollfd[POLLFD_CANARY].revents) {
                        eventfd_t value;

                        if (eventfd_read(canary_fd, &value) < 0) {
                                syslog(LOG_ERR, "eventfd_read() failed: %s\n", strerror(errno));
                                break;
                        }

                        last_cheep = now;
                        continue;
                }

                if (TIMESPEC_MSEC(last_cheep) + canary_watchdog_msec <= TIMESPEC_MSEC(now)) {
                        last_cheep = now;
                        syslog(LOG_WARNING, "The canary thread is apparently starving. Taking action.\n");
                        refuse_until = (uint32_t) now.tv_sec + canary_refusal_sec;
                        __sync_synchronize();

                        if (canary_demote_unknown)
                                reset_all();
                        else
                                reset_known();
                        continue;
                }
        }

        return NULL;
}

static void stop_canary(void) {
        int r;

        if (quit_fd >= 0) {
                eventfd_t value = 1;
                if (eventfd_write(quit_fd, value) < 0)
                        syslog(LOG_WARNING, "Warning: eventfd_write() failed: %s\n", strerror(errno));
        }

        if (canary_thread_id != 0) {
                if ((r = pthread_join(canary_thread_id, NULL)) != 0)
                        syslog(LOG_WARNING, "Warning: pthread_join() failed: %s\n", strerror(r));
                canary_thread_id = 0;
        }

        if (watchdog_thread_id != 0) {
                if ((r = pthread_join(watchdog_thread_id, NULL)) != 0)
                        syslog(LOG_WARNING, "Warning: pthread_join() failed: %s\n", strerror(r));
                watchdog_thread_id = 0;
        }

        if (canary_fd >= 0) {
                close(canary_fd);
                canary_fd = -1;
        }

        if (quit_fd >= 0) {
                close(quit_fd);
                quit_fd = -1;
        }
}

static int start_canary(void) {
        int r;

        if (!do_canary)
                return 0;

        if ((canary_fd = eventfd(0, EFD_NONBLOCK|EFD_CLOEXEC)) < 0 ||
            (quit_fd = eventfd(0, EFD_NONBLOCK|EFD_CLOEXEC)) < 0) {
                r = -errno;
                syslog(LOG_ERR, "eventfd() failed: %s\n", strerror(errno));
                goto fail;
        }

        if ((r = -pthread_create(&canary_thread_id, NULL, canary_thread, NULL)) < 0 ||
            (r = -pthread_create(&watchdog_thread_id, NULL, watchdog_thread, NULL)) < 0) {
                syslog(LOG_ERR, "pthread_create failed: %s\n", strerror(-r));
                goto fail;
        }

        return 0;

fail:
        stop_canary();
        return r;
}

static int drop_privileges(void) {
        struct passwd *pw = NULL;
        int r;

        if (do_drop_privileges) {

                /* First, get user data */
                if (!(pw = getpwnam(username))) {
                        syslog(LOG_ERR, "Failed to find user '%s'.\n", username);
                        return -ENOENT;
                }
        }

        if (do_chroot) {

                /* Second, chroot() */
                if (chroot("/proc") < 0 ||
                    chdir("/") < 0) {
                        r = -errno;
                        syslog(LOG_ERR, "Failed to chroot() to /proc: %s\n", strerror(errno));
                        return r;
                }
                proc = "/";

                syslog(LOG_DEBUG, "Successfully called chroot.\n");
        }

        if (do_drop_privileges) {
                static const cap_value_t cap_values[] = {
                        CAP_SYS_NICE,             /* Needed for obvious reasons */
                        CAP_DAC_READ_SEARCH,      /* Needed so that we can verify resource limits */
                        CAP_SYS_PTRACE            /* Needed so that we can read /proc/$$/exe. Linux is weird. */
                };

                cap_value_t c, m;
                cap_t caps;

                m = CAP_LAST_CAP;
                /* In case the number of caps in the kernel is increased, drop them too */
                if (m < 63)
                        m = 63;

                /* Third, reduce bounding set */
                for (c = 0; c <= m; c++) {
                        unsigned u;
                        bool keep = false;

                        for (u = 0; u < ELEMENTSOF(cap_values); u++)
                                if (cap_values[u] == c) {
                                        keep = true;
                                        break;
                                }

                        if (!keep)
                                assert_se(prctl(PR_CAPBSET_DROP, c) == 0 || errno == EINVAL || errno == EPERM);
                }

                /* Fourth, say that we want to keep caps */
                if (prctl(PR_SET_KEEPCAPS, 1) < 0) {
                        r = -errno;
                        syslog(LOG_ERR, "PR_SET_KEEPCAPS failed: %s\n", strerror(errno));
                        return r;
                }

                /* Fifth, drop privs */
                if (setgroups(0, NULL) < 0 ||
                    setresgid(pw->pw_gid, pw->pw_gid, pw->pw_gid) < 0 ||
                    setresuid(pw->pw_uid, pw->pw_uid, pw->pw_uid) < 0) {
                        r = -errno;
                        syslog(LOG_ERR, "Failed to become %s: %s\n", username, strerror(errno));
                        return r;
                }

                /* Sixth, reset caps flag */
                if (prctl(PR_SET_KEEPCAPS, 0) < 0) {
                        r = -errno;
                        syslog(LOG_ERR, "PR_SET_KEEPCAPS failed: %s\n", strerror(errno));
                        return r;
                }

                /* Seventh, reduce caps */
                assert_se(caps = cap_init());
                assert_se(cap_clear(caps) == 0);
                assert_se(cap_set_flag(caps, CAP_EFFECTIVE, ELEMENTSOF(cap_values), cap_values, CAP_SET) == 0);
                assert_se(cap_set_flag(caps, CAP_PERMITTED, ELEMENTSOF(cap_values), cap_values, CAP_SET) == 0);

                if (cap_set_proc(caps) < 0) {
                        r = -errno;
                        syslog(LOG_ERR, "cap_set_proc() failed: %s\n", strerror(errno));
                        return r;
                }

                assert_se(cap_free(caps) == 0);

                /* Eigth, update environment */
                setenv("USER", username, 1);
                setenv("USERNAME", username, 1);
                setenv("LOGNAME", username, 1);
                setenv("HOME", get_proc_path(), 1);

                syslog(LOG_DEBUG, "Successfully dropped privileges.\n");
        }

        return 0;
}

static int set_resource_limits(void) {

        static struct {
                int id;
                const char *name;
                rlim_t value;
        } table[] = {
                { .id = RLIMIT_FSIZE,    .name = "RLIMIT_FSIZE",    .value =  0 },
                { .id = RLIMIT_MEMLOCK,  .name = "RLIMIT_MEMLOCK",  .value =  0 },
                { .id = RLIMIT_MSGQUEUE, .name = "RLIMIT_MSGQUEUE", .value =  0 },
                { .id = RLIMIT_NICE,     .name = "RLIMIT_NICE",     .value = 20 },
                { .id = RLIMIT_NOFILE,   .name = "RLIMIT_NOFILE",   .value = 50 },
                { .id = RLIMIT_NPROC,    .name = "RLIMIT_NPROC",    .value =  3 },
                { .id = RLIMIT_RTPRIO,   .name = "RLIMIT_RTPRIO",   .value =  0 }, /* Since we have CAP_SYS_NICE we don't need this */
                { .id = RLIMIT_RTTIME,   .name = "RLIMIT_RTTIME",   .value =  0 }
        };

        unsigned u;
        int r;

        assert(table[7].id == RLIMIT_RTTIME);
        table[7].value = rttime_usec_max; /* Do as I say AND do as I do */

        if (!do_limit_resources)
                return 0;

        for (u = 0; u < ELEMENTSOF(table); u++) {
                struct rlimit rlim;

                if (getrlimit(table[u].id, &rlim) < 0) {
                        r = -errno;
                        syslog(LOG_ERR, "Failed to get %s: %s\n", table[u].name, strerror(errno));
                        return r;
                }

                if (rlim.rlim_max < table[u].value)
                        continue;

                rlim.rlim_cur = rlim.rlim_max = table[u].value;

                if (setrlimit(table[u].id, &rlim) < 0) {
                        r = -errno;
                        syslog(LOG_ERR, "Failed to set %s: %s\n", table[u].name, strerror(errno));
                        return r;
                }
        }

        syslog(LOG_DEBUG, "Successfully limited resources.\n");

        return 0;
}

enum {
        ARG_HELP = 256,
        ARG_VERSION,
        ARG_SCHEDULING_POLICY,
        ARG_OUR_REALTIME_PRIORITY,
        ARG_OUR_NICE_LEVEL,
        ARG_MAX_REALTIME_PRIORITY,
        ARG_MIN_NICE_LEVEL,
        ARG_USER_NAME,
        ARG_RTTIME_USEC_MAX,
        ARG_USERS_MAX,
        ARG_PROCESSES_PER_USER_MAX,
        ARG_THREADS_PER_USER_MAX,
        ARG_ACTIONS_BURST_SEC,
        ARG_ACTIONS_PER_BURST_MAX,
        ARG_NO_DROP_PRIVILEGES,
        ARG_NO_CHROOT,
        ARG_NO_LIMIT_RESOURCES,
        ARG_NO_CANARY,
        ARG_CANARY_CHEEP_MSEC,
        ARG_CANARY_WATCHDOG_MSEC,
        ARG_CANARY_DEMOTE_ROOT,
        ARG_CANARY_DEMOTE_UNKNOWN,
        ARG_CANARY_REFUSE_SEC,
        ARG_STDERR,
        ARG_INTROSPECT
};

/* Table for getopt_long() */
static const struct option long_options[] = {
    { "help",                        no_argument,       0, ARG_HELP },
    { "version",                     no_argument,       0, ARG_VERSION },
    { "scheduling-policy",           required_argument, 0, ARG_SCHEDULING_POLICY },
    { "our-realtime-priority",       required_argument, 0, ARG_OUR_REALTIME_PRIORITY },
    { "our-nice-level",              required_argument, 0, ARG_OUR_NICE_LEVEL },
    { "max-realtime-priority",       required_argument, 0, ARG_MAX_REALTIME_PRIORITY },
    { "min-nice-level",              required_argument, 0, ARG_MIN_NICE_LEVEL },
    { "user-name",                   required_argument, 0, ARG_USER_NAME },
    { "rttime-usec-max",             required_argument, 0, ARG_RTTIME_USEC_MAX },
    { "users-max",                   required_argument, 0, ARG_USERS_MAX },
    { "processes-per-user-max",      required_argument, 0, ARG_PROCESSES_PER_USER_MAX },
    { "threads-per-user-max",        required_argument, 0, ARG_THREADS_PER_USER_MAX },
    { "actions-burst-sec",           required_argument, 0, ARG_ACTIONS_BURST_SEC },
    { "actions-per-burst-max",       required_argument, 0, ARG_ACTIONS_PER_BURST_MAX },
    { "no-drop-privileges",          no_argument,       0, ARG_NO_DROP_PRIVILEGES },
    { "no-chroot",                   no_argument,       0, ARG_NO_CHROOT },
    { "no-limit-resources",          no_argument,       0, ARG_NO_LIMIT_RESOURCES },
    { "no-canary",                   no_argument,       0, ARG_NO_CANARY },
    { "canary-cheep-msec",           required_argument, 0, ARG_CANARY_CHEEP_MSEC },
    { "canary-watchdog-msec",        required_argument, 0, ARG_CANARY_WATCHDOG_MSEC },
    { "canary-demote-root",          no_argument,       0, ARG_CANARY_DEMOTE_ROOT },
    { "canary-demote-unknown",       no_argument,       0, ARG_CANARY_DEMOTE_UNKNOWN },
    { "canary-refuse-sec",           required_argument, 0, ARG_CANARY_REFUSE_SEC },
    { "stderr",                      no_argument,       0, ARG_STDERR },
    { "introspect",                  no_argument,       0, ARG_INTROSPECT },
    { NULL, 0, 0, 0}
};

static char* get_file_name(const char *p) {
        char *e;

        if ((e = strrchr(p, '/')))
                return e + 1;
        else
                return (char*) p;
}

static void show_help(const char *exe) {

        static const char * const sp_names[] =  {
                [SCHED_OTHER] = "OTHER",
                [SCHED_BATCH] = "BATCH",
                [SCHED_FIFO] = "FIFO",
                [SCHED_RR] = "RR"
        };

        printf("%s [options]\n\n"
               "COMMANDS:\n"
               "  -h, --help                          Show this help\n"
               "      --version                       Show version\n\n"
               "OPTIONS:\n"
               "      --stderr                        Log to STDERR in addition to syslog\n"
               "      --user-name=USER                Run daemon as user (%s)\n\n"
               "      --scheduling-policy=(RR|FIFO)   Choose scheduling policy (%s)\n"
               "      --our-realtime-priority=[%i..%i] Realtime priority for the daemon (%u)\n"
               "      --our-nice-level=[%i..%i]      Nice level for the daemon (%i)\n"
               "      --max-realtime-priority=[%i..%i] Max realtime priority for clients (%u)\n"
               "      --min-nice-level=[%i..%i]      Min nice level for clients (%i)\n\n"
               "      --rttime-usec-max=USEC          Require clients to have set RLIMIT_RTTIME\n"
               "                                      not greater than this (%llu)\n\n"
               "      --users-max=INT                 How many users this daemon will serve at\n"
               "                                      max at the same time (%u)\n"
               "      --processes-per-user-max=INT    How many processes this daemon will serve\n"
               "                                      at max per user at the same time (%u)\n"
               "      --threads-per-user-max=INT      How many threads this daemon will serve\n"
               "                                      at max per user at the same time (%u)\n\n"
               "      --actions-burst-sec=SEC         Enforce requests limits in this time (%u)\n"
               "      --actions-per-burst-max=INT     Allow this many requests per burst (%u)\n\n"
               "      --canary-cheep-msec=MSEC        Canary cheep interval (%u)\n"
               "      --canary-watchdog-msec=MSEC     Watchdog action delay (%u)\n"
               "      --canary-demote-unknown         When the canary dies demote unknown\n"
               "                                      processes too?\n"
               "      --canary-demote-root            When the canary dies demote root\n"
               "                                      processes too?\n"
               "      --canary-refuse-sec=SEC         How long to refuse further requests\n"
               "                                      after the canary died (%u)\n\n"
               "      --no-canary                     Don't run a canary-based RT watchdog\n\n"
               "      --no-drop-privileges            Don't drop privileges\n"
               "      --no-chroot                     Don't chroot\n"
               "      --no-limit-resources            Don't limit daemon's resources\n",
               exe,
               username,
               sp_names[sched_policy],
               sched_get_priority_min(sched_policy), sched_get_priority_max(sched_policy), our_realtime_priority,
               PRIO_MIN, PRIO_MAX-1, our_nice_level,
               sched_get_priority_min(sched_policy), sched_get_priority_max(sched_policy), max_realtime_priority,
               PRIO_MIN, PRIO_MAX-1, min_nice_level,
               rttime_usec_max,
               users_max,
               processes_per_user_max,
               threads_per_user_max,
               actions_burst_sec,
               actions_per_burst_max,
               canary_cheep_msec,
               canary_watchdog_msec,
               canary_refusal_sec);
}

static int parse_command_line(int argc, char *argv[], int *ret) {

        int c;

        while ((c = getopt_long(argc, argv, "h", long_options, NULL)) >= 0) {

                switch (c) {
                        case 'h':
                        case ARG_HELP:
                                show_help(get_file_name(argv[0]));
                                *ret = 0;
                                return 0;

                        case ARG_VERSION:
                                printf("%s " PACKAGE_VERSION "\n", get_file_name(argv[0]));
                                *ret = 0;
                                return 0;

                        case ARG_USER_NAME:
                                username = optarg;
                                break;

                        case ARG_SCHEDULING_POLICY:  {
                                if (strcasecmp(optarg, "rr") == 0)
                                        sched_policy = SCHED_RR;
                                else if (strcasecmp(optarg, "fifo") == 0)
                                        sched_policy = SCHED_FIFO;
                                else {
                                        fprintf(stderr, "--scheduling-policy parameter invalid.\n");
                                        return -1;
                                }

                                break;
                        }

                        case ARG_OUR_REALTIME_PRIORITY: {
                                char *e = NULL;
                                unsigned long u;

                                errno = 0;
                                u = strtoul(optarg, &e, 0);
                                if (errno != 0 || !e || *e || u < (unsigned) sched_get_priority_min(sched_policy) || u > (unsigned) sched_get_priority_max(sched_policy)) {
                                        fprintf(stderr, "--our-realtime-priority parameter invalid.\n");
                                        return -1;
                                }
                                our_realtime_priority = u;
                                break;
                        }

                        case ARG_OUR_NICE_LEVEL: {
                                char *e = NULL;
                                long i;

                                errno = 0;
                                i = strtol(optarg, &e, 0);
                                if (errno != 0 || !e || *e || i < PRIO_MIN || i > PRIO_MAX*2) {
                                        fprintf(stderr, "--our-nice-level parameter invalid.\n");
                                        return -1;
                                }
                                our_nice_level = i;
                                break;
                        }

                        case ARG_MAX_REALTIME_PRIORITY: {
                                char *e = NULL;
                                unsigned long u;

                                errno = 0;
                                u = strtoul(optarg, &e, 0);
                                if (errno != 0 || !e || *e || u < (unsigned) sched_get_priority_min(sched_policy) || u > (unsigned) sched_get_priority_max(sched_policy)) {
                                        fprintf(stderr, "--max-realtime-priority parameter invalid.\n");
                                        return -1;
                                }
                                max_realtime_priority = u;
                                break;
                        }

                        case ARG_MIN_NICE_LEVEL: {
                                char *e = NULL;
                                long i;

                                errno = 0;
                                i = strtol(optarg, &e, 0);
                                if (errno != 0 || !e || *e || i < PRIO_MIN || i >= PRIO_MAX) {
                                        fprintf(stderr, "--min-nice-level parameter invalid.\n");
                                        return -1;
                                }
                                min_nice_level = i;
                                break;
                        }

                        case ARG_RTTIME_USEC_MAX: {
                                char *e = NULL;

                                errno = 0;
                                rttime_usec_max = strtoull(optarg, &e, 0);
                                if (errno != 0 || !e || *e || rttime_usec_max <= 0) {
                                        fprintf(stderr, "--rttime-usec-max parameter invalid.\n");
                                        return -1;
                                }
                                break;
                        }

                        case ARG_USERS_MAX: {
                                char *e = NULL;
                                unsigned long u;

                                errno = 0;
                                u = strtoul(optarg, &e, 0);
                                if (errno != 0 || !e || *e || u <= 0) {
                                        fprintf(stderr, "--users-max parameter invalid.\n");
                                        return -1;
                                }
                                users_max = u;
                                break;
                        }

                        case ARG_PROCESSES_PER_USER_MAX: {
                                char *e = NULL;
                                unsigned long u;

                                errno = 0;
                                u = strtoul(optarg, &e, 0);
                                if (errno != 0 || !e || *e || u <= 0) {
                                        fprintf(stderr, "--processes-per-user-max parameter invalid.\n");
                                        return -1;
                                }
                                processes_per_user_max = u;
                                break;
                        }

                        case ARG_THREADS_PER_USER_MAX: {
                                char *e = NULL;
                                unsigned long u;

                                errno = 0;
                                u = strtoul(optarg, &e, 0);
                                if (errno != 0 || !e || *e || u <= 0) {
                                        fprintf(stderr, "--threads-per-user-max parameter invalid.\n");
                                        return -1;
                                }
                                threads_per_user_max = u;
                                break;
                        }

                        case ARG_ACTIONS_BURST_SEC: {
                                char *e = NULL;
                                unsigned long u;

                                errno = 0;
                                u = strtoul(optarg, &e, 0);
                                if (errno != 0 || !e || *e || u <= 0) {
                                        fprintf(stderr, "--actions-burst-sec parameter invalid.\n");
                                        return -1;
                                }
                                actions_burst_sec = u;
                                break;
                        }

                        case ARG_ACTIONS_PER_BURST_MAX: {
                                char *e = NULL;
                                unsigned long u;

                                errno = 0;
                                u = strtoul(optarg, &e, 0);
                                if (errno != 0 || !e || *e || u <= 0) {
                                        fprintf(stderr, "--actions-per-burst-max parameter invalid.\n");
                                        return -1;
                                }
                                actions_per_burst_max = u;
                                break;
                        }

                        case ARG_NO_DROP_PRIVILEGES:
                                do_drop_privileges = FALSE;
                                break;

                        case ARG_NO_CHROOT:
                                do_chroot = FALSE;
                                break;

                        case ARG_NO_LIMIT_RESOURCES:
                                do_limit_resources = FALSE;
                                break;

                        case ARG_NO_CANARY:
                                do_canary = FALSE;
                                break;

                        case ARG_CANARY_WATCHDOG_MSEC: {
                                char *e = NULL;
                                unsigned long u;

                                errno = 0;
                                u = strtoul(optarg, &e, 0);
                                if (errno != 0 || !e || *e || u <= 0) {
                                        fprintf(stderr, "--canary-watchdog-msec parameter invalid.\n");
                                        return -1;
                                }
                                canary_watchdog_msec = u;
                                break;
                        }

                        case ARG_CANARY_CHEEP_MSEC: {
                                char *e = NULL;
                                unsigned long u;

                                errno = 0;
                                u = strtoul(optarg, &e, 0);
                                if (errno != 0 || !e || *e || u <= 0) {
                                        fprintf(stderr, "--canary-cheep-msec parameter invalid.\n");
                                        return -1;
                                }
                                canary_cheep_msec = u;
                                break;
                        }

                        case ARG_CANARY_DEMOTE_ROOT:
                                canary_demote_root = TRUE;
                                break;

                        case ARG_CANARY_DEMOTE_UNKNOWN:
                                canary_demote_unknown = TRUE;
                                break;

                        case ARG_CANARY_REFUSE_SEC: {
                                char *e = NULL;
                                unsigned long u;

                                errno = 0;
                                u = strtoul(optarg, &e, 0);
                                if (errno != 0 || !e || *e) {
                                        fprintf(stderr, "--canary-refuse-sec parameter invalid.\n");
                                        return -1;
                                }
                                canary_refusal_sec = (uint32_t) u;
                                break;
                        }

                        case ARG_STDERR:
                                log_stderr = TRUE;
                                break;

                        case ARG_INTROSPECT:
                                fputs(INTROSPECT_XML, stdout);
                                *ret = 0;
                                return 0;

                        case '?':
                        default:
                                fprintf(stderr, "Unknown command.\n");
                                return -1;
                }
        }

        if (optind < argc) {
                fprintf(stderr, "Too many arguments.\n");
                return -1;
        }

        if (max_realtime_priority >= our_realtime_priority) {
                fprintf(stderr, "The maximum realtime priority (%u) handed out to clients cannot be higher then our own (%u).\n",
                        max_realtime_priority,
                        our_realtime_priority);
                return -1;
        }

        if (canary_cheep_msec >= canary_watchdog_msec) {
                fprintf(stderr, "The canary watchdog interval must be larger than the cheep interval.\n");
                return -1;
        }

        assert(our_realtime_priority >= (unsigned) sched_get_priority_min(sched_policy));
        assert(our_realtime_priority <= (unsigned) sched_get_priority_max(sched_policy));

        assert(max_realtime_priority >= (unsigned) sched_get_priority_min(sched_policy));
        assert(max_realtime_priority <= (unsigned) sched_get_priority_max(sched_policy));

        assert(canary_watchdog_realtime_priority >= (unsigned) sched_get_priority_min(sched_policy));
        assert(canary_watchdog_realtime_priority <= (unsigned) sched_get_priority_max(sched_policy));

        assert(our_nice_level >= PRIO_MIN);
        assert(our_nice_level < PRIO_MAX);

        assert(min_nice_level >= PRIO_MIN);
        assert(min_nice_level < PRIO_MAX);

        return 1;
}

int main(int argc, char *argv[]) {
        DBusConnection *bus = NULL;
        int ret = 1;
        struct rtkit_user *u;
        unsigned long slack_ns;

        if (parse_command_line(argc, argv, &ret) <= 0)
                goto finish;

        if (getuid() != 0) {
                fprintf(stderr, "Need to be run as root.\n");
                goto finish;
        }

        openlog(get_file_name(argv[0]),
                LOG_NDELAY|LOG_PID|(log_stderr ? LOG_PERROR : 0),
                LOG_DAEMON);

        /* Raise our timer slack, we don't really need to be woken up
         * on time. */
        slack_ns = (((unsigned long) canary_watchdog_msec - (unsigned long) canary_cheep_msec) / 2UL) * 1000000UL;
        if (prctl(PR_SET_TIMERSLACK, slack_ns) < 0)
                syslog(LOG_WARNING, "PRT_SET_TIMERSLACK failed: %s\n", strerror(errno));

        self_drop_realtime(our_nice_level);

        if (setup_dbus(&bus) < 0)
                goto finish;

        if (drop_privileges() < 0)
                goto finish;

        if (set_resource_limits() < 0)
                goto finish;

        if (start_canary() < 0)
                goto finish;

        umask(0777);

        syslog(LOG_DEBUG, "Running.\n");

        sd_notify(0, "STATUS=Running.");

        dbus_connection_set_exit_on_disconnect(bus, FALSE);

        while (dbus_connection_read_write_dispatch(bus, -1))
                ;

        ret = 0;

        syslog(LOG_DEBUG, "Exiting cleanly.\n");

finish:

        if (bus) {
                if (dbus_connection_get_is_connected(bus))
                        dbus_connection_close(bus);
                dbus_connection_unref(bus);
        }

        reset_known();

        while ((u = users)) {
                users = u->next;
                free_user(u);
        }

        stop_canary();

        dbus_shutdown();

        return ret;
}