From patchwork Wed Dec 1 14:51:12 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Mark Wielaard X-Patchwork-Id: 48362 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 41C9E385800C for ; Wed, 1 Dec 2021 14:51:23 +0000 (GMT) X-Original-To: elfutils-devel@sourceware.org Delivered-To: elfutils-devel@sourceware.org Received: from gnu.wildebeest.org (gnu.wildebeest.org [45.83.234.184]) by sourceware.org (Postfix) with ESMTPS id 1CF5C3858401 for ; Wed, 1 Dec 2021 14:51:17 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 1CF5C3858401 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=klomp.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=klomp.org Received: from tarox.wildebeest.org (83-87-18-245.cable.dynamic.v4.ziggo.nl [83.87.18.245]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by gnu.wildebeest.org (Postfix) with ESMTPSA id 8C1FB300070C; Wed, 1 Dec 2021 15:51:15 +0100 (CET) Received: by tarox.wildebeest.org (Postfix, from userid 1000) id 76E9D425A456; Wed, 1 Dec 2021 15:51:14 +0100 (CET) From: Mark Wielaard To: elfutils-devel@sourceware.org Subject: [PATCHv2] debuginfod: Check result of calling MHD_add_response_header. Date: Wed, 1 Dec 2021 15:51:12 +0100 Message-Id: <20211201145112.16263-1-mark@klomp.org> X-Mailer: git-send-email 2.18.4 MIME-Version: 1.0 X-Spam-Status: No, score=-9.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: elfutils-devel@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Elfutils-devel mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , Cc: Mark Wielaard Errors-To: elfutils-devel-bounces+patchwork=sourceware.org@sourceware.org Sender: "Elfutils-devel" Although unlikely the MHD_add_response_header can fail for various reasons. If it fails something odd is going on. So check we can actually add a response header and log an error if we cannot. Signed-off-by: Mark Wielaard --- This version only check and logs the error, but still uses the response object. debuginfod/ChangeLog | 10 +++++ debuginfod/debuginfod.cxx | 87 +++++++++++++++++++++++++++++---------- 2 files changed, 75 insertions(+), 22 deletions(-) diff --git a/debuginfod/ChangeLog b/debuginfod/ChangeLog index 822bd637..3866e7fa 100644 --- a/debuginfod/ChangeLog +++ b/debuginfod/ChangeLog @@ -1,3 +1,13 @@ +2021-12-01 Mark Wielaard + + * debuginfod.cxx (reportable_exception::mhd_send_response): Check + MHD_add_response_header result. + (add_mhd_last_modified): Likewise. + (handle_buildid_f_match): Likewise. + (handle_buildid_r_match): Likewise. + (handle_metrics): Likewise. + (handle_root): Likewise. + 2021-11-10 Érico N. Rolim * debuginfod.cxx: include "system.h" under 'extern "C"' block. diff --git a/debuginfod/debuginfod.cxx b/debuginfod/debuginfod.cxx index 764e7b94..b3416134 100644 --- a/debuginfod/debuginfod.cxx +++ b/debuginfod/debuginfod.cxx @@ -1,5 +1,6 @@ /* Debuginfo-over-http server. Copyright (C) 2019-2021 Red Hat, Inc. + Copyright (C) 2021 Mark J. Wielaard This file is part of elfutils. This file is free software; you can redistribute it and/or modify @@ -646,10 +647,11 @@ struct reportable_exception MHD_Response* r = MHD_create_response_from_buffer (message.size(), (void*) message.c_str(), MHD_RESPMEM_MUST_COPY); - MHD_add_response_header (r, "Content-Type", "text/plain"); - MHD_RESULT rc = MHD_queue_response (c, code, r); + MHD_RESULT rc1, rc2; + rc1 = MHD_add_response_header (r, "Content-Type", "text/plain"); + rc2 = MHD_queue_response (c, code, r); MHD_destroy_response (r); - return rc; + return (rc1 == MHD_NO || rc2 == MHD_NO) ? MHD_NO : MHD_YES; } }; @@ -1076,10 +1078,15 @@ add_mhd_last_modified (struct MHD_Response *resp, time_t mtime) char datebuf[80]; size_t rc = strftime (datebuf, sizeof (datebuf), "%a, %d %b %Y %T GMT", now); if (rc > 0 && rc < sizeof (datebuf)) - (void) MHD_add_response_header (resp, "Last-Modified", datebuf); + if (MHD_add_response_header (resp, "Last-Modified", datebuf) == MHD_NO) + if (verbose) + obatched(clog) << "Error: couldn't add Last-Modified header" + << endl; } - (void) MHD_add_response_header (resp, "Cache-Control", "public"); + if (MHD_add_response_header (resp, "Cache-Control", "public") == MHD_NO) + if (verbose) + obatched(clog) << "Error: couldn't add Cache-Control header" << endl; } @@ -1125,10 +1132,16 @@ handle_buildid_f_match (bool internal_req_t, } else { - MHD_add_response_header (r, "Content-Type", "application/octet-stream"); std::string file = b_source0.substr(b_source0.find_last_of("/")+1, b_source0.length()); - MHD_add_response_header (r, "X-DEBUGINFOD-SIZE", to_string(s.st_size).c_str() ); - MHD_add_response_header (r, "X-DEBUGINFOD-FILE", file.c_str() ); + if (MHD_add_response_header (r, "Content-Type", + "application/octet-stream") == MHD_NO + || MHD_add_response_header (r, "X-DEBUGINFOD-SIZE", + to_string(s.st_size).c_str()) == MHD_NO + || MHD_add_response_header (r, "X-DEBUGINFOD-FILE", + file.c_str()) == MHD_NO) + if (verbose) + obatched(clog) << "Error: cannot add response headers for " + << b_source0 << endl; add_mhd_last_modified (r, s.st_mtime); if (verbose > 1) obatched(clog) << "serving file " << b_source0 << endl; @@ -1597,10 +1610,17 @@ handle_buildid_r_match (bool internal_req_p, inc_metric ("http_responses_total","result","archive fdcache"); - MHD_add_response_header (r, "Content-Type", "application/octet-stream"); - MHD_add_response_header (r, "X-DEBUGINFOD-SIZE", to_string(fs.st_size).c_str()); - MHD_add_response_header (r, "X-DEBUGINFOD-ARCHIVE", b_source0.c_str()); - MHD_add_response_header (r, "X-DEBUGINFOD-FILE", b_source1.c_str()); + if (MHD_add_response_header (r, "Content-Type", + "application/octet-stream") == MHD_NO + || MHD_add_response_header (r, "X-DEBUGINFOD-SIZE", + to_string(fs.st_size).c_str()) == MHD_NO + || MHD_add_response_header (r, "X-DEBUGINFOD-ARCHIVE", + b_source0.c_str()) == MHD_NO + || MHD_add_response_header (r, "X-DEBUGINFOD-FILE", + b_source1.c_str()) == MHD_NO) + if (verbose) + obatched(clog) << "Error: cannot add response header for " + << b_source0 << endl; add_mhd_last_modified (r, fs.st_mtime); if (verbose > 1) obatched(clog) << "serving fdcache archive " << b_source0 << " file " << b_source1 << endl; @@ -1741,12 +1761,20 @@ handle_buildid_r_match (bool internal_req_p, } else { - MHD_add_response_header (r, "Content-Type", "application/octet-stream"); std::string file = b_source1.substr(b_source1.find_last_of("/")+1, b_source1.length()); - MHD_add_response_header (r, "X-DEBUGINFOD-SIZE", to_string(fs.st_size).c_str()); - MHD_add_response_header (r, "X-DEBUGINFOD-ARCHIVE", b_source0.c_str()); - MHD_add_response_header (r, "X-DEBUGINFOD-FILE", file.c_str()); - + if (MHD_add_response_header (r, "Content-Type", + "application/octet-stream") == MHD_NO + || MHD_add_response_header (r, "X-DEBUGINFOD-SIZE", + to_string(fs.st_size).c_str()) == MHD_NO + || MHD_add_response_header (r, "X-DEBUGINFOD-ARCHIVE", + b_source0.c_str()) == MHD_NO + || MHD_add_response_header (r, "X-DEBUGINFOD-FILE", + file.c_str()) == MHD_NO) + { + if (verbose) + obatched(clog) << "Error: cannot create response header for " + << b_source0 << endl; + } add_mhd_last_modified (r, archive_entry_mtime(e)); if (verbose > 1) obatched(clog) << "serving archive " << b_source0 << " file " << b_source1 << endl; @@ -2012,7 +2040,12 @@ and will not query the upstream servers"); auto r = MHD_create_response_from_fd ((uint64_t) s.st_size, fd); if (r) { - MHD_add_response_header (r, "Content-Type", "application/octet-stream"); + if (MHD_add_response_header (r, "Content-Type", + "application/octet-stream") == MHD_NO) + if (verbose) + obatched(clog) << "Error: couldn't add Content-Type header" + << endl; + add_mhd_last_modified (r, s.st_mtime); if (verbose > 1) obatched(clog) << "serving file from upstream debuginfod/cache" << endl; @@ -2163,8 +2196,13 @@ handle_metrics (off_t* size) MHD_Response* r = MHD_create_response_from_buffer (os.size(), (void*) os.c_str(), MHD_RESPMEM_MUST_COPY); - *size = os.size(); - MHD_add_response_header (r, "Content-Type", "text/plain"); + if (r != NULL) + { + *size = os.size(); + if (MHD_add_response_header (r, "Content-Type", "text/plain") == MHD_NO) + if (verbose) + obatched(clog) << "Error: couldn't add Content-Type header" << endl; + } return r; } @@ -2176,8 +2214,13 @@ handle_root (off_t* size) MHD_Response* r = MHD_create_response_from_buffer (version.size (), (void *) version.c_str (), MHD_RESPMEM_PERSISTENT); - *size = version.size (); - MHD_add_response_header (r, "Content-Type", "text/plain"); + if (r != NULL) + { + *size = version.size (); + if (MHD_add_response_header (r, "Content-Type", "text/plain") == MHD_NO) + if (verbose) + obatched(clog) << "Error: couldn't add Content-Type header" << endl; + } return r; }