aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/acpid/acpid-1.0.10/netlink.diff
blob: 635c5508537fbca76c4f40f9a0124115d2078f9b (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
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
Binärdateien acpid-1.0.10/acpid and acpid-1.0.10-netlink2/acpid sind verschieden.
diff -ruN acpid-1.0.10/acpid.8 acpid-1.0.10-netlink2/acpid.8
--- acpid-1.0.10/acpid.8	2009-04-28 09:23:21.000000000 +0200
+++ acpid-1.0.10-netlink2/acpid.8	2009-04-29 16:37:13.000000000 +0200
@@ -10,11 +10,13 @@
 \fBacpid\fP is designed to notify user-space programs of ACPI events.
 \fBacpid\fP should be started during the system boot, and will run as a
 background process, by default.  It will open an events file
-(\fI/proc/acpi/event\fP by default) and attempt to read whole lines.  When
-a line is received (an \fIevent\fP), \fBacpid\fP will examine a list of rules,
-and execute the rules that match the event.
-\fBacpid\fP will ignore all incoming ACPI events if a lock file exists
-(\fI/var/lock/acpid\fP by default).
+(\fI/proc/acpi/event\fP by default) and attempt to read whole lines which
+represent ACPI events.  If the events file does not exist, \fBacpid\fP will
+attempt to connect to the Linux kernel via the input layer and netlink.  When an
+ACPI event is received from one of these sources, \fBacpid\fP will examine a
+list of rules, and execute the rules that match the event. \fBacpid\fP will
+ignore all incoming ACPI events if a lock file exists (\fI/var/lock/acpid\fP by
+default).
 .PP
 \fIRules\fP are defined by simple configuration files.  \fBacpid\fP
 will look in a configuration directory (\fI/etc/acpi/events\fP by default),
@@ -73,6 +75,9 @@
 This option changes the event file from which \fBacpid\fP reads events.
 Default is \fI/proc/acpi/event\fP.
 .TP
+.BI \-n "\fR, \fP" \--netlink
+This option forces \fBacpid\fP to use the Linux kernel input layer and netlink interface for ACPI events.
+.TP
 .BI \-f "\fR, \fP" \--foreground
 This option keeps \fBacpid\fP in the foreground by not forking at startup.
 .TP
@@ -126,6 +131,8 @@
 .PD 0
 .B /proc/acpi/event
 .br
+.B /dev/input/event*
+.br
 .B /etc/acpi/
 .br
 .B /var/run/acpid.socket
diff -ruN acpid-1.0.10/acpid.c acpid-1.0.10-netlink2/acpid.c
--- acpid-1.0.10/acpid.c	2009-04-28 09:23:21.000000000 +0200
+++ acpid-1.0.10-netlink2/acpid.c	2009-05-02 04:22:00.000000000 +0200
@@ -20,23 +20,23 @@
  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include <sys/types.h>
-#include <sys/stat.h>
+#include <unistd.h>
 #include <fcntl.h>
 #include <signal.h>
-#include <unistd.h>
+#include <string.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <string.h>
 #include <errno.h>
 #include <getopt.h>
-#include <time.h>
-#include <sys/poll.h>
-#include <grp.h>
-#include <syslog.h>
+#include <stdarg.h>
 
 #include "acpid.h"
-#include "ud_socket.h"
+#include "event.h"
+#include "connection_list.h"
+#include "proc.h"
+#include "sock.h"
+#include "input_layer.h"
+#include "netlink.h"
 
 static int handle_cmdline(int *argc, char ***argv);
 static void close_fds(void);
@@ -44,9 +44,7 @@
 static int open_log(void);
 static int create_pidfile(void);
 static void clean_exit(int sig);
-static void clean_exit_with_status(int status);
 static void reload_conf(int sig);
-static char *read_line(int fd);
 
 /* global debug level */
 int acpid_debug;
@@ -54,27 +52,17 @@
 /* do we log event info? */
 int logevents;
 
-/* the number of non-root clients that are connected */
-int non_root_clients;
-
-static const char *progname;
+const char *progname;
 static const char *confdir = ACPID_CONFDIR;
-static const char *eventfile = ACPID_EVENTFILE;
-static const char *socketfile = ACPID_SOCKETFILE;
 static const char *lockfile = ACPID_LOCKFILE;
 static int nosocket;
-static const char *socketgroup;
-static mode_t socketmode = ACPID_SOCKETMODE;
 static int foreground;
 static const char *pidfile = ACPID_PIDFILE;
-static int clientmax = ACPID_CLIENTMAX;
+static int netlink;
 
 int
 main(int argc, char **argv)
 {
-	int event_fd;
-	int sock_fd = -1; /* init to avoid a compiler warning */
-
 	/* learn who we really are */
 	progname = (const char *)strrchr(argv[0], '/');
 	progname = progname ? (progname + 1) : argv[0];
@@ -85,14 +73,22 @@
 	/* close any extra file descriptors */
 	close_fds();
 
-	/* actually open the event file */
-	event_fd = open(eventfile, O_RDONLY);
-	if (event_fd < 0) {
-		fprintf(stderr, "%s: can't open %s: %s\n", progname, 
-			eventfile, strerror(errno));
-		exit(EXIT_FAILURE);
+	if (!netlink)
+	{
+		/* open the acpi event file in the proc fs */
+		/* if the open fails, try netlink */
+		if (open_proc())
+			netlink = 1;
+	}
+
+	if (netlink)
+	{
+		/* open the input layer */
+		open_input();
+
+		/* open netlink */
+		open_netlink();
 	}
-	fcntl(event_fd, F_SETFD, FD_CLOEXEC);
 
 /*
  * if there is data, and the kernel is NOT broken, this eats 1 byte.  We
@@ -129,34 +125,7 @@
 
 	/* open our socket */
 	if (!nosocket) {
-		sock_fd = ud_create_socket(socketfile);
-		if (sock_fd < 0) {
-			fprintf(stderr, "%s: can't open socket %s: %s\n",
-				progname, socketfile, strerror(errno));
-			exit(EXIT_FAILURE);
-		}
-		fcntl(sock_fd, F_SETFD, FD_CLOEXEC);
-		chmod(socketfile, socketmode);
-		if (socketgroup) {
-			struct group *gr;
-			struct stat buf;
-			gr = getgrnam(socketgroup);
-			if (!gr) {
-				fprintf(stderr, "%s: group %s does not exist\n",
-					progname, socketgroup);
-				exit(EXIT_FAILURE);
-			}
-			if (stat(socketfile, &buf) < 0) {
-				fprintf(stderr, "%s: can't stat %s\n",
-					progname, socketfile);
-				exit(EXIT_FAILURE);
-			}
-			if (chown(socketfile, buf.st_uid, gr->gr_gid) < 0) {
-				fprintf(stderr, "%s: chown(): %s\n",
-					progname, strerror(errno));
-				exit(EXIT_FAILURE);
-			}
-		}
+		open_sock();
 	}
 
 	/* if we're running in foreground, we don't daemonize */
@@ -169,7 +138,8 @@
 	if (open_log() < 0) {
 		exit(EXIT_FAILURE);
 	}
-	acpid_log(LOG_INFO, "starting up\n");
+	acpid_log(LOG_INFO, "starting up with %s\n",
+		netlink ? "netlink and the input layer" : "proc fs");
 
 	/* trap key signals */
 	signal(SIGHUP, reload_conf);
@@ -188,128 +158,53 @@
 		exit(EXIT_FAILURE);
 	}
 
-	/* main loop */
 	acpid_log(LOG_INFO, "waiting for events: event logging is %s\n",
 	    logevents ? "on" : "off");
-	while (1) {
-		struct pollfd ar[2];
-		int r;
-		int fds = 0;
-
-		/* poll for the socket and the event file */
-		ar[0].fd = event_fd; ar[0].events = POLLIN; fds++;
-		if (!nosocket) {
-			ar[1].fd = sock_fd; ar[1].events = POLLIN; fds++;
-		}
-		r = poll(ar, fds, -1);
 
-		if (r < 0 && errno == EINTR) {
+	/* main loop */
+	while (1)
+	{
+		fd_set readfds;
+		int nready;
+		int i;
+		struct connection *p;
+
+		/* it's going to get clobbered, so use a copy */
+		readfds = *get_fdset();
+
+		/* wait on data */
+		nready = select(get_highestfd() + 1, &readfds, NULL, NULL, NULL);
+
+		if (nready < 0  &&  errno == EINTR) {
 			continue;
-		} else if (r < 0) {
-			acpid_log(LOG_ERR, "poll(): %s\n", strerror(errno));
+		} else if (nready < 0) {
+			acpid_log(LOG_ERR, "select(): %s\n", strerror(errno));
 			continue;
 		}
 
 		/* house keeping */
 		acpid_close_dead_clients();
 
-		/* was it an event? */
-		if (ar[0].revents) {
-			char *event;
-			struct stat trash;
-			int fexists;
-
-			/* check for existence of a lockfile */
-			fexists = (stat(lockfile, &trash) == 0);
-
-			/* this shouldn't happen */
-			if (!ar[0].revents & POLLIN) {
-				acpid_log(LOG_DEBUG,
-				    "odd, poll set flags 0x%x\n",
-				    ar[0].revents);
-				continue;
-			}
-
-			/* read an event */
-			event = read_line(event_fd);
+		/* for each connection */
+		for (i = 0; i <= get_number_of_connections(); ++i)
+		{
+			int fd;
 
-			/* if we're locked, don't process the event */
-			if (fexists) {
-				if (logevents) {
-					acpid_log(LOG_INFO,
-					    "lockfile present, not processing "
-					    "event \"%s\"\n", event);
-				}
-				continue;
-			}
+			p = get_connection(i);
 
-			/* handle the event */
-			if (event) {
-				if (logevents) {
-					acpid_log(LOG_INFO,
-					    "received event \"%s\"\n", event);
-				}
-				acpid_handle_event(event);
-				if (logevents) {
-					acpid_log(LOG_INFO,
-					    "completed event \"%s\"\n", event);
-				}
-			} else if (errno == EPIPE) {
-				acpid_log(LOG_WARNING,
-				    "events file connection closed\n");
+			/* if this connection is invalid, bail */
+			if (!p)
 				break;
-			} else {
-				static int nerrs;
-				if (++nerrs >= ACPID_MAX_ERRS) {
-					acpid_log(LOG_ERR,
-					    "too many errors reading "
-					    "events file - aborting\n");
-					break;
-				}
-			}
-		}
 
-		/* was it a new connection? */
-		if (!nosocket && ar[1].revents) {
-			int cli_fd;
-			struct ucred creds;
-			char buf[32];
-			static int accept_errors;
-
-			/* this shouldn't happen */
-			if (!ar[1].revents & POLLIN) {
-				acpid_log(LOG_DEBUG,
-				    "odd, poll set flags 0x%x\n",
-				    ar[1].revents);
-				continue;
-			}
+			/* get the file descriptor */
+			fd = p->fd;
 
-			/* accept and add to our lists */
-			cli_fd = ud_accept(sock_fd, &creds);
-			if (cli_fd < 0) {
-				acpid_log(LOG_ERR, "can't accept client: %s\n",
-				    strerror(errno));
-				accept_errors++;
-				if (accept_errors >= 5) {
-					acpid_log(LOG_ERR, "giving up\n");
-					clean_exit_with_status(EXIT_FAILURE);
-				}
-				continue;
-			}
-			accept_errors = 0;
-			if (creds.uid != 0 && non_root_clients >= clientmax) {
-				close(cli_fd);
-				acpid_log(LOG_ERR,
-				    "too many non-root clients\n");
-				continue;
-			}
-			if (creds.uid != 0) {
-				non_root_clients++;
+			/* if this file descriptor has data waiting */
+			if (FD_ISSET(fd, &readfds))
+			{
+				/* delegate to this connection's process function */
+				p->process(fd);
 			}
-			fcntl(cli_fd, F_SETFD, FD_CLOEXEC);
-			snprintf(buf, sizeof(buf)-1, "%d[%d:%d]",
-				creds.pid, creds.uid, creds.gid);
-			acpid_add_client(cli_fd, buf);
 		}
 	}
 
@@ -337,6 +232,7 @@
 		{"nosocket", 1, 0, 'S'},
 		{"pidfile", 1, 0, 'p'},
 		{"lockfile", 1, 0, 'L'},
+		{"netlink", 0, 0, 'n'},
 		{"version", 0, 0, 'v'},
 		{"help", 0, 0, 'h'},
 		{NULL, 0, 0, 0},
@@ -353,7 +249,8 @@
 		"Use the specified socket file.",	/* socketfile */
 		"Do not listen on a UNIX socket (overrides -s).",/* nosocket */
 		"Use the specified PID file.",		/* pidfile */
-		"Use the specified lockfile to stop processing.", /* pidfile */
+		"Use the specified lockfile to stop processing.", /* lockfile */
+		"Force netlink/input layer mode. (overrides -e)", /* netlink */
 		"Print version information.",		/* version */
 		"Print this message.",			/* help */
 	};
@@ -364,7 +261,7 @@
 	for (;;) {
 		int i;
 		i = getopt_long(*argc, *argv,
-		    "c:C:de:flg:m:s:Sp:L:vh", opts, NULL);
+		    "c:C:de:flg:m:s:Sp:L:nvh", opts, NULL);
 		if (i == -1) {
 			break;
 		}
@@ -406,6 +303,9 @@
 		case 'L':
 			lockfile = optarg;
 			break;
+		case 'n':
+			netlink = 1;
+			break;
 		case 'v':
 			printf(PACKAGE "-" VERSION "\n");
 			exit(EXIT_SUCCESS);
@@ -547,7 +447,7 @@
 	return -1;
 }
 
-static void
+void
 clean_exit_with_status(int status)
 {
 	acpid_cleanup_rules(1);
@@ -585,54 +485,11 @@
 	return 0;
 }
 
-/* 
- * This depends on fixes in linux ACPI after 2.4.8
- */
-#define MAX_BUFLEN	1024
-static char *
-read_line(int fd)
-{
-	static char *buf;
-	int buflen = 64;
-	int i = 0;
-	int r;
-	int searching = 1;
-
-	while (searching) {
-		buf = realloc(buf, buflen);
-		if (!buf) {
-			acpid_log(LOG_ERR, "malloc(%d): %s\n",
-				buflen, strerror(errno));
-			return NULL;
-		}
-		memset(buf+i, 0, buflen-i);
-
-		while (i < buflen) {
-			r = read(fd, buf+i, 1);
-			if (r < 0 && errno != EINTR) {
-				/* we should do something with the data */
-				acpid_log(LOG_ERR, "read(): %s\n",
-					strerror(errno));
-				return NULL;
-			} else if (r == 0) {
-				/* signal this in an almost standard way */
-				errno = EPIPE;
-				return NULL;
-			} else if (r == 1) {
-				/* scan for a newline */
-				if (buf[i] == '\n') {
-					searching = 0;
-					buf[i] = '\0';
-					break;
-				}
-				i++;
-			}
-		}
-		if (buflen >= MAX_BUFLEN) {
-			break;
-		} 
-		buflen *= 2;
-	}
+int
+locked()
+{
+	struct stat trash;
 
-	return buf;
+	/* check for existence of a lockfile */
+	return (stat(lockfile, &trash) == 0);
 }
diff -ruN acpid-1.0.10/acpid.h acpid-1.0.10-netlink2/acpid.h
--- acpid-1.0.10/acpid.h	2009-04-28 09:23:21.000000000 +0200
+++ acpid-1.0.10-netlink2/acpid.h	2009-05-02 04:19:54.000000000 +0200
@@ -23,11 +23,7 @@
 #ifndef ACPID_H__
 #define ACPID_H__
 
-#include <unistd.h>
 #include <syslog.h>
-#include <stdarg.h>
-#include <sys/types.h>
-#include <sys/stat.h>
 
 #define ACPI_PROCDIR 		"/proc/acpi"
 #define ACPID_EVENTFILE		ACPI_PROCDIR "/event"
@@ -46,16 +42,12 @@
  */
 extern int acpid_debug;
 extern int logevents;
-extern int non_root_clients;
+extern const char *progname;
+
 extern int acpid_log(int level, const char *fmt, ...);
 
-/*
- * event.c
- */
-extern int acpid_read_conf(const char *confdir);
-extern int acpid_add_client(int client, const char *origin);
-extern int acpid_cleanup_rules(int do_detach);
-extern int acpid_handle_event(const char *event);
-extern void acpid_close_dead_clients(void);
+extern int locked();
+
+extern void clean_exit_with_status(int status);
 
 #endif /* ACPID_H__ */
diff -ruN acpid-1.0.10/acpi_genetlink.h acpid-1.0.10-netlink2/acpi_genetlink.h
--- acpid-1.0.10/acpi_genetlink.h	1970-01-01 01:00:00.000000000 +0100
+++ acpid-1.0.10-netlink2/acpi_genetlink.h	2009-04-29 16:37:13.000000000 +0200
@@ -0,0 +1,33 @@
+#ifndef __ACPI_GENETLINK_H__
+#define __ACPI_GENETLINK_H__ 1
+
+#include <linux/types.h>
+
+struct acpi_genl_event {
+        char device_class[20];
+        char bus_id[15];
+        __u32 type;
+        __u32 data;
+};
+
+/* attributes of acpi_genl_family */
+enum {
+        ACPI_GENL_ATTR_UNSPEC,
+        ACPI_GENL_ATTR_EVENT,   /* ACPI event info needed by user space */
+        __ACPI_GENL_ATTR_MAX,
+};
+#define ACPI_GENL_ATTR_MAX (__ACPI_GENL_ATTR_MAX - 1)
+
+/* commands supported by the acpi_genl_family */
+enum {
+        ACPI_GENL_CMD_UNSPEC,
+        ACPI_GENL_CMD_EVENT,    /* kernel->user notifications for ACPI events */        __ACPI_GENL_CMD_MAX,
+};
+#define ACPI_GENL_CMD_MAX (__ACPI_GENL_CMD_MAX - 1)
+#define GENL_MAX_FAM_OPS        256
+#define GENL_MAX_FAM_GRPS       256
+
+#define ACPI_EVENT_FAMILY_NAME		"acpi_event"
+#define ACPI_EVENT_MCAST_GROUP_NAME	"acpi_mc_group"
+
+#endif
diff -ruN acpid-1.0.10/acpi_ids.c acpid-1.0.10-netlink2/acpi_ids.c
--- acpid-1.0.10/acpi_ids.c	1970-01-01 01:00:00.000000000 +0100
+++ acpid-1.0.10-netlink2/acpi_ids.c	2009-04-29 16:37:13.000000000 +0200
@@ -0,0 +1,254 @@
+/*
+ *  acpi_ids.c - ACPI Netlink Group and Family IDs
+ *
+ *  Copyright (C) 2008 Ted Felix (www.tedfelix.com)
+ *  Portions from acpi_genl Copyright (C) Zhang Rui <rui.zhang@intel.com>
+ *
+ *  This program 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 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program 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 this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
+#include <stdio.h>
+/* needed by netlink.h, should be in there */
+#include <arpa/inet.h>
+#include <linux/types.h>
+#include <string.h>
+
+#include "genetlink.h"
+#include "libnetlink.h"
+
+#include "acpid.h"
+
+#define GENL_MAX_FAM_GRPS       256
+#define ACPI_EVENT_FAMILY_NAME          "acpi_event"
+#define ACPI_EVENT_MCAST_GROUP_NAME     "acpi_mc_group"
+
+static int initialized = 0;
+static __u16 acpi_event_family_id = 0;
+static __u32 acpi_event_mcast_group_id = 0;
+
+/*
+ *  A CTRL_CMD_GETFAMILY message returns an attribute table that looks
+ *    like this:
+ *
+ *  CTRL_ATTR_FAMILY_ID         Use this to make sure we get the proper msgs
+ *  CTRL_ATTR_MCAST_GROUPS
+ *    CTRL_ATTR_MCAST_GRP_NAME
+ *    CTRL_ATTR_MCAST_GRP_ID    Need this for the group mask
+ *    ...
+ */
+
+static int
+get_ctrl_grp_id(struct rtattr *arg)
+{
+	struct rtattr *tb[CTRL_ATTR_MCAST_GRP_MAX + 1];
+	char *name;
+
+	if (arg == NULL)
+		return -1;
+
+	/* nested within the CTRL_ATTR_MCAST_GROUPS attribute are the  */
+	/* group name and ID  */
+	parse_rtattr_nested(tb, CTRL_ATTR_MCAST_GRP_MAX, arg);
+
+	/* if either of the entries needed cannot be found, bail */
+	if (!tb[CTRL_ATTR_MCAST_GRP_NAME] || !tb[CTRL_ATTR_MCAST_GRP_ID])
+		return -1;
+
+	/* get the name of this multicast group we've found */
+	name = RTA_DATA(tb[CTRL_ATTR_MCAST_GRP_NAME]);
+
+	/* if it does not match the ACPI event multicast group name, bail */
+	if (strcmp(name, ACPI_EVENT_MCAST_GROUP_NAME))
+		return -1;
+
+	/* At this point, we've found what we were looking for.  We now  */
+	/* have the multicast group ID for ACPI events over generic netlink. */
+	acpi_event_mcast_group_id =
+		*((__u32 *)RTA_DATA(tb[CTRL_ATTR_MCAST_GRP_ID]));
+
+	return 0;
+}
+
+/* n = the response to a CTRL_CMD_GETFAMILY message */
+static int
+genl_get_mcast_group_id(struct nlmsghdr *n)
+{
+	/*
+	 *  Attribute table.  Note the type name "rtattr" which means "route
+	 *  attribute".  This is a vestige of one of netlink's main uses:
+	 *  routing.
+	 */
+	struct rtattr *tb[CTRL_ATTR_MAX + 1];
+	/* pointer to the generic netlink header in the incoming message */
+	struct genlmsghdr *ghdr = NLMSG_DATA(n);
+	/* length of the attribute and payload */
+	int len = n->nlmsg_len - NLMSG_LENGTH(GENL_HDRLEN);
+	/* Pointer to the attribute portion of the message */
+	struct rtattr *attrs;
+
+	if (len < 0) {
+		fprintf(stderr, "%s: netlink CTRL_CMD_GETFAMILY response, "
+			"wrong controller message len: %d\n", progname, len);
+		return -1;
+	}
+
+	if (n->nlmsg_type != GENL_ID_CTRL) {
+		fprintf(stderr, "%s: not a netlink controller message, "
+			"nlmsg_len=%d nlmsg_type=0x%x\n", 
+			progname, n->nlmsg_len, n->nlmsg_type);
+		return 0;
+	}
+
+	if (ghdr->cmd != CTRL_CMD_GETFAMILY &&
+	    ghdr->cmd != CTRL_CMD_DELFAMILY &&
+	    ghdr->cmd != CTRL_CMD_NEWFAMILY &&
+	    ghdr->cmd != CTRL_CMD_NEWMCAST_GRP &&
+	    ghdr->cmd != CTRL_CMD_DELMCAST_GRP) {
+		fprintf(stderr, "%s: unknown netlink controller command %d\n",
+			progname, ghdr->cmd);
+		return 0;
+	}
+
+	/* set attrs to point to the attribute */
+	attrs = (struct rtattr *)((char *)ghdr + GENL_HDRLEN);
+	/* Read the table from the message into "tb".  This actually just  */
+	/* places pointers into the message into tb[].  */
+	parse_rtattr(tb, CTRL_ATTR_MAX, attrs, len);
+
+	/* if a family ID attribute is present, get it */
+	if (tb[CTRL_ATTR_FAMILY_ID])
+	{
+		acpi_event_family_id =
+			*((__u32 *)RTA_DATA(tb[CTRL_ATTR_FAMILY_ID]));
+	}
+
+	/* if a "multicast groups" attribute is present... */
+	if (tb[CTRL_ATTR_MCAST_GROUPS]) {
+		struct rtattr *tb2[GENL_MAX_FAM_GRPS + 1];
+		int i;
+
+		/* get the group table within this attribute  */
+		parse_rtattr_nested(tb2, GENL_MAX_FAM_GRPS,
+			tb[CTRL_ATTR_MCAST_GROUPS]);
+
+		/* for each group */
+		for (i = 0; i < GENL_MAX_FAM_GRPS; i++)
+			/* if this group is valid */
+			if (tb2[i])
+				/* Parse the ID.  If successful, we're done. */
+				if (!get_ctrl_grp_id(tb2[i]))
+					return 0;
+	}
+
+	return -1;
+}
+
+static int
+genl_get_ids(char *family_name)
+{
+	/* handle to the netlink connection */
+	struct rtnl_handle rth;
+	/* holds the request we are going to send and the reply */
+	struct {
+		struct nlmsghdr n;
+		char buf[4096];    /* ??? Is this big enough for all cases? */
+	} req;
+	/* pointer to the nlmsghdr in req */
+	struct nlmsghdr *nlh;
+	/* pointer to the generic netlink header in req */
+	struct genlmsghdr *ghdr;
+	/* return value */
+	int ret = -1;
+
+	/* clear out the request */
+	memset(&req, 0, sizeof(req));
+
+	/* set up nlh to point to the netlink header in req */
+	nlh = &req.n;
+	/* set up the netlink header */
+	nlh->nlmsg_len = NLMSG_LENGTH(GENL_HDRLEN);
+	nlh->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK;
+	nlh->nlmsg_type = GENL_ID_CTRL;
+
+	/* set up ghdr to point to the generic netlink header */
+	ghdr = NLMSG_DATA(&req.n);
+	/* set the command we want to run: "GETFAMILY" */
+	ghdr->cmd = CTRL_CMD_GETFAMILY;
+
+	/* the message payload is the family name */
+	addattr_l(nlh, 128, CTRL_ATTR_FAMILY_NAME,
+			  family_name, strlen(family_name) + 1);
+
+	/* open a generic netlink connection */
+	if (rtnl_open_byproto(&rth, 0, NETLINK_GENERIC) < 0) {
+		fprintf(stderr, "%s: cannot open generic netlink socket\n", 
+			progname);
+		return -1;
+	}
+
+	/*
+	 *  Send CTRL_CMD_GETFAMILY message (in nlh) to the generic
+	 *  netlink controller.  Reply will be in nlh upon return.
+	 */
+	if (rtnl_talk(&rth, nlh, 0, 0, nlh, NULL, NULL) < 0) {
+		fprintf(stderr, "%s: error talking to the kernel via netlink\n",
+			progname);
+		goto ctrl_done;
+	}
+
+	/* process the response */
+	if (genl_get_mcast_group_id(nlh) < 0) {
+		fprintf(stderr, "%s: failed to get acpi_event netlink "
+			"multicast group\n", progname);
+		goto ctrl_done;
+	}
+
+	ret = 0;
+
+ctrl_done:
+	rtnl_close(&rth);
+	return ret;
+}
+
+/* initialize the ACPI IDs */
+static void
+acpi_ids_init()
+{
+	genl_get_ids(ACPI_EVENT_FAMILY_NAME);
+
+	initialized = 1;
+}
+
+/* returns the netlink family ID for ACPI event messages */
+__u16
+acpi_ids_getfamily()
+{
+	/* if the IDs haven't been initialized, initialize them */
+	if (initialized == 0)
+		acpi_ids_init();
+
+	return acpi_event_family_id;
+}
+
+/* returns the netlink multicast group ID for ACPI event messages */
+__u32
+acpi_ids_getgroup()
+{
+	/* if the IDs haven't been initialized, initialize them */
+	if (initialized == 0)
+		acpi_ids_init();
+
+	return acpi_event_mcast_group_id;
+}
diff -ruN acpid-1.0.10/acpi_ids.h acpid-1.0.10-netlink2/acpi_ids.h
--- acpid-1.0.10/acpi_ids.h	1970-01-01 01:00:00.000000000 +0100
+++ acpid-1.0.10-netlink2/acpi_ids.h	2009-04-29 16:37:13.000000000 +0200
@@ -0,0 +1,30 @@
+/*
+ *  acpi_ids.h - ACPI Netlink Group and Family IDs
+ *
+ *  Copyright (C) 2008 Ted Felix (www.tedfelix.com)
+ *
+ *  This program 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 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program 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 this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
+#ifndef ACPI_IDS_H__
+#define ACPI_IDS_H__
+
+/* returns the netlink family ID for ACPI event messages */
+extern __u16 acpi_ids_getfamily();
+
+/* returns the netlink multicast group ID for ACPI event messages */
+extern __u32 acpi_ids_getgroup();
+
+#endif /* ACPI_IDS_H__ */
Binärdateien acpid-1.0.10/acpi_listen and acpid-1.0.10-netlink2/acpi_listen sind verschieden.
diff -ruN acpid-1.0.10/acpi_listen.c acpid-1.0.10-netlink2/acpi_listen.c
--- acpid-1.0.10/acpi_listen.c	2009-04-28 09:23:21.000000000 +0200
+++ acpid-1.0.10-netlink2/acpi_listen.c	2009-04-29 16:37:13.000000000 +0200
@@ -42,8 +42,8 @@
 static int handle_cmdline(int *argc, char ***argv);
 static char *read_line(int fd);
 
-static const char *progname;
-static const char *socketfile = ACPID_SOCKETFILE;
+const char *progname;
+const char *socketfile = ACPID_SOCKETFILE;
 static int max_events;
 
 static void
diff -ruN acpid-1.0.10/Changelog acpid-1.0.10-netlink2/Changelog
--- acpid-1.0.10/Changelog	2009-04-28 09:23:21.000000000 +0200
+++ acpid-1.0.10-netlink2/Changelog	2009-05-03 02:02:33.000000000 +0200
@@ -1,4 +1,7 @@
 %changelog
+* Sat May 02 2009  Michael Meskes and Ted Felix <http://www.tedfelix.com/>
+  - Merge of the following three 1.0.10 changes into 1.0.10-netlink2
+
 * Wed Apr 22 2009  Tim Hockin <thockin@hockin.org>
   - Bump version to 1.0.10 for release.
 
@@ -13,6 +16,11 @@
 * Mon Feb 09 2009  Tim Hockin <thockin@hockin.org>
   - Open /dev/null O_RDWR, rather than O_RDONLY. (acpid.c)
 
+* Thu Dec 11 2008  Ted Felix <http://www.tedfelix.com/>
+  - Version 1.0.8ted1
+  - Netlink and Input Layer support.  Many files have been changed and
+    several have been added.  (Ted Felix <http://www.tedfelix.com/>)
+
 * Tue Oct 28 2008  Tim Hockin <thockin@hockin.org>
   - Bump version to 1.0.8 for release.
 
diff -ruN acpid-1.0.10/connection_list.c acpid-1.0.10-netlink2/connection_list.c
--- acpid-1.0.10/connection_list.c	1970-01-01 01:00:00.000000000 +0100
+++ acpid-1.0.10-netlink2/connection_list.c	2009-04-29 16:37:13.000000000 +0200
@@ -0,0 +1,124 @@
+/*
+ *  connection_list.c - ACPI daemon connection list
+ *
+ *  Copyright (C) 2008, Ted Felix (www.tedfelix.com)
+ *
+ *  This program 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 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program 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 this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *
+ *  Tabs at 4
+ */
+
+#include <unistd.h>
+#include <stdio.h>
+#include <sys/select.h>
+
+#include "acpid.h"
+
+#include "connection_list.h"
+
+#define max(a, b)  (((a)>(b))?(a):(b))
+
+/*---------------------------------------------------------------*/
+/* private objects */
+
+#define MAX_CONNECTIONS 10
+
+static struct connection connection_list[MAX_CONNECTIONS];
+
+static int nconnections = 0;
+
+/* fd_set containing all the fd's that come in */
+static fd_set allfds;
+
+/* highest fd that is opened */
+/* (-2 + 1) causes select() to return immediately */
+static int highestfd = -2;
+
+/*---------------------------------------------------------------*/
+/* public functions */
+
+void
+add_connection(struct connection *p)
+{
+	if (nconnections < 0)
+		return;
+	if (nconnections >= MAX_CONNECTIONS) {
+		acpid_log(LOG_ERR, "Too many connections.\n");
+		return;
+	}
+
+	if (nconnections == 0)
+		FD_ZERO(&allfds);
+	
+	/* add the connection to the connection list */
+	connection_list[nconnections] = *p;
+	++nconnections;
+	
+	/* add to the fd set */
+	FD_SET(p->fd, &allfds);
+	highestfd = max(highestfd, p->fd);
+}
+
+/*---------------------------------------------------------------*/
+
+struct connection *
+find_connection(int fd)
+{
+	int i;
+
+	/* for each connection */
+	for (i = 0; i < nconnections; ++i) {
+		/* if the file descriptors match, return the connection */
+		if (connection_list[i].fd == fd)
+			return &connection_list[i];
+	}
+
+	return NULL;
+}
+
+/*---------------------------------------------------------------*/
+
+int 
+get_number_of_connections()
+{
+	return nconnections;
+}
+
+/*---------------------------------------------------------------*/
+
+struct connection *
+get_connection(int i)
+{
+	if (i < 0  ||  i >= nconnections)
+		return NULL;
+
+	return &connection_list[i];
+}
+
+/*---------------------------------------------------------------*/
+
+const fd_set *
+get_fdset()
+{
+	return &allfds;
+}
+
+/*---------------------------------------------------------------*/
+
+int
+get_highestfd()
+{
+	return highestfd;
+}
diff -ruN acpid-1.0.10/connection_list.h acpid-1.0.10-netlink2/connection_list.h
--- acpid-1.0.10/connection_list.h	1970-01-01 01:00:00.000000000 +0100
+++ acpid-1.0.10-netlink2/connection_list.h	2009-04-29 16:37:13.000000000 +0200
@@ -0,0 +1,59 @@
+/*
+ *  connection_list.h - ACPI daemon connection list
+ *
+ *  Copyright (C) 2008, Ted Felix (www.tedfelix.com)
+ *
+ *  This program 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 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program 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 this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *
+ *  Tabs at 4
+ */
+
+#ifndef CONNECTION_LIST_H__
+#define CONNECTION_LIST_H__
+
+#include <sys/select.h>
+
+/*****************************************************************
+ *  Connection List Public Members
+ *****************************************************************/
+
+struct connection
+{
+	/* file descriptor */
+	int fd;
+
+	/* process incoming data on the connection */
+	void (* process)(int fd);
+};
+
+/* add a connection to the list */
+extern void add_connection(struct connection *p);
+
+/* find a connection in the list by file descriptor */
+extern struct connection *find_connection(int fd);
+
+/* get the number of connections in the list */
+extern int get_number_of_connections();
+
+/* get a specific connection by index from the list */
+extern struct connection *get_connection(int i);
+
+/* get an fd_set with all the fd's that have been added to the list */
+extern const fd_set *get_fdset();
+
+/* get the highest fd that was added to the list */
+extern int get_highestfd();
+
+#endif /* CONNECTION_LIST_H__ */
diff -ruN acpid-1.0.10/event.c acpid-1.0.10-netlink2/event.c
--- acpid-1.0.10/event.c	2009-04-28 09:23:21.000000000 +0200
+++ acpid-1.0.10-netlink2/event.c	2009-05-02 04:27:06.000000000 +0200
@@ -1,5 +1,5 @@
 /*
- *  event.c - ACPI daemon
+ *  event.c - ACPI daemon event handler
  *
  *  Copyright (C) 2000 Andrew Henroid
  *  Copyright (C) 2001 Sun Microsystems (thockin@sun.com)
@@ -36,6 +36,7 @@
 #include <signal.h>
 
 #include "acpid.h"
+#include "sock.h"
 #include "ud_socket.h"
 
 /*
diff -ruN acpid-1.0.10/event.h acpid-1.0.10-netlink2/event.h
--- acpid-1.0.10/event.h	1970-01-01 01:00:00.000000000 +0100
+++ acpid-1.0.10-netlink2/event.h	2009-05-02 04:11:51.000000000 +0200
@@ -0,0 +1,32 @@
+/*
+ *  event.h - ACPI daemon event handler
+ *
+ *  Copyright (C) 1999-2000 Andrew Henroid
+ *  Copyright (C) 2001 Sun Microsystems
+ *  Portions Copyright (C) 2004 Tim Hockin (thockin@hockin.org)
+ *
+ *  This program 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 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program 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 this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
+#ifndef EVENT_H__
+#define EVENT_H__
+
+extern int acpid_read_conf(const char *confdir);
+extern int acpid_add_client(int client, const char *origin);
+extern int acpid_cleanup_rules(int do_detach);
+extern int acpid_handle_event(const char *event);
+extern void acpid_close_dead_clients(void);
+
+#endif /* EVENT_H__ */
diff -ruN acpid-1.0.10/genetlink.h acpid-1.0.10-netlink2/genetlink.h
--- acpid-1.0.10/genetlink.h	1970-01-01 01:00:00.000000000 +0100
+++ acpid-1.0.10-netlink2/genetlink.h	2009-04-29 16:37:13.000000000 +0200
@@ -0,0 +1,81 @@
+#ifndef __LINUX_GENERIC_NETLINK_H
+#define __LINUX_GENERIC_NETLINK_H
+
+#include <linux/netlink.h>
+
+#define GENL_NAMSIZ	16	/* length of family name */
+
+#define GENL_MIN_ID	NLMSG_MIN_TYPE
+#define GENL_MAX_ID	1023
+
+struct genlmsghdr {
+	__u8	cmd;
+	__u8	version;
+	__u16	reserved;
+};
+
+#define GENL_HDRLEN	NLMSG_ALIGN(sizeof(struct genlmsghdr))
+
+#define GENL_ADMIN_PERM		0x01
+#define GENL_CMD_CAP_DO		0x02
+#define GENL_CMD_CAP_DUMP	0x04
+#define GENL_CMD_CAP_HASPOL	0x08
+
+/*
+ * List of reserved static generic netlink identifiers:
+ */
+#define GENL_ID_GENERATE	0
+#define GENL_ID_CTRL		NLMSG_MIN_TYPE
+
+/**************************************************************************
+ * Controller
+ **************************************************************************/
+
+enum {
+	CTRL_CMD_UNSPEC,
+	CTRL_CMD_NEWFAMILY,
+	CTRL_CMD_DELFAMILY,
+	CTRL_CMD_GETFAMILY,
+	CTRL_CMD_NEWOPS,
+	CTRL_CMD_DELOPS,
+	CTRL_CMD_GETOPS,
+	CTRL_CMD_NEWMCAST_GRP,
+	CTRL_CMD_DELMCAST_GRP,
+	CTRL_CMD_GETMCAST_GRP, /* unused */
+	__CTRL_CMD_MAX,
+};
+
+#define CTRL_CMD_MAX (__CTRL_CMD_MAX - 1)
+
+enum {
+	CTRL_ATTR_UNSPEC,
+	CTRL_ATTR_FAMILY_ID,
+	CTRL_ATTR_FAMILY_NAME,
+	CTRL_ATTR_VERSION,
+	CTRL_ATTR_HDRSIZE,
+	CTRL_ATTR_MAXATTR,
+	CTRL_ATTR_OPS,
+	CTRL_ATTR_MCAST_GROUPS,
+	__CTRL_ATTR_MAX,
+};
+
+#define CTRL_ATTR_MAX (__CTRL_ATTR_MAX - 1)
+
+enum {
+	CTRL_ATTR_OP_UNSPEC,
+	CTRL_ATTR_OP_ID,
+	CTRL_ATTR_OP_FLAGS,
+	__CTRL_ATTR_OP_MAX,
+};
+
+#define CTRL_ATTR_OP_MAX (__CTRL_ATTR_OP_MAX - 1)
+
+enum {
+	CTRL_ATTR_MCAST_GRP_UNSPEC,
+	CTRL_ATTR_MCAST_GRP_NAME,
+	CTRL_ATTR_MCAST_GRP_ID,
+	__CTRL_ATTR_MCAST_GRP_MAX,
+};
+#define CTRL_ATTR_MCAST_GRP_MAX (__CTRL_ATTR_MCAST_GRP_MAX - 1)
+
+#endif	/* __LINUX_GENERIC_NETLINK_H */
diff -ruN acpid-1.0.10/input_layer.c acpid-1.0.10-netlink2/input_layer.c
--- acpid-1.0.10/input_layer.c	1970-01-01 01:00:00.000000000 +0100
+++ acpid-1.0.10-netlink2/input_layer.c	2009-04-29 16:37:13.000000000 +0200
@@ -0,0 +1,262 @@
+/*
+ *  input_layer - Kernel ACPI Event Input Layer Interface
+ *
+ *  Handles the details of getting kernel ACPI events from the input
+ *  layer (/dev/input/event*).
+ *
+ *  Inspired by (and in some cases blatantly lifted from) Vojtech Pavlik's
+ *  evtest.c.
+ *
+ *  Copyright (C) 2008, Ted Felix (www.tedfelix.com)
+ *
+ *  This program 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 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program 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 this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *
+ *  (tabs at 4)
+ */
+
+/* system */
+#include <unistd.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <fcntl.h>
+#include <linux/input.h>
+#include <string.h>
+#include <errno.h>
+#include <malloc.h>
+#include <glob.h>
+
+/* local */
+#include "acpid.h"
+#include "connection_list.h"
+#include "event.h"
+
+#define DIM(a)  (sizeof(a) / sizeof(a[0]))
+
+struct evtab_entry {
+	struct input_event event;
+	const char *str;
+};
+	
+/* event table: events we are interested in and their strings */
+/* use evtest.c or acpi_genl to find new events to add to this table */
+static struct evtab_entry evtab[] = {
+	{{{0,0}, EV_KEY, KEY_POWER, 1}, "button/power PBTN 00000080 00000000"},
+	{{{0,0}, EV_KEY, KEY_SLEEP, 1}, "button/sleep SBTN 00000080 00000000"},
+	{{{0,0}, EV_KEY, KEY_SUSPEND, 1}, 
+ 		"button/suspend SUSP 00000080 00000000"},
+	{{{0,0}, EV_SW, SW_LID, 1}, "button/lid LID close"},
+	{{{0,0}, EV_SW, SW_LID, 0}, "button/lid LID open"}
+};
+	
+/*----------------------------------------------------------------------*/
+/* Given an input event, returns the string corresponding to that event.
+   If there is no corresponding string, NULL is returned.  */
+static const char *
+event_string(struct input_event event)
+{
+	unsigned i;
+	
+	/* for each entry in the event table */
+	for (i = 0; i < DIM(evtab); ++i)
+	{
+		/* if this is a matching event, return its string */
+		if (event.type == evtab[i].event.type  &&
+			event.code == evtab[i].event.code  &&
+			event.value == evtab[i].event.value) {
+			return evtab[i].str;
+		}
+	}
+	
+	return NULL;
+}
+
+/*-----------------------------------------------------------------*/
+/* returns non-zero if the event type/code is one we need */
+static int 
+need_event(int type, int code)
+{
+	unsigned i;
+
+	/* for each entry in the event table */
+	for (i = 0; i < DIM(evtab); ++i) {
+		/* if we found a matching event */
+		if (type == evtab[i].event.type  &&
+			code == evtab[i].event.code) {
+			return 1;
+		}
+	}
+
+	return 0;
+}
+
+/*-----------------------------------------------------------------*/
+/* called when an input layer event is received */
+void process_input(int fd)
+{
+	struct input_event event;
+	ssize_t nbytes;
+	const char *str;
+	static int nerrs;
+
+	nbytes = read(fd, &event, sizeof(event));
+
+	if (nbytes == 0) {
+		acpid_log(LOG_WARNING, "input layer connection closed\n");
+		exit(EXIT_FAILURE);
+	}
+	
+	if (nbytes < 0) {
+		/* if it's a signal, bail */
+		if (errno == EINTR)
+			return;
+		
+		acpid_log(LOG_ERR, "input layer read error: %s (%d)\n",
+			strerror(errno), errno);
+		if (++nerrs >= ACPID_MAX_ERRS) {
+			acpid_log(LOG_ERR,
+				"too many errors reading "
+				"input layer - aborting\n");
+			exit(EXIT_FAILURE);
+		}
+		return;
+	}
+
+	/* ??? Is it possible for a partial message to come across? */
+	/*   If so, we've got more code to write... */
+	
+	if (nbytes != sizeof(event)) {
+		acpid_log(LOG_WARNING, "input layer unexpected length: "
+			"%d   expected: %d\n", nbytes, sizeof(event));
+		return;
+	}
+
+	/* convert the event into a string */
+	str = event_string(event);
+	/* if this is not an event we care about, bail */
+	if (str == NULL)
+		return;
+	
+	/* if we're locked, don't process the event */
+	if (locked()) {
+		if (logevents) {
+			acpid_log(LOG_INFO,
+				"lockfile present, not processing "
+				"input layer event \"%s\"\n", str);
+		}
+		return;
+	}
+
+	if (logevents)
+		acpid_log(LOG_INFO,
+			"received input layer event \"%s\"\n", str);
+	
+	/* send the event off to the handler */
+	acpid_handle_event(str);
+
+	if (logevents)
+		acpid_log(LOG_INFO,
+			"completed input layer event \"%s\"\n", str);
+}
+
+#define BITS_PER_LONG (sizeof(long) * 8)
+#define NBITS(x) ((((x)-1)/BITS_PER_LONG)+1)
+#define OFF(x)  ((x)%BITS_PER_LONG)
+#define LONG(x) ((x)/BITS_PER_LONG)
+#define test_bit(bit, array)	((array[LONG(bit)] >> OFF(bit)) & 1)
+
+/*--------------------------------------------------------------------*/
+/* returns non-zero if the file descriptor supports one of the events */
+/* supported by event_string().  */
+static int 
+has_event(int fd)
+{
+	int type, code;
+	unsigned long bit[EV_MAX][NBITS(KEY_MAX)];
+
+	memset(bit, 0, sizeof(bit));
+	/* get the event type bitmap */
+	ioctl(fd, EVIOCGBIT(0, sizeof(bit[0])), bit[0]);
+
+	/* for each event type */
+	for (type = 0; type < EV_MAX; type++) {
+		/* if this event type is supported */
+		if (test_bit(type, bit[0])) {
+			/* skip sync */
+			if (type == EV_SYN) continue;
+			/* get the event code mask */
+			ioctl(fd, EVIOCGBIT(type, sizeof(bit[type])), bit[type]);
+			/* for each event code */
+			for (code = 0; code < KEY_MAX; code++) {
+				/* if this event code is supported */
+				if (test_bit(code, bit[type])) {
+					/* if we need this event */
+					if (need_event(type, code) != 0)
+						return 1;
+				}
+			}
+		}
+	}
+	return 0;
+}
+
+/* ??? make this changeable by commandline option */
+#define INPUT_LAYER_FS "/dev/input/event*"
+
+/*-----------------------------------------------------------------*
+ * open each of the appropriate /dev/input/event* files for input  */
+void open_input(void)
+{
+	char *filename = NULL;
+	glob_t globbuf;
+	unsigned i;
+	int fd;
+	int success = 0;
+	struct connection c;
+
+	/* get all the matching event filenames */
+	glob(INPUT_LAYER_FS, 0, NULL, &globbuf);
+
+	/* for each event file */
+	for (i = 0; i < globbuf.gl_pathc; ++i)
+	{
+		filename = globbuf.gl_pathv[i];
+
+		fd = open(filename, O_RDONLY | O_NONBLOCK);
+		if (fd >= 0) {
+			/* if this file doesn't have events we need, try the next */
+			if (!has_event(fd))
+			{
+				close(fd);
+				continue;
+			}
+
+			success = 1;
+
+			if (acpid_debug)
+				fprintf(stderr, "%s: input layer %s "
+					"opened successfully\n", progname, filename);
+
+			/* add a connection to the list */
+			c.fd = fd;
+			c.process = process_input;
+			add_connection(&c);
+		}
+	}
+
+	if (!success)
+		fprintf(stderr, "%s: cannot open input layer\n", progname);
+
+	globfree(&globbuf);
+}
diff -ruN acpid-1.0.10/input_layer.h acpid-1.0.10-netlink2/input_layer.h
--- acpid-1.0.10/input_layer.h	1970-01-01 01:00:00.000000000 +0100
+++ acpid-1.0.10-netlink2/input_layer.h	2009-04-29 16:37:13.000000000 +0200
@@ -0,0 +1,32 @@
+/*
+ *  input_layer.h - Kernel ACPI Event Input Layer Interface
+ *
+ *  Handles the details of getting kernel ACPI events from the input
+ *  layer (/dev/input/event*).
+ *
+ *  Copyright (C) 2008, Ted Felix (www.tedfelix.com)
+ *
+ *  This program 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 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program 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 this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *
+ *  (tabs at 4)
+ */
+
+#ifndef INPUT_LAYER_H__
+#define INPUT_LAYER_H__
+
+/* Open each of the appropriate /dev/input/event* files for input. */
+extern void open_input(void);
+
+#endif /* INPUT_LAYER_H__ */
diff -ruN acpid-1.0.10/libnetlink.c acpid-1.0.10-netlink2/libnetlink.c
--- acpid-1.0.10/libnetlink.c	1970-01-01 01:00:00.000000000 +0100
+++ acpid-1.0.10-netlink2/libnetlink.c	2009-04-29 16:37:13.000000000 +0200
@@ -0,0 +1,593 @@
+/*
+ * libnetlink.c	RTnetlink service routines.
+ *
+ *		This program 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
+ *		2 of the License, or (at your option) any later version.
+ *
+ * Authors:	Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
+ *
+ * Modified by Ted Felix (www.tedfelix.com) to fix warnings.
+ *
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <syslog.h>
+#include <fcntl.h>
+#include <net/if_arp.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <string.h>
+#include <errno.h>
+#include <time.h>
+#include <sys/uio.h>
+
+#include "libnetlink.h"
+
+void rtnl_close(struct rtnl_handle *rth)
+{
+	if (rth->fd >= 0) {
+		close(rth->fd);
+		rth->fd = -1;
+	}
+}
+
+int rtnl_open_byproto(struct rtnl_handle *rth, unsigned subscriptions,
+		      int protocol)
+{
+	socklen_t addr_len;
+	int sndbuf = 32768;
+	int rcvbuf = 32768;
+
+	memset(rth, 0, sizeof(rth));
+
+	rth->fd = socket(AF_NETLINK, SOCK_RAW, protocol);
+	if (rth->fd < 0) {
+		perror("Cannot open netlink socket");
+		return -1;
+	}
+
+	if (setsockopt(rth->fd,SOL_SOCKET,SO_SNDBUF,&sndbuf,sizeof(sndbuf)) < 0) {
+		perror("SO_SNDBUF");
+		return -1;
+	}
+
+	if (setsockopt(rth->fd,SOL_SOCKET,SO_RCVBUF,&rcvbuf,sizeof(rcvbuf)) < 0) {
+		perror("SO_RCVBUF");
+		return -1;
+	}
+
+	memset(&rth->local, 0, sizeof(rth->local));
+	rth->local.nl_family = AF_NETLINK;
+	rth->local.nl_groups = subscriptions;
+
+	if (bind(rth->fd, (struct sockaddr*)&rth->local, sizeof(rth->local)) < 0) {
+		perror("Cannot bind netlink socket");
+		return -1;
+	}
+	addr_len = sizeof(rth->local);
+	if (getsockname(rth->fd, (struct sockaddr*)&rth->local, &addr_len) < 0) {
+		perror("Cannot getsockname");
+		return -1;
+	}
+	if (addr_len != sizeof(rth->local)) {
+		fprintf(stderr, "Wrong address length %d\n", addr_len);
+		return -1;
+	}
+	if (rth->local.nl_family != AF_NETLINK) {
+		fprintf(stderr, "Wrong address family %d\n", rth->local.nl_family);
+		return -1;
+	}
+	rth->seq = time(NULL);
+	return 0;
+}
+
+int rtnl_open(struct rtnl_handle *rth, unsigned subscriptions)
+{
+	return rtnl_open_byproto(rth, subscriptions, NETLINK_ROUTE);
+}
+
+int rtnl_wilddump_request(struct rtnl_handle *rth, int family, int type)
+{
+	struct {
+		struct nlmsghdr nlh;
+		struct rtgenmsg g;
+	} req;
+	struct sockaddr_nl nladdr;
+
+	memset(&nladdr, 0, sizeof(nladdr));
+	nladdr.nl_family = AF_NETLINK;
+
+	memset(&req, 0, sizeof(req));
+	req.nlh.nlmsg_len = sizeof(req);
+	req.nlh.nlmsg_type = type;
+	req.nlh.nlmsg_flags = NLM_F_ROOT|NLM_F_MATCH|NLM_F_REQUEST;
+	req.nlh.nlmsg_pid = 0;
+	req.nlh.nlmsg_seq = rth->dump = ++rth->seq;
+	req.g.rtgen_family = family;
+
+	return sendto(rth->fd, (void*)&req, sizeof(req), 0,
+		      (struct sockaddr*)&nladdr, sizeof(nladdr));
+}
+
+int rtnl_send(struct rtnl_handle *rth, const char *buf, int len)
+{
+	struct sockaddr_nl nladdr;
+
+	memset(&nladdr, 0, sizeof(nladdr));
+	nladdr.nl_family = AF_NETLINK;
+
+	return sendto(rth->fd, buf, len, 0, (struct sockaddr*)&nladdr, sizeof(nladdr));
+}
+
+int rtnl_dump_request(struct rtnl_handle *rth, int type, void *req, int len)
+{
+	struct nlmsghdr nlh;
+	struct sockaddr_nl nladdr;
+	struct iovec iov[2] = {
+		{ .iov_base = &nlh, .iov_len = sizeof(nlh) },
+		{ .iov_base = req, .iov_len = len }
+	};
+	struct msghdr msg = {
+		.msg_name = &nladdr,
+		.msg_namelen = 	sizeof(nladdr),
+		.msg_iov = iov,
+		.msg_iovlen = 2,
+	};
+
+	memset(&nladdr, 0, sizeof(nladdr));
+	nladdr.nl_family = AF_NETLINK;
+
+	nlh.nlmsg_len = NLMSG_LENGTH(len);
+	nlh.nlmsg_type = type;
+	nlh.nlmsg_flags = NLM_F_ROOT|NLM_F_MATCH|NLM_F_REQUEST;
+	nlh.nlmsg_pid = 0;
+	nlh.nlmsg_seq = rth->dump = ++rth->seq;
+
+	return sendmsg(rth->fd, &msg, 0);
+}
+
+int rtnl_dump_filter(struct rtnl_handle *rth,
+		     rtnl_filter_t filter,
+		     void *arg1,
+		     rtnl_filter_t junk,
+		     void *arg2)
+{
+	struct sockaddr_nl nladdr;
+	struct iovec iov;
+	struct msghdr msg = {
+		.msg_name = &nladdr,
+		.msg_namelen = sizeof(nladdr),
+		.msg_iov = &iov,
+		.msg_iovlen = 1,
+	};
+	char buf[16384];
+
+	iov.iov_base = buf;
+	while (1) {
+		int status;
+		struct nlmsghdr *h;
+
+		iov.iov_len = sizeof(buf);
+		status = recvmsg(rth->fd, &msg, 0);
+
+		if (status < 0) {
+			if (errno == EINTR)
+				continue;
+			perror("OVERRUN");
+			continue;
+		}
+
+		if (status == 0) {
+			fprintf(stderr, "EOF on netlink\n");
+			return -1;
+		}
+
+		h = (struct nlmsghdr*)buf;
+		while (NLMSG_OK(h, (unsigned)status)) {
+			int err;
+
+			if (nladdr.nl_pid != 0 ||
+			    h->nlmsg_pid != rth->local.nl_pid ||
+			    h->nlmsg_seq != rth->dump) {
+				if (junk) {
+					err = junk(&nladdr, h, arg2);
+					if (err < 0)
+						return err;
+				}
+				goto skip_it;
+			}
+
+			if (h->nlmsg_type == NLMSG_DONE)
+				return 0;
+			if (h->nlmsg_type == NLMSG_ERROR) {
+				struct nlmsgerr *msgerr = (struct nlmsgerr*)NLMSG_DATA(h);
+				if (h->nlmsg_len < NLMSG_LENGTH(sizeof(struct nlmsgerr))) {
+					fprintf(stderr, "ERROR truncated\n");
+				} else {
+					errno = -msgerr->error;
+					perror("RTNETLINK answers");
+				}
+				return -1;
+			}
+			err = filter(&nladdr, h, arg1);
+			if (err < 0)
+				return err;
+
+skip_it:
+			h = NLMSG_NEXT(h, status);
+		}
+		if (msg.msg_flags & MSG_TRUNC) {
+			fprintf(stderr, "Message truncated\n");
+			continue;
+		}
+		if (status) {
+			fprintf(stderr, "!!!Remnant of size %d\n", status);
+			exit(1);
+		}
+	}
+}
+
+int rtnl_talk(struct rtnl_handle *rtnl, struct nlmsghdr *n, pid_t peer,
+	      unsigned groups, struct nlmsghdr *answer,
+	      rtnl_filter_t junk,
+	      void *jarg)
+{
+	int status;
+	unsigned seq;
+	struct nlmsghdr *h;
+	struct sockaddr_nl nladdr;
+	struct iovec iov = {
+		.iov_base = (void*) n,
+		.iov_len = n->nlmsg_len
+	};
+	struct msghdr msg = {
+		.msg_name = &nladdr,
+		.msg_namelen = sizeof(nladdr),
+		.msg_iov = &iov,
+		.msg_iovlen = 1,
+	};
+	char   buf[16384];
+
+	memset(&nladdr, 0, sizeof(nladdr));
+	nladdr.nl_family = AF_NETLINK;
+	nladdr.nl_pid = peer;
+	nladdr.nl_groups = groups;
+
+	n->nlmsg_seq = seq = ++rtnl->seq;
+
+	if (answer == NULL)
+		n->nlmsg_flags |= NLM_F_ACK;
+
+	status = sendmsg(rtnl->fd, &msg, 0);
+
+	if (status < 0) {
+		perror("Cannot talk to rtnetlink");
+		return -1;
+	}
+
+	memset(buf,0,sizeof(buf));
+
+	iov.iov_base = buf;
+
+	while (1) {
+		iov.iov_len = sizeof(buf);
+		status = recvmsg(rtnl->fd, &msg, 0);
+
+		if (status < 0) {
+			if (errno == EINTR)
+				continue;
+			perror("OVERRUN");
+			continue;
+		}
+		if (status == 0) {
+			fprintf(stderr, "EOF on netlink\n");
+			return -1;
+		}
+		if (msg.msg_namelen != sizeof(nladdr)) {
+			fprintf(stderr, "sender address length == %d\n", msg.msg_namelen);
+			exit(1);
+		}
+		for (h = (struct nlmsghdr*)buf; (unsigned)status >= sizeof(*h); ) {
+			int err;
+			int len = h->nlmsg_len;
+			int l = len - sizeof(*h);
+
+			if (l<0 || len>status) {
+				if (msg.msg_flags & MSG_TRUNC) {
+					fprintf(stderr, "Truncated message\n");
+					return -1;
+				}
+				fprintf(stderr, "!!!malformed message: len=%d\n", len);
+				exit(1);
+			}
+
+			if (nladdr.nl_pid != (unsigned)peer ||
+			    h->nlmsg_pid != rtnl->local.nl_pid ||
+			    h->nlmsg_seq != seq) {
+				if (junk) {
+					err = junk(&nladdr, h, jarg);
+					if (err < 0)
+						return err;
+				}
+				/* Don't forget to skip that message. */
+				status -= NLMSG_ALIGN(len);
+				h = (struct nlmsghdr*)((char*)h + NLMSG_ALIGN(len));
+				continue;
+			}
+
+			if (h->nlmsg_type == NLMSG_ERROR) {
+				struct nlmsgerr *msgerr = (struct nlmsgerr*)NLMSG_DATA(h);
+				if ((unsigned)l < sizeof(struct nlmsgerr)) {
+					fprintf(stderr, "ERROR truncated\n");
+				} else {
+					errno = -msgerr->error;
+					if (errno == 0) {
+						if (answer)
+							memcpy(answer, h, h->nlmsg_len);
+						return 0;
+					}
+					perror("RTNETLINK1 answers");
+				}
+				return -1;
+			}
+			if (answer) {
+				memcpy(answer, h, h->nlmsg_len);
+				return 0;
+			}
+
+			fprintf(stderr, "Unexpected reply!!!\n");
+
+			status -= NLMSG_ALIGN(len);
+			h = (struct nlmsghdr*)((char*)h + NLMSG_ALIGN(len));
+		}
+		if (msg.msg_flags & MSG_TRUNC) {
+			fprintf(stderr, "Message truncated\n");
+			continue;
+		}
+		if (status) {
+			fprintf(stderr, "!!!Remnant of size %d\n", status);
+			exit(1);
+		}
+	}
+}
+
+int rtnl_listen(struct rtnl_handle *rtnl,
+		rtnl_filter_t handler,
+		void *jarg)
+{
+	int status;
+	struct nlmsghdr *h;
+	struct sockaddr_nl nladdr;
+	struct iovec iov;
+	struct msghdr msg = {
+		.msg_name = &nladdr,
+		.msg_namelen = sizeof(nladdr),
+		.msg_iov = &iov,
+		.msg_iovlen = 1,
+	};
+	char   buf[8192];
+
+	memset(&nladdr, 0, sizeof(nladdr));
+	nladdr.nl_family = AF_NETLINK;
+	nladdr.nl_pid = 0;
+	nladdr.nl_groups = 0;
+
+	iov.iov_base = buf;
+	while (1) {
+		iov.iov_len = sizeof(buf);
+		status = recvmsg(rtnl->fd, &msg, 0);
+
+		if (status < 0) {
+			if (errno == EINTR)
+				continue;
+			perror("OVERRUN");
+			continue;
+		}
+		if (status == 0) {
+			fprintf(stderr, "EOF on netlink\n");
+			return -1;
+		}
+		if (msg.msg_namelen != sizeof(nladdr)) {
+			fprintf(stderr, "Sender address length == %d\n", msg.msg_namelen);
+			exit(1);
+		}
+		for (h = (struct nlmsghdr*)buf; (unsigned)status >= sizeof(*h); ) {
+			int err;
+			int len = h->nlmsg_len;
+			int l = len - sizeof(*h);
+
+			if (l<0 || len>status) {
+				if (msg.msg_flags & MSG_TRUNC) {
+					fprintf(stderr, "Truncated message\n");
+					return -1;
+				}
+				fprintf(stderr, "!!!malformed message: len=%d\n", len);
+				exit(1);
+			}
+
+			err = handler(&nladdr, h, jarg);
+			if (err < 0)
+				return err;
+
+			status -= NLMSG_ALIGN(len);
+			h = (struct nlmsghdr*)((char*)h + NLMSG_ALIGN(len));
+		}
+		if (msg.msg_flags & MSG_TRUNC) {
+			fprintf(stderr, "Message truncated\n");
+			continue;
+		}
+		if (status) {
+			fprintf(stderr, "!!!Remnant of size %d\n", status);
+			exit(1);
+		}
+	}
+}
+
+int rtnl_from_file(FILE *rtnl, rtnl_filter_t handler,
+		   void *jarg)
+{
+	int status;
+	struct sockaddr_nl nladdr;
+	char   buf[8192];
+	struct nlmsghdr *h = (void*)buf;
+
+	memset(&nladdr, 0, sizeof(nladdr));
+	nladdr.nl_family = AF_NETLINK;
+	nladdr.nl_pid = 0;
+	nladdr.nl_groups = 0;
+
+	while (1) {
+		int err, len, type;
+		int l;
+
+		status = fread(&buf, 1, sizeof(*h), rtnl);
+
+		if (status < 0) {
+			if (errno == EINTR)
+				continue;
+			perror("rtnl_from_file: fread");
+			return -1;
+		}
+		if (status == 0)
+			return 0;
+
+		len = h->nlmsg_len;
+		type= h->nlmsg_type;
+		l = len - sizeof(*h);
+
+		if (l<0 || (unsigned)len>sizeof(buf)) {
+			fprintf(stderr, "!!!malformed message: len=%d @%lu\n",
+				len, ftell(rtnl));
+			return -1;
+		}
+
+		status = fread(NLMSG_DATA(h), 1, NLMSG_ALIGN(l), rtnl);
+
+		if (status < 0) {
+			perror("rtnl_from_file: fread");
+			return -1;
+		}
+		if (status < l) {
+			fprintf(stderr, "rtnl-from_file: truncated message\n");
+			return -1;
+		}
+
+		err = handler(&nladdr, h, jarg);
+		if (err < 0)
+			return err;
+	}
+}
+
+int addattr32(struct nlmsghdr *n, int maxlen, int type, __u32 data)
+{
+	int len = RTA_LENGTH(4);
+	struct rtattr *rta;
+	if ((int)NLMSG_ALIGN(n->nlmsg_len) + len > maxlen) {
+		fprintf(stderr,"addattr32: Error! max allowed bound %d exceeded\n",maxlen);
+		return -1;
+	}
+	rta = NLMSG_TAIL(n);
+	rta->rta_type = type;
+	rta->rta_len = len;
+	memcpy(RTA_DATA(rta), &data, 4);
+	n->nlmsg_len = NLMSG_ALIGN(n->nlmsg_len) + len;
+	return 0;
+}
+
+int addattr_l(struct nlmsghdr *n, int maxlen, int type, const void *data,
+	      int alen)
+{
+	int len = RTA_LENGTH(alen);
+	struct rtattr *rta;
+
+	if ((int)NLMSG_ALIGN(n->nlmsg_len) + RTA_ALIGN(len) > maxlen) {
+		fprintf(stderr, "addattr_l ERROR: message exceeded bound of %d\n",maxlen);
+		return -1;
+	}
+	rta = NLMSG_TAIL(n);
+	rta->rta_type = type;
+	rta->rta_len = len;
+	memcpy(RTA_DATA(rta), data, alen);
+	n->nlmsg_len = NLMSG_ALIGN(n->nlmsg_len) + RTA_ALIGN(len);
+	return 0;
+}
+
+int addraw_l(struct nlmsghdr *n, int maxlen, const void *data, int len)
+{
+	if ((int)NLMSG_ALIGN(n->nlmsg_len) + NLMSG_ALIGN(len) > maxlen) {
+		fprintf(stderr, "addraw_l ERROR: message exceeded bound of %d\n",maxlen);
+		return -1;
+	}
+
+	memcpy(NLMSG_TAIL(n), data, len);
+	memset((void *) NLMSG_TAIL(n) + len, 0, NLMSG_ALIGN(len) - len);
+	n->nlmsg_len = NLMSG_ALIGN(n->nlmsg_len) + NLMSG_ALIGN(len);
+	return 0;
+}
+
+int rta_addattr32(struct rtattr *rta, int maxlen, int type, __u32 data)
+{
+	int len = RTA_LENGTH(4);
+	struct rtattr *subrta;
+
+	if (RTA_ALIGN(rta->rta_len) + len > maxlen) {
+		fprintf(stderr,"rta_addattr32: Error! max allowed bound %d exceeded\n",maxlen);
+		return -1;
+	}
+	subrta = (struct rtattr*)(((char*)rta) + RTA_ALIGN(rta->rta_len));
+	subrta->rta_type = type;
+	subrta->rta_len = len;
+	memcpy(RTA_DATA(subrta), &data, 4);
+	rta->rta_len = NLMSG_ALIGN(rta->rta_len) + len;
+	return 0;
+}
+
+int rta_addattr_l(struct rtattr *rta, int maxlen, int type,
+		  const void *data, int alen)
+{
+	struct rtattr *subrta;
+	int len = RTA_LENGTH(alen);
+
+	if (RTA_ALIGN(rta->rta_len) + RTA_ALIGN(len) > maxlen) {
+		fprintf(stderr,"rta_addattr_l: Error! max allowed bound %d exceeded\n",maxlen);
+		return -1;
+	}
+	subrta = (struct rtattr*)(((char*)rta) + RTA_ALIGN(rta->rta_len));
+	subrta->rta_type = type;
+	subrta->rta_len = len;
+	memcpy(RTA_DATA(subrta), data, alen);
+	rta->rta_len = NLMSG_ALIGN(rta->rta_len) + RTA_ALIGN(len);
+	return 0;
+}
+
+int parse_rtattr(struct rtattr *tb[], int max, struct rtattr *rta, int len)
+{
+	memset(tb, 0, sizeof(struct rtattr *) * (max + 1));
+	while (RTA_OK(rta, len)) {
+		if (rta->rta_type <= max)
+			tb[rta->rta_type] = rta;
+		rta = RTA_NEXT(rta,len);
+	}
+	if (len)
+		fprintf(stderr, "!!!Deficit %d, rta_len=%d\n", len, rta->rta_len);
+	return 0;
+}
+
+int parse_rtattr_byindex(struct rtattr *tb[], int max, struct rtattr *rta, int len)
+{
+	int i = 0;
+
+	memset(tb, 0, sizeof(struct rtattr *) * max);
+	while (RTA_OK(rta, len)) {
+		if (rta->rta_type <= max && i < max)
+			tb[i++] = rta;
+		rta = RTA_NEXT(rta,len);
+	}
+	if (len)
+		fprintf(stderr, "!!!Deficit %d, rta_len=%d\n", len, rta->rta_len);
+	return i;
+}
diff -ruN acpid-1.0.10/libnetlink.h acpid-1.0.10-netlink2/libnetlink.h
--- acpid-1.0.10/libnetlink.h	1970-01-01 01:00:00.000000000 +0100
+++ acpid-1.0.10-netlink2/libnetlink.h	2009-04-29 16:37:13.000000000 +0200
@@ -0,0 +1,91 @@
+#ifndef __LIBNETLINK_H__
+#define __LIBNETLINK_H__ 1
+
+#include <asm/types.h>
+// needed by netlink.h, should be in there
+#include <arpa/inet.h>
+#include <linux/netlink.h>
+#include <linux/rtnetlink.h>
+
+struct rtnl_handle
+{
+	int			fd;
+	struct sockaddr_nl	local;
+	struct sockaddr_nl	peer;
+	__u32			seq;
+	__u32			dump;
+};
+
+extern int rtnl_open(struct rtnl_handle *rth, unsigned subscriptions);
+extern int rtnl_open_byproto(struct rtnl_handle *rth, unsigned subscriptions, int protocol);
+extern void rtnl_close(struct rtnl_handle *rth);
+extern int rtnl_wilddump_request(struct rtnl_handle *rth, int fam, int type);
+extern int rtnl_dump_request(struct rtnl_handle *rth, int type, void *req, int len);
+
+typedef int (*rtnl_filter_t)(const struct sockaddr_nl *,
+			     struct nlmsghdr *n, void *);
+extern int rtnl_dump_filter(struct rtnl_handle *rth, rtnl_filter_t filter,
+			    void *arg1,
+			    rtnl_filter_t junk,
+			    void *arg2);
+extern int rtnl_talk(struct rtnl_handle *rtnl, struct nlmsghdr *n, pid_t peer,
+		     unsigned groups, struct nlmsghdr *answer,
+		     rtnl_filter_t junk,
+		     void *jarg);
+extern int rtnl_send(struct rtnl_handle *rth, const char *buf, int);
+
+
+extern int addattr32(struct nlmsghdr *n, int maxlen, int type, __u32 data);
+extern int addattr_l(struct nlmsghdr *n, int maxlen, int type, const void *data, int alen);
+extern int addraw_l(struct nlmsghdr *n, int maxlen, const void *data, int len);
+extern int rta_addattr32(struct rtattr *rta, int maxlen, int type, __u32 data);
+extern int rta_addattr_l(struct rtattr *rta, int maxlen, int type, const void *data, int alen);
+
+extern int parse_rtattr(struct rtattr *tb[], int max, struct rtattr *rta, int len);
+extern int parse_rtattr_byindex(struct rtattr *tb[], int max, struct rtattr *rta, int len);
+
+#define parse_rtattr_nested(tb, max, rta) \
+	(parse_rtattr((tb), (max), RTA_DATA(rta), RTA_PAYLOAD(rta)))
+
+extern int rtnl_listen(struct rtnl_handle *, rtnl_filter_t handler,
+		       void *jarg);
+extern int rtnl_from_file(FILE *, rtnl_filter_t handler,
+		       void *jarg);
+
+#define NLMSG_TAIL(nmsg) \
+	((struct rtattr *) (((void *) (nmsg)) + NLMSG_ALIGN((nmsg)->nlmsg_len)))
+
+#ifndef IFA_RTA
+#define IFA_RTA(r) \
+	((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifaddrmsg))))
+#endif
+#ifndef IFA_PAYLOAD
+#define IFA_PAYLOAD(n)	NLMSG_PAYLOAD(n,sizeof(struct ifaddrmsg))
+#endif
+
+#ifndef IFLA_RTA
+#define IFLA_RTA(r) \
+	((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifinfomsg))))
+#endif
+#ifndef IFLA_PAYLOAD
+#define IFLA_PAYLOAD(n)	NLMSG_PAYLOAD(n,sizeof(struct ifinfomsg))
+#endif
+
+#ifndef NDA_RTA
+#define NDA_RTA(r) \
+	((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ndmsg))))
+#endif
+#ifndef NDA_PAYLOAD
+#define NDA_PAYLOAD(n)	NLMSG_PAYLOAD(n,sizeof(struct ndmsg))
+#endif
+
+#ifndef NDTA_RTA
+#define NDTA_RTA(r) \
+	((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ndtmsg))))
+#endif
+#ifndef NDTA_PAYLOAD
+#define NDTA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ndtmsg))
+#endif
+
+#endif /* __LIBNETLINK_H__ */
+
diff -ruN acpid-1.0.10/Makefile acpid-1.0.10-netlink2/Makefile
--- acpid-1.0.10/Makefile	2009-04-28 09:23:21.000000000 +0200
+++ acpid-1.0.10-netlink2/Makefile	2009-05-03 02:04:55.000000000 +0200
@@ -12,7 +12,8 @@
 BIN_PROGS = acpi_listen
 PROGS = $(SBIN_PROGS) $(BIN_PROGS)
 
