Re: [PATCH v2] linux-user: Add most IFTUN ioctls

2020-09-28 Thread Shu-Chun Weng
On Sat, Sep 26, 2020 at 9:44 AM Laurent Vivier wrote: > Le 24/07/2020 à 01:10, Shu-Chun Weng a écrit : > > The three options handling `struct sock_fprog` (TUNATTACHFILTER, > > TUNDETACHFILTER, and TUNGETFILTER) are not implemented. Linux kernel > > keeps a user space pointer in them which we cann

Re: [PATCH v2] linux-user: Add most IFTUN ioctls

2020-09-26 Thread Laurent Vivier
Le 24/07/2020 à 01:10, Shu-Chun Weng a écrit : > The three options handling `struct sock_fprog` (TUNATTACHFILTER, > TUNDETACHFILTER, and TUNGETFILTER) are not implemented. Linux kernel > keeps a user space pointer in them which we cannot correctly handle. > > Signed-off-by: Josh Kunz > Signed-off

Re: [PATCH v2] linux-user: Add most IFTUN ioctls

2020-09-17 Thread Shu-Chun Weng
Ping. On Wed, Aug 5, 2020 at 4:22 PM Shu-Chun Weng wrote: > Ping: https://patchew.org/QEMU/20200723231020.769893-1-...@google.com/ > > On Thu, Jul 23, 2020 at 4:10 PM Shu-Chun Weng wrote: > >> The three options handling `struct sock_fprog` (TUNATTACHFILTER, >> TUNDETACHFILTER, and TUNGETFILTER)

Re: [PATCH v2] linux-user: Add most IFTUN ioctls

2020-08-05 Thread Shu-Chun Weng
Ping: https://patchew.org/QEMU/20200723231020.769893-1-...@google.com/ On Thu, Jul 23, 2020 at 4:10 PM Shu-Chun Weng wrote: > The three options handling `struct sock_fprog` (TUNATTACHFILTER, > TUNDETACHFILTER, and TUNGETFILTER) are not implemented. Linux kernel > keeps a user space pointer in th

[PATCH v2] linux-user: Add most IFTUN ioctls

2020-07-23 Thread Shu-Chun Weng
The three options handling `struct sock_fprog` (TUNATTACHFILTER, TUNDETACHFILTER, and TUNGETFILTER) are not implemented. Linux kernel keeps a user space pointer in them which we cannot correctly handle. Signed-off-by: Josh Kunz Signed-off-by: Shu-Chun Weng --- v2: Title changed from "linux-use