Ejemplo n.º 1
0
        private void PrepareTextModeToTCPIPBootStart()
        {
            // Copy the necessary files:
            if (_installation.IsTargetContainsTemporaryInstallation)
            {
                _installation.CopyFileFromSetupDirectoryToBootDirectory("tdi.sy_");  // dependency of tcpip.sys
                _installation.CopyFileFromSetupDirectoryToBootDirectory("ndis.sy_"); // dependency of tcpip.sys
                if (!_installation.IsWindows2000)                                    // Windows 2000 has an independent Tcpip service that does not require IPSec
                {
                    _installation.CopyFileFromSetupDirectoryToBootDirectory("ipsec.sy_");
                }
                _installation.CopyFileFromSetupDirectoryToBootDirectory("tcpip.sy_");
            }
            else
            {
                // Update DOSNet.inf
                _installation.DOSNetInf.InstructSetupToCopyFileFromSetupDirectoryToBootDirectory("tdi.sy_");
                _installation.DOSNetInf.InstructSetupToCopyFileFromSetupDirectoryToBootDirectory("ndis.sy_");
                if (!_installation.IsWindows2000)                 // Windows 2000 has an independent Tcpip service that does not require IPSec
                {
                    _installation.DOSNetInf.InstructSetupToCopyFileFromSetupDirectoryToBootDirectory("ipsec.sy_");
                }
                _installation.DOSNetInf.InstructSetupToCopyFileFromSetupDirectoryToBootDirectory("tcpip.sy_");
            }

            // update txtsetup.sif:

            // We must make sure NDIS is initialized before the NIC (does it have to be loaded before the NIC too?)

            // a solution to the above is to use the [BusExtender.Load] section,
            // Since BusExtenders are loaded before almost everything else (setupdd.sys -> BootBusExtenders -> BusExtenders ...) it's a great place for NDIS,
            // another advantage of the [BusExtender.Load] section is that it's not sticky. (see TextSetupINFFile.Load.cs)

            _installation.TextSetupInf.InstructToLoadBusExtenderDriver("ndis.sys", "NDIS");

            // [DiskDrivers] is not sticky as well, we use [DiskDrivers], but it doesn't really matter because we specify group later
            if (!_installation.IsWindows2000)             // Windows 2000 has an independent Tcpip service that does not require IPSec
            {
                _installation.TextSetupInf.InstructToLoadDiskDriversDriver("ipsec.sys", "IPSEC Driver");
            }
            _installation.TextSetupInf.InstructToLoadDiskDriversDriver("tcpip.sys", "TCP/IP Protocol Driver");

            // Note about critical files for iSCSI boot:
            // ksecdd.is critical
            // pci.sys is critical
            // partmgr.sys is critical (and its dependency wmilib.sys)
            // disk.sys is critical (and its dependency classpnp.sys)
        }
