Re: [PATCH 6/9] x86/intel_rdt: Add support for cache bit mask management

From: Peter Zijlstra
Date: Tue Jul 28 2015 - 12:37:53 EST


On Wed, Jul 01, 2015 at 03:21:07PM -0700, Vikas Shivappa wrote:
> +static int cbm_validate(struct intel_rdt *ir, unsigned long cbmvalue)
> +{
> + struct cgroup_subsys_state *css;
> + struct intel_rdt *par, *c;
> + unsigned long *cbm_tmp;
> + int err = 0;
> +
> + if (!cbm_is_contiguous(cbmvalue)) {
> + pr_err("bitmask should have >= 1 bit and be contiguous\n");
> + err = -EINVAL;
> + goto out_err;
> + }

> +static struct cftype rdt_files[] = {
> + {
> + .name = "l3_cache_mask",
> + .seq_show = intel_cache_alloc_cbm_read,
> + .write_u64 = intel_cache_alloc_cbm_write,
> + .mode = 0666,

So this file is world writable? How is the above pr_err() not a DoS ?

> + },
> + { } /* terminate */
> +};
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/