summaryrefslogtreecommitdiff
path: root/os/access.c
blob: e8c0781f250f51d24f6adafe7b011e98d6bbab72 (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
/***********************************************************

Copyright 1987, 1998  The Open Group

All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, and/or sell copies of the Software, and to permit persons
to whom the Software is furnished to do so, provided that the above
copyright notice(s) and this permission notice appear in all copies of
the Software and that both the above copyright notice(s) and this
permission notice appear in supporting documentation.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
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.

Except as contained in this notice, the name of a copyright holder
shall not be used in advertising or otherwise to promote the sale, use
or other dealings in this Software without prior written authorization
of the copyright holder.

X Window System is a trademark of The Open Group.

Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.

                        All Rights Reserved

Permission to use, copy, modify, and distribute this software and its 
documentation for any purpose and without fee is hereby granted, 
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in 
supporting documentation, and that the name of Digital not be
used in advertising or publicity pertaining to distribution of the
software without specific, written prior permission.  

DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
DIGITAL BE LIABLE FOR ANY SPECIAL, 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.

******************************************************************/

/*
 * Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 * DEALINGS IN THE SOFTWARE.
 */

#ifdef HAVE_DIX_CONFIG_H
#include <dix-config.h>
#endif

#ifdef WIN32
#include <X11/Xwinsock.h>
#endif

#include <stdio.h>
#include <stdlib.h>
#define XSERV_t
#define TRANS_SERVER
#define TRANS_REOPEN
#include <X11/Xtrans/Xtrans.h>
#include <X11/Xauth.h>
#include <X11/X.h>
#include <X11/Xproto.h>
#include "misc.h"
#include "site.h"
#include <errno.h>
#include <sys/types.h>
#ifndef WIN32
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <ctype.h>

#if defined(TCPCONN) || defined(STREAMSCONN)
#include <netinet/in.h>
#endif                          /* TCPCONN || STREAMSCONN */

#ifdef HAVE_GETPEERUCRED
#include <ucred.h>
#ifdef sun
#include <zone.h>
#endif
#endif

#if defined(SVR4) ||  (defined(SYSV) && defined(__i386__)) || defined(__GNU__)
#include <sys/utsname.h>
#endif
#if defined(SYSV) &&  defined(__i386__)
#include <sys/stream.h>
#endif
#ifdef __GNU__
#undef SIOCGIFCONF
#include <netdb.h>
#else                           /*!__GNU__ */
#include <net/if.h>
#endif /*__GNU__ */

#ifdef SVR4
#include <sys/sockio.h>
#include <sys/stropts.h>
#endif

#include <netdb.h>

#ifdef CSRG_BASED
#include <sys/param.h>
#if (BSD >= 199103)
#define VARIABLE_IFREQ
#endif
#endif

#ifdef BSD44SOCKETS
#ifndef VARIABLE_IFREQ
#define VARIABLE_IFREQ
#endif
#endif

#ifdef HAVE_GETIFADDRS
#include <ifaddrs.h>
#endif

/* Solaris provides an extended interface SIOCGLIFCONF.  Other systems
 * may have this as well, but the code has only been tested on Solaris
 * so far, so we only enable it there.  Other platforms may be added as
 * needed.
 *
 * Test for Solaris commented out  --  TSI @ UQV  2003.06.13
 */
#ifdef SIOCGLIFCONF
/* #if defined(sun) */
#define USE_SIOCGLIFCONF
/* #endif */
#endif

#if defined(IPv6) && defined(AF_INET6)
#include <arpa/inet.h>
#endif

#endif                          /* WIN32 */

#define X_INCLUDE_NETDB_H
#include <X11/Xos_r.h>

#include "dixstruct.h"
#include "osdep.h"

#include "xace.h"

Bool defeatAccessControl = FALSE;

#define addrEqual(fam, address, length, host) \
			 ((fam) == (host)->family &&\
			  (length) == (host)->len &&\
			  !memcmp (address, (host)->addr, length))

static int ConvertAddr(struct sockaddr * /*saddr */ ,
                       int * /*len */ ,
                       void ** /*addr */ );

static int CheckAddr(int /*family */ ,
                     const void * /*pAddr */ ,
                     unsigned /*length */ );

static Bool NewHost(int /*family */ ,
                    const void * /*addr */ ,
                    int /*len */ ,
                    int /* addingLocalHosts */ );

/* XFree86 bug #156: To keep track of which hosts were explicitly requested in
   /etc/X<display>.hosts, we've added a requested field to the HOST struct,
   and a LocalHostRequested variable.  These default to FALSE, but are set
   to TRUE in ResetHosts when reading in /etc/X<display>.hosts.  They are
   checked in DisableLocalHost(), which is called to disable the default 
   local host entries when stronger authentication is turned on. */

typedef struct _host {
    short family;
    short len;
    unsigned char *addr;
    struct _host *next;
    int requested;
} HOST;

#define MakeHost(h,l)	(h)=malloc(sizeof *(h)+(l));\
			if (h) { \
			   (h)->addr=(unsigned char *) ((h) + 1);\
			   (h)->requested = FALSE; \
			}
#define FreeHost(h)	free(h)
static HOST *selfhosts = NULL;
static HOST *validhosts = NULL;
static int AccessEnabled = DEFAULT_ACCESS_CONTROL;
static int LocalHostEnabled = FALSE;
static int LocalHostRequested = FALSE;
static int UsingXdmcp = FALSE;

/* FamilyServerInterpreted implementation */
static Bool siAddrMatch(int family, void *addr, int len, HOST * host,
                        ClientPtr client);
static int siCheckAddr(const char *addrString, int length);
static void siTypesInitialize(void);

/*
 * called when authorization is not enabled to add the
 * local host to the access list
 */

void
EnableLocalHost(void)
{
    if (!UsingXdmcp) {
        LocalHostEnabled = TRUE;
        AddLocalHosts();
    }
}

/*
 * called when authorization is enabled to keep us secure
 */
void
DisableLocalHost(void)
{
    HOST *self;

    if (!LocalHostRequested)    /* Fix for XFree86 bug #156 */
        LocalHostEnabled = FALSE;
    for (self = selfhosts; self; self = self->next) {
        if (!self->requested)   /* Fix for XFree86 bug #156 */
            (void) RemoveHost((ClientPtr) NULL, self->family, self->len,
                              (void *) self->addr);
    }
}

/*
 * called at init time when XDMCP will be used; xdmcp always
 * adds local hosts manually when needed
 */

void
AccessUsingXdmcp(void)
{
    UsingXdmcp = TRUE;
    LocalHostEnabled = FALSE;
}

#if  defined(SVR4) && !defined(sun)  && defined(SIOCGIFCONF) && !defined(USE_SIOCGLIFCONF)

/* Deal with different SIOCGIFCONF ioctl semantics on these OSs */

static int
ifioctl(int fd, int cmd, char *arg)
{
    struct strioctl ioc;
    int ret;

    memset((char *) &ioc, 0, sizeof(ioc));
    ioc.ic_cmd = cmd;
    ioc.ic_timout = 0;
    if (cmd == SIOCGIFCONF) {
        ioc.ic_len = ((struct ifconf *) arg)->ifc_len;
        ioc.ic_dp = ((struct ifconf *) arg)->ifc_buf;
    }
    else {
        ioc.ic_len = sizeof(struct ifreq);
        ioc.ic_dp = arg;
    }
    ret = ioctl(fd, I_STR, (char *) &ioc);
    if (ret >= 0 && cmd == SIOCGIFCONF)
#ifdef SVR4
        ((struct ifconf *) arg)->ifc_len = ioc.ic_len;
#endif
    return ret;
}
#else
#define ifioctl ioctl
#endif

/*
 * DefineSelf (fd):
 *
 * Define this host for access control.  Find all the hosts the OS knows about 
 * for this fd and add them to the selfhosts list.
 */

#if !defined(SIOCGIFCONF)
void
DefineSelf(int fd)
{
#if !defined(TCPCONN) && !defined(STREAMSCONN) && !defined(UNIXCONN)
    return;
#else
    register int n;
    int len;
    caddr_t addr;
    int family;
    register HOST *host;

#ifndef WIN32
    struct utsname name;
#else
    struct {
        char nodename[512];
    } name;
#endif

    register struct hostent *hp;

    union {
        struct sockaddr sa;
        struct sockaddr_in in;
#if defined(IPv6) && defined(AF_INET6)
        struct sockaddr_in6 in6;
#endif
    } saddr;

    struct sockaddr_in *inetaddr;
    struct sockaddr_in6 *inet6addr;
    struct sockaddr_in broad_addr;

#ifdef XTHREADS_NEEDS_BYNAMEPARAMS
    _Xgethostbynameparams hparams;
#endif

    /* Why not use gethostname()?  Well, at least on my system, I've had to
     * make an ugly kernel patch to get a name longer than 8 characters, and
     * uname() lets me access to the whole string (it smashes release, you
     * see), whereas gethostname() kindly truncates it for me.
     */
#ifndef WIN32
    uname(&name);
#else
    gethostname(name.nodename, sizeof(name.nodename));
#endif

    hp = _XGethostbyname(name.nodename, hparams);
    if (hp != NULL) {
        saddr.sa.sa_family = hp->h_addrtype;
        switch (hp->h_addrtype) {
        case AF_INET:
            inetaddr = (struct sockaddr_in *) (&(saddr.sa));
            memcpy(&(inetaddr->sin_addr), hp->h_addr, hp->h_length);
            len = sizeof(saddr.sa);
            break;
#if defined(IPv6) && defined(AF_INET6)
        case AF_INET6:
            inet6addr = (struct sockaddr_in6 *) (&(saddr.sa));
            memcpy(&(inet6addr->sin6_addr), hp->h_addr, hp->h_length);
            len = sizeof(saddr.in6);
            break;
#endif
        default:
            goto DefineLocalHost;
        }
        family = ConvertAddr(&(saddr.sa), &len, (void **) &addr);
        if (family != -1 && family != FamilyLocal) {
            for (host = selfhosts;
                 host && !addrEqual(family, addr, len, host);
                 host = host->next);
            if (!host) {
                /* add this host to the host list.      */
                MakeHost(host, len)
                    if (host) {
                    host->family = family;
                    host->len = len;
                    memcpy(host->addr, addr, len);
                    host->next = selfhosts;
                    selfhosts = host;
                }
#ifdef XDMCP
                /*
                 *  If this is an Internet Address, but not the localhost
                 *  address (127.0.0.1), nor the bogus address (0.0.0.0),
                 *  register it.
                 */
                if (family == FamilyInternet &&
                    !(len == 4 &&
                      ((addr[0] == 127) ||
                       (addr[0] == 0 && addr[1] == 0 &&
                        addr[2] == 0 && addr[3] == 0)))
                    ) {
                    XdmcpRegisterConnection(family, (char *) addr, len);
                    broad_addr = *inetaddr;
                    ((struct sockaddr_in *) &broad_addr)->sin_addr.s_addr =
                        htonl(INADDR_BROADCAST);
                    XdmcpRegisterBroadcastAddress((struct sockaddr_in *)
                                                  &broad_addr);
                }
#if defined(IPv6) && defined(AF_INET6)
                else if (family == FamilyInternet6 &&
                         !(IN6_IS_ADDR_LOOPBACK((struct in6_addr *) addr))) {
                    XdmcpRegisterConnection(family, (char *) addr, len);
                }
#endif

#endif                          /* XDMCP */
            }
        }
    }
    /*
     * now add a host of family FamilyLocalHost...
     */
 DefineLocalHost:
    for (host = selfhosts;
         host && !addrEqual(FamilyLocalHost, "", 0, host); host = host->next);
    if (!host) {
        MakeHost(host, 0);
        if (host) {
            host->family = FamilyLocalHost;
            host->len = 0;
            /* Nothing to store in host->addr */
            host->next = selfhosts;
            selfhosts = host;
        }
    }
#endif                          /* !TCPCONN && !STREAMSCONN && !UNIXCONN */
}

#else

#ifdef USE_SIOCGLIFCONF
#define ifr_type    struct lifreq
#else
#define ifr_type    struct ifreq
#endif

#ifdef VARIABLE_IFREQ
#define ifr_size(p) (sizeof (struct ifreq) + \
		     (p->ifr_addr.sa_len > sizeof (p->ifr_addr) ? \
		      p->ifr_addr.sa_len - sizeof (p->ifr_addr) : 0))
