Hi Boris, On 19/12/2018 14:42, Borislav Petkov wrote: > On Fri, Dec 14, 2018 at 01:56:16PM +0000, James Morse wrote: >> /me digs a bit, >> >> ghes_estatus_pool_init() allocates memory from hest_ghes_dev_register(). >> Its caller is behind a 'if (!ghes_disable)' in acpi_hest_init(), and is after >> another 2 calls to apei_hest_parse(). >> >> If ghes_disable is set, we don't call this thing. >> If hest_disable is set, acpi_hest_init() exits early. >> If we don't have a HEST table, acpi_hest_init() exits early. >> >> ... if the HEST table doesn't have any GHES entries, hest_ghes_dev_register() is >> called with ghes_count==0, and does nothing useful. (kmalloc_alloc_array(0,...) >> great!) But we do call ghes_estatus_pool_init(). >> >> I think a check that ghes_count is non-zero before calling >> hest_ghes_dev_register() is the cleanest way to avoid this. > > Grrr, what an effing mess that code is! There's hest_disable *and* > ghes_disable. Do we really need them both? ghes_disable lets you ignore the firmware-first notifications, but still 'use' the other error sources: drivers/pci/pcie/aer.c picks out the three AER types, and uses apei_hest_parse() to know if firmware is controlling AER, even if ghes_disable is set. x86's arch_apei_enable_cmcff() looks like it disables MCE to get firmware to handle them. hest_disable would stop this, but instead ghes_disable keeps that, and stops the NOTIFY_NMI being registered. > With my simplifier hat on I wanna say, we should have a single switch - > apei_disable - and kill those other two. What a damn mess that is. (do you consider cmdline arguments as ABI, or hard to justify and hard to remove?) I don't think its broken enough to justify ripping them out. A user of ghes_disable would be someone with broken firmware-first handling of AER. They need to know firmware is changing the register values behind their back (so need to parse the HEST), but want to ignore the junk notifications. It doesn't sound like an unlikely scenario. >> I wanted the estatus pool to be initialised before creating the platform devices >> in case the order of these things is changed in the future and they get probed >> immediately, before the pool is initialised. > > Hmmm. > > Actually, I meant flipping those two calls: > > rc = ghes_estatus_pool_init(ghes_count); > if (rc) > goto out; > > rc = apei_hest_parse(hest_parse_ghes, &ghes_arr); > if (rc) > goto err; > > to > > rc = apei_hest_parse(hest_parse_ghes, &ghes_arr); > if (rc) > goto err; > > rc = ghes_estatus_pool_init(ghes_count); > if (rc) > goto out; > > so as not to alloc the pool unnecessarily if the parsing fails. > > Also, AFAICT, the order you have them in now might be a problem anyway > if > > apei_hest_parse(hest_parse_ghes, &ghes_arr); > > fails because then you goto err and and that pool leaks, right? Right, yes. I've been ignoring errors like this on the probe path as it implies you've got busted ACPI tables, or so little memory you're never going to make it to user-space. I was more worried about ghes_probe() trying to use the pool memory before its been allocated. I doesn't seem right to register the device if the driver wouldn't work yet. But one is an subsys_initcall(), the drivers is device_initcall(), which is obvious enough. Fixed. Thanks, James