สรุปโดยย่อเกี่ยวกับสิ่งที่คอมไพเลอร์ของ Microsoft ใช้สำหรับบิตต่างๆของหน่วยความจำที่ไม่เป็นเจ้าของ / ไม่ได้กำหนดค่าเริ่มต้นเมื่อคอมไพล์สำหรับโหมดดีบัก (การสนับสนุนอาจแตกต่างกันไปตามเวอร์ชันของคอมไพเลอร์):
Value Name Description
------ -------- -------------------------
0xCD Clean Memory Allocated memory via malloc or new but never
written by the application.
0xDD Dead Memory Memory that has been released with delete or free.
It is used to detect writing through dangling pointers.
0xED or Aligned Fence 'No man's land' for aligned allocations. Using a
0xBD different value here than 0xFD allows the runtime
to detect not only writing outside the allocation,
but to also identify mixing alignment-specific
allocation/deallocation routines with the regular
ones.
0xFD Fence Memory Also known as "no mans land." This is used to wrap
the allocated memory (surrounding it with a fence)
and is used to detect indexing arrays out of
bounds or other accesses (especially writes) past
the end (or start) of an allocated block.
0xFD or Buffer slack Used to fill slack space in some memory buffers
0xFE (unused parts of `std::string` or the user buffer
passed to `fread()`). 0xFD is used in VS 2005 (maybe
some prior versions, too), 0xFE is used in VS 2008
and later.
0xCC When the code is compiled with the /GZ option,
uninitialized variables are automatically assigned
to this value (at byte level).
// the following magic values are done by the OS, not the C runtime:
0xAB (Allocated Block?) Memory allocated by LocalAlloc().
0xBAADF00D Bad Food Memory allocated by LocalAlloc() with LMEM_FIXED,but
not yet written to.
0xFEEEFEEE OS fill heap memory, which was marked for usage,
but wasn't allocated by HeapAlloc() or LocalAlloc().
Or that memory just has been freed by HeapFree().
ข้อจำกัดความรับผิดชอบ: ตารางมาจากบันทึกบางส่วนที่ฉันโกหก - อาจไม่ถูกต้อง 100% (หรือสอดคล้องกัน)
ค่าเหล่านี้จำนวนมากถูกกำหนดใน vc / crt / src / dbgheap.c:
/*
* The following values are non-zero, constant, odd, large, and atypical
* Non-zero values help find bugs assuming zero filled data.
* Constant values are good, so that memory filling is deterministic
* (to help make bugs reproducible). Of course, it is bad if
* the constant filling of weird values masks a bug.
* Mathematically odd numbers are good for finding bugs assuming a cleared
* lower bit.
* Large numbers (byte values at least) are less typical and are good
* at finding bad addresses.
* Atypical values (i.e. not too often) are good since they typically
* cause early detection in code.
* For the case of no man's land and free blocks, if you store to any
* of these locations, the memory integrity checker will detect it.
*
* _bAlignLandFill has been changed from 0xBD to 0xED, to ensure that
* 4 bytes of that (0xEDEDEDED) would give an inaccessible address under 3gb.
*/
static unsigned char _bNoMansLandFill = 0xFD; /* fill no-man's land with this */
static unsigned char _bAlignLandFill = 0xED; /* fill no-man's land for aligned routines */
static unsigned char _bDeadLandFill = 0xDD; /* fill free objects with this */
static unsigned char _bCleanLandFill = 0xCD; /* fill new objects with this */
นอกจากนี้ยังมีไม่กี่ครั้งที่รันไทม์การแก้ปัญหาจะเติมบัฟเฟอร์ (หรือบางส่วนของบัฟเฟอร์) มูลค่าที่รู้จักกันเช่น 'หย่อน' พื้นที่ในการstd::string
จัดสรร 's fread()
หรือบัฟเฟอร์ที่ผ่านมา กรณีเหล่านี้ใช้ค่าที่ระบุชื่อ_SECURECRT_FILL_BUFFER_PATTERN
(กำหนดในcrtdefs.h
) ฉันไม่แน่ใจว่ามันถูกนำมาใช้เมื่อใด แต่มันอยู่ในรันไทม์การดีบักอย่างน้อย VS 2005 (VC ++ 8)
ในขั้นต้นค่าที่ใช้เติมบัฟเฟอร์เหล่านี้คือ0xFD
- ค่าเดียวกับที่ใช้สำหรับที่ดินที่ไม่มีมนุษย์ อย่างไรก็ตามใน VS 2008 (VC ++ 9) ค่าถูกเปลี่ยนเป็น0xFE
. fread()
ฉันคิดว่าเพราะอาจจะมีสถานการณ์ที่ดำเนินการเติมจะวิ่งผ่านมาในตอนท้ายของบัฟเฟอร์ตัวอย่างเช่นถ้าโทรผ่านในขนาดบัฟเฟอร์ที่มีขนาดใหญ่เกินไปที่จะ ในกรณีนั้นค่า0xFD
อาจไม่ทริกเกอร์การตรวจจับการบุกรุกนี้เนื่องจากหากขนาดของบัฟเฟอร์ใหญ่เกินไปเพียงอันเดียวค่าการเติมจะเหมือนกับมูลค่าที่ดินที่ไม่มีใครใช้ในการเริ่มต้นนกขมิ้นนั้น ไม่มีการเปลี่ยนแปลงในที่ดินของมนุษย์หมายความว่าจะไม่มีใครสังเกตเห็นการบุกรุก
ดังนั้นค่าการเติมจึงเปลี่ยนไปใน VS 2008 ดังนั้นกรณีดังกล่าวจะเปลี่ยนนกขมิ้นที่ไม่มีผู้ใดส่งผลให้รันไทม์ตรวจพบปัญหา
ดังที่คนอื่น ๆ ได้กล่าวไว้คุณสมบัติหลักประการหนึ่งของค่าเหล่านี้คือหากไม่มีการอ้างอิงตัวแปรตัวชี้ที่มีค่าใดค่าหนึ่งเหล่านี้จะทำให้เกิดการละเมิดการเข้าถึงเนื่องจากในการกำหนดค่า Windows 32 บิตมาตรฐานที่อยู่โหมดผู้ใช้ จะไม่สูงกว่า 0x7fffffff