public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "adhemerval.zanella at linaro dot org" <sourceware-bugzilla@sourceware.org>
To: glibc-bugs@sourceware.org
Subject: [Bug libc/29304] New: mq_timedreceive does not handle 64 bit syscall return correct for !__ASSUME_TIME64_SYSCALLS
Date: Thu, 30 Jun 2022 11:18:56 +0000	[thread overview]
Message-ID: <bug-29304-131@http.sourceware.org/bugzilla/> (raw)

https://sourceware.org/bugzilla/show_bug.cgi?id=29304

            Bug ID: 29304
           Summary: mq_timedreceive does not handle 64 bit syscall return
                    correct for !__ASSUME_TIME64_SYSCALLS
           Product: glibc
           Version: 2.32
            Status: NEW
          Severity: normal
          Priority: P2
         Component: libc
          Assignee: unassigned at sourceware dot org
          Reporter: adhemerval.zanella at linaro dot org
                CC: drepper.fsp at gmail dot com
  Target Milestone: ---

On the code path for builds without 64 bit time_t default syscall, the check to
fallback to 32 bit is wrong:

 38   bool need_time64 = abs_timeout != NULL
 39                      && !in_time_t_range (abs_timeout->tv_sec);
 40   if (need_time64)
 41     {
 42       int r = SYSCALL_CANCEL (mq_timedreceive_time64, mqdes, msg_ptr,
msg_len,
 43                               msg_prio, abs_timeout);
 44       if (r == 0 || errno != ENOSYS)
 45         return r;
 46       __set_errno (EOVERFLOW);
 47       return -1;
 48     }

It should check if 'r >= 0'.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

             reply	other threads:[~2022-06-30 11:18 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-30 11:18 adhemerval.zanella at linaro dot org [this message]
2022-06-30 13:58 ` [Bug libc/29304] " adhemerval.zanella at linaro dot org

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-29304-131@http.sourceware.org/bugzilla/ \
    --to=sourceware-bugzilla@sourceware.org \
    --cc=glibc-bugs@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).