1 /* Temporary, thread-local resolver state.
2 Copyright (C) 2017-2022 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
19 #include <resolv_context.h>
20 #include <resolv_conf.h>
21 #include <resolv-internal.h>
28 /* Currently active struct resolv_context object. This pointer forms
29 the start of a single-linked list, using the __next member of
30 struct resolv_context. This list serves two purposes:
32 (a) A subsequent call to __resolv_context_get will only increment
33 the reference counter and will not allocate a new object. The
34 _res state freshness check is skipped in this case, too.
36 (b) The per-thread cleanup function defined by the resolver calls
37 __resolv_context_freeres, which will deallocate all the context
38 objects. This avoids the need for cancellation handlers and
39 the complexity they bring, but it requires heap allocation of
40 the context object because the per-thread cleanup functions run
41 only after the stack has been fully unwound (and all on-stack
42 objects have been deallocated at this point).
44 The TLS variable current is updated even in
45 __resolv_context_get_override, to support case (b) above. This does
46 not override the per-thread resolver state (as obtained by the
47 non-res_state function such as __resolv_context_get) in an
48 observable way because the wrapped context is only used to
49 implement the res_n* functions in the resolver, and those do not
50 call back into user code which could indirectly use the per-thread
52 static __thread
struct resolv_context
*current attribute_tls_model_ie
;
54 /* The resolv_conf handling will gives us a ctx->conf pointer even if
55 these fields do not match because a mis-match does not cause a loss
56 of state (_res objects can store the full information). This
57 function checks to ensure that there is a full patch, to prevent
58 overwriting a patched configuration. */
60 replicated_configuration_matches (const struct resolv_context
*ctx
)
62 return ctx
->resp
->options
== ctx
->conf
->options
63 && ctx
->resp
->retrans
== ctx
->conf
->retrans
64 && ctx
->resp
->retry
== ctx
->conf
->retry
65 && ctx
->resp
->ndots
== ctx
->conf
->ndots
;
68 /* Initialize *RESP if RES_INIT is not yet set in RESP->options, or if
69 res_init in some other thread requested re-initializing. */
70 static __attribute__ ((warn_unused_result
)) bool
71 maybe_init (struct resolv_context
*ctx
, bool preinit
)
73 struct __res_state
*resp
= ctx
->resp
;
74 if (resp
->options
& RES_INIT
)
76 if (resp
->options
& RES_NORELOAD
)
77 /* Configuration reloading was explicitly disabled. */
80 /* If there is no associated resolv_conf object despite the
81 initialization, something modified *ctx->resp. Do not
82 override those changes. */
83 if (ctx
->conf
!= NULL
&& replicated_configuration_matches (ctx
))
85 struct resolv_conf
*current
= __resolv_conf_get_current ();
89 /* Check if the configuration changed. */
90 if (current
!= ctx
->conf
)
92 /* This call will detach the extended resolver state. */
93 if (resp
->nscount
> 0)
94 __res_iclose (resp
, true);
95 /* Reattach the current configuration. */
96 if (__resolv_conf_attach (ctx
->resp
, current
))
98 __resolv_conf_put (ctx
->conf
);
99 /* ctx takes ownership, so we do not release current. */
104 /* No change. Drop the reference count for current. */
105 __resolv_conf_put (current
);
110 assert (ctx
->conf
== NULL
);
114 resp
->retrans
= RES_TIMEOUT
;
116 resp
->retry
= RES_DFLRETRY
;
117 resp
->options
= RES_DEFAULT
;
119 resp
->id
= res_randomid ();
122 if (__res_vinit (resp
, preinit
) < 0)
124 ctx
->conf
= __resolv_conf_get (ctx
->resp
);
128 /* Allocate a new context object and initialize it. The object is put
129 on the current list. */
130 static struct resolv_context
*
131 context_alloc (struct __res_state
*resp
)
133 struct resolv_context
*ctx
= malloc (sizeof (*ctx
));
137 ctx
->conf
= __resolv_conf_get (resp
);
139 ctx
->__from_res
= true;
140 ctx
->__next
= current
;
145 /* Deallocate the context object and all the state within. */
147 context_free (struct resolv_context
*ctx
)
149 int error_code
= errno
;
150 current
= ctx
->__next
;
151 __resolv_conf_put (ctx
->conf
);
153 __set_errno (error_code
);
156 /* Reuse the current context object. */
157 static struct resolv_context
*
160 /* A context object created by __resolv_context_get_override cannot
162 assert (current
->__from_res
);
164 ++current
->__refcount
;
166 /* Check for reference counter wraparound. This can only happen if
167 the get/put functions are not properly paired. */
168 assert (current
->__refcount
> 0);
173 /* Backing function for the __resolv_context_get family of
175 static struct resolv_context
*
176 context_get (bool preinit
)
179 return context_reuse ();
181 struct resolv_context
*ctx
= context_alloc (&_res
);
184 if (!maybe_init (ctx
, preinit
))
192 struct resolv_context
*
193 __resolv_context_get (void)
195 return context_get (false);
197 libc_hidden_def (__resolv_context_get
)
199 struct resolv_context
*
200 __resolv_context_get_preinit (void)
202 return context_get (true);
204 libc_hidden_def (__resolv_context_get_preinit
)
206 struct resolv_context
*
207 __resolv_context_get_override (struct __res_state
*resp
)
209 /* NB: As explained asbove, context_alloc will put the context on
211 struct resolv_context
*ctx
= context_alloc (resp
);
215 ctx
->__from_res
= false;
218 libc_hidden_def (__resolv_context_get_override
)
221 __resolv_context_put (struct resolv_context
*ctx
)
226 /* NB: Callers assume that this function preserves errno and
229 assert (current
== ctx
);
230 assert (ctx
->__refcount
> 0);
232 if (ctx
->__from_res
&& --ctx
->__refcount
> 0)
233 /* Do not pop this context yet. */
238 libc_hidden_def (__resolv_context_put
)
241 __resolv_context_freeres (void)
243 /* Deallocate the entire chain of context objects. */
244 struct resolv_context
*ctx
= current
;
248 struct resolv_context
*next
= ctx
->__next
;