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]
Message-ID: <638aed21e2cd4b1d9144a75e92a88f36@SFHDAG7NODE2.st.com>
Date:   Mon, 15 Jan 2018 20:44:26 +0000
From:   Loic PALLARDY <loic.pallardy@...com>
To:     Bjorn Andersson <bjorn.andersson@...aro.org>
CC:     "ohad@...ery.com" <ohad@...ery.com>,
        "linux-remoteproc@...r.kernel.org" <linux-remoteproc@...r.kernel.org>,
        "linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
        Arnaud POULIQUEN <arnaud.pouliquen@...com>,
        "benjamin.gaignard@...aro.org" <benjamin.gaignard@...aro.org>
Subject: RE: [PATCH v2 12/16] remoteproc: look-up memory-device for vring
 allocation



> -----Original Message-----
> From: Bjorn Andersson [mailto:bjorn.andersson@...aro.org]
> Sent: Thursday, December 14, 2017 2:44 AM
> To: Loic PALLARDY <loic.pallardy@...com>
> Cc: ohad@...ery.com; linux-remoteproc@...r.kernel.org; linux-
> kernel@...r.kernel.org; Arnaud POULIQUEN <arnaud.pouliquen@...com>;
> benjamin.gaignard@...aro.org
> Subject: Re: [PATCH v2 12/16] remoteproc: look-up memory-device for vring
> allocation
> 
> On Thu 30 Nov 08:46 PST 2017, Loic Pallardy wrote:
> >  	} else {
> > +		/* Find any carveout matching vring */
> > +		/* Try dedicated vdev j vring i pool. */
> > +		snprintf(name, sizeof(name), "vdev%dvring%d", rvdev-
> >index, i);
> > +		carveout = rproc_find_carveout_by_name(rproc, name);
> 
> This might match a carveout representing remapped device memory, which
> wouldn't have a memdev so the logic below would silently allocate from
> the parent dma_mem instead.
> 
> I don't think this is user friendly and would be better to just use the
> information in the already mapped carveout.
 
Yes best will be to have a "real" device. If over memory config, dma allocation will rely on dedicated memory pool, else on generic one.
> 
> > +
> > +		if (!carveout) {
> > +			/* Try dedicated vdev j vrings pool. */
> > +			snprintf(name, sizeof(name), "vdev%dvring", rvdev-
> >index);
> > +			carveout = rproc_find_carveout_by_name(rproc,
> name);
> > +		}
> > +
> > +		if (carveout && carveout->memdev)
> > +			memdev = &carveout->memdev->dev;
> > +
> > +		rvring->dev = memdev;
> > +
> >  		/*
> >  		 * Allocate non-cacheable memory for the vring. In the future
> >  		 * this call will also configure the IOMMU for us
> >  		 */
> > -		va = dma_alloc_coherent(dev->parent, size, &dma,
> GFP_KERNEL);
> > +		va = dma_alloc_coherent(memdev, size, &dma,
> GFP_KERNEL);
> 
> It's possible that you have fulfilled a resource_table carveout request
> with this memory, making the dynamic allocation likely to cause issues.
> 
Yes if memory carveout is not dedicated to vring, indeed some other allocations could have been done before...
In that case it means the region is not well sized and firmware and associated resources can't be supported

/Loic
> >  		if (!va) {
> >  			dev_err(dev->parent, "dma_alloc_coherent
> failed\n");
> >  			return -EINVAL;
> 
> Regards,
> Bjorn

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