lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Thu, 18 Dec 2014 20:20:13 +0100
From:	Michal Nazarewicz <mina86@...a86.com>
To:	Gregory Fong <gregory.0xf0@...il.com>, linux-mm@...ck.org
Cc:	Gregory Fong <gregory.0xf0@...il.com>,
	Laura Abbott <lauraa@...eaurora.org>,
	Marek Szyprowski <m.szyprowski@...sung.com>,
	Andrew Morton <akpm@...ux-foundation.org>,
	Joonsoo Kim <iamjoonsoo.kim@....com>,
	"Aneesh Kumar K.V" <aneesh.kumar@...ux.vnet.ibm.com>,
	Weijie Yang <weijie.yang@...sung.com>,
	Laurent Pinchart <laurent.pinchart+renesas@...asonboard.com>,
	open list <linux-kernel@...r.kernel.org>
Subject: Re: [RFC PATCH] mm: cma: add functions for getting allocation info

On Wed, Dec 17 2014, Gregory Fong <gregory.0xf0@...il.com> wrote:
> These functions allow for retrieval of information on what is allocated from
> within a given CMA region.  It can be useful to know the number of distinct
> contiguous allocations and where in the region those allocations are located.
>
> Based on an initial version by Marc Carino <marc.ceeeee@...il.com> in a driver
> that used the CMA bitmap directly; this instead moves the logic into the core
> CMA API.
>
> Signed-off-by: Gregory Fong <gregory.0xf0@...il.com>
> ---
> This has been really useful for us to determine allocation information for a
> CMA region.  We have had a separate driver that might not be appropriate for
> upstream, but allowed using a user program to run CMA unit tests to verify that
> allocations end up where they we would expect.  This addition would allow for
> that without needing to expose the CMA bitmap.  Wanted to put this out there to
> see if anyone else would be interested, comments and suggestions welcome.

I don't like it at all.  For example, cma_get_alloc_info has O(n^2)
complexity if one wishes to get information about all allocation.
Furthermore, it's prone to race conditions.  If all you need this for is
debugging and testing, why not have user space parse output of dmesg?
With debug messages enabled, CMA prints ranges it allocated and testing
tool can figure out CMA's behaviour based on that.

>  include/linux/cma.h |  3 ++
>  mm/cma.c            | 91 +++++++++++++++++++++++++++++++++++++++++++++++++++++
>  2 files changed, 94 insertions(+)
>
> diff --git a/include/linux/cma.h b/include/linux/cma.h
> index a93438b..bc676e5 100644
> --- a/include/linux/cma.h
> +++ b/include/linux/cma.h
> @@ -25,6 +25,9 @@ extern int __init cma_declare_contiguous(phys_addr_t base,
>  extern int cma_init_reserved_mem(phys_addr_t base,
>  					phys_addr_t size, int order_per_bit,
>  					struct cma **res_cma);
> +extern int cma_get_alloc_info(struct cma *cma, int index, phys_addr_t *base,
> +		phys_addr_t *size);
>  extern struct page *cma_alloc(struct cma *cma, int count, unsigned int align);
> +extern int cma_get_alloc_count(struct cma *cma);
>  extern bool cma_release(struct cma *cma, struct page *pages, int count);
>  #endif
> diff --git a/mm/cma.c b/mm/cma.c
> index f891762..fc9a04a 100644
> --- a/mm/cma.c
> +++ b/mm/cma.c
> @@ -447,3 +447,94 @@ bool cma_release(struct cma *cma, struct page *pages, int count)
>  
>  	return true;
>  }
> +
> +enum cma_scan_type {
> +	GET_NUM_ALLOCS,
> +	GET_ALLOC_INFO,
> +};
> +
> +struct cma_scan_bitmap_res {
> +	int index;             /* index of allocation (input) */
> +	unsigned long offset;  /* offset into bitmap */
> +	unsigned long size;    /* size in bits */
> +	int num_allocs;        /* number of allocations */
> +};
> +
> +static int cma_scan_bitmap(struct cma *cma, enum cma_scan_type op,
> +		struct cma_scan_bitmap_res *res)
> +{
> +	unsigned long i = 0, pos_head = 0, pos_tail;
> +	int count = 0, head_found = 0;
> +
> +	if (!cma)
> +		return -EFAULT;
> +
> +	/* Count the number of contiguous chunks */
> +	do {
> +		if (head_found) {
> +			pos_tail = find_next_zero_bit(cma->bitmap, cma->count,
> +						      i);
> +
> +			if (op == GET_ALLOC_INFO && count == res->index) {
> +				res->offset = pos_head;
> +				res->size = pos_tail - pos_head;
> +				return 0;
> +			}
> +			count++;
> +
> +			head_found = 0;
> +			i = pos_tail + 1;
> +
> +		} else {
> +			pos_head = find_next_bit(cma->bitmap, cma->count, i);
> +			i = pos_head + 1;
> +			head_found = 1;
> +		}
> +	} while (i < cma->count);
> +
> +	if (op == GET_NUM_ALLOCS) {
> +		res->num_allocs = count;
> +		return 0;
> +	} else {
> +		return -EINVAL;
> +	}
> +}
> +
> +/**
> + * cma_get_alloc_info() - Get info on the requested allocation
> + * @cma:   Contiguous memory region for which the allocation is performed.
> + * @index: Index of the allocation to get info for
> + * @base:  Base address of the allocation
> + * @size:  Size of the allocation in bytes
> + *
> + * Return: 0 on success, negative on failure
> + */
> +int cma_get_alloc_info(struct cma *cma, int index, phys_addr_t *base,
> +		phys_addr_t *size)
> +{
> +	struct cma_scan_bitmap_res res;
> +	int ret;
> +
> +	res.index = index;
> +	ret = cma_scan_bitmap(cma, GET_ALLOC_INFO, &res);
> +	if (ret)
> +		return ret;
> +
> +	*base = cma_get_base(cma) + PFN_PHYS(res.offset << cma->order_per_bit);
> +	*size = PFN_PHYS(res.size << cma->order_per_bit);
> +	return 0;
> +}
> +
> +/**
> + * cma_get_alloc_count() - Get number of allocations
> + * @cma:   Contiguous memory region for which the allocation is performed.
> + *
> + * Return: number of allocations on success, negative on failure
> + */
> +int cma_get_alloc_count(struct cma *cma)
> +{
> +	struct cma_scan_bitmap_res res;
> +	int ret = cma_scan_bitmap(cma, GET_NUM_ALLOCS, &res);
> +
> +	return (ret < 0) ? ret : res.num_allocs;
> +}
> -- 
> 1.9.1
>

-- 
Best regards,                                         _     _
.o. | Liege of Serenely Enlightened Majesty of      o' \,=./ `o
..o | Computer Science,  Michał “mina86” Nazarewicz    (o o)
ooo +--<mpn@...gle.com>--<xmpp:mina86@...ber.org>--ooO--(_)--Ooo--
--
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

Powered by Openwall GNU/*/Linux Powered by OpenVZ