byte precise verification of low level list manipulation
play

Byte-precise Verification of Low-level List Manipulation Kamil Dudka - PowerPoint PPT Presentation

Byte-precise Verification of Low-level List Manipulation Kamil Dudka 1 , 2 Petr Peringer 1 Tom Vojnar 1 1 FIT, Brno University of Technology, Czech Republic 2 Red Hat Czech, Brno, Czech Republic June 21, 2013 Agenda Low-level Memory


  1. Byte-precise Verification of Low-level List Manipulation Kamil Dudka 1 , 2 Petr Peringer 1 Tomáš Vojnar 1 1 FIT, Brno University of Technology, Czech Republic 2 Red Hat Czech, Brno, Czech Republic June 21, 2013

  2. Agenda Low-level Memory Manipulation 1 Symbolic Memory Graphs (SMGs) 2 Predator – Verifier Based on SMGs 3

  3. Kernel-Style Linked Lists Cyclic, linked through pointers pointing inside list nodes. Pointer arithmetic used to get to the boundary of the nodes. Non-uniform: one node is missing the custom envelope. custom_node custom_node list_head list_head list_head next next next prev prev prev struct list_head { struct custom_node { struct list_head *next; t_data data; struct list_head *prev; struct list_head head; }; }; 1 ✶ / 22 ✷✷

  4. Kernel-Style Linked Lists – Traversal ... as seen by the programmer: list_for_each_entry(pos, list, head) { printf(" %d", pos->value); } 2 ✷ / 22 ✷✷

  5. Kernel-Style Linked Lists – Traversal ... as seen by the programmer: list_for_each_entry(pos, list, head) { printf(" %d", pos->value); } ... as seen by the compiler: for(pos = ((typeof(*pos) *)((char *)(list->next) -(unsigned long)(&((typeof(*pos) *)0)->head))); &pos->head != list; pos = ((typeof(*pos) *)((char *)(pos->head.next) -(unsigned long)(&((typeof(*pos) *)0)->head)))) { printf(" %d", pos->value); } 2 ✷ / 22 ✷✷

  6. Kernel-Style Linked Lists – Traversal ... as seen by the programmer: list_for_each_entry(pos, list, head) { printf(" %d", pos->value); } ... as seen by the compiler: for(pos = ((typeof(*pos) *)((char *)(list->next) -(unsigned long)(&((typeof(*pos) *)0)->head))); &pos->head != list; pos = ((typeof(*pos) *)((char *)(pos->head.next) -(unsigned long)(&((typeof(*pos) *)0)->head)))) { printf(" %d", pos->value); } ... as seen by the analyser (assuming 64 bit addressing): for(pos = (char *)list->next - 8; &pos->head != list; pos = (char *)pos->head.next - 8) { printf(" %d", pos->value); } 2 ✷ / 22 ✷✷

  7. Kernel-Style Linked Lists – End of the Traversal Correct use of pointers with invalid target: &pos->head != list pos custom_node custom_node list list_head list_head list_head next next next prev prev prev 3 ✸ / 22 ✷✷

  8. Low-level Memory Manipulation We need to track sizes of allocated blocks. Large chunks of memory are often nullified at once, their fields are gradually used, the rest must stay null. list_head struct list_head { head next struct list_head *next; struct list_head *prev; prev }; struct list_head *head = calloc (1U, sizeof *head); Low-level code often uses block operations: memcpy() , memmove() , memset() , strcpy() . Incorrect use of such operations can lead to nasty errors (e.g. memcpy() and overlapping blocks). 4 ✹ / 22 ✷✷

  9. Alignment of Pointers Alignment of pointers implies a need to deal with pointers whose target is given by an interval of addresses: aligned = ((unsigned)base + mask) & ~mask; base aligned 5 ✺ / 22 ✷✷

  10. Alignment of Pointers Alignment of pointers implies a need to deal with pointers whose target is given by an interval of addresses: aligned = ((unsigned)base + mask) & ~mask; base aligned Intervals of addresses arise also when joining blocks of memory pointing to themselves with different offsets: 5 ✺ / 22 ✷✷

  11. Data Reinterpretation Due to unions, typecasting, or block operations, the same memory contents can be interpreted in different ways. union { void *p0; data.p0 data.str struct { c[0] char c[2]; c[1] void *p1; p0 void *p2; } str; } data; p1 // allocate 37B on heap data.p0 = malloc(37U); // introduce a memory leak data.str.c[1] = sizeof data.str.p1; p2 // invalid free() free(data.p0); 6 ✻ / 22 ✷✷

  12. Agenda Low-level Memory Manipulation 1 Symbolic Memory Graphs (SMGs) 2 Predator – Verifier Based on SMGs 3

  13. 2+ DLS size (ptr), Symbolic Memory Graphs (SMGs) An example of a kernel-style linked list: list_head hfo custom_record nfo pfo next next next ... prev prev prev 7 ✼ / 22 ✷✷

  14. Symbolic Memory Graphs (SMGs) An example of a kernel-style linked list: list_head hfo custom_record nfo pfo next next next ... prev prev prev An SMG describing the data structure above: 0,reg 0,ptr hfo,fst nfo,ptr 2+ DLS pfo,ptr hfo,lst size (ptr), ptr 7 ✼ / 22 ✷✷

  15. Symbolic Memory Graphs (SMGs) An example of a kernel-style linked list: list_head hfo custom_record nfo pfo next next next ... prev prev prev An SMG describing the data structure above: 0,reg 0,ptr hfo,fst nfo,ptr 2+ DLS pfo,ptr hfo,lst size (ptr), ptr SMGs are directed graphs consisting of: objects (allocated space) and values (addresses, integers), has-value and points-to edges. 7 ✼ / 22 ✷✷

  16. SMGs: Has-Value and Points-To Edges Memory SMG region 1 region 2 region 1 region 2 o ff set 1 , ptr o ff set 2 , reg o ff set 1 o ff set 2 a 1 size 2 size =size 1 size =size 2 size 1 a 1 has-value points-to edge edge 8 ✽ / 22 ✷✷

  17. SMGs: Has-Value and Points-To Edges Memory SMG region 1 region 2 region 1 region 2 o ff set 1 , ptr o ff set 2 , reg o ff set 1 o ff set 2 a 1 size 2 size =size 1 size =size 2 size 1 a 1 has-value points-to edge edge has-value edges – from objects to values, labelled by: field offset type of the value stored in the field 8 ✽ / 22 ✷✷

  18. SMGs: Has-Value and Points-To Edges Memory SMG region 1 region 2 region 1 region 2 o ff set 1 , ptr o ff set 2 , reg o ff set 1 o ff set 2 a 1 size 2 size =size 1 size =size 2 size 1 a 1 has-value points-to edge edge has-value edges – from objects to values, labelled by: field offset type of the value stored in the field points-to edges – from values (addresses) to objects, labelled by: target offset target specifier: first/last/each node of a DLS specifier each node: used for back-links from nested objects 8 ✽ / 22 ✷✷

  19. SMGs: Labelling of Objects Each object has some size in bytes and a validity flag. 9 ✾ / 22 ✷✷

  20. SMGs: Labelling of Objects Each object has some size in bytes and a validity flag. Objects are further divided into: regions, i.e., individual blocks of memory, doubly-linked list segments (DLSs), and other kinds of objects, which can be easily plugged-in. 9 ✾ / 22 ✷✷

  21. SMGs: Labelling of Objects Each object has some size in bytes and a validity flag. Objects are further divided into: regions, i.e., individual blocks of memory, doubly-linked list segments (DLSs), and other kinds of objects, which can be easily plugged-in. Each DLS is given by a head, next, and prev field offset. 9 ✾ / 22 ✷✷

  22. SMGs: Labelling of Objects Each object has some size in bytes and a validity flag. Objects are further divided into: regions, i.e., individual blocks of memory, doubly-linked list segments (DLSs), and other kinds of objects, which can be easily plugged-in. Each DLS is given by a head, next, and prev field offset. DLSs can be of length N + for any N ≥ 0. 9 ✾ / 22 ✷✷

  23. SMGs: Labelling of Objects Each object has some size in bytes and a validity flag. Objects are further divided into: regions, i.e., individual blocks of memory, doubly-linked list segments (DLSs), and other kinds of objects, which can be easily plugged-in. Each DLS is given by a head, next, and prev field offset. DLSs can be of length N + for any N ≥ 0. Nodes of DLSs can point to objects that are: shared: each node points to the same object, or nested: each node points to a separate copy of the object. Implemented by tagging objects by their nesting level. 9 ✾ / 22 ✷✷

  24. SMGs: Data Reinterpretation Reading: a field with a given offset and type either exists, or an attempt to synthesise if from other fields is done. Writing: a field with a given offset and type is written, overlapping fields are adjusted or removed. Currently, for nullified/undefined fields of arbitrary size only. initialized write 1 write 2 0 0 0 0 0 0 0 0 0 0 0 0 0 X X 0 X X value=0 value=X value=? 0 X Y 0 X Y value 2 0 0 Y 0 0 Y 0 0 0 0 0 0 0 0 0 0 0 0 10 ✶✵ / 22 ✷✷

  25. SMGs: Join Operator ptr ptr Traverses two SMGs and tries to join region region level=0 level=0 simultaneously encountered objects. 2+ DLS region 1+ DLS 0+ DLS level=0 level=1 level=0 level=1 ? 1+ DLS level=0 region level=0 region level=0 } ptr region level=0 1+ DLS 0+ DLS level=0 level=1 0+ DLS level=0 region level=0 11 ✶✶ / 22 ✷✷

  26. SMGs: Join Operator ptr ptr Traverses two SMGs and tries to join region region level=0 level=0 simultaneously encountered objects. 2+ DLS region 1+ DLS 0+ DLS level=0 level=1 level=0 level=1 Objects being joined must be locally ? 1+ DLS compatible (same size, nesting level, level=0 region DLS linking offsets, ...). level=0 region level=0 } ptr region level=0 1+ DLS 0+ DLS level=0 level=1 0+ DLS level=0 region level=0 11 ✶✶ / 22 ✷✷

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend