]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
resolv: Track single-request fallback via _res._flags (bug 31476)
authorFlorian Weimer <fweimer@redhat.com>
Thu, 13 Jun 2024 16:56:30 +0000 (18:56 +0200)
committerFlorian Weimer <fweimer@redhat.com>
Thu, 13 Jun 2024 16:56:30 +0000 (18:56 +0200)
This avoids changing _res.options, which inteferes with change
detection as part of automatic reloading of /etc/resolv.conf.

Reviewed-by: DJ Delorie <dj@redhat.com>
resolv/res_send.c
resolv/resolv-internal.h

index fb0217204a6c913faeaf6aa0631d1253fef837a0..ea7cf192b2ed86a49f4d02f8fc1a252195916dfe 100644 (file)
@@ -947,9 +947,11 @@ send_dg(res_state statp,
                seconds /= statp->nscount;
        if (seconds <= 0)
                seconds = 1;
-       bool single_request_reopen = (statp->options & RES_SNGLKUPREOP) != 0;
-       bool single_request = (((statp->options & RES_SNGLKUP) != 0)
-                              | single_request_reopen);
+       bool single_request_reopen = ((statp->options & RES_SNGLKUPREOP)
+                                     || (statp->_flags & RES_F_SNGLKUPREOP));
+       bool single_request = ((statp->options & RES_SNGLKUP)
+                              || (statp->_flags & RES_F_SNGLKUP)
+                              || single_request_reopen);
        int save_gotsomewhere = *gotsomewhere;
 
        int retval;
@@ -1006,14 +1008,14 @@ send_dg(res_state statp,
                       have received the first answer.  */
                    if (!single_request)
                      {
-                       statp->options |= RES_SNGLKUP;
+                       statp->_flags |= RES_F_SNGLKUP;
                        single_request = true;
                        *gotsomewhere = save_gotsomewhere;
                        goto retry;
                      }
                    else if (!single_request_reopen)
                      {
-                       statp->options |= RES_SNGLKUPREOP;
+                       statp->_flags |= RES_F_SNGLKUPREOP;
                        single_request_reopen = true;
                        *gotsomewhere = save_gotsomewhere;
                        __res_iclose (statp, false);
index 24b164f6b5df4c99a4c0581e0317a021cccfa34b..944af3ee7613b3c4bd465874dfb6c82d858c804d 100644 (file)
@@ -26,6 +26,8 @@
 #define RES_F_VC        0x00000001 /* Socket is TCP.  */
 #define RES_F_CONN      0x00000002 /* Socket is connected.  */
 #define RES_F_EDNS0ERR  0x00000004 /* EDNS0 caused errors.  */
+#define RES_F_SNGLKUP  0x00200000 /* Private version of RES_SNGLKUP.  */
+#define RES_F_SNGLKUPREOP 0x00400000 /* Private version of RES_SNGLKUPREOP.  */
 
 /* The structure HEADER is normally aligned on a word boundary.  In
    some code, we need to access this structure when it may be aligned