Tagged Questions
splint ("secure programming lint") is a lint implementation, i.e. a tool for statically checking C programs for security vulnerabilities and coding mistakes. With minimal effort, Splint can be used as a better lint. If additional effort is invested adding annotations to programs, Splint can perform stronger checking than can be done by any standard lint.
6
votes
1answer
59 views
Odd Behavior From Splint Bounds Checking
Any splint experts out there?? I'm trying to use splint to statically analyze a large project I have in C. I'm seeing an excess number of bounds checking errors that are obviously not bounds errors. I ...
4
votes
2answers
118 views
splint vs gcc: are external static code analysis tools worth the effort for C codebases?
I'm working on a fairly complex project, and as an added complication it's an in-kernel Linux module. Running a linting tool like splint on such a codebase is certainly not impossible [1], but trivial ...
3
votes
3answers
267 views
Splint warning “Statement has no effect” due to function pointer
I'm trying to check a C program with Splint (in strict mode). I annotated the source code with semantic comments to help Splint understand my program. Everything was fine, but I just can't get rid of ...
3
votes
2answers
557 views
splint and test coverage analysis?
I'm looking for a static analysis tool with the maturity of splint that also produces test coverage analysis of the code. For instance, all non-static functions in libfoo.c should be present in ...
3
votes
4answers
901 views
How can I make splint ignore where I declare my variables?
Do you know how can I make splint ignore where I declare my variables?
I know that the old school c tells you to declare variables right at the
beginning in every function,
but since I am a bad ...
2
votes
1answer
194 views
splint debugging parse error
This is my first time using splint (from Ubuntu repositories) and I immediately got hit by a WTF. The error message:
nightcracker@nightcracker-pc:~/c/brainfuck$ splint brainfuck.c
Splint 3.1.2 --- 03 ...
2
votes
2answers
124 views
What is the meaning of this splint warning and what might I be doing wrong?
This is the line of code:
bool cpfs_utimens(struct Cpfs *, char const *path, struct timespec const[2]);
Running splint 3.1.2 generates this warning:
cpfs.h:21:74: Function parameter times declared ...
2
votes
2answers
191 views
splint whole program with a complex build process
I want to run splints whole program analysis on my system. However the system is quite large and different parts are compiled with different compiler defines and include paths. I can see how to convey ...
2
votes
3answers
200 views
Removing null warnings in Splint
I have been trying out Splint with a C program I recently wrote and trying to understand and remove the warnings it gives. One I understand but can't understand how to remove it comes from the ...
2
votes
2answers
379 views
Is there a way to get Splint or a similar static checker to work with Linux Kernel modules?
I compiled ( no warnings ) the hello-5.c example from "The Linux Kernel Module Programming Guide" and when I tried to insmod it, I received the following error:
insmod: error inserting 'hello-5.ko': ...
2
votes
6answers
309 views
Why does Splint (the C code checker) give an error when comparing a float to an int?
Both are mathematical values, however the float does have more precision. Is that the only reason for the error - the difference in precision? Or is there another potential (and more serious) problem?
...
1
vote
0answers
25 views
What is “Fresh Storage” in Splint?
I have searched the Splint documentation for "fresh storage", and have found mention of it, but no formal definition. The other modifiers, like null or only, I understand and am putting to use. I'm ...
1
vote
1answer
130 views
How do I annotate BoehmGC-collected code for Splint?
Splint does a good job tracking down memory leaks in C code. Every malloc() should have a matching free(). But BoehmGC-collected code uses GC_MALLOC() with no matching GC_FREE(). This makes Splint go ...
1
vote
2answers
154 views
PTHREAD_COND_INITIALIZER vs Splint
I have the following code
static pthread_mutex_t watchdogMutex = PTHREAD_MUTEX_INITIALIZER;
static pthread_cond_t watchdogCond = PTHREAD_COND_INITIALIZER;
and I get the following errors/warnings ...
1
vote
5answers
430 views
Splint Code Analyzers for C
We are planning to use Splint as code analyzer for our C code base. But we never tried Splint tool before so we want your input on it's benifts, pros and cons.
1
vote
2answers
242 views
splint failing on code that includes complex.h
I'm trying to run splint on a C source that includes complex.h from the standard C library to support complex arithmetic.
Unfortunately, splint fails with the following error.
Splint 3.1.2 --- ...
1
vote
2answers
722 views
sample rc file for splint
I am using splint for code checking, and it is throwing out a huge number of warnings. Some of them, I guess can be ignored. I am in the process of creating the .splintrc by trial and error.
My ...
0
votes
1answer
25 views
/usr/include/arpa/inet.h:35:27: Parse Error in Splint
While checking my code with splint, I got one problem. At first i got an error on POSIXLIB. So I run splint with +posixlib as follows,
splint mss_client_main.c +posixlib -I ../include/
But i got ...
0
votes
0answers
5 views
splint aliasing analysis
Splint is a static analyzer for c.I know little about how does it works.I wonder if it does aliasing analysis before detecting defects.If it does,which source file contains the code.
0
votes
2answers
55 views
How to include header files while checking a source code with splint tool?
I created 2 C program source code files and one header file which just contains a function declaration.
mypattern.h
#include<stdio.h>
void pattern_check(char *,int,char *);
pattern_main.c
...
0
votes
1answer
38 views
Why doesn't splint parse curl/curlbuild.h?
I wrote a fornol.c program that uses the curl library, and therefore includes the following:
#include <curl/curl.h>
I want to run splint on my program, but this is the error I get:
$ splint ...
0
votes
2answers
258 views
Splint barfs on __thread, which is part of C99
Running splint
matt@stanley:~/cpfs$ splint -paramuse +gnuextensions cpfs.c
Halts on this line:
__thread int cpfs_errno;
With a parse error:
cpfs.c:127:13: Parse Error: Non-function ...
0
votes
1answer
356 views
How to resolve parse error in Splint
Splint is not continuing it's checking after finding parse errors. I've tried with +trytorecover option also but no change.
Please let me know on how to use +trytorecover to make Splint attempt to ...
0
votes
4answers
507 views
How does splint know my function isn't used in another file?
Splint gives me the following warning:
encrypt.c:4:8: Function exported but not used outside encrypt: flip
A declaration is exported, but not used outside this module. Declaration can
use static ...
0
votes
4answers
2k views
What is the differences about struct in C99 to ANSI-C?
This code doesn't appear to be correct in ANSI-C, but ok in C99 :
struct a { int x; int y; } z;
What are the differences about struct in C99 and ANSI-C ?
Edit: I forgot the "a", my bad. This code ...
0
votes
3answers
417 views
Addressing splint warnings about functions “not used” while they are passed as parameters
On a program of me, the splint checker warns:
expat-test.c:23:1: Function exported but not used outside expat-test: start
A declaration is exported, but not used outside this module. Declaration ...