SlideShare uma empresa Scribd logo
1 de 20
Baixar para ler offline
Understanding the PC Boot Process
  How Linux and Windows start their day


           By Dominique Gerald Cimafranca
              dominique.cimafranca@gmail.com




   This work is licensed under the Creative Commons Attribution-Share Alike 3.0 Philippines License. To view a copy of this
   license, visit http://creativecommons.org/licenses/by-sa/3.0/ph/ or send a letter to Creative Commons, 171 Second Street,
   Suite 300, San Francisco, California, 94105, USA.
The PC boot process in a nutshell
1. Executes code from well-known location.
2. Execute first-stage boot loader from MBR.
3. Execute second-stage boot loader.
4. Load the kernel.
5. Load the first user space program.
BIOS
●   BIOS – Basic Input/Output System
●   Located at memory location 0xFFFF0
●   Boot firmware designed to be run at startup
●   POST – Power-on Self-Test
    ●   Identifies, tests, and initializes system devices
●   Run-time services
    ●   Initial configuration
    ●   Selects which device to boot from
●   Alternatively, Extensible Firmware Interface (EFI)
Stage 1 Boot Loader: MBR
●   MBR – Master Boot Record
●   Located on first sector of the boot disk
●   Size: 512 bytes
●   BIOS loads MBR to RAM, relinquishes control
●   Main job: load the second-stage boot loader
Anatomy of the MBR
●   First 446 bytes
    ●   Primary boot loader
    ●   Code and error messages
●   Next 64 bytes
    ●   Partition information
●   Last 2 bytes
    ●   Magic number
    ●   Validation check for MBR



                                   Image from http://www.ibm.com/developerworks/linux/library/l-linuxboot/
Stage 2 Boot Loader
●   Loads the kernel
●   On Linux:
    ●   GRUB – Grand Universal Bootloader
    ●   LILO – Linux Loader
    ●   Others: SysLinux, ISOLinux, PXELinux
●   From Windows NT to Windows XP:
    ●   NTLDR
●   On Windows Vista:
    ●   Windows Boot Manager
A closer look at GRUB
●   GRUB understands ext2 and ext3 file systems
    ●   LILO had to load raw sectors from the hard disk
●   GRUB displays a list of available kernels
    ●   On Ubuntu, defined in /boot/grub/menu.lst
●   More info: http://www.gnu.org/software/grub/
What does GRUB load?
title       Ubuntu 9.04, kernel 2.6.28­13­generic
uuid        0ef7b971
kernel      /boot/vmlinuz­2.6.28­13­generic root=UUID=0ef7b971 ro quiet splash 
initrd      /boot/initrd.img­2.6.28­13­generic



 ●   kernel – a compressed kernel image
     ●   Performs initial minimal hardware setup
     ●   Decompresses the kernel image, puts it in memory
     ●   If present, loads RAM disk (see below)
 ●   initrd – initial RAM disk
     ●   Temporary root file system
     ●   Contains executables and drivers to load the real root
Execution in the kernel
●   arch/i386/boot/head.S
    ●   performs basic hardware setup
    ●   calls startup_32() of ./arch/i386/boot/compressed/head.S
●   arch/i386/boot/compressed/head.S
    ●   set up the basic environment
    ●   clear Block Started by Symbol
    ●   calls decompress_kernel() found in ./arch/i386/boot/compressed/misc.c
    ●   calls startup_32 in ./arch/i386/kernel/head.S
●   arch/i386/kernel/head.S
    ●   also called swapper or process 0
    ●   initializes page tables and enables memory paging
    ●   detects CPU type
●   init/main.c
    ●   calls start_kernel()
    ●   calls kernel_thread to start init (process ID 1)
initrd
●   Initial RAM disk – a small temporary file system
●   During stage 2 boot, initrd is copied into RAM
    and mounted
●   Allows the kernel to fully boot without having to
    mount any physical disks
●   Supports many hardware configurations
    through loadable modules
●   After kernel is booted, the real root file system
    is mounted
init
●   The first user space program -- /sbin/init
●   Typical for desktop Linux systems
●   For Ubuntu, init reads /etc/event.d
    ●   see https://launchpad.net/upstart/
    ●   default run level defined at /etc/event.d/rc-default
    ●   for normal start, Ubuntu is at run level 2
    ●   executes programs from /etc/rc2.d
