دسترسی نامحدود
برای کاربرانی که ثبت نام کرده اند
برای ارتباط با ما می توانید از طریق شماره موبایل زیر از طریق تماس و پیامک با ما در ارتباط باشید
در صورت عدم پاسخ گویی از طریق پیامک با پشتیبان در ارتباط باشید
برای کاربرانی که ثبت نام کرده اند
درصورت عدم همخوانی توضیحات با کتاب
از ساعت 7 صبح تا 10 شب
ویرایش: 2
نویسندگان: Kaiwan N. Billimoria
سری:
ISBN (شابک) : 1803232226, 9781803232225
ناشر: Packt Publishing
سال نشر: 2024
تعداد صفحات: 0
زبان: English
فرمت فایل : EPUB (درصورت درخواست کاربر به PDF، EPUB یا AZW3 تبدیل می شود)
حجم فایل: 54 مگابایت
در صورت تبدیل فایل کتاب Linux Kernel Programming: A comprehensive and practical guide to kernel internals, writing modules, and kernel synchronization به فرمت های PDF، EPUB، AZW3، MOBI و یا DJVU می توانید به پشتیبان اطلاع دهید تا فایل مورد نظر را تبدیل نمایند.
توجه داشته باشید کتاب برنامه نویسی کرنل لینوکس: راهنمای جامع و کاربردی برای داخلی های هسته، ماژول های نوشتن و همگام سازی هسته نسخه زبان اصلی می باشد و کتاب ترجمه شده به فارسی نمی باشد. وبسایت اینترنشنال لایبرری ارائه دهنده کتاب های زبان اصلی می باشد و هیچ گونه کتاب ترجمه شده یا نوشته شده به فارسی را ارائه نمی دهد.
- Preface
- Linux Kernel Programming – A Quick Introduction
- Building the 6.x Linux Kernel from Source – Part 1
- Technical requirements
- Preliminaries for the kernel build
- Steps to build the kernel from source
- Step 1 – Obtaining a Linux kernel source tree
- Step 2 – Extracting the kernel source tree
- Step 3 – Configuring the Linux kernel
- Customizing the kernel menu, Kconfig, and adding our own menu item
- Summary
- Exercise
- Questions
- Further reading
- Building the 6.x Linux Kernel from Source – Part 2
- Technical requirements
- Step 4 – building the kernel image and modules
- Step 5 – installing the kernel modules
- Step 6 – generating the initramfs image and bootloader setup
- Understanding the initramfs framework
- Step 7 – customizing the GRUB bootloader
- Verifying our new kernel’s configuration
- Kernel build for the Raspberry Pi
- Miscellaneous tips on the kernel build
- Summary
- Questions
- Further reading
- Writing Your First Kernel Module – Part 1
- Technical requirements
- Understanding the kernel architecture – part 1
- Exploring LKMs
- Writing our very first kernel module
- Common operations on kernel modules
- Understanding kernel logging and printk
- Using the kernel memory ring buffer
- Kernel logging and systemd’s journalctl
- Using printk log levels
- Rate limiting the printk instances
- Generating kernel messages from user space
- Standardizing printk output via the pr_fmt macro
- Portability and the printk format specifiers
- Understanding the new printk indexing feature
- Understanding the basics of a kernel module Makefile
- Summary
- Questions
- Further reading
- Writing Your First Kernel Module – Part 2
- Technical requirements
- A “better” Makefile template for your kernel modules
- Cross-compiling a kernel module
- Setting up the system for cross-compilation
- Attempt 1 – setting the ARCH and CROSS_COMPILE environment variables
- Attempt 2 – pointing the Makefile to the correct kernel source tree for the target
- Attempt 3 – cross-compiling our kernel module
- Attempt 4 – cross-compiling our kernel module
- Summarizing what went wrong with the module cross-buildd/load and how it was fixed
- Gathering minimal system information
- Licensing kernel modules
- Emulating “library-like” features for kernel modules
- Passing parameters to a kernel module
- Floating point not allowed in the kernel
- Auto-loading modules on system boot
- Kernel modules and security – an overview
- Coding style guidelines for kernel developers
- Contributing to the mainline kernel
- Summary
- Questions
- Further reading
- Kernel Internals Essentials – Processes and Threads
- Technical requirements
- Understanding process and interrupt contexts
- Understanding the basics of the process Virtual Address Space (VAS)
- Organizing processes, threads, and their stacks – user and kernel space
- Understanding and accessing the kernel task structure
- Working with the task structure via ‘current’
- Iterating over the kernel’s task lists
- Summary
- Questions
- Further reading
- Memory Management Internals – Essentials
- Technical requirements
- Understanding the VM split
- Examining the process VAS
- Examining the kernel VAS
- Randomizing the memory layout – KASLR
- Understanding physical memory organization
- Summary
- Questions
- Further reading
- Kernel Memory Allocation for Module Authors – Part 1
- Technical requirements
- Introducing kernel memory allocators
- Understanding and using the kernel page allocator (or BSA)
- Understanding and using the kernel slab allocator
- Size limitations of the kmalloc API
- Slab allocator – a few additional details
- Caveats when using the slab allocator
- Summary
- Questions
- Further reading
- Kernel Memory Allocation for Module Authors – Part 2
- Technical requirements
- Creating a custom slab cache
- Debugging kernel memory issues – a quick mention
- Understanding and using the kernel vmalloc() API
- Memory allocation in the kernel – which APIs to use when
- Memory reclaim – a key kernel housekeeping task
- Stayin’ alive – the OOM killer
- Summary
- Questions
- Further reading
- The CPU Scheduler – Part 1
- Technical requirements
- Learning about the CPU scheduling internals – part 1 – essential background
- Visualizing the flow
- Learning about the CPU scheduling internals – part 2
- Querying a given thread’s scheduling policy and priority
- Learning about the CPU scheduling internals – part 3
- Summary
- Questions
- Further reading
- The CPU Scheduler – Part 2
- Technical requirements
- Understanding, querying, and setting the CPU affinity mask
- Querying and setting a thread’s scheduling policy and priority
- An introduction to cgroups
- Running Linux as an RTOS – an introduction
- Miscellaneous scheduling related topics
- Summary
- Questions
- Further reading
- Kernel Synchronization – Part 1
- Technical requirements
- Critical sections, exclusive execution, and atomicity
- Concurrency concerns within the Linux kernel
- Mutex or spinlock? Which to use when
- Using the mutex lock
- Using the spinlock
- Locking and interrupts
- Scenario 1 – driver method and hardware interrupt handler run serialized, sequentially
- Scenario 2 – driver method and hardware interrupt handler run interleaved
- Scenario 3 – some interrupts masked, driver method and hardware interrupt handler run interleaved
- Interrupt handling, bottom halves, and locking
- Using spinlocks – a quick summary
- Locking – common mistakes and guidelines
- Solutions
- Summary
- Questions
- Further reading
- Kernel Synchronization – Part 2
- Technical requirements
- Using the atomic_t and refcount_t interfaces
- Using the RMW atomic operators
- Using the reader-writer spinlock
- Understanding CPU caching basics, cache effects, and false sharing
- Lock-free programming with per-CPU and RCU
- Lock debugging within the kernel
- Introducing memory barriers
- Summary
- Questions
- Further reading
- Other Books You May Enjoy
- Index