Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1241684
| From | Greg KH <gregkh@linuxfoundation.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] nvmem: core: make default user binary file root-access only |
| Date | 2015-10-07 19:00 +0200 |
| Message-ID | <qh0el-2gu-1@gated-at.bofh.it> (permalink) |
| References | <qgZV0-1TQ-15@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Wed, Oct 07, 2015 at 05:35:14PM +0100, Srinivas Kandagatla wrote:
> As required by many providers like at24/at25/mxs-ocotp/qfprom, which would
> want to allow root-only to read/write the nvmem content.
> So making the defaults to be root-only access which can prevent normal
> users from reading the nvmem data.
>
> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
> ---
> drivers/nvmem/core.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/nvmem/core.c b/drivers/nvmem/core.c
> index 6fd4e5a..4d2e476 100644
> --- a/drivers/nvmem/core.c
> +++ b/drivers/nvmem/core.c
> @@ -112,7 +112,7 @@ static ssize_t bin_attr_nvmem_write(struct file *filp, struct kobject *kobj,
> static struct bin_attribute bin_attr_rw_nvmem = {
> .attr = {
> .name = "nvmem",
> - .mode = S_IWUSR | S_IRUGO,
> + .mode = S_IWUSR | S_IRUSR,
> },
> .read = bin_attr_nvmem_read,
> .write = bin_attr_nvmem_write,
> @@ -136,7 +136,7 @@ static const struct attribute_group *nvmem_rw_dev_groups[] = {
> static struct bin_attribute bin_attr_ro_nvmem = {
> .attr = {
> .name = "nvmem",
> - .mode = S_IRUGO,
> + .mode = S_IRUSR,
> },
> .read = bin_attr_nvmem_read,
> };
How about using BIN_ATTR_RO() and friends instead, that way I _know_ you
got the permissions correct as it's impossible to get them wrong by
using those macros.
thanks,
greg k-h
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH] nvmem: core: make default user binary file root-access only Srinivas Kandagatla <srinivas.kandagatla@linaro.org> - 2015-10-07 18:40 +0200
Re: [PATCH] nvmem: core: make default user binary file root-access only Greg KH <gregkh@linuxfoundation.org> - 2015-10-07 19:00 +0200
Re: [PATCH] nvmem: core: make default user binary file root-access only Srinivas Kandagatla <srinivas.kandagatla@linaro.org> - 2015-10-07 19:10 +0200
Re: [PATCH] nvmem: core: make default user binary file root-access only Greg KH <gregkh@linuxfoundation.org> - 2015-10-07 19:20 +0200
Re: [PATCH] nvmem: core: make default user binary file root-access only Srinivas Kandagatla <srinivas.kandagatla@linaro.org> - 2015-10-07 19:30 +0200
Re: [PATCH] nvmem: core: make default user binary file root-access only Greg KH <gregkh@linuxfoundation.org> - 2015-10-07 19:40 +0200
csiph-web