●   For other Linux systems, init reads /etc/inittab
What about Windows XP?
●   Boot Loader Phase
●   Kernel loading phase
●   Session Manager
●   Winlogon
Windows XP and earlier
●   NTLDR – the actual boot loader
●   boot.ini – booting options
    ●   presents menu options as to what OS to load
    ●   if absent, defaults to Windows directory of first
        partition
What NTLDR does
●   Accesses the file system on boot drive
●   Looks for hiberfil.sys, the hibernation image
●   Reads boot.ini and prompts the user
●   Runs NTDETECT.COM
●   Starts NTOSKRNL.EXE
NTOSKRNL.EXE
●   Kernel image of Windows NT family
●   Contains
    ●   Cache Manager
    ●   Executive
    ●   Kernel
    ●   Security Reference Monitor
    ●   Memory Manager
    ●   Scheduler
●   Also known as:
    ●   NTOSKRNL.EXE : 1 CPU
    ●   NTKRNLMP.EXE : N CPU SMP
    ●   NTKRNLPA.EXE : 1 CPU, PAE
    ●   NTKRPAMP.EXE : N CPU SMP, PAE
Kernel Loading Phase
●   HAL.DLL -- type of hardware abstraction layer
●   KDCOM.DLL -- Kernel Debugger HW Extension
    DLL
●   BOOTVID.DLL -- for the windows logo and
    side-scrolling bar
●   configsystem registry
Session Manager
●   SMSS.EXE
●   What it does:
    ●   Creates environment variables
    ●   Starts the kernel and user modes of the Win32 subsystem
        –   win32k.sys (kernel-mode)
        –   winsrv.dll (user-mode)
        –   csrss.exe (user-mode)
●   Creates DOS device mappings listed at the
    HKLMSystemCurrentControlSetControlSession
    ManagerDOS Devices registry key.
●   Creates virtual memory paging files.
●   Starts winlogon.exe, the Windows logon manager
Windows Logon
●   Winlogon starts the Local Security Authority
    Subsystem Service (LSASS) and Service
    Control Manager (SCM)
●   Also responsible for responding to the secure
    attention sequence (SAS), loading the user
    profile on logon, and optionally locking the
    computer when a screensaver is running.
What about Windows Vista?
●   Windows Boot Manager (bootmgr)
●   Boot Configuration Data
    ●   replacing boot.ini
    ●   found in BootBcd
●   winload.exe
    ●   operating system boot loader
●   NTOSKRNL.EXE and device drivers
Sources
●   “Inside the Linux Boot Process”, M. Tim Jones, IBM Developerworks
    ●   http://www.ibm.com/developerworks/linux/library/l-linuxboot/
●   “Linux initial RAM disk overview”, M. Tim Jones, IBM Developerworks
    ●   http://www.ibm.com/developerworks/linux/library/l-initrd.html
●   Windows NT Startup Process
    ●   http://en.wikipedia.org/wiki/Windows_NT_Startup_Process
●   Windows Vista Startup Process
    ●   http://en.wikipedia.org/wiki/Windows_Vista_startup_process
    ●   http://www.microsoft.com/whdc/system/platform/firmware/bcd.mspx

Mais conteúdo relacionado

Mais procurados

Booting of Computer System
Booting of Computer SystemBooting of Computer System
Booting of Computer SystemArzath Areeff
 
Booting and Start-up Sequence
Booting and Start-up SequenceBooting and Start-up Sequence
Booting and Start-up SequenceTrinity Dwarka
 
Linux Boot Process
Linux Boot ProcessLinux Boot Process
Linux Boot Processdarshhingu
 
Bootloaders (U-Boot)
Bootloaders (U-Boot) Bootloaders (U-Boot)
Bootloaders (U-Boot) Omkar Rane
 
Uboot startup sequence
Uboot startup sequenceUboot startup sequence
Uboot startup sequenceHoucheng Lin
 
An Insight into the Linux Booting Process
An Insight into the Linux Booting ProcessAn Insight into the Linux Booting Process
An Insight into the Linux Booting ProcessHardeep Bhurji
 
Embedded Linux BSP Training (Intro)
Embedded Linux BSP Training (Intro)Embedded Linux BSP Training (Intro)
Embedded Linux BSP Training (Intro)RuggedBoardGroup
 
U Boot or Universal Bootloader
U Boot or Universal BootloaderU Boot or Universal Bootloader
U Boot or Universal BootloaderSatpal Parmar
 
