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
|
#!/bin/ksh
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source. A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
#
# Copyright 2014 Nexenta Systems, Inc. All rights reserved.
#
# Use distributed make (dmake) by default.
make=${MAKE:-dmake}
CLOSED_IS_PRESENT=no
export CLOSED_IS_PRESENT
# Do this if you want to use dbx or gdb
# export SOURCEDEBUG=yes
[ -n "$SRC" ] || {
echo "SRC not set. Run 'ws' or 'bldenv' first."
exit 1
}
cpu=`uname -p`
case $cpu in
i386)
x=intel
mdb_arch="ia32 amd64"
arch64=amd64
;;
sparc)
x=sparc
mdb_arch=v9
arch64=sparcv9
;;
*) echo "Huh?" ; exit 1;;
esac
################################################################
build_tools() {
test -f $SRC/tools/proto/root_i386-nd/opt/onbld/bin/genoffsets ||
(cd $SRC/tools && $make install)
(cd $SRC/common/mapfiles; $make install)
}
clobber_tools() {
(cd $SRC/tools && $make clobber)
(cd $SRC/common/mapfiles; $make clobber)
}
################################################################
do_hdrs() {
targ=$1
if [ "$targ" = clobber ]
then
(cd $SRC/uts && $make -k clobber_h)
(cd $SRC/head && $make clobber)
fi
if [ "$targ" = install ]
then
targ=install_h
# Just the parts of "make sgs" we need, and
# skip them if they appear to be done.
# ... stuff under $SRC
test -f $SRC/uts/common/sys/priv_names.h ||
(cd $SRC/uts && $make -k all_h)
test -f $SRC/head/rpcsvc/nispasswd.h ||
(cd $SRC/head && $make -k install_h)
# ... stuff under $ROOT (proto area)
test -d $ROOT/usr/include/sys ||
(cd $SRC && $make rootdirs)
test -f $ROOT/usr/include/sys/types.h ||
(cd $SRC/uts && $make -k install_h)
test -f $ROOT/usr/include/rpcsvc/daemon_utils.h ||
(cd $SRC/head && $make install_h)
# system headers
(cd $SRC/uts/common/sys && $make -k install_h)
fi
# Need some library headers too...
for lib in \
libgss \
libkrb5
do
(cd $SRC/lib/$lib && $make $targ)
done
}
################################################################
do_kern() {
case $1 in
lint) targ=modlintlib ;;
*) targ=$1 ;;
esac
( unset SOURCEDEBUG ;
(cd $SRC/uts/$x/kgssapi && $make $targ) )
}
################################################################
do_libs() {
for lib in \
libgss
do
(cd $SRC/lib/$lib && $make $1)
done
# For some reason, mech_krb5 does not build for debug.
# It also takes forever to lint. skip that.
if [ "$1" != "lint" ]; then
(cd $SRC/lib/gss_mechs/mech_krb5 && unset SOURCEDEBUG && $make $1)
(cd $SRC/lib/gss_mechs/mech_spnego && $make $1)
fi
}
################################################################
do_cmds() {
(cd $SRC/cmd/gss && $make $1)
}
################################################################
# This builds $SRC/TAGS (and cscope.files) in a helpful order.
do_tags() {
(cd $SRC ;
find uts/common/sys -name '*.[ch]' -print |sort
find uts/common/net -name '*.[ch]' -print |sort
find uts/common/netinet -name '*.[ch]' -print |sort
find uts/common/gssapi -name '*.[ch]' -print |sort
find head -name '*.h' -print |sort
find lib/gss_mechs -name '*.[ch]' -print |sort
find cmd/gss -name '*.[ch]' -print |sort
) > $SRC/cscope.files
(cd $SRC ;
exctags -e --langmap=c:+.ndl -h ndl -L - < cscope.files
cscope -b )
}
################################################################
# This creates a tarfile one can use to update a test machine.
do_tar() {
git_rev=`git rev-parse --short=8 HEAD`
files="
usr/lib/gss/gssd
usr/lib/gss/mech_krb5.so.1
usr/lib/$arch64/gss/mech_krb5.so.1
usr/lib/gss/mech_spnego.so.1
usr/lib/$arch64/gss/mech_spnego.so.1
usr/lib/libgss.so.1
usr/lib/$arch64/libgss.so.1
"
(cd $ROOT && tar cfj ../../gss-${git_rev}.tar.bz2 $files)
}
################################################################
if [ "$1" = "" ]; then
set '?' # force usage
fi
set -x
for arg
do
case "$arg" in
build|install)
arg=install
build_tools
set -e
do_hdrs $arg
do_kern $arg
do_libs $arg
do_cmds $arg
;;
lint)
do_kern $arg
do_libs $arg
do_cmds $arg
;;
clean)
do_cmds $arg
do_libs $arg
do_kern $arg
;;
clobber)
do_cmds $arg
do_libs $arg
do_kern $arg
do_hdrs $arg
clobber_tools
;;
tags)
do_tags
;;
tar)
do_tar
;;
*)
echo "Usage: $0 {build|lint|clean|clobber|tags|tar}";
exit 1;
;;
esac
done
#!/bin/ksh
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source. A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
#
# Copyright 2018 Nexenta Systems, Inc. All rights reserved.
#
# Use distributed make (dmake) by default.
make=${MAKE:-dmake}
CLOSED_IS_PRESENT=no
export CLOSED_IS_PRESENT
# Do this if you want to use dbx or gdb
# export SOURCEDEBUG=yes
[ -n "$SRC" ] || {
echo "SRC not set. Run 'ws' or 'bldenv' first."
exit 1
}
cpu=`uname -p`
case $cpu in
i386)
x=intel
mdb_arch="ia32 amd64"
arch64=amd64
;;
sparc)
x=sparc
mdb_arch=v9
arch64=sparcv9
;;
*) echo "Huh?" ; exit 1;;
esac
################################################################
build_tools() {
test -f $SRC/tools/proto/root_i386-nd/opt/onbld/bin/genoffsets ||
(cd $SRC/tools && $make install)
(cd $SRC/common/mapfiles; $make install)
}
clobber_tools() {
(cd $SRC/tools && $make clobber)
(cd $SRC/common/mapfiles; $make clobber)
}
################################################################
do_hdrs() {
targ=$1
if [ "$targ" = clobber ]
then
(cd $SRC/uts && $make -k clobber_h)
(cd $SRC/head && $make clobber)
fi
if [ "$targ" = install ]
then
targ=install_h
# Just the parts of "make sgs" we need, and
# skip them if they appear to be done.
# ... stuff under $SRC
test -f $SRC/uts/common/sys/priv_names.h ||
(cd $SRC/uts && $make -k all_h)
test -f $SRC/head/rpcsvc/nispasswd.h ||
(cd $SRC/head && $make -k install_h)
# ... stuff under $ROOT (proto area)
test -d $ROOT/usr/include/sys ||
(cd $SRC && $make rootdirs)
test -f $ROOT/usr/include/sys/types.h ||
(cd $SRC/uts && $make -k install_h)
test -f $ROOT/usr/include/rpcsvc/daemon_utils.h ||
(cd $SRC/head && $make install_h)
# system and smbsrv headers (we need to build libsmb)
(cd $SRC/uts/common/sys && $make -k install_h)
(cd $SRC/uts/common/smb && $make -k install_h)
(cd $SRC/uts/common/smbsrv && $make -k install_h)
fi
# Need some library headers too...
for lib in \
libads \
libbsm \
libcmdutils \
libcryptoutil \
libdevid \
libgss \
libkrb5 \
libldap5 \
libidmap \
libsmbfs \
libsqlite \
libuutil
do
(cd $SRC/lib/$lib && $make $targ)
done
}
################################################################
do_kern() {
case $1 in
lint) targ=modlintlib ;;
*) targ=$1 ;;
esac
( unset SOURCEDEBUG ;
(cd $SRC/uts/$x/idmap && $make $targ) )
}
################################################################
do_libs() {
for lib in \
libavl \
libcmdutils \
libldap5 \
libadutils \
libuutil \
libidmap \
libads \
libsmbfs \
libsqlite \
nsswitch/ad
do
(cd $SRC/lib/$lib && $make $1)
done
# need libsmb for cmd/idmap/idmapd (and libsmbfs for libsmb)
(cd $SRC/lib/smbsrv/libsmb && $make $1)
}
################################################################
do_cmds() {
(cd $SRC/cmd/idmap && $make $1)
}
################################################################
# This builds $SRC/TAGS (and cscope.files) in a helpful order.
do_tags() {
(cd $SRC ;
find uts/common/sys -name '*.[ch]' -print |sort
find uts/common/net -name '*.[ch]' -print |sort
find uts/common/netinet -name '*.[ch]' -print |sort
find uts/common/rpcsvc -name '*.[ch]' -print |sort
find uts/common/idmap -name '*.[ch]' -print |sort
find head -name '*.h' -print |sort
find lib/libidmap -name '*.[ch]' -print |sort
find lib/libadutils -name '*.[ch]' -print |sort
find lib/libldap5 -name '*.[ch]' -print |sort
find cmd/idmap -name '*.[ch]' -print |sort
) > $SRC/cscope.files
(cd $SRC ;
exctags -e --langmap=c:+.ndl -h ndl -L - < cscope.files
cscope -b )
}
################################################################
# This creates a tarfile one can use to update a test machine.
do_tar() {
git_rev=`git rev-parse --short=8 HEAD`
files="
kernel/misc/amd64/idmap
lib/svc/manifest/system/idmap.xml
usr/lib/idmapd
usr/lib/libads.so.1
usr/lib/$arch64/libads.so.1
usr/lib/libadutils.so.1
usr/lib/$arch64/libadutils.so.1
usr/lib/libidmap.so.1
usr/lib/$arch64/libidmap.so.1
usr/lib/libldap.so.5
usr/lib/$arch64/libldap.so.5
usr/lib/nss_ad.so.1
usr/lib/$arch64/nss_ad.so.1
usr/bin/test-getdc
usr/sbin/idmap
usr/sbin/nltest
"
(cd $ROOT && tar cfj ../../idmap-${git_rev}.tar.bz2 $files)
}
################################################################
if [ "$1" = "" ]; then
set '?' # force usage
fi
set -x
for arg
do
case "$arg" in
build|install)
arg=install
build_tools
set -e
do_hdrs $arg
do_kern $arg
do_libs $arg
do_cmds $arg
;;
lint)
do_kern $arg
do_libs $arg
do_cmds $arg
;;
clean)
do_cmds $arg
do_libs $arg
do_kern $arg
;;
clobber)
do_cmds $arg
do_libs $arg
do_kern $arg
do_hdrs $arg
clobber_tools
;;
tags)
do_tags
;;
tar)
do_tar
;;
*)
echo "Usage: $0 {build|lint|clean|clobber|tags|tar}";
exit 1;
;;
esac
done
#!/bin/ksh
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source. A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
#
# Copyright 2021 Tintri by DDN, Inc. All rights reserved.
#
# Use normal make (not dmake) by default.
make=${MAKE:-make}
# Set this if you want to use dbx or gdb:
# export SOURCEDEBUG=yes
[ -n "$SRC" ] || {
echo "SRC not set. Run 'ws' or 'bldenv' first."
exit 1
}
cpu=`uname -p`
case $cpu in
i386)
x=intel
kmdb_arch="amd64"
mdb_arch="ia32 amd64"
arch64=amd64
;;
sparc)
x=sparc
kmdb_arch=v9
mdb_arch="v7 v9"
arch64=sparcv9
;;
*) echo "Unknown architecture" ; exit 1;;
esac
################################################################
build_tools() {
test -f $SRC/tools/proto/root_i386-nd/opt/onbld/bin/genoffsets ||
(cd $SRC/tools && $make install)
(cd $SRC/common/mapfiles; $make install)
}
clobber_tools() {
(cd $SRC/tools && $make clobber)
(cd $SRC/common/mapfiles; $make clobber)
}
# end build_tools()
################################################################
do_hdrs() {
targ=$1
if [ "$targ" = clobber ]
then
(cd $SRC/uts && $make -k clobber_h)
(cd $SRC/head && $make clobber)
fi
if [ "$targ" = install ]
then
targ=install_h
# Just the parts of "make sgs" we need, and
# skip them if they appear to be done.
# ... stuff under $SRC
test -f $SRC/uts/common/sys/priv_names.h ||
(cd $SRC/uts && $make -k all_h)
test -f $SRC/head/rpcsvc/nispasswd.h ||
(cd $SRC/head && $make -k $targ)
# ... stuff under $ROOT (proto area)
test -d $ROOT/usr/include/sys ||
(cd $SRC && $make rootdirs)
test -f $ROOT/usr/include/sys/types.h ||
(cd $SRC/uts && $make -k $targ)
test -f $ROOT/usr/include/rpcsvc/daemon_utils.h ||
(cd $SRC/head && $make $targ)
# always update the NFS (kernel) headers to be safe
(cd $SRC/uts/common/gssapi && $make -k $targ)
(cd $SRC/uts/common/sys && $make -k $targ)
(cd $SRC/uts/common/nfs && $make -k $targ)
fi
# Need some library headers too...
for lib in \
libcmdutils \
libcryptoutil \
libidmap \
libpam \
libsec \
libzfs_core \
libzfs \
libshare \
libuutil \
librpcsvc \
libmapid
do
(cd $SRC/lib/$lib && $make $targ)
done
}
# end do_hdrs()
################################################################
do_kern() {
case $1 in
*) targ=$1 ;;
esac
( unset SOURCEDEBUG ;
(cd $SRC/uts/$x/nfs && $make $targ) ;
(cd $SRC/uts/$x/nfs_dlboot && $make $targ) ;
(cd $SRC/uts/$x/nfssrv && $make $targ) ;
(cd $SRC/uts/$x/klmmod && $make $targ) ;
(cd $SRC/uts/$x/klmops && $make $targ) )
}
# end do_kern()
################################################################
# Note lib1 builds prerequisite libraries not delivered by the
# tar file we create below. To accelerate clean/install, we
# skip these on clean (but still nuke them for clobber)
do_lib1() {
for lib in \
libavl \
libuutil \
libcmdutils \
libidmap \
libzfs_core \
libzfs
do
(cd $SRC/lib/$lib && $make $1)
done
}
# lib2 builds stuff we include in the tar file,
# or that we don't mind rebuilding after clean.
do_lib2() {
for lib in \
librpcsvc \
libmapid
do
(cd $SRC/lib/$lib && $make $1)
done
(cd $SRC/lib/libshare && $make $1 PLUGINS=nfs)
}
# end do_lib1() and do_lib2()
################################################################
do_cmds() {
case $1 in
install)
# mount programs need fslib.o
(cd $SRC/cmd/fs.d && $make fslib.o)
(cd $SRC/cmd/fs.d/nfs && $make $1 catalog)
;;
clean|clobber)
(cd $SRC/cmd/fs.d/nfs && $make $1)
(cd $SRC/cmd/fs.d && $make ${1}_local)
;;
esac
# Build the MDB modules, WITH the linktest
(cd $SRC/cmd/mdb/tools && $make $1)
# kmdb_arch is 64-bit only
for a in $kmdb_arch
do
case $1 in
install|lint)
(cd $SRC/cmd/mdb/$x/$a/kmdb &&
$make kmdb_modlinktest.o )
;;
clean|clobber)
(cd $SRC/cmd/mdb/$x/$a/kmdb &&
$make -k $1 )
;;
esac
(cd $SRC/cmd/mdb/$x/$a/nfs &&
$make $1 KMDB_LINKTEST_ENABLE= )
(cd $SRC/cmd/mdb/$x/$a/klmmod &&
$make $1 KMDB_LINKTEST_ENABLE= )
done
}
# end do_cmds()
################################################################
# This builds $SRC/TAGS (and cscope.files) in a helpful order.
do_tags() {
(cd $SRC ;
find uts/common/sys -name '*.[ch]' -print |sort
find uts/common/net -name '*.[ch]' -print |sort
find uts/common/netinet -name '*.[ch]' -print |sort
find uts/common/nfs -name '*.[ch]' -print |sort
find uts/common/rpc -name '*.[ch]' -print |sort
find uts/common/klm -name '*.[ch]' -print |sort
find uts/common/fs/nfs -name '*.[ch]' -print |sort
find uts/common/gssapi -name '*.[ch]' -print |sort
find head -name '*.h' -print |sort
find cmd/fs.d/nfs -name '*.[ch]' -print |sort
) > $SRC/cscope.files
(cd $SRC ;
exctags -e --langmap=c:+.ndl -h ndl -L - < cscope.files
cscope -b )
}
#end do_tags()
################################################################
# This creates tarfiles one can use to update a test machine.
do_tar() {
git_rev=`git rev-parse --short=8 HEAD`
# NFS (everything)
files="
kernel/kmdb/$arch64/klmmod
kernel/kmdb/$arch64/nfs
kernel/misc/$arch64/klmmod
kernel/misc/$arch64/klmops
kernel/misc/$arch64/nfs_dlboot
kernel/misc/$arch64/nfssrv
kernel/fs/$arch64/nfs
kernel/sys/$arch64/nfs
lib/svc/manifest/network/nfs/cbd.xml
lib/svc/manifest/network/nfs/client.xml
lib/svc/manifest/network/nfs/mapid.xml
lib/svc/manifest/network/nfs/nfslogd.xml
lib/svc/manifest/network/nfs/nlockmgr.xml
lib/svc/manifest/network/nfs/rquota.xml
lib/svc/manifest/network/nfs/server.xml
lib/svc/manifest/network/nfs/status.xml
lib/svc/method/nfs-client
lib/svc/method/nfs-server
lib/svc/method/nlockmgr
usr/bin/nfsstat
usr/lib/fs/nfs/$arch64/libshare_nfs.so.1
usr/lib/fs/nfs/libshare_nfs.so.1
usr/lib/fs/nfs/dfmounts
usr/lib/fs/nfs/dfshares
usr/lib/fs/nfs/nfsfind
usr/lib/fs/nfs/showmount
usr/lib/fs/nfs/umount
usr/lib/mdb/kvm/$arch64/klmmod.so
usr/lib/mdb/kvm/$arch64/nfs.so
usr/lib/nfs/libmapid.so.1
usr/lib/nfs/lockd
usr/lib/nfs/mountd
usr/lib/nfs/nfs4cbd
usr/lib/nfs/nfsd
usr/lib/nfs/nfslogd
usr/lib/nfs/nfsmapid
usr/lib/nfs/rquotad
usr/lib/nfs/statd
usr/lib/reparse/$arch64/libnfs_basic.so.1
usr/lib/reparse/libnfs_basic.so.1
usr/sbin/clear_locks
usr/sbin/exportfs
usr/sbin/nfsref
"
(cd $ROOT && tar cfj ../../nfs-${git_rev}.tar.bz2 $files)
# KLM kmod
files="
kernel/misc/$arch64/klmmod
kernel/misc/$arch64/klmops
"
(cd $ROOT && tar cfj ../../klm-${git_rev}.tar.bz2 $files)
}
# end do_tar()
################################################################
if [ "$1" = "" ]; then
set '?' # force usage
fi
set -x
for arg
do
case "$arg" in
install)
build_tools
set -e
do_hdrs $arg
do_kern $arg
do_lib1 $arg
do_lib2 $arg
do_cmds $arg
;;
clean)
# intentionally skip: lib1, hdrs, tools
do_cmds $arg
do_lib2 $arg
do_kern $arg
;;
clobber)
do_cmds $arg
do_lib2 $arg
do_lib1 $arg
do_kern $arg
do_hdrs $arg
clobber_tools
;;
tags)
do_tags
;;
tar)
do_tar
;;
*)
echo "Usage: $0 {install|clean|clobber|tags|tar}";
exit 1;
;;
esac
done
#!/bin/ksh
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source. A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
#
# Copyright 2017 Nexenta Systems, Inc. All rights reserved.
#
# Use ordinary make (not dmake) by default.
make=${MAKE:-make}
# Do this if you want to use dbx or gdb
# export SOURCEDEBUG=yes
[ -n "$SRC" ] || {
echo "SRC not set. Run 'ws' or 'bldenv' first."
exit 1
}
cpu=`uname -p`
case $cpu in
i386)
x=intel
kmdb_arch="amd64"
mdb_arch="ia32 amd64"
arch64=amd64
;;
sparc)
x=sparc
kmdb_arch=v9
mdb_arch="v7 v9"
arch64=sparcv9
;;
*) echo "Huh?" ; exit 1;;
esac
################################################################
build_tools() {
test -f $SRC/tools/proto/root_i386-nd/opt/onbld/bin/genoffsets ||
(cd $SRC/tools && $make install)
(cd $SRC/common/mapfiles; $make install)
}
clobber_tools() {
(cd $SRC/tools && $make clobber)
(cd $SRC/common/mapfiles; $make clobber)
}
################################################################
do_hdrs() {
targ=$1
if [ "$targ" = clobber ]
then
(cd $SRC/uts && $make -k clobber_h)
(cd $SRC/head && $make clobber)
fi
if [ "$targ" = install ]
then
targ=install_h
# Just the parts of "make sgs" we need, and
# skip them if they appear to be done.
# ... stuff under $SRC
test -f $SRC/uts/common/sys/priv_names.h ||
(cd $SRC/uts && $make -k all_h)
test -f $SRC/head/rpcsvc/nispasswd.h ||
(cd $SRC/head && $make -k install_h)
# ... stuff under $ROOT (proto area)
test -d $ROOT/usr/include/sys ||
(cd $SRC && $make rootdirs)
test -f $ROOT/usr/include/sys/types.h ||
(cd $SRC/uts && $make -k install_h)
test -f $ROOT/usr/include/rpcsvc/daemon_utils.h ||
(cd $SRC/head && $make install_h)
# always update the smb headers to be safe
(cd $SRC/uts/common/smb && $make -k install_h)
fi
# Need some library headers too...
for lib in \
libcmdutils \
libcryptoutil \
libfakekernel \
libmlrpc \
libpam \
libsec \
libshare \
libsmbfs \
passwdutil
do
(cd $SRC/lib/$lib && $make $targ)
done
}
################################################################
do_kern() {
case $1 in
lint) targ=modlintlib ;;
*) targ=$1 ;;
esac
( unset SOURCEDEBUG ;
(cd $SRC/uts/$x/nsmb && $make $targ) ;
(cd $SRC/uts/$x/smbfs && $make $targ) )
}
################################################################
# Note lib1 builds prerequisite libraries not delivered by the
# tar file we create below. To accelerate clean/install, we
# skip these on clean (but still nuke them for clobber)
do_lib1() {
for lib in \
libavl \
libcmdutils
do
(cd $SRC/lib/$lib && $make $1)
done
}
# lib2 builds stuff we include in the tar file,
# or that we don't mind rebuilding after clean.
do_lib2() {
(cd $SRC/lib/libsmbfs && $make $1)
[ "$1" = install ] &&
(cd $SRC/lib/libsmbfs && $make _msg)
for lib in \
libfakekernel \
libsmbfs \
libmlrpc \
smbclnt
do
(cd $SRC/lib/$lib && $make $1)
done
(cd $SRC/lib/libshare && $make $1 PLUGINS=smbfs)
(cd $SRC/lib/passwdutil && $make $1)
(cd $SRC/lib/pam_modules/smbfs && $make $1)
}
################################################################
do_cmds() {
case $1 in
install)
# mount programs need fslib.o
(cd $SRC/cmd/fs.d && $make fslib.o)
(cd $SRC/cmd/fs.d/smbclnt && $make $1 catalog)
;;
clean|clobber)
(cd $SRC/cmd/fs.d/smbclnt && $make $1)
(cd $SRC/cmd/fs.d && $make ${1}_local)
;;
esac
# Build the MDB modules, WITH the linktest
(cd $SRC/cmd/mdb/tools && $make $1)
# kmdb_arch is 64-bit only
for a in $kmdb_arch
do
case $1 in
install|lint)
(cd $SRC/cmd/mdb/$x/$a/kmdb &&
$make kmdb_modlinktest.o )
;;
clean|clobber)
(cd $SRC/cmd/mdb/$x/$a/kmdb &&
$make -k $1 )
;;
esac
(cd $SRC/cmd/mdb/$x/$a/nsmb &&
$make $1 KMDB_LINKTEST_ENABLE= )
(cd $SRC/cmd/mdb/$x/$a/smbfs &&
$make $1 KMDB_LINKTEST_ENABLE= )
done
# mdb_arch is both 32-bit & 64-bit
for a in $mdb_arch
do
(cd $SRC/cmd/mdb/$x/$a/libfknsmb &&
$make $1 )
(cd $SRC/cmd/mdb/$x/$a/libfksmbfs &&
$make $1 )
done
}
################################################################
# This builds $SRC/TAGS (and cscope.files) in a helpful order.
do_tags() {
(cd $SRC ;
find uts/common/sys -name '*.[ch]' -print |sort
find uts/common/net -name '*.[ch]' -print |sort
find uts/common/netinet -name '*.[ch]' -print |sort
find uts/common/smb -name '*.[ch]' -print |sort
find uts/common/netsmb -name '*.[ch]' -print |sort
find uts/common/fs/smbclnt -name '*.[ch]' -print |sort
find head -name '*.h' -print |sort
find lib/smbclnt -name '*.[ch]' -print |sort
find lib/libsmbfs -name '*.[ch]' -print |sort
find cmd/fs.d/smbclnt -name '*.[ch]' -print |sort
find common/smbclnt -name '*.[ch]' -print |sort
) > $SRC/cscope.files
(cd $SRC ;
exctags -e --langmap=c:+.ndl -h ndl -L - < cscope.files
cscope -b )
}
################################################################
# This creates a tarfile one can use to update a test machine.
do_tar() {
git_rev=`git rev-parse --short=8 HEAD`
files="
etc/security/exec_attr.d/SUNWsmbfs
lib/svc/manifest/network/smb/client.xml
lib/svc/method/smb-client
usr/bin/smbutil
usr/kernel/drv/$arch64/nsmb
usr/kernel/fs/$arch64/smbfs
usr/kernel/kmdb/$arch64/nsmb
usr/kernel/kmdb/$arch64/smbfs
usr/lib/$arch64/libsmbfs.so.1
usr/lib/fs/smbfs/$arch64/libshare_smbfs.so.1
usr/lib/fs/smbfs/chacl
usr/lib/fs/smbfs/dfshares
usr/lib/fs/smbfs/libshare_smbfs.so.1
usr/lib/fs/smbfs/lsacl
usr/lib/fs/smbfs/mount
usr/lib/fs/smbfs/share
usr/lib/fs/smbfs/umount
usr/lib/fs/smbfs/unshare
usr/lib/libmlrpc.so.2
usr/lib/libsmbfs.so.1
usr/lib/mdb/kvm/$arch64/nsmb.so
usr/lib/mdb/kvm/$arch64/smbfs.so
usr/lib/security/$arch64/pam_smbfs_login.so.1
usr/lib/security/pam_smbfs_login.so.1
usr/lib/smbfs/smbiod
usr/lib/smbfs/smbiod-svc
"
(cd $ROOT && tar cfj ../../smbclnt-${git_rev}.tar.bz2 $files)
}
################################################################
if [ "$1" = "" ]; then
set '?' # force usage
fi
set -x
for arg
do
case "$arg" in
install)
build_tools
set -e
do_hdrs $arg
do_kern $arg
do_lib1 $arg
do_lib2 $arg
do_cmds $arg
;;
lint)
do_kern $arg
do_lib1 $arg
do_lib2 $arg
do_cmds $arg
;;
clean)
# intentionally skip: lib1, hdrs, tools
do_cmds $arg
do_lib2 $arg
do_kern $arg
;;
clobber)
do_cmds $arg
do_lib2 $arg
do_lib1 $arg
do_kern $arg
do_hdrs $arg
clobber_tools
;;
tags)
do_tags
;;
tar)
do_tar
;;
*)
echo "Usage: $0 {install|lint|clean|clobber|tags|tar}";
exit 1;
;;
esac
done
#!/bin/ksh
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source. A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
#
# Copyright 2022 Tintri by DDN, Inc. All rights reserved.
#
# Use normal make (not dmake) by default.
make=${MAKE:-make}
CLOSED_IS_PRESENT=no
export CLOSED_IS_PRESENT
# Do this if you want to use dbx or gdb
# export SOURCEDEBUG=yes
[ -n "$SRC" ] || {
echo "SRC not set. Run 'ws' or 'bldenv' first."
exit 1
}
cpu=`uname -p`
case $cpu in
i386)
x=intel
kmdb_arch="amd64"
mdb_arch="ia32 amd64"
arch64=amd64
;;
sparc)
x=sparc
kmdb_arch=v9
mdb_arch="v7 v9"
arch64=sparcv9
;;
*) echo "Huh?" ; exit 1;;
esac
################################################################
build_tools() {
test -f $SRC/tools/proto/root_i386-nd/opt/onbld/bin/genoffsets ||
(cd $SRC/tools && $make install)
(cd $SRC/common/mapfiles; $make install)
}
clobber_tools() {
(cd $SRC/tools && $make clobber)
(cd $SRC/common/mapfiles; $make clobber)
}
################################################################
do_hdrs() {
targ=$1
if [ "$targ" = clobber ]
then
(cd $SRC/uts && $make -k clobber_h)
(cd $SRC/head && $make clobber)
fi
if [ "$targ" = install ]
then
targ=install_h
# Just the parts of "make sgs" we need, and
# skip them if they appear to be done.
# ... stuff under $SRC
test -f $SRC/uts/common/sys/priv_names.h ||
(cd $SRC/uts && $make -k all_h)
test -f $SRC/head/rpcsvc/nispasswd.h ||
(cd $SRC/head && $make -k $targ)
# ... stuff under $ROOT (proto area)
test -d $ROOT/usr/include/sys ||
(cd $SRC && $make rootdirs)
test -f $ROOT/usr/include/sys/types.h ||
(cd $SRC/uts && $make -k $targ)
test -f $ROOT/usr/include/rpcsvc/daemon_utils.h ||
(cd $SRC/head && $make $targ)
# always update the sys,smbsrv headers to be safe
(cd $SRC/uts/common/gssapi && $make -k $targ)
(cd $SRC/uts/common/sys && $make -k $targ)
(cd $SRC/uts/common/smb && $make -k $targ)
(cd $SRC/uts/common/smbsrv && $make -k $targ)
(cd $SRC/uts/common/c2 && $make -k $targ)
fi
if [ "$targ" = lint ]
then
targ=check
(cd $SRC/uts/common/smb && $make -k $targ)
(cd $SRC/uts/common/smbsrv && $make -k $targ)
fi
# Need some library headers too...
for lib in \
libc \
libnsl \
libnvpair \
libsocket \
\
libads \
libbrand \
libbsm \
libcmdutils \
libcryptoutil \
libdevid \
libdisasm \
libfakekernel \
libgss \
libidmap \
libinetutil \
libipsecutil \
libkrb5 \
libmlrpc \
libofmt \
libpam \
libsaveargs \
libsec \
libscf \
libshare \
libsmbfs \
libsqlite \
libuutil \
libzfs_core \
libzfs \
passwdutil \
pkcs11 \
smbsrv
do
(cd $SRC/lib/$lib && $make $targ)
done
}
################################################################
do_kern() {
case $1 in
lint) targ=modlintlib ;;
*) targ=$1 ;;
esac
( unset SOURCEDEBUG ;
export NO_GENUNIX_UNIQUIFY= ;
(cd $SRC/uts/$x/smbsrv && $make $targ) )
}
################################################################
#
# Build all libraries used by the other targets in here.
#
# Run this once (at least) in each new workspace where you
# will run "make-smbsrv install", if you want to avoid linking
# against the libraries from your build host.
#
do_deplibs() {
(cd $SRC/lib/ssp_ns && $make $1)
(cd $SRC/lib/libc && $make $1)
for lib in \
libm \
libmd \
libnsl \
libnvpair \
libsocket \
libavl \
libgss \
libgen \
libkrb5 \
libkstat \
libcmdutils \
libresolv2 \
libldap5 \
libsldap \
libreparse \
libpam \
libuutil \
libidmap \
libinetutil \
libdlpi \
libbsm \
libsec \
libsecdb \
libsqlite \
libumem \
libuuid \
libsaveargs \
libproc \
libscf \
libcryptoutil \
libmd5 \
libzfs_core \
libzfs \
pkcs11/libpkcs11
do
# So we don't have to build EVERYTHING, set LDCHECKS=
# when building the dependent libraries.
(cd $SRC/lib/$lib && LDCHECKS='' $make $1)
done
}
################################################################
do_libs() {
for lib in \
libfakekernel \
libads \
libidmap \
libofmt \
libsmbfs \
libmlrpc
do
(cd $SRC/lib/$lib && $make $1)
done
(cd $SRC/lib/libshare && $make $1 PLUGINS=smb)
(cd $SRC/lib/smbsrv && $make $1)
(cd $SRC/lib/passwdutil && $make $1)
(cd $SRC/lib/pam_modules/smb && $make $1)
}
################################################################
do_cmds() {
(cd $SRC/cmd/smbsrv && $make $1)
# Build the MDB modules, WITH the linktest
(cd $SRC/cmd/mdb/tools && $make $1)
# kmdb_arch is 64-bit only
for a in $kmdb_arch
do
case $1 in
install|lint)
(cd $SRC/cmd/mdb/$x/$a/kmdb &&
$make kmdb_modlinktest.o )
;;
clean|clobber)
(cd $SRC/cmd/mdb/$x/$a/kmdb &&
$make -k $1 )
;;
esac
(cd $SRC/cmd/mdb/$x/$a/smbsrv &&
$make $1 KMDB_LINKTEST_ENABLE= )
done
# mdb_arch is both 32-bit & 64-bit
for a in $mdb_arch
do
# We build these libraries (to the proto area), so we need to
# build the mdb modules for all dependent libraries too.
for lib in libfksmbsrv libmlsvc list libavl
do
(cd $SRC/cmd/mdb/$x/$a/$lib && $make $1 )
done
done
}
################################################################
do_tests() {
for d in test/test-runner test/libmlrpc-tests test/smbsrv-tests
do
[ -f $SRC/$d/Makefile ] && (cd $SRC/$d && $make $1)
done
}
################################################################
# This builds $SRC/TAGS (and cscope.files) in a helpful order.
do_tags() {
(cd $SRC ;
find uts/common/sys -name '*.[ch]' -print |sort
find uts/common/net -name '*.[ch]' -print |sort
find uts/common/netinet -name '*.[ch]' -print |sort
find uts/common/smb -name '*.[ch]' -print |sort
find uts/common/smbsrv -name '*.ndl' -print |sort
find uts/common/smbsrv -name '*.[ch]' -print |sort
find uts/common/fs/smbsrv -name '*.[ch]' -print |sort
find uts/common/gssapi -name '*.[ch]' -print |sort
find common/smbsrv -name '*.[ch]' -print |sort
find head -name '*.h' -print |sort
find lib/smbsrv -name '*.[ch]' -print |sort
find lib/libsmbfs -name '*.[ch]' -print |sort
find lib/libmlrpc -name '*.ndl' -print |sort
find lib/libmlrpc -name '*.[ch]' -print |sort
find lib/libads -name '*.[ch]' -print |sort
find lib/libgss -name '*.[ch]' -print |sort
find cmd/smbsrv -name '*.[ch]' -print |sort
) > $SRC/cscope.files
(cd $SRC ;
exctags -e --langmap=c:+.ndl -h ndl -L - < cscope.files
cscope -b )
}
################################################################
# This creates a tarfile one can use to update a test machine.
do_tar() {
git_rev=`git rev-parse --short=8 HEAD`
files="
lib/svc/manifest/network/smb/server.xml
usr/kernel/drv/$arch64/smbsrv
usr/kernel/kmdb/$arch64/smbsrv
usr/lib/fs/smb/$arch64/libshare_smb.so.1
usr/lib/fs/smb/libshare_smb.so.1
usr/lib/libsmbfs.so.1
usr/lib/mdb/kvm/$arch64/smbsrv.so
usr/lib/mdb/proc/libmlsvc.so
usr/lib/reparse/libreparse_smb.so.1
usr/lib/security/pam_smb_passwd.so.1
usr/lib/smbsrv/dtrace
usr/lib/libmlrpc.so.2
usr/lib/smbsrv/libmlsvc.so.1
usr/lib/smbsrv/libsmb.so.1
usr/lib/smbsrv/libsmbns.so.1
usr/lib/smbsrv/nvlprint
usr/lib/smbsrv/smbd
usr/sbin/smbadm
usr/sbin/smbstat
"
(cd $ROOT && tar cfj ../../smbsrv-${git_rev}.tar.bz2 $files)
}
################################################################
if [ "$1" = "" ]; then
set '?' # force usage
fi
set -x
for arg
do
case "$arg" in
install)
build_tools
set -e
do_hdrs $arg
do_kern $arg
do_libs $arg
do_cmds $arg
do_tests $arg
;;
lint)
do_hdrs $arg
do_kern $arg
do_libs $arg
do_cmds $arg
;;
clean)
# intentionally skip: deplib, hdrs, tools
do_tests $arg
do_cmds $arg
do_libs $arg
do_kern $arg
;;
clobber)
do_tests $arg
do_cmds $arg
do_libs $arg
do_deplibs $arg
do_kern $arg
do_hdrs $arg
clobber_tools
;;
deplibs)
build_tools
set -e
do_hdrs install
do_deplibs install
;;
tags)
do_tags
;;
tar)
do_tar
;;
*)
echo "Usage: $0 {install|lint|clean|clobber|deplibs|tags|tar}";
exit 1;
;;
esac
done
#!/bin/ksh
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source. A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
#
# Copyright 2018 Nexenta Systems, Inc. All rights reserved.
#
# Use distributed make (dmake) by default.
make=${MAKE:-dmake}
CLOSED_IS_PRESENT=no
export CLOSED_IS_PRESENT
[ -n "$SRC" ] || {
echo "SRC not set. Run 'ws' or 'bldenv' first."
exit 1
}
cpu=`uname -p`
case $cpu in
i386)
x=intel
kmdb_arch="amd64"
mdb_arch="ia32 amd64"
arch32=i86
arch64=amd64
;;
sparc)
x=sparc
kmdb_arch=v9
mdb_arch="v7 v9"
arch32=sparc
arch64=sparcv9
;;
*) echo "Huh?" ; exit 1;;
esac
################################################################
build_tools() {
test -f $SRC/tools/proto/root_i386-nd/opt/onbld/bin/genoffsets ||
(cd $SRC/tools && $make install)
(cd $SRC/common/mapfiles; $make install)
}
clobber_tools() {
(cd $SRC/tools && $make clobber)
(cd $SRC/common/mapfiles; $make clobber)
}
################################################################
do_hdrs() {
targ=$1
if [ "$targ" = clobber ]
then
(cd $SRC/uts && $make -k clobber_h)
(cd $SRC/head && $make clobber)
fi
if [ "$targ" = install ]
then
targ=install_h
# Just the parts of "make sgs" we need, and
# skip them if they appear to be done.
# ... stuff under $SRC
test -f $SRC/uts/common/sys/priv_names.h ||
(cd $SRC/uts && $make -k all_h)
test -f $SRC/head/rpcsvc/nispasswd.h ||
(cd $SRC/head && $make -k install_h)
# ... stuff under $ROOT (proto area)
test -d $ROOT/usr/include/sys ||
(cd $SRC && $make rootdirs)
test -f $ROOT/usr/include/sys/types.h ||
(cd $SRC/uts && $make -k install_h)
test -f $ROOT/usr/include/rpcsvc/daemon_utils.h ||
(cd $SRC/head && $make install_h)
# always update the sys headers to be safe
(cd $SRC/uts/common/sys && $make -k install_h)
fi
# Need some library headers too...
for lib in \
libbsm \
libcmdutils \
libcryptoutil \
libdevid \
libdiskmgt \
libidmap \
libpam \
libsec \
libscf \
libshare \
libuutil \
libzpool \
libzfs_core \
libzfs \
libzfs_jni
do
(cd $SRC/lib/$lib && $make $targ)
done
# Should fix the Makefile here so all_h or install_h works.
(cd $SRC/lib/libzpool/$cpu && $make ../common/zfs.h)
}
################################################################
do_kern() {
case $1 in
lint) targ=modlintlib ;;
*) targ=$1 ;;
esac
(cd $SRC/uts/$x/zfs && $make $targ)
}
################################################################
#
# Build all libraries used by the other targets in here.
#
# Run this once (at least) in each new workspace where you
# will run "make-zfs install", if you want to avoid linking
# against the libraries from your build host.
#
do_deplibs() {
# install all the lib headers
if [ "$1" = install ] ; then
(cd $SRC/lib && $make install_h)
fi
# Wow, building libc takes a while. Really want that?
for lib in \
libc \
libavl \
libnvpair \
libsec \
libcmdutils \
libdevinfo \
libuutil \
libbrand \
libzonecfg \
libinetutil \
libdladm \
libdlpi \
libdiskmgt \
libumem \
libdisasm \
libidmap \
libdevid \
libsaveargs
do
(cd $SRC/lib/$lib && $make $1)
done
}
################################################################
do_libs() {
for lib in \
libavl \
libcmdutils \
libuutil \
libzpool \
libzfs_core \
libzfs \
libzfs_jni
do
(cd $SRC/lib/$lib && $make $1)
done
(cd $SRC/lib/libshare && $make $1 PLUGINS=)
}
################################################################
do_cmds() {
for cmd in \
availdevs \
isaexec \
fstyp \
zdb \
zfs \
zhack \
zinject \
zpool \
ztest \
zstreamdump
do
(cd $SRC/cmd/$cmd && $make $1)
done
case $1 in
install)
# mount programs need fslib.o
(cd $SRC/cmd/fs.d/zfs && $make $1)
# Build just the ZFS devfsadm module
(cd $SRC/cmd/devfsadm/$cpu && $make SUNW_zfs_link.so \
${ROOT}/usr/lib/devfsadm/linkmod \
${ROOT}/usr/lib/devfsadm/linkmod/SUNW_zfs_link.so )
;;
clean|clobber)
(cd $SRC/cmd/fs.d/zfs && $make clobber)
(cd $SRC/cmd/fs.d && $make ${1}_local)
(cd $SRC/cmd/devfsadm && $make $1)
;;
esac
(cd $SRC/cmd/syseventd/modules/zfs_mod && $make $1)
# Build the MDB modules, WITH the linktest
(cd $SRC/cmd/mdb/tools && $make $1)
# kmdb_arch is 64-bit only
for a in $kmdb_arch
do
case $1 in
install|lint)
(cd $SRC/cmd/mdb/$x/$a/kmdb &&
$make kmdb_modlinktest.o )
;;
clean|clobber)
(cd $SRC/cmd/mdb/$x/$a/kmdb &&
$make -k $1 )
;;
esac
(cd $SRC/cmd/mdb/$x/$a/zfs &&
$make $1 KMDB_LINKTEST_ENABLE= )
done
# mdb_arch is both 32-bit & 64-bit
for a in $mdb_arch
do
(cd $SRC/cmd/mdb/$x/$a/libzpool &&
$make $1 )
done
}
################################################################
do_mans() {
case "$1" in
install)
(cd $SRC/man/man8 && make \
$ROOT/usr/share/man/man8/zdb.8 \
$ROOT/usr/share/man/man8/zfs.8 \
$ROOT/usr/share/man/man8/zfs-program.8 \
$ROOT/usr/share/man/man8/zpool.8 \
$ROOT/usr/share/man/man8/ztest.8 )
(cd $SRC/man/man7 && make \
$ROOT/usr/share/man/man7/zpool-features.7 )
;;
lint)
(cd $SRC/man/man8 && make zdb.8.check zfs.8.check zfs-program.8.check \
zpool.8.check ztest.8.check)
(cd $SRC/man/man7 && make zpool-features.7.check)
;;
*)
(cd $SRC/man/man8 && make $1)
(cd $SRC/man/man7 && make $)
;;
esac
}
################################################################
# This builds $SRC/TAGS (and cscope.files) in a helpful order.
do_tags() {
(cd $SRC ;
find uts/common/sys -name '*.[ch]' -print |sort
find uts/common/fs/zfs -name '*.[ch]' -print |sort
find lib/libzpool -name '*.[ch]' -print |sort
find lib/libzfs -name '*.[ch]' -print |sort
find cmd/zpool -name '*.[ch]' -print |sort
find cmd/zfs -name '*.[ch]' -print |sort
find cmd/zdb -name '*.[ch]' -print |sort
find cmd/zhack -name '*.[ch]' -print |sort
find cmd/zinject -name '*.[ch]' -print |sort
find cmd/ztest -name '*.[ch]' -print |sort
find common/zfs -name '*.[ch]' -print |sort
echo cmd/mdb/common/modules/zfs/zfs.c
) > $SRC/cscope.files
(cd $SRC ;
exctags -e --langmap=c:+.ndl -h ndl -L - < cscope.files
cscope -b )
}
################################################################
# This creates a tarfile one can use to update a test machine.
do_tar() {
git_rev=`git rev-parse --short=8 HEAD`
files="
kernel/drv/$arch64/zfs
kernel/fs/$arch64/zfs
kernel/kmdb/$arch64/zfs
lib/$arch64/libzfs.so.1
lib/$arch64/libzfs_core.so.1
lib/libzfs.so.1
lib/libzfs_core.so.1
usr/bin/$arch32/ztest
usr/bin/$arch64/ztest
usr/lib/$arch64/libzfs_jni.so.1
usr/lib/$arch64/libzpool.so.1
usr/lib/devfsadm/linkmod/SUNW_zfs_link.so
usr/lib/fs/zfs/bootinstall
usr/lib/fs/zfs/fstyp.so.1
usr/lib/libzfs_jni.so.1
usr/lib/libzpool.so.1
usr/lib/mdb/kvm/$arch64/zfs.so
usr/lib/mdb/proc/$arch64/libzpool.so
usr/lib/mdb/proc/libzpool.so
sbin/zfs
sbin/zpool
usr/lib/sysevent/modules/zfs_mod.so
usr/lib/zfs/availdevs
usr/sbin/$arch32/zdb
usr/sbin/$arch64/zdb
usr/sbin/$arch32/zhack
usr/sbin/$arch64/zhack
usr/sbin/$arch32/zinject
usr/sbin/$arch64/zinject
usr/sbin/zstreamdump
usr/share/man/man8/zdb.8
usr/share/man/man8/zfs.8
usr/share/man/man8/zfs-program.8
usr/share/man/man8/zpool.8
usr/share/man/man8/ztest.8
usr/share/man/man7/zpool-features.7
"
(cd $ROOT && tar cfj ../../zfs-${git_rev}.tar.bz2 $files)
}
################################################################
if [ "$1" = "" ]; then
set '?' # force usage
fi
set -x
for arg
do
case "$arg" in
install)
build_tools
set -e
do_hdrs $arg
do_kern $arg
do_libs $arg
do_cmds $arg
do_mans $arg
;;
lint)
do_kern $arg
do_libs $arg
do_cmds $arg
do_mans $arg
;;
clean)
do_mans $arg
do_cmds $arg
do_libs $arg
do_kern $arg
;;
clobber)
do_mans $arg
do_cmds $arg
do_libs $arg
do_kern $arg
do_hdrs $arg
clobber_tools
;;
deplibs)
build_tools
set -e
do_hdrs install
do_deplibs install
;;
tags)
do_tags
;;
tar)
do_tar
;;
*)
echo "Usage: $0 {install|lint|clean|clobber|deplibs|tags|tar}";
exit 1;
;;
esac
done
|