Ejemplo n.º 2
0
        // update txtsetup.sif and dotnet.inf
        private void UpdateTextSetupInformationFileAndCopyFiles(string deviceID)
        {
            // Files.HwComponent.ID Section
            var driverINI = _driverDirectory.TextModeDriverSetupINI;
            var section   = driverINI.GetDriverFilesSection(deviceID);

            var serviceName = string.Empty;
            var driverKeys  = new List <string>();

            var sourceDirectoryInMediaRootForm = _installation.GetSourceDriverDirectoryInMediaRootForm(deviceID);
            var sourceDiskID = _installation.TextSetupInf.AllocateSourceDiskID(_installation.ArchitectureIdentifier, sourceDirectoryInMediaRootForm);

            var destinationWinntDirectory   = _installation.GetDriverDestinationWinntDirectory(_deviceID);
            var destinationWinntDirectoryID = _installation.TextSetupInf.AllocateWinntDirectoryID(destinationWinntDirectory);

            foreach (var line in section)
            {
                var keyAndValues   = INIFile.GetKeyAndValues(line);
                var directory      = driverINI.GetDirectoryOfDisk(keyAndValues.Value[0]);
                var fileName       = keyAndValues.Value[1];
                var sourceFilePath = _driverDirectory.Path + "." + directory + @"\" + fileName;
                var isDriver       = keyAndValues.Key.Equals("driver", StringComparison.InvariantCultureIgnoreCase);
                _installation.CopyFileToSetupDriverDirectory(sourceFilePath, deviceID + @"\", fileName);

                if (isDriver)
                {
                    _installation.CopyDriverToSetupRootDirectory(sourceFilePath, fileName);
                    if (_installation.IsTargetContainsTemporaryInstallation)
                    {
                        _installation.CopyFileFromSetupDirectoryToBootDirectory(fileName);
                    }
                }

                _installation.TextSetupInf.SetSourceDisksFileEntry(_installation.ArchitectureIdentifier, sourceDiskID, destinationWinntDirectoryID, fileName, FileCopyDisposition.AlwaysCopy);

                if (isDriver)
                {
                    // http://msdn.microsoft.com/en-us/library/ff544919%28v=VS.85%29.aspx
                    // unlike what one may understand from the reading specs, this value is *only* used to form [Config.DriverKey] section name,
                    // and definitely NOT to determine the service subkey name under CurrentControlSet\Services. (which is determined by the service file name without a .sys extension)
                    var driverKey = keyAndValues.Value[2];

                    // http://support.microsoft.com/kb/885756
                    // according to this, only the first driver entry should be processed.

                    // http://app.nidc.kr/dirver/IBM_ServerGuide_v7.4.17/sguide/w3x64drv/$oem$/$1/drv/dds/txtsetup.oem
                    // however, this sample and my experience suggest that files / registry entries from a second driver entry will be copied / registered,
                    // (both under the same Services\serviceName key), so we'll immitate that.
                    driverKeys.Add(driverKey);

                    if (serviceName == string.Empty)
                    {
                        // Some txtsetup.oem drivers are without HardwareID entries,
                        // but we already know that the service is specified by the file name of its executable image without a .sys extension,
                        // so we should use that.
                        serviceName = TextSetupINFFile.GetServiceName(fileName);
                    }
                    // We should use FileCopyDisposition.DoNotCopy, because InstructToLoadSCSIDriver will already copy the device driver.
                    _installation.TextSetupInf.SetSourceDisksFileDriverEntry(_installation.ArchitectureIdentifier, fileName, FileCopyDisposition.DoNotCopy);
                    _installation.TextSetupInf.SetFileFlagsEntryForDriver(fileName);
                    var deviceName = driverINI.GetDeviceName(deviceID);
                    _installation.TextSetupInf.InstructToLoadSCSIDriver(fileName, deviceName);
                }

                // add file to the list of files to be copied to local source directory
                if (!_installation.IsTargetContainsTemporaryInstallation)
                {
                    _installation.DOSNetInf.InstructSetupToCopyFileFromSetupDirectoryToLocalSourceDriverDirectory(sourceDirectoryInMediaRootForm, fileName);
                    if (isDriver)
                    {
                        _installation.DOSNetInf.InstructSetupToCopyFileFromSetupDirectoryToBootDirectory(fileName);
                    }
                }
            }

            section = driverINI.GetHardwareIdsSection(deviceID);
            foreach (var line in section)
            {
                var keyAndValues = INIFile.GetKeyAndValues(line);
                var hardwareID   = keyAndValues.Value[0];
                // http://msdn.microsoft.com/en-us/library/ff546129%28v=VS.85%29.aspx
                // The service is specified by the file name of its executable image without a .sys extension
                // it is incomprehensible that this line will change the value of serviceName, because we already set serviceName to the service file name without a .sys extension
                serviceName = INIFile.Unquote(keyAndValues.Value[1]);
                hardwareID  = INIFile.Unquote(hardwareID);
                _installation.TextSetupInf.AddDeviceToCriticalDeviceDatabase(hardwareID, serviceName);
            }

            foreach (var driverKey in driverKeys)
            {
                section = driverINI.GetConfigSection(driverKey);
                foreach (var line in section)
                {
                    var keyAndValues      = INIFile.GetKeyAndValues(line);
                    var subKeyNameQuoted  = keyAndValues.Value[0];
                    var valueName         = keyAndValues.Value[1];
                    var valueType         = keyAndValues.Value[2];
                    var valueDataUnparsed = keyAndValues.Value[3];
                    var valueKind         = TextModeDriverSetupINIFile.GetRegistryValueKind(valueType);
                    var valueData         = HiveINIFile.ParseValueDataString(valueDataUnparsed, valueKind);
                    var subKeyName        = INIFile.Unquote(subKeyNameQuoted);

                    _installation.HiveSystemInf.SetServiceRegistryKey(serviceName, subKeyName, valueName, valueKind, valueData);
                    _installation.SetupRegistryHive.SetServiceRegistryKey(serviceName, subKeyName, valueName, valueKind, valueData);
                }
            }
        }