package install_interactive; # $Id$ use diagnostics; use strict; use vars; use common; use partition_table qw(:types); use partition_table::raw; use detect_devices; use install_steps; use devices; use fsedit; use log; use fs; sub tellAboutProprietaryModules { my ($o) = @_; my @l = grep { $_ } map { $_->{driver} =~ /^Bad:(.*)/ && $1 } detect_devices::probeall(); $o->ask_warn('', _("Some hardware on your computer needs ``proprietary'' drivers to work. You can find some information about them at: %s", join(", ", @l))) if @l; } #- unit of $mb is mega bytes, min and max are in sectors, this #- function is used to convert back to sectors count the size of #- a partition ($mb) given from the interface (on Resize or Create). #- modified to take into account a true bounding with min and max. sub from_Mb { my ($mb, $min, $max) = @_; $mb <= $min >> 11 and return $min; $mb >= $max >> 11 and return $max; $mb * 2048; } sub partition_with_diskdrake { my ($o, $all_hds, $nowizard) = @_; my $ok; $o->set_help('partition_with_diskdrake'); do { $ok = 1; require diskdrake::interactive; { local $::expert = $::expert; diskdrake::interactive::main($o, $all_hds, $nowizard); } if (delete $o->{wizard}) { partitionWizard($o, 'nodiskdrake') or redo; return 1; } my @fstab = fsedit::get_all_fstab($all_hds); unless (fsedit::get_root_(\@fstab)) { $ok = 0; $o->ask_okcancel('', _("You must have a root partition. For this, create a partition (or click on an existing one). Then choose action ``Mount point'' and set it to `/'"), 1) or return; } if (!grep { isSwap($_) } @fstab) { $o->ask_warn('', _("You must have a swap partition")), $ok = 0 if !$::expert; $ok &&= $o->ask_okcancel('', _("You don't have a swap partition.\n\nContinue anyway?")); } if (arch() =~ /ia64/ && !fsedit::has_mntpoint("/boot/efi", $all_hds)) { $o->ask_warn('', _("You must have a FAT partition mounted in /boot/efi")); $ok = ''; } } until $ok; 1; } sub partitionWizardSolutions { my ($o, $all_hds) = @_; my $hds = $all_hds->{hds}; my $fstab = [ fsedit::get_all_fstab($all_hds) ]; my @wizlog; my (@solutions, %solutions); my $min_linux = 400 << 11; my $max_linux = 3000 << 11; my $min_swap = 50 << 11; my $max_swap = 300 << 11; my $min_freewin = 100 << 11; # each solution is a [ score, text, function ], where the function retunrs true if succeeded my @hds_rw = grep { !$_->{readonly} } @$hds; my @hds_can_add = grep { $_->can_raw_add } @hds_rw; if (fsedit::free_space(@hds_can_add) > $min_linux) { $solutions{free_space} = [ 20, _("Use free space"), sub { fsedit::auto_allocate($all_hds); 1 } ] } else { push @wizlog, _("Not enough free space to allocate new partitions") . ": " . (@hds_can_add ? fsedit::free_space(@hds_can_add) . " < $min_linux" : "no harddrive on which partitions can be added"); } if (my @truefs = grep { isTrueFS($_) } @$fstab) { #- value twice the ext2 partitions $solutions{existing_part} = [ 6 + @truefs + @$fstab, _("Use existing partitions"), sub { $o->ask_mntpoint_s($fstab) } ] } else { push @wizlog, _("There is no existing partition to use"); } my @fats = grep { isFat($_) } @$fstab; fs::df($_) foreach @fats; if (my @ok_forloopback = sort { $b->{free} <=> $a->{free} } grep { $_->{free} > $min_linux + $min_swap + $min_freewin } @fats) { $solutions{loopback} = [ -10 - @fats, _("Use the Windows partition for loopback"), sub { my ($s_root, $s_swap); my $part = $o->ask_from_listf('', _("Which partition do you want to use for Linux4Win?"), \&partition_table::description, \@ok_forloopback) or return; $max_swap = $min_swap + 1 if $part->{free} - $max_swap < $min_linux; $o->ask_from('', _("Choose the sizes"), [ { label => _("Root partition size in MB: "), val => \$s_root, min => $min_linux >> 11, max => min($part->{free} - $max_swap, $max_linux) >> 11, type => 'range' }, { label => _("Swap partition size in MB: "), val => \$s_swap, min => $min_swap >> 11, max => $max_swap >> 11, type => 'range' }, ]) or return; push @{$part->{loopback}}, { type =>0x483, loopback_file => '/lnx4win/linuxsys.img', mntpoint => '/', size => $s_root << 11, loopback_device => $part, notFormatted => 1 }, { type => 0x82, loopback_file => '/lnx4win/swapfile', mntpoint => 'swap', size => $s_swap << 11, loopback_device => $part, notFormatted => 1 }; fsedit::recompute_loopbacks($all_hds); 1; } ]; my @ok_for_resize_fat = grep { !fsedit::part2hd($_, $all_hds)->{readonly} } @ok_forloopback; $solutions{resize_fat} = [ 6 - @fats, _("Use the free space on the Windows partition"), sub { $o->set_help('resizeFATChoose'); my $part = $o->ask_from_listf('', _("Which partition do you want to resize?"), \&partition_table::description, \@ok_for_resize_fat) or return; $o->set_help('resizeFATWait'); my $w = $o->wait_message(_("Resizing"), _("Resizing Windows partition")); require resize_fat::main; my $resize_fat = eval { resize_fat::main->new($part->{device}, devices::make($part->{device})) }; $@ and die _("The FAT resizer is unable to handle your partition, the following error occured: %s", $@); my $min_win = $resize_fat->min_size; $part->{size} > $min_linux + $min_swap + $min_freewin + $min_win or die _("Your Windows partition is too fragmented. Please reboot your computer under Windows, run the ``defrag'' utility, then restart the Mandrake Linux installation."); $o->ask_okcancel('', _("WARNING! DrakX will now resize your Windows partition. Be careful: this operation is dangerous. If you have not already done so, you should first exit the installation, run scandisk under Windows (and optionally run defrag), then restart the installation. You should also backup your data. When sure, press Ok.")) or return; my $mb_size = $part->{size} >> 11; $o->ask_from('', _("Which size do you want to keep for Windows on"), [ { label => _("partition %s", partition_table::description($part)), val => \$mb_size, min => $min_win >> 11, max => ($part->{size} - $min_linux - $min_swap) >> 11, type => 'range' }, ]) or return; my $size = from_Mb($mb_size, $min_win, $part->{size}); local *log::l = sub { $w->set(join(' ', @_)) }; eval { $resize_fat->resize($size) }; $@ and die _("FAT resizing failed: %s", $@); $part->{size} = $size; $part->{isFormatted} = 1; my ($hd) = fsedit::part2hd($part, $all_hds); $hd->{isDirty} = $hd->{needKernelReread} = 1; $hd->adjustEnd($part); partition_table::adjust_local_extended($hd, $part); partition_table::adjust_main_extended($hd); fsedit::auto_allocate($all_hds); 1; } ] if @ok_for_resize_fat; } else { push @wizlog, _("There is no FAT partition to resize or to use as loopback (or not enough space left)") . @fats ? "\nFAT partitions:" . join('', map { "\n $_->{device} $_->{free} (" . ($min_linux + $min_swap + $min_freewin) . ")" } @fats) : ''; } if (@$fstab && @hds_rw) { $solutions{wipe_drive} = [ 10, fsedit::is_one_big_fat($hds) ? _("Remove Windows(TM)") : _("Erase entire disk"), sub { $o->set_help('takeOverHdChoose'); my $hd = $o->ask_from_listf('', _("You have more than one hard drive, which one do you install linux on?"), \&partition_table::description, \@hds_rw) or return; $o->set_help('takeOverHdConfirm'); $o->ask_okcancel('', _("ALL existing partitions and their data will be lost on drive %s", partition_table::description($hd))) or return; partition_table::raw::zero_MBR($hd); fsedit::auto_allocate($all_hds); 1; } ]; } if (@hds_rw) { $solutions{diskdrake} = [ 0, _("Custom disk partitioning"), sub { partition_with_diskdrake($o, $all_hds, 'nowizard') } ]; } $solutions{fdisk} = [ -10, _("Use fdisk"), sub { $o->enter_console; foreach (@$hds) { print "\n" x 10, _("You can now partition %s. When you are done, don't forget to save using `w'", partition_table::description($_)); print "\n\n"; my $pid = 0; if (arch() =~ /ppc/) { $pid = fork or exec "pdisk", devices::make($_->{device}); } else { $pid = fork or exec "fdisk", devices::make($_->{device}); } waitpid($pid, 0); } $o->leave_console; 0; } ] if $o->{partitioning}{fdisk}; log::l("partitioning wizard log:\n", (map { ">>wizlog>>$_\n" } @wizlog)); %solutions; } sub partitionWizard { my ($o, $nodiskdrake) = @_; $o->set_help('doPartitionDisks'); my %solutions = partitionWizardSolutions($o, $o->{all_hds}); if ($o->{lnx4win}) { if ($solutions{loopback}) { %solutions = (loopback => $solutions{loopback}); } else { $o->ask_warn('', _("You don't have enough free space on your Windows partition")) if grep { isFat($_) } fsedit::get_all_fstab($o->{all_hds}); } } delete $solutions{diskdrake} if $nodiskdrake; my @solutions = sort { $b->[0] <=> $a->[0] } values %solutions; my $level = $::expert ? -9999 : 0; my @sol = grep { $_->[0] >= $level } @solutions; log::l('' . "solutions found: " . join('', map { $_->[1] } @sol) . " (all solutions found: " . join('', map { $_->[1] } @solutions) . ")"); @solutions = @sol if @sol > 1; log::l("solutions: ", int @solutions); @solutions or $o->ask_warn('', _("I can't find any room for installing")), die 'already displayed'; log::l('HERE: ', join(',', map { $_->[1] } @solutions)); if (my $sol = $o->ask_from_listf('', _("The DrakX Partitioning wizard found the following solutions:"), sub { $_[0][1] }, \@solutions)) { log::l("partitionWizard calling solution $sol->[1]"); my $ok = eval { $sol->[2]->() }; die if $@ =~ /setstep/; $@ and $o->ask_warn('', _("Partitioning failed: %s", $@)); $ok or goto &partitionWizard; } else { $nodiskdrake ? return : die "setstep setupSCSI\n"; } 1; } sub upNetwork { my ($o, $pppAvoided) = @_; my $w = $o->wait_message('', _("Bringing up the network")); install_steps::upNetwork($o, $pppAvoided); } sub downNetwork { my ($o, $pppOnly) = @_; my $w = $o->wait_message('', _("Bringing down the network")); install_steps::downNetwork($o, $pppOnly); } 1; 0 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
#!/usr/bin/perl
#
# Copyright (C) 2002 by MandrakeSoft (sbenedict@mandrakesoft.com)
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
use lib qw(/usr/lib/libDrakX);
use standalone; #- warning, standalone must be loaded very first, for 'explanations'
use strict;
use interactive;
use ugtk2 qw(:helpers :wrappers :create);
use common;
use run_program;
use MDK::Common::File qw(:all);
use Config;
use POSIX;
my $in = 'interactive'->vnew('su');
my @buff; #- used to display status info
my $central_widget;
my $window1;
my $windows;
my $status_box;
my $main_box;
my $wizard_buttons;
my $previous_button;
my $cancel_button;
my $next_button;
my $main_buttons;
my $in_wizard = 0;
my $config_written = 0;
my $clients_set = 0;
my $nfs_subnet;
my $nfs_mask;
my $thin_clients = 0;
my $cfg_dir = "/etc/drakxtools/draktermserv/";
my $cfg_file = $cfg_dir . "draktermserv.conf";
my $server_ip = get_ip_from_sys();
my $changes_made = 0;
my $client_cfg = "/etc/dhcpd.conf.etherboot.clients";
#- make sure terminal server and friends are installed
my $ts = system("rpm -qa | grep terminal-server > /dev/null");
if ($ts == 256) {
if ($ENV{DISPLAY}) {
system("urpmi --X terminal-server > /dev/null");
} else {
system("urpmi terminal-server > /dev/null");
}
$ts = system("rpm -qa | grep terminal-server > /dev/null");
if ($ts == 256) {
warn(N("Useless without Terminal Server"));
exit(1);
}
}
if ("@ARGV" =~ /--enable/) {
my $cmd_line = 1;
enable_ts($cmd_line);
exit(0);
}
if ("@ARGV" =~ /--disable/) {
my $cmd_line = 1;
disable_ts($cmd_line);
exit(0);
}
if ("@ARGV" =~ /--start/) {
my $cmd_line = 1;
start_ts($cmd_line);
exit(0);
}
if ("@ARGV" =~ /--stop/) {
my $cmd_line = 1;
stop_ts($cmd_line);
exit(0);
}
if ("@ARGV" =~ /--adduser/) {
die N("%s: %s requires a username...\n", $0, $ARGV[0]) if $#ARGV < 1;
my $cmd_line = 1;
adduser($cmd_line, $ARGV[1]);
exit(0);
}
if ("@ARGV" =~ /--deluser/) {
die N("%s: %s requires a username...\n", $0, $ARGV[0]) if $#ARGV < 1;
my $cmd_line = 1;
deluser($cmd_line, $ARGV[1]);
exit(0);
}
if ("@ARGV" =~ /--syncusers/) {
my $cmd_line = 1;
sync_users($cmd_line);
exit(0);
}
if ("@ARGV" =~ /--addclient/) {
die N("%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, 0/1 for Local Config...\n", $0, $ARGV[0]) if $#ARGV < 6;
my $cmd_line = 1;
addclient($cmd_line, @ARGV[1..6]);
exit(0);
}
if ("@ARGV" =~ /--delclient/) {
die N("%s: %s requires hostname...\n", $0, $ARGV[0]) if $#ARGV < 1;
my $cmd_line = 1;
delclient($cmd_line, $ARGV[1]);
exit(0);
}
read_conf_file();
interactive_mode() if $#ARGV < 1;
sub read_conf_file() {
if (-e $cfg_file) {
local *CONF_FILE;
open(CONF_FILE, "<" . $cfg_file) || print N("You must be root to read configuration file. \n");
local $_;
while (<CONF_FILE>) {
if (/^\bALLOW_THIN\b/) {
$thin_clients = 1;
last;
}
}
}
}
sub write_conf_file() {
my @cfg_list;
if ($thin_clients == 1) {
@cfg_list = "ALLOW_THIN\n";
}
output_p($cfg_file, @cfg_list);
chmod(0600, $cfg_file);
}
sub write_thin_inittab {
my ($client_ip) = @_;
my $inittab = "
# /etc/inittab\$\$IP=$client_ip\$\$
# created by drakTermServ
id:5:initdefault:
# System initialization.
si::sysinit:/etc/rc.d/rc.sysinit
l0:0:wait:/etc/rc.d/rc 0
l1:1:wait:/etc/rc.d/rc 1
l2:2:wait:/etc/rc.d/rc 2
l3:3:wait:/etc/rc.d/rc 3
l4:4:wait:/etc/rc.d/rc 4
l5:5:wait:/etc/rc.d/rc 5
l6:6:wait:/etc/rc.d/rc 6
# Things to run in every runlevel.
ud::once:/sbin/update
# Trap CTRL-ALT-DELETE
ca::ctrlaltdel:/sbin/reboot -f
# Run gettys in standard runlevels
1:2345:respawn:/sbin/mingetty tty1
# Connect to X server
x:5:respawn:/usr/X11R6/bin/X -ac -query $server_ip\n";
my $inittab_file = "/etc/inittab\$\$IP=$client_ip\$\$";
local *INITTAB;
open(INITTAB, "> $inittab_file") or warn("Can't open $inittab_file!");
print INITTAB $inittab;
close INITTAB
}
sub cursor_wait() {
# turn the cursor to a watch
$window1->{rwindow}->window->set_cursor(new Gtk2::Gdk::Cursor("GDK_WATCH"));
gtkflush();
}
sub cursor_norm() {
# restore normal cursor
$window1->{rwindow}->window->set_cursor(new Gtk2::Gdk::Cursor("GDK_LEFT_PTR"));
gtkflush();
}
sub display_error {
my ($message) = @_;
my $error_box;
destroy_widget();
gtkpack($status_box,
$error_box = gtkpack_(new Gtk2::VBox(0,0),
1, new Gtk2::Label($message),
0, gtkadd(gtkset_layout(new Gtk2::HButtonBox, 'spread'),
gtksignal_connect(new Gtk2::Button(N("OK")), clicked => sub {
destroy_widget();
}),
),
)
);
$central_widget = \$error_box;
}
sub interactive_mode() {
my $darea;
$window1 = ugtk2->new('drakTermServ');
$window1->{rwindow}->signal_connect(delete_event => sub { ugtk2->exit(0) });
unless ($::isEmbedded) {
$window1->{rwindow}->set_position('center');
$window1->{rwindow}->set_title(N("Mandrake Terminal Server Configuration"));
my $pixbuf_icon = gtkcreate_pixbuf("ic82-network-40");
$darea = Gtk2::DrawingArea->new;
$darea->set_size_request(540, 45);
$darea->modify_font(Gtk2::Pango::FontDescription->from_string('Sans Italic 24'));
my $layout = $darea->create_pango_layout(N("DrakTermServ"));
$darea->signal_connect(realize => sub {
set_back_pixbuf($darea, gtkcreate_pixbuf('title-tile'))
});
$darea->signal_connect(expose_event => sub {
my (undef, undef, $dx, $dy) = $darea->allocation->values;
$darea->window->draw_pixbuf($darea->style->white_gc, $pixbuf_icon, 0, 0, $dx - $pixbuf_icon->get_width, $dy - $pixbuf_icon->get_height, -1, -1, 'none', 0, 0);
my ($lx, $ly) = $layout->get_pixel_size;
$darea->window->draw_layout($darea->style->white_gc, ($dx-$lx)/2, ($dy-$ly)/2, $layout);
0;
});
}
$window1->{rwindow}->set_border_width(5);
gtkadd($window1->{window},
gtkpack_(gtkset_size_request(new Gtk2::VBox(0,2), 620, 400),
if_(!$::isEmbedded, 0, $darea),
1, gtkpack_(new Gtk2::HBox(0,2),
1, gtkpack_(new Gtk2::VBox(0,2),
1, gtkpack($status_box = new Gtk2::VBox(0,5),
$main_box = new Gtk2::VBox(0,10),
),
0, $wizard_buttons = gtkpack_(new Gtk2::HBox(1,2)),
1, gtkpack_($main_buttons = new Gtk2::HBox(0,2),
0, gtkadd(gtkset_layout(Gtk2::VButtonBox->new, 'end'),
gtksignal_connect(new Gtk2::Button(N("Enable Server")), clicked => sub {
destroy_widget();
$windows = 1;
cursor_wait();
enable_ts();
cursor_norm();
}),
gtksignal_connect(new Gtk2::Button(N("Disable Server")), clicked => sub {
destroy_widget();
cursor_wait();
disable_ts();
cursor_norm();
}),
),
0, gtkadd(gtkset_layout(Gtk2::VButtonBox->new, 'end'),
gtksignal_connect(new Gtk2::Button(N("Start Server")), clicked => sub {
destroy_widget();
$windows = 0;
cursor_wait();
start_ts();
cursor_norm();
}),
gtksignal_connect(new Gtk2::Button(N("Stop Server")), clicked => sub {
destroy_widget();
cursor_wait();
stop_ts();
cursor_norm();
}),
),
0, gtkadd(gtkset_layout(Gtk2::VButtonBox->new, 'end'),
gtksignal_connect(new Gtk2::Button(N("Etherboot Floppy/ISO")), clicked => sub {
destroy_widget();
$windows = 1;
make_boot();
}),
gtksignal_connect(new Gtk2::Button(N("Net Boot Images")), clicked => sub {
destroy_widget();
make_nbi();
}),
),
0, gtkadd(gtkset_layout(Gtk2::VButtonBox->new, 'end'),
gtksignal_connect(new Gtk2::Button(N("Add/Del Users")), clicked => sub {
destroy_widget();
$windows = 0;
maintain_users();
}),
gtksignal_connect(new Gtk2::Button(N("Add/Del Clients")), clicked => sub { destroy_widget(); maintain_clients() }),
),
1, new Gtk2::HBox(0,2),
0, gtkadd(gtkset_layout(Gtk2::VButtonBox->new, 'end'),
gtksignal_connect(new Gtk2::Button(N("First Time Wizard")), clicked => sub {
destroy_widget();
start_wizard();
}),
new Gtk2::VBox(0,0),
),
0, gtkadd(gtkset_layout(Gtk2::VButtonBox->new, 'end'),
gtksignal_connect(new Gtk2::Button(N("Help")),clicked => sub {
destroy_widget();
help();
}),
gtksignal_connect(new Gtk2::Button(N("Close")), clicked => sub {
write_conf_file();
restart_server() if $changes_made == 1;
Gtk2->main_quit;
}),
),
),
),
),
),
);
$central_widget = \$main_box;
$window1->{rwindow}->show_all;
$window1->{rwindow}->realize;
$window1->{rwindow}->show_all;
$window1->main;
ugtk2->exit(0);
}
sub start_wizard() {
text_view(N("
This wizard routine will:
1) Ask you to select either 'thin' or 'fat' clients.
2) Setup dhcp.
After doing these steps, the wizard will:
a) Make all nbis.
b) Activate the server.
c) Start the server.
d) Synchronize the shadow files so that all users, including root,
are added to the shadow\$\$CLIENT\$\$ file.
e) Ask you to make a boot floppy.
f) If it's thin clients, ask if you want to restart KDM.
"), "wizard");
}
sub do_wizard() {
destroy_widget();
$main_buttons->hide;
$in_wizard = 1;
$config_written = 0;
wizard_step(\&client_type, 1);
}
sub wizard_step {
my ($do_step, $step) = @_;
&$do_step();
gtkadd($wizard_buttons,
gtksignal_connect($previous_button = new Gtk2::Button(N("<-- Wizard Previous Step")), clicked => sub {
clear_buttons();
if ($step == 1) {
exit_wizard();
start_wizard();
}
wizard_step(\&client_type, 1) if $step == 2;
wizard_step(\&dhcpd_config, 2) if $step == 3;
wizard_step(\&make_nbis, 3) if $step == 4;
wizard_step(\&enable_ts, 4) if $step == 5;
wizard_step(\&restart_ts, 5) if $step == 6;
wizard_step(\&sync_users, 6) if $step == 7;
wizard_step(\&make_boot, 7) if $step == 8;
})
);
gtkadd($wizard_buttons,
gtksignal_connect($cancel_button = new Gtk2::Button(N("Cancel Wizard")), clicked => sub {
exit_wizard();
})
);
gtkadd($wizard_buttons,
gtksignal_connect($next_button = new Gtk2::Button(N("Wizard Next Step -->")), clicked => sub {
clear_buttons();
wizard_step(\&dhcpd_config, 2) if $step == 1;
if ($step == 2) {
if ($config_written == 1) {
wizard_step(\&make_nbis, 3);
} else {
$in->ask_warn(N("Error"), N("Please save dhcpd config!"));
wizard_step(\&dhcpd_config, 2);
}
}
wizard_step(\&enable_ts, 4) if $step == 3;
wizard_step(\&restart_ts, 5) if $step == 4;
wizard_step(\&sync_users, 6) if $step == 5;
wizard_step(\&make_boot, 7) if $step == 6;
wizard_step(\&restart_dm, 8) if $step == 7;
})
);
exit_wizard() if $step == 8;
}
sub exit_wizard() {
clear_buttons();
$in_wizard = 0;
$main_buttons->show;
}
sub clear_buttons() {
destroy_widget();
$previous_button->destroy;
$cancel_button->destroy;
$next_button->destroy;
}
sub client_type() {
text_view(N("Please select client type.
'Thin' clients run everything off the server's CPU/RAM, using the client display.
'Fat' clients use their own CPU/RAM but the server's filesystem."), "wizard");
gtkpack_($$central_widget,
1, gtkpack_(new Gtk2::HBox(1,0),
0, new Gtk2::VBox(0,10),
1, gtksignal_connect(new Gtk2::CheckButton(N("Allow thin clients.")),
clicked => sub { invbool \$thin_clients; client_set() }),
0, new Gtk2::VBox(0,10)
)
)
}
sub make_nbis() {
my $buff = N("Creating net boot images for all kernels");
$in->ask_warn(N("Information"), N("This will take a few minutes."));
cursor_wait();
system("/usr/bin/mknbi-set");
cursor_norm();
$buff .= "\n\n\t" . N("Done!");
text_view($buff, "wizard");
}
sub sync_users {
my ($cmd_line) = @_;
my $buff = N("Syncing server user list with client list, including root.");
my @active_users = cat_("/etc/shadow");
local *SHADOW;
open(SHADOW, '> /etc/shadow$$CLIENT$$');
#- only users with home dirs, and root
foreach my $user (@active_users) {
my @fields = split(/:/, $user);
if (-d "/home/" . $fields[0] || $fields[0] eq "root") {
print SHADOW $user;
}
}
close SHADOW;
$buff .= "\n\n\t" . N("Done!");
text_view($buff, "wizard") if !$cmd_line;
}
sub restart_dm() {
if ($clients_set) {
my $result = $in->ask_okcancel('', N("In order to enable changes made for thin clients, the display manager must be restarted. Restart now?"));
system('/sbin/service dm restart') if $result;
}
}
sub about() {
text_view(N("
Copyright (C) 2002 by MandrakeSoft
Stew Benedict sbenedict\@mandrakesoft.com
") . $::license . N("
Thanks:
- LTSP Project http://www.ltsp.org
- Michael Brown <mbrown\@fensystems.co.uk>
"), "close");
}
sub text_view {
my ($text, $option) = @_;
my $box;
gtkpack($status_box,
$box = gtkpack_(new Gtk2::VBox(0,10),
1, gtkpack_(new Gtk2::HBox(0,0),
1, create_scrolled_window(gtktext_insert(
new Gtk2::TextView, [ [ $text ] ])
),
),
0, gtkpack(gtkset_layout(new Gtk2::HButtonBox, 'spread'),
gtksignal_connect(my $ok_button = new Gtk2::Button(N("OK")), clicked => sub {
destroy_widget() if $option eq "close";
do_wizard() if $option eq "wizard";
}),
),
)
);
gtkset_size_request($box, 580, 280);
$central_widget = \$box;
$status_box->show_all;
$ok_button->hide if $in_wizard;
$main_buttons->hide if $in_wizard;
}
sub help() {
my $inittab_str = '/etc/inittab$$IP=client_ip$$';
my $shadow_str = '/etc/shadow$$CLIENT$$';
my $xfconfig_str = '/etc/X11/XF86Config-4$$IP=client_ip$$';
text_view(N("drakTermServ Overview") . "\n\n" .
N(" - Create Etherboot Enabled Boot Images:
To boot a kernel via etherboot, a special kernel/initrd image must be created.
mkinitrd-net does much of this work and drakTermServ is just a graphical
interface to help manage/customize these images. To create the file
/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an include in
dhcpd.conf, you should create the etherboot images for at least one full kernel.") . "\n\n" .
N(" - Maintain /etc/dhcpd.conf:
To net boot clients, each client needs a dhcpd.conf entry, assigning an IP
address and net boot images to the machine. drakTermServ helps create/remove
these entries.
(PCI cards may omit the image - etherboot will request the correct image.
You should also consider that when etherboot looks for the images, it expects
names like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).
A typical dhcpd.conf stanza to support a diskless client looks like:") . "\n\n" .
' host curly {
hardware ethernet 00:20:af:2f:f7:9d;
fixed-address 192.168.192.3;
#type fat;
filename "i386/boot/boot-3c509.2.4.18-6mdk.nbi";
#hdw_config true;
}
' . "\n" .
N(" While you can use a pool of IP addresses, rather than setup a specific entry for
a client machine, using a fixed address scheme facilitates using the functionality
of client-specific configuration files that ClusterNFS provides.
Note: The '#type' entry is only used by drakTermServ. Clients can either be 'thin'
or 'fat'. Thin clients run most software on the server via xdmcp, while fat clients run
most software on the client machine. A special inittab, %s is
written for thin clients. System config files xdm-config, kdmrc, and gdm.conf are
modified if thin clients are used, to enable xdmcp. Since there are security issues in
using xdmcp, hosts.deny and hosts.allow are modified to limit access to the local
subnet.
Note: The '#hdw_config' entry is also only used by drakTermServ. Clients can either
be 'true' or 'false'. 'true' enables root login at the client machine and allows local
hardware configuration of sound, mouse, and X, using the 'drak' tools. This is enabled
by creating separate config files associated with the client's IP address and creating
read/write mount points to allow the client to alter the file. Once you are satisfied
with the configuration, you can remove root login privileges from the client.
Note: You must stop/start the server after adding or changing clients.", $inittab_str) . "\n\n" .
N(" - Maintain /etc/exports:
Clusternfs allows export of the root filesystem to diskless clients. drakTermServ
sets up the correct entry to allow anonymous access to the root filesystem from
diskless clients.
A typical exports entry for clusternfs is:
/ (ro,all_squash)
/home SUBNET/MASK(rw,root_squash)
With SUBNET/MASK being defined for your network.") .
"\n\n" .
N(" - Maintain %s:
For users to be able to log into the system from a diskless client, their entry in
/etc/shadow needs to be duplicated in %s. drakTermServ
helps in this respect by adding or removing system users from this file.", $shadow_str, $shadow_str) . "\n\n" .
N(" - Per client %s:
Through clusternfs, each diskless client can have its own unique configuration files
on the root filesystem of the server. By allowing local client hardware configuration,
drakTermServ will help create these files.", $xfconfig_str) .
"\n\n" .
N(" - Per client system configuration files:
Through clusternfs, each diskless client can have its own unique configuration files
on the root filesystem of the server. By allowing local client hardware configuration,
clients can customize files such as /etc/modules.conf, /etc/sysconfig/mouse,
/etc/sysconfig/keyboard on a per-client basis.
Note: Enabling local client hardware configuration does enable root login to the terminal
server on each client machine that has this feature enabled. Local configuration can be
turned back off, retaining the configuration files, once the client machine is configured.") . "\n\n" .
N(" - /etc/xinetd.d/tftp:
drakTermServ will configure this file to work in conjunction with the images created
by mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up the boot image to
each diskless client.
A typical tftp configuration file looks like:
service tftp
{
disable = no
socket_type = dgram
protocol = udp
wait = yes
user = root
server = /usr/sbin/in.tftpd
server_args = -s /var/lib/tftpboot
}
The changes here from the default installation are changing the disable flag to
'no' and changing the directory path to /var/lib/tftpboot, where mkinitrd-net
puts its images.") . "\n\n" .
N(" - Create etherboot floppies/CDs:
The diskless client machines need either ROM images on the NIC, or a boot floppy
or CD to initate the boot sequence. drakTermServ will help generate these
images, based on the NIC in the client machine.
A basic example of creating a boot floppy for a 3Com 3c509 manually:
cat /usr/lib/etherboot/floppyload.bin \\
/usr/share/etherboot/start16.bin \\
/usr/lib/etherboot/zimg/3c509.zimg > /dev/fd0") . "\n\n", "close");
}
sub make_boot() {
#- make a boot image on floppy or iso from etherboot images
my $boot_box;
my $rom_path = "/usr/share/etherboot";
#- doesn't return list sorted
my @nics = sort(all("/usr/share/etherboot/zimg"));
my $list_nics = new Gtk2::List();
my $nic;
foreach (@nics) {
my $t = $_;
$list_nics->add(gtkshow(gtksignal_connect(new Gtk2::ListItem($t),
select => sub { $nic = $t })));
}
$list_nics->set_selection_mode('single');
gtkpack($status_box,
$boot_box = gtkpack_(new Gtk2::VBox(0,10),
0, gtkadd(new Gtk2::HBox(0,10),
new Gtk2::HBox(0,5),
create_scrolled_window($list_nics),
gtkadd(new Gtk2::VBox(1,10),
new Gtk2::HBox(0,20),
gtksignal_connect(new Gtk2::Button(N("Boot Floppy")), clicked =>
sub { write_eb_image($nic, $rom_path, "floppy") }),
gtksignal_connect(new Gtk2::Button(N("Boot ISO")), clicked =>
sub { write_eb_image($nic, $rom_path, "iso") }),
new Gtk2::HBox(0,20),
),
new Gtk2::HBox(0,5),
),
),
);
$central_widget = \$boot_box;
$boot_box->show_all;
}
sub make_nbi() {
my $nbi_box;
my @kernels = grep { /vmlinuz-/ } all("/boot");
my $kernel;
my $nic;
#- just a static list for the moment
#- method in mknbi-net is much better
my @nics = ("3c509", "3c59x", "3c90x", "8139cp", "8139too", "acenic", "airo",
"aironet4500_card", "bcm5700", "dgrs", "dl2k", "dmfe", "e100",
"e1000", "eepro100", "epic100", "fealnx", "hamachi", "hp100",
"hysdn", "natsemi", "natsemi_old", "ne", "ne2k-pci", "ns83820",
"pcnet32", "pegasus", "prism2_pci", "prism2_plx", "rcpci", "sis900",
"starfire", "sundance", "sungem", "sunhme", "tlan", "tulip-old",
"via-rhine", "winbond-840", "xircom_cb", "xircom_tulip_cb", "yellowfin");
#- kernel/module info in tree view
my $model = Gtk2::TreeStore->new("Glib::String");
my $tree_kernels = Gtk2::TreeView->new_with_model($model);
$tree_kernels->append_column(Gtk2::TreeViewColumn->new_with_attributes(undef, Gtk2::CellRendererText->new, 'text' => 0));
$tree_kernels->set_headers_visible(0);
$tree_kernels->get_selection->set_mode('single');
foreach (@kernels) {
my $t_kernel = $model->append_set(undef, [ 0 => $_ ]);
foreach (@nics) {
$model->append_set($t_kernel, [ 0 => $_ ]);
}
}
$tree_kernels->get_selection->signal_connect(changed => sub {
$kernel = '';
$nic = '';
my ($model, $iter) = $_[0]->get_selected;
$model && $iter or return;
my $value = $model->get($iter, 0);
my $path = $model->get_path_str($iter);
if ($path !~ /:/) {
$kernel = $value;
} else {
my @elements = split(/:/, $path);
$nic = $value;
$kernel = $kernels[$elements[0]];
}
});
# existing nbi images in list
my $list_model = Gtk2::ListStore->new("Glib::String");
my $list_nbis = Gtk2::TreeView->new_with_model($list_model);
$list_nbis->append_column(Gtk2::TreeViewColumn->new_with_attributes(undef, Gtk2::CellRendererText->new, 'text' => 0));
$list_nbis->set_headers_visible(0);
my @nbis = grep { /\.nbi/ } all("/var/lib/tftpboot");
my $nbi;
my $nbi_iter;
my $iter;
foreach (@nbis) {
$list_model->append_set(undef, $_);
}
$list_nbis->get_selection->signal_connect(changed => sub {
my ($model, $iter) = $_[0]->get_selected;
$model && $iter or return;
$nbi = $model->get($iter, 0);
$nbi_iter = $iter;
});
gtkpack($status_box,
$nbi_box = gtkpack_(new Gtk2::VBox(1,10),
0, gtkadd(new Gtk2::HBox(0,10),
create_scrolled_window($tree_kernels),
gtkadd(new Gtk2::VBox(1,10),
gtksignal_connect(new Gtk2::Button(N("Build Whole Kernel -->")), clicked => sub {
if ($kernel) {
$in->ask_warn(N("Information"), N("This will take a few minutes."));
cursor_wait();
system("/usr/bin/mknbi-set -k /boot/$kernel");
$list_model->clear;
@nbis = grep { /\.nbi/ } all("/var/lib/tftpboot");
foreach (@nbis) {
$list_model->append_set($iter, $_);
}
cursor_norm();
} else {
$in->ask_warn(N("Error"), N("No kernel selected!")) if !($kernel);
}
}),
gtksignal_connect(new Gtk2::Button(N("Build Single NIC -->")), clicked => sub {
if ($nic) {
system("/usr/bin/mknbi-set -k /boot/$kernel -r $nic");
$list_model->clear;
@nbis = grep { /\.nbi/ } all("/var/lib/tftpboot");
foreach (@nbis) {
$list_model->append_set($iter, $_);
}
} else {
$in->ask_warn(N("Error"), N("No NIC selected!"));
}
}),
gtksignal_connect(new Gtk2::Button(N("Build All Kernels -->")), clicked => sub {
$in->ask_warn(N("Information"), N("This will take a few minutes."));
cursor_wait();
system("/usr/bin/mknbi-set");
$list_model->clear;
@nbis = grep { /\.nbi/ } all("/var/lib/tftpboot");
foreach (@nbis) {
$list_model->append_set($iter, $_);
}
cursor_norm();
}),
new Gtk2::HBox(1,1),
gtksignal_connect(new Gtk2::Button(N("<-- Delete")), clicked => sub {
my $nbi = "/var/lib/tftpboot/" . $nbi;
my $result = unlink($nbi) || warn("Can't delete $nbi...");
if ($result == 1) {
$list_model->remove($nbi_iter);
}
}),
gtksignal_connect(new Gtk2::Button(N("Delete All NBIs")), clicked => sub {
cursor_wait();
foreach (grep { /\.nbi/ } all("/var/lib/tftpboot")) {
my $nbi = "/var/lib/tftpboot/" . $_;
unlink($nbi) || warn("Can't delete $nbi...");
}
$list_model->clear;
cursor_norm();
}),
new Gtk2::HBox(1,1),
),
create_scrolled_window($list_nbis),
),),
);
$central_widget = \$nbi_box;
$nbi_box->show_all;
}
sub maintain_users() {
#- copy users from /etc/shadow to /etc/shadow$$CLIENT$$ to allow ts login
my $user_box;
my @sys_users = cat_("/etc/shadow");
my @ts_users = cat_('/etc/shadow$$CLIENT$$');
my $titer;
#- use /homes to filter system daemons
#- seems suppressing root is less than useful, let it be added
my @homes = (all("/home"), "root");
my $list_model = Gtk2::ListStore->new("Glib::String");
my $list_sys_users = Gtk2::TreeView->new_with_model($list_model);
$list_sys_users->append_column(Gtk2::TreeViewColumn->new_with_attributes(undef, Gtk2::CellRendererText->new, 'text' => 0));
$list_sys_users->set_headers_visible(0);
my $sys_user;
foreach (@sys_users) {
my ($s_label) = split(/:/, $_, 2);
if (any { /$s_label/ } @homes) {
$list_model->append_set(undef, $s_label);
}
}
$list_sys_users->get_selection->signal_connect(changed => sub {
my ($model, $iter) = $_[0]->get_selected;
$model && $iter or return;
$sys_user = $model->get($iter, 0);
});
$list_model = Gtk2::ListStore->new("Glib::String");
my $list_ts_users = Gtk2::TreeView->new_with_model($list_model);
$list_ts_users->append_column(Gtk2::TreeViewColumn->new_with_attributes(undef, Gtk2::CellRendererText->new, 'text' => 0));
$list_ts_users->set_headers_visible(0);
my $ts_user;
foreach (@ts_users) {
my ($t_label) = split(/:/, $_, 2);
my @system_entry = grep { /$t_label/ } @sys_users;
$t_label = $t_label . " !!!" if $_ ne $system_entry[0];
$list_model->append_set(undef, $t_label);
}
$list_ts_users->get_selection->signal_connect(changed => sub {
my ($model, $iter) = $_[0]->get_selected;
$model && $iter or return;
$ts_user = $model->get($iter, 0);
$ts_user =~ s| !!!||;
$titer = $iter;
});
gtkpack($status_box,
$user_box = gtkpack_(new Gtk2::VBox(0,10),
0, gtkadd(new Gtk2::Label(N("!!! Indicates the password in the system database is different than\n the one in the Terminal Server database.\nDelete/re-add the user to the Terminal Server to enable login."))),
0, gtkadd(new Gtk2::HBox(0,20),
create_scrolled_window($list_sys_users),
gtkadd(new Gtk2::VBox(1,10),
new Gtk2::HBox(0,10),
gtksignal_connect(new Gtk2::Button(N("Add User -->")), clicked =>
sub { my $result = adduser(0, $sys_user);
if ($result == 0) {
$list_model->append_set(undef, $sys_user);
}
}),
gtksignal_connect(new Gtk2::Button(N("<-- Del User")), clicked =>
sub { deluser(0, $ts_user);
$list_model->remove($titer);
}),
new Gtk2::HBox(0,10),
),
create_scrolled_window($list_ts_users),
),),
);
$central_widget = \$user_box;
$user_box->show_all;
}
sub maintain_clients() {
#- add client machines to Terminal Server config
my $client_box;
my %clients = read_dhcpd_conf();
my $client;
my $citer;
my $local_config = 0;
my $button_edit;
my $button_config;
my $button_delete;
#- client info in tree view
my $model = Gtk2::TreeStore->new("Glib::String");
my $tree_clients = Gtk2::TreeView->new_with_model($model);
$tree_clients->append_column(Gtk2::TreeViewColumn->new_with_attributes(undef, Gtk2::CellRendererText->new, 'text' => 0));
$tree_clients->set_headers_visible(0);
$tree_clients->get_selection->set_mode('browse');
foreach my $key (keys(%clients)) {
my $t_client = $model->append_set(undef, [ 0 => $key ]);
$model->append_set($t_client, [ 0 => $clients{$key}{hardware} ]);
$model->append_set($t_client, [ 0 => $clients{$key}{address} ]);
$model->append_set($t_client, [ 0 => N("type: %s", $clients{$key}{type}) ]);
if ($clients{$key}{filename}) {
$model->append_set($t_client, [ 0 => $clients{$key}{filename} ]);
}
$model->append_set($t_client, [ 0 => N("local config: %s", $clients{$key}{hdw_config}) ]);
}
$tree_clients->get_selection->signal_connect(changed => sub {
my ($model, $iter) = $_[0]->get_selected;
$model && $iter or return;
my $value = $model->get($iter, 0);
my $path = $model->get_path_str($iter);
if ($path !~ /:/) {
$client = $value;
$citer = $iter;
} else {
$client = '';
}
$button_edit->set_sensitive(1);
$button_config->set_sensitive(1);
$button_delete->set_sensitive(1);
});
#- entry boxes for client data entry
my $label_host = new Gtk2::Label("Client Name:");
my $entry_host = new Gtk2::Entry();
my $label_mac = new Gtk2::Label("MAC Address:");
my $entry_mac = new Gtk2::Entry();
my $label_ip = new Gtk2::Label("IP Address:");
my $entry_ip = new Gtk2::Entry();
my $label_nbi = new Gtk2::Label("Kernel Netboot Image:");
my $entry_nbi = new Gtk2::Combo();
gtksignal_connect(my $check_hdw_config = new Gtk2::CheckButton(N("Allow local hardware\nconfiguration.")),
clicked => sub { invbool \$local_config });
my @images = grep { /\.nbi/ } all("/var/lib/tftpboot/");
my $have_nbis = @images;
if ($have_nbis) {
unshift(@images, "");
$entry_nbi->set_popdown_strings(@images);
} else {
$in->ask_warn(N("Error"), N("No net boot images created!"));
make_nbi();
return 1;
}
my $check_thin;
my $check_allow_thin;
my $is_thin = 0;
gtkpack($status_box,
$client_box = gtkpack_(new Gtk2::VBox(0,10),
0, gtkadd(new Gtk2::HBox(1,5),
gtkadd(new Gtk2::VBox(0,5),
gtkadd($label_host), gtkadd($entry_host),
gtkadd($label_mac), gtkadd($entry_mac),
gtkadd($label_ip), gtkadd($entry_ip),
gtkadd($label_nbi), gtkadd($entry_nbi),
gtkadd($check_hdw_config),
gtksignal_connect($check_thin = new Gtk2::CheckButton(N("Thin Client")),
clicked => sub { invbool \$is_thin }),
),
gtkadd(new Gtk2::VBox(1,10),
$check_allow_thin = new Gtk2::CheckButton(N("Allow Thin Clients")),
gtksignal_connect(new Gtk2::Button(N("Add Client -->")), clicked =>
sub { my $hostname = $entry_host->get_text;
my $mac = $entry_mac->get_text;
my $ip = $entry_ip->get_text;
my $nbi = $entry_nbi->entry->get_text;
if ($hostname && $mac && $ip) {
my $result = addclient(0, $hostname, $mac, $ip, $nbi, $is_thin, $local_config);
if ($result == 0) {
my $t_client = $model->append_set(undef, [ 0 => $hostname ]);
$model->append_set($t_client, [ 0 => $mac ]);
$model->append_set($t_client, [ 0 => $ip ]);
my $client_type = N("type: fat");
$client_type = N("type: thin") if $is_thin == 1;
$model->append_set($t_client, [ 0 => $client_type ]);
$model->append_set($t_client, [ 0 => $nbi ]) if $nbi;
$check_thin->set_active(0);
$is_thin = 0;
my $hdw_config = N("local config: false");
$hdw_config = N("local config: true") if $local_config == 1;
$model->append_set($t_client, [ 0 => $hdw_config ]);
$check_hdw_config->set_active(0);
$local_config = 0;
%clients = read_dhcpd_conf();
}
}
}),
gtksignal_connect($button_edit = new Gtk2::Button(N("<-- Edit Client")), clicked =>
sub { $entry_host->set_text($client);
$entry_mac->set_text($clients{$client}{hardware});
$entry_ip->set_text($clients{$client}{address});
my $type = $clients{$client}{type};
if ($type eq "thin") {
$check_thin->set_active(1);
} else {
$check_thin->set_active(0);
}
$entry_nbi->entry->set_text($clients{$client}{filename});
my $hdw_config = $clients{$client}{hdw_config};
if ($hdw_config eq "true") {
$check_hdw_config->set_active(1);
} else {
$check_hdw_config->set_active(0);
}
my $result = delclient(0, $client);
if ($result == 0) {
$model->remove($citer);
$button_edit->set_sensitive(0);
$button_config->set_sensitive(0);
$button_delete->set_sensitive(0);
}
}),
gtksignal_connect($button_config = new Gtk2::Button(N("Disable Local Config")), clicked =>
sub {
my $hdw_config = $clients{$client}{hdw_config};
if ($hdw_config eq "true") {
client_hdw_config($clients{$client}{address}, 0);
}
}),
gtksignal_connect($button_delete = new Gtk2::Button(N("Delete Client")), clicked =>
sub { my $result = delclient(0, $client);
if ($result == 0) {
$model->remove($citer);
$button_edit->set_sensitive(0);
$button_config->set_sensitive(0);
$button_delete->set_sensitive(0);
}
}),
gtksignal_connect(new Gtk2::Button(N("dhcpd Config...")), clicked =>
sub { $client_box->destroy; dhcpd_config() }),
),
create_scrolled_window($tree_clients),
),),
);
$check_allow_thin->set_active($thin_clients);
$check_thin->set_sensitive($thin_clients);
gtksignal_connect($check_allow_thin, clicked =>
sub { invbool \$thin_clients;
$check_thin->set_sensitive($thin_clients);
client_set();
$in->ask_warn(N("Warning"), N("Need to restart the Display Manager for full changes to take effect. \n(service dm restart - at the console)"));
}
);
$button_edit->set_sensitive(0);
$button_config->set_sensitive(0);
$button_delete->set_sensitive(0);
$central_widget = \$client_box;
$client_box->show_all;
}
sub client_set() {
# we need to change some system files to allow the thin clients
# to access the server - enabling xdmcp and modify hosts.deny/hosts.allow for some security
# we also need to set runlevel to 5 and restart the display manager
if ($thin_clients == 1) {
substInFile { s/id:3:initdefault:/id:5:initdefault:/ } "/etc/inittab";
substInFile { s/! DisplayManager.requestPort:/DisplayManager.requestPort:/ } "/etc/X11/xdm/xdm-config";
substInFile { s/Enable=false/Enable=true/ } "/usr/share/config/kdm/kdmrc";
# This file had 2 "Enable=" entries, one for xdmcp and one for debug
change_gdm_xdmcp("true");
log::explanations("Modified files /etc/inittab, /etc/X11/xdm/xdm-config, /usr/share/config/kdm/kdmrc, /etc/X11/gdm/gdm.conf");
# just xdmcp in hosts.allow is enough for xdm & kdm, but gdm doesn't work - x11 doesn't help either
update_hosts_allow("enable");
} else {
substInFile { s/id:5:initdefault:/id:3:initdefault:/ } '/etc/inittab';
substInFile { s/DisplayManager.requestPort:/! DisplayManager.requestPort:/ } "/etc/X11/xdm/xdm-config";
substInFile { s/Enable=true/Enable=false/ } "/usr/share/config/kdm/kdmrc";
change_gdm_xdmcp("false");
log::explanations("Modified files /etc/inittab, /etc/X11/xdm/xdm-config, /usr/share/config/kdm/kdmrc, /etc/X11/gdm/gdm.conf");
update_hosts_allow("disable");
}
$clients_set = 1;
}
sub dhcpd_config() {
#- do main dhcp server config
my $dhcpd_box;
my @ifvalues;
my @resolve;
my %netconfig;
my @nservers;
#- entry boxes for data entry
my $box_subnet = new Gtk2::HBox(0,0);
my $label_subnet = new Gtk2::Label(N("Subnet:"));
$label_subnet->set_justify('right');
my $entry_subnet = new Gtk2::Entry();
$box_subnet->pack_end($entry_subnet, 0, 0, 10);
$box_subnet->pack_end($label_subnet, 0, 0, 10);
my $box_netmask = new Gtk2::HBox(0,0);
my $label_netmask = new Gtk2::Label(N("Netmask:"));
$label_netmask->set_justify('left');
my $entry_netmask = new Gtk2::Entry();
$box_netmask->pack_end($entry_netmask, 0, 0, 10);
$box_netmask->pack_end($label_netmask, 0, 0, 10);
my $box_routers = new Gtk2::HBox(0,0);
my $label_routers = new Gtk2::Label(N("Routers:"));
$label_routers->set_justify('left');
my $entry_routers = new Gtk2::Entry();
$box_routers->pack_end($entry_routers, 0, 0, 10);
$box_routers->pack_end($label_routers, 0, 0, 10);
my $box_subnet_mask = new Gtk2::HBox(0,0);
my $label_subnet_mask = new Gtk2::Label(N("Subnet Mask:"));
$label_subnet_mask->set_justify('left');
my $entry_subnet_mask = new Gtk2::Entry();
$box_subnet_mask->pack_end($entry_subnet_mask, 0, 0, 10);
$box_subnet_mask->pack_end($label_subnet_mask, 0, 0, 10);
my $box_broadcast = new Gtk2::HBox(0,0);
my $label_broadcast = new Gtk2::Label(N("Broadcast Address:"));
$label_broadcast->set_justify('left');
my $entry_broadcast = new Gtk2::Entry();
$box_broadcast->pack_end($entry_broadcast, 0, 0, 10);
$box_broadcast->pack_end($label_broadcast, 0, 0, 10);
my $box_domain = new Gtk2::HBox(0,0);
my $label_domain = new Gtk2::Label(N("Domain Name:"));
$label_domain->set_justify('left');
my $entry_domain = new Gtk2::Entry();
$box_domain->pack_end($entry_domain, 0, 0, 10);
$box_domain->pack_end($label_domain, 0, 0, 10);
my $box_name_servers = new Gtk2::HBox(0,0);
my $box_name_servers_entry = new Gtk2::VBox(0,0);
my $label_name_servers = new Gtk2::Label(N("Name Servers:"));
$label_name_servers->set_justify('left');
my $entry_name_server1 = new Gtk2::Entry();
my $entry_name_server2 = new Gtk2::Entry();
my $entry_name_server3 = new Gtk2::Entry();
$box_name_servers_entry->pack_start($entry_name_server1, 0, 0, 0);
$box_name_servers_entry->pack_start($entry_name_server2, 0, 0, 0);
$box_name_servers_entry->pack_start($entry_name_server3, 0, 0, 0);
$box_name_servers->pack_end($box_name_servers_entry, 0, 0, 10);
$box_name_servers->pack_end($label_name_servers, 0, 0, 10);
my $label_ip_range_start = new Gtk2::Label(N("IP Range Start:"));
my $label_ip_range_end = new Gtk2::Label(N("IP Range End:"));
my $entry_ip_range_start = new Gtk2::Entry();
my $entry_ip_range_end = new Gtk2::Entry();
#- grab some default entries from the running system
if (-e "/etc/sysconfig/network") {
%netconfig = getVarsFromSh("/etc/sysconfig/network");
$entry_domain->set_text($netconfig{DOMAINNAME});
}
my $sys_netmask = get_mask_from_sys();
$entry_netmask->set_text($sys_netmask);
$entry_subnet_mask->set_text($sys_netmask);
my $sys_broadcast = get_broadcast_from_sys();
$entry_broadcast->set_text($sys_broadcast);
my $sys_subnet = get_subnet_from_sys($sys_broadcast, $sys_netmask);
$entry_subnet->set_text($sys_subnet);
my @route = grep { /^0.0.0.0/ } `/sbin/route -n`;
@ifvalues = split(/[ \t]+/, $route[0]);
$entry_routers->set_text($ifvalues[1]);
@resolve = cat_("/etc/resolv.conf");
my $i = 1;
chop(@resolve);
foreach (@resolve) {
@ifvalues = split / /;
if ($ifvalues[0] =~ /nameserver/ && $i < 4) {
$nservers[$i++] = $ifvalues[1];
}
}
$entry_name_server1->set_text($nservers[1]);
$entry_name_server2->set_text($nservers[2]);
$entry_name_server3->set_text($nservers[3]);
gtkpack($status_box,
$dhcpd_box = gtkpack_(new Gtk2::HBox(1,10),
0, gtkadd(new Gtk2::VBox,
gtkadd($box_subnet),
gtkadd($box_netmask),
gtkadd($box_routers),
gtkadd($box_subnet_mask),
gtkadd($box_broadcast),
gtkadd($box_domain),
gtkadd($box_name_servers),
),
0, gtkadd(new Gtk2::VBox(0,0),
new Gtk2::Label(N("dhcpd Server Configuration") . "\n\n" .
N("Most of these values were extracted\nfrom your running system.\nYou can modify as needed.")),
new Gtk2::HSeparator,
gtkadd(new Gtk2::HBox,
new Gtk2::Label(N("Dynamic IP Address Pool:")),
),
gtkadd(new Gtk2::HBox(0,0),
gtkadd(new Gtk2::VBox,
gtkadd($label_ip_range_start),
gtkadd($entry_ip_range_start),
),
gtkadd(new Gtk2::VBox,
gtkadd($label_ip_range_end),
gtkadd($entry_ip_range_end),
),
),
gtkadd(new Gtk2::HBox),
gtksignal_connect(new Gtk2::Button(N("Write Config")), clicked =>
sub { write_dhcpd_config(
$entry_subnet->get_text,
$entry_netmask->get_text,
$entry_routers->get_text,
$entry_subnet_mask->get_text,
$entry_broadcast->get_text,
$entry_domain->get_text,
$entry_name_server1->get_text,
$entry_name_server2->get_text,
$entry_name_server3->get_text,
$entry_ip_range_start->get_text,
$entry_ip_range_end->get_text,
) }),
new Gtk2::HBox(0,10),
),
),
);
$central_widget = \$dhcpd_box;
$dhcpd_box->show_all;
}
sub get_mask_from_sys() {
my %netconfig;
if (-e "/etc/sysconfig/network-scripts/ifcfg-eth0") {
%netconfig = getVarsFromSh("/etc/sysconfig/network-scripts/ifcfg-eth0");
$netconfig{NETMASK};
}
}
sub get_subnet_from_sys {
my ($sys_broadcast, $sys_netmask) = @_;
my @subnet;
my @netmask = split(/\./, $sys_netmask);
my @broadcast = split(/\./, $sys_broadcast);
foreach (0..3) {
#- wasn't evaluating the & as expected
my $val1 = $broadcast[$_] + 0;
my $val2 = $netmask[$_] + 0;
$subnet[$_] = $val1 & $val2;
}
join(".", @subnet);
}
sub get_broadcast_from_sys() {
my @ifconfig = grep { /inet/ } `/sbin/ifconfig eth0`;
my @ifvalues = split(/[: \t]+/, $ifconfig[0]);
$ifvalues[5];
}
sub get_ip_from_sys() {
my @ifconfig = grep { /inet/ } `/sbin/ifconfig eth0`;
my @ifvalues = split(/[: \t]+/, $ifconfig[0]);
$ifvalues[3];
}
sub write_dhcpd_config {
my ($subnet, $netmask, $routers, $subnet_mask, $broadcast, $domain, $ns1, $ns2, $ns3, $pool_start, $pool_end) = @_;
$nfs_subnet = $subnet;
$nfs_mask = $subnet_mask;
local *FHANDLE;
open(FHANDLE, "> /etc/dhcpd.conf");
print FHANDLE "#dhcpd.conf - generated by drakTermServ\n\n";
print FHANDLE "ddns-update-style none;\n\n";
print FHANDLE "# Long leases (48 hours)\ndefault-lease-time 172800;\nmax-lease-time 172800;\n\n";
print FHANDLE qq(# Include Etherboot definitions and defaults\ninclude "/etc/dhcpd.conf.etherboot.include";\n\n);
print FHANDLE "# Network-specific section\n\n";
print FHANDLE "subnet $subnet netmask $netmask {\n";
print FHANDLE "\toption routers $routers;\n" if $routers;
print FHANDLE "\toption subnet-mask $subnet_mask;\n" if $subnet_mask;
print FHANDLE "\toption broadcast-address $broadcast;\n" if $broadcast;
print FHANDLE qq(\toption domain-name "$domain";\n) if $domain;
my $pool_string = "\trange dynamic-bootp " . $pool_start . " " . $pool_end . ";\n" if $pool_start && $pool_end;
print FHANDLE $pool_string if $pool_string;
my $ns_string = "\toption domain-name-servers " . $ns1 if $ns1;
$ns_string = $ns_string . ", " . $ns2 if $ns2;
$ns_string = $ns_string . ", " . $ns3 if $ns3;
$ns_string = $ns_string . ";\n" if $ns_string;
print FHANDLE $ns_string if $ns_string;
print FHANDLE "}\n\n";
print FHANDLE qq(# Include client machine configurations\ninclude "$client_cfg";\n);
close FHANDLE;
$config_written = 1;
}
sub write_eb_image {
#- write a bootable etherboot CD image or floppy
my ($nic, $rom_path, $type) = @_;
if ($type eq 'floppy') {
my $in = interactive->vnew;
if (-e "/dev/fd0") {
my $result = $in->ask_okcancel('', N("Please insert floppy disk:"));
return if !($result);
$result = system("cat $rom_path/floppyload.bin $rom_path/start16.bin $rom_path/zimg/$nic > /dev/fd0") if $result;
if ($result) {
$in->ask_warn(N("Error"), N("Couldn't access the floppy!"))
} else {
$in->ask_warn(N("Information"), N("Floppy can be removed now"))
}
} else {
$in->ask_warn(N("Error"), N("No floppy drive available!"));
}
} else {
mkdir_p("/tmp/eb");
system("cat $rom_path/floppyload.bin $rom_path/start16.bin $rom_path/zimg/$nic > /tmp/eb/eb.img");
system("dd if=/dev/zero of=/tmp/eb/eb.img bs=512 seek=72 count=2808");
system("mkisofs -b eb.img -o /tmp/$nic.iso /tmp/eb");
rm_rf("/tmp/eb");
if (-e "/tmp/$nic.iso") {
$in->ask_warn(N("Information"), N("Etherboot ISO image is %s", "/tmp/$nic.iso"))
} else {
$in->ask_warn(N("Error"), N("Something went wrong! - Is mkisofs installed?"))
}
}
}
sub enable_ts {
#- setup default config files for terminal server
my $cmd_line = @_;
@buff = ();
$buff[0] = "Enabling Terminal Server...\n\n";
$buff[1] = "\tChecking default /etc/dhcpd.conf...\n";
my @my_conf = cat_("/etc/dhcpd.conf");
if ($my_conf[0] !~ /drakTermServ/) {
if ($cmd_line == 1) {
print("No /etc/dhcpd.conf built yet - use GUI to create!!\n");
return;
} else {
$in->ask_warn(N("Error"), N("Need to create /etc/dhcpd.conf first!"));
#$central_widget->destroy;
dhcpd_config();
return;
}
}
#- suggestion from jmdault - not always needed
if (! -e $client_cfg) {
log::explanations("Touch file $client_cfg");
`touch $client_cfg`;
}
my $buff_index = toggle_chkconfig("on", "dhcpd", 2);
$buff[$buff_index] = "\tSetting up default /etc/exports...\n";
cp_af("/etc/exports", "/etc/exports.mdkTS") if -e "/etc/exports";
local *FHANDLE;
open(FHANDLE, "> /etc/exports");
print FHANDLE "#/etc/exports - generated by drakTermServ\n\n";
print FHANDLE "/\t(ro,all_squash)\n";
if ($nfs_subnet eq '') {
$nfs_subnet = get_subnet_from_sys();
$nfs_mask = get_mask_from_sys();
my $sys_broadcast = get_broadcast_from_sys();
$nfs_subnet = get_subnet_from_sys($sys_broadcast, $nfs_mask);
}
print FHANDLE "/home\t$nfs_subnet/$nfs_mask(rw,root_squash)\n";
close FHANDLE;
$buff_index = toggle_chkconfig("on", "clusternfs", $buff_index+1);
$buff_index = toggle_chkconfig("on", "tftp", $buff_index);
$buff_index = service_change("xinetd", "restart", $buff_index);
$buff[$buff_index] = "\n\tDone!";
if ($cmd_line == 1) {
print "@buff\n";
return;
}
show_status(@buff);
}
sub disable_ts {
#- restore pre-terminal server configs
my $cmd_line = @_;
@buff = ();
$buff[0] = "Disabling Terminal Server...\n\n";
$buff[1] = "\tRestoring original /etc/dhcpd.conf...\n";
cp_af("/etc/dhcpd.conf.mdkTS", "/etc/dhcpd.conf") if -e "/etc/dhcpd.conf.mdkTS";
my $buff_index = toggle_chkconfig("off", "dhcpd", 2);
$buff[$buff_index] = "\tRestoring default /etc/exports...\n";
cp_af("/etc/exports.mdkTS", "/etc/exports") if -e "/etc/exports.mdkTS";
$buff_index = toggle_chkconfig("off", "clusternfs", $buff_index+1);
$buff_index = toggle_chkconfig("off", "tftp", $buff_index);
$buff_index = service_change("xinetd", "restart", $buff_index);
$buff[$buff_index] = "\n\tDone!";
if ($cmd_line == 1) {
print "@buff\n";
return;
}
show_status(@buff);
}
sub toggle_chkconfig {
#- change service config
my ($state, $service, $buff_index) = @_;
system("/sbin/chkconfig $service $state");
$buff[$buff_index] = "\tTurning $service $state...\n";
$buff_index++;
$buff_index;
}
sub service_change {
my ($service, $command, $buff_index) = @_;
system("BOOTUP=serial /sbin/service $service $command > /tmp/drakTSservice.status 2>&1");
local *STATUS;
open(STATUS, "/tmp/drakTSservice.status");
local $_;
while (<STATUS>) {
$buff[$buff_index] = "\t$_";
$buff_index++;
}
close STATUS;
unlink "/tmp/drakTSservice.status";
$buff_index;
}
sub start_ts {
#- start the terminal server
my $cmd_line = @_;
my $pcimap = "/etc/dhcpd.conf.etherboot-pcimap.include";
@buff = ();
if (-f $pcimap) {
$buff[0] = "Starting Terminal Server...\n\n";
my $buff_index = service_change("dhcpd", "start", 2);
$buff_index = service_change("clusternfs", "start", $buff_index);
$buff[$buff_index] = "\n\tDone!";
} else {
$buff[0] = "Missing $pcimap - please create net boot images for at least one kernel.";
}
if ($cmd_line == 1) {
print "@buff\n";
return;
}
show_status(@buff);
}
sub stop_ts {
#- stop the terminal server
my $cmd_line = @_;
@buff = ();
$buff[0] = "Stopping Terminal Server...\n\n";
my $buff_index = service_change("dhcpd", "stop", 2);
$buff_index = service_change("clusternfs", "stop", $buff_index);
$buff[$buff_index] = "\n\tDone!";
return if $in_wizard;
if ($cmd_line == 1) {
print "@buff\n";
return;
}
show_status(@buff);
}
#- for the wizard, stop the server first
sub restart_ts() {
stop_ts();
start_ts();
}
sub show_status() {
text_view("@buff", "close");
}
sub adduser {
my ($cmd_line, $username) = @_;
my @active_users = cat_("/etc/shadow");
my @ts_users = cat_('/etc/shadow$$CLIENT$$');
my $is_user = any { /$username/ } @active_users;
my $add_fail = 0;
my $in_already;
if ($is_user) {
my @shadow_entry = grep { /$username/ } @active_users;
my $is_ts_user = any { /$username/ } @ts_users;
if ($is_ts_user) {
my @ts_shadow = grep { /$username/ } @ts_users;
if ($shadow_entry[0] eq $ts_shadow[0]) {
$in_already = 1;
} else {
#in but password changed
print "$username passwd bad in Terminal Server - rewriting...\n";
deluser($cmd_line, $username);
adduser($cmd_line, $username);
}
} else {
# new ts user
local *FHANDLE;
open(FHANDLE, '>> /etc/shadow$$CLIENT$$');
print FHANDLE $shadow_entry[0] or $add_fail = 1;
close FHANDLE;
$in_already = 0;
}
}
if ($cmd_line == 1) {
print "$username is not a user..\n" if !($is_user);
print "$username is already a Terminal Server user\n" if $in_already;
if ($add_fail == 1 || $in_already || !$is_user) {
print "Addition of $username to Terminal Server failed!\n";
} else {
print "$username added to Terminal Server\n";
}
return;
} else {
$in_already;
}
}
sub deluser {
# del a user from the shadow$$CLIENT$$ file
my ($cmd_line, $username) = @_;
my $i;
my $user_deleted;
my @ts_users = cat_('/etc/shadow$$CLIENT$$');
my $is_ts_user = any { /$username/ } @ts_users;
if ($is_ts_user) {
$i = 0;
foreach my $user (@ts_users) {
if ($user =~ /$username/) {
splice(@ts_users, $i, 1);
$user_deleted = 1;
last;
}
$i++;
}
local *FHANDLE;
open(FHANDLE, '> /etc/shadow$$CLIENT$$');
print FHANDLE $_ foreach @ts_users;
close FHANDLE;
}
if ($cmd_line == 1) {
if ($user_deleted) {
print "Deleted $username...\n";
} else {
print "$username not found...\n";
}
return;
}
}
sub addclient {
#- add a new client entry after checking for dups
my ($cmd_line, $hostname, $mac, $ip, $nbi, $is_thin, $local_config) = @_;
my $host_in_use = 0;
my $mac_in_use = 0;
my $ip_in_use = 0;
my %ts_clients = read_dhcpd_conf();
foreach my $client (keys(%ts_clients)) {
$host_in_use = 1 if $hostname eq $client;
$mac_in_use = 1 if $mac eq $ts_clients{$client}{hardware};
$ip_in_use = 1 if $ip eq $ts_clients{$client}{address};
}
if ($cmd_line == 1) {
print N("%s already in use\n", $hostname) if $host_in_use;
print N("%s already in use\n", $mac) if $mac_in_use;
print N("%s already in use\n", $ip) if $ip_in_use;
if ($host_in_use || $mac_in_use || $ip_in_use) {
return;
}
}
if (!$host_in_use && !$mac_in_use && !$ip_in_use) {
$ts_clients{$hostname}{hardware} = $mac;
$ts_clients{$hostname}{address} = $ip;
if ($is_thin == 1) {
$ts_clients{$hostname}{type} = "thin";
} else {
$ts_clients{$hostname}{type} = "fat";
}
$ts_clients{$hostname}{filename} = $nbi;
if ($local_config == 1) {
$ts_clients{$hostname}{hdw_config} = "true";
client_hdw_config($ip, 1);
} else {
$ts_clients{$hostname}{hdw_config} = "false";
client_hdw_config($ip, 0);
}
my $clients = $client_cfg;
local *CLIENT;
open(CLIENT, ">> $clients") or warn(N("Can't open %s!", $clients));
my $client_entry = format_client_entry($hostname, %ts_clients);
print CLIENT $client_entry;
close CLIENT;
$changes_made = 1;
0;
}
}
sub delclient {
#- find a client and delete the entry in dhcpd.conf
my ($cmd_line, $hostname) = @_;
my $host_found;
my %ts_clients = read_dhcpd_conf();
foreach my $client (keys(%ts_clients)) {
if ($hostname eq $client) {
$host_found = 1;
clean_client_config($ts_clients{$client}{address});
delete $ts_clients{$client};
write_dhcpd_conf(%ts_clients);
$changes_made = 1;
return 0;
}
}
if ($cmd_line == 1) {
print N("%s not found...\n", $hostname) unless $host_found;
return;
}
}
sub change_gdm_xdmcp {
my ($enable) = @_;
my @conf_data = cat_("/etc/X11/gdm/gdm.conf");
for (my $i = 0; $i < @conf_data; $i++) {
$conf_data[$i] =~ s/^Enable=false/Enable=true/ if $enable eq "true";
$conf_data[$i] =~ s/^Enable=true/Enable=false/ if $enable eq "false";
# bail here so we don't alter the debug setting
if ($conf_data[$i] eq "[debug]\n") {
output("/etc/X11/gdm/gdm.conf", @conf_data);
last;
}
}
}
sub update_hosts_allow {
my ($mode) = @_;
my $ip = get_ip_from_sys();
my @values = split(/\./, $ip);
my $subnet = $values[0] . "." . $values[1] . "." . $values[2] . ".";
my $i;
if ($mode eq "enable") {
my $has_all = `grep ALL /etc/hosts.allow`;
if ($has_all) {
$in->ask_warn(N("Warning"), N("/etc/hosts.allow and /etc/hosts.deny already configured - not changed"));
return;
}
if (!$has_all) {
log::explanations("Modified file /etc/hosts.allow");
append_to_file("/etc/hosts.allow", "ALL:\t$subnet\n");
}
$has_all = `grep ALL /etc/hosts.deny`;
if (!$has_all) {
log::explanations("Modified file /etc/hosts.deny");
append_to_file("/etc/hosts.deny", "ALL:\tALL\n");
}
}
if ($mode eq "disable") {
my @allow = cat_("/etc/hosts.allow");
for ($i = 0; $i < @allow; $i++) {
if ($allow[$i] =~ /^ALL:\t$subnet/) {
splice(@allow, $i, 1);
log::explanations("Modified file /etc/hosts.allow");
output("/etc/hosts.allow", @allow);
last;
}
}
my @deny = cat_("/etc/hosts.deny");
for ($i = 0; $i < @deny; $i++) {
if ($deny[$i] =~ /^ALL:\tALL/) {
splice(@deny, $i, 1);
log::explanations("Modified file /etc/hosts.deny");
output("/etc/hosts.deny", @deny);
last;
}
}
}
}
sub format_client_entry {
#- create a client entry, in proper format
my ($client, %ts_clients) = @_;
my $entry = "host $client {\n";
$entry .= "\thardware ethernet\t$ts_clients{$client}{hardware};\n";
$entry .= "\tfixed-address\t\t$ts_clients{$client}{address};\n";
$entry .= "\t#type\t\t\t$ts_clients{$client}{type};\n" if $ts_clients{$client}{type};
$entry .= qq(\tfilename\t\t"$ts_clients{$client}{filename}";\n) if $ts_clients{$client}{filename};
$entry .= "\t#hdw_config\t\t$ts_clients{$client}{hdw_config};\n" if $ts_clients{$client}{hdw_config};
$entry .= "}\n";
if ($ts_clients{$client}{type} eq "thin") {
write_thin_inittab($ts_clients{$client}{address})
} else {
eval { rm_rf("/etc/inittab\$\$IP=$ts_clients{$client}{address}\$\$") };
}
$entry
}
sub write_dhcpd_conf {
my %ts_clients = @_;
my $clients = $client_cfg;
local *CLIENT;
open(CLIENT, "> $clients") or warn("Can't open $clients!");
foreach my $key (keys(%ts_clients)) {
my $client_entry = format_client_entry($key, %ts_clients);
print CLIENT $client_entry;
}
close CLIENT
}
sub read_dhcpd_conf() {
my $clients = $client_cfg;
my %ts_clients;
my $hostname;
#- read and parse current client entries
local *CLIENTS;
open(CLIENTS, $clients) or warn("Can't open $clients\n");
while (<CLIENTS>) {
my ($name, $val, $val2) = split ' ';
$val = $val2 if $name =~ /hardware/;
$val =~ s/[;"]//g;
if ($name !~ /}/) {
if ($name =~ /host/) {
$hostname = $val;
} else {
$name = "address" if $name =~ /fixed-address/;
$name = "type" if $name =~ /#type/;
$name = "hdw_config" if $name =~ /#hdw_config/;
$ts_clients{$hostname}{$name} = $val;
}
}
}
close CLIENTS;
%ts_clients;
}
sub client_hdw_config {
my ($client_ip, $mode) = @_;
# configure the files for a client to be able to
# run drak tools locally and modify configs
# mode 0 disables root logins but retains configs
# mode 1 creates the new template files
if ($mode == 1) {
log::explanations("Allowing root access for $client_ip");
my $suffix = "\$\$IP=$client_ip\$\$";
cp_af('/etc/shadow$$CLIENT$$', "/etc/shadow$suffix");
my @sys_users = cat_("/etc/shadow");
foreach (@sys_users) {
if (/^root:/) {
# need root access to do the hardware config
append_to_file("/etc/shadow$suffix", $_);
last;
}
}
# make all the local config files
cp_af("/etc/sysconfig/mouse", "/etc/sysconfig/mouse$suffix") if -f "/etc/sysconfig/mouse";
cp_af("/etc/X11/XF86Config", "/etc/X11/XF86Config$suffix") if -f "/etc/X11/XF86Config";
cp_af('/etc/X11/XF86Config-4$$CLIENT$$', "/etc/X11/XF86Config-4$suffix") if -f '/etc/X11/XF86Config-4$$CLIENT$$';
cp_af("/dev/null", "/etc/modules.conf$suffix");
cp_af("/dev/null", "/etc/modules$suffix");
# create mount points so they can be edited by the client
my $mnt_access = "$client_ip(rw,no_root_squash)";
append_to_file("/etc/exports", "/etc/sysconfig/mouse$suffix\t$mnt_access\n");
append_to_file("/etc/exports", "/etc/modules.conf$suffix\t$mnt_access\n");
append_to_file("/etc/exports", "/etc/modules$suffix\t$mnt_access\n");
append_to_file("/etc/exports", "/etc/X11/XF86Config$suffix\t$mnt_access\n");
append_to_file("/etc/exports", "/etc/X11/XF86Config-4$suffix\t$mnt_access\n");
} else {
log::explanations("Removing root access for $client_ip");
eval { rm_rf("/etc/shadow\$\$IP=$client_ip\$\$") };
remove_client_mounts($client_ip);
}
}
sub restart_server() {
my $answer = $in->ask_yesorno('', N("Configuration changed - restart clusternfs/dhcpd?"));
if ($answer == 1) {
stop_ts();
start_ts();
$changes_made = 0;
}
}
sub clean_client_config {
my ($client_ip) = @_;
# this routine entirely removes local hardware config settings
log::explanations("Removing all local hardware config for $client_ip");
my $suffix = "\$\$IP=$client_ip\$\$";
eval { rm_rf("/etc/shadow$suffix") };
eval { rm_rf("/etc/sysconfig/mouse$suffix") };
eval { rm_rf("/etc/modules.conf$suffix") };
eval { rm_rf("/etc/modules$suffix") };
eval { rm_rf("/etc/X11/XF86Config$suffix") };
eval { rm_rf("/etc/X11/XF86Config-4$suffix") };
remove_client_mounts($client_ip);
}
sub remove_client_mounts {
my ($client_ip) = @_;
#remove the mount points also
log::explanations("Removing read/write mount points for $client_ip");
substInFile {
$_ = '' if /$client_ip/;
} "/etc/exports";
}
sub destroy_widget() {
if ($central_widget ne '') {
$$central_widget->destroy;
$central_widget = '';
}
}