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
|
.\"
.\" Copyright (c) 1994-1996, 1998-2005, 2007-2012
.\" Todd C. Miller <Todd.Miller@courtesan.com>
.\"
.\" Permission to use, copy, modify, and distribute this software for any
.\" purpose with or without fee is hereby granted, provided that the above
.\" copyright notice and this permission notice appear in all copies.
.\"
.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\" ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
.\" Sponsored in part by the Defense Advanced Research Projects
.\" Agency (DARPA) and Air Force Research Laboratory, Air Force
.\" Materiel Command, USAF, under agreement number F39502-99-1-0512.
.\"
.Dd $Mdocdate: August 17 2012 $
.Dt SUDOERS @mansectform@
.Os
.Sh NAME
.Nm sudoers
.Nd list of which users may execute what
.Sh DESCRIPTION
The
.Em sudoers
file is composed of two types of entries: aliases
(basically variables) and user specifications (which specify who
may run what).
.Pp
When multiple entries match for a user, they are applied in order.
Where there are multiple matches, the last match is used (which is
not necessarily the most specific match).
.Pp
The
.Em sudoers
grammar will be described below in Extended Backus-Naur
Form (EBNF).
Don't despair if you are unfamiliar with EBNF; it is fairly simple,
and the definitions below are annotated.
.Ss Quick guide to EBNF
EBNF is a concise and exact way of describing the grammar of a language.
Each EBNF definition is made up of
.Em production rules .
E.g.,
.Pp
.Li symbol ::= definition | alternate1 | alternate2 ...
.Pp
Each
.Em production rule
references others and thus makes up a
grammar for the language.
EBNF also contains the following
operators, which many readers will recognize from regular
expressions.
Do not, however, confuse them with
.Dq wildcard
characters, which have different meanings.
.Bl -tag -width 4n
.It Li \&?
Means that the preceding symbol (or group of symbols) is optional.
That is, it may appear once or not at all.
.It Li *
Means that the preceding symbol (or group of symbols) may appear
zero or more times.
.It Li +
Means that the preceding symbol (or group of symbols) may appear
one or more times.
.El
.Pp
Parentheses may be used to group symbols together.
For clarity,
we will use single quotes
.Pq ''
to designate what is a verbatim character string (as opposed to a symbol name).
.Ss Aliases
There are four kinds of aliases:
.Li User_Alias ,
.Li Runas_Alias ,
.Li Host_Alias
and
.Li Cmnd_Alias .
.Bd -literal
Alias ::= 'User_Alias' User_Alias (':' User_Alias)* |
'Runas_Alias' Runas_Alias (':' Runas_Alias)* |
'Host_Alias' Host_Alias (':' Host_Alias)* |
'Cmnd_Alias' Cmnd_Alias (':' Cmnd_Alias)*
User_Alias ::= NAME '=' User_List
Runas_Alias ::= NAME '=' Runas_List
Host_Alias ::= NAME '=' Host_List
Cmnd_Alias ::= NAME '=' Cmnd_List
NAME ::= [A-Z]([A-Z][0-9]_)*
.Ed
.Pp
Each
.Em alias
definition is of the form
.Bd -literal
Alias_Type NAME = item1, item2, ...
.Ed
.Pp
where
.Em Alias_Type
is one of
.Li User_Alias ,
.Li Runas_Alias ,
.Li Host_Alias ,
or
.Li Cmnd_Alias .
A
.Li NAME
is a string of uppercase letters, numbers,
and underscore characters
.Pq Ql _ .
A
.Li NAME
.Sy must
start with an
uppercase letter.
It is possible to put several alias definitions
of the same type on a single line, joined by a colon
.Pq Ql :\& .
E.g.,
.Bd -literal
Alias_Type NAME = item1, item2, item3 : NAME = item4, item5
.Ed
.Pp
The definitions of what constitutes a valid
.Em alias
member follow.
.Bd -literal
User_List ::= User |
User ',' User_List
User ::= '!'* user name |
'!'* #uid |
'!'* %group |
'!'* %#gid |
'!'* +netgroup |
'!'* %:nonunix_group |
'!'* %:#nonunix_gid |
'!'* User_Alias
.Ed
.Pp
A
.Li User_List
is made up of one or more user names, user ids
(prefixed with
.Ql # ) ,
system group names and ids (prefixed with
.Ql %
and
.Ql %#
respectively), netgroups (prefixed with
.Ql + ) ,
non-Unix group names and IDs (prefixed with
.Ql %:
and
.Ql %:#
respectively) and
.Li User_Alias Ns No es.
Each list item may be prefixed with zero or more
.Ql \&!
operators.
An odd number of
.Ql \&!
operators negate the value of
the item; an even number just cancel each other out.
.Pp
A
.Li user name ,
.Li uid ,
.Li group ,
.Li gid ,
.Li netgroup ,
.Li nonunix_group
or
.Li nonunix_gid
may be enclosed in double quotes to avoid the
need for escaping special characters.
Alternately, special characters
may be specified in escaped hex mode, e.g.\& \ex20 for space.
When
using double quotes, any prefix characters must be included inside
the quotes.
.Pp
The actual
.Li nonunix_group
and
.Li nonunix_gid
syntax depends on
the underlying implementation.
For instance, the QAS AD backend supports the following formats:
.Bl -bullet -width 4n
.It
Group in the same domain: "%:Group Name"
.It
Group in any domain: "%:Group Name@FULLY.QUALIFIED.DOMAIN"
.It
Group SID: "%:S-1-2-34-5678901234-5678901234-5678901234-567"
.El
.Pp
Note that quotes around group names are optional.
Unquoted strings must use a backslash
.Pq Ql \e
to escape spaces and special characters.
See
.Sx Other special characters and reserved words
for a list of
characters that need to be escaped.
.Bd -literal
Runas_List ::= Runas_Member |
Runas_Member ',' Runas_List
Runas_Member ::= '!'* user name |
'!'* #uid |
'!'* %group |
'!'* %#gid |
'!'* %:nonunix_group |
'!'* %:#nonunix_gid |
'!'* +netgroup |
'!'* Runas_Alias
.Ed
.Pp
A
.Li Runas_List
is similar to a
.Li User_List
except that instead
of
.Li User_Alias Ns No es
it can contain
.Li Runas_Alias Ns No es .
Note that
user names and groups are matched as strings.
In other words, two
users (groups) with the same uid (gid) are considered to be distinct.
If you wish to match all user names with the same uid (e.g.\&
root and toor), you can use a uid instead (#0 in the example given).
.Bd -literal
Host_List ::= Host |
Host ',' Host_List
Host ::= '!'* host name |
'!'* ip_addr |
'!'* network(/netmask)? |
'!'* +netgroup |
'!'* Host_Alias
.Ed
.Pp
A
.Li Host_List
is made up of one or more host names, IP addresses,
network numbers, netgroups (prefixed with
.Ql + )
and other aliases.
Again, the value of an item may be negated with the
.Ql \&!
operator.
If you do not specify a netmask along with the network number,
.Nm sudo
will query each of the local host's network interfaces and,
if the network number corresponds to one of the hosts's network
interfaces, the corresponding netmask will be used.
The netmask
may be specified either in standard IP address notation
(e.g.\& 255.255.255.0 or ffff:ffff:ffff:ffff::),
or CIDR notation (number of bits, e.g.\& 24 or 64).
A host name may include shell-style wildcards (see the
.Sx Wildcards
section below),
but unless the
.Li host name
command on your machine returns the fully
qualified host name, you'll need to use the
.Em fqdn
option for wildcards to be useful.
Note that
.Nm sudo
only inspects actual network interfaces; this means that IP address
127.0.0.1 (localhost) will never match.
Also, the host name
.Dq localhost
will only match if that is the actual host name, which is usually
only the case for non-networked systems.
.Bd -literal
Cmnd_List ::= Cmnd |
Cmnd ',' Cmnd_List
command name ::= file name |
file name args |
file name '""'
Cmnd ::= '!'* command name |
'!'* directory |
'!'* "sudoedit" |
'!'* Cmnd_Alias
.Ed
.Pp
A
.Li Cmnd_List
is a list of one or more command names, directories, and other aliases.
A command name is a fully qualified file name which may include
shell-style wildcards (see the
.Sx Wildcards
section below).
A simple file name allows the user to run the command with any
arguments he/she wishes.
However, you may also specify command line arguments (including
wildcards).
Alternately, you can specify
.Li \&""
to indicate that the command
may only be run
.Sy without
command line arguments.
A directory is a
fully qualified path name ending in a
.Ql / .
When you specify a directory in a
.Li Cmnd_List ,
the user will be able to run any file within that directory
(but not in any sub-directories therein).
.Pp
If a
.Li Cmnd
has associated command line arguments, then the arguments
in the
.Li Cmnd
must match exactly those given by the user on the command line
(or match the wildcards if there are any).
Note that the following characters must be escaped with a
.Ql \e
if they are used in command arguments:
.Ql ,\& ,
.Ql :\& ,
.Ql =\& ,
.Ql \e .
The special command
.Dq Li sudoedit
is used to permit a user to run
.Nm sudo
with the
.Fl e
option (or as
.Nm sudoedit ) .
It may take command line arguments just as a normal command does.
.Ss Defaults
Certain configuration options may be changed from their default
values at run-time via one or more
.Li Default_Entry
lines.
These may affect all users on any host, all users on a specific host, a
specific user, a specific command, or commands being run as a specific user.
Note that per-command entries may not include command line arguments.
If you need to specify arguments, define a
.Li Cmnd_Alias
and reference
that instead.
.Bd -literal
Default_Type ::= 'Defaults' |
'Defaults' '@' Host_List |
'Defaults' ':' User_List |
'Defaults' '!' Cmnd_List |
'Defaults' '>' Runas_List
Default_Entry ::= Default_Type Parameter_List
Parameter_List ::= Parameter |
Parameter ',' Parameter_List
Parameter ::= Parameter '=' Value |
Parameter '+=' Value |
Parameter '-=' Value |
'!'* Parameter
.Ed
.Pp
Parameters may be
.Sy flags ,
.Sy integer
values,
.Sy strings ,
or
.Sy lists .
Flags are implicitly boolean and can be turned off via the
.Ql \&!
operator.
Some integer, string and list parameters may also be
used in a boolean context to disable them.
Values may be enclosed
in double quotes
.Pq \&""
when they contain multiple words.
Special characters may be escaped with a backslash
.Pq Ql \e .
.Pp
Lists have two additional assignment operators,
.Li +=
and
.Li -= .
These operators are used to add to and delete from a list respectively.
It is not an error to use the
.Li -=
operator to remove an element
that does not exist in a list.
.Pp
Defaults entries are parsed in the following order: generic, host
and user Defaults first, then runas Defaults and finally command
defaults.
.Pp
See
.Sx SUDOERS OPTIONS
for a list of supported Defaults parameters.
.Ss User Specification
.Bd -literal
User_Spec ::= User_List Host_List '=' Cmnd_Spec_List \e
(':' Host_List '=' Cmnd_Spec_List)*
Cmnd_Spec_List ::= Cmnd_Spec |
Cmnd_Spec ',' Cmnd_Spec_List
Cmnd_Spec ::= Runas_Spec? Tag_Spec* Cmnd
Runas_Spec ::= '(' Runas_List? (':' Runas_List)? ')'
Tag_Spec ::= ('NOPASSWD:' | 'PASSWD:' | 'NOEXEC:' | 'EXEC:' |
'SETENV:' | 'NOSETENV:')
.Ed
.Pp
A
.Sy user specification
determines which commands a user may run
(and as what user) on specified hosts.
By default, commands are
run as
.Sy root ,
but this can be changed on a per-command basis.
.Pp
The basic structure of a user specification is
.Dq who where = (as_whom) what .
Let's break that down into its constituent parts:
.Ss Runas_Spec
A
.Li Runas_Spec
determines the user and/or the group that a command
may be run as.
A fully-specified
.Li Runas_Spec
consists of two
.Li Runas_List Ns No s
(as defined above) separated by a colon
.Pq Ql :\&
and enclosed in a set of parentheses.
The first
.Li Runas_List
indicates
which users the command may be run as via
.Nm sudo Ns No 's
.Fl u
option.
The second defines a list of groups that can be specified via
.Nm sudo Ns No 's
.Fl g
option.
If both
.Li Runas_List Ns No s
are specified, the command may be run with any combination of users
and groups listed in their respective
.Li Runas_List Ns No s.
If only the first is specified, the command may be run as any user
in the list but no
.Fl g
option
may be specified.
If the first
.Li Runas_List
is empty but the
second is specified, the command may be run as the invoking user
with the group set to any listed in the
.Li Runas_List .
If no
.Li Runas_Spec
is specified the command may be run as
.Sy root
and
no group may be specified.
.Pp
A
.Li Runas_Spec
sets the default for the commands that follow it.
What this means is that for the entry:
.Bd -literal
dgb boulder = (operator) /bin/ls, /bin/kill, /usr/bin/lprm
.Ed
.Pp
The user
.Sy dgb
may run
.Pa /bin/ls ,
.Pa /bin/kill ,
and
.Pa /usr/bin/lprm Ns No \(em Ns but
only as
.Sy operator .
E.g.,
.Bd -literal
$ sudo -u operator /bin/ls
.Ed
.Pp
It is also possible to override a
.Li Runas_Spec
later on in an entry.
If we modify the entry like so:
.Bd -literal
dgb boulder = (operator) /bin/ls, (root) /bin/kill, /usr/bin/lprm
.Ed
.Pp
Then user
.Sy dgb
is now allowed to run
.Pa /bin/ls
as
.Sy operator ,
but
.Pa /bin/kill
and
.Pa /usr/bin/lprm
as
.Sy root .
.Pp
We can extend this to allow
.Sy dgb
to run
.Li /bin/ls
with either
the user or group set to
.Sy operator :
.Bd -literal
dgb boulder = (operator : operator) /bin/ls, (root) /bin/kill,\e
/usr/bin/lprm
.Ed
.Pp
Note that while the group portion of the
.Li Runas_Spec
permits the
user to run as command with that group, it does not force the user
to do so.
If no group is specified on the command line, the command
will run with the group listed in the target user's password database
entry.
The following would all be permitted by the sudoers entry above:
.Bd -literal
$ sudo -u operator /bin/ls
$ sudo -u operator -g operator /bin/ls
$ sudo -g operator /bin/ls
.Ed
.Pp
In the following example, user
.Sy tcm
may run commands that access
a modem device file with the dialer group.
.Bd -literal
tcm boulder = (:dialer) /usr/bin/tip, /usr/bin/cu,\e
/usr/local/bin/minicom
.Ed
.Pp
Note that in this example only the group will be set, the command
still runs as user
.Sy tcm .
E.g.\&
.Bd -literal
$ sudo -g dialer /usr/bin/cu
.Ed
.Pp
Multiple users and groups may be present in a
.Li Runas_Spec ,
in which case the user may select any combination of users and groups via the
.Fl u
and
.Fl g
options.
In this example:
.Bd -literal
alan ALL = (root, bin : operator, system) ALL
.Ed
.Pp
user
.Sy alan
may run any command as either user root or bin,
optionally setting the group to operator or system.
.Ss Tag_Spec
A command may have zero or more tags associated with it.
There are
six possible tag values:
.Li NOPASSWD ,
.Li PASSWD ,
.Li NOEXEC ,
.Li EXEC ,
.Li SETENV ,
and
.Li NOSETENV .
Once a tag is set on a
.Li Cmnd ,
subsequent
.Li Cmnd Ns No s
in the
.Li Cmnd_Spec_List ,
inherit the tag unless it is overridden by the opposite tag (in other words,
.Li PASSWD
overrides
.Li NOPASSWD
and
.Li NOEXEC
overrides
.Li EXEC ) .
.Pp
.Em NOPASSWD and PASSWD
.Pp
By default,
.Nm sudo
requires that a user authenticate him or herself
before running a command.
This behavior can be modified via the
.Li NOPASSWD
tag.
Like a
.Li Runas_Spec ,
the
.Li NOPASSWD
tag sets
a default for the commands that follow it in the
.Li Cmnd_Spec_List .
Conversely, the
.Li PASSWD
tag can be used to reverse things.
For example:
.Bd -literal
ray rushmore = NOPASSWD: /bin/kill, /bin/ls, /usr/bin/lprm
.Ed
.Pp
would allow the user
.Sy ray
to run
.Pa /bin/kill ,
.Pa /bin/ls ,
and
.Pa /usr/bin/lprm
as
.Sy root
on the machine rushmore without authenticating himself.
If we only want
.Sy ray
to be able to
run
.Pa /bin/kill
without a password the entry would be:
.Bd -literal
ray rushmore = NOPASSWD: /bin/kill, PASSWD: /bin/ls, /usr/bin/lprm
.Ed
.Pp
Note, however, that the
.Li PASSWD
tag has no effect on users who are in the group specified by the
.Em exempt_group
option.
.Pp
By default, if the
.Li NOPASSWD
tag is applied to any of the entries for a user on the current host,
he or she will be able to run
.Dq Li sudo -l
without a password.
Additionally, a user may only run
.Dq Li sudo -v
without a password if the
.Li NOPASSWD
tag is present for all a user's entries that pertain to the current host.
This behavior may be overridden via the
.Em verifypw
and
.Em listpw
options.
.Pp
.Em NOEXEC and EXEC
.Pp
If
.Nm sudo
has been compiled with
.Em noexec
support and the underlying operating system supports it, the
.Li NOEXEC
tag can be used to prevent a dynamically-linked executable from
running further commands itself.
.Pp
In the following example, user
.Sy aaron
may run
.Pa /usr/bin/more
and
.Pa /usr/bin/vi
but shell escapes will be disabled.
.Bd -literal
aaron shanty = NOEXEC: /usr/bin/more, /usr/bin/vi
.Ed
.Pp
See the
.Sx Preventing Shell Escapes
section below for more details on how
.Li NOEXEC
works and whether or not it will work on your system.
.Pp
.Em SETENV and NOSETENV
.Pp
These tags override the value of the
.Em setenv
option on a per-command basis.
Note that if
.Li SETENV
has been set for a command, the user may disable the
.Em env_reset
option from the command line via the
.Fl E
option.
Additionally, environment variables set on the command
line are not subject to the restrictions imposed by
.Em env_check ,
.Em env_delete ,
or
.Em env_keep .
As such, only trusted users should be allowed to set variables in this manner.
If the command matched is
.Sy ALL ,
the
.Li SETENV
tag is implied for that command; this default may be overridden by use of the
.Li NOSETENV
tag.
.Ss Wildcards
.Nm sudo
allows shell-style
.Em wildcards
(aka meta or glob characters)
to be used in host names, path names and command line arguments in the
.Em sudoers
file.
Wildcard matching is done via the
.Sy POSIX
.Xr glob 3
and
.Xr fnmatch 3
routines.
Note that these are
.Em not
regular expressions.
.Bl -tag -width 8n
.It Li *
Matches any set of zero or more characters.
.It Li \&?
Matches any single character.
.It Li [...]
Matches any character in the specified range.
.It Li [!...]
Matches any character
.Sy not
in the specified range.
.It Li \ex
For any character
.Sq x ,
evaluates to
.Sq x .
This is used to escape special characters such as:
.Ql * ,
.Ql \&? ,
.Ql [\& ,
and
.Ql ]\& .
.El
.Pp
POSIX character classes may also be used if your system's
.Xr glob 3
and
.Xr fnmatch 3
functions support them.
However, because the
.Ql :\&
character has special meaning in
.Em sudoers ,
it must be
escaped.
For example:
.Bd -literal -offset 4n
/bin/ls [[\:alpha\:]]*
.Ed
.Pp
Would match any file name beginning with a letter.
.Pp
Note that a forward slash
.Pq Ql /
will
.Sy not
be matched by
wildcards used in the path name.
This is to make a path like:
.Bd -literal -offset 4n
/usr/bin/*
.Ed
.Pp
match
.Pa /usr/bin/who
but not
.Pa /usr/bin/X11/xterm .
.Pp
When matching the command line arguments, however, a slash
.Sy does
get matched by wildcards since command line arguments may contain
arbitrary strings and not just path names.
.Pp
Wildcards in command line arguments should be used with care.
Because command line arguments are matched as a single, concatenated
string, a wildcard such as
.Ql \&?
or
.Ql *
can match multiple words.
For example, while a sudoers entry like:
.Bd -literal -offset 4n
%operator ALL = /bin/cat /var/log/messages*
.Ed
.Pp
will allow command like:
.Bd -literal -offset 4n
$ sudo cat /var/log/messages.1
.Ed
.Pp
It will also allow:
.Bd -literal -offset 4n
$ sudo cat /var/log/messages /etc/shadow
.Ed
.Pp
which is probably not what was intended.
.Ss Exceptions to wildcard rules
The following exceptions apply to the above rules:
.Bl -tag -width 8n
.It Li \&""
If the empty string
.Li \&""
is the only command line argument in the
.Em sudoers
entry it means that command is not allowed to be run with
.Sy any
arguments.
.It sudoedit
Command line arguments to the
.Em sudoedit
built-in command should always be path names, so a forward slash
.Pq Ql /
will not be matched by a wildcard.
.El
.Ss Including other files from within sudoers
It is possible to include other
.Em sudoers
files from within the
.Em sudoers
file currently being parsed using the
.Li #include
and
.Li #includedir
directives.
.Pp
This can be used, for example, to keep a site-wide
.Em sudoers
file in addition to a local, per-machine file.
For the sake of this example the site-wide
.Em sudoers
will be
.Pa /etc/sudoers
and the per-machine one will be
.Pa /etc/sudoers.local .
To include
.Pa /etc/sudoers.local
from within
.Pa /etc/sudoers
we would use the
following line in
.Pa /etc/sudoers :
.Bd -literal -offset 4n
#include /etc/sudoers.local
.Ed
.Pp
When
.Nm sudo
reaches this line it will suspend processing of the current file
.Pq Pa /etc/sudoers
and switch to
.Pa /etc/sudoers.local .
Upon reaching the end of
.Pa /etc/sudoers.local ,
the rest of
.Pa /etc/sudoers
will be processed.
Files that are included may themselves include other files.
A hard limit of 128 nested include files is enforced to prevent include
file loops.
.Pp
If the path to the include file is not fully-qualified (does not
begin with a
.Ql / ,
it must be located in the same directory as the sudoers file it was
included from.
For example, if
.Pa /etc/sudoers
contains the line:
.Bd -literal -offset 4n
.Li #include sudoers.local
.Ed
.Pp
the file that will be included is
.Pa /etc/sudoers.local .
.Pp
The file name may also include the
.Li %h
escape, signifying the short form of the host name.
In other words, if the machine's host name is
.Dq xerxes ,
then
.Bd -literal -offset 4n
#include /etc/sudoers.%h
.Ed
.Pp
will cause
.Nm sudo
to include the file
.Pa /etc/sudoers.xerxes .
.Pp
The
.Li #includedir
directive can be used to create a
.Pa sudo.d
directory that the system package manager can drop
.Em sudoers
rules
into as part of package installation.
For example, given:
.Bd -literal -offset 4n
#includedir /etc/sudoers.d
.Ed
.Pp
.Nm sudo
will read each file in
.Pa /etc/sudoers.d ,
skipping file names that end in
.Ql ~
or contain a
.Ql .\&
character to avoid causing problems with package manager or editor
temporary/backup files.
Files are parsed in sorted lexical order.
That is,
.Pa /etc/sudoers.d/01_first
will be parsed before
.Pa /etc/sudoers.d/10_second .
Be aware that because the sorting is lexical, not numeric,
.Pa /etc/sudoers.d/1_whoops
would be loaded
.Sy after
.Pa /etc/sudoers.d/10_second .
Using a consistent number of leading zeroes in the file names can be used
to avoid such problems.
.Pp
Note that unlike files included via
.Li #include ,
.Nm visudo
will not edit the files in a
.Li #includedir
directory unless one of them contains a syntax error.
It is still possible to run
.Nm visudo
with the
.Fl f
flag to edit the files directly.
.Ss Other special characters and reserved words
The pound sign
.Pq Ql #
is used to indicate a comment (unless it is part of a #include
directive or unless it occurs in the context of a user name and is
followed by one or more digits, in which case it is treated as a
uid).
Both the comment character and any text after it, up to the end of
the line, are ignored.
.Pp
The reserved word
.Sy ALL
is a built-in
.Em alias
that always causes a match to succeed.
It can be used wherever one might otherwise use a
.Li Cmnd_Alias ,
.Li User_Alias ,
.Li Runas_Alias ,
or
.Li Host_Alias .
You should not try to define your own
.Em alias
called
.Sy ALL
as the built-in alias will be used in preference to your own.
Please note that using
.Sy ALL
can be dangerous since in a command context, it allows the user to run
.Sy any
command on the system.
.Pp
An exclamation point
.Pq Ql \&!
can be used as a logical
.Em not
operator both in an
.Em alias
and in front of a
.Li Cmnd .
This allows one to exclude certain values.
Note, however, that using a
.Ql \&!
in conjunction with the built-in
.Sy ALL
alias to allow a user to run
.Dq all but a few
commands rarely works as intended (see
.Sx SECURITY NOTES
below).
.Pp
Long lines can be continued with a backslash
.Pq Ql \e
as the last character on the line.
.Pp
White space between elements in a list as well as special syntactic
characters in a
.Em User Specification
.Po
.Ql =\& ,
.Ql :\& ,
.Ql (\& ,
.Ql )\&
.Pc
is optional.
.Pp
The following characters must be escaped with a backslash
.Pq Ql \e
when used as part of a word (e.g.\& a user name or host name):
.Ql \&! ,
.Ql =\& ,
.Ql :\& ,
.Ql ,\& ,
.Ql (\& ,
.Ql )\& ,
.Ql \e .
.Sh SUDOERS OPTIONS
.Nm sudo Ns No 's
behavior can be modified by
.Li Default_Entry
lines, as explained earlier.
A list of all supported Defaults parameters, grouped by type, are listed below.
.Pp
.Sy Boolean Flags :
.Bl -tag -width 16n
.It always_set_home
If enabled,
.Nm sudo
will set the
.Ev HOME
environment variable to the home directory of the target user
(which is root unless the
.Fl u
option is used).
This effectively means that the
.Fl H
option is always implied.
This flag is
.Em off
by default.
.It authenticate
If set, users must authenticate themselves via a password (or other
means of authentication) before they may run commands.
This default may be overridden via the
.Li PASSWD
and
.Li NOPASSWD
tags.
This flag is
.Em on
by default.
.It closefrom_override
If set, the user may use
.Nm sudo Ns No 's
.Fl C
option which overrides the default starting point at which
.Nm sudo
begins closing open file descriptors.
This flag is
.Em off
by default.
.It env_editor
If set,
.Nm visudo
will use the value of the
.Ev EDITOR
or
.Ev VISUAL
environment variables before falling back on the default editor list.
Note that this may create a security hole as it allows the user to
run any arbitrary command as root without logging.
A safer alternative is to place a colon-separated list of editors
in the
.Li editor
variable.
.Nm visudo
will then only use the
.Ev EDITOR
or
.Ev VISUAL
if they match a value specified in
.Li editor .
This flag is
.Em @env_editor@
by
default.
.It env_reset
If set,
.Nm sudo
will run the command in a minimal environment containing the
.Ev TERM ,
.Ev PATH ,
.Ev HOME ,
.Ev MAIL ,
.Ev SHELL ,
.Ev LOGNAME ,
.Ev USER ,
.Ev USERNAME
and
.Ev SUDO_*
variables.
Any
variables in the caller's environment that match the
.Li env_keep
and
.Li env_check
lists are then added, followed by any variables present in the file
specified by the
.Em env_file
option (if any).
The default contents of the
.Li env_keep
and
.Li env_check
lists are displayed when
.Nm sudo
is run by root with the
.Fl V
option.
If the
.Em secure_path
option is set, its value will be used for the
.Ev PATH
environment variable.
This flag is
.Em @env_reset@
by default.
.It fast_glob
Normally,
.Nm sudo
uses the
.Xr glob 3
function to do shell-style globbing when matching path names.
However, since it accesses the file system,
.Xr glob 3
can take a long time to complete for some patterns, especially
when the pattern references a network file system that is mounted
on demand (auto mounted).
The
.Em fast_glob
option causes
.Nm sudo
to use the
.Xr fnmatch 3
function, which does not access the file system to do its matching.
The disadvantage of
.Em fast_glob
is that it is unable to match relative path names such as
.Pa ./ls
or
.Pa ../bin/ls .
This has security implications when path names that include globbing
characters are used with the negation operator,
.Ql !\& ,
as such rules can be trivially bypassed.
As such, this option should not be used when
.Em sudoers
contains rules that contain negated path names which include globbing
characters.
This flag is
.Em off
by default.
.It fqdn
Set this flag if you want to put fully qualified host names in the
.Em sudoers
file when the local host name (as returned by the
.Li hostname
command) does not contain the domain name.
In other words, instead of myhost you would use myhost.mydomain.edu.
You may still use the short form if you wish (and even mix the two).
This option is only effective when the
.Dq canonical
host name, as returned by the
.Fn getaddrinfo
or
.Fn gethostbyname
function, is a fully-qualified domain name.
This is usually the case when the system is configured to use DNS
for host name resolution.
.Pp
If the system is configured to use the
.Pa /etc/hosts
file in preference to DNS, the
.Dq canonical
host name may not be fully-qualified.
The order that sources are queried for hosts name resolution
is specified in the
.Pa /etc/resolv.conf
file.
In the
.Pa /etc/hosts
file, the first host name of the entry is considered to be the
.Dq canonical
name; subsequent names are aliases that are not used by
.Nm sudoers .
For example, the following hosts file line for the machine
.Dq xyzzy
has the fully-qualified domain name as the
.Dq canonical
host name, and the short version as an alias.
.sp
.Dl 192.168.1.1 xyzzy.sudo.ws xyzzy
.sp
If the machine's hosts file entry is not formatted properly, the
.Em fqdn
option will not be effective if it is queried before DNS.
.Pp
Beware that when using DNS for host name resolution, turning on
.Em fqdn
requires
.Nm sudoers
to make DNS lookups which renders
.Nm sudo
unusable if DNS stops working (for example if the machine is disconnected
from the network).
Also note that just like with the hosts file, you must use the
.Dq canonical
name as DNS knows it.
That is, you may not use a host alias
.Po
.Li CNAME
entry
.Pc
due to performance issues and the fact that there is no way to get all
aliases from DNS.
.Pp
This flag is
.Em @fqdn@
by default.
.It ignore_dot
If set,
.Nm sudo
will ignore "." or "" (both denoting current directory) in the
.Ev PATH
environment variable; the
.Ev PATH
itself is not modified.
This flag is
.Em @ignore_dot@
by default.
.It ignore_local_sudoers
If set via LDAP, parsing of
.Pa @sysconfdir@/sudoers
will be skipped.
This is intended for Enterprises that wish to prevent the usage of local
sudoers files so that only LDAP is used.
This thwarts the efforts of rogue operators who would attempt to add roles to
.Pa @sysconfdir@/sudoers .
When this option is present,
.Pa @sysconfdir@/sudoers
does not even need to exist.
Since this option tells
.Nm sudo
how to behave when no specific LDAP entries have been matched, this
sudoOption is only meaningful for the
.Li cn=defaults
section.
This flag is
.Em off
by default.
.It insults
If set,
.Nm sudo
will insult users when they enter an incorrect password.
This flag is
.Em @insults@
by default.
.It log_host
If set, the host name will be logged in the (non-syslog)
.Nm sudo
log file.
This flag is
.Em off
by default.
.It log_year
If set, the four-digit year will be logged in the (non-syslog)
.Nm sudo
log file.
This flag is
.Em off
by default.
.It long_otp_prompt
When validating with a One Time Password (OTP) scheme such as
.Sy S/Key
or
.Sy OPIE ,
a two-line prompt is used to make it easier
to cut and paste the challenge to a local window.
It's not as pretty as the default but some people find it more convenient.
This flag is
.Em @long_otp_prompt@
by default.
.It mail_always
Send mail to the
.Em mailto
user every time a users runs
.Nm sudo .
This flag is
.Em off
by default.
.It mail_badpass
Send mail to the
.Em mailto
user if the user running
.Nm sudo
does not enter the correct password.
If the command the user is attempting to run is not permitted by
.Em sudoers
and one of the
.Em mail_always ,
.Em mail_no_host ,
.Em mail_no_perms
or
.Em mail_no_user
flags are set, this flag will have no effect.
This flag is
.Em off
by default.
.It mail_no_host
If set, mail will be sent to the
.Em mailto
user if the invoking user exists in the
.Em sudoers
file, but is not allowed to run commands on the current host.
This flag is
.Em @mail_no_host@
by default.
.It mail_no_perms
If set, mail will be sent to the
.Em mailto
user if the invoking user is allowed to use
.Nm sudo
but the command they are trying is not listed in their
.Em sudoers
file entry or is explicitly denied.
This flag is
.Em @mail_no_perms@
by default.
.It mail_no_user
If set, mail will be sent to the
.Em mailto
user if the invoking user is not in the
.Em sudoers
file.
This flag is
.Em @mail_no_user@
by default.
.It noexec
If set, all commands run via
.Nm sudo
will behave as if the
.Li NOEXEC
tag has been set, unless overridden by a
.Li EXEC
tag.
See the description of
.Em NOEXEC and EXEC
below as well as the
.Sx Preventing Shell Escapes
section at the end of this manual.
This flag is
.Em off
by default.
.It path_info
Normally,
.Nm sudo
will tell the user when a command could not be
found in their
.Ev PATH
environment variable.
Some sites may wish to disable this as it could be used to gather
information on the location of executables that the normal user does
not have access to.
The disadvantage is that if the executable is simply not in the user's
.Ev PATH ,
.Nm sudo
will tell the user that they are not allowed to run it, which can be confusing.
This flag is
.Em @path_info@
by default.
.It passprompt_override
The password prompt specified by
.Em passprompt
will normally only be used if the password prompt provided by systems
such as PAM matches the string
.Dq Password: .
If
.Em passprompt_override
is set,
.Em passprompt
will always be used.
This flag is
.Em off
by default.
.It preserve_groups
By default,
.Nm sudo
will initialize the group vector to the list of groups the target user is in.
When
.Em preserve_groups
is set, the user's existing group vector is left unaltered.
The real and effective group IDs, however, are still set to match the
target user.
This flag is
.Em off
by default.
.It pwfeedback
By default,
.Nm sudo
reads the password like most other Unix programs,
by turning off echo until the user hits the return (or enter) key.
Some users become confused by this as it appears to them that
.Nm sudo
has hung at this point.
When
.Em pwfeedback
is set,
.Nm sudo
will provide visual feedback when the user presses a key.
Note that this does have a security impact as an onlooker may be able to
determine the length of the password being entered.
This flag is
.Em off
by default.
.It requiretty
If set,
.Nm sudo
will only run when the user is logged in to a real tty.
When this flag is set,
.Nm sudo
can only be run from a login session and not via other means such as
.Xr cron @mansectsu@
or cgi-bin scripts.
This flag is
.Em off
by default.
.It root_sudo
If set, root is allowed to run
.Nm sudo
too.
Disabling this prevents users from
.Dq chaining
.Nm sudo
commands to get a root shell by doing something like
.Dq Li sudo sudo /bin/sh .
Note, however, that turning off
.Em root_sudo
will also prevent root from running
.Nm sudoedit .
Disabling
.Em root_sudo
provides no real additional security; it exists purely for historical reasons.
This flag is
.Em @root_sudo@
by default.
.It rootpw
If set,
.Nm sudo
will prompt for the root password instead of the password of the invoking user.
This flag is
.Em off
by default.
.It runaspw
If set,
.Nm sudo
will prompt for the password of the user defined by the
.Em runas_default
option (defaults to
.Li @runas_default@ )
instead of the password of the invoking user.
This flag is
.Em off
by default.
.It set_home
If enabled and
.Nm sudo
is invoked with the
.Fl s
option the
.Ev HOME
environment variable will be set to the home directory of the target
user (which is root unless the
.Fl u
option is used).
This effectively makes the
.Fl s
option imply
.Fl H .
This flag is
.Em off
by default.
.It set_logname
Normally,
.Nm sudo
will set the
.Ev LOGNAME ,
.Ev USER
and
.Ev USERNAME
environment variables to the name of the target user (usually root unless the
.Fl u
option is given).
However, since some programs (including the RCS revision control system) use
.Ev LOGNAME
to determine the real identity of the user, it may be desirable to
change this behavior.
This can be done by negating the set_logname option.
Note that if the
.Em env_reset
option has not been disabled, entries in the
.Em env_keep
list will override the value of
.Em set_logname .
This flag is
.Em on
by default.
.It setenv
Allow the user to disable the
.Em env_reset
option from the command line via the
.Fl E
option.
Additionally, environment variables set via the command line are
not subject to the restrictions imposed by
.Em env_check ,
.Em env_delete ,
or
.Em env_keep .
As such, only trusted users should be allowed to set variables in this manner.
This flag is
.Em off
by default.
.It shell_noargs
If set and
.Nm sudo
is invoked with no arguments it acts as if the
.Fl s
option had been given.
That is, it runs a shell as root (the shell is determined by the
.Ev SHELL
environment variable if it is set, falling back on the shell listed
in the invoking user's /etc/passwd entry if not).
This flag is
.Em off
by default.
.It stay_setuid
Normally, when
.Nm sudo
executes a command the real and effective UIDs are set to the target
user (root by default).
This option changes that behavior such that the real UID is left
as the invoking user's UID.
In other words, this makes
.Nm sudo
act as a setuid wrapper.
This can be useful on systems that disable some potentially
dangerous functionality when a program is run setuid.
This option is only effective on systems that support either the
.Xr setreuid 2
or
.Xr setresuid 2
system call.
This flag is
.Em off
by default.
.It targetpw
If set,
.Nm sudo
will prompt for the password of the user specified
by the
.Fl u
option (defaults to
.Li root )
instead of the password of the invoking user.
In addition, the time stamp file name will include the target user's name.
Note that this flag precludes the use of a uid not listed in the passwd
database as an argument to the
.Fl u
option.
This flag is
.Em off
by default.
.It tty_tickets
If set, users must authenticate on a per-tty basis.
With this flag enabled,
.Nm sudo
will use a file named for the tty the user is
logged in on in the user's time stamp directory.
If disabled, the time stamp of the directory is used instead.
This flag is
.Em @tty_tickets@
by default.
.It umask_override
If set,
.Nm sudo
will set the umask as specified by
.Em sudoers
without modification.
This makes it possible to specify a more permissive umask in
.Em sudoers
than the user's own umask and matches historical behavior.
If
.Em umask_override
is not set,
.Nm sudo
will set the umask to be the union of the user's umask and what is specified in
.Em sudoers .
This flag is
.Em @umask_override@
by default.
.It use_loginclass
If set,
.Nm sudo
will apply the defaults specified for the target user's login class
if one exists.
Only available if
.Nm sudo
is configured with the
.Li --with-logincap
option.
This flag is
.Em off
by default.
.It use_pty
If set,
.Nm sudo
will run the command in a pseudo-pty even if no I/O logging is being gone.
A malicious program run under
.Nm sudo
could conceivably fork a background process that retains to the user's
terminal device after the main program has finished executing.
Use of this option will make that impossible.
This flag is
.Em off
by default.
.It visiblepw
By default,
.Nm sudo
will refuse to run if the user must enter a password but it is not
possible to disable echo on the terminal.
If the
.Em visiblepw
flag is set,
.Nm sudo
will prompt for a password even when it would be visible on the screen.
This makes it possible to run things like
.Dq Li ssh somehost sudo ls
since by default,
.Xr ssh 1
does
not allocate a tty when running a command.
This flag is
.Em off
by default.
.El
.Pp
.Sy Integers :
.Bl -tag -width 16n
.It closefrom
Before it executes a command,
.Nm sudo
will close all open file descriptors other than standard input,
standard output and standard error (ie: file descriptors 0-2).
The
.Em closefrom
option can be used to specify a different file descriptor at which
to start closing.
The default is
.Li 3 .
.It passwd_tries
The number of tries a user gets to enter his/her password before
.Nm sudo
logs the failure and exits.
The default is
.Li @passwd_tries@ .
.El
.Pp
.Sy Integers that can be used in a boolean context :
.Bl -tag -width 16n
.It loglinelen
Number of characters per line for the file log.
This value is used to decide when to wrap lines for nicer log files.
This has no effect on the syslog log file, only the file log.
The default is
.Li @loglen@
(use 0 or negate the option to disable word wrap).
.It passwd_timeout
Number of minutes before the
.Nm sudo
password prompt times out, or
.Li 0
for no timeout.
The timeout may include a fractional component
if minute granularity is insufficient, for example
.Li 2.5 .
The
default is
.Li @password_timeout@ .
.It timestamp_timeout
Number of minutes that can elapse before
.Nm sudo
will ask for a passwd again.
The timeout may include a fractional component if
minute granularity is insufficient, for example
.Li 2.5 .
The default is
.Li @timeout@ .
Set this to
.Li 0
to always prompt for a password.
If set to a value less than
.Li 0
the user's time stamp will never expire.
This can be used to allow users to create or delete their own time stamps via
.Dq Li sudo -v
and
.Dq Li sudo -k
respectively.
.It umask
Umask to use when running the command.
Negate this option or set it to 0777 to preserve the user's umask.
The actual umask that is used will be the union of the user's umask
and the value of the
.Em umask
option, which defaults to
.Li @sudo_umask@ .
This guarantees
that
.Nm sudo
never lowers the umask when running a command.
Note: on systems that use PAM, the default PAM configuration may specify
its own umask which will override the value set in
.Em sudoers .
.El
.Pp
.Sy Strings :
.Bl -tag -width 16n
.It badpass_message
Message that is displayed if a user enters an incorrect password.
The default is
.Li @badpass_message@
unless insults are enabled.
.It editor
A colon
.Pq Ql :\&
separated list of editors allowed to be used with
.Nm visudo .
.Nm visudo
will choose the editor that matches the user's
.Ev EDITOR
environment variable if possible, or the first editor in the
list that exists and is executable.
The default is
.Pa @editor@ .
.It mailsub
Subject of the mail sent to the
.Em mailto
user.
The escape
.Li %h
will expand to the host name of the machine.
Default is
.Dq Li @mailsub@ .
.It noexec_file
The
.Em noexec
option specifies the the fully-qualified path to a shared library
containing dummy versions of the
.Fn execv ,
.Fn execve
and
.Fn fexecve
library functions that just return an error.
This is used to implement the
.Em noexec
functionality on systems that support
.Ev LD_PRELOAD
or its equivalent.
Defaults to
.Pa @noexec_file@ .
.It passprompt
The default prompt to use when asking for a password; can be overridden via the
.Fl p
option or the
.Ev SUDO_PROMPT
environment variable.
The following percent
.Pq Ql %
escape sequences are supported:
.Bl -tag -width 4n
.It Li %H
expanded to the local host name including the domain name
(only if the machine's host name is fully qualified or the
.Em fqdn
option is set)
.It Li %h
expanded to the local host name without the domain name
.It Li %p
expanded to the user whose password is being asked for (respects the
.Em rootpw ,
.Em targetpw
and
.Em runaspw
flags in
.Em sudoers )
.It Li \&%U
expanded to the login name of the user the command will
be run as (defaults to root)
.It Li %u
expanded to the invoking user's login name
.It Li %%
two consecutive
.Li %
characters are collapsed into a single
.Li %
character
.El
.Pp
The default value is
.Dq Li @passprompt@ .
.It runas_default
The default user to run commands as if the
.Fl u
option is not specified on the command line.
This defaults to
.Li @runas_default@ .
.It syslog_badpri
Syslog priority to use when user authenticates unsuccessfully.
Defaults to
.Li @badpri@ .
.Pp
The following syslog priorities are supported:
.Sy alert ,
.Sy crit ,
.Sy debug ,
.Sy emerg ,
.Sy err ,
.Sy info ,
.Sy notice ,
and
.Sy warning .
.It syslog_goodpri
Syslog priority to use when user authenticates successfully.
Defaults to
.Li @goodpri@ .
.Pp
See
.Sx syslog_badpri
for the list of supported syslog priorities.
.It sudoers_locale
Locale to use when parsing the sudoers file, logging commands, and
sending email.
Note that changing the locale may affect how sudoers is interpreted.
Defaults to
.Dq Li C .
.It timestampdir
The directory in which
.Nm sudo
stores its time stamp files.
The default is
.Pa @timedir@ .
.It timestampowner
The owner of the time stamp directory and the time stamps stored therein.
The default is
.Li root .
.It askpass
The
.Em askpass
option specifies the fully qualified path to a helper program used
to read the user's password when no terminal is available.
This may be the case when
.Nm sudo
is executed from a graphical (as opposed to text-based) application.
The program specified by
.Em askpass
should display the argument passed to it as the prompt and write
the user's password to the standard output.
The value of
.Em askpass
may be overridden by the
.Ev SUDO_ASKPASS
environment variable.
.It env_file
The
.Em env_file
option specifies the fully qualified path to a file containing variables
to be set in the environment of the program being run.
Entries in this file should either be of the form
.Dq Li VARIABLE=value
or
.Dq Li export VARIABLE=value .
The value may optionally be surrounded by single or double quotes.
Variables in this file are subject to other
.Nm sudo
environment settings such as
.Em env_keep
and
.Em env_check .
.It exempt_group
Users in this group are exempt from password and PATH requirements.
The group name specified should not include a
.Li %
prefix.
This is not set by default.
.It lecture
This option controls when a short lecture will be printed along with
the password prompt.
It has the following possible values:
.Bl -tag -width 6n
.It always
Always lecture the user.
.It never
Never lecture the user.
.It once
Only lecture the user the first time they run
.Nm sudo .
.El
.Pp
If no value is specified, a value of
.Em once
is implied.
Negating the option results in a value of
.Em never
being used.
The default value is
.Em @lecture@ .
.It lecture_file
Path to a file containing an alternate
.Nm sudo
lecture that will be used in place of the standard lecture if the named
file exists.
By default,
.Nm sudo
uses a built-in lecture.
.It listpw
This option controls when a password will be required when a user runs
.Nm sudo
with the
.Fl l
option.
It has the following possible values:
.Bl -tag -width 8n
.It all
All the user's
.Em sudoers
entries for the current host must have
the
.Li NOPASSWD
flag set to avoid entering a password.
.It always
The user must always enter a password to use the
.Fl l
option.
.It any
At least one of the user's
.Em sudoers
entries for the current host
must have the
.Li NOPASSWD
flag set to avoid entering a password.
.It never
The user need never enter a password to use the
.Fl l
option.
.El
.Pp
If no value is specified, a value of
.Em any
is implied.
Negating the option results in a value of
.Em never
being used.
The default value is
.Em any .
.It logfile
Path to the
.Nm sudo
log file (not the syslog log file).
Setting a path turns on logging to a file;
negating this option turns it off.
By default,
.Nm sudo
logs via syslog.
.It mailerflags
Flags to use when invoking mailer. Defaults to
.Fl t .
.It mailerpath
Path to mail program used to send warning mail.
Defaults to the path to sendmail found at configure time.
.It mailfrom
Address to use for the
.Dq from
address when sending warning and error mail.
The address should be enclosed in double quotes
.Pq \&""
to protect against
.Nm sudo
interpreting the
.Li @
sign.
Defaults to the name of the user running
.Nm sudo .
.It mailto
Address to send warning and error mail to.
The address should be enclosed in double quotes
.Pq \&""
to protect against
.Nm sudo
interpreting the
.Li @
sign.
Defaults to
.Li @mailto@ .
.It secure_path
Path used for every command run from
.Nm sudo .
If you don't trust the
people running
.Nm sudo
to have a sane
.Ev PATH
environment variable you may want to use this.
Another use is if you want to have the
.Dq root path
be separate from the
.Dq user path .
Users in the group specified by the
.Em exempt_group
option are not affected by
.Em secure_path .
This option is @secure_path@ by default.
.It syslog
Syslog facility if syslog is being used for logging (negate to
disable syslog logging).
Defaults to
.Li @logfac@ .
.Pp
The following syslog facilities are supported:
.Sy authpriv
(if your
OS supports it),
.Sy auth ,
.Sy daemon ,
.Sy user ,
.Sy local0 ,
.Sy local1 ,
.Sy local2 ,
.Sy local3 ,
.Sy local4 ,
.Sy local5 ,
.Sy local6 ,
and
.Sy local7 .
.It verifypw
This option controls when a password will be required when a user runs
.Nm sudo
with the
.Fl v
option.
It has the following possible values:
.Bl -tag -width 6n
.It all
All the user's
.Em sudoers
entries for the current host must have the
.Li NOPASSWD
flag set to avoid entering a password.
.It always
The user must always enter a password to use the
.Fl v
option.
.It any
At least one of the user's
.Em sudoers
entries for the current host must have the
.Li NOPASSWD
flag set to avoid entering a password.
.It never
The user need never enter a password to use the
.Fl v
option.
.El
.Pp
If no value is specified, a value of
.Em all
is implied.
Negating the option results in a value of
.Em never
being used.
The default value is
.Em all .
.El
.Pp
.Sy Lists that can be used in a boolean context :
.Bl -tag -width 16n
.It env_check
Environment variables to be removed from the user's environment if
the variable's value contains
.Ql %
or
.Ql /
characters.
This can be used to guard against printf-style format vulnerabilities
in poorly-written programs.
The argument may be a double-quoted, space-separated list or a
single value without double-quotes.
The list can be replaced, added to, deleted from, or disabled by using
the
.Li = ,
.Li += ,
.Li -= ,
and
.Li \&!
operators respectively.
Regardless of whether the
.Li env_reset
option is enabled or disabled, variables specified by
.Li env_check
will be preserved in the environment if they pass the aforementioned check.
The default list of environment variables to check is displayed when
.Nm sudo
is run by root with
the
.Fl V
option.
.It env_delete
Environment variables to be removed from the user's environment when the
.Em env_reset
option is not in effect.
The argument may be a double-quoted, space-separated list or a
single value without double-quotes.
The list can be replaced, added to, deleted from, or disabled by using the
.Li = ,
.Li += ,
.Li -= ,
and
.Li \&!
operators respectively.
The default list of environment variables to remove is displayed when
.Nm sudo
is run by root with the
.Fl V
option.
Note that many operating systems will remove potentially dangerous
variables from the environment of any setuid process (such as
.Nm sudo ) .
.It env_keep
Environment variables to be preserved in the user's environment when the
.Em env_reset
option is in effect.
This allows fine-grained control over the environment
.Nm sudo Ns No -spawned
processes will receive.
The argument may be a double-quoted, space-separated list or a
single value without double-quotes.
The list can be replaced, added to, deleted from, or disabled by using the
.Li = ,
.Li += ,
.Li -= ,
and
.Li \&!
operators respectively.
The default list of variables to keep
is displayed when
.Nm sudo
is run by root with the
.Fl V
option.
.El
.Sh FILES
.Bl -tag -width 24n
.It Pa @sysconfdir@/sudoers
List of who can run what
.It Pa /etc/group
Local groups file
.It Pa /etc/netgroup
List of network groups
.El
.Sh EXAMPLES
Below are example
.Em sudoers
entries.
Admittedly, some of these are a bit contrived.
First, we allow a few environment variables to pass and then define our
.Em aliases :
.Bd -literal
# Run X applications through sudo; HOME is used to find the
# .Xauthority file. Note that other programs use HOME to find
# configuration files and this may lead to privilege escalation!
Defaults env_keep += "DISPLAY HOME"
# User alias specification
User_Alias FULLTIMERS = millert, mikef, dowdy
User_Alias PARTTIMERS = bostley, jwfox, crawl
User_Alias WEBMASTERS = will, wendy, wim
# Runas alias specification
Runas_Alias OP = root, operator
Runas_Alias DB = oracle, sybase
Runas_Alias ADMINGRP = adm, oper
# Host alias specification
Host_Alias SPARC = bigtime, eclipse, moet, anchor :\e
SGI = grolsch, dandelion, black :\e
ALPHA = widget, thalamus, foobar :\e
HPPA = boa, nag, python
Host_Alias CUNETS = 128.138.0.0/255.255.0.0
Host_Alias CSNETS = 128.138.243.0, 128.138.204.0/24, 128.138.242.0
Host_Alias SERVERS = master, mail, www, ns
Host_Alias CDROM = orion, perseus, hercules
# Cmnd alias specification
Cmnd_Alias DUMPS = /usr/bin/mt, /usr/sbin/dump, /usr/sbin/rdump,\e
/usr/sbin/restore, /usr/sbin/rrestore
Cmnd_Alias KILL = /usr/bin/kill
Cmnd_Alias PRINTING = /usr/sbin/lpc, /usr/bin/lprm
Cmnd_Alias SHUTDOWN = /usr/sbin/shutdown
Cmnd_Alias HALT = /usr/sbin/halt
Cmnd_Alias REBOOT = /usr/sbin/reboot
Cmnd_Alias SHELLS = /usr/bin/sh, /usr/bin/csh, /usr/bin/ksh,\e
/usr/local/bin/tcsh, /usr/bin/rsh,\e
/usr/local/bin/zsh
Cmnd_Alias SU = /usr/bin/su
Cmnd_Alias PAGERS = /usr/bin/more, /usr/bin/pg, /usr/bin/less
.Ed
.Pp
Here we override some of the compiled in default values.
We want
.Nm sudo
to log via
.Xr syslog 3
using the
.Em auth
facility in all cases.
We don't want to subject the full time staff to the
.Nm sudo
lecture, user
.Sy millert
need not give a password, and we don't want to reset the
.Ev LOGNAME ,
.Ev USER
or
.Ev USERNAME
environment variables when running commands as root.
Additionally, on the machines in the
.Em SERVERS
.Li Host_Alias ,
we keep an additional local log file and make sure we log the year
in each log line since the log entries will be kept around for several years.
Lastly, we disable shell escapes for the commands in the PAGERS
.Li Cmnd_Alias
.Po
.Pa /usr/bin/more ,
.Pa /usr/bin/pg
and
.Pa /usr/bin/less
.Pc .
.Bd -literal
# Override built-in defaults
Defaults syslog=auth
Defaults>root !set_logname
Defaults:FULLTIMERS !lecture
Defaults:millert !authenticate
Defaults@SERVERS log_year, logfile=/var/log/sudo.log
Defaults!PAGERS noexec
.Ed
.Pp
The
.Em User specification
is the part that actually determines who may run what.
.Bd -literal
root ALL = (ALL) ALL
%wheel ALL = (ALL) ALL
.Ed
.Pp
We let
.Sy root
and any user in group
.Sy wheel
run any command on any host as any user.
.Bd -literal
FULLTIMERS ALL = NOPASSWD: ALL
.Ed
.Pp
Full time sysadmins
.Po
.Sy millert ,
.Sy mikef ,
and
.Sy dowdy
.Pc
may run any command on any host without authenticating themselves.
.Bd -literal
PARTTIMERS ALL = ALL
.Ed
.Pp
Part time sysadmins
.Sy bostley ,
.Sy jwfox ,
and
.Sy crawl )
may run any command on any host but they must authenticate themselves
first (since the entry lacks the
.Li NOPASSWD
tag).
.Bd -literal
jack CSNETS = ALL
.Ed
.Pp
The user
.Sy jack
may run any command on the machines in the
.Em CSNETS
alias (the networks
.Li 128.138.243.0 ,
.Li 128.138.204.0 ,
and
.Li 128.138.242.0 ) .
Of those networks, only
.Li 128.138.204.0
has an explicit netmask (in CIDR notation) indicating it is a class C network.
For the other networks in
.Em CSNETS ,
the local machine's netmask will be used during matching.
.Bd -literal
lisa CUNETS = ALL
.Ed
.Pp
The user
.Sy lisa
may run any command on any host in the
.Em CUNETS
alias (the class B network
.Li 128.138.0.0 ) .
.Bd -literal
operator ALL = DUMPS, KILL, SHUTDOWN, HALT, REBOOT, PRINTING,\e
sudoedit /etc/printcap, /usr/oper/bin/
.Ed
.Pp
The
.Sy operator
user may run commands limited to simple maintenance.
Here, those are commands related to backups, killing processes, the
printing system, shutting down the system, and any commands in the
directory
.Pa /usr/oper/bin/ .
.Bd -literal
joe ALL = /usr/bin/su operator
.Ed
.Pp
The user
.Sy joe
may only
.Xr su 1
to operator.
.Bd -literal
pete HPPA = /usr/bin/passwd [A-Za-z]*, !/usr/bin/passwd root
%opers ALL = (: ADMINGRP) /usr/sbin/
.Ed
.Pp
Users in the
.Sy opers
group may run commands in
.Pa /usr/sbin/
as themselves
with any group in the
.Em ADMINGRP
.Li Runas_Alias
(the
.Sy adm
and
.Sy oper
groups).
.Pp
The user
.Sy pete
is allowed to change anyone's password except for
root on the
.Em HPPA
machines.
Note that this assumes
.Xr passwd 1
does not take multiple user names on the command line.
.Bd -literal
bob SPARC = (OP) ALL : SGI = (OP) ALL
.Ed
.Pp
The user
.Sy bob
may run anything on the
.Em SPARC
and
.Em SGI
machines as any user listed in the
.Em OP
.Li Runas_Alias
.Po
.Sy root
and
.Sy operator .
.Pc
.Bd -literal
jim +biglab = ALL
.Ed
.Pp
The user
.Sy jim
may run any command on machines in the
.Em biglab
netgroup.
.Nm sudo
knows that
.Dq biglab
is a netgroup due to the
.Ql +
prefix.
.Bd -literal
+secretaries ALL = PRINTING, /usr/bin/adduser, /usr/bin/rmuser
.Ed
.Pp
Users in the
.Sy secretaries
netgroup need to help manage the printers as well as add and remove users,
so they are allowed to run those commands on all machines.
.Bd -literal
fred ALL = (DB) NOPASSWD: ALL
.Ed
.Pp
The user
.Sy fred
can run commands as any user in the
.Em DB
.Li Runas_Alias
.Po
.Sy oracle
or
.Sy sybase
.Pc
without giving a password.
.Bd -literal
john ALPHA = /usr/bin/su [!-]*, !/usr/bin/su *root*
.Ed
.Pp
On the
.Em ALPHA
machines, user
.Sy john
may su to anyone except root but he is not allowed to specify any options
to the
.Xr su 1
command.
.Bd -literal
jen ALL, !SERVERS = ALL
.Ed
.Pp
The user
.Sy jen
may run any command on any machine except for those in the
.Em SERVERS
.Li Host_Alias
(master, mail, www and ns).
.Bd -literal
jill SERVERS = /usr/bin/, !SU, !SHELLS
.Ed
.Pp
For any machine in the
.Em SERVERS
.Li Host_Alias ,
.Sy jill
may run
any commands in the directory
.Pa /usr/bin/
except for those commands
belonging to the
.Em SU
and
.Em SHELLS
.Li Cmnd_Aliases .
.Bd -literal
steve CSNETS = (operator) /usr/local/op_commands/
.Ed
.Pp
The user
.Sy steve
may run any command in the directory /usr/local/op_commands/
but only as user operator.
.Bd -literal
matt valkyrie = KILL
.Ed
.Pp
On his personal workstation, valkyrie,
.Sy matt
needs to be able to kill hung processes.
.Bd -literal
WEBMASTERS www = (www) ALL, (root) /usr/bin/su www
.Ed
.Pp
On the host www, any user in the
.Em WEBMASTERS
.Li User_Alias
(will, wendy, and wim), may run any command as user www (which owns the
web pages) or simply
.Xr su 1
to www.
.Bd -literal
ALL CDROM = NOPASSWD: /sbin/umount /CDROM,\e
/sbin/mount -o nosuid\,nodev /dev/cd0a /CDROM
.Ed
.Pp
Any user may mount or unmount a CD-ROM on the machines in the CDROM
.Li Host_Alias
(orion, perseus, hercules) without entering a password.
This is a bit tedious for users to type, so it is a prime candidate
for encapsulating in a shell script.
.Sh SECURITY NOTES
.Ss Limitations of the So !\& Sc operator
It is generally not effective to
.Dq subtract
commands from
.Sy ALL
using the
.Ql !\&
operator.
A user can trivially circumvent this by copying the desired command
to a different name and then executing that.
For example:
.Bd -literal
bill ALL = ALL, !SU, !SHELLS
.Ed
.Pp
Doesn't really prevent
.Sy bill
from running the commands listed in
.Em SU
or
.Em SHELLS
since he can simply copy those commands to a different name, or use
a shell escape from an editor or other program.
Therefore, these kind of restrictions should be considered
advisory at best (and reinforced by policy).
.Pp
In general, if a user has sudo
.Sy ALL
there is nothing to prevent them from creating their own program that gives
them a root shell (or making their own copy of a shell) regardless of any
.Ql !\&
elements in the user specification.
.Ss Security implications of Em fast_glob
If the
.Em fast_glob
option is in use, it is not possible to reliably negate commands where the
path name includes globbing (aka wildcard) characters.
This is because the C library's
.Xr fnmatch 3
function cannot resolve relative paths.
While this is typically only an inconvenience for rules that grant privileges,
it can result in a security issue for rules that subtract or revoke privileges.
.Pp
For example, given the following
.Em sudoers
entry:
.Bd -literal
john ALL = /usr/bin/passwd [a-zA-Z0-9]*, /usr/bin/chsh [a-zA-Z0-9]*,\e
/usr/bin/chfn [a-zA-Z0-9]*, !/usr/bin/* root
.Ed
.Pp
User
.Sy john
can still run
.Li /usr/bin/passwd root
if
.Em fast_glob
is enabled by changing to
.Pa /usr/bin
and running
.Li ./passwd root
instead.
.Ss Preventing Shell Escapes
Once
.Nm sudo
executes a program, that program is free to do whatever
it pleases, including run other programs.
This can be a security issue since it is not uncommon for a program to
allow shell escapes, which lets a user bypass
.Nm sudo Ns No 's
access control and logging.
Common programs that permit shell escapes include shells (obviously),
editors, paginators, mail and terminal programs.
.Pp
There are two basic approaches to this problem:
.Bl -tag -width 8n
.It restrict
Avoid giving users access to commands that allow the user to run
arbitrary commands.
Many editors have a restricted mode where shell
escapes are disabled, though
.Nm sudoedit
is a better solution to
running editors via
.Nm sudo .
Due to the large number of programs that
offer shell escapes, restricting users to the set of programs that
do not is often unworkable.
.It noexec
Many systems that support shared libraries have the ability to
override default library functions by pointing an environment
variable (usually
.Ev LD_PRELOAD )
to an alternate shared library.
On such systems,
.Nm sudo Ns No 's
.Em noexec
functionality can be used to prevent a program run by
.Nm sudo
from executing any other programs.
Note, however, that this applies only to native dynamically-linked
executables.
Statically-linked executables and foreign executables
running under binary emulation are not affected.
.Pp
The
.Em noexec
feature is known to work on SunOS, Solaris, *BSD,
Linux, IRIX, Tru64 UNIX, MacOS X, HP-UX 11.x and AIX 5.3 and above.
It should be supported on most operating systems that support the
.Ev LD_PRELOAD
environment variable.
Check your operating system's manual pages for the dynamic linker
(usually ld.so, ld.so.1, dyld, dld.sl, rld, or loader) to see if
.Ev LD_PRELOAD
is supported.
.Pp
To enable
.Em noexec
for a command, use the
.Li NOEXEC
tag as documented
in the User Specification section above.
Here is that example again:
.Bd -literal
aaron shanty = NOEXEC: /usr/bin/more, /usr/bin/vi
.Ed
.Pp
This allows user
.Sy aaron
to run
.Pa /usr/bin/more
and
.Pa /usr/bin/vi
with
.Em noexec
enabled.
This will prevent those two commands from
executing other commands (such as a shell).
If you are unsure whether or not your system is capable of supporting
.Em noexec
you can always just try it out and check whether shell escapes work when
.Em noexec
is enabled.
.El
.Pp
Note that restricting shell escapes is not a panacea.
Programs running as root are still capable of many potentially hazardous
operations (such as changing or overwriting files) that could lead
to unintended privilege escalation.
In the specific case of an editor, a safer approach is to give the
user permission to run
.Nm sudoedit .
.Sh SEE ALSO
.Xr ssh 1 ,
.Xr su 1 ,
.Xr fnmatch 3 ,
.Xr glob 3 ,
.Xr mktemp 3 ,
.Xr strftime 3 ,
.Xr sudoers.ldap @mansectform@ ,
.Xr sudo @mansectsu@ ,
.Xr visudo @mansectsu@
.Sh CAVEATS
The
.Em sudoers
file should
.Sy always
be edited by the
.Nm visudo
command which locks the file and does grammatical checking.
It is
imperative that
.Em sudoers
be free of syntax errors since
.Nm sudo
will not run with a syntactically incorrect
.Em sudoers
file.
.Pp
When using netgroups of machines (as opposed to users), if you
store fully qualified host name in the netgroup (as is usually the
case), you either need to have the machine's host name be fully qualified
as returned by the
.Li hostname
command or use the
.Em fqdn
option in
.Em sudoers .
.Sh BUGS
If you feel you have found a bug in
.Nm sudo ,
please submit a bug report at http://www.sudo.ws/sudo/bugs/
.Sh SUPPORT
Limited free support is available via the sudo-users mailing list,
see http://www.sudo.ws/mailman/listinfo/sudo-users to subscribe or
search the archives.
.Sh DISCLAIMER
.Nm sudo
is provided
.Dq AS IS
and any express or implied warranties, including, but not limited
to, the implied warranties of merchantability and fitness for a
particular purpose are disclaimed.
See the LICENSE file distributed with
.Nm sudo
or http://www.sudo.ws/sudo/license.html for complete details.
|