#define ifraddr_size(a) (a.sa_len)
#else
#define ifr_size(p) (sizeof (ifr_type))
#define ifraddr_size(a) (sizeof (a))
#endif

#if defined(IPv6) && defined(AF_INET6)
static void
in6_fillscopeid(struct sockaddr_in6 *sin6)
{
#if defined(__KAME__)
    if (IN6_IS_ADDR_LINKLOCAL(&sin6->sin6_addr)) {
        sin6->sin6_scope_id =
            ntohs(*(u_int16_t *) &sin6->sin6_addr.s6_addr[2]);
        sin6->sin6_addr.s6_addr[2] = sin6->sin6_addr.s6_addr[3] = 0;
    }
#endif
}
#endif

void
DefineSelf(int fd)
{
#ifndef HAVE_GETIFADDRS
    char *cp, *cplim;

#ifdef USE_SIOCGLIFCONF
    struct sockaddr_storage buf[16];
    struct lifconf ifc;
    register struct lifreq *ifr;

#ifdef SIOCGLIFNUM
    struct lifnum ifn;
#endif
#else                           /* !USE_SIOCGLIFCONF */
    char buf[2048];
    struct ifconf ifc;
    register struct ifreq *ifr;
#endif
    void *bufptr = buf;
#else                           /* HAVE_GETIFADDRS */
    struct ifaddrs *ifap, *ifr;
#endif
    int len;
    unsigned char *addr;
    int family;
    register HOST *host;

#ifndef HAVE_GETIFADDRS

    len = sizeof(buf);

#ifdef USE_SIOCGLIFCONF

#ifdef SIOCGLIFNUM
    ifn.lifn_family = AF_UNSPEC;
    ifn.lifn_flags = 0;
    if (ioctl(fd, SIOCGLIFNUM, (char *) &ifn) < 0)
        ErrorF("Getting interface count: %s\n", strerror(errno));
    if (len < (ifn.lifn_count * sizeof(struct lifreq))) {
        len = ifn.lifn_count * sizeof(struct lifreq);
        bufptr = malloc(len);
    }
#endif

    ifc.lifc_family = AF_UNSPEC;
    ifc.lifc_flags = 0;
    ifc.lifc_len = len;
    ifc.lifc_buf = bufptr;

#define IFC_IOCTL_REQ SIOCGLIFCONF
#define IFC_IFC_REQ ifc.lifc_req
#define IFC_IFC_LEN ifc.lifc_len
#define IFR_IFR_ADDR ifr->lifr_addr
#define IFR_IFR_NAME ifr->lifr_name

#else                           /* Use SIOCGIFCONF */
    ifc.ifc_len = len;
    ifc.ifc_buf = bufptr;

#define IFC_IOCTL_REQ SIOCGIFCONF
#define IFC_IFC_REQ ifc.ifc_req
#define IFC_IFC_LEN ifc.ifc_len
#define IFR_IFR_ADDR ifr->ifr_addr
#define IFR_IFR_NAME ifr->ifr_name
#endif

    if (ifioctl(fd, IFC_IOCTL_REQ, (void *) &ifc) < 0)
        ErrorF("Getting interface configuration (4): %s\n", strerror(errno));

    cplim = (char *) IFC_IFC_REQ + IFC_IFC_LEN;

    for (cp = (char *) IFC_IFC_REQ; cp < cplim; cp += ifr_size(ifr)) {
        ifr = (ifr_type *) cp;
        len = ifraddr_size(IFR_IFR_ADDR);
        family = ConvertAddr((struct sockaddr *) &IFR_IFR_ADDR,
                             &len, (void **) &addr);
        if (family == -1 || family == FamilyLocal)
            continue;
#if defined(IPv6) && defined(AF_INET6)
        if (family == FamilyInternet6)
            in6_fillscopeid((struct sockaddr_in6 *) &IFR_IFR_ADDR);
#endif
        for (host = selfhosts;
             host && !addrEqual(family, addr, len, host); host = host->next);
        if (host)
            continue;
        MakeHost(host, len)
            if (host) {
            host->family = family;
            host->len = len;
            memcpy(host->addr, addr, len);
            host->next = selfhosts;
            selfhosts = host;
        }
#ifdef XDMCP
        {
#ifdef USE_SIOCGLIFCONF
            struct sockaddr_storage broad_addr;
#else
            struct sockaddr broad_addr;
#endif

            /*
             * If this isn't an Internet Address, don't register it.
             */
            if (family != FamilyInternet
#if defined(IPv6) && defined(AF_INET6)
                && family != FamilyInternet6
#endif
                )
                continue;

            /*
             * ignore 'localhost' entries as they're not useful
             * on the other end of the wire
             */
            if (family == FamilyInternet &&
                addr[0] == 127 && addr[1] == 0 && addr[2] == 0 && addr[3] == 1)
                continue;
#if defined(IPv6) && defined(AF_INET6)
            else if (family == FamilyInternet6 &&
                     IN6_IS_ADDR_LOOPBACK((struct in6_addr *) addr))
                continue;
#endif

            /*
             * Ignore '0.0.0.0' entries as they are
             * returned by some OSes for unconfigured NICs but they are
             * not useful on the other end of the wire.
             */
            if (len == 4 &&
                addr[0] == 0 && addr[1] == 0 && addr[2] == 0 && addr[3] == 0)
                continue;

            XdmcpRegisterConnection(family, (char *) addr, len);

#if defined(IPv6) && defined(AF_INET6)
            /* IPv6 doesn't support broadcasting, so we drop out here */
            if (family == FamilyInternet6)
                continue;
#endif

            broad_addr = IFR_IFR_ADDR;

            ((struct sockaddr_in *) &broad_addr)->sin_addr.s_addr =
                htonl(INADDR_BROADCAST);
#if defined(USE_SIOCGLIFCONF) && defined(SIOCGLIFBRDADDR)
            {
                struct lifreq broad_req;

                broad_req = *ifr;
                if (ioctl(fd, SIOCGLIFFLAGS, (char *) &broad_req) != -1 &&
                    (broad_req.lifr_flags & IFF_BROADCAST) &&
                    (broad_req.lifr_flags & IFF_UP)
                    ) {
                    broad_req = *ifr;
                    if (ioctl(fd, SIOCGLIFBRDADDR, &broad_req) != -1)
                        broad_addr = broad_req.lifr_broadaddr;
                    else
                        continue;
                }
                else
                    continue;
            }

#elif defined(SIOCGIFBRDADDR)
            {
                struct ifreq broad_req;

                broad_req = *ifr;
                if (ifioctl(fd, SIOCGIFFLAGS, (void *) &broad_req) != -1 &&
                    (broad_req.ifr_flags & IFF_BROADCAST) &&
                    (broad_req.ifr_flags & IFF_UP)
                    ) {
                    broad_req = *ifr;
                    if (ifioctl(fd, SIOCGIFBRDADDR, (void *) &broad_req) != -1)
                        broad_addr = broad_req.ifr_addr;
                    else
                        continue;
                }
                else
                    continue;
            }
#endif                          /* SIOCGIFBRDADDR */
            XdmcpRegisterBroadcastAddress((struct sockaddr_in *) &broad_addr);
        }
#endif                          /* XDMCP */
    }
    if (bufptr != buf)
        free(bufptr);
#else                           /* HAVE_GETIFADDRS */
    if (getifaddrs(&ifap) < 0) {
        ErrorF("Warning: getifaddrs returns %s\n", strerror(errno));
        return;
    }
    for (ifr = ifap; ifr != NULL; ifr = ifr->ifa_next) {
        if (!ifr->ifa_addr)
            continue;
        len = sizeof(*(ifr->ifa_addr));
        family = ConvertAddr((struct sockaddr *) ifr->ifa_addr, &len,
                             (void **) &addr);
        if (family == -1 || family == FamilyLocal)
            continue;
#if defined(IPv6) && defined(AF_INET6)
        if (family == FamilyInternet6)
            in6_fillscopeid((struct sockaddr_in6 *) ifr->ifa_addr);
#endif

        for (host = selfhosts;
             host != NULL && !addrEqual(family, addr, len, host);
             host = host->next);
        if (host != NULL)
            continue;
        MakeHost(host, len);
        if (host != NULL) {
            host->family = family;
            host->len = len;
            memcpy(host->addr, addr, len);
            host->next = selfhosts;
            selfhosts = host;
        }
#ifdef XDMCP
        {
            /*
             * If this isn't an Internet Address, don't register it.
             */
            if (family != FamilyInternet
#if defined(IPv6) && defined(AF_INET6)
                && family != FamilyInternet6
#endif
                )
                continue;

            /* 
             * ignore 'localhost' entries as they're not useful
             * on the other end of the wire
             */
            if (ifr->ifa_flags & IFF_LOOPBACK)
                continue;

            if (family == FamilyInternet &&
                addr[0] == 127 && addr[1] == 0 && addr[2] == 0 && addr[3] == 1)
                continue;

            /*
             * Ignore '0.0.0.0' entries as they are
             * returned by some OSes for unconfigured NICs but they are
             * not useful on the other end of the wire.
             */
            if (len == 4 &&
                addr[0] == 0 && addr[1] == 0 && addr[2] == 0 && addr[3] == 0)
                continue;
#if defined(IPv6) && defined(AF_INET6)
            else if (family == FamilyInternet6 &&
                     IN6_IS_ADDR_LOOPBACK((struct in6_addr *) addr))
                continue;
#endif
            XdmcpRegisterConnection(family, (char *) addr, len);
#if defined(IPv6) && defined(AF_INET6)
            if (family == FamilyInternet6)
                /* IPv6 doesn't support broadcasting, so we drop out here */
                continue;
#endif
            if ((ifr->ifa_flags & IFF_BROADCAST) &&
                (ifr->ifa_flags & IFF_UP) && ifr->ifa_broadaddr)
                XdmcpRegisterBroadcastAddress((struct sockaddr_in *) ifr->
                                              ifa_broadaddr);
            else
                continue;
        }
#endif                          /* XDMCP */

    }                           /* for */
    freeifaddrs(ifap);
#endif                          /* HAVE_GETIFADDRS */

    /*
     * add something of FamilyLocalHost
     */
    for (host = selfhosts;
         host && !addrEqual(FamilyLocalHost, "", 0, host); host = host->next);
    if (!host) {
        MakeHost(host, 0);
        if (host) {
            host->family = FamilyLocalHost;
            host->len = 0;
            /* Nothing to store in host->addr */
            host->next = selfhosts;
            selfhosts = host;
        }
    }
}
#endif                          /* hpux && !HAVE_IFREQ */

