On Mon, Feb 06, 2023 at 08:28:38PM +0300, Vitaliy Makkoveev wrote:
> On Mon, Feb 06, 2023 at 11:01:00AM +0100, Claudio Jeker wrote:
> > On Sat, Feb 04, 2023 at 01:24:58AM +0300, Vitaliy Makkoveev wrote:
> > > Hi,
> > > 
> > > kevent(2) system call is ulocked more than year ago. Since select(2)
> > > and pselect(2) are kqueue(2)/kevent(2) wrappers, it makes sense to
> > > unlock them too. select(2) does the temporary kernel event queue
> > > initialization for this call only and does queue scan with events
> > > conversion between kevent(2) and select(2) data formats.
> > > 
> > > pselect(2) is the same, but it also sets provided signal mask. sigset_t
> > > is unsigned int and only current thread does `p_sigmask' and `p_oldmask'
> > > modification, so dosigsuspend() call outside kernel lock is safe.
> > > claudio@, is this true? If so, I want to mark `p_sigmask' and
> > > `p_oldmask' as atomic in proc structure description.
> > 
> > p_sigmask is already marked atomic (and is accessed by other processes
> > concurrently in ptsignal()). p_oldmask is only accessed by curproc which
> > should probably be marked differently. Using atomic for a pure local
> > variable is wrong. Not sure if we have a special letter for this.
> >  
> 
> We have 'o' letter for this purpose, and we use it for `p_kq'
> `p_kq_serial', so it makes sense to mark `p_oldmask' too.

Works for me.
 
> > Now dosigsuspend() changes two states, p_flag and the p_sigmask.
> >     p->p_oldmask = p->p_sigmask;
> >     atomic_setbits_int(&p->p_flag, P_SIGSUSPEND);
> >     p->p_sigmask = newmask;
> > 
> > and ptsignal() does this:
> >     TAILQ_FOREACH(q, &pr->ps_threads, p_thr_link) {
> >             ...
> >             /* skip threads that have the signal blocked */
> >             if ((q->p_sigmask & mask) != 0)
> >                     continue;
> >             ...
> >             if (q->p_flag & P_SIGSUSPEND)
> >                     break;
> >     }
> > 
> > Since this would run concurrently with your change I wonder if the order
> > in dosigsupend() is the wrong way around. I think p->p_sigmask needs to be
> > set first.  Currently the order does not matter since both ptsignal() and
> > dosigsuspend() use the KERNEL_LOCK.
> > 
> > If we change the order do we need some additional memory barriers to
> > ensure the compiler/cpu reorder the store order? It this enough to solve
> > the data dependency between dosigsuspend() and ptsignal()?
> > 
> 
> I could be wrong, but membar_exit_before_atomic(9) between `p_sigmask'
> assignment and atomic P_SIGSUSPEND flag setting should be enough for
> that:
> 
>       p->p_oldmask = p->p_sigmask;
>       p->p_sigmask = newmask;
>       membar_exit_before_atomic();
>       atomic_setbits_int(&p->p_flag, P_SIGSUSPEND);
> 

Is this good enough? Do we need a barrier in ptsignal() as well to ensure
that the order of operation (p_sigmask check before P_SIGSUSPEND check)
remains in order?
 
> Otherwise, if you are concerning about serialized `p_sigmask' and
> P_SIGSUSPEND, dosigsuspend() should be left under kernel lock:
> 
>       if (sigmask) {
>               KERNEL_LOCK();
>               dosigsuspend(p, *sigmask &~ sigcantmask);
>               KERNEL_UNLOCK();
>       }

This is a hack but would allow progress. Now I would prefer if
dosigsuspend() is made safe so that the KERNEL_LOCK is not needed. Which
would also allow sigsuspend to be called with NOLOCK.

