Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys mq_timedsend/mq_timedreceive: timeout value is absolute, ...



details:   https://anonhg.NetBSD.org/src/rev/59c853c80a80
branches:  trunk
changeset: 747930:59c853c80a80
user:      rmind <rmind%NetBSD.org@localhost>
date:      Mon Oct 05 23:49:46 2009 +0000

description:
mq_timedsend/mq_timedreceive: timeout value is absolute, not relative.
While here, drop unecessary (since fdesc API changes) lwp_t arguments.

Bug reported by Stathis Kamperis, thanks!

diffstat:

 sys/compat/common/kern_time_50.c |  41 ++++++++---------
 sys/kern/sys_mqueue.c            |  90 +++++++++++++++++++++------------------
 sys/sys/mqueue.h                 |   6 +-
 3 files changed, 70 insertions(+), 67 deletions(-)

diffs (truncated from 309 to 300 lines):

diff -r 3ac26c5c2e68 -r 59c853c80a80 sys/compat/common/kern_time_50.c
--- a/sys/compat/common/kern_time_50.c  Mon Oct 05 23:48:08 2009 +0000
+++ b/sys/compat/common/kern_time_50.c  Mon Oct 05 23:49:46 2009 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: kern_time_50.c,v 1.8 2009/07/19 02:41:27 rmind Exp $   */
+/*     $NetBSD: kern_time_50.c,v 1.9 2009/10/05 23:49:47 rmind Exp $   */
 
 /*-
  * Copyright (c) 2008, 2009 The NetBSD Foundation, Inc.
@@ -29,7 +29,7 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_time_50.c,v 1.8 2009/07/19 02:41:27 rmind Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_time_50.c,v 1.9 2009/10/05 23:49:47 rmind Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_aio.h"
@@ -538,10 +538,9 @@
                syscallarg(const struct timespec50 *) abs_timeout;
        } */
 #ifdef MQUEUE
-       int t;
+       struct timespec50 ts50;
+       struct timespec ts, *tsp;
        int error;
-       struct timespec50 ts50;
-       struct timespec ts;
 
        /* Get and convert time value */
        if (SCARG(uap, abs_timeout)) {
@@ -549,14 +548,13 @@
                if (error)
                        return error;
                timespec50_to_timespec(&ts50, &ts);
-               error = abstimeout2timo(&ts, &t);
-               if (error)
-                       return error;
-       } else
-               t = 0;
+               tsp = &ts;
+       } else {
+               tsp = NULL;
+       }
 
-       return mq_send1(l, SCARG(uap, mqdes), SCARG(uap, msg_ptr),
-           SCARG(uap, msg_len), SCARG(uap, msg_prio), t);
+       return mq_send1(SCARG(uap, mqdes), SCARG(uap, msg_ptr),
+           SCARG(uap, msg_len), SCARG(uap, msg_prio), tsp);
 #else
        return ENOSYS;
 #endif
@@ -574,10 +572,10 @@
                syscallarg(const struct timespec50 *) abs_timeout;
        } */
 #ifdef MQUEUE
-       int error, t;
+       struct timespec ts, *tsp;
+       struct timespec50 ts50;
        ssize_t mlen;
-       struct timespec ts;
-       struct timespec50 ts50;
+       int error;
 
        /* Get and convert time value */
        if (SCARG(uap, abs_timeout)) {
@@ -586,14 +584,13 @@
                        return error;
 
                timespec50_to_timespec(&ts50, &ts);
-               error = abstimeout2timo(&ts, &t);
-               if (error)
-                       return error;
-       } else
-               t = 0;
+               tsp = &ts;
+       } else {
+               tsp = NULL;
+       }
 
-       error = mq_receive1(l, SCARG(uap, mqdes), SCARG(uap, msg_ptr),
-           SCARG(uap, msg_len), SCARG(uap, msg_prio), t, &mlen);
+       error = mq_recv1(SCARG(uap, mqdes), SCARG(uap, msg_ptr),
+           SCARG(uap, msg_len), SCARG(uap, msg_prio), tsp, &mlen);
        if (error == 0)
                *retval = mlen;
 
