From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca (simark.ca [158.69.221.121]) by sourceware.org (Postfix) with ESMTPS id 267363951CBF; Tue, 19 May 2020 19:38:59 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 267363951CBF Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=simark.ca Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=simark@simark.ca Received: from [10.0.0.193] (unknown [192.222.164.54]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by simark.ca (Postfix) with ESMTPSA id 8813B1EDD8; Tue, 19 May 2020 15:38:58 -0400 (EDT) Subject: Re: PR25993, read of freed memory To: Pedro Alves , Alan Modra , binutils@sourceware.org, gdb-patches@sourceware.org References: <20200519043205.GT1088@bubble.grove.modra.org> <111d8c5d-d615-e0ae-36de-519c43a51139@simark.ca> <5dd5a430-dff4-fd16-4cd1-126171ee6507@redhat.com> From: Simon Marchi Message-ID: <493cca76-1e70-57fb-92ea-1ce86d82b251@simark.ca> Date: Tue, 19 May 2020 15:38:57 -0400 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.7.0 MIME-Version: 1.0 In-Reply-To: <5dd5a430-dff4-fd16-4cd1-126171ee6507@redhat.com> Content-Type: text/plain; charset=utf-8 Content-Language: tl Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-7.1 required=5.0 tests=BAYES_00, KAM_DMARC_STATUS, SPF_HELO_PASS, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 May 2020 19:39:00 -0000 On 2020-05-19 3:37 p.m., Pedro Alves via Gdb-patches wrote: > On 5/19/20 2:27 PM, Simon Marchi wrote: >> It now doesn't really make sense for symbol_file_add_from_memory to accept a malloc-ed >> string (the point was that before we gave ownership of that malloc-ed string to bfd). >> >> Can you please change `char *name` to be `gdb::optional`? >> >> The caller that passes a name should use string_printf to build the string, as mentioned >> above. The caller that does not pass a name can pass `{}`, to pass an empty optional. > > Wouldn't 'const char * or NULL' work? Seems way simpler to me. > >> >> The `if (name == NULL)` would become something like: >> >> if (!name.has_value ()) >> name.emplace ("shared object read from target memory"); >> > > This would just be > > if (name == NULL) > name = "shared object read from target memory"; Ah yes that's better. Though the caller should still be changed to use string_printf and str.c_str (). Simon