Code Monkey home page Code Monkey logo

Comments (3)

randolphcyg avatar randolphcyg commented on June 3, 2024 1

Thanks, I have referred to the logic of wireshark, tshark, and rawshark source code to implement different versions of offline and online packet capture parsing logic.
But I tested with valgrind and found that the report showed no leaks, in fact there would be leaks.
By adding a printf statement to the code, it is determined that it is most likely to have something to do with the buffer transport. But it will not be modified yet, I will continue to follow up, hope to solve it as soon as possible.

from ushark.

emanuele-f avatar emanuele-f commented on June 3, 2024

Hello, this is something to investigate. For sure there is an invalid read reported by valgrind:

==24505== Invalid read of size 8
==24505==    at 0x23DB80E: ushark_destroy (ushark.c:507)
==24505==    by 0x23DAB7D: main (pcap_example.c:40)
==24505==  Address 0xc0015d0 is 160 bytes inside a block of size 2,456 free'd
==24505==    at 0x851326F: free (vg_replace_malloc.c:872)
==24505==    by 0x35FD59D: wtap_close (in /home/emanuele/src/ushark/libushark/pcap_example)
==24505==    by 0x23DB809: ushark_destroy (ushark.c:505)
==24505==    by 0x23DAB7D: main (pcap_example.c:40)
==24505==  Block was alloc'd at
==24505==    at 0x8515A73: calloc (vg_replace_malloc.c:1328)
==24505==    by 0x85A8631: g_malloc0 (gmem.c:163)
==24505==    by 0x23DB5CE: ushark_new (ushark.c:456)
==24505==    by 0x23DAB4E: main (pcap_example.c:37)

Running valgrind --leak-check=full --show-leak-kinds=all show some leaks, these could be the ones responsible for your issue.

from ushark.

emanuele-f avatar emanuele-f commented on June 3, 2024

Invalid read size fixed in cf3c876.
Regarding the possible leak, I've run the pcap_example through different PCAP samples and I always get the same report, with 278 still reachable:

==3210== LEAK SUMMARY:
==3210==    definitely lost: 0 bytes in 0 blocks
==3210==    indirectly lost: 0 bytes in 0 blocks
==3210==      possibly lost: 0 bytes in 0 blocks
==3210==    still reachable: 60,055 bytes in 278 blocks
==3210==         suppressed: 0 bytes in 0 blocks

Inspecting the leaks, they are related to some state that wireshark does not clean up (e.g. ws_init_version_info and reassembly_table_init). Since the leaked size is all the same regardless of the PCAP samples size, it seems like no leaks occur in the packet processing. Your memcpy change above does not explain or fix possible leaks (but please note that it introduces an OOB read).

Please post links to your custom code, trying to minimizing the changes w.r.t. this repo example so that I can try to reproduce this.

from ushark.

Related Issues (2)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.