diff -r 3ac26c5c2e68 -r 59c853c80a80 sys/kern/sys_mqueue.c
--- a/sys/kern/sys_mqueue.c     Mon Oct 05 23:48:08 2009 +0000
+++ b/sys/kern/sys_mqueue.c     Mon Oct 05 23:49:46 2009 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sys_mqueue.c,v 1.24 2009/07/19 02:50:44 rmind Exp $    */
+/*     $NetBSD: sys_mqueue.c,v 1.25 2009/10/05 23:49:46 rmind Exp $    */
 
 /*
  * Copyright (c) 2007-2009 Mindaugas Rasiukevicius <rmind at NetBSD org>
@@ -42,7 +42,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sys_mqueue.c,v 1.24 2009/07/19 02:50:44 rmind Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sys_mqueue.c,v 1.25 2009/10/05 23:49:46 rmind Exp $");
 
 #include <sys/param.h>
 #include <sys/types.h>
@@ -295,20 +295,26 @@
 }
 
 /*
- * Converter from struct timespec to the ticks.
+ * Calculate delta and convert from struct timespec to the ticks.
  * Used by mq_timedreceive(), mq_timedsend().
  */
 int
 abstimeout2timo(struct timespec *ts, int *timo)
 {
+       struct timespec tsd;
        int error;
 
-       /*
-        * According to POSIX, validation check is needed only in case of
-        * blocking.  Thus, set the invalid value right now, and fail latter.
-        */
-       error = itimespecfix(ts);
-       *timo = (error == 0) ? tstohz(ts) : -1;
+       getnanotime(&tsd);
+       timespecsub(ts, &tsd, &tsd);
+       if (tsd.tv_sec < 0 || (tsd.tv_sec == 0 && tsd.tv_nsec <= 0)) {
+               return ETIMEDOUT;
+       }
+       error = itimespecfix(&tsd);
+       if (error) {
+               return error;
+       }
+       *timo = tstohz(&tsd);
+       KASSERT(*timo != 0);
 
        return 0;
 }
@@ -609,11 +615,11 @@
 }
 
 /*
- * Primary mq_receive1() function.
+ * Primary mq_recv1() function.
  */
 int