Linux kernel Architecture and Properties
Linux kernel Architecture and PropertiesLinux kernel Architecture and Properties
Linux kernel Architecture and PropertiesSaadi Rahman
 
linux device driver
linux device driverlinux device driver
linux device driverRahul Batra
 
Unified Extensible Firmware Interface (UEFI)
Unified Extensible Firmware Interface (UEFI)Unified Extensible Firmware Interface (UEFI)
Unified Extensible Firmware Interface (UEFI)k33a
 

Mais procurados (20)

Linux booting process
Linux booting processLinux booting process
Linux booting process
 
Boot process: BIOS vs UEFI
Boot process: BIOS vs UEFIBoot process: BIOS vs UEFI
Boot process: BIOS vs UEFI
 
Booting of Computer System
Booting of Computer SystemBooting of Computer System
Booting of Computer System
 
Boot process
Boot processBoot process
Boot process
 
Booting and Start-up Sequence
Booting and Start-up SequenceBooting and Start-up Sequence
Booting and Start-up Sequence
 
Linux Boot Process
Linux Boot ProcessLinux Boot Process
Linux Boot Process
 
Bootloaders (U-Boot)
Bootloaders (U-Boot) Bootloaders (U-Boot)
Bootloaders (U-Boot)
 
Bios
Bios Bios
Bios
 
Uboot startup sequence
Uboot startup sequenceUboot startup sequence
Uboot startup sequence
 
An Insight into the Linux Booting Process
An Insight into the Linux Booting ProcessAn Insight into the Linux Booting Process
An Insight into the Linux Booting Process
 
Bios
BiosBios
Bios
 
Bios
BiosBios
Bios
 
Embedded Linux BSP Training (Intro)
Embedded Linux BSP Training (Intro)Embedded Linux BSP Training (Intro)
Embedded Linux BSP Training (Intro)
 
U Boot or Universal Bootloader
U Boot or Universal BootloaderU Boot or Universal Bootloader
U Boot or Universal Bootloader
 
Linux kernel Architecture and Properties
Linux kernel Architecture and PropertiesLinux kernel Architecture and Properties
Linux kernel Architecture and Properties
 
U-Boot - An universal bootloader
U-Boot - An universal bootloader U-Boot - An universal bootloader
U-Boot - An universal bootloader
 
Basic Linux Internals
Basic Linux InternalsBasic Linux Internals
Basic Linux Internals
 
Linux boot process
Linux boot processLinux boot process
Linux boot process
 
linux device driver
linux device driverlinux device driver
linux device driver
 
Unified Extensible Firmware Interface (UEFI)
Unified Extensible Firmware Interface (UEFI)Unified Extensible Firmware Interface (UEFI)
Unified Extensible Firmware Interface (UEFI)
 

Destaque (12)

Booting & shut down,
Booting & shut down,Booting & shut down,
Booting & shut down,
 
Memory management
Memory managementMemory management
Memory management
 
Spring Boot with Quartz
Spring Boot with QuartzSpring Boot with Quartz
Spring Boot with Quartz
 
Operating systems
Operating systemsOperating systems
Operating systems
 
5. boot process
5. boot process5. boot process
5. boot process
 
Registers
RegistersRegisters
Registers
 
Docker allocating resources
Docker allocating resourcesDocker allocating resources
Docker allocating resources
 
Disk allocation methods
Disk allocation methodsDisk allocation methods
Disk allocation methods
 
Kernel I/O subsystem
Kernel I/O subsystemKernel I/O subsystem
Kernel I/O subsystem
 
Cpu registers
Cpu registersCpu registers
Cpu registers
 
File access methods.54
File access methods.54File access methods.54
File access methods.54
 
File organization
File organizationFile organization
File organization
 

Semelhante a Understanding The Boot Process

Grub and dracut ii
Grub and dracut iiGrub and dracut ii
Grub and dracut iiplarsen67
 
Linux booting procedure
Linux booting procedureLinux booting procedure
Linux booting procedureDhaval Kaneria
 
Linux booting procedure
Linux booting procedureLinux booting procedure
Linux booting procedureDhaval Kaneria
 
Bootloader and bootloading
Bootloader and bootloadingBootloader and bootloading
Bootloader and bootloadingArpita Gupta
 