> This still makes sense for unlocked pselect(2), because even in the base
> we have cases where sigmask is not set like for isakmpd(8).
> 
> Updated diff marks `p_oldmask' as [o] and uses membar after `p_sigmask'
> assignment.
> 
> Index: sys/kern/kern_sig.c
> ===================================================================
> RCS file: /cvs/src/sys/kern/kern_sig.c,v
> retrieving revision 1.304
> diff -u -p -r1.304 kern_sig.c
> --- sys/kern/kern_sig.c       31 Jan 2023 15:18:56 -0000      1.304
> +++ sys/kern/kern_sig.c       6 Feb 2023 17:26:39 -0000
> @@ -504,8 +504,9 @@ dosigsuspend(struct proc *p, sigset_t ne
>       KASSERT(p == curproc);
>  
>       p->p_oldmask = p->p_sigmask;
> -     atomic_setbits_int(&p->p_flag, P_SIGSUSPEND);
>       p->p_sigmask = newmask;
> +     membar_exit_before_atomic();
> +     atomic_setbits_int(&p->p_flag, P_SIGSUSPEND);
>  }
>  
>  /*
> Index: sys/kern/sys_generic.c
> ===================================================================
> RCS file: /cvs/src/sys/kern/sys_generic.c,v
> retrieving revision 1.151
> diff -u -p -r1.151 sys_generic.c
> --- sys/kern/sys_generic.c    27 Dec 2022 20:13:03 -0000      1.151
> +++ sys/kern/sys_generic.c    6 Feb 2023 17:26:39 -0000
> @@ -596,15 +596,16 @@ dopselect(struct proc *p, int nd, fd_set
>       struct timespec zerots = {};
>       fd_mask bits[6];
>       fd_set *pibits[3], *pobits[3];
> -     int error, ncollected = 0, nevents = 0;
> +     int error, nfiles, ncollected = 0, nevents = 0;
>       u_int ni;
>  
>       if (nd < 0)
>               return (EINVAL);
> -     if (nd > p->p_fd->fd_nfiles) {
> -             /* forgiving; slightly wrong */
> -             nd = p->p_fd->fd_nfiles;
> -     }
> +
> +     nfiles = READ_ONCE(p->p_fd->fd_nfiles);
> +     if (nd > nfiles)
> +             nd = nfiles;
> +
>       ni = howmany(nd, NFDBITS) * sizeof(fd_mask);
>       if (ni > sizeof(bits[0])) {
>               caddr_t mbits;
> Index: sys/kern/syscalls.master
> ===================================================================
> RCS file: /cvs/src/sys/kern/syscalls.master,v
> retrieving revision 1.239
> diff -u -p -r1.239 syscalls.master
> --- sys/kern/syscalls.master  7 Jan 2023 05:24:58 -0000       1.239
> +++ sys/kern/syscalls.master  6 Feb 2023 17:26:39 -0000
> @@ -165,7 +165,7 @@
>                           struct itimerval *oitv); }
>  70   STD NOLOCK      { int sys_getitimer(int which, \
>                           struct itimerval *itv); }
> -71   STD             { int sys_select(int nd, fd_set *in, fd_set *ou, \
> +71   STD NOLOCK      { int sys_select(int nd, fd_set *in, fd_set *ou, \
>                           fd_set *ex, struct timeval *tv); }
>  72   STD NOLOCK      { int sys_kevent(int fd, \
>                           const struct kevent *changelist, int nchanges, \
> @@ -233,7 +233,7 @@
>  109  STD             { int sys_ppoll(struct pollfd *fds, \
>                           u_int nfds, const struct timespec *ts, \
>                           const sigset_t *mask); }
> -110  STD             { int sys_pselect(int nd, fd_set *in, fd_set *ou, \
> +110  STD NOLOCK      { int sys_pselect(int nd, fd_set *in, fd_set *ou, \
>                           fd_set *ex, const struct timespec *ts, \
>                           const sigset_t *mask); }
>  111  STD             { int sys_sigsuspend(int mask); }
> Index: sys/sys/proc.h
> ===================================================================
> RCS file: /cvs/src/sys/sys/proc.h,v
> retrieving revision 1.339
> diff -u -p -r1.339 proc.h
> --- sys/sys/proc.h    16 Jan 2023 07:09:11 -0000      1.339
> +++ sys/sys/proc.h    6 Feb 2023 17:26:39 -0000
> @@ -386,7 +386,7 @@ struct proc {
>       struct  user *p_addr;   /* Kernel virtual addr of u-area */
>       struct  mdproc p_md;    /* Any machine-dependent fields. */
>  
> -     sigset_t p_oldmask;     /* Saved mask from before sigpause */
> +     sigset_t p_oldmask;     /* [o] Saved mask from before sigpause */
>       int     p_sisig;        /* For core dump/debugger XXX */
>       union sigval p_sigval;  /* For core dump/debugger XXX */
>       long    p_sitrapno;     /* For core dump/debugger XXX */
> 

-- 
:wq Claudio

Reply via email to