#ifdef XDMCP
void
AugmentSelf(void *from, int len)
{
    int family;
    void *addr;
    register HOST *host;

    family = ConvertAddr(from, &len, (void **) &addr);
    if (family == -1 || family == FamilyLocal)
        return;
    for (host = selfhosts; host; host = host->next) {
        if (addrEqual(family, addr, len, host))
            return;
    }
    MakeHost(host, len)
        if (!host)
        return;
    host->family = family;
    host->len = len;
    memcpy(host->addr, addr, len);
    host->next = selfhosts;
    selfhosts = host;
}
#endif

void
AddLocalHosts(void)
{
    HOST *self;

    for (self = selfhosts; self; self = self->next)
        /* Fix for XFree86 bug #156: pass addingLocal = TRUE to
         * NewHost to tell that we are adding the default local
         * host entries and not to flag the entries as being
         * explicitely requested */
        (void) NewHost(self->family, self->addr, self->len, TRUE);
}

/* Reset access control list to initial hosts */
void
ResetHosts(const char *display)
{
    register HOST *host;
    char lhostname[120], ohostname[120];
    char *hostname = ohostname;
    char fname[PATH_MAX + 1];
    int fnamelen;
    FILE *fd;
    char *ptr;
    int i, hostlen;

#if (defined(TCPCONN) || defined(STREAMSCONN) ) && \
     (!defined(IPv6) || !defined(AF_INET6))
    union {
        struct sockaddr sa;
#if defined(TCPCONN) || defined(STREAMSCONN)
        struct sockaddr_in in;
#endif                          /* TCPCONN || STREAMSCONN */
    } saddr;
#endif
    int family = 0;
    void *addr;
    int len;

    siTypesInitialize();
    AccessEnabled = defeatAccessControl ? FALSE : DEFAULT_ACCESS_CONTROL;
    LocalHostEnabled = FALSE;
    while ((host = validhosts) != 0) {
        validhosts = host->next;
        FreeHost(host);
    }

#if defined WIN32 && defined __MINGW32__
#define ETC_HOST_PREFIX "X"
#else
#define ETC_HOST_PREFIX "/etc/X"
#endif
#define ETC_HOST_SUFFIX ".hosts"
    fnamelen = strlen(ETC_HOST_PREFIX) + strlen(ETC_HOST_SUFFIX) +
        strlen(display) + 1;
    if (fnamelen > sizeof(fname))
        FatalError("Display name `%s' is too long\n", display);
    snprintf(fname, sizeof(fname), ETC_HOST_PREFIX "%s" ETC_HOST_SUFFIX,
             display);

    if ((fd = fopen(fname, "r")) != 0) {
        while (fgets(ohostname, sizeof(ohostname), fd)) {
            family = FamilyWild;
            if (*ohostname == '#')
                continue;
            if ((ptr = strchr(ohostname, '\n')) != 0)
                *ptr = 0;
            hostlen = strlen(ohostname) + 1;
            for (i = 0; i < hostlen; i++)
                lhostname[i] = tolower(ohostname[i]);
            hostname = ohostname;
            if (!strncmp("local:", lhostname, 6)) {
                family = FamilyLocalHost;
                NewHost(family, "", 0, FALSE);
                LocalHostRequested = TRUE;      /* Fix for XFree86 bug #156 */
            }
#if defined(TCPCONN) || defined(STREAMSCONN)
            else if (!strncmp("inet:", lhostname, 5)) {
                family = FamilyInternet;
                hostname = ohostname + 5;
            }
#if defined(IPv6) && defined(AF_INET6)
            else if (!strncmp("inet6:", lhostname, 6)) {
                family = FamilyInternet6;
                hostname = ohostname + 6;
            }
#endif
#endif
#ifdef SECURE_RPC
            else if (!strncmp("nis:", lhostname, 4)) {
                family = FamilyNetname;
                hostname = ohostname + 4;
            }
#endif
            else if (!strncmp("si:", lhostname, 3)) {
                family = FamilyServerInterpreted;
                hostname = ohostname + 3;
                hostlen -= 3;
            }

            if (family == FamilyServerInterpreted) {
                len = siCheckAddr(hostname, hostlen);
                if (len >= 0) {
                    NewHost(family, hostname, len, FALSE);
                }
            }
            else
#ifdef SECURE_RPC
            if ((family == FamilyNetname) || (strchr(hostname, '@'))) {
                SecureRPCInit();
                (void) NewHost(FamilyNetname, hostname, strlen(hostname),
                               FALSE);
            }
            else
#endif                          /* SECURE_RPC */
#if defined(TCPCONN) || defined(STREAMSCONN)
            {
#if defined(IPv6) && defined(AF_INET6)
                if ((family == FamilyInternet) || (family == FamilyInternet6) ||
                    (family == FamilyWild)) {
                    struct addrinfo *addresses;
                    struct addrinfo *a;
                    int f;

                    if (getaddrinfo(hostname, NULL, NULL, &addresses) == 0) {
                        for (a = addresses; a != NULL; a = a->ai_next) {
                            len = a->ai_addrlen;
                            f = ConvertAddr(a->ai_addr, &len,
                                            (void **) &addr);
                            if ((family == f) ||
                                ((family == FamilyWild) && (f != -1))) {
                                NewHost(f, addr, len, FALSE);
                            }
                        }
                        freeaddrinfo(addresses);
                    }
                }
#else
#ifdef XTHREADS_NEEDS_BYNAMEPARAMS
                _Xgethostbynameparams hparams;
#endif
                register struct hostent *hp;

                /* host name */
                if ((family == FamilyInternet &&
                     ((hp = _XGethostbyname(hostname, hparams)) != 0)) ||
                    ((hp = _XGethostbyname(hostname, hparams)) != 0)) {
                    saddr.sa.sa_family = hp->h_addrtype;
                    len = sizeof(saddr.sa);
                    if ((family =
                         ConvertAddr(&saddr.sa, &len,
                                     (void **) &addr)) != -1) {
#ifdef h_addr                   /* new 4.3bsd version of gethostent */
                        char **list;

                        /* iterate over the addresses */
                        for (list = hp->h_addr_list; *list; list++)
                            (void) NewHost(family, (void *) *list, len, FALSE);
#else
                        (void) NewHost(family, (void *) hp->h_addr, len,
                                       FALSE);
#endif
                    }
                }
#endif                          /* IPv6 */
            }
#endif                          /* TCPCONN || STREAMSCONN */
            family = FamilyWild;
        }
        fclose(fd);
    }
}

