From patchwork Sun Dec 21 16:56:35 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Ondrej Bilka X-Patchwork-Id: 4392 Received: (qmail 7861 invoked by alias); 21 Dec 2014 16:56:45 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 7851 invoked by uid 89); 21 Dec 2014 16:56:44 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.7 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, SPF_NEUTRAL autolearn=no version=3.3.2 X-HELO: popelka.ms.mff.cuni.cz Date: Sun, 21 Dec 2014 17:56:35 +0100 From: =?utf-8?B?T25kxZllaiBCw61sa2E=?= To: Andreas Schwab Cc: libc-alpha@sourceware.org Subject: Re: [PING][PATCH v2][BZ #14799] Allow to disable options in RES_OPTIONS Message-ID: <20141221165635.GA22503@domone> References: <20141126001713.GA27914@domone> <87a93eqns0.fsf@igel.home> <20141127153740.GA10402@domone> <20141206203813.GA19633@domone> <87fvcs33o6.fsf@igel.home> <20141221155320.GA32563@domone> <87zjah2dfi.fsf@igel.home> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <87zjah2dfi.fsf@igel.home> User-Agent: Mutt/1.5.20 (2009-06-14) On Sun, Dec 21, 2014 at 05:08:33PM +0100, Andreas Schwab wrote: > Ondřej Bílka writes: > > > Do you have testcase that shows that? > > I don't need a testcase. (options[i].clear ^ invert) is obviously > always nonzero. > Like when you pass inet6 there and options[i].clear == 0 and invert = 0? But it needs update clear format to match invert. diff --git a/resolv/res_init.c b/resolv/res_init.c index d492a08..039116a 100644 --- a/resolv/res_init.c +++ b/resolv/res_init.c @@ -527,32 +527,38 @@ res_setoptions(res_state statp, const char *options, const char *source) { { char str[22]; uint8_t len; - uint8_t clear; + unsigned long clear; unsigned long int flag; } options[] = { #define STRnLEN(str) str, sizeof (str) - 1 { STRnLEN ("inet6"), 0, RES_USE_INET6 }, { STRnLEN ("ip6-bytestring"), 0, RES_USEBSTRING }, - { STRnLEN ("no-ip6-dotint"), 0, RES_NOIP6DOTINT }, - { STRnLEN ("ip6-dotint"), 1, ~RES_NOIP6DOTINT }, + { STRnLEN ("ip6-dotint"), ~0, ~RES_NOIP6DOTINT }, { STRnLEN ("rotate"), 0, RES_ROTATE }, - { STRnLEN ("no-check-names"), 0, RES_NOCHECKNAME }, + { STRnLEN ("check-names"), ~0, ~RES_NOCHECKNAME }, { STRnLEN ("edns0"), 0, RES_USE_EDNS0 }, { STRnLEN ("single-request-reopen"), 0, RES_SNGLKUPREOP }, { STRnLEN ("single-request"), 0, RES_SNGLKUP }, { STRnLEN ("no_tld_query"), 0, RES_NOTLDQUERY }, - { STRnLEN ("no-tld-query"), 0, RES_NOTLDQUERY }, + { STRnLEN ("tld-query"), ~0, ~RES_NOTLDQUERY }, { STRnLEN ("use-vc"), 0, RES_USEVC } }; #define noptions (sizeof (options) / sizeof (options[0])) int i; + unsigned long int invert = 0; + if (strncmp (cp, "no-", 3) == 0) + { + cp += 3; + invert = ~0; + } + for (i = 0; i < noptions; ++i) if (strncmp (cp, options[i].str, options[i].len) == 0) { - if (options[i].clear) - statp->options &= options[i].flag; + if (options[i].clear ^ invert) + statp->options &= options[i].flag ^ invert; else - statp->options |= options[i].flag; + statp->options |= options[i].flag ^ invert; break; } if (i == noptions) {