-acpid_SRCS = acpid.c event.c ud_socket.c
+acpid_SRCS = acpid.c acpi_ids.c connection_list.c event.c input_layer.c \
+    libnetlink.c netlink.c proc.c sock.c ud_socket.c
 acpid_OBJS = $(acpid_SRCS:.c=.o)
 
 acpi_listen_SRCS = acpi_listen.c ud_socket.c
diff -ruN acpid-1.0.10/netlink.c acpid-1.0.10-netlink2/netlink.c
--- acpid-1.0.10/netlink.c	1970-01-01 01:00:00.000000000 +0100
+++ acpid-1.0.10-netlink2/netlink.c	2009-04-29 16:37:13.000000000 +0200
@@ -0,0 +1,239 @@
+/*
+ *  netlink.c - Kernel ACPI Event Netlink Interface
+ *
+ *  Handles the details of getting kernel ACPI events from netlink.
+ *
+ *  Inspired by (and in some cases blatantly lifted from) Zhang Rui's
+ *  acpi_genl and Alexey Kuznetsov's libnetlink.  Thanks also to Yi Yang
+ *  at intel.
+ *
+ *  Copyright (C) 2008, Ted Felix (www.tedfelix.com)
+ *
+ *  This program 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 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program 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 this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *
+ *  (tabs at 4)
+ */
+
+/* system */
+#include <unistd.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <errno.h>
+
+/* local */
+#include "acpid.h"
+#include "event.h"
+
+#include "libnetlink.h"
+#include "genetlink.h"
+#include "acpi_genetlink.h"
+
+#include "acpi_ids.h"
+#include "connection_list.h"
+
+static void
+format_netlink(struct nlmsghdr *msg)
+{
+	struct rtattr *tb[ACPI_GENL_ATTR_MAX + 1];
+	struct genlmsghdr *ghdr = NLMSG_DATA(msg);
+	int len;
+	struct rtattr *attrs;
+	
+	len = msg->nlmsg_len;
+	
+	/* if this message doesn't have the proper family ID, drop it */
+	if (msg->nlmsg_type != acpi_ids_getfamily()) {
+		if (logevents) {
+			acpid_log(LOG_INFO, "wrong netlink family ID.\n");
+		}
+		return;
+	}
+
+	len -= NLMSG_LENGTH(GENL_HDRLEN);
+
+	if (len < 0) {
+		acpid_log(LOG_WARNING,
+			"wrong netlink controller message len: %d\n", len);
+		return;
+	}
+
+	attrs = (struct rtattr *)((char *)ghdr + GENL_HDRLEN);
+	/* parse the attributes in this message */
+	parse_rtattr(tb, ACPI_GENL_ATTR_MAX, attrs, len);
+
+	/* if there's an ACPI event attribute... */
+	if (tb[ACPI_GENL_ATTR_EVENT]) {
+		/* get the actual event struct */
+		struct acpi_genl_event *event =
+				RTA_DATA(tb[ACPI_GENL_ATTR_EVENT]);
+		char buf[64];
+
+		/* format it */
+		snprintf(buf, sizeof(buf), "%s %s %08x %08x",
+			event->device_class, event->bus_id, event->type, event->data);
+
+		/* if we're locked, don't process the event */
+		if (locked()) {
+			if (logevents) {
+				acpid_log(LOG_INFO,
+					"lockfile present, not processing "
+					"netlink event \"%s\"\n", buf);
+			}
+			return;
+		}
+
+		if (logevents)
+			acpid_log(LOG_INFO,
+				"received netlink event \"%s\"\n", buf);
+
+		/* send the event off to the handler */
+		acpid_handle_event(buf);
+
+		if (logevents)
+			acpid_log(LOG_INFO,
+				"completed netlink event \"%s\"\n", buf);
+	}
+}
+
+/* (based on rtnl_listen() in libnetlink.c) */
+void
+process_netlink(int fd)
+{
+	int status;
+	struct nlmsghdr *h;
+	/* the address for recvmsg() */
+	struct sockaddr_nl nladdr;
+	/* the io vector for recvmsg() */
+	struct iovec iov;
+	/* recvmsg() parameters */
+	struct msghdr msg = {
+		.msg_name = &nladdr,
+		.msg_namelen = sizeof(nladdr),
+		.msg_iov = &iov,
+		.msg_iovlen = 1,
+	};
+	/* buffer for the incoming data */
+	char buf[8192];
+	static int nerrs;
+
+	/* set up the netlink address */
+	memset(&nladdr, 0, sizeof(nladdr));
+	nladdr.nl_family = AF_NETLINK;
+	nladdr.nl_pid = 0;
+	nladdr.nl_groups = 0;
+
+	/* set up the I/O vector */
+	iov.iov_base = buf;
+	iov.iov_len = sizeof(buf);
+	
+	/* read the data into the buffer */
+	status = recvmsg(fd, &msg, 0);
+
+	/* if there was a problem, print a message and keep trying */
+	if (status < 0) {
+		/* if we were interrupted by a signal, bail */
+		if (errno == EINTR)
+			return;
+		
+		acpid_log(LOG_ERR, "netlink read error: %s (%d)\n",
+			strerror(errno), errno);
+		if (++nerrs >= ACPID_MAX_ERRS) {
+			acpid_log(LOG_ERR,
+				"too many errors reading via "
+				"netlink - aborting\n");
+			exit(EXIT_FAILURE);
+		}
+		return;
+	}
+	/* if an orderly shutdown has occurred, we're done */
+	if (status == 0) {
+		acpid_log(LOG_WARNING, "netlink connection closed\n");
+		exit(EXIT_FAILURE);
+	}
+	/* check to see if the address length has changed */
+	if (msg.msg_namelen != sizeof(nladdr)) {
+		acpid_log(LOG_WARNING, "netlink unexpected length: "
+			"%d   expected: %d\n", msg.msg_namelen, sizeof(nladdr));
+		return;
+	}
+	
+	/* for each message received */
+	for (h = (struct nlmsghdr*)buf; (unsigned)status >= sizeof(*h); ) {
+		int len = h->nlmsg_len;
+		int l = len - sizeof(*h);
+
+		if (l < 0  ||  len > status) {
+			if (msg.msg_flags & MSG_TRUNC) {
+				acpid_log(LOG_WARNING, "netlink msg truncated (1)\n");
+				return;
+			}
+			acpid_log(LOG_WARNING,
+				"malformed netlink msg, length %d\n", len);
+			return;
+		}
+
+		/* format the message */
+		format_netlink(h);
+
+		status -= NLMSG_ALIGN(len);
+		h = (struct nlmsghdr*)((char*)h + NLMSG_ALIGN(len));
+	}
+	if (msg.msg_flags & MSG_TRUNC) {
+		acpid_log(LOG_WARNING, "netlink msg truncated (2)\n");
+		return;
+	}
+	if (status) {
+		acpid_log(LOG_WARNING, "netlink remnant of size %d\n", status);
+		return;
+	}
+
+	return;
+}
+
+/* convert the netlink multicast group number into a bit map */
+/* (e.g. 4 => 16, 5 => 32) */
+static __u32
+nl_mgrp(__u32 group)
+{
+	if (group > 31) {
+		fprintf(stderr, "%s: unexpected group number %d\n",
+			progname, group);
+		return 0;
+	}
+	return group ? (1 << (group - 1)) : 0;
+}
+
+void open_netlink(void)
+{
+	struct rtnl_handle rth;
+	struct connection c;
+
+	/* open the appropriate netlink socket for input */
+	if (rtnl_open_byproto(
+		&rth, nl_mgrp(acpi_ids_getgroup()), NETLINK_GENERIC) < 0) {
+		fprintf(stderr, "%s: cannot open generic netlink socket\n",
+			progname);
+		return;
+	}
+
+	if (acpid_debug)
+		fprintf(stderr, "%s: netlink opened successfully\n", progname);
+
+	/* add a connection to the list */
+	c.fd = rth.fd;
+	c.process = process_netlink;
+	add_connection(&c);
+}
diff -ruN acpid-1.0.10/netlink.h acpid-1.0.10-netlink2/netlink.h
--- acpid-1.0.10/netlink.h	1970-01-01 01:00:00.000000000 +0100
+++ acpid-1.0.10-netlink2/netlink.h	2009-04-29 16:37:13.000000000 +0200
@@ -0,0 +1,31 @@
+/*
+ *  netlink.h - Kernel ACPI Event Netlink Interface
+ *
+ *  Handles the details of getting kernel ACPI events from netlink.
+ *
+ *  Copyright (C) 2008, Ted Felix (www.tedfelix.com)
+ *
+ *  This program 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 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program 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 this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *
+ *  (tabs at 4)
+ */
+
+#ifndef NETLINK_H__
+#define NETLINK_H__
+
+/* open the netlink connection */
+extern void open_netlink(void);
+
+#endif /* NETLINK_H__ */
diff -ruN acpid-1.0.10/proc.c acpid-1.0.10-netlink2/proc.c
--- acpid-1.0.10/proc.c	1970-01-01 01:00:00.000000000 +0100
+++ acpid-1.0.10-netlink2/proc.c	2009-04-29 16:37:13.000000000 +0200
@@ -0,0 +1,207 @@
+/*
+ *  proc.c - ACPI daemon proc filesystem interface
+ *
+ *  Portions Copyright (C) 2000 Andrew Henroid
+ *  Portions Copyright (C) 2001 Sun Microsystems
+ *  Portions Copyright (C) 2004 Tim Hockin (thockin@hockin.org)
+ *
+ *  This program 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 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program 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 this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
+#include <unistd.h>
+#include <fcntl.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <errno.h>
+
+#include "acpid.h"
+#include "event.h"
+#include "connection_list.h"
+
+const char *eventfile = ACPID_EVENTFILE;
+
+static char *read_line(int fd);
+
+static void
+process_proc(int fd)
+{
+	char *event;
+
+	/* read an event */
+	event = read_line(fd);
+
+	/* if we're locked, don't process the event */
+	if (locked()) {
+		if (logevents  &&  event != NULL) {
+			acpid_log(LOG_INFO,
+				"lockfile present, not processing "
+				"event \"%s\"\n", event);
+		}
+		return;
+	}
+
+	/* handle the event */
+	if (event) {
+		if (logevents) {
+			acpid_log(LOG_INFO,
+			          "procfs received event \"%s\"\n", event);
+		}
+		acpid_handle_event(event);
+		if (logevents) {
+			acpid_log(LOG_INFO,
+				"procfs completed event \"%s\"\n", event);
+		}
+	} else if (errno == EPIPE) {
+		acpid_log(LOG_WARNING,
+			"events file connection closed\n");
+		exit(EXIT_FAILURE);
+	} else {
+		static int nerrs;
+		if (++nerrs >= ACPID_MAX_ERRS) {
+			acpid_log(LOG_ERR,
+				"too many errors reading "
+				"events file - aborting\n");
+			exit(EXIT_FAILURE);
+		}
+	}
+}
+
+int
+open_proc()
+{
+	int fd;
+	struct connection c;
+	
+	fd = open(eventfile, O_RDONLY);
+	if (fd < 0) {
+	    if (acpid_debug)
+		fprintf(stderr, "%s: can't open %s: %s\n", progname, 
+			eventfile, strerror(errno));
+		return -1;
+	}
+	fcntl(fd, F_SETFD, FD_CLOEXEC);
+
+	if (acpid_debug)
+		fprintf(stderr, "%s: proc fs opened successfully\n", progname);
+
+	/* add a connection to the list */
+	c.fd = fd;
+	c.process = process_proc;
+	add_connection(&c);
+
+	return 0;
+}
+
+/*
+ * This depends on fixes in linux ACPI after 2.4.8
+ */
+#define BUFLEN 1024
+static char *
+read_line(int fd)
+{
+	static char buf[BUFLEN];
+	int i = 0;
+	int r;
+	int searching = 1;
+
+	while (searching) {
+		memset(buf+i, 0, BUFLEN-i);
+
+		/* only go to BUFLEN-1 so there will always be a 0 at the end */
+		while (i < BUFLEN-1) {
+			r = read(fd, buf+i, 1);
+			if (r < 0 && errno != EINTR) {
+				/* we should do something with the data */
+				acpid_log(LOG_ERR, "read(): %s\n",
+					strerror(errno));
+				return NULL;
+			} else if (r == 0) {
+				/* signal this in an almost standard way */
+				errno = EPIPE;
+				return NULL;
+			} else if (r == 1) {
+				/* scan for a newline */
+				if (buf[i] == '\n') {
+					searching = 0;
+					buf[i] = '\0';
+					break;
+				}
+				i++;
+			}
+		}
+		if (i >= BUFLEN - 1)
+			break;
+	}
+
+	return buf;
+}
+
+#if 0
+/* This version leaks memory.  The above version is simpler and leak-free. */
+/* Downside is that the above version always uses 1k of RAM. */
+/*
+ * This depends on fixes in linux ACPI after 2.4.8
+ */
+#define MAX_BUFLEN	1024
+static char *
+read_line(int fd)
+{
+	static char *buf;
+	int buflen = 64;
+	int i = 0;
+	int r;
+	int searching = 1;
+
+	while (searching) {
+		/* ??? This memory is leaked since it is never freed */
+		buf = realloc(buf, buflen);
+		if (!buf) {
+			acpid_log(LOG_ERR, "malloc(%d): %s\n",
+				buflen, strerror(errno));
+			return NULL;
+		}
+		memset(buf+i, 0, buflen-i);
+
+		while (i < buflen) {
+			r = read(fd, buf+i, 1);
+			if (r < 0 && errno != EINTR) {
+				/* we should do something with the data */
+				acpid_log(LOG_ERR, "read(): %s\n",
+					strerror(errno));
+				return NULL;
+			} else if (r == 0) {
+				/* signal this in an almost standard way */
+				errno = EPIPE;
+				return NULL;
+			} else if (r == 1) {
+				/* scan for a newline */
+				if (buf[i] == '\n') {
+					searching = 0;
+					buf[i] = '\0';
+					break;
+				}
+				i++;
+			}
+		}
+		if (buflen >= MAX_BUFLEN) {
+			break;
+		} 
+		buflen *= 2;
+	}
+
+	return buf;
+}
+#endif
diff -ruN acpid-1.0.10/proc.h acpid-1.0.10-netlink2/proc.h
--- acpid-1.0.10/proc.h	1970-01-01 01:00:00.000000000 +0100
+++ acpid-1.0.10-netlink2/proc.h	2009-04-29 16:37:13.000000000 +0200
@@ -0,0 +1,30 @@
+/*
+ *  proc.h - ACPI daemon proc filesystem interface
+ *
+ *  Portions Copyright (C) 2000 Andrew Henroid
+ *  Portions Copyright (C) 2001 Sun Microsystems
+ *  Portions Copyright (C) 2004 Tim Hockin (thockin@hockin.org)
+ *
+ *  This program 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 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program 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 this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
+#ifndef PROC_H__
+#define PROC_H__
+
+extern const char *eventfile;
+
+extern int open_proc();
+
+#endif /* PROC_H__ */
diff -ruN acpid-1.0.10/README-NETLINK acpid-1.0.10-netlink2/README-NETLINK
--- acpid-1.0.10/README-NETLINK	1970-01-01 01:00:00.000000000 +0100
+++ acpid-1.0.10-netlink2/README-NETLINK	2009-05-03 02:25:12.000000000 +0200
@@ -0,0 +1,12 @@
+acpid for netlink
+
+This is Ted Felix's <http://www.tedfelix.com> branch of the acpid project 
+which includes support for netlink and the input layer.
+
+/proc/acpi/event is a deprecated kernel interface for ACPI events.  Newer
+kernels rely on netlink and the input layer to send ACPI-related events.
+This branch of acpid uses these new interfaces.
+
+Any comments or patches for this branch should be sent to Ted Felix:
+
+http://www.tedfelix.com
diff -ruN acpid-1.0.10/sock.c acpid-1.0.10-netlink2/sock.c
--- acpid-1.0.10/sock.c	1970-01-01 01:00:00.000000000 +0100
+++ acpid-1.0.10-netlink2/sock.c	2009-05-02 04:34:16.000000000 +0200
@@ -0,0 +1,118 @@
+/*
+ *  sock.c - ACPI daemon socket interface
+ *
+ *  Portions Copyright (C) 2000 Andrew Henroid
+ *  Portions Copyright (C) 2001 Sun Microsystems
+ *  Portions Copyright (C) 2004 Tim Hockin (thockin@hockin.org)
+ *
+ *  This program 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 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program 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 this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
+#include <unistd.h>
+#include <fcntl.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <errno.h>
+#include <grp.h>
+
+#include "acpid.h"
+#include "event.h"
+#include "ud_socket.h"
+#include "connection_list.h"
+
+const char *socketfile = ACPID_SOCKETFILE;
+const char *socketgroup;
+mode_t socketmode = ACPID_SOCKETMODE;
+int clientmax = ACPID_CLIENTMAX;
+
+/* the number of non-root clients that are connected */
+int non_root_clients;
+
+static void
+process_sock(int fd)
+{
+	int cli_fd;
+	struct ucred creds;
+	char buf[32];
+	static int accept_errors;
+
+	/* accept and add to our lists */
+	cli_fd = ud_accept(fd, &creds);
+	if (cli_fd < 0) {
+		acpid_log(LOG_ERR, "can't accept client: %s\n",
+			  strerror(errno));
+		accept_errors++;
+		if (accept_errors >= 5) {
+			acpid_log(LOG_ERR, "giving up\n");
+			clean_exit_with_status(EXIT_FAILURE);
+		}
+		return;
+	}
+	accept_errors = 0;
+	if (creds.uid != 0 && non_root_clients >= clientmax) {
+		close(cli_fd);
+		acpid_log(LOG_ERR,
+		    "too many non-root clients\n");
+		return;
+	}
+	if (creds.uid != 0) {
+		non_root_clients++;
+	}
+	fcntl(cli_fd, F_SETFD, FD_CLOEXEC);
+	snprintf(buf, sizeof(buf)-1, "%d[%d:%d]",
+		 creds.pid, creds.uid, creds.gid);
+	acpid_add_client(cli_fd, buf);
+}
+
+void
+open_sock()
+{
+	int fd;
+	struct connection c;
+
+	fd = ud_create_socket(socketfile);
+	if (fd < 0) {
+		fprintf(stderr, "%s: can't open socket %s: %s\n",
+			progname, socketfile, strerror(errno));
+		exit(EXIT_FAILURE);
+	}
+	fcntl(fd, F_SETFD, FD_CLOEXEC);
+	chmod(socketfile, socketmode);
+	if (socketgroup) {
+		struct group *gr;
+		struct stat buf;
+		gr = getgrnam(socketgroup);
+		if (!gr) {
+			fprintf(stderr, "%s: group %s does not exist\n",
+				progname, socketgroup);
+			exit(EXIT_FAILURE);
+		}
+		if (stat(socketfile, &buf) < 0) {
+			fprintf(stderr, "%s: can't stat %s\n",
+				progname, socketfile);
+			exit(EXIT_FAILURE);
+		}
+		if (chown(socketfile, buf.st_uid, gr->gr_gid) < 0) {
+			fprintf(stderr, "%s: chown(): %s\n",
+				progname, strerror(errno));
+			exit(EXIT_FAILURE);
+		}
+	}
+	
+	/* add a connection to the list */
+	c.fd = fd;
+	c.process = process_sock;
+	add_connection(&c);
+}
diff -ruN acpid-1.0.10/sock.h acpid-1.0.10-netlink2/sock.h
--- acpid-1.0.10/sock.h	1970-01-01 01:00:00.000000000 +0100
+++ acpid-1.0.10-netlink2/sock.h	2009-05-02 04:26:46.000000000 +0200
@@ -0,0 +1,34 @@
+/*
+ *  sock.h - ACPI daemon socket interface
+ *
+ *  Portions Copyright (C) 2000 Andrew Henroid
+ *  Portions Copyright (C) 2001 Sun Microsystems
+ *  Portions Copyright (C) 2004 Tim Hockin (thockin@hockin.org)
+ *
+ *  This program 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 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program 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 this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
+#ifndef SOCK_H__
+#define SOCK_H__
+
+extern const char *socketfile;
+extern const char *socketgroup;
+extern mode_t socketmode;
+extern int clientmax;
+extern int non_root_clients;
+
+extern void open_sock();
+
+#endif /* SOCK_H__ */
diff -ruN acpid-1.0.10/TESTPLAN acpid-1.0.10-netlink2/TESTPLAN
--- acpid-1.0.10/TESTPLAN	1970-01-01 01:00:00.000000000 +0100
+++ acpid-1.0.10-netlink2/TESTPLAN	2008-11-15 03:29:16.000000000 +0100
@@ -0,0 +1,59 @@
+acpid Test Plan
+
+Note: Run all these tests with valgrind to detect memory leaks.
+
+Normal Paths
+
+* proc fs, all events
+Start acpid against /proc/acpi/event (if it exists).
+Test each of the following events:
+1. Power Button
+2. Laptop Lid Switch
+3. Sleep Button
+4. Laptop AC Adapter
+5. Laptop Battery
+
+* input layer/netlink, all events
+Start acpid against the input layer and netlink.
+Test each of the following events:
+1. Power Button
+2. Laptop Lid Switch
+3. Sleep Button
+4. Laptop AC Adapter
+5. Laptop Battery
+
+* input layer/netlink fallback
+Start acpid with a bogus events file specified via the options.
+  acpid -e /proc/acpi/bogus
+Make sure a connection is made via the input layer and netlink.
+
+* lockfile procfs
+Start acpid against the proc fs
+Try some events and make sure they are coming through.
+Create the lockfile.
+Try some events and make sure they do not come through.
+Remove the lockfile.
+Try some events and make sure they are coming through.
+
+* lockfile netlink
+Start acpid against input layer and netlink.
+Try some events and make sure they are coming through.
+Create the lockfile.
+Try some events and make sure they do not come through.
+Remove the lockfile.
+Try some events and make sure they are coming through.
+
+Debugging Paths
+
+* event logging
+Run acpid without the -l option and make sure no events are logged to syslog.
+Run acpid with the -l option and make sure events are logged to syslog.
+
+* debug mode
+Run acpid with the -d option and note that it runs in the foreground and provides debugging info to the console.
+acpid also supports up to 4 debug levels in the event handler.  Might want to try "-dddd" and see what happens.
+
+* foreground mode
+Run acpid with the -f option and note that it runs in the foreground.
+Run acpid without the -f option and note that it runs in the background.
+