/* Is client on the local host */
Bool
ComputeLocalClient(ClientPtr client)
{
    int alen, family, notused;
    Xtransaddr *from = NULL;
    void *addr;
    register HOST *host;
    OsCommPtr oc = (OsCommPtr) client->osPrivate;

    if (!oc->trans_conn)
        return FALSE;

    if (!_XSERVTransGetPeerAddr(oc->trans_conn, &notused, &alen, &from)) {
        family = ConvertAddr((struct sockaddr *) from,
                             &alen, (void **) &addr);
        if (family == -1) {
            free(from);
            return FALSE;
        }
        if (family == FamilyLocal) {
            free(from);
            return TRUE;
        }
        for (host = selfhosts; host; host = host->next) {
            if (addrEqual(family, addr, alen, host)) {
                free(from);
                return TRUE;
            }
        }
        free(from);
    }
    return FALSE;
}

/*
 * Return the uid and gid of a connected local client
 * 
 * Used by XShm to test access rights to shared memory segments
 */
int
LocalClientCred(ClientPtr client, int *pUid, int *pGid)
{
    LocalClientCredRec *lcc;
    int ret = GetLocalClientCreds(client, &lcc);

    if (ret == 0) {
#ifdef HAVE_GETZONEID           /* only local if in the same zone */
        if ((lcc->fieldsSet & LCC_ZID_SET) && (lcc->zoneid != getzoneid())) {
            FreeLocalClientCreds(lcc);
            return -1;
        }
#endif
        if ((lcc->fieldsSet & LCC_UID_SET) && (pUid != NULL))
            *pUid = lcc->euid;
        if ((lcc->fieldsSet & LCC_GID_SET) && (pGid != NULL))
            *pGid = lcc->egid;
        FreeLocalClientCreds(lcc);
    }
    return ret;
}

