linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* PROBLEM: fs: hugetlbfs: boot failure due to specs sentinel missing on linux-next
@ 2019-02-04 13:54 Abel Vesa
  2019-02-04 14:04 ` David Howells
  0 siblings, 1 reply; 2+ messages in thread
From: Abel Vesa @ 2019-02-04 13:54 UTC (permalink / raw)
  To: David Howells; +Cc: viro, linux-fsdevel, linux-kernel, dl-linux-imx

Hi David,

I found this this morning trying to boot up i.MX8MQ platform.
It's totally unrelated though.

Your commit:
2284cf59cbcec "hugetlbfs: Convert to fs_context"
doesn't put a sentinel at the end of hugetlb_param_specs.

Then, the your commit:
f512b838c1048 "vfs: Add configuration parser helpers"
adds the fs_validate_description where you check for sentinel
but since the hugetlb_param_specs doesn't have it it freezes
inside the following printf:

+                       /* Check that the type is in range */
+                       if (t == __fs_param_wasnt_defined ||
+                           t >= nr__fs_parameter_type) {
+                               pr_err("VALIDATE %s: PARAM[%s] Bad type %u\n",
+                                      name, param->name, t);
+                               good = false;
+                       } else if (t == fs_param_is_enum) {
+                               enums = true;
+                       }

IMHO, what happens here is the missing sentinel allows your checking
here to go out of bounds and then the param->name is whatever garbage
happens to be at the end of that array and that makes the printf to
freeze.

This isn't something I looked at really close, so I might be wrong.

I wasn't able to find the mail with the patch to reply to that
so I had to write this as a separate mail.

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: PROBLEM: fs: hugetlbfs: boot failure due to specs sentinel missing on linux-next
  2019-02-04 13:54 PROBLEM: fs: hugetlbfs: boot failure due to specs sentinel missing on linux-next Abel Vesa
@ 2019-02-04 14:04 ` David Howells
  0 siblings, 0 replies; 2+ messages in thread
From: David Howells @ 2019-02-04 14:04 UTC (permalink / raw)
  To: Abel Vesa; +Cc: dhowells, viro, linux-fsdevel, linux-kernel, dl-linux-imx

Abel Vesa <abel.vesa@nxp.com> wrote:

> Your commit:
> 2284cf59cbcec "hugetlbfs: Convert to fs_context"
> doesn't put a sentinel at the end of hugetlb_param_specs.

Yes, I have a fix queued for Al to pick up on my mount-api-viro branch (2nd
from bottom, "Fix hugetlbfs").

https://git.kernel.org/pub/scm/linux/kernel/git/dhowells/linux-fs.git/commit/?h=container&id=e0e93001d88ab48b40923d926b2cc5e1534407f0

David

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-02-04 14:04 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-04 13:54 PROBLEM: fs: hugetlbfs: boot failure due to specs sentinel missing on linux-next Abel Vesa
2019-02-04 14:04 ` David Howells

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).