Memory Thinking for C & C++ Linux Diagnostics

This document was uploaded by one of our users. The uploader already confirmed that they had the permission to publish it. If you are author/publisher or own the copyright of this documents, please report to us by using this DMCA report form.

Simply click on the Download Book button.

Yes, Book downloads on Ebookily are 100% Free.

Sometimes the book is free on Amazon As well, so go ahead and hit "Search on Amazon"

Solid C and C++ knowledge is a must to fully understand Linux diagnostic artifacts such as core memory dumps and do diagnostic, forensic, and root cause analysis beyond listing backtraces. This full-color reference book is a part of the Accelerated C & C++ for Linux Diagnostics training course organized by Software Diagnostics Services. The text contains slides, brief notes highlighting particular points, and replicated source code fragments that are easy to copy into your favorite IDE. The book's detailed Table of Contents makes the usual Index redundant. We hope this reference is helpful for the following audiences:


  • C and C++ developers who want to deepen their knowledge
  • Software engineers developing and maintaining products on Linux platforms
  • Technical support, escalation, DevSecOps, cloud and site reliability engineers dealing with complex software issues
  • Quality assurance engineers who test software on Linux platforms
  • Security and vulnerability researchers, reverse engineers, malware and memory forensics analysts


Author(s): Dmitry Vostokov
Series: Linux Internals Supplements
Edition: 1
Publisher: OpenTask
Year: 2023

Language: English
Commentary: Revision 1.00 (December 2023) | NOTE: Slides with Descriptions Only
Pages: 258
City: Monkstown, Dublin
Tags: Software Diagnostics; Software Debugging; C Programming Language; C++ Programming Language; GNU/Linux; GNU; Linux

Table of Contents
Preface
About the Author
Introduction
Original Training Course Name
Prerequisites
Training Goals
Training Principles
Schedule
Training Idea
General C & C++ Aspects
What We Do Not Cover
Linux C & C++ Aspects
Why C & C++?
Which C & C++?
My History of C & C++
C and C++ Mastery Process
Thought Process
Philosophy of Pointers
Pointer
Pointer Dereference
Many to One
Many to One Dereference
Invalid Pointer
Invalid Pointer Dereference
Wild (Dangling) Pointer
Pointer to Pointer
Pointer to Pointer Dereference
Naming Pointers and Entities
Names as Pointer Content
Pointers as Entities
Memory and Pointers
Mental Exercise
Debugger Memory Layout
Memory Dereference Layout
Names as Addresses
Addresses and Entities
Addresses and Structures
Pointers to Structures
Arrays
Arrays and Pointers to Arrays
Strings and Pointers to Strings
Basic Types
ASCII Characters and Pointers
Bytes and Pointers
Wide Characters and Pointers
Integers
Little-Endian System
Short Integers
Long and Long Long Integers
Signed and Unsigned Integers
Fixed Size Integers
Booleans
Bytes
Size
Alignment
LP64
Nothing and Anything
Automatic Type Inference
Entity Conversion
Pointer Conversion (C-Style)
Numeric Promotion/Conversion
Numeric Conversion
Incompatible Types
Forcing
Structures, Classes, and Objects
Structures
Access Level
Classes and Objects
Structures and Classes
Pointer to Structure
Pointer to Structure Dereference
Many Pointers to One Structure
Many to One Dereference
Invalid Pointer to Structure
Invalid Pointer Dereference
Wild (Dangling) Pointer
Pointer to Pointer to Structure
Pointer to Pointer Dereference
Memory and Structures
Addresses and Structures
Structure Field Access
Pointers to Structures
Pointers to Structure Fields
Structure Inheritance
Structure Slicing
Inheritance Access Level
Structures and Classes II
Internal Structure Alignment
Static Structure Fields
Uniform Initialization
Old Initialization Ways
New Way {}
Uniform Structure Initialization
Static Field Initialization
Macros, Types, and Synonyms
Macros
Old Way
New Way
Memory Storage
Overview
Thread Stack Frames
Local Variable Value Lifecycle
Stack Allocation Pitfalls
Explicit Local Allocation
Dynamic Allocation (C-style)
Dynamic Allocation (C++)
Memory Operators
Memory Expressions
Local Pointers (Manual)
In-place Allocation
Source Code Organisation
Logical Layer (Translation Units)
Physical Layer (Source Files)
Inter-TU Sharing
Classic Static TU Isolation
Namespace TU Isolation
Declaration and Definition
TU Definition Conflicts
Fine-grained TU Scope Isolation
Conceptual Layer (Design)
Incomplete Types
References
Type& vs. Type*
Values
Value Categories
Constant Values
Constant Expressions
Functions
Pointers to Functions
Function Pointer Types
Reading Declarations
Structure Function Fields
Structure Methods
Structure Methods (Inlined)
Structure Methods (Inheritance)
Structure Virtual Methods
Structure Pure Virtual Methods
Structure as Interface
Function Structure
Structure Constructors
Structure Copy Constructor
Structure Copy Assignment
Structure Destructor
Structure Destructor Hierarchy
Structure Virtual Destructor
Destructor as a Method
Conversion Operators
Parameters by Value
Parameters by Pointer/Reference
Parameters by Ptr/Ref to Const
Possible Mistake
Function Overloading
Immutable Objects
Static Structure Functions
Lambdas
x64 CPU Registers
x64 Instructions and Registers
x64 Memory and Stack Addressing
x64 Memory Load Instructions
x64 Memory Store Instructions
x64 Flow Instructions
x64 Function Parameters
x64 Struct Function Parameters
A64 CPU Registers
A64 Instructions and Registers
A64 Memory and Stack Addressing
A64 Memory Load Instructions
A64 Memory Store Instructions
A64 Flow Instructions
A64 Function Parameters
A64 Struct Function Parameters
this
Function Objects vs. Lambdas
A64 Lambda Example
Captures and Closures
A64 Captures Example
Lambdas as Parameters
A64 Lambda Parameter Example
Lambda Parameter Optimization
A64 Optimization Example
Lambdas as Unnamed Functions
std::function Lambda Parameters
auto Lambda Parameters
Lambdas as Return Values
Virtual Function Call
VTBL Memory Layout
VPTR and Struct Memory Layout
Templates: A Planck-length Introduction
Why Templates?
Reusability
Types of Templates
Types of Template Parameters
Type Safety
Flexibility
Metafunctions
Iterators as Pointers
Containers
Iterators
Constant Iterators
Pointers as Iterators
Algorithms
Memory Ownership
Pointers as Owners
Problems with Pointer Owners
Smart Pointers
Basic Design
Unique Pointers
Descriptors as Unique Pointers
Shared Pointers
RAII
RAII Definition
RAII Advantages
File Descriptor RAII
Threads and Synchronization
Threads in C/C++
Threads in C++ Proper
Synchronization Problems
Synchronization Solution
Resources
C and C++
Training (Linux C and C++)