Nytro Posted September 4, 2014 Report Posted September 4, 2014 (edited) Device Driver Development for Beginners - Reloaded by Evilcry » Mon Oct 04, 2010 8:14 am Hi,This is just a little starter for people interested in starting Kernel-Mode DevelopmentBy following an good thread on UIC forum, opened by a beginner that wanted to know how to start with Device Driver Development, I remembered that long time ago published a similar blog post on that subject.Now I'm going to Reload and Expand it.Development Tools 1. WDK/DDK - this is the proper Driver Development SDK given by Microsoft, latest edition can be dowloaded How to Get the WDK 2. Visual Studio 2008/2010 - you can also develop without VS, but I always prefer all the Comforts given by a such advanced IDE, especially in presence of complex device drivers. 3. DDKWizard - DDKWizard is a so-called project creation wizard (for VisualStudio) that allows you to create projects that use the DDKBUILD scripts from OSR (also available in the download section from this site). The wizard will give you several options to configure your project prior to the creation. You can download it Welcome to the DDKWizard homepage 4. VisualAssist - (Optional Tool) Visual Assist X provides productivity enhancements that help you read, write, navigate and refactor code with blazing speed in all Microsoft IDEs. You can Try/Buy it Visual Assist - a Visual Studio extension by Whole Tomato Software 5. VisualDDK - Develop and Debug drivers directly from VS, enjoy debugging your driver directly from Visual Studio, speeding up debugging ~18x for VMWare and ~48x for VirtualBox. Download and Step by Step Quick Start Guide VisualDDK - Quickstart 6. Virtual Machine - You need a Virtual Machine to perform efficient Driver Debugging, best options are VMWare or VirtualBox.Building a Driver Development EnvironmentAs you can see, a good comfortable Driver Development station is composed by a good amount of components, so we need an installation order. 1. Install your IDE - VisualStudio2008 or VisualStudio2010 2. Install WDK package 3. Install DDKWizard 4. Download and place ( usually into C:\WinDDK ) ddkbuild.cmd 5. By following DDKWizard pdf you will be driven to add an new Envirnment Variable directly releated to the OS version in which you are developing and successively add a reference of ddkbuild.cmd into VS IDE. DDWizard Manual is very well written. 6. After finishing DDKWizard integration you can test if your environment is correctly installed, by compilig your first driver. Steps are easy open VS and select DDKWizard templare (not EmptyDriver), you will see the skeleton of a Driver, all what you have to do is to Build Solution and Verify if No Compiling Errors occur, your station is correctly installed. 7. Install VirtualMachine 8. Integrate Debugging help of VisualDDK by following step by step quick start guide 9. Install Visual Assist (this can be done in every moment after VS Installation)Additional Tools * DeviceTree - This utility has two views: (a) one view that will show you the entire PnP enumeration tree of device objects, including relationships among objects and all the device's reported PnP characteristics, and ( a second view that shows you the device objects created, sorted by driver name. There is nothing like this utility available anywhere else. Download it Downloads:DeviceTree * IrpTracker - IrpTracker allows you to monitor all I/O request packets (IRPs) on a system without the use of any filter drivers and with no references to any device objects, leaving the PnP system entirely undisturbed. In addition to being able to see the path the IRP takes down the driver stack and its ultimate completion status, a detailed view is available that allows you to see the entire contents of static portion of the IRP and an interpreted view of the current and previous stack locations. Download it Downloads:IrpTracker * DebugMon - Displays DbgPrint messages generated by any driver in the system (or the OS itself) in the application window. Can be used either in local mode or can send the DbgPrint messages to another system via TCP/IP. Download it Downloads:DebugMon * DriverLoader - This GUI-based tool will make all the appropriate registry entries for your driver, and even allow you to start your driver without rebooting. It's even got a help file, for goodness sakes! If you write drivers, this is another one of those utilities that's a must have for your tool chest. x86 architecture. Dowload it Downloads:Driver LoaderNow you have a full working Develop and Debug Station.As you should imagine, dealing with driver development implies working with at Kernel Mode, a task pretty challenging, delicate and complex. A badly written driver lead to OS Crash and/or dangerous bugs, just think about a driver used in mission-critical applications like Surgery, a bug or a crash could lead to extremely big dangers. The driver need to be: * Bug Free * Fault Tolerant * Ready to Endure all Stress SituationsThis could be done, only by the driver coder, with a large knowledge of following fields: * Hardware Architecture * Operating System Architecture * Kernel and User Mode Architecture * Rock Solid C language knowledge * Debugging AbilityHere i'm going to enumerate necessary Documentation/Book/Etc. necessary to acheive a *good and solid* background and advanced knowledge about driver coding.Microsoft WDK Page: Windows 8.1: Download kits and toolsWill give you informations about: 1. WDM ( Windows Driver Model) 2. WDF (Windows Driver Foundation) 3. IFS Kit (Installable FileSystem Kit) 4. Driver Debugging 5. Driver Stress Testing ( DriverVerifier tool )PC Fundamentals: Windows Hardware Design Articles (Windows Drivers)Device Fundamentals: Windows Hardware Design Articles (Windows Drivers)This will give you an large view of 'what mean developing a driver' which components are touched and which aspects you need to know.It's also obviously necessary to have a Reference about kernel mode involved Functions and Mechanisms, the first best resource is always MSDN, here the starter link to follow MSDN->DDKhttp://msdn.microsoft.com/en-us/library ... 85%29.aspxHow to start LearningAs pointed out in the previous blog post, one of the best starting point, that will give you an on-fly-view of development topics is the Toby Opferman set of articles:Driver Development Part 1: Introduction to DriversDriver Development Part 1: Introduction to Drivers - CodeProjectDriver Development Part 2: Introduction to Implementing IOCTLsDriver Development Part 2: Introduction to Implementing IOCTLs - CodeProjectDriver Development Part 3: Introduction to driver contextsDriver Development Part 3: Introduction to driver contexts - CodeProject Driver Development Part 4: Introduction to device stacksDriver Development Part 4: Introduction to device stacks - CodeProject Driver Development Part 5: Introduction to the Transport Device InterfaceDriver Development Part 5: Introduction to the Transport Device Interface - CodeProject Driver Development Part 6: Introduction to Display DriversDriver Development Part 6: Introduction to Display Drivers - CodeProject It's really important to put in evicence MemoryManagement at KernelMode, the best starting point for these aspects are tutorials written by four-f; http://www.freewebs.com/four-f/ Handling IRPs: What Every Driver Writer Needs to Knowhttp://download.microsoft.com/download/ ... a/IRPs.docBook ResourcesTutorial are a great starting point, but a solid understanding is given by a set of 'abstracts', emerges the necessity of a good Book Collection:Windows NT Device Driver Development (OSR Classic Reprints)http://www.amazon.com/Windows-Device-De ... 242&sr=8-2Windows®-Internals-Including-Windows-PRO-Developerhttp://www.amazon.com/Windows%C2%AE-Int ... 160&sr=8-1The Windows 2000 device driver book: a guide for programmershttp://www.amazon.com/Windows-2000-Devi ... 0130204315Windows NT/2000 Native API Referencehttp://www.amazon.com/Windows-2000-Nati ... 201&sr=8-1Undocumented Windows 2000 SecretsUndocumented Windows 2000 SecretsDeveloping Drivers with WDFDeveloping Drivers with the Windows Driver Foundation: Reference Book (Windows Drivers)Windows NT File System Internals, A Developer's GuideWindows NT File System Internals*-*O'Reilly MediaWeb ResourcesThe first and most important resource about Windows Driver Development is OSROnline:OSR Online - The Home Page for Windows Driver DevelopersI strongly suggest you to subscribe: 1. The NT Insider 2. NTDEV MailingList 3. NTFSD MailingListNDIS Developer's ReferenceNDIS Developer's ReferenceInformation, Articles, and Free DownloadsResourcesThe Undocumented FunctionsNTAPI Undocumented FunctionsBlog MSDNdriver writing != bus driving - Site Home - MSDN BlogsWindows Vista Kernel StructuresWindows Vista Kernel StructuresPeter Wieland's thoughts on Windows driver developmentPointless Blathering - Site Home - MSDN BlogsUSB Driver DevelopmentMicrosoft Windows USB Core Team Blog - Site Home - MSDN BlogsHardware and Driver Developer BlogsSupport and community for Windows hardware developersDeveloper Newsgroups• microsoft.public.development.device.drivers• microsoft.public.win32.programmer.kernel• microsoft.public.windbgKernelmodeInfo BlogCURRENT_IRQL j00ru//vx tech blog Coding, reverse engineering, OS internals Blogj00ru//vx tech blogNynaeveNynaeveDumpAnalysis BlogSoftware Diagnostics Institute | Structural and Behavioral Patterns for Software Diagnostics, Forensics and Prognostics. Software Diagnostics Library.Analyze -v Bloghttp://analyze-v.com/Instant Online Crash Dump AnalysisInstant Online Crash AnalysisWinsock Kernel (WSK)Winsock Kernel (Windows Drivers)Transport Driver Interface (TDI)_Network Driver Interface Specification (NDIS)The NDIS blog - Site Home - MSDN BlogsSystem InternalsSystem Internals (Windows Drivers)Driver development needs too many time patience and experience to be fully understood, in my opinion the best approach remains LbD ( Learning by Doing ) so, read, study and develop as many experience you build less BSODs and "trange behavior" you will obtain See you to the next post,Giuseppe 'Evilcry' BonfaSursa: KernelMode.info • View topic - Device Driver Development for Beginners - Reloaded Edited September 4, 2014 by Nytro Quote