[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <87d1vk2saq.fsf@rustcorp.com.au>
Date: Mon, 09 Nov 2015 06:10:45 +1030
From: Rusty Russell <rusty@...tcorp.com.au>
To: Josh Poimboeuf <jpoimboe@...hat.com>,
Seth Jennings <sjenning@...hat.com>,
Jiri Kosina <jikos@...nel.org>,
Vojtech Pavlik <vojtech@...e.com>
Cc: linux-kernel@...r.kernel.org, live-patching@...r.kernel.org,
"Cyril B." <cbay@...aysdata.com>, Miroslav Benes <mbenes@...e.cz>
Subject: Re: [PATCH v2 2/3] module: Use the same logic for setting and unsetting RO/NX
Josh Poimboeuf <jpoimboe@...hat.com> writes:
> When setting a module's RO and NX permissions, set_section_ro_nx() is
> used, but when clearing them, unset_module_{init,core}_ro_nx() are used.
> The unset functions don't have the same checks the set function has for
> partial page protections. It's probably harmless, but it's still
> confusingly asymmetrical.
>
> Instead, use the same logic to do both. Also add some new
> set_module_{init,core}_ro_nx() helper functions for more symmetry with
> the unset functions.
Yes, this seems sensible.
One nit to pick:
> + unsigned long total_size,
> + int (*set_ro)(unsigned long start, int num_pages),
> + int (*set_nx)(unsigned long start, int num_pages))
...
> + set_section_ro_nx(mod->module_core, mod->core_text_size,
> + mod->core_ro_size, mod->core_size,
> + set_memory_rw, set_memory_x);
set_ro == set_memory_rw here. That's just confusing.
I think we have to avoid the word "set" in the function parameters
since it may unset instead.
Suggest "alter_ro" or "frob_ro" instead?
Thanks,
Rusty.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists