public inbox for smatch@vger.kernel.org
 help / color / mirror / Atom feed
From: Dan Carpenter <dan.carpenter@oracle.com>
To: Harshvardhan Jha <harshvardhan.jha@oracle.com>
Cc: smatch@vger.kernel.org
Subject: Re: [PATCH] check_do_while_loop_limit: implements checker for do_while loops
Date: Mon, 26 Jul 2021 16:50:31 +0300	[thread overview]
Message-ID: <20210726135031.GK25548@kadam> (raw)
In-Reply-To: <20210726134319.3380-1-harshvardhan.jha@oracle.com>

On Mon, Jul 26, 2021 at 07:13:19PM +0530, Harshvardhan Jha wrote:
> do{} while(n--) loops end at n=-1 but programmers sometimes assume that
> they end at n=0. This checker sends a warning in these scenarios.
> 
> Signed-off-by: Harshvardhan Jha <harshvardhan.jha@oracle.com>
> ---
>  check_do_while_loop_limit.c | 67 +++++++++++++++++++++++++++++++++++++
>  check_list.h                |  1 +
>  2 files changed, 68 insertions(+)
>  create mode 100644 check_do_while_loop_limit.c
> 
> diff --git a/check_do_while_loop_limit.c b/check_do_while_loop_limit.c
> new file mode 100644
> index 00000000..9a492725
> --- /dev/null
> +++ b/check_do_while_loop_limit.c
> @@ -0,0 +1,67 @@
> +/*
> + * Copyright (C) 2021 Harshvardhan Jha.
                         ^^^^^^^^^^^^^^^^
This should be copyright Oracle (Harshvardhan has been working for
Oracle as an intern this summer).

> + *
> + * This program is free software; you can redistribute it and/or
> + * modify it under the terms of the GNU General Public License
> + * as published by the Free Software Foundation; either version 2
> + * of the License, or (at your option) any later version.
> + *
> + * This program is distributed in the hope that it will be useful,
> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> + * GNU General Public License for more details.
> + *
> + * You should have received a copy of the GNU General Public License
> + * along with this program; if not, see http://www.gnu.org/copyleft/gpl.txt
> + */
> +
> +#include "smatch.h"
> +#include "smatch_slist.h"
> +#include "smatch_extra.h"
> +
> +static int my_id;
> +
> +STATE(post_minus);
> +
> +static bool is_post_minus(struct expression *expr)
> +{
> +	expr = strip_expr(expr);
> +	if (!expr)
> +		return false;
> +	if (expr->type != EXPR_POSTOP)
> +		return false;
> +	if (expr->op != SPECIAL_DECREMENT)
> +		return false;
> +	return true;
> +}
> +
> +static void match_post_loop(struct expression *expr)
> +{
> +	struct statement *stmt;
> +
> +	expr = strip_expr(expr);
> +	stmt = expr_get_parent_stmt(expr);
> +
> +	if (!stmt)
> +		return;
> +	if (stmt->type != STMT_ITERATOR)
> +		return;
> +	if (!is_post_minus(stmt->iterator_post_condition))
> +		return;
> +	if (is_post_minus(stmt->iterator_post_condition))
> +		set_state_expr(my_id, stmt->iterator_post_condition->left, &post_minus);
> +}
> +
> +static void match_condition(struct expression *expr)
> +{
> +	if (get_state_expr(my_id, expr) != &post_minus)
> +		return;
> +	sm_warning("do while ends on '%s == -1'",expr_to_str(expr));
                                                 ^
Add a space after the comma.

> +}

regards,
dan carpenter

  reply	other threads:[~2021-07-26 13:10 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-26 13:43 [PATCH] check_do_while_loop_limit: implements checker for do_while loops Harshvardhan Jha
2021-07-26 13:50 ` Dan Carpenter [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-07-26 13:54 Harshvardhan Jha
2021-07-27  9:39 ` Dan Carpenter

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210726135031.GK25548@kadam \
    --to=dan.carpenter@oracle.com \
    --cc=harshvardhan.jha@oracle.com \
    --cc=smatch@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox