linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Dan Carpenter <dan.carpenter@oracle.com>
To: mgorman@techsingularity.net
Cc: linux-mm@kvack.org
Subject: [bug report] mm, compaction: capture a page under direct compaction
Date: Mon, 24 Feb 2020 09:35:58 +0300	[thread overview]
Message-ID: <20200224062949.mhyi2ntdiq4vbptm@kili.mountain> (raw)

Hello Mel Gorman,

This is a semi-automatic email about new static checker warnings.

The patch 5e1f0f098b46: "mm, compaction: capture a page under direct 
compaction" from Mar 5, 2019, leads to the following Smatch complaint:

    mm/compaction.c:2321 compact_zone_order()
     error: we previously assumed 'capture' could be null (see line 2313)

mm/compaction.c
  2288  static enum compact_result compact_zone_order(struct zone *zone, int order,
  2289                  gfp_t gfp_mask, enum compact_priority prio,
  2290                  unsigned int alloc_flags, int classzone_idx,
  2291                  struct page **capture)
                                      ^^^^^^^
  2292  {
  2293          enum compact_result ret;
  2294          struct compact_control cc = {
  2295                  .order = order,
  2296                  .search_order = order,
  2297                  .gfp_mask = gfp_mask,
  2298                  .zone = zone,
  2299                  .mode = (prio == COMPACT_PRIO_ASYNC) ?
  2300                                          MIGRATE_ASYNC : MIGRATE_SYNC_LIGHT,
  2301                  .alloc_flags = alloc_flags,
  2302                  .classzone_idx = classzone_idx,
  2303                  .direct_compaction = true,
  2304                  .whole_zone = (prio == MIN_COMPACT_PRIORITY),
  2305                  .ignore_skip_hint = (prio == MIN_COMPACT_PRIORITY),
  2306                  .ignore_block_suitable = (prio == MIN_COMPACT_PRIORITY)
  2307          };
  2308          struct capture_control capc = {
  2309                  .cc = &cc,
  2310                  .page = NULL,
  2311          };
  2312	
  2313		if (capture)
                    ^^^^^^^
Check for NULL

  2314			current->capture_control = &capc;
  2315	
  2316		ret = compact_zone(&cc, &capc);
  2317	
  2318		VM_BUG_ON(!list_empty(&cc.freepages));
  2319		VM_BUG_ON(!list_empty(&cc.migratepages));
  2320	
  2321		*capture = capc.page;
                ^^^^^^^^
Unchecked dereference.

  2322		current->capture_control = NULL;
  2323	

regards,
dan carpenter


             reply	other threads:[~2020-02-24  6:36 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-24  6:35 Dan Carpenter [this message]
2020-02-26 17:04 ` [bug report] mm, compaction: capture a page under direct compaction Vlastimil Babka
2020-02-27  1:56   ` Andrew Morton
2020-02-27  7:45     ` Vlastimil Babka
2020-02-28 13:47       ` Mel Gorman

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=20200224062949.mhyi2ntdiq4vbptm@kili.mountain \
    --to=dan.carpenter@oracle.com \
    --cc=linux-mm@kvack.org \
    --cc=mgorman@techsingularity.net \
    /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;
as well as URLs for NNTP newsgroup(s).