Embedded Fest 2019. Руслан Биловол. Linux Boot: The Big Bang theory
Embedded Fest 2019. Руслан Биловол. Linux Boot: The Big Bang theoryEmbedded Fest 2019. Руслан Биловол. Linux Boot: The Big Bang theory
Embedded Fest 2019. Руслан Биловол. Linux Boot: The Big Bang theoryEmbeddedFest
 
Linux booting process - Linux System Administration
Linux booting process - Linux System AdministrationLinux booting process - Linux System Administration
Linux booting process - Linux System AdministrationSreenatha Reddy K R
 
Linux boot process – explained
Linux boot process – explainedLinux boot process – explained
Linux boot process – explainedLinuxConcept
 
Kernel entrance to-geek-
Kernel entrance to-geek-Kernel entrance to-geek-
Kernel entrance to-geek-mao999
 
Linux booting Process
Linux booting ProcessLinux booting Process
Linux booting ProcessGaurav Sharma
 
Android for Embedded Linux Developers
Android for Embedded Linux DevelopersAndroid for Embedded Linux Developers
Android for Embedded Linux DevelopersOpersys inc.
 
Basis Linux (aan de hand van LPIC-1)
Basis Linux (aan de hand van LPIC-1)Basis Linux (aan de hand van LPIC-1)
Basis Linux (aan de hand van LPIC-1)Peter Martin
 
Linux: the first second
Linux: the first secondLinux: the first second
Linux: the first secondAlison Chaiken
 
The ABC of Linux (Linux for Beginners)
The ABC of Linux (Linux for Beginners)The ABC of Linux (Linux for Beginners)
The ABC of Linux (Linux for Beginners)plarsen67
 
Linux: the first second
Linux: the first secondLinux: the first second
Linux: the first secondAlison Chaiken
 

Semelhante a Understanding The Boot Process (20)

Grub and dracut ii
Grub and dracut iiGrub and dracut ii
Grub and dracut ii
 
Linux booting procedure
Linux booting procedureLinux booting procedure
Linux booting procedure
 
Linux booting procedure
Linux booting procedureLinux booting procedure
Linux booting procedure
 
Linux Booting Process
Linux Booting ProcessLinux Booting Process
Linux Booting Process
 
Bootloader and bootloading
Bootloader and bootloadingBootloader and bootloading
Bootloader and bootloading
 
Embedded Fest 2019. Руслан Биловол. Linux Boot: The Big Bang theory
Embedded Fest 2019. Руслан Биловол. Linux Boot: The Big Bang theoryEmbedded Fest 2019. Руслан Биловол. Linux Boot: The Big Bang theory
Embedded Fest 2019. Руслан Биловол. Linux Boot: The Big Bang theory
 
Linux booting process - Linux System Administration
Linux booting process - Linux System AdministrationLinux booting process - Linux System Administration
Linux booting process - Linux System Administration
 
101 1.2 boot the system
101 1.2 boot the system101 1.2 boot the system
101 1.2 boot the system
 
Linux boot process – explained
Linux boot process – explainedLinux boot process – explained
Linux boot process – explained
 
Kernel entrance to-geek-
Kernel entrance to-geek-Kernel entrance to-geek-
Kernel entrance to-geek-
 
Linux kernel booting
Linux kernel bootingLinux kernel booting
Linux kernel booting
 
Linux booting Process
Linux booting ProcessLinux booting Process
Linux booting Process
 
An Introduction To Linux
An Introduction To LinuxAn Introduction To Linux
An Introduction To Linux
 
Android for Embedded Linux Developers
Android for Embedded Linux DevelopersAndroid for Embedded Linux Developers
Android for Embedded Linux Developers
 
Basis Linux (aan de hand van LPIC-1)
Basis Linux (aan de hand van LPIC-1)Basis Linux (aan de hand van LPIC-1)
Basis Linux (aan de hand van LPIC-1)
 
Ch04 system administration
Ch04 system administration Ch04 system administration
Ch04 system administration
 
Ch04
Ch04Ch04
Ch04
 
Linux: the first second
Linux: the first secondLinux: the first second
Linux: the first second
 
The ABC of Linux (Linux for Beginners)
The ABC of Linux (Linux for Beginners)The ABC of Linux (Linux for Beginners)
The ABC of Linux (Linux for Beginners)
 
Linux: the first second
Linux: the first secondLinux: the first second
Linux: the first second
 

Mais de Dominique Cimafranca (18)

Welcome Address - CS Cluster Orientation
Welcome Address - CS Cluster OrientationWelcome Address - CS Cluster Orientation
Welcome Address - CS Cluster Orientation
 
Story a meditation
Story a meditationStory a meditation
Story a meditation
 
Video Games as Culture and Experience
Video Games as Culture and ExperienceVideo Games as Culture and Experience
Video Games as Culture and Experience
 
Privacy and how the Internet works
Privacy and how the Internet works Privacy and how the Internet works
Privacy and how the Internet works
 
Why you can't write filipino science fiction
Why you can't write filipino science fictionWhy you can't write filipino science fiction
Why you can't write filipino science fiction
 
What is MVC?
What is MVC?What is MVC?
What is MVC?
 
Thesis proposal checklist
Thesis proposal checklistThesis proposal checklist
Thesis proposal checklist
 
FOSS and social development
FOSS and social developmentFOSS and social development
FOSS and social development
 
Metadata 101
Metadata 101Metadata 101
Metadata 101
 
Creative nonfiction
Creative nonfictionCreative nonfiction
Creative nonfiction
 
Speculative Fiction
Speculative FictionSpeculative Fiction
Speculative Fiction
 
Online Literature
Online LiteratureOnline Literature
Online Literature
 
Writing Short Fiction
Writing Short FictionWriting Short Fiction
Writing Short Fiction
 
Teaching Open Source In The University
Teaching Open Source In The UniversityTeaching Open Source In The University
Teaching Open Source In The University
 
Poetry
PoetryPoetry
Poetry
 
Architecture Of The Linux Kernel
Architecture Of The Linux KernelArchitecture Of The Linux Kernel
Architecture Of The Linux Kernel
 
Ubuntu For Intranet Services
Ubuntu For Intranet ServicesUbuntu For Intranet Services
Ubuntu For Intranet Services
 
Open Source In Education
Open Source In EducationOpen Source In Education
Open Source In Education
 

Último

presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfhans926745
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 

Último (20)

presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 