-mq_receive1(lwp_t *l, mqd_t mqdes, void *msg_ptr, size_t msg_len,
-    unsigned *msg_prio, int t, ssize_t *mlen)
+mq_recv1(mqd_t mqdes, void *msg_ptr, size_t msg_len, u_int *msg_prio,
+    struct timespec *ts, ssize_t *mlen)
 {
        file_t *fp = NULL;
        struct mqueue *mq;
@@ -643,12 +649,14 @@
 
        /* Check if queue is empty */
        while (mqattr->mq_curmsgs == 0) {
+               int t;
+
                if (mqattr->mq_flags & O_NONBLOCK) {
                        error = EAGAIN;
                        goto error;
                }
-               if (t < 0) {
-                       error = EINVAL;
+               error = abstimeout2timo(ts, &t);
+               if (error) {
                        goto error;
                }
                /*
@@ -720,11 +728,11 @@
                syscallarg(size_t) msg_len;
                syscallarg(unsigned *) msg_prio;
        } */
+       ssize_t mlen;
        int error;
-       ssize_t mlen;
 
-       error = mq_receive1(l, SCARG(uap, mqdes), SCARG(uap, msg_ptr),
-           SCARG(uap, msg_len), SCARG(uap, msg_prio), 0, &mlen);
+       error = mq_recv1(SCARG(uap, mqdes), SCARG(uap, msg_ptr),
+           SCARG(uap, msg_len), SCARG(uap, msg_prio), NULL, &mlen);
        if (error == 0)
                *retval = mlen;
 
@@ -742,24 +750,22 @@
                syscallarg(unsigned *) msg_prio;
                syscallarg(const struct timespec *) abs_timeout;
        } */
-       int error, t;
+       struct timespec ts, *tsp;
        ssize_t mlen;
-       struct timespec ts;
+       int error;
 
        /* Get and convert time value */
        if (SCARG(uap, abs_timeout)) {
                error = copyin(SCARG(uap, abs_timeout), &ts, sizeof(ts));
                if (error)
                        return error;
+               tsp = &ts;
+       } else {
+               tsp = NULL;
+       }
 
-               error = abstimeout2timo(&ts, &t);
-               if (error)
-                       return error;
-       } else
-               t = 0;
-
-       error = mq_receive1(l, SCARG(uap, mqdes), SCARG(uap, msg_ptr),
-           SCARG(uap, msg_len), SCARG(uap, msg_prio), t, &mlen);
+       error = mq_recv1(SCARG(uap, mqdes), SCARG(uap, msg_ptr),
+           SCARG(uap, msg_len), SCARG(uap, msg_prio), tsp, &mlen);
        if (error == 0)
                *retval = mlen;
 
@@ -770,8 +776,8 @@
  * Primary mq_send1() function.
  */
 int
-mq_send1(lwp_t *l, mqd_t mqdes, const char *msg_ptr, size_t msg_len,
-    unsigned msg_prio, int t)
+mq_send1(mqd_t mqdes, const char *msg_ptr, size_t msg_len, u_int msg_prio,
+    struct timespec *ts)
 {
        file_t *fp = NULL;
        struct mqueue *mq;
@@ -828,12 +834,14 @@
 
        /* Check if queue is full */
        while (mqattr->mq_curmsgs >= mqattr->mq_maxmsg) {
+               int t;
+
                if (mqattr->mq_flags & O_NONBLOCK) {
                        error = EAGAIN;
                        goto error;
                }
-               if (t < 0) {
-                       error = EINVAL;
+               error = abstimeout2timo(ts, &t);
+               if (error) {
                        goto error;
                }
                /* Block until queue becomes available */
@@ -904,8 +912,8 @@
                syscallarg(unsigned) msg_prio;
        } */
 
-       return mq_send1(l, SCARG(uap, mqdes), SCARG(uap, msg_ptr),
-           SCARG(uap, msg_len), SCARG(uap, msg_prio), 0);
+       return mq_send1(SCARG(uap, mqdes), SCARG(uap, msg_ptr),
+           SCARG(uap, msg_len), SCARG(uap, msg_prio), NULL);
 }
 
 int
@@ -919,8 +927,7 @@
                syscallarg(unsigned) msg_prio;
                syscallarg(const struct timespec *) abs_timeout;
        } */
-       int t;
-       struct timespec ts;
+       struct timespec ts, *tsp;
        int error;
 
        /* Get and convert time value */
@@ -928,14 +935,13 @@
                error = copyin(SCARG(uap, abs_timeout), &ts, sizeof(ts));
                if (error)
                        return error;
-               error = abstimeout2timo(&ts, &t);
-               if (error)
-                       return error;
-       } else
-               t = 0;
+               tsp = &ts;
+       } else {
+               tsp = NULL;
+       }
 
-       return mq_send1(l, SCARG(uap, mqdes), SCARG(uap, msg_ptr),
-           SCARG(uap, msg_len), SCARG(uap, msg_prio), t);
+       return mq_send1(SCARG(uap, mqdes), SCARG(uap, msg_ptr),
+           SCARG(uap, msg_len), SCARG(uap, msg_prio), tsp);
 }
 
 int
diff -r 3ac26c5c2e68 -r 59c853c80a80 sys/sys/mqueue.h
--- a/sys/sys/mqueue.h  Mon Oct 05 23:48:08 2009 +0000
+++ b/sys/sys/mqueue.h  Mon Oct 05 23:49:46 2009 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: mqueue.h,v 1.10 2009/07/19 02:50:44 rmind Exp $        */
+/*     $NetBSD: mqueue.h,v 1.11 2009/10/05 23:49:46 rmind Exp $        */
 
 /*
  * Copyright (c) 2007-2009 Mindaugas Rasiukevicius <rmind at NetBSD org>
@@ -110,8 +110,8 @@
 /* Prototypes */



Home | Main Index | Thread Index | Old Index