Coder Social home page Coder Social logo

kmatheussen / das_watchdog Goto Github PK

View Code? Open in Web Editor NEW
11.0 11.0 1.0 168 KB

A general watchdog for the linux operating system that should run in the background at all times to ensure a realtime process won't hang the machine

Home Page: http://www.notam02.no/arkiv/src/

Makefile 2.72% Shell 6.21% C 91.07%

das_watchdog's People

Contributors

atsampson avatar kmatheussen avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

atsampson

das_watchdog's Issues

memory leak on realloc

Hi

Due to the original fix for CVE-2015-2831, bd20bb0 a memory leak and a possible "NULL+i" (write) dereference was afterwards.

Proposed patch:

--- a/das_watchdog.c
+++ b/das_watchdog.c
@@ -325,7 +325,14 @@ static char *get_pid_environ_val(pid_t p

     if (i >= temp_size) {
       temp_size *= 2;
-      temp = realloc(temp, temp_size);
+      char *new_temp = realloc(temp, temp_size);
+      if(new_temp==NULL){
+        fclose(fp);
+        free(temp);
+        return NULL;
+      }else{
+        temp=new_temp;
+      }
     }

     if(foundit==1 && (c=='\0' || c==EOF)){

https://sources.debian.net/data/main/d/das-watchdog/0.9.0-3.2/debian/patches/fix-memory-leak-on-realloc.patch

Regards

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.