Skip to content

Commit

Permalink
checksrc: fix SPACEBEFOREPAREN for conditions starting with "*"
Browse files Browse the repository at this point in the history
The open paren check wants to warn for spaces before open parenthesis
for if/while/for but also for any function call. In order to avoid
catching function pointer declarations, the logic allows a space if the
first character after the open parenthesis is an asterisk.

I also spotted what we did not include "switch" in the check but we should.

This check is a little lame, but we reduce this problem by not allowing
that space for if/while/for/switch.

Reported-by: Emanuele Torre
  • Loading branch information
bagder committed Apr 27, 2023
1 parent 4578ada commit 601508e
Show file tree
Hide file tree
Showing 14 changed files with 22 additions and 20 deletions.
2 changes: 1 addition & 1 deletion lib/cf-h1-proxy.c
Expand Up @@ -1096,7 +1096,7 @@ static CURLcode cf_h1_proxy_connect(struct Curl_cfilter *cf,

out:
*done = (result == CURLE_OK) && tunnel_is_established(cf->ctx);
if (*done) {
if(*done) {
cf->connected = TRUE;
tunnel_free(cf, data);
}
Expand Down
4 changes: 2 additions & 2 deletions lib/cfilters.c
Expand Up @@ -293,8 +293,8 @@ bool Curl_conn_cf_discard_sub(struct Curl_cfilter *cf,

/* remove from sub-chain and destroy */
DEBUGASSERT(cf);
while (*pprev) {
if (*pprev == cf) {
while(*pprev) {
if(*pprev == cf) {
*pprev = discard->next;
discard->next = NULL;
found = TRUE;
Expand Down
2 changes: 1 addition & 1 deletion lib/connect.c
Expand Up @@ -548,7 +548,7 @@ static CURLcode baller_connect(struct Curl_cfilter *cf,
baller->result = Curl_conn_cf_connect(baller->cf, data, 0, connected);

if(!baller->result) {
if (*connected) {
if(*connected) {
baller->connected = TRUE;
baller->is_done = TRUE;
}
Expand Down
2 changes: 1 addition & 1 deletion lib/ftp.c
Expand Up @@ -4180,7 +4180,7 @@ CURLcode ftp_parse_url_path(struct Curl_easy *data)
size_t dirAlloc = 0;
const char *str = rawPath;
for(; *str != 0; ++str)
if (*str == '/')
if(*str == '/')
++dirAlloc;

if(dirAlloc) {
Expand Down
2 changes: 1 addition & 1 deletion lib/hsts.c
Expand Up @@ -204,7 +204,7 @@ CURLcode Curl_hsts_parse(struct hsts *h, const char *hostname,
p++;
if(*p == ';')
p++;
} while (*p);
} while(*p);

if(!gotma)
/* max-age is mandatory */
Expand Down
2 changes: 1 addition & 1 deletion lib/http_aws_sigv4.c
Expand Up @@ -192,7 +192,7 @@ static CURLcode make_headers(struct Curl_easy *data,
}


if (*content_sha256_header) {
if(*content_sha256_header) {
tmp_head = curl_slist_append(head, content_sha256_header);
if(!tmp_head)
goto fail;
Expand Down
2 changes: 1 addition & 1 deletion lib/mprintf.c
Expand Up @@ -400,7 +400,7 @@ static int dprintf_Pass1(const char *format, struct va_stack *vto,
/* out of allowed range */
return 1;

switch (*fmt) {
switch(*fmt) {
case 'S':
flags |= FLAGS_ALT;
/* FALLTHROUGH */
Expand Down
2 changes: 1 addition & 1 deletion lib/urlapi.c
Expand Up @@ -678,7 +678,7 @@ static int ipv4_normalize(struct dynbuf *host)
parts[n] = l;
c = endp;

switch (*c) {
switch(*c) {
case '.' :
if(n == 3)
return HOST_BAD;
Expand Down
2 changes: 1 addition & 1 deletion lib/vtls/bearssl.c
Expand Up @@ -897,7 +897,7 @@ static ssize_t bearssl_send(struct Curl_cfilter *cf, struct Curl_easy *data,

for(;;) {
*err = bearssl_run_until(cf, data, BR_SSL_SENDAPP);
if (*err != CURLE_OK)
if(*err)
return -1;
app = br_ssl_engine_sendapp_buf(&backend->ctx.eng, &applen);
if(!app) {
Expand Down
2 changes: 1 addition & 1 deletion lib/vtls/sectransp.c
Expand Up @@ -1554,7 +1554,7 @@ static CURLcode sectransp_set_selected_ciphers(struct Curl_easy *data,
}
/* Find last position of a cipher in the ciphers string */
cipher_end = cipher_start;
while (*cipher_end != '\0' && !is_separator(*cipher_end)) {
while(*cipher_end != '\0' && !is_separator(*cipher_end)) {
++cipher_end;
}

Expand Down
12 changes: 7 additions & 5 deletions scripts/checksrc.pl
Expand Up @@ -517,7 +517,8 @@ sub scanfile {

my $nostr = nostrings($l);
# check spaces after for/if/while/function call
if($nostr =~ /^(.*)(for|if|while| ([a-zA-Z0-9_]+)) \((.)/) {
if($nostr =~ /^(.*)(for|if|while|switch| ([a-zA-Z0-9_]+)) \((.)/) {
my ($leading, $word, $extra, $first)=($1,$2,$3,$4);
if($1 =~ / *\#/) {
# this is a #if, treat it differently
}
Expand All @@ -527,15 +528,16 @@ sub scanfile {
elsif(defined $3 && $3 eq "case") {
# case must have a space
}
elsif($4 eq "*") {
# (* beginning makes the space OK!
elsif(($first eq "*") && ($word !~ /(for|if|while|switch)/)) {
# A "(*" beginning makes the space OK because it wants to
# allow funcion pointer declared
}
elsif($1 =~ / *typedef/) {
# typedefs can use space-paren
}
else {
checkwarn("SPACEBEFOREPAREN", $line, length($1)+length($2), $file, $l,
"$2 with space");
checkwarn("SPACEBEFOREPAREN", $line, length($leading)+length($word), $file, $l,
"$word with space");
}
}
# check for '== NULL' in if/while conditions but not if the thing on
Expand Down
2 changes: 1 addition & 1 deletion src/tool_paramhlp.c
Expand Up @@ -369,7 +369,7 @@ ParameterError proto2num(struct OperationConfig *config,

/* Process token modifiers */
while(!ISALNUM(*token)) { /* may be NULL if token is all modifiers */
switch (*token++) {
switch(*token++) {
case '=':
action = set;
break;
Expand Down
4 changes: 2 additions & 2 deletions src/tool_urlglob.c
Expand Up @@ -100,7 +100,7 @@ static CURLcode glob_set(struct URLGlob *glob, char **patternp,
pat->globindex = globindex;

while(!done) {
switch (*pattern) {
switch(*pattern) {
case '\0': /* URL ended while set was still open */
return GLOBERROR("unmatched brace", opos, CURLE_URL_MALFORMAT);

Expand Down Expand Up @@ -411,7 +411,7 @@ static CURLcode glob_parse(struct URLGlob *glob, char *pattern,
res = glob_fixed(glob, glob->glob_buffer, sublen);
}
else {
switch (*pattern) {
switch(*pattern) {
case '\0': /* done */
break;

Expand Down
2 changes: 1 addition & 1 deletion src/tool_writeout_json.c
Expand Up @@ -61,7 +61,7 @@ void jsonWriteString(FILE *stream, const char *in, bool lowercase)
fputs("\\t", stream);
break;
default:
if (*i < 32) {
if(*i < 32) {
fprintf(stream, "u%04x", *i);
}
else {
Expand Down

0 comments on commit 601508e

Please sign in to comment.