Understanding The Boot Process

  • 1. Understanding the PC Boot Process How Linux and Windows start their day By Dominique Gerald Cimafranca dominique.cimafranca@gmail.com This work is licensed under the Creative Commons Attribution-Share Alike 3.0 Philippines License. To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/3.0/ph/ or send a letter to Creative Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA.
  • 2. The PC boot process in a nutshell 1. Executes code from well-known location. 2. Execute first-stage boot loader from MBR. 3. Execute second-stage boot loader. 4. Load the kernel. 5. Load the first user space program.
  • 3. BIOS ● BIOS – Basic Input/Output System ● Located at memory location 0xFFFF0 ● Boot firmware designed to be run at startup ● POST – Power-on Self-Test ● Identifies, tests, and initializes system devices ● Run-time services ● Initial configuration ● Selects which device to boot from ● Alternatively, Extensible Firmware Interface (EFI)
  • 4. Stage 1 Boot Loader: MBR ● MBR – Master Boot Record ● Located on first sector of the boot disk ● Size: 512 bytes ● BIOS loads MBR to RAM, relinquishes control ● Main job: load the second-stage boot loader
  • 5. Anatomy of the MBR ● First 446 bytes ● Primary boot loader ● Code and error messages ● Next 64 bytes ● Partition information ● Last 2 bytes ● Magic number ● Validation check for MBR Image from http://www.ibm.com/developerworks/linux/library/l-linuxboot/
  • 6. Stage 2 Boot Loader ● Loads the kernel ● On Linux: ● GRUB – Grand Universal Bootloader ● LILO – Linux Loader ● Others: SysLinux, ISOLinux, PXELinux ● From Windows NT to Windows XP: ● NTLDR ● On Windows Vista: ● Windows Boot Manager
  • 7. A closer look at GRUB ● GRUB understands ext2 and ext3 file systems ● LILO had to load raw sectors from the hard disk ● GRUB displays a list of available kernels ● On Ubuntu, defined in /boot/grub/menu.lst ● More info: http://www.gnu.org/software/grub/
  • 8. What does GRUB load? title Ubuntu 9.04, kernel 2.6.28­13­generic uuid 0ef7b971 kernel /boot/vmlinuz­2.6.28­13­generic root=UUID=0ef7b971 ro quiet splash  initrd /boot/initrd.img­2.6.28­13­generic ● kernel – a compressed kernel image ● Performs initial minimal hardware setup ● Decompresses the kernel image, puts it in memory ● If present, loads RAM disk (see below) ● initrd – initial RAM disk ● Temporary root file system ● Contains executables and drivers to load the real root
  • 9. Execution in the kernel ● arch/i386/boot/head.S ● performs basic hardware setup ● calls startup_32() of ./arch/i386/boot/compressed/head.S ● arch/i386/boot/compressed/head.S ● set up the basic environment ● clear Block Started by Symbol ● calls decompress_kernel() found in ./arch/i386/boot/compressed/misc.c ● calls startup_32 in ./arch/i386/kernel/head.S ● arch/i386/kernel/head.S ● also called swapper or process 0 ● initializes page tables and enables memory paging ● detects CPU type ● init/main.c ● calls start_kernel() ● calls kernel_thread to start init (process ID 1)
  • 10. initrd ● Initial RAM disk – a small temporary file system ● During stage 2 boot, initrd is copied into RAM and mounted ● Allows the kernel to fully boot without having to mount any physical disks ● Supports many hardware configurations through loadable modules ● After kernel is booted, the real root file system is mounted
  • 11. init ● The first user space program -- /sbin/init ● Typical for desktop Linux systems ● For Ubuntu, init reads /etc/event.d ● see https://launchpad.net/upstart/ ● default run level defined at /etc/event.d/rc-default ● for normal start, Ubuntu is at run level 2 ● executes programs from /etc/rc2.d ● For other Linux systems, init reads /etc/inittab
  • 12. What about Windows XP? ● Boot Loader Phase ● Kernel loading phase ● Session Manager ● Winlogon
  • 13. Windows XP and earlier ● NTLDR – the actual boot loader ● boot.ini – booting options ● presents menu options as to what OS to load ● if absent, defaults to Windows directory of first partition
  • 14. What NTLDR does ● Accesses the file system on boot drive ● Looks for hiberfil.sys, the hibernation image ● Reads boot.ini and prompts the user ● Runs NTDETECT.COM ● Starts NTOSKRNL.EXE
  • 15. NTOSKRNL.EXE ● Kernel image of Windows NT family ● Contains ● Cache Manager ● Executive ● Kernel ● Security Reference Monitor ● Memory Manager ● Scheduler ● Also known as: ● NTOSKRNL.EXE : 1 CPU ● NTKRNLMP.EXE : N CPU SMP ● NTKRNLPA.EXE : 1 CPU, PAE ● NTKRPAMP.EXE : N CPU SMP, PAE
  • 16. Kernel Loading Phase ● HAL.DLL -- type of hardware abstraction layer ● KDCOM.DLL -- Kernel Debugger HW Extension DLL ● BOOTVID.DLL -- for the windows logo and side-scrolling bar ● configsystem registry
  • 17. Session Manager ● SMSS.EXE ● What it does: ● Creates environment variables ● Starts the kernel and user modes of the Win32 subsystem – win32k.sys (kernel-mode) – winsrv.dll (user-mode) – csrss.exe (user-mode) ● Creates DOS device mappings listed at the HKLMSystemCurrentControlSetControlSession ManagerDOS Devices registry key. ● Creates virtual memory paging files. ● Starts winlogon.exe, the Windows logon manager
  • 18. Windows Logon ● Winlogon starts the Local Security Authority Subsystem Service (LSASS) and Service Control Manager (SCM) ● Also responsible for responding to the secure attention sequence (SAS), loading the user profile on logon, and optionally locking the computer when a screensaver is running.
  • 19. What about Windows Vista? ● Windows Boot Manager (bootmgr) ● Boot Configuration Data ● replacing boot.ini ● found in BootBcd ● winload.exe ● operating system boot loader ● NTOSKRNL.EXE and device drivers
  • 20. Sources ● “Inside the Linux Boot Process”, M. Tim Jones, IBM Developerworks ● http://www.ibm.com/developerworks/linux/library/l-linuxboot/ ● “Linux initial RAM disk overview”, M. Tim Jones, IBM Developerworks ● http://www.ibm.com/developerworks/linux/library/l-initrd.html ● Windows NT Startup Process ● http://en.wikipedia.org/wiki/Windows_NT_Startup_Process ● Windows Vista Startup Process ● http://en.wikipedia.org/wiki/Windows_Vista_startup_process ● http://www.microsoft.com/whdc/system/platform/firmware/bcd.mspx