/*
 * Return the uid and all gids of a connected local client
 * Allocates a LocalClientCredRec - caller must call FreeLocalClientCreds
 * 
 * Used by localuser & localgroup ServerInterpreted access control forms below
 * Used by AuthAudit to log who local connections came from
 */
int
GetLocalClientCreds(ClientPtr client, LocalClientCredRec ** lccp)
{
#if defined(HAVE_GETPEEREID) || defined(HAVE_GETPEERUCRED) || defined(SO_PEERCRED)
    int fd;
    XtransConnInfo ci;
    LocalClientCredRec *lcc;

#ifdef HAVE_GETPEEREID
    uid_t uid;
    gid_t gid;
#elif defined(HAVE_GETPEERUCRED)
    ucred_t *peercred = NULL;
    const gid_t *gids;
#elif defined(SO_PEERCRED)
    struct ucred peercred;
    socklen_t so_len = sizeof(peercred);
#endif

    if (client == NULL)
        return -1;
    ci = ((OsCommPtr) client->osPrivate)->trans_conn;
#if !(defined(sun) && defined(HAVE_GETPEERUCRED))
    /* Most implementations can only determine peer credentials for Unix 
     * domain sockets - Solaris getpeerucred can work with a bit more, so 
     * we just let it tell us if the connection type is supported or not
     */
    if (!_XSERVTransIsLocal(ci)) {
        return -1;
    }
#endif

    *lccp = calloc(1, sizeof(LocalClientCredRec));
    if (*lccp == NULL)
        return -1;
    lcc = *lccp;

    fd = _XSERVTransGetConnectionNumber(ci);
#ifdef HAVE_GETPEEREID
    if (getpeereid(fd, &uid, &gid) == -1) {
        FreeLocalClientCreds(lcc);
        return -1;
    }
    lcc->euid = uid;
    lcc->egid = gid;
    lcc->fieldsSet = LCC_UID_SET | LCC_GID_SET;
    return 0;
#elif defined(HAVE_GETPEERUCRED)
    if (getpeerucred(fd, &peercred) < 0) {
        FreeLocalClientCreds(lcc);
        return -1;
    }
    lcc->euid = ucred_geteuid(peercred);
    if (lcc->euid != -1)
        lcc->fieldsSet |= LCC_UID_SET;
    lcc->egid = ucred_getegid(peercred);
    if (lcc->egid != -1)
        lcc->fieldsSet |= LCC_GID_SET;
    lcc->pid = ucred_getpid(peercred);
    if (lcc->pid != -1)
        lcc->fieldsSet |= LCC_PID_SET;
#ifdef HAVE_GETZONEID
    lcc->zoneid = ucred_getzoneid(peercred);
    if (lcc->zoneid != -1)
        lcc->fieldsSet |= LCC_ZID_SET;
#endif
    lcc->nSuppGids = ucred_getgroups(peercred, &gids);
    if (lcc->nSuppGids > 0) {
        lcc->pSuppGids = calloc(lcc->nSuppGids, sizeof(int));
        if (lcc->pSuppGids == NULL) {
            lcc->nSuppGids = 0;
        }
        else {
            int i;

            for (i = 0; i < lcc->nSuppGids; i++) {
                (lcc->pSuppGids)[i] = (int) gids[i];
            }
        }
    }
    else {
        lcc->nSuppGids = 0;
    }
    ucred_free(peercred);
    return 0;
#elif defined(SO_PEERCRED)
    if (getsockopt(fd, SOL_SOCKET, SO_PEERCRED, &peercred, &so_len) == -1) {
        FreeLocalClientCreds(lcc);
        return -1;
    }
    lcc->euid = peercred.uid;
    lcc->egid = peercred.gid;
    lcc->pid = peercred.pid;
    lcc->fieldsSet = LCC_UID_SET | LCC_GID_SET | LCC_PID_SET;
    return 0;
#endif
#else
    /* No system call available to get the credentials of the peer */
#define NO_LOCAL_CLIENT_CRED
    return -1;
#endif
}

void
FreeLocalClientCreds(LocalClientCredRec * lcc)
{
    if (lcc != NULL) {
        if (lcc->nSuppGids > 0) {
            free(lcc->pSuppGids);
        }
        free(lcc);
    }
}

static int
AuthorizedClient(ClientPtr client)
{
    int rc;

    if (!client || defeatAccessControl)
        return Success;

    /* untrusted clients can't change host access */
    rc = XaceHook(XACE_SERVER_ACCESS, client, DixManageAccess);
    if (rc != Success)
        return rc;

    return client->local ? Success : BadAccess;
}

/* Add a host to the access control list.  This is the external interface
 * called from the dispatcher */

int
AddHost(ClientPtr client, int family, unsigned length,  /* of bytes in pAddr */
        const void *pAddr)
{
    int rc, len;

    rc = AuthorizedClient(client);
    if (rc != Success)
        return rc;
    switch (family) {
    case FamilyLocalHost:
        len = length;
        LocalHostEnabled = TRUE;
        break;
#ifdef SECURE_RPC
    case FamilyNetname:
        len = length;
        SecureRPCInit();
        break;
#endif
    case FamilyInternet:
#if defined(IPv6) && defined(AF_INET6)
    case FamilyInternet6:
#endif
    case FamilyDECnet:
    case FamilyChaos:
    case FamilyServerInterpreted:
        if ((len = CheckAddr(family, pAddr, length)) < 0) {
            client->errorValue = length;
            return BadValue;
        }
        break;
    case FamilyLocal:
    default:
        client->errorValue = family;
        return BadValue;
    }
    if (NewHost(family, pAddr, len, FALSE))
        return Success;
    return BadAlloc;
}

Bool
ForEachHostInFamily(int family, Bool (*func) (unsigned char * /* addr */ ,
                                              short /* len */ ,
                                              void */* closure */ ),
                    void *closure)
{
    HOST *host;

    for (host = validhosts; host; host = host->next)
        if (family == host->family && func(host->addr, host->len, closure))
            return TRUE;
    return FALSE;
}

/* Add a host to the access control list. This is the internal interface 
 * called when starting or resetting the server */
