|
|
0c9110 |
From 85b9ada575f47a5f25f1ffeaccf9c4e1142fd689 Mon Sep 17 00:00:00 2001
|
|
|
0c9110 |
From: Jakub Filak <jfilak@redhat.com>
|
|
|
0c9110 |
Date: Sat, 13 Sep 2014 22:26:53 +0200
|
|
|
0c9110 |
Subject: [LIBREPORT PATCH 80/93] ureport: aggressive refactorization of
|
|
|
0c9110 |
uReport source
|
|
|
0c9110 |
|
|
|
0c9110 |
Simplify/unify the uReport API and provide a development documentation
|
|
|
0c9110 |
in form of Doxygen comments.
|
|
|
0c9110 |
|
|
|
0c9110 |
Related to rhbz1139987
|
|
|
0c9110 |
|
|
|
0c9110 |
Signed-off-by: Jakub Filak <jfilak@redhat.com>
|
|
|
0c9110 |
---
|
|
|
0c9110 |
po/POTFILES.in | 4 +-
|
|
|
0c9110 |
src/include/ureport.h | 185 +++++++++++-
|
|
|
0c9110 |
src/lib/ureport.c | 633 ++++++++++++++++++++++++++++++++++++++---
|
|
|
0c9110 |
src/plugins/reporter-ureport.c | 581 ++-----------------------------------
|
|
|
0c9110 |
4 files changed, 793 insertions(+), 610 deletions(-)
|
|
|
0c9110 |
|
|
|
0c9110 |
diff --git a/po/POTFILES.in b/po/POTFILES.in
|
|
|
0c9110 |
index 7ba080c..00046e2 100644
|
|
|
0c9110 |
--- a/po/POTFILES.in
|
|
|
0c9110 |
+++ b/po/POTFILES.in
|
|
|
0c9110 |
@@ -19,7 +19,7 @@ src/lib/client.c
|
|
|
0c9110 |
src/lib/create_dump_dir.c
|
|
|
0c9110 |
src/lib/curl.c
|
|
|
0c9110 |
src/lib/event_config.c
|
|
|
0c9110 |
-src/lib/json.c
|
|
|
0c9110 |
+src/lib/ureport.c
|
|
|
0c9110 |
src/lib/make_descr.c
|
|
|
0c9110 |
src/lib/parse_options.c
|
|
|
0c9110 |
src/lib/problem_data.c
|
|
|
0c9110 |
@@ -42,7 +42,7 @@ src/plugins/report_Uploader.xml.in
|
|
|
0c9110 |
src/plugins/report_uReport.xml.in
|
|
|
0c9110 |
src/plugins/report_EmergencyAnalysis.xml.in
|
|
|
0c9110 |
src/plugins/rhbz.c
|
|
|
0c9110 |
-src/plugins/ureport.c
|
|
|
0c9110 |
+src/plugins/reporter-ureport.c
|
|
|
0c9110 |
src/report-newt/report-newt.c
|
|
|
0c9110 |
src/workflows/workflow_AnacondaFedora.xml.in
|
|
|
0c9110 |
src/workflows/workflow_AnacondaRHEL.xml.in
|
|
|
0c9110 |
diff --git a/src/include/ureport.h b/src/include/ureport.h
|
|
|
0c9110 |
index d341f6e..3fffed7 100644
|
|
|
0c9110 |
--- a/src/include/ureport.h
|
|
|
0c9110 |
+++ b/src/include/ureport.h
|
|
|
0c9110 |
@@ -19,12 +19,19 @@
|
|
|
0c9110 |
#ifndef UREPORT_H_
|
|
|
0c9110 |
#define UREPORT_H_
|
|
|
0c9110 |
|
|
|
0c9110 |
-#include "problem_data.h"
|
|
|
0c9110 |
-
|
|
|
0c9110 |
#ifdef __cplusplus
|
|
|
0c9110 |
extern "C" {
|
|
|
0c9110 |
#endif
|
|
|
0c9110 |
|
|
|
0c9110 |
+#define UREPORT_CONF_FILE_PATH PLUGINS_CONF_DIR"/ureport.conf"
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+#define UREPORT_OPTION_VALUE_FROM_CONF(settings, opt, var, tr) do { const char *value = getenv("uReport_"opt); \
|
|
|
0c9110 |
+ if (!value) { value = get_map_string_item_or_NULL(settings, opt); } if (value) { var = tr(value); } \
|
|
|
0c9110 |
+ } while(0)
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+#define UREPORT_SUBMIT_ACTION "reports/new/"
|
|
|
0c9110 |
+#define UREPORT_ATTACH_ACTION "reports/attach/"
|
|
|
0c9110 |
+
|
|
|
0c9110 |
/*
|
|
|
0c9110 |
* uReport generation configuration
|
|
|
0c9110 |
*/
|
|
|
0c9110 |
@@ -48,22 +55,176 @@ struct ureport_server_config
|
|
|
0c9110 |
struct ureport_preferences ur_prefs; ///< configuration for uReport generation
|
|
|
0c9110 |
};
|
|
|
0c9110 |
|
|
|
0c9110 |
-struct abrt_post_state;
|
|
|
0c9110 |
+/*
|
|
|
0c9110 |
+ * Initialize structure members
|
|
|
0c9110 |
+ *
|
|
|
0c9110 |
+ * @param config Initialized structure
|
|
|
0c9110 |
+ */
|
|
|
0c9110 |
+#define ureport_server_config_init libreport_ureport_server_config_init
|
|
|
0c9110 |
+void
|
|
|
0c9110 |
+ureport_server_config_init(struct ureport_server_config *config);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+/*
|
|
|
0c9110 |
+ * Release all allocated resources
|
|
|
0c9110 |
+ *
|
|
|
0c9110 |
+ * @param config Released structure
|
|
|
0c9110 |
+ */
|
|
|
0c9110 |
+#define ureport_server_config_destroy libreport_ureport_server_config_destroy
|
|
|
0c9110 |
+void
|
|
|
0c9110 |
+ureport_server_config_destroy(struct ureport_server_config *config);
|
|
|
0c9110 |
|
|
|
0c9110 |
-#define ureport_post libreport_ureport_post
|
|
|
0c9110 |
-struct post_state *ureport_post(const char *json_ureport,
|
|
|
0c9110 |
- struct ureport_server_config *config);
|
|
|
0c9110 |
+/*
|
|
|
0c9110 |
+ * Loads uReport configuration from various sources.
|
|
|
0c9110 |
+ *
|
|
|
0c9110 |
+ * Replaces a value of an already configured option only if the
|
|
|
0c9110 |
+ * option was found in a configuration source.
|
|
|
0c9110 |
+ *
|
|
|
0c9110 |
+ * @param config a server configuration to be populated
|
|
|
0c9110 |
+ */
|
|
|
0c9110 |
+#define ureport_server_config_load libreport_ureport_server_config_load
|
|
|
0c9110 |
+void
|
|
|
0c9110 |
+ureport_server_config_load(struct ureport_server_config *config,
|
|
|
0c9110 |
+ map_string_t *settings);
|
|
|
0c9110 |
|
|
|
0c9110 |
-#define ureport_attach_rhbz libreport_ureport_attach_rhbz
|
|
|
0c9110 |
-struct post_state *ureport_attach_rhbz(const char *bthash, int rhbz_bug_id,
|
|
|
0c9110 |
+/*
|
|
|
0c9110 |
+ * Configure client certificate paths
|
|
|
0c9110 |
+ *
|
|
|
0c9110 |
+ * @param config Where the paths are stored
|
|
|
0c9110 |
+ * @param client_path Path in form of cert_full_path:key_full_path or one of
|
|
|
0c9110 |
+ * the following string: 'rhsm', 'puppet'.
|
|
|
0c9110 |
+ */
|
|
|
0c9110 |
+#define ureport_server_config_set_client_auth libreport_ureport_server_config_set_client_auth
|
|
|
0c9110 |
+void
|
|
|
0c9110 |
+ureport_server_config_set_client_auth(struct ureport_server_config *config,
|
|
|
0c9110 |
+ const char *client_auth);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+/*
|
|
|
0c9110 |
+ * uReport server response
|
|
|
0c9110 |
+ */
|
|
|
0c9110 |
+struct ureport_server_response
|
|
|
0c9110 |
+{
|
|
|
0c9110 |
+ bool urr_is_error; ///< True if server replied with error response
|
|
|
0c9110 |
+ char *urr_value; ///< Value of the response
|
|
|
0c9110 |
+ char *urr_message; ///< Additional message
|
|
|
0c9110 |
+ char *urr_bthash; ///< uReport's server side identifier
|
|
|
0c9110 |
+ GList *urr_reported_to_list; ///< Known external reports for uReport
|
|
|
0c9110 |
+ ///< in *reported_to* format
|
|
|
0c9110 |
+ char *urr_solution; ///< URL pointing to solution for uReport
|
|
|
0c9110 |
+};
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+/* Can't include "abrt_curl.h", it's not a public API.
|
|
|
0c9110 |
+ * Resorting to just forward-declaring the struct we need.
|
|
|
0c9110 |
+ */
|
|
|
0c9110 |
+struct post_state;
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+/*
|
|
|
0c9110 |
+ * Parse server reply
|
|
|
0c9110 |
+ *
|
|
|
0c9110 |
+ * @param post_state Server reply
|
|
|
0c9110 |
+ * @param config Configuration used in communication
|
|
|
0c9110 |
+ * @return Pointer to malloced memory or NULL in case of error in communication
|
|
|
0c9110 |
+ */
|
|
|
0c9110 |
+#define ureport_server_response_from_reply libreport_ureport_server_response_from_reply
|
|
|
0c9110 |
+struct ureport_server_response *
|
|
|
0c9110 |
+ureport_server_response_from_reply(struct post_state *post_state,
|
|
|
0c9110 |
+ struct ureport_server_config *config);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+/*
|
|
|
0c9110 |
+ * Save response in dump dir files
|
|
|
0c9110 |
+ *
|
|
|
0c9110 |
+ * @param resp Parsed server response
|
|
|
0c9110 |
+ * @param dump_dir_pat Path to dump directory
|
|
|
0c9110 |
+ * @param config Configuration used in communication
|
|
|
0c9110 |
+ * @return False in case of any error; otherwise True.
|
|
|
0c9110 |
+ */
|
|
|
0c9110 |
+#define ureport_server_response_save_in_dump_dir libreport_ureport_server_response_save_in_dump_dir
|
|
|
0c9110 |
+bool
|
|
|
0c9110 |
+ureport_server_response_save_in_dump_dir(struct ureport_server_response *resp,
|
|
|
0c9110 |
+ const char *dump_dir_path,
|
|
|
0c9110 |
+ struct ureport_server_config *config);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+/*
|
|
|
0c9110 |
+ * Build URL to submitted uReport
|
|
|
0c9110 |
+ *
|
|
|
0c9110 |
+ * @param resp Parsed server response
|
|
|
0c9110 |
+ * @param config Configuration used in communication
|
|
|
0c9110 |
+ * @return Malloced zero-terminated string
|
|
|
0c9110 |
+ */
|
|
|
0c9110 |
+#define ureport_server_response_get_report_url libreport_ureport_server_response_get_report_url
|
|
|
0c9110 |
+char *
|
|
|
0c9110 |
+ureport_server_response_get_report_url(struct ureport_server_response *resp,
|
|
|
0c9110 |
struct ureport_server_config *config);
|
|
|
0c9110 |
|
|
|
0c9110 |
-#define ureport_attach_email libreport_ureport_attach_email
|
|
|
0c9110 |
-struct post_state *ureport_attach_email(const char *bthash, const char *email,
|
|
|
0c9110 |
- struct ureport_server_config *config);
|
|
|
0c9110 |
+/*
|
|
|
0c9110 |
+ * Release allocated resources
|
|
|
0c9110 |
+ *
|
|
|
0c9110 |
+ * @param resp Released structured
|
|
|
0c9110 |
+ */
|
|
|
0c9110 |
+#define ureport_server_response_free libreport_ureport_server_response_free
|
|
|
0c9110 |
+void
|
|
|
0c9110 |
+ureport_server_response_free(struct ureport_server_response *resp);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+/*
|
|
|
0c9110 |
+ * Send JSON to server and obtain reply
|
|
|
0c9110 |
+ *
|
|
|
0c9110 |
+ * @param json Sent data
|
|
|
0c9110 |
+ * @param config Configuration used in communication
|
|
|
0c9110 |
+ * @param url_sfx Local part of the upload URL
|
|
|
0c9110 |
+ * @return Malloced server reply or NULL in case of communication errors
|
|
|
0c9110 |
+ */
|
|
|
0c9110 |
+#define ureport_do_post libreport_ureport_do_post
|
|
|
0c9110 |
+struct post_state *
|
|
|
0c9110 |
+ureport_do_post(const char *json, struct ureport_server_config *config,
|
|
|
0c9110 |
+ const char *url_sfx);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+/*
|
|
|
0c9110 |
+ * Submit uReport on server
|
|
|
0c9110 |
+ *
|
|
|
0c9110 |
+ * @param json Sent data
|
|
|
0c9110 |
+ * @param config Configuration used in communication
|
|
|
0c9110 |
+ * @return Malloced, parsed server response
|
|
|
0c9110 |
+ */
|
|
|
0c9110 |
+#define ureport_submit libreport_ureport_submit
|
|
|
0c9110 |
+struct ureport_server_response *
|
|
|
0c9110 |
+ureport_submit(const char *json_ureport, struct ureport_server_config *config);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+/*
|
|
|
0c9110 |
+ * Attach given string to uReport
|
|
|
0c9110 |
+ *
|
|
|
0c9110 |
+ * @param bthash uReport identifier
|
|
|
0c9110 |
+ * @param type Type of attachment
|
|
|
0c9110 |
+ * @param data Attached data
|
|
|
0c9110 |
+ * @param config Configuration used in communication
|
|
|
0c9110 |
+ * @return False in case of any error; otherwise True
|
|
|
0c9110 |
+ */
|
|
|
0c9110 |
+#define ureport_attach_string libreport_ureport_attach_string
|
|
|
0c9110 |
+bool
|
|
|
0c9110 |
+ureport_attach_string(const char *bthash, const char *type, const char *data,
|
|
|
0c9110 |
+ struct ureport_server_config *config);
|
|
|
0c9110 |
|
|
|
0c9110 |
+/*
|
|
|
0c9110 |
+ * Attach given integer to uReport
|
|
|
0c9110 |
+ *
|
|
|
0c9110 |
+ * @param bthash uReport identifier
|
|
|
0c9110 |
+ * @param type Type of attachment
|
|
|
0c9110 |
+ * @param data Attached data
|
|
|
0c9110 |
+ * @param config Configuration used in communication
|
|
|
0c9110 |
+ * @return False in case of any error; otherwise True
|
|
|
0c9110 |
+ */
|
|
|
0c9110 |
+#define ureport_attach_int libreport_ureport_attach_int
|
|
|
0c9110 |
+bool
|
|
|
0c9110 |
+ureport_attach_int(const char *bthash, const char *type, int data,
|
|
|
0c9110 |
+ struct ureport_server_config *config);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+/*
|
|
|
0c9110 |
+ * Build uReport from dump dir
|
|
|
0c9110 |
+ *
|
|
|
0c9110 |
+ * @param dump_dir_path FS path to dump dir
|
|
|
0c9110 |
+ * @return Malloced JSON string
|
|
|
0c9110 |
+ */
|
|
|
0c9110 |
#define ureport_from_dump_dir libreport_ureport_from_dump_dir
|
|
|
0c9110 |
-char *ureport_from_dump_dir(const char *dump_dir_path);
|
|
|
0c9110 |
+char *
|
|
|
0c9110 |
+ureport_from_dump_dir(const char *dump_dir_path);
|
|
|
0c9110 |
|
|
|
0c9110 |
#define ureport_from_dump_dir_ext libreport_ureport_from_dump_dir_ext
|
|
|
0c9110 |
char *ureport_from_dump_dir_ext(const char *dump_dir_path,
|
|
|
0c9110 |
diff --git a/src/lib/ureport.c b/src/lib/ureport.c
|
|
|
0c9110 |
index 761fe62..e1816ef 100644
|
|
|
0c9110 |
--- a/src/lib/ureport.c
|
|
|
0c9110 |
+++ b/src/lib/ureport.c
|
|
|
0c9110 |
@@ -26,9 +26,528 @@
|
|
|
0c9110 |
#include "ureport.h"
|
|
|
0c9110 |
#include "libreport_curl.h"
|
|
|
0c9110 |
|
|
|
0c9110 |
+#define DESTROYED_POINTER (void *)0xdeadbeef
|
|
|
0c9110 |
|
|
|
0c9110 |
-static void ureport_add_str(struct json_object *ur, const char *key,
|
|
|
0c9110 |
- const char *s)
|
|
|
0c9110 |
+#define BTHASH_URL_SFX "reports/bthash/"
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+#define RHSM_CERT_PATH "/etc/pki/consumer/cert.pem"
|
|
|
0c9110 |
+#define RHSM_KEY_PATH "/etc/pki/consumer/key.pem"
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+#define RHSMENT_PEM_DIR_PATH "/etc/pki/entitlement"
|
|
|
0c9110 |
+#define RHSMENT_ENT_DATA_BEGIN_TAG "-----BEGIN ENTITLEMENT DATA-----"
|
|
|
0c9110 |
+#define RHSMENT_ENT_DATA_END_TAG "-----END ENTITLEMENT DATA-----"
|
|
|
0c9110 |
+#define RHSMENT_SIG_DATA_BEGIN_TAG "-----BEGIN RSA SIGNATURE-----"
|
|
|
0c9110 |
+#define RHSMENT_SIG_DATA_END_TAG "-----END RSA SIGNATURE-----"
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+static char *
|
|
|
0c9110 |
+puppet_config_print(const char *key)
|
|
|
0c9110 |
+{
|
|
|
0c9110 |
+ char *command = xasprintf("puppet config print %s", key);
|
|
|
0c9110 |
+ char *result = run_in_shell_and_save_output(0, command, NULL, NULL);
|
|
|
0c9110 |
+ free(command);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ /* run_in_shell_and_save_output always returns non-NULL */
|
|
|
0c9110 |
+ if (result[0] != '/')
|
|
|
0c9110 |
+ goto error;
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ char *newline = strchrnul(result, '\n');
|
|
|
0c9110 |
+ if (!newline)
|
|
|
0c9110 |
+ goto error;
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ *newline = '\0';
|
|
|
0c9110 |
+ return result;
|
|
|
0c9110 |
+error:
|
|
|
0c9110 |
+ free(result);
|
|
|
0c9110 |
+ error_msg_and_die("Unable to determine puppet %s path (puppet not installed?)", key);
|
|
|
0c9110 |
+}
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+void
|
|
|
0c9110 |
+ureport_server_config_set_client_auth(struct ureport_server_config *config,
|
|
|
0c9110 |
+ const char *client_auth)
|
|
|
0c9110 |
+{
|
|
|
0c9110 |
+ if (client_auth == NULL)
|
|
|
0c9110 |
+ return;
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ if (strcmp(client_auth, "") == 0)
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ config->ur_client_cert = NULL;
|
|
|
0c9110 |
+ config->ur_client_key = NULL;
|
|
|
0c9110 |
+ log_notice("Not using client authentication");
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+ else if (strcmp(client_auth, "rhsm") == 0)
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ config->ur_client_cert = xstrdup(RHSM_CERT_PATH);
|
|
|
0c9110 |
+ config->ur_client_key = xstrdup(RHSM_KEY_PATH);
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+ else if (strcmp(client_auth, "rhsm-entitlement") == 0)
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ GList *certs = get_file_list(RHSMENT_PEM_DIR_PATH, "pem");
|
|
|
0c9110 |
+ if (g_list_length(certs) != 2)
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ log_notice(RHSMENT_PEM_DIR_PATH" does not contain unique cert-key files pair");
|
|
|
0c9110 |
+ log_notice("Not using client authentication");
|
|
|
0c9110 |
+ return;
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ const char *cert = NULL;
|
|
|
0c9110 |
+ const char *key = NULL;
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ file_obj_t *fst = (file_obj_t *)certs->data;
|
|
|
0c9110 |
+ file_obj_t *scn = (file_obj_t *)certs->next->data;
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ if (strlen(fo_get_filename(fst)) < strlen(fo_get_filename(scn)))
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ cert = fo_get_filename(fst);
|
|
|
0c9110 |
+ key = fo_get_filename(scn);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ config->ur_client_cert = xstrdup(fo_get_fullpath(fst));
|
|
|
0c9110 |
+ config->ur_client_key = xstrdup(fo_get_fullpath(scn));
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+ else
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ cert = fo_get_filename(scn);
|
|
|
0c9110 |
+ key = fo_get_filename(fst);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ config->ur_client_cert = xstrdup(fo_get_fullpath(scn));
|
|
|
0c9110 |
+ config->ur_client_key = xstrdup(fo_get_fullpath(fst));
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ const bool iscomplement = prefixcmp(key, cert) != 0 || strcmp("-key", key + strlen(cert)) != 0;
|
|
|
0c9110 |
+ g_list_free_full(certs, (GDestroyNotify)free_file_obj);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ if (iscomplement)
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ log_notice("Key file '%s' isn't complement to cert file '%s'",
|
|
|
0c9110 |
+ config->ur_client_key, config->ur_client_cert);
|
|
|
0c9110 |
+ log_notice("Not using client authentication");
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ free(config->ur_client_cert);
|
|
|
0c9110 |
+ free(config->ur_client_key);
|
|
|
0c9110 |
+ config->ur_client_cert = NULL;
|
|
|
0c9110 |
+ config->ur_client_key = NULL;
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ return;
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ char *certdata = xmalloc_open_read_close(config->ur_client_cert, /*no size limit*/NULL);
|
|
|
0c9110 |
+ if (certdata != NULL)
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ char *ent_data = xstrdup_between(certdata,
|
|
|
0c9110 |
+ RHSMENT_ENT_DATA_BEGIN_TAG, RHSMENT_ENT_DATA_END_TAG);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ char *sig_data = xstrdup_between(certdata,
|
|
|
0c9110 |
+ RHSMENT_SIG_DATA_BEGIN_TAG, RHSMENT_SIG_DATA_END_TAG);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ if (ent_data != NULL && sig_data != NULL)
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ ent_data = strremovech(ent_data, '\n');
|
|
|
0c9110 |
+ insert_map_string(config->ur_http_headers,
|
|
|
0c9110 |
+ xstrdup("X-RH-Entitlement-Data"),
|
|
|
0c9110 |
+ xasprintf(RHSMENT_ENT_DATA_BEGIN_TAG"%s"RHSMENT_ENT_DATA_END_TAG, ent_data));
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ sig_data = strremovech(sig_data, '\n');
|
|
|
0c9110 |
+ insert_map_string(config->ur_http_headers,
|
|
|
0c9110 |
+ xstrdup("X-RH-Entitlement-Sig"),
|
|
|
0c9110 |
+ xasprintf(RHSMENT_SIG_DATA_BEGIN_TAG"%s"RHSMENT_SIG_DATA_END_TAG, sig_data));
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+ else
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ log_notice("Cert file '%s' doesn't contain Entitlement and RSA Signature sections", config->ur_client_cert);
|
|
|
0c9110 |
+ log_notice("Not using HTTP authentication headers");
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ free(sig_data);
|
|
|
0c9110 |
+ free(ent_data);
|
|
|
0c9110 |
+ free(certdata);
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+ else if (strcmp(client_auth, "puppet") == 0)
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ config->ur_client_cert = puppet_config_print("hostcert");
|
|
|
0c9110 |
+ config->ur_client_key = puppet_config_print("hostprivkey");
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+ else
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ char *scratch = xstrdup(client_auth);
|
|
|
0c9110 |
+ config->ur_client_cert = xstrdup(strtok(scratch, ":"));
|
|
|
0c9110 |
+ config->ur_client_key = xstrdup(strtok(NULL, ":"));
|
|
|
0c9110 |
+ free(scratch);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ if (config->ur_client_cert == NULL || config->ur_client_key == NULL)
|
|
|
0c9110 |
+ error_msg_and_die("Invalid client authentication specification");
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ if (config->ur_client_cert && config->ur_client_key)
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ log_notice("Using client certificate: %s", config->ur_client_cert);
|
|
|
0c9110 |
+ log_notice("Using client private key: %s", config->ur_client_key);
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+}
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+void
|
|
|
0c9110 |
+ureport_server_config_load(struct ureport_server_config *config,
|
|
|
0c9110 |
+ map_string_t *settings)
|
|
|
0c9110 |
+{
|
|
|
0c9110 |
+ UREPORT_OPTION_VALUE_FROM_CONF(settings, "URL", config->ur_url, (const char *));
|
|
|
0c9110 |
+ UREPORT_OPTION_VALUE_FROM_CONF(settings, "SSLVerify", config->ur_ssl_verify, string_to_bool);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ bool include_auth = false;
|
|
|
0c9110 |
+ UREPORT_OPTION_VALUE_FROM_CONF(settings, "IncludeAuthData", include_auth, string_to_bool);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ if (include_auth)
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ const char *auth_items = NULL;
|
|
|
0c9110 |
+ UREPORT_OPTION_VALUE_FROM_CONF(settings, "AuthDataItems", auth_items, (const char *));
|
|
|
0c9110 |
+ config->ur_prefs.urp_auth_items = parse_list(auth_items);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ if (config->ur_prefs.urp_auth_items == NULL)
|
|
|
0c9110 |
+ log_warning("IncludeAuthData set to 'yes' but AuthDataItems is empty.");
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ const char *client_auth = NULL;
|
|
|
0c9110 |
+ UREPORT_OPTION_VALUE_FROM_CONF(settings, "SSLClientAuth", client_auth, (const char *));
|
|
|
0c9110 |
+ ureport_server_config_set_client_auth(config, client_auth);
|
|
|
0c9110 |
+}
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+void
|
|
|
0c9110 |
+ureport_server_config_init(struct ureport_server_config *config)
|
|
|
0c9110 |
+{
|
|
|
0c9110 |
+ config->ur_url = NULL;
|
|
|
0c9110 |
+ config->ur_ssl_verify = true;
|
|
|
0c9110 |
+ config->ur_client_cert = NULL;
|
|
|
0c9110 |
+ config->ur_client_key = NULL;
|
|
|
0c9110 |
+ config->ur_http_headers = new_map_string();
|
|
|
0c9110 |
+ config->ur_prefs.urp_auth_items = NULL;
|
|
|
0c9110 |
+}
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+void
|
|
|
0c9110 |
+ureport_server_config_destroy(struct ureport_server_config *config)
|
|
|
0c9110 |
+{
|
|
|
0c9110 |
+ free(config->ur_client_cert);
|
|
|
0c9110 |
+ config->ur_client_cert = DESTROYED_POINTER;
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ free(config->ur_client_key);
|
|
|
0c9110 |
+ config->ur_client_key = DESTROYED_POINTER;
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ g_list_free_full(config->ur_prefs.urp_auth_items, free);
|
|
|
0c9110 |
+ config->ur_prefs.urp_auth_items = DESTROYED_POINTER;
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ free_map_string(config->ur_http_headers);
|
|
|
0c9110 |
+ config->ur_http_headers = DESTROYED_POINTER;
|
|
|
0c9110 |
+}
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+void
|
|
|
0c9110 |
+ureport_server_response_free(struct ureport_server_response *resp)
|
|
|
0c9110 |
+{
|
|
|
0c9110 |
+ if (!resp)
|
|
|
0c9110 |
+ return;
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ free(resp->urr_solution);
|
|
|
0c9110 |
+ resp->urr_solution = DESTROYED_POINTER;
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ g_list_free_full(resp->urr_reported_to_list, g_free);
|
|
|
0c9110 |
+ resp->urr_reported_to_list = DESTROYED_POINTER;
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ free(resp->urr_bthash);
|
|
|
0c9110 |
+ resp->urr_bthash = DESTROYED_POINTER;
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ free(resp->urr_message);
|
|
|
0c9110 |
+ resp->urr_message = DESTROYED_POINTER;
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ free(resp->urr_value);
|
|
|
0c9110 |
+ resp->urr_value = DESTROYED_POINTER;
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ free(resp);
|
|
|
0c9110 |
+}
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+static char *
|
|
|
0c9110 |
+parse_solution_from_json_list(struct json_object *list,
|
|
|
0c9110 |
+ GList **reported_to)
|
|
|
0c9110 |
+{
|
|
|
0c9110 |
+ json_object *list_elem, *struct_elem;
|
|
|
0c9110 |
+ const char *cause, *note, *url;
|
|
|
0c9110 |
+ struct strbuf *solution_buf = strbuf_new();
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ const unsigned length = json_object_array_length(list);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ const char *one_format = _("Your problem seems to be caused by %s\n\n%s\n");
|
|
|
0c9110 |
+ if (length > 1)
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ strbuf_append_str(solution_buf, _("Your problem seems to be caused by one of the following:\n"));
|
|
|
0c9110 |
+ one_format = "\n* %s\n\n%s\n";
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ bool empty = true;
|
|
|
0c9110 |
+ for (unsigned i = 0; i < length; ++i)
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ list_elem = json_object_array_get_idx(list, i);
|
|
|
0c9110 |
+ if (!list_elem)
|
|
|
0c9110 |
+ continue;
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ if (!json_object_object_get_ex(list_elem, "cause", &struct_elem))
|
|
|
0c9110 |
+ continue;
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ cause = json_object_get_string(struct_elem);
|
|
|
0c9110 |
+ continue;
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ if (!json_object_object_get_ex(list_elem, "note", &struct_elem))
|
|
|
0c9110 |
+ continue;
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ note = json_object_get_string(struct_elem);
|
|
|
0c9110 |
+ if (!note)
|
|
|
0c9110 |
+ continue;
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ empty = false;
|
|
|
0c9110 |
+ strbuf_append_strf(solution_buf, one_format, cause, note);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ if (!json_object_object_get_ex(list_elem, "url", &struct_elem))
|
|
|
0c9110 |
+ continue;
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ url = json_object_get_string(struct_elem);
|
|
|
0c9110 |
+ if (url)
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ char *reported_to_line = xasprintf("%s: URL=%s", cause, url);
|
|
|
0c9110 |
+ *reported_to = g_list_append(*reported_to, reported_to_line);
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ if (empty)
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ strbuf_free(solution_buf);
|
|
|
0c9110 |
+ return NULL;
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ return strbuf_free_nobuf(solution_buf);
|
|
|
0c9110 |
+}
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+/* reported_to json element should be a list of structures
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ "reporter": "Bugzilla",
|
|
|
0c9110 |
+ "type": "url",
|
|
|
0c9110 |
+ "value": "https://bugzilla.redhat.com/show_bug.cgi?id=XYZ"
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+ */
|
|
|
0c9110 |
+static GList *
|
|
|
0c9110 |
+parse_reported_to_from_json_list(struct json_object *list)
|
|
|
0c9110 |
+{
|
|
|
0c9110 |
+ int i;
|
|
|
0c9110 |
+ json_object *list_elem, *struct_elem;
|
|
|
0c9110 |
+ const char *reporter, *value, *type;
|
|
|
0c9110 |
+ char *reported_to_line, *prefix;
|
|
|
0c9110 |
+ GList *result = NULL;
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ for (i = 0; i < json_object_array_length(list); ++i)
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ prefix = NULL;
|
|
|
0c9110 |
+ list_elem = json_object_array_get_idx(list, i);
|
|
|
0c9110 |
+ if (!list_elem)
|
|
|
0c9110 |
+ continue;
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ if (!json_object_object_get_ex(list_elem, "reporter", &struct_elem))
|
|
|
0c9110 |
+ continue;
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ reporter = json_object_get_string(struct_elem);
|
|
|
0c9110 |
+ if (!reporter)
|
|
|
0c9110 |
+ continue;
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ if (!json_object_object_get_ex(list_elem, "value", &struct_elem))
|
|
|
0c9110 |
+ continue;
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ value = json_object_get_string(struct_elem);
|
|
|
0c9110 |
+ if (!value)
|
|
|
0c9110 |
+ continue;
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ if (!json_object_object_get_ex(list_elem, "type", &struct_elem))
|
|
|
0c9110 |
+ continue;
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ type = json_object_get_string(struct_elem);
|
|
|
0c9110 |
+ if (type)
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ if (strcasecmp("url", type) == 0)
|
|
|
0c9110 |
+ prefix = xstrdup("URL=");
|
|
|
0c9110 |
+ else if (strcasecmp("bthash", type) == 0)
|
|
|
0c9110 |
+ prefix = xstrdup("BTHASH=");
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ if (!prefix)
|
|
|
0c9110 |
+ prefix = xstrdup("");
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ reported_to_line = xasprintf("%s: %s%s", reporter, prefix, value);
|
|
|
0c9110 |
+ free(prefix);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ result = g_list_append(result, reported_to_line);
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ return result;
|
|
|
0c9110 |
+}
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+/*
|
|
|
0c9110 |
+ * Reponse samples:
|
|
|
0c9110 |
+ * {"error":"field 'foo' is required"}
|
|
|
0c9110 |
+ * {"response":"true"}
|
|
|
0c9110 |
+ * {"response":"false"}
|
|
|
0c9110 |
+ */
|
|
|
0c9110 |
+static struct ureport_server_response *
|
|
|
0c9110 |
+ureport_server_parse_json(json_object *json)
|
|
|
0c9110 |
+{
|
|
|
0c9110 |
+ json_object *obj = NULL;
|
|
|
0c9110 |
+ if (json_object_object_get_ex(json, "error", &obj))
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ struct ureport_server_response *out_response = xzalloc(sizeof(*out_response));
|
|
|
0c9110 |
+ out_response->urr_is_error = true;
|
|
|
0c9110 |
+ /*
|
|
|
0c9110 |
+ * Used to use json_object_to_json_string(obj), but it returns
|
|
|
0c9110 |
+ * the string in quote marks (") - IOW, json-formatted string.
|
|
|
0c9110 |
+ */
|
|
|
0c9110 |
+ out_response->urr_value = xstrdup(json_object_get_string(obj));
|
|
|
0c9110 |
+ return out_response;
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ if (json_object_object_get_ex(json, "result", &obj))
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ struct ureport_server_response *out_response = xzalloc(sizeof(*out_response));
|
|
|
0c9110 |
+ out_response->urr_value = xstrdup(json_object_get_string(obj));
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ json_object *message = NULL;
|
|
|
0c9110 |
+ if (json_object_object_get_ex(json, "message", &message))
|
|
|
0c9110 |
+ out_response->urr_message = xstrdup(json_object_get_string(message));
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ json_object *bthash = NULL;
|
|
|
0c9110 |
+ if (json_object_object_get_ex(json, "bthash", &bthash))
|
|
|
0c9110 |
+ out_response->urr_bthash = xstrdup(json_object_get_string(bthash));
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ json_object *reported_to_list = NULL;
|
|
|
0c9110 |
+ if (json_object_object_get_ex(json, "reported_to", &reported_to_list))
|
|
|
0c9110 |
+ out_response->urr_reported_to_list =
|
|
|
0c9110 |
+ parse_reported_to_from_json_list(reported_to_list);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ json_object *solutions = NULL;
|
|
|
0c9110 |
+ if (json_object_object_get_ex(json, "solutions", &solutions))
|
|
|
0c9110 |
+ out_response->urr_solution =
|
|
|
0c9110 |
+ parse_solution_from_json_list(solutions, &(out_response->urr_reported_to_list));
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ return out_response;
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ return NULL;
|
|
|
0c9110 |
+}
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+struct ureport_server_response *
|
|
|
0c9110 |
+ureport_server_response_from_reply(post_state_t *post_state,
|
|
|
0c9110 |
+ struct ureport_server_config *config)
|
|
|
0c9110 |
+{
|
|
|
0c9110 |
+ /* Previously, the condition here was (post_state->errmsg[0] != '\0')
|
|
|
0c9110 |
+ * however when the server asks for optional client authentication and we do not have the certificates,
|
|
|
0c9110 |
+ * then post_state->errmsg contains "NSS: client certificate not found (nickname not specified)" even though
|
|
|
0c9110 |
+ * the request succeeded.
|
|
|
0c9110 |
+ */
|
|
|
0c9110 |
+ if (post_state->curl_result != CURLE_OK)
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ error_msg(_("Failed to upload uReport to the server '%s' with curl: %s"), config->ur_url, post_state->errmsg);
|
|
|
0c9110 |
+ return NULL;
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ if (post_state->http_resp_code == 404)
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ error_msg(_("The URL '%s' does not exist (got error 404 from server)"), config->ur_url);
|
|
|
0c9110 |
+ return NULL;
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ if (post_state->http_resp_code == 500)
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ error_msg(_("The server at '%s' encountered an internal error (got error 500)"), config->ur_url);
|
|
|
0c9110 |
+ return NULL;
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ if (post_state->http_resp_code == 503)
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ error_msg(_("The server at '%s' currently can't handle the request (got error 503)"), config->ur_url);
|
|
|
0c9110 |
+ return NULL;
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ if (post_state->http_resp_code != 202
|
|
|
0c9110 |
+ && post_state->http_resp_code != 400
|
|
|
0c9110 |
+ && post_state->http_resp_code != 413)
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ /* can't print better error message */
|
|
|
0c9110 |
+ error_msg(_("Unexpected HTTP response from '%s': %d"), config->ur_url, post_state->http_resp_code);
|
|
|
0c9110 |
+ log_notice("%s", post_state->body);
|
|
|
0c9110 |
+ return NULL;
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ json_object *const json = json_tokener_parse(post_state->body);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ if (is_error(json))
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ error_msg(_("Unable to parse response from ureport server at '%s'"), config->ur_url);
|
|
|
0c9110 |
+ log_notice("%s", post_state->body);
|
|
|
0c9110 |
+ json_object_put(json);
|
|
|
0c9110 |
+ return NULL;
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ struct ureport_server_response *response = ureport_server_parse_json(json);
|
|
|
0c9110 |
+ json_object_put(json);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ if (!response)
|
|
|
0c9110 |
+ error_msg(_("The response from '%s' has invalid format"), config->ur_url);
|
|
|
0c9110 |
+ else if ((post_state->http_resp_code == 202 && response->urr_is_error)
|
|
|
0c9110 |
+ || (post_state->http_resp_code != 202 && !response->urr_is_error))
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ /* HTTP CODE 202 means that call was successful but the response */
|
|
|
0c9110 |
+ /* has an error message */
|
|
|
0c9110 |
+ error_msg(_("Type mismatch has been detected in the response from '%s'"), config->ur_url);
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ return response;
|
|
|
0c9110 |
+}
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+bool
|
|
|
0c9110 |
+ureport_server_response_save_in_dump_dir(struct ureport_server_response *resp,
|
|
|
0c9110 |
+ const char *dump_dir_path,
|
|
|
0c9110 |
+ struct ureport_server_config *config)
|
|
|
0c9110 |
+{
|
|
|
0c9110 |
+ struct dump_dir *dd = dd_opendir(dump_dir_path, /* flags */ 0);
|
|
|
0c9110 |
+ if (!dd)
|
|
|
0c9110 |
+ return false;
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ if (resp->urr_bthash)
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ char *msg = xasprintf("uReport: BTHASH=%s", resp->urr_bthash);
|
|
|
0c9110 |
+ add_reported_to(dd, msg);
|
|
|
0c9110 |
+ free(msg);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ char *report_url = ureport_server_response_get_report_url(resp, config);
|
|
|
0c9110 |
+ msg = xasprintf("ABRT Server: URL=%s", report_url);
|
|
|
0c9110 |
+ add_reported_to(dd, msg);
|
|
|
0c9110 |
+ free(msg);
|
|
|
0c9110 |
+ free(report_url);
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ if (resp->urr_reported_to_list)
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ for (GList *e = resp->urr_reported_to_list; e; e = g_list_next(e))
|
|
|
0c9110 |
+ add_reported_to(dd, e->data);
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ if (resp->urr_solution)
|
|
|
0c9110 |
+ dd_save_text(dd, FILENAME_NOT_REPORTABLE, resp->urr_solution);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ dd_close(dd);
|
|
|
0c9110 |
+ return true;
|
|
|
0c9110 |
+}
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+char *
|
|
|
0c9110 |
+ureport_server_response_get_report_url(struct ureport_server_response *resp,
|
|
|
0c9110 |
+ struct ureport_server_config *config)
|
|
|
0c9110 |
+{
|
|
|
0c9110 |
+ char *bthash_url = concat_path_file(config->ur_url, BTHASH_URL_SFX);
|
|
|
0c9110 |
+ char *report_url = concat_path_file(bthash_url, resp->urr_bthash);
|
|
|
0c9110 |
+ free(bthash_url);
|
|
|
0c9110 |
+ return report_url;
|
|
|
0c9110 |
+}
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+static void
|
|
|
0c9110 |
+ureport_add_str(struct json_object *ur, const char *key, const char *s)
|
|
|
0c9110 |
{
|
|
|
0c9110 |
struct json_object *jstring = json_object_new_string(s);
|
|
|
0c9110 |
if (!jstring)
|
|
|
0c9110 |
@@ -37,7 +556,8 @@ static void ureport_add_str(struct json_object *ur, const char *key,
|
|
|
0c9110 |
json_object_object_add(ur, key, jstring);
|
|
|
0c9110 |
}
|
|
|
0c9110 |
|
|
|
0c9110 |
-char *ureport_from_dump_dir_ext(const char *dump_dir_path, const struct ureport_preferences *preferences)
|
|
|
0c9110 |
+char *
|
|
|
0c9110 |
+ureport_from_dump_dir_ext(const char *dump_dir_path, const struct ureport_preferences *preferences)
|
|
|
0c9110 |
{
|
|
|
0c9110 |
char *error_message;
|
|
|
0c9110 |
struct sr_report *report = sr_abrt_report_from_dir(dump_dir_path,
|
|
|
0c9110 |
@@ -77,28 +597,15 @@ char *ureport_from_dump_dir_ext(const char *dump_dir_path, const struct ureport_
|
|
|
0c9110 |
return json_ureport;
|
|
|
0c9110 |
}
|
|
|
0c9110 |
|
|
|
0c9110 |
-char *ureport_from_dump_dir(const char *dump_dir_path)
|
|
|
0c9110 |
+char *
|
|
|
0c9110 |
+ureport_from_dump_dir(const char *dump_dir_path)
|
|
|
0c9110 |
{
|
|
|
0c9110 |
return ureport_from_dump_dir_ext(dump_dir_path, /*no preferences*/NULL);
|
|
|
0c9110 |
}
|
|
|
0c9110 |
|
|
|
0c9110 |
-static char *new_json_attachment(const char *bthash, const char *type, const char *data)
|
|
|
0c9110 |
-{
|
|
|
0c9110 |
- struct json_object *attachment = json_object_new_object();
|
|
|
0c9110 |
- if (!attachment)
|
|
|
0c9110 |
- die_out_of_memory();
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- ureport_add_str(attachment, "bthash", bthash);
|
|
|
0c9110 |
- ureport_add_str(attachment, "type", type);
|
|
|
0c9110 |
- ureport_add_str(attachment, "data", data);
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- char *result = xstrdup(json_object_to_json_string(attachment));
|
|
|
0c9110 |
- json_object_put(attachment);
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- return result;
|
|
|
0c9110 |
-}
|
|
|
0c9110 |
-
|
|
|
0c9110 |
-struct post_state *ureport_post(const char *json, struct ureport_server_config *config)
|
|
|
0c9110 |
+struct post_state *
|
|
|
0c9110 |
+ureport_do_post(const char *json, struct ureport_server_config *config,
|
|
|
0c9110 |
+ const char *url_sfx)
|
|
|
0c9110 |
{
|
|
|
0c9110 |
int flags = POST_WANT_BODY | POST_WANT_ERROR_MSG;
|
|
|
0c9110 |
|
|
|
0c9110 |
@@ -130,8 +637,10 @@ struct post_state *ureport_post(const char *json, struct ureport_server_config *
|
|
|
0c9110 |
headers[i] = NULL;
|
|
|
0c9110 |
}
|
|
|
0c9110 |
|
|
|
0c9110 |
- post_string_as_form_data(post_state, config->ur_url, "application/json",
|
|
|
0c9110 |
- (const char **)headers, json);
|
|
|
0c9110 |
+ char *dest_url = concat_path_file(config->ur_url, url_sfx);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ post_string_as_form_data(post_state, dest_url, "application/json",
|
|
|
0c9110 |
+ (const char **)headers, json);
|
|
|
0c9110 |
|
|
|
0c9110 |
/* Client authentication failed. Try again without client auth.
|
|
|
0c9110 |
* CURLE_SSL_CONNECT_ERROR - cert not found/server doesnt trust the CA
|
|
|
0c9110 |
@@ -145,11 +654,13 @@ struct post_state *ureport_post(const char *json, struct ureport_server_config *
|
|
|
0c9110 |
free_post_state(post_state);
|
|
|
0c9110 |
post_state = new_post_state(flags);
|
|
|
0c9110 |
|
|
|
0c9110 |
- post_string_as_form_data(post_state, config->ur_url, "application/json",
|
|
|
0c9110 |
+ post_string_as_form_data(post_state, dest_url, "application/json",
|
|
|
0c9110 |
(const char **)headers, json);
|
|
|
0c9110 |
|
|
|
0c9110 |
}
|
|
|
0c9110 |
|
|
|
0c9110 |
+ free(dest_url);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
for (unsigned i = size_map_string(config->ur_http_headers); i != 0; --i)
|
|
|
0c9110 |
free(headers[i + 1]);
|
|
|
0c9110 |
free(headers);
|
|
|
0c9110 |
@@ -157,24 +668,70 @@ struct post_state *ureport_post(const char *json, struct ureport_server_config *
|
|
|
0c9110 |
return post_state;
|
|
|
0c9110 |
}
|
|
|
0c9110 |
|
|
|
0c9110 |
-struct post_state *ureport_attach_rhbz(const char *bthash, int rhbz_bug_id,
|
|
|
0c9110 |
- struct ureport_server_config *config)
|
|
|
0c9110 |
+struct ureport_server_response *
|
|
|
0c9110 |
+ureport_submit(const char *json, struct ureport_server_config *config)
|
|
|
0c9110 |
{
|
|
|
0c9110 |
- char *str_bug_id = xasprintf("%d", rhbz_bug_id);
|
|
|
0c9110 |
- char *json_attachment = new_json_attachment(bthash, "RHBZ", str_bug_id);
|
|
|
0c9110 |
- struct post_state *post_state = ureport_post(json_attachment, config);
|
|
|
0c9110 |
- free(str_bug_id);
|
|
|
0c9110 |
- free(json_attachment);
|
|
|
0c9110 |
+ struct post_state *post_state = ureport_do_post(json, config, UREPORT_SUBMIT_ACTION);
|
|
|
0c9110 |
|
|
|
0c9110 |
- return post_state;
|
|
|
0c9110 |
+ if (post_state == NULL)
|
|
|
0c9110 |
+ {
|
|
|
0c9110 |
+ error_msg(_("Failed on submitting the problem"));
|
|
|
0c9110 |
+ return NULL;
|
|
|
0c9110 |
+ }
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ struct ureport_server_response *resp = ureport_server_response_from_reply(post_state, config);
|
|
|
0c9110 |
+ free(post_state);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ return resp;
|
|
|
0c9110 |
}
|
|
|
0c9110 |
|
|
|
0c9110 |
-struct post_state *ureport_attach_email(const char *bthash, const char *email,
|
|
|
0c9110 |
- struct ureport_server_config *config)
|
|
|
0c9110 |
+static char *
|
|
|
0c9110 |
+ureport_json_attachment_new(const char *bthash, const char *type, const char *data)
|
|
|
0c9110 |
{
|
|
|
0c9110 |
- char *json_attachment = new_json_attachment(bthash, "email", email);
|
|
|
0c9110 |
- struct post_state *post_state = ureport_post(json_attachment, config);
|
|
|
0c9110 |
- free(json_attachment);
|
|
|
0c9110 |
+ struct json_object *attachment = json_object_new_object();
|
|
|
0c9110 |
+ if (!attachment)
|
|
|
0c9110 |
+ die_out_of_memory();
|
|
|
0c9110 |
|
|
|
0c9110 |
- return post_state;
|
|
|
0c9110 |
+ ureport_add_str(attachment, "bthash", bthash);
|
|
|
0c9110 |
+ ureport_add_str(attachment, "type", type);
|
|
|
0c9110 |
+ ureport_add_str(attachment, "data", data);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ char *result = xstrdup(json_object_to_json_string(attachment));
|
|
|
0c9110 |
+ json_object_put(attachment);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ return result;
|
|
|
0c9110 |
+}
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+bool
|
|
|
0c9110 |
+ureport_attach_string(const char *bthash, const char *type, const char *data,
|
|
|
0c9110 |
+ struct ureport_server_config *config)
|
|
|
0c9110 |
+{
|
|
|
0c9110 |
+ char *json = ureport_json_attachment_new(bthash, type, data);
|
|
|
0c9110 |
+ post_state_t *post_state = ureport_do_post(json, config, UREPORT_ATTACH_ACTION);
|
|
|
0c9110 |
+ free(json);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ struct ureport_server_response *resp =
|
|
|
0c9110 |
+ ureport_server_response_from_reply(post_state, config);
|
|
|
0c9110 |
+ free_post_state(post_state);
|
|
|
0c9110 |
+ /* don't use str_bo_bool() because we require "true" string */
|
|
|
0c9110 |
+ const int result = !resp || resp->urr_is_error || strcmp(resp->urr_value, "true") != 0;
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ if (resp && resp->urr_is_error)
|
|
|
0c9110 |
+ error_msg(_("The server at '%s' responded with an error: '%s'"),
|
|
|
0c9110 |
+ config->ur_url, resp->urr_value);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ ureport_server_response_free(resp);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ return result;
|
|
|
0c9110 |
+}
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+bool
|
|
|
0c9110 |
+ureport_attach_int(const char *bthash, const char *type, int data,
|
|
|
0c9110 |
+ struct ureport_server_config *config)
|
|
|
0c9110 |
+{
|
|
|
0c9110 |
+ char *data_str = xasprintf("%d", data);
|
|
|
0c9110 |
+ const bool result = ureport_attach_string(bthash, type, data_str, config);
|
|
|
0c9110 |
+ free(data_str);
|
|
|
0c9110 |
+
|
|
|
0c9110 |
+ return result;
|
|
|
0c9110 |
}
|
|
|
0c9110 |
diff --git a/src/plugins/reporter-ureport.c b/src/plugins/reporter-ureport.c
|
|
|
0c9110 |
index d827c7d..7bd3fb3 100644
|
|
|
0c9110 |
--- a/src/plugins/reporter-ureport.c
|
|
|
0c9110 |
+++ b/src/plugins/reporter-ureport.c
|
|
|
0c9110 |
@@ -22,482 +22,6 @@
|
|
|
0c9110 |
#include "ureport.h"
|
|
|
0c9110 |
#include "libreport_curl.h"
|
|
|
0c9110 |
|
|
|
0c9110 |
-#define CONF_FILE_PATH PLUGINS_CONF_DIR"/ureport.conf"
|
|
|
0c9110 |
-
|
|
|
0c9110 |
-#define REPORT_URL_SFX "reports/new/"
|
|
|
0c9110 |
-#define ATTACH_URL_SFX "reports/attach/"
|
|
|
0c9110 |
-#define BTHASH_URL_SFX "reports/bthash/"
|
|
|
0c9110 |
-
|
|
|
0c9110 |
-#define RHSM_CERT_PATH "/etc/pki/consumer/cert.pem"
|
|
|
0c9110 |
-#define RHSM_KEY_PATH "/etc/pki/consumer/key.pem"
|
|
|
0c9110 |
-
|
|
|
0c9110 |
-#define RHAP_PEM_DIR_PATH "/etc/pki/entitlement"
|
|
|
0c9110 |
-#define RHAP_ENT_DATA_BEGIN_TAG "-----BEGIN ENTITLEMENT DATA-----"
|
|
|
0c9110 |
-#define RHAP_ENT_DATA_END_TAG "-----END ENTITLEMENT DATA-----"
|
|
|
0c9110 |
-#define RHAP_SIG_DATA_BEGIN_TAG "-----BEGIN RSA SIGNATURE-----"
|
|
|
0c9110 |
-#define RHAP_SIG_DATA_END_TAG "-----END RSA SIGNATURE-----"
|
|
|
0c9110 |
-
|
|
|
0c9110 |
-#define VALUE_FROM_CONF(opt, var, tr) do { const char *value = getenv("uReport_"opt); \
|
|
|
0c9110 |
- if (!value) { value = get_map_string_item_or_NULL(settings, opt); } if (value) { var = tr(value); } \
|
|
|
0c9110 |
- } while(0)
|
|
|
0c9110 |
-
|
|
|
0c9110 |
-static char *puppet_config_print(const char *key)
|
|
|
0c9110 |
-{
|
|
|
0c9110 |
- char *command = xasprintf("puppet config print %s", key);
|
|
|
0c9110 |
- char *result = run_in_shell_and_save_output(0, command, NULL, NULL);
|
|
|
0c9110 |
- free(command);
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- /* run_in_shell_and_save_output always returns non-NULL */
|
|
|
0c9110 |
- if (result[0] != '/')
|
|
|
0c9110 |
- goto error;
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- char *newline = strchrnul(result, '\n');
|
|
|
0c9110 |
- if (!newline)
|
|
|
0c9110 |
- goto error;
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- *newline = '\0';
|
|
|
0c9110 |
- return result;
|
|
|
0c9110 |
-error:
|
|
|
0c9110 |
- free(result);
|
|
|
0c9110 |
- error_msg_and_die("Unable to determine puppet %s path (puppet not installed?)", key);
|
|
|
0c9110 |
-}
|
|
|
0c9110 |
-
|
|
|
0c9110 |
-static void parse_client_auth_paths(struct ureport_server_config *config, const char *client_auth)
|
|
|
0c9110 |
-{
|
|
|
0c9110 |
- if (client_auth == NULL)
|
|
|
0c9110 |
- return;
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- if (strcmp(client_auth, "") == 0)
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- config->ur_client_cert = NULL;
|
|
|
0c9110 |
- config->ur_client_key = NULL;
|
|
|
0c9110 |
- log_notice("Not using client authentication");
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
- else if (strcmp(client_auth, "rhsm") == 0)
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- config->ur_client_cert = xstrdup(RHSM_CERT_PATH);
|
|
|
0c9110 |
- config->ur_client_key = xstrdup(RHSM_KEY_PATH);
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
- else if (strcmp(client_auth, "rhsm-entitlement") == 0)
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- GList *certs = get_file_list(RHAP_PEM_DIR_PATH, "pem");
|
|
|
0c9110 |
- if (g_list_length(certs) != 2)
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- log_notice(RHAP_PEM_DIR_PATH" does not contain unique cert-key files pair");
|
|
|
0c9110 |
- log_notice("Not using client authentication");
|
|
|
0c9110 |
- return;
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- const char *cert = NULL;
|
|
|
0c9110 |
- const char *key = NULL;
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- file_obj_t *fst = (file_obj_t *)certs->data;
|
|
|
0c9110 |
- file_obj_t *scn = (file_obj_t *)certs->next->data;
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- if (strlen(fo_get_filename(fst)) < strlen(fo_get_filename(scn)))
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- cert = fo_get_filename(fst);
|
|
|
0c9110 |
- key = fo_get_filename(scn);
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- config->ur_client_cert = xstrdup(fo_get_fullpath(fst));
|
|
|
0c9110 |
- config->ur_client_key = xstrdup(fo_get_fullpath(scn));
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
- else
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- cert = fo_get_filename(scn);
|
|
|
0c9110 |
- key = fo_get_filename(fst);
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- config->ur_client_cert = xstrdup(fo_get_fullpath(scn));
|
|
|
0c9110 |
- config->ur_client_key = xstrdup(fo_get_fullpath(fst));
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- const bool iscomplement = prefixcmp(key, cert) != 0 || strcmp("-key", key + strlen(cert)) != 0;
|
|
|
0c9110 |
- g_list_free_full(certs, (GDestroyNotify)free_file_obj);
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- if (iscomplement)
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- log_notice("Key file '%s' isn't complement to cert file '%s'",
|
|
|
0c9110 |
- config->ur_client_key, config->ur_client_cert);
|
|
|
0c9110 |
- log_notice("Not using client authentication");
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- free(config->ur_client_cert);
|
|
|
0c9110 |
- free(config->ur_client_key);
|
|
|
0c9110 |
- config->ur_client_cert = NULL;
|
|
|
0c9110 |
- config->ur_client_key = NULL;
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- return;
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- char *certdata = xmalloc_open_read_close(config->ur_client_cert, /*no size limit*/NULL);
|
|
|
0c9110 |
- if (certdata != NULL)
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- char *ent_data = xstrdup_between(certdata,
|
|
|
0c9110 |
- RHAP_ENT_DATA_BEGIN_TAG, RHAP_ENT_DATA_END_TAG);
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- char *sig_data = xstrdup_between(certdata,
|
|
|
0c9110 |
- RHAP_SIG_DATA_BEGIN_TAG, RHAP_SIG_DATA_END_TAG);
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- if (ent_data != NULL && sig_data != NULL)
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- ent_data = strremovech(ent_data, '\n');
|
|
|
0c9110 |
- insert_map_string(config->ur_http_headers,
|
|
|
0c9110 |
- xstrdup("X-RH-Entitlement-Data"),
|
|
|
0c9110 |
- xasprintf(RHAP_ENT_DATA_BEGIN_TAG"%s"RHAP_ENT_DATA_END_TAG, ent_data));
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- sig_data = strremovech(sig_data, '\n');
|
|
|
0c9110 |
- insert_map_string(config->ur_http_headers,
|
|
|
0c9110 |
- xstrdup("X-RH-Entitlement-Sig"),
|
|
|
0c9110 |
- xasprintf(RHAP_SIG_DATA_BEGIN_TAG"%s"RHAP_SIG_DATA_END_TAG, sig_data));
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
- else
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- log_notice("Cert file '%s' doesn't contain Entitlement and RSA Signature sections", config->ur_client_cert);
|
|
|
0c9110 |
- log_notice("Not using HTTP authentication headers");
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- free(sig_data);
|
|
|
0c9110 |
- free(ent_data);
|
|
|
0c9110 |
- free(certdata);
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
- else if (strcmp(client_auth, "puppet") == 0)
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- config->ur_client_cert = puppet_config_print("hostcert");
|
|
|
0c9110 |
- config->ur_client_key = puppet_config_print("hostprivkey");
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
- else
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- char *scratch = xstrdup(client_auth);
|
|
|
0c9110 |
- config->ur_client_cert = xstrdup(strtok(scratch, ":"));
|
|
|
0c9110 |
- config->ur_client_key = xstrdup(strtok(NULL, ":"));
|
|
|
0c9110 |
- free(scratch);
|
|
|
0c9110 |
- if (config->ur_client_cert == NULL || config->ur_client_key == NULL)
|
|
|
0c9110 |
- error_msg_and_die("Invalid client authentication specification");
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- if (config->ur_client_cert && config->ur_client_key)
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- log_notice("Using client certificate: %s", config->ur_client_cert);
|
|
|
0c9110 |
- log_notice("Using client private key: %s", config->ur_client_key);
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
-}
|
|
|
0c9110 |
-
|
|
|
0c9110 |
-/*
|
|
|
0c9110 |
- * Loads uReport configuration from various sources.
|
|
|
0c9110 |
- *
|
|
|
0c9110 |
- * Replaces a value of an already configured option only if the
|
|
|
0c9110 |
- * option was found in a configuration source.
|
|
|
0c9110 |
- *
|
|
|
0c9110 |
- * @param config a server configuration to be populated
|
|
|
0c9110 |
- */
|
|
|
0c9110 |
-static void load_ureport_server_config(struct ureport_server_config *config, map_string_t *settings)
|
|
|
0c9110 |
-{
|
|
|
0c9110 |
- VALUE_FROM_CONF("URL", config->ur_url, (const char *));
|
|
|
0c9110 |
- VALUE_FROM_CONF("SSLVerify", config->ur_ssl_verify, string_to_bool);
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- bool include_auth = false;
|
|
|
0c9110 |
- VALUE_FROM_CONF("IncludeAuthData", include_auth, string_to_bool);
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- if (include_auth)
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- const char *auth_items = NULL;
|
|
|
0c9110 |
- VALUE_FROM_CONF("AuthDataItems", auth_items, (const char *));
|
|
|
0c9110 |
- config->ur_prefs.urp_auth_items = parse_list(auth_items);
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- if (config->ur_prefs.urp_auth_items == NULL)
|
|
|
0c9110 |
- log_warning("IncludeAuthData set to 'yes' but AuthDataItems is empty.");
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- const char *client_auth = NULL;
|
|
|
0c9110 |
- VALUE_FROM_CONF("SSLClientAuth", client_auth, (const char *));
|
|
|
0c9110 |
- parse_client_auth_paths(config, client_auth);
|
|
|
0c9110 |
-}
|
|
|
0c9110 |
-
|
|
|
0c9110 |
-struct ureport_server_response {
|
|
|
0c9110 |
- bool is_error;
|
|
|
0c9110 |
- char *value;
|
|
|
0c9110 |
- char *message;
|
|
|
0c9110 |
- char *bthash;
|
|
|
0c9110 |
- GList *reported_to_list;
|
|
|
0c9110 |
- char *solution;
|
|
|
0c9110 |
-};
|
|
|
0c9110 |
-
|
|
|
0c9110 |
-void free_ureport_server_response(struct ureport_server_response *resp)
|
|
|
0c9110 |
-{
|
|
|
0c9110 |
- if (!resp)
|
|
|
0c9110 |
- return;
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- free(resp->solution);
|
|
|
0c9110 |
- g_list_free_full(resp->reported_to_list, g_free);
|
|
|
0c9110 |
- free(resp->bthash);
|
|
|
0c9110 |
- free(resp->message);
|
|
|
0c9110 |
- free(resp->value);
|
|
|
0c9110 |
- free(resp);
|
|
|
0c9110 |
-}
|
|
|
0c9110 |
-
|
|
|
0c9110 |
-static char *parse_solution_from_json_list(struct json_object *list, GList **reported_to)
|
|
|
0c9110 |
-{
|
|
|
0c9110 |
- json_object *list_elem, *struct_elem;
|
|
|
0c9110 |
- const char *cause, *note, *url;
|
|
|
0c9110 |
- struct strbuf *solution_buf = strbuf_new();
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- const unsigned length = json_object_array_length(list);
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- const char *one_format = _("Your problem seems to be caused by %s\n\n%s\n");
|
|
|
0c9110 |
- if (length > 1)
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- strbuf_append_str(solution_buf, _("Your problem seems to be caused by one of the following:\n"));
|
|
|
0c9110 |
- one_format = "\n* %s\n\n%s\n";
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- bool empty = true;
|
|
|
0c9110 |
- for (unsigned i = 0; i < length; ++i)
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- list_elem = json_object_array_get_idx(list, i);
|
|
|
0c9110 |
- if (!list_elem)
|
|
|
0c9110 |
- continue;
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- if (!json_object_object_get_ex(list_elem, "cause", &struct_elem))
|
|
|
0c9110 |
- continue;
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- cause = json_object_get_string(struct_elem);
|
|
|
0c9110 |
- continue;
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- if (!json_object_object_get_ex(list_elem, "note", &struct_elem))
|
|
|
0c9110 |
- continue;
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- note = json_object_get_string(struct_elem);
|
|
|
0c9110 |
- if (!note)
|
|
|
0c9110 |
- continue;
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- empty = false;
|
|
|
0c9110 |
- strbuf_append_strf(solution_buf, one_format, cause, note);
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- if (!json_object_object_get_ex(list_elem, "url", &struct_elem))
|
|
|
0c9110 |
- continue;
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- url = json_object_get_string(struct_elem);
|
|
|
0c9110 |
- if (url)
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- char *reported_to_line = xasprintf("%s: URL=%s", cause, url);
|
|
|
0c9110 |
- *reported_to = g_list_append(*reported_to, reported_to_line);
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- if (empty)
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- strbuf_free(solution_buf);
|
|
|
0c9110 |
- return NULL;
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- return strbuf_free_nobuf(solution_buf);
|
|
|
0c9110 |
-}
|
|
|
0c9110 |
-
|
|
|
0c9110 |
-/* reported_to json element should be a list of structures
|
|
|
0c9110 |
-{ "reporter": "Bugzilla",
|
|
|
0c9110 |
- "type": "url",
|
|
|
0c9110 |
- "value": "https://bugzilla.redhat.com/show_bug.cgi?id=XYZ" } */
|
|
|
0c9110 |
-static GList *parse_reported_to_from_json_list(struct json_object *list)
|
|
|
0c9110 |
-{
|
|
|
0c9110 |
- int i;
|
|
|
0c9110 |
- json_object *list_elem, *struct_elem;
|
|
|
0c9110 |
- const char *reporter, *value, *type;
|
|
|
0c9110 |
- char *reported_to_line, *prefix;
|
|
|
0c9110 |
- GList *result = NULL;
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- for (i = 0; i < json_object_array_length(list); ++i)
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- prefix = NULL;
|
|
|
0c9110 |
- list_elem = json_object_array_get_idx(list, i);
|
|
|
0c9110 |
- if (!list_elem)
|
|
|
0c9110 |
- continue;
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- if (!json_object_object_get_ex(list_elem, "reporter", &struct_elem))
|
|
|
0c9110 |
- continue;
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- reporter = json_object_get_string(struct_elem);
|
|
|
0c9110 |
- if (!reporter)
|
|
|
0c9110 |
- continue;
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- if (!json_object_object_get_ex(list_elem, "value", &struct_elem))
|
|
|
0c9110 |
- continue;
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- value = json_object_get_string(struct_elem);
|
|
|
0c9110 |
- if (!value)
|
|
|
0c9110 |
- continue;
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- if (!json_object_object_get_ex(list_elem, "type", &struct_elem))
|
|
|
0c9110 |
- continue;
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- type = json_object_get_string(struct_elem);
|
|
|
0c9110 |
- if (type)
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- if (strcasecmp("url", type) == 0)
|
|
|
0c9110 |
- prefix = xstrdup("URL=");
|
|
|
0c9110 |
- else if (strcasecmp("bthash", type) == 0)
|
|
|
0c9110 |
- prefix = xstrdup("BTHASH=");
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- if (!prefix)
|
|
|
0c9110 |
- prefix = xstrdup("");
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- reported_to_line = xasprintf("%s: %s%s", reporter, prefix, value);
|
|
|
0c9110 |
- free(prefix);
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- result = g_list_append(result, reported_to_line);
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- return result;
|
|
|
0c9110 |
-}
|
|
|
0c9110 |
-
|
|
|
0c9110 |
-/*
|
|
|
0c9110 |
- * Reponse samples:
|
|
|
0c9110 |
- * {"error":"field 'foo' is required"}
|
|
|
0c9110 |
- * {"response":"true"}
|
|
|
0c9110 |
- * {"response":"false"}
|
|
|
0c9110 |
- */
|
|
|
0c9110 |
-static struct ureport_server_response *ureport_server_parse_json(json_object *json)
|
|
|
0c9110 |
-{
|
|
|
0c9110 |
- json_object *obj = NULL;
|
|
|
0c9110 |
- if (json_object_object_get_ex(json, "error", &obj))
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- struct ureport_server_response *out_response = xzalloc(sizeof(*out_response));
|
|
|
0c9110 |
- out_response->is_error = true;
|
|
|
0c9110 |
- /*
|
|
|
0c9110 |
- * Used to use json_object_to_json_string(obj), but it returns
|
|
|
0c9110 |
- * the string in quote marks (") - IOW, json-formatted string.
|
|
|
0c9110 |
- */
|
|
|
0c9110 |
- out_response->value = xstrdup(json_object_get_string(obj));
|
|
|
0c9110 |
- return out_response;
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- if (json_object_object_get_ex(json, "result", &obj))
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- struct ureport_server_response *out_response = xzalloc(sizeof(*out_response));
|
|
|
0c9110 |
- out_response->value = xstrdup(json_object_get_string(obj));
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- json_object *message = NULL;
|
|
|
0c9110 |
- if (json_object_object_get_ex(json, "message", &message))
|
|
|
0c9110 |
- out_response->message = xstrdup(json_object_get_string(message));
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- json_object *bthash = NULL;
|
|
|
0c9110 |
- if (json_object_object_get_ex(json, "bthash", &bthash))
|
|
|
0c9110 |
- out_response->bthash = xstrdup(json_object_get_string(bthash));
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- json_object *reported_to_list = NULL;
|
|
|
0c9110 |
- if (json_object_object_get_ex(json, "reported_to", &reported_to_list))
|
|
|
0c9110 |
- out_response->reported_to_list = parse_reported_to_from_json_list(reported_to_list);
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- json_object *solutions = NULL;
|
|
|
0c9110 |
- if (json_object_object_get_ex(json, "solutions", &solutions))
|
|
|
0c9110 |
- out_response->solution = parse_solution_from_json_list(solutions, &(out_response->reported_to_list));
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- return out_response;
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- return NULL;
|
|
|
0c9110 |
-}
|
|
|
0c9110 |
-
|
|
|
0c9110 |
-static struct ureport_server_response *get_server_response(post_state_t *post_state, struct ureport_server_config *config)
|
|
|
0c9110 |
-{
|
|
|
0c9110 |
- /* Previously, the condition here was (post_state->errmsg[0] != '\0')
|
|
|
0c9110 |
- * however when the server asks for optional client authentication and we do not have the certificates,
|
|
|
0c9110 |
- * then post_state->errmsg contains "NSS: client certificate not found (nickname not specified)" even though
|
|
|
0c9110 |
- * the request succeeded.
|
|
|
0c9110 |
- */
|
|
|
0c9110 |
- if (post_state->curl_result != CURLE_OK)
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- error_msg(_("Failed to upload uReport to the server '%s' with curl: %s"), config->ur_url, post_state->errmsg);
|
|
|
0c9110 |
- return NULL;
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- if (post_state->http_resp_code == 404)
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- error_msg(_("The URL '%s' does not exist (got error 404 from server)"), config->ur_url);
|
|
|
0c9110 |
- return NULL;
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- if (post_state->http_resp_code == 500)
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- error_msg(_("The server at '%s' encountered an internal error (got error 500)"), config->ur_url);
|
|
|
0c9110 |
- return NULL;
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- if (post_state->http_resp_code == 503)
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- error_msg(_("The server at '%s' currently can't handle the request (got error 503)"), config->ur_url);
|
|
|
0c9110 |
- return NULL;
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- if (post_state->http_resp_code != 202
|
|
|
0c9110 |
- && post_state->http_resp_code != 400
|
|
|
0c9110 |
- && post_state->http_resp_code != 413)
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- /* can't print better error message */
|
|
|
0c9110 |
- error_msg(_("Unexpected HTTP response from '%s': %d"), config->ur_url, post_state->http_resp_code);
|
|
|
0c9110 |
- log_notice("%s", post_state->body);
|
|
|
0c9110 |
- return NULL;
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- json_object *const json = json_tokener_parse(post_state->body);
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- if (is_error(json))
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- error_msg(_("Unable to parse response from ureport server at '%s'"), config->ur_url);
|
|
|
0c9110 |
- log_notice("%s", post_state->body);
|
|
|
0c9110 |
- json_object_put(json);
|
|
|
0c9110 |
- return NULL;
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- struct ureport_server_response *response = ureport_server_parse_json(json);
|
|
|
0c9110 |
- json_object_put(json);
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- if (!response)
|
|
|
0c9110 |
- error_msg(_("The response from '%s' has invalid format"), config->ur_url);
|
|
|
0c9110 |
- else if ((post_state->http_resp_code == 202 && response->is_error)
|
|
|
0c9110 |
- || (post_state->http_resp_code != 202 && !response->is_error))
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- /* HTTP CODE 202 means that call was successful but the response */
|
|
|
0c9110 |
- /* has an error message */
|
|
|
0c9110 |
- error_msg(_("Type mismatch has been detected in the response from '%s'"), config->ur_url);
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- return response;
|
|
|
0c9110 |
-}
|
|
|
0c9110 |
-
|
|
|
0c9110 |
-typedef post_state_t *(*attach_handler)(const char *, void *, struct ureport_server_config *);
|
|
|
0c9110 |
-
|
|
|
0c9110 |
-static post_state_t *wrp_ureport_attach_rhbz(const char *ureport_hash, int *rhbz_bug,
|
|
|
0c9110 |
- struct ureport_server_config *config)
|
|
|
0c9110 |
-{
|
|
|
0c9110 |
- return ureport_attach_rhbz(ureport_hash, *rhbz_bug, config);
|
|
|
0c9110 |
-}
|
|
|
0c9110 |
-
|
|
|
0c9110 |
-static bool perform_attach(struct ureport_server_config *config, const char *ureport_hash,
|
|
|
0c9110 |
- attach_handler handler, void *args)
|
|
|
0c9110 |
-{
|
|
|
0c9110 |
- char *dest_url = concat_path_file(config->ur_url, ATTACH_URL_SFX);
|
|
|
0c9110 |
- const char *old_url = config->ur_url;
|
|
|
0c9110 |
- config->ur_url = dest_url;
|
|
|
0c9110 |
- post_state_t *post_state = handler(ureport_hash, args, config);
|
|
|
0c9110 |
- config->ur_url = old_url;
|
|
|
0c9110 |
- free(dest_url);
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- struct ureport_server_response *resp = get_server_response(post_state, config);
|
|
|
0c9110 |
- free_post_state(post_state);
|
|
|
0c9110 |
- /* don't use str_bo_bool() because we require "true" string */
|
|
|
0c9110 |
- const int result = !resp || resp->is_error || strcmp(resp->value,"true") != 0;
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- if (resp && resp->is_error)
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- error_msg(_("The server at '%s' responded with an error: '%s'"), config->ur_url, resp->value);
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- free_ureport_server_response(resp);
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- return result;
|
|
|
0c9110 |
-}
|
|
|
0c9110 |
-
|
|
|
0c9110 |
int main(int argc, char **argv)
|
|
|
0c9110 |
{
|
|
|
0c9110 |
setlocale(LC_ALL, "");
|
|
|
0c9110 |
@@ -508,18 +32,8 @@ int main(int argc, char **argv)
|
|
|
0c9110 |
|
|
|
0c9110 |
abrt_init(argv);
|
|
|
0c9110 |
|
|
|
0c9110 |
- struct ureport_server_config config = {
|
|
|
0c9110 |
- .ur_url = NULL,
|
|
|
0c9110 |
- .ur_ssl_verify = true,
|
|
|
0c9110 |
- .ur_client_cert = NULL,
|
|
|
0c9110 |
- .ur_client_key = NULL,
|
|
|
0c9110 |
- .ur_http_headers = NULL,
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- .urp_auth_items = NULL,
|
|
|
0c9110 |
- },
|
|
|
0c9110 |
- };
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- config.ur_http_headers = new_map_string();
|
|
|
0c9110 |
+ struct ureport_server_config config;
|
|
|
0c9110 |
+ ureport_server_config_init(&config);
|
|
|
0c9110 |
|
|
|
0c9110 |
enum {
|
|
|
0c9110 |
OPT_v = 1 << 0,
|
|
|
0c9110 |
@@ -532,7 +46,7 @@ int main(int argc, char **argv)
|
|
|
0c9110 |
|
|
|
0c9110 |
int ret = 1; /* "failure" (for now) */
|
|
|
0c9110 |
bool insecure = !config.ur_ssl_verify;
|
|
|
0c9110 |
- const char *conf_file = CONF_FILE_PATH;
|
|
|
0c9110 |
+ const char *conf_file = UREPORT_CONF_FILE_PATH;
|
|
|
0c9110 |
const char *arg_server_url = NULL;
|
|
|
0c9110 |
const char *client_auth = NULL;
|
|
|
0c9110 |
GList *auth_items = NULL;
|
|
|
0c9110 |
@@ -575,7 +89,7 @@ int main(int argc, char **argv)
|
|
|
0c9110 |
"\n"
|
|
|
0c9110 |
"Upload micro report or add an attachment to a micro report\n"
|
|
|
0c9110 |
"\n"
|
|
|
0c9110 |
- "Reads the default configuration from "CONF_FILE_PATH
|
|
|
0c9110 |
+ "Reads the default configuration from "UREPORT_CONF_FILE_PATH
|
|
|
0c9110 |
);
|
|
|
0c9110 |
|
|
|
0c9110 |
unsigned opts = parse_opts(argc, argv, program_options, program_usage_string);
|
|
|
0c9110 |
@@ -583,14 +97,14 @@ int main(int argc, char **argv)
|
|
|
0c9110 |
map_string_t *settings = new_map_string();
|
|
|
0c9110 |
load_conf_file(conf_file, settings, /*skip key w/o values:*/ false);
|
|
|
0c9110 |
|
|
|
0c9110 |
- load_ureport_server_config(&config, settings);
|
|
|
0c9110 |
+ ureport_server_config_load(&config, settings);
|
|
|
0c9110 |
|
|
|
0c9110 |
if (opts & OPT_u)
|
|
|
0c9110 |
config.ur_url = arg_server_url;
|
|
|
0c9110 |
if (opts & OPT_k)
|
|
|
0c9110 |
config.ur_ssl_verify = !insecure;
|
|
|
0c9110 |
if (opts & OPT_t)
|
|
|
0c9110 |
- parse_client_auth_paths(&config, client_auth);
|
|
|
0c9110 |
+ ureport_server_config_set_client_auth(&config, client_auth);
|
|
|
0c9110 |
if (opts & OPT_i)
|
|
|
0c9110 |
{
|
|
|
0c9110 |
g_list_free_full(config.ur_prefs.urp_auth_items, free);
|
|
|
0c9110 |
@@ -600,8 +114,6 @@ int main(int argc, char **argv)
|
|
|
0c9110 |
if (!config.ur_url)
|
|
|
0c9110 |
error_msg_and_die("You need to specify server URL");
|
|
|
0c9110 |
|
|
|
0c9110 |
- post_state_t *post_state = NULL;
|
|
|
0c9110 |
-
|
|
|
0c9110 |
if (ureport_hash && ureport_hash_from_rt)
|
|
|
0c9110 |
error_msg_and_die("You need to pass either -a bthash or -A");
|
|
|
0c9110 |
|
|
|
0c9110 |
@@ -654,7 +166,7 @@ int main(int argc, char **argv)
|
|
|
0c9110 |
|
|
|
0c9110 |
if (email_address_from_env)
|
|
|
0c9110 |
{
|
|
|
0c9110 |
- VALUE_FROM_CONF("ContactEmail", email_address, (const char *));
|
|
|
0c9110 |
+ UREPORT_OPTION_VALUE_FROM_CONF(settings, "ContactEmail", email_address, (const char *));
|
|
|
0c9110 |
|
|
|
0c9110 |
if (!email_address)
|
|
|
0c9110 |
error_msg_and_die(_("Neither environment variable 'uReport_ContactEmail' nor configuration option 'ContactEmail' is set"));
|
|
|
0c9110 |
@@ -667,13 +179,13 @@ int main(int argc, char **argv)
|
|
|
0c9110 |
|
|
|
0c9110 |
if (rhbz_bug >= 0)
|
|
|
0c9110 |
{
|
|
|
0c9110 |
- if (perform_attach(&config, ureport_hash, (attach_handler)wrp_ureport_attach_rhbz, (void *)&rhbz_bug))
|
|
|
0c9110 |
+ if (ureport_attach_int(ureport_hash, "RHBZ", rhbz_bug, &config))
|
|
|
0c9110 |
goto finalize;
|
|
|
0c9110 |
}
|
|
|
0c9110 |
|
|
|
0c9110 |
if (email_address)
|
|
|
0c9110 |
{
|
|
|
0c9110 |
- if (perform_attach(&config, ureport_hash, (attach_handler)ureport_attach_email, (void *)email_address))
|
|
|
0c9110 |
+ if (ureport_attach_string(ureport_hash, "email", email_address, &config))
|
|
|
0c9110 |
goto finalize;
|
|
|
0c9110 |
}
|
|
|
0c9110 |
|
|
|
0c9110 |
@@ -683,95 +195,48 @@ int main(int argc, char **argv)
|
|
|
0c9110 |
if (!ureport_hash && (rhbz_bug >= 0 || email_address))
|
|
|
0c9110 |
error_msg_and_die(_("You need to specify bthash of the uReport to attach."));
|
|
|
0c9110 |
|
|
|
0c9110 |
- /* -b, -a nor -r were specified - upload uReport from dump_dir */
|
|
|
0c9110 |
- const char *server_url = config.ur_url;
|
|
|
0c9110 |
- char *dest_url = concat_path_file(config.ur_url, REPORT_URL_SFX);
|
|
|
0c9110 |
- config.ur_url = dest_url;
|
|
|
0c9110 |
-
|
|
|
0c9110 |
char *json_ureport = ureport_from_dump_dir_ext(dump_dir_path, &(config.ur_prefs));
|
|
|
0c9110 |
if (!json_ureport)
|
|
|
0c9110 |
{
|
|
|
0c9110 |
error_msg(_("Not uploading an empty uReport"));
|
|
|
0c9110 |
- goto format_err;
|
|
|
0c9110 |
+ goto finalize;
|
|
|
0c9110 |
}
|
|
|
0c9110 |
|
|
|
0c9110 |
- post_state = ureport_post(json_ureport, &config);
|
|
|
0c9110 |
+ struct ureport_server_response *response = ureport_submit(json_ureport, &config);
|
|
|
0c9110 |
free(json_ureport);
|
|
|
0c9110 |
|
|
|
0c9110 |
- if (!post_state)
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- error_msg(_("Failed on submitting the problem"));
|
|
|
0c9110 |
- goto format_err;
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- struct ureport_server_response *response = get_server_response(post_state, &config);
|
|
|
0c9110 |
-
|
|
|
0c9110 |
if (!response)
|
|
|
0c9110 |
- goto format_err;
|
|
|
0c9110 |
+ goto finalize;
|
|
|
0c9110 |
|
|
|
0c9110 |
- if (!response->is_error)
|
|
|
0c9110 |
+ if (!response->urr_is_error)
|
|
|
0c9110 |
{
|
|
|
0c9110 |
- log_notice("is known: %s", response->value);
|
|
|
0c9110 |
+ log_notice("is known: %s", response->urr_value);
|
|
|
0c9110 |
ret = 0; /* "success" */
|
|
|
0c9110 |
|
|
|
0c9110 |
- dd = dd_opendir(dump_dir_path, /* flags */ 0);
|
|
|
0c9110 |
- if (!dd)
|
|
|
0c9110 |
+ if (!ureport_server_response_save_in_dump_dir(response, dump_dir_path, &config))
|
|
|
0c9110 |
xfunc_die();
|
|
|
0c9110 |
|
|
|
0c9110 |
- if (response->bthash)
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- char *msg = xasprintf("uReport: BTHASH=%s", response->bthash);
|
|
|
0c9110 |
- add_reported_to(dd, msg);
|
|
|
0c9110 |
- free(msg);
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- char *bthash_url = concat_path_file(server_url, BTHASH_URL_SFX);
|
|
|
0c9110 |
- msg = xasprintf("ABRT Server: URL=%s%s", bthash_url, response->bthash);
|
|
|
0c9110 |
- add_reported_to(dd, msg);
|
|
|
0c9110 |
- free(msg);
|
|
|
0c9110 |
- free(bthash_url);
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- if (response->reported_to_list)
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- for (GList *e = response->reported_to_list; e; e = g_list_next(e))
|
|
|
0c9110 |
- add_reported_to(dd, e->data);
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- if (response->solution)
|
|
|
0c9110 |
- dd_save_text(dd, FILENAME_NOT_REPORTABLE, response->solution);
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- dd_close(dd);
|
|
|
0c9110 |
-
|
|
|
0c9110 |
/* If a reported problem is not known then emit NEEDMORE */
|
|
|
0c9110 |
- if (strcmp("true", response->value) == 0)
|
|
|
0c9110 |
+ if (strcmp("true", response->urr_value) == 0)
|
|
|
0c9110 |
{
|
|
|
0c9110 |
log(_("This problem has already been reported."));
|
|
|
0c9110 |
- if (response->message)
|
|
|
0c9110 |
- log(response->message);
|
|
|
0c9110 |
+ if (response->urr_message)
|
|
|
0c9110 |
+ log(response->urr_message);
|
|
|
0c9110 |
|
|
|
0c9110 |
ret = EXIT_STOP_EVENT_RUN;
|
|
|
0c9110 |
}
|
|
|
0c9110 |
}
|
|
|
0c9110 |
else
|
|
|
0c9110 |
- {
|
|
|
0c9110 |
- error_msg(_("Server responded with an error: '%s'"), response->value);
|
|
|
0c9110 |
- }
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- free_ureport_server_response(response);
|
|
|
0c9110 |
+ error_msg(_("Server responded with an error: '%s'"), response->urr_value);
|
|
|
0c9110 |
|
|
|
0c9110 |
-format_err:
|
|
|
0c9110 |
- free_post_state(post_state);
|
|
|
0c9110 |
- free(dest_url);
|
|
|
0c9110 |
+ ureport_server_response_free(response);
|
|
|
0c9110 |
|
|
|
0c9110 |
finalize:
|
|
|
0c9110 |
- if (config.ur_prefs.urp_auth_items != auth_items)
|
|
|
0c9110 |
- g_list_free_full(config.ur_prefs.urp_auth_items, free);
|
|
|
0c9110 |
-
|
|
|
0c9110 |
- free_map_string(config.ur_http_headers);
|
|
|
0c9110 |
+ if (config.ur_prefs.urp_auth_items == auth_items)
|
|
|
0c9110 |
+ config.ur_prefs.urp_auth_items = NULL;
|
|
|
0c9110 |
|
|
|
0c9110 |
free_map_string(settings);
|
|
|
0c9110 |
- free(config.ur_client_cert);
|
|
|
0c9110 |
- free(config.ur_client_key);
|
|
|
0c9110 |
+ ureport_server_config_destroy(&config);
|
|
|
0c9110 |
|
|
|
0c9110 |
return ret;
|
|
|
0c9110 |
}
|
|
|
0c9110 |
--
|
|
|
0c9110 |
1.8.3.1
|
|
|
0c9110 |
|