Git Product home page Git Product logo

fmem's Introduction

fmem

Build Status GitHub Workflow Status (with event)

Forked from Snaipe, since he hasn't reviewed pull request in the last 6 years.

A cross-platform library for opening memory-backed libc streams.

This library was written for Criterion to implement stringification functions for user-defined types.

Rationale

C doesn't define any way to open "virtual" streams that write to memory rather than a real file. A lot of libc implementations roll their own nonstandard mechanisms to achieve this, namely open_memstream, or fmemopen. Other implementations provide more generic functions to call users functions for various operations on the file, like funopen or fopencookie. Finally, some implementations support none of these nonstandard functions.

fmem tries in sequence the following implementations:

  • open_memstream.
  • fopencookie, with growing dynamic buffer.
  • funopen, with growing dynamic buffer.
  • WinAPI temporary memory-backed file.

When no other mean is available, fmem falls back to tmpfile().

fmem's People

Contributors

ambrou avatar jamievlin avatar joeloser avatar kreijstal avatar krzysztof-jusiak avatar maxirmx avatar phytolizer avatar snaipe avatar suthiro avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Forkers

jamievlin

fmem's Issues

Add MSVC to github actions

I'll accept pull requests that can add MSVC runner with github actions, I don't know how to do it. So feel free to try.

Potential memory leak if using fmem-tmpfile.c

I can see a potential memory leak, when using fmem_mem with tmpfile. I assume that

What happens is when

void* ptr = nullptr;
fmem_mem(&fmInstance, &ptr, &size_val);

free(ptr); // required for tmpfile, but causes error for winapi-tmpfile

I can see two solutions to this:

  1. In fmem-tmpfile.c, I don't see cv.impl->buf being assigned at all. If we assign cv.impl->buf to the newly malloc-ed memory, the destructor function can take care of this allocation
  2. Provide an explicit USING_TMPFILE macro or some way to detect if we are using tmpfile or not. This way, we can manually free the memory conditionally when using tmpfile.

Additionally, I also see another segfault point - in line 46, free(cv.impl->buf); is called without prior checking if buf is NULL or not. This can cause segmentation fault

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.