static Bool
NewHost(int family, const void *addr, int len, int addingLocalHosts)
{
    register HOST *host;

    for (host = validhosts; host; host = host->next) {
        if (addrEqual(family, addr, len, host))
            return TRUE;
    }
    if (!addingLocalHosts) {    /* Fix for XFree86 bug #156 */
        for (host = selfhosts; host; host = host->next) {
            if (addrEqual(family, addr, len, host)) {
                host->requested = TRUE;
                break;
            }
        }
    }
    MakeHost(host, len)
        if (!host)
        return FALSE;
    host->family = family;
    host->len = len;
    memcpy(host->addr, addr, len);
    host->next = validhosts;
    validhosts = host;
    return TRUE;
}

/* Remove a host from the access control list */

int
RemoveHost(ClientPtr client, int family, unsigned length,       /* of bytes in pAddr */
           void *pAddr)
{
    int rc, len;
    register HOST *host, **prev;

    rc = AuthorizedClient(client);
    if (rc != Success)
        return rc;
    switch (family) {
    case FamilyLocalHost:
        len = length;
        LocalHostEnabled = FALSE;
        break;
#ifdef SECURE_RPC
    case FamilyNetname:
        len = length;
        break;
#endif
    case FamilyInternet:
#if defined(IPv6) && defined(AF_INET6)
    case FamilyInternet6:
#endif
    case FamilyDECnet:
    case FamilyChaos:
    case FamilyServerInterpreted:
        if ((len = CheckAddr(family, pAddr, length)) < 0) {
            client->errorValue = length;
            return BadValue;
        }
        break;
    case FamilyLocal:
    default:
        client->errorValue = family;
        return BadValue;
    }
    for (prev = &validhosts;
         (host = *prev) && (!addrEqual(family, pAddr, len, host));
         prev = &host->next);
    if (host) {
        *prev = host->next;
        FreeHost(host);
    }
    return Success;
}

/* Get all hosts in the access control list */
int
GetHosts(void **data, int *pnHosts, int *pLen, BOOL * pEnabled)
{
    int len;
    register int n = 0;
    register unsigned char *ptr;
    register HOST *host;
    int nHosts = 0;

    *pEnabled = AccessEnabled ? EnableAccess : DisableAccess;
    for (host = validhosts; host; host = host->next) {
        nHosts++;
        n += pad_to_int32(host->len) + sizeof(xHostEntry);
    }
    if (n) {
        *data = ptr = malloc(n);
        if (!ptr) {
            return BadAlloc;
        }
        for (host = validhosts; host; host = host->next) {
            len = host->len;
            ((xHostEntry *) ptr)->family = host->family;
            ((xHostEntry *) ptr)->length = len;
            ptr += sizeof(xHostEntry);
            memcpy(ptr, host->addr, len);
            ptr += pad_to_int32(len);
        }
    }
    else {
        *data = NULL;
    }
    *pnHosts = nHosts;
    *pLen = n;
    return Success;
}

/* Check for valid address family and length, and return address length. */

 /*ARGSUSED*/ static int
CheckAddr(int family, const void *pAddr, unsigned length)
{
    int len;

    switch (family) {
#if defined(TCPCONN) || defined(STREAMSCONN)
    case FamilyInternet:
        if (length == sizeof(struct in_addr))
            len = length;
        else
            len = -1;
        break;
#if defined(IPv6) && defined(AF_INET6)
    case FamilyInternet6:
        if (length == sizeof(struct in6_addr))
            len = length;
        else
            len = -1;
        break;
#endif
#endif
    case FamilyServerInterpreted:
        len = siCheckAddr(pAddr, length);
        break;
    default:
        len = -1;
    }
    return len;
}

/* Check if a host is not in the access control list. 
 * Returns 1 if host is invalid, 0 if we've found it. */

int
InvalidHost(register struct sockaddr *saddr, int len, ClientPtr client)
{
    int family;
    void *addr;
    register HOST *selfhost, *host;

    if (!AccessEnabled)         /* just let them in */
        return 0;
    family = ConvertAddr(saddr, &len, (void **) &addr);
    if (family == -1)
        return 1;
    if (family == FamilyLocal) {
        if (!LocalHostEnabled) {
            /*
             * check to see if any local address is enabled.  This 
             * implicitly enables local connections.
             */
            for (selfhost = selfhosts; selfhost; selfhost = selfhost->next) {
                for (host = validhosts; host; host = host->next) {
                    if (addrEqual(selfhost->family, selfhost->addr,
                                  selfhost->len, host))
                        return 0;
                }
            }
        }
        else
            return 0;
    }
    for (host = validhosts; host; host = host->next) {
        if (host->family == FamilyServerInterpreted) {
            if (siAddrMatch(family, addr, len, host, client)) {
                return 0;
            }
        }
        else {
            if (addrEqual(family, addr, len, host))
                return 0;
        }

    }
    return 1;
}

static int
ConvertAddr(register struct sockaddr *saddr, int *len, void **addr)
{
    if (*len == 0)
        return FamilyLocal;
    switch (saddr->sa_family) {
    case AF_UNSPEC:
#if defined(UNIXCONN) || defined(LOCALCONN)
    case AF_UNIX:
#endif
        return FamilyLocal;
#if defined(TCPCONN) || defined(STREAMSCONN)
    case AF_INET:
#ifdef WIN32
        if (16777343 == *(long *) &((struct sockaddr_in *) saddr)->sin_addr)
            return FamilyLocal;
#endif
        *len = sizeof(struct in_addr);
        *addr = (void *) &(((struct sockaddr_in *) saddr)->sin_addr);
        return FamilyInternet;
#if defined(IPv6) && defined(AF_INET6)
    case AF_INET6:
    {
        struct sockaddr_in6 *saddr6 = (struct sockaddr_in6 *) saddr;

        if (IN6_IS_ADDR_V4MAPPED(&(saddr6->sin6_addr))) {
            *len = sizeof(struct in_addr);
            *addr = (void *) &(saddr6->sin6_addr.s6_addr[12]);
            return FamilyInternet;
        }
        else {
            *len = sizeof(struct in6_addr);
            *addr = (void *) &(saddr6->sin6_addr);
            return FamilyInternet6;
        }
    }
#endif
#endif
    default:
        return -1;
    }
}

int
ChangeAccessControl(ClientPtr client, int fEnabled)
{
    int rc = AuthorizedClient(client);

    if (rc != Success)
        return rc;
    AccessEnabled = fEnabled;
    return Success;
}

/* returns FALSE if xhost + in effect, else TRUE */
int
GetAccessControl(void)
{
    return AccessEnabled;
}

/*****************************************************************************
 * FamilyServerInterpreted host entry implementation
 *
 * Supports an extensible system of host types which the server can interpret
 * See the IPv6 extensions to the X11 protocol spec for the definition.
 *
 * Currently supported schemes:
 *
 * hostname	- hostname as defined in IETF RFC 2396
 * ipv6		- IPv6 literal address as defined in IETF RFC's 3513 and <TBD>
 *
 * See xc/doc/specs/SIAddresses for formal definitions of each type.
 */

/* These definitions and the siTypeAdd function could be exported in the 
 * future to enable loading additional host types, but that was not done for
 * the initial implementation.
 */
typedef Bool (*siAddrMatchFunc) (int family, void *addr, int len,
                                 const char *siAddr, int siAddrlen,
                                 ClientPtr client, void *siTypePriv);
typedef int (*siCheckAddrFunc) (const char *addrString, int length,
                                void *siTypePriv);

struct siType {
    struct siType *next;
    const char *typeName;
    siAddrMatchFunc addrMatch;
    siCheckAddrFunc checkAddr;
    void *typePriv;             /* Private data for type routines */
};

static struct siType *siTypeList;

static int
siTypeAdd(const char *typeName, siAddrMatchFunc addrMatch,
          siCheckAddrFunc checkAddr, void *typePriv)
{
    struct siType *s, *p;

    if ((typeName == NULL) || (addrMatch == NULL) || (checkAddr == NULL))
        return BadValue;

    for (s = siTypeList, p = NULL; s != NULL; p = s, s = s->next) {
        if (strcmp(typeName, s->typeName) == 0) {
            s->addrMatch = addrMatch;
            s->checkAddr = checkAddr;
            s->typePriv = typePriv;
            return Success;
        }
    }

    s = malloc(sizeof(struct siType));
    if (s == NULL)
        return BadAlloc;

    if (p == NULL)
        siTypeList = s;
    else
        p->next = s;

    s->next = NULL;
    s->typeName = typeName;
    s->addrMatch = addrMatch;
    s->checkAddr = checkAddr;
    s->typePriv = typePriv;
    return Success;
}

/* Checks to see if a host matches a server-interpreted host entry */
static Bool
siAddrMatch(int family, void *addr, int len, HOST * host, ClientPtr client)
{
    Bool matches = FALSE;
    struct siType *s;
    const char *valueString;
    int addrlen;

    valueString = (const char *) memchr(host->addr, '\0', host->len);
    if (valueString != NULL) {
        for (s = siTypeList; s != NULL; s = s->next) {
            if (strcmp((char *) host->addr, s->typeName) == 0) {
                addrlen = host->len - (strlen((char *) host->addr) + 1);
                matches = s->addrMatch(family, addr, len,
                                       valueString + 1, addrlen, client,
                                       s->typePriv);
                break;
            }
        }
#ifdef FAMILY_SI_DEBUG
        ErrorF("Xserver: siAddrMatch(): type = %s, value = %*.*s -- %s\n",
               host->addr, addrlen, addrlen, valueString + 1,
               (matches) ? "accepted" : "rejected");
#endif
    }
    return matches;
}

static int
siCheckAddr(const char *addrString, int length)
{
    const char *valueString;
    int addrlen, typelen;
    int len = -1;
    struct siType *s;

    /* Make sure there is a \0 byte inside the specified length
       to separate the address type from the address value. */
    valueString = (const char *) memchr(addrString, '\0', length);
    if (valueString != NULL) {
        /* Make sure the first string is a recognized address type,
         * and the second string is a valid address of that type. 
         */
        typelen = strlen(addrString) + 1;
        addrlen = length - typelen;

        for (s = siTypeList; s != NULL; s = s->next) {
            if (strcmp(addrString, s->typeName) == 0) {
                len = s->checkAddr(valueString + 1, addrlen, s->typePriv);
                if (len >= 0) {
                    len += typelen;
                }
                break;
            }
        }
#ifdef FAMILY_SI_DEBUG
        {
            const char *resultMsg;

            if (s == NULL) {
                resultMsg = "type not registered";
            }
            else {
                if (len == -1)
                    resultMsg = "rejected";
                else
                    resultMsg = "accepted";
            }

            ErrorF
                ("Xserver: siCheckAddr(): type = %s, value = %*.*s, len = %d -- %s\n",
                 addrString, addrlen, addrlen, valueString + 1, len, resultMsg);
        }
#endif
    }
    return len;
}

/***
 * Hostname server-interpreted host type
 *
 * Stored as hostname string, explicitly defined to be resolved ONLY
 * at access check time, to allow for hosts with dynamic addresses
 * but static hostnames, such as found in some DHCP & mobile setups.
 *
 * Hostname must conform to IETF RFC 2396 sec. 3.2.2, which defines it as:
 * 	hostname     = *( domainlabel "." ) toplabel [ "." ]
 *	domainlabel  = alphanum | alphanum *( alphanum | "-" ) alphanum
 *	toplabel     = alpha | alpha *( alphanum | "-" ) alphanum
 */

#ifdef NI_MAXHOST
#define SI_HOSTNAME_MAXLEN NI_MAXHOST
#else
#ifdef MAXHOSTNAMELEN
#define SI_HOSTNAME_MAXLEN MAXHOSTNAMELEN
#else
#define SI_HOSTNAME_MAXLEN 256
#endif
#endif

static Bool
siHostnameAddrMatch(int family, void *addr, int len,
                    const char *siAddr, int siAddrLen, ClientPtr client,
                    void *typePriv)
{
    Bool res = FALSE;

/* Currently only supports checking against IPv4 & IPv6 connections, but 
 * support for other address families, such as DECnet, could be added if 
 * desired.
 */
#if defined(IPv6) && defined(AF_INET6)
    if ((family == FamilyInternet) || (family == FamilyInternet6)) {
        char hostname[SI_HOSTNAME_MAXLEN];
        struct addrinfo *addresses;
        struct addrinfo *a;
        int f, hostaddrlen;
        void *hostaddr;

        if (siAddrLen >= sizeof(hostname))
            return FALSE;

        strlcpy(hostname, siAddr, siAddrLen + 1);

        if (getaddrinfo(hostname, NULL, NULL, &addresses) == 0) {
            for (a = addresses; a != NULL; a = a->ai_next) {
                hostaddrlen = a->ai_addrlen;
                f = ConvertAddr(a->ai_addr, &hostaddrlen, &hostaddr);
                if ((f == family) && (len == hostaddrlen) &&
                    (memcmp(addr, hostaddr, len) == 0)) {
                    res = TRUE;
                    break;
                }
            }
            freeaddrinfo(addresses);
        }
    }
#else                           /* IPv6 not supported, use gethostbyname instead for IPv4 */
    if (family == FamilyInternet) {
        register struct hostent *hp;

#ifdef XTHREADS_NEEDS_BYNAMEPARAMS
        _Xgethostbynameparams hparams;
#endif
        char hostname[SI_HOSTNAME_MAXLEN];
        int f, hostaddrlen;
        void *hostaddr;
        const char **addrlist;

        if (siAddrLen >= sizeof(hostname))
            return FALSE;

        strlcpy(hostname, siAddr, siAddrLen + 1);

        if ((hp = _XGethostbyname(hostname, hparams)) != NULL) {
#ifdef h_addr                   /* new 4.3bsd version of gethostent */
            /* iterate over the addresses */
            for (addrlist = hp->h_addr_list; *addrlist; addrlist++)
#else
            addrlist = &hp->h_addr;
#endif
            {
                struct sockaddr_in sin;

                sin.sin_family = hp->h_addrtype;
                memcpy(&(sin.sin_addr), *addrlist, hp->h_length);
                hostaddrlen = sizeof(sin);
                f = ConvertAddr((struct sockaddr *) &sin,
                                &hostaddrlen, &hostaddr);
                if ((f == family) && (len == hostaddrlen) &&
                    (memcmp(addr, hostaddr, len) == 0)) {
                    res = TRUE;
                    break;
                }
            }
        }
    }
#endif
    return res;
}

