All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] scatterlist: Comment on pages for sg_set_page()
@ 2019-10-01 18:32 Alan Mikhak
  2019-10-02 14:27 ` Jason Gunthorpe
  0 siblings, 1 reply; 3+ messages in thread
From: Alan Mikhak @ 2019-10-01 18:32 UTC (permalink / raw)
  To: linux-kernel, martin.petersen, alexios.zavras, ming.lei, gregkh,
	tglx, jgg, christophe.leroy, thellstrom, galpress, palmer,
	paul.walmsley
  Cc: Alan Mikhak

From: Alan Mikhak <alan.mikhak@sifive.com>

Update the description of sg_set_page() to communicate current
requirements for the page pointer parameter.

Signed-off-by: Alan Mikhak <alan.mikhak@sifive.com>
---
 include/linux/scatterlist.h | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/include/linux/scatterlist.h b/include/linux/scatterlist.h
index 6eec50fb36c8..6dda865893aa 100644
--- a/include/linux/scatterlist.h
+++ b/include/linux/scatterlist.h
@@ -112,6 +112,12 @@ static inline void sg_assign_page(struct scatterlist *sg, struct page *page)
  *   of the page pointer. See sg_page() for looking up the page belonging
  *   to an sg entry.
  *
+ *   Scatterlist currently expects the page parameter to be a pointer to
+ *   a page that is backed by a page struct.
+ *
+ *   Page pointers derived from addresses obtained from ioremap() are
+ *   currently not supported since they require use of iomem safe memcpy.
+ *
  **/
 static inline void sg_set_page(struct scatterlist *sg, struct page *page,
 			       unsigned int len, unsigned int offset)
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] scatterlist: Comment on pages for sg_set_page()
  2019-10-01 18:32 [PATCH] scatterlist: Comment on pages for sg_set_page() Alan Mikhak
@ 2019-10-02 14:27 ` Jason Gunthorpe
  2019-10-02 16:18   ` Alan Mikhak
  0 siblings, 1 reply; 3+ messages in thread
From: Jason Gunthorpe @ 2019-10-02 14:27 UTC (permalink / raw)
  To: Alan Mikhak
  Cc: linux-kernel, martin.petersen, alexios.zavras, ming.lei, gregkh,
	tglx, christophe.leroy, thellstrom, galpress, palmer,
	paul.walmsley

On Tue, Oct 01, 2019 at 11:32:50AM -0700, Alan Mikhak wrote:
> From: Alan Mikhak <alan.mikhak@sifive.com>
> 
> Update the description of sg_set_page() to communicate current
> requirements for the page pointer parameter.
> 
> Signed-off-by: Alan Mikhak <alan.mikhak@sifive.com>
>  include/linux/scatterlist.h | 6 ++++++
>  1 file changed, 6 insertions(+)
> 
> diff --git a/include/linux/scatterlist.h b/include/linux/scatterlist.h
> index 6eec50fb36c8..6dda865893aa 100644
> +++ b/include/linux/scatterlist.h
> @@ -112,6 +112,12 @@ static inline void sg_assign_page(struct scatterlist *sg, struct page *page)
>   *   of the page pointer. See sg_page() for looking up the page belonging
>   *   to an sg entry.
>   *
> + *   Scatterlist currently expects the page parameter to be a pointer to
> + *   a page that is backed by a page struct.
> + *
> + *   Page pointers derived from addresses obtained from ioremap() are
> + *   currently not supported since they require use of iomem safe memcpy.
> + *
>   **/
>  static inline void sg_set_page(struct scatterlist *sg, struct page *page,
>  			       unsigned int len, unsigned int offset)

It seems a bit weird to have a comment explaining that 'struct page
*page' must actually be a valid pointer. Of course it must.

Computing a 'struct page *' to something that doesn't actually have a
struct page is simply a bug in whoever did that.

Code should never be interchanging ioremap results with the struct
page* world.

Jason

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] scatterlist: Comment on pages for sg_set_page()
  2019-10-02 14:27 ` Jason Gunthorpe
@ 2019-10-02 16:18   ` Alan Mikhak
  0 siblings, 0 replies; 3+ messages in thread
From: Alan Mikhak @ 2019-10-02 16:18 UTC (permalink / raw)
  To: Jason Gunthorpe
  Cc: linux-kernel, martin.petersen, alexios.zavras, ming.lei, gregkh,
	tglx, christophe.leroy, thellstrom, galpress, Palmer Dabbelt,
	Paul Walmsley

On Wed, Oct 2, 2019 at 7:27 AM Jason Gunthorpe <jgg@ziepe.ca> wrote:
>
> On Tue, Oct 01, 2019 at 11:32:50AM -0700, Alan Mikhak wrote:
> > From: Alan Mikhak <alan.mikhak@sifive.com>
> >
> > Update the description of sg_set_page() to communicate current
> > requirements for the page pointer parameter.
> >
> > Signed-off-by: Alan Mikhak <alan.mikhak@sifive.com>
> >  include/linux/scatterlist.h | 6 ++++++
> >  1 file changed, 6 insertions(+)
> >
> > diff --git a/include/linux/scatterlist.h b/include/linux/scatterlist.h
> > index 6eec50fb36c8..6dda865893aa 100644
> > +++ b/include/linux/scatterlist.h
> > @@ -112,6 +112,12 @@ static inline void sg_assign_page(struct scatterlist *sg, struct page *page)
> >   *   of the page pointer. See sg_page() for looking up the page belonging
> >   *   to an sg entry.
> >   *
> > + *   Scatterlist currently expects the page parameter to be a pointer to
> > + *   a page that is backed by a page struct.
> > + *
> > + *   Page pointers derived from addresses obtained from ioremap() are
> > + *   currently not supported since they require use of iomem safe memcpy.
> > + *
> >   **/
> >  static inline void sg_set_page(struct scatterlist *sg, struct page *page,
> >                              unsigned int len, unsigned int offset)
>
> It seems a bit weird to have a comment explaining that 'struct page
> *page' must actually be a valid pointer. Of course it must.
>
> Computing a 'struct page *' to something that doesn't actually have a
> struct page is simply a bug in whoever did that.
>
> Code should never be interchanging ioremap results with the struct
> page* world.
>
> Jason

Agreed. Should scatterlist API sg_set_page() check the page pointer to
prevent such usage that could crash the system? Is it still reasonable
to at least tell the programmer what is not allowed by adding a
comment in the description?

Alan

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-10-02 16:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-01 18:32 [PATCH] scatterlist: Comment on pages for sg_set_page() Alan Mikhak
2019-10-02 14:27 ` Jason Gunthorpe
2019-10-02 16:18   ` Alan Mikhak

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.