static int
siHostnameCheckAddr(const char *valueString, int length, void *typePriv)
{
    /* Check conformance of hostname to RFC 2396 sec. 3.2.2 definition.
     * We do not use ctype functions here to avoid locale-specific
     * character sets.  Hostnames must be pure ASCII.  
     */
    int len = length;
    int i;
    Bool dotAllowed = FALSE;
    Bool dashAllowed = FALSE;

    if ((length <= 0) || (length >= SI_HOSTNAME_MAXLEN)) {
        len = -1;
    }
    else {
        for (i = 0; i < length; i++) {
            char c = valueString[i];

            if (c == 0x2E) {    /* '.' */
                if (dotAllowed == FALSE) {
                    len = -1;
                    break;
                }
                else {
                    dotAllowed = FALSE;
                    dashAllowed = FALSE;
                }
            }
            else if (c == 0x2D) {       /* '-' */
                if (dashAllowed == FALSE) {
                    len = -1;
                    break;
                }
                else {
                    dotAllowed = FALSE;
                }
            }
            else if (((c >= 0x30) && (c <= 0x3A)) /* 0-9 */ ||
                     ((c >= 0x61) && (c <= 0x7A)) /* a-z */ ||
                     ((c >= 0x41) && (c <= 0x5A)) /* A-Z */ ) {
                dotAllowed = TRUE;
                dashAllowed = TRUE;
            }
            else {              /* Invalid character */
                len = -1;
                break;
            }
        }
    }
    return len;
}

#if defined(IPv6) && defined(AF_INET6)
/***
 * "ipv6" server interpreted type
 *
 * Currently supports only IPv6 literal address as specified in IETF RFC 3513
 *
 * Once draft-ietf-ipv6-scoping-arch-00.txt becomes an RFC, support will be 
 * added for the scoped address format it specifies.
 */

/* Maximum length of an IPv6 address string - increase when adding support 
 * for scoped address qualifiers.  Includes room for trailing NUL byte. 
 */
#define SI_IPv6_MAXLEN INET6_ADDRSTRLEN

static Bool
siIPv6AddrMatch(int family, void *addr, int len,
                const char *siAddr, int siAddrlen, ClientPtr client,
                void *typePriv)
{
    struct in6_addr addr6;
    char addrbuf[SI_IPv6_MAXLEN];

    if ((family != FamilyInternet6) || (len != sizeof(addr6)))
        return FALSE;

    memcpy(addrbuf, siAddr, siAddrlen);
    addrbuf[siAddrlen] = '\0';

    if (inet_pton(AF_INET6, addrbuf, &addr6) != 1) {
        perror("inet_pton");
        return FALSE;
    }

    if (memcmp(addr, &addr6, len) == 0) {
        return TRUE;
    }
    else {
        return FALSE;
    }
}

static int
siIPv6CheckAddr(const char *addrString, int length, void *typePriv)
{
    int len;

    /* Minimum length is 3 (smallest legal address is "::1") */
    if (length < 3) {
        /* Address is too short! */
        len = -1;
    }
    else if (length >= SI_IPv6_MAXLEN) {
        /* Address is too long! */
        len = -1;
    }
    else {
        /* Assume inet_pton is sufficient validation */
        struct in6_addr addr6;
        char addrbuf[SI_IPv6_MAXLEN];

        memcpy(addrbuf, addrString, length);
        addrbuf[length] = '\0';

        if (inet_pton(AF_INET6, addrbuf, &addr6) != 1) {
            perror("inet_pton");
            len = -1;
        }
        else {
            len = length;
        }
    }
    return len;
}
#endif                          /* IPv6 */

#if !defined(NO_LOCAL_CLIENT_CRED)
/***
 * "localuser" & "localgroup" server interpreted types
 *
 * Allows local connections from a given local user or group
 */

#include <pwd.h>
#include <grp.h>

#define LOCAL_USER 1
#define LOCAL_GROUP 2

typedef struct {
    int credType;
} siLocalCredPrivRec, *siLocalCredPrivPtr;

static siLocalCredPrivRec siLocalUserPriv = { LOCAL_USER };
static siLocalCredPrivRec siLocalGroupPriv = { LOCAL_GROUP };

static Bool
siLocalCredGetId(const char *addr, int len, siLocalCredPrivPtr lcPriv, int *id)
{
    Bool parsedOK = FALSE;
    char *addrbuf = malloc(len + 1);

    if (addrbuf == NULL) {
        return FALSE;
    }

    memcpy(addrbuf, addr, len);
    addrbuf[len] = '\0';

    if (addr[0] == '#') {       /* numeric id */
        char *cp;

        errno = 0;
        *id = strtol(addrbuf + 1, &cp, 0);
        if ((errno == 0) && (cp != (addrbuf + 1))) {
            parsedOK = TRUE;
        }
    }
    else {                      /* non-numeric name */
        if (lcPriv->credType == LOCAL_USER) {
            struct passwd *pw = getpwnam(addrbuf);

            if (pw != NULL) {
                *id = (int) pw->pw_uid;
                parsedOK = TRUE;
            }
        }
        else {                  /* group */
            struct group *gr = getgrnam(addrbuf);

            if (gr != NULL) {
                *id = (int) gr->gr_gid;
                parsedOK = TRUE;
            }
        }
    }

    free(addrbuf);
    return parsedOK;
}

static Bool
siLocalCredAddrMatch(int family, void *addr, int len,
                     const char *siAddr, int siAddrlen, ClientPtr client,
                     void *typePriv)
{
    int siAddrId;
    LocalClientCredRec *lcc;
    siLocalCredPrivPtr lcPriv = (siLocalCredPrivPtr) typePriv;

    if (GetLocalClientCreds(client, &lcc) == -1) {
        return FALSE;
    }

#ifdef HAVE_GETZONEID           /* Ensure process is in the same zone */
    if ((lcc->fieldsSet & LCC_ZID_SET) && (lcc->zoneid != getzoneid())) {
        FreeLocalClientCreds(lcc);
        return FALSE;
    }
#endif

    if (siLocalCredGetId(siAddr, siAddrlen, lcPriv, &siAddrId) == FALSE) {
        FreeLocalClientCreds(lcc);
        return FALSE;
    }

    if (lcPriv->credType == LOCAL_USER) {
        if ((lcc->fieldsSet & LCC_UID_SET) && (lcc->euid == siAddrId)) {
            FreeLocalClientCreds(lcc);
            return TRUE;
        }
    }
    else {
        if ((lcc->fieldsSet & LCC_GID_SET) && (lcc->egid == siAddrId)) {
            FreeLocalClientCreds(lcc);
            return TRUE;
        }
        if (lcc->pSuppGids != NULL) {
            int i;

            for (i = 0; i < lcc->nSuppGids; i++) {
                if (lcc->pSuppGids[i] == siAddrId) {
                    FreeLocalClientCreds(lcc);
                    return TRUE;
                }
            }
        }
    }
    FreeLocalClientCreds(lcc);
    return FALSE;
}

static int
siLocalCredCheckAddr(const char *addrString, int length, void *typePriv)
{
    int len = length;
    int id;

    if (siLocalCredGetId(addrString, length,
                         (siLocalCredPrivPtr) typePriv, &id) == FALSE) {
        len = -1;
    }
    return len;
}
#endif                          /* localuser */

static void
siTypesInitialize(void)
{
    siTypeAdd("hostname", siHostnameAddrMatch, siHostnameCheckAddr, NULL);
#if defined(IPv6) && defined(AF_INET6)
    siTypeAdd("ipv6", siIPv6AddrMatch, siIPv6CheckAddr, NULL);
#endif
#if !defined(NO_LOCAL_CLIENT_CRED)
    siTypeAdd("localuser", siLocalCredAddrMatch, siLocalCredCheckAddr,
              &siLocalUserPriv);
    siTypeAdd("localgroup", siLocalCredAddrMatch, siLocalCredCheckAddr,
              &siLocalGroupPriv);
#endif
}