From: Florian Forster Date: Sat, 23 Mar 2013 17:07:03 +0000 (+0100) Subject: write_mongodb plugin: Add authentication options. X-Git-Tag: collectd-5.3.0~20 X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=391ae7a50c94a3f560dcbfb8af7bca3903da84f8 write_mongodb plugin: Add authentication options. Fixes Github issue #282. --- diff --git a/src/collectd.conf.in b/src/collectd.conf.in index fc8d3f27..5af15684 100644 --- a/src/collectd.conf.in +++ b/src/collectd.conf.in @@ -1081,6 +1081,9 @@ # Port "27017" # Timeout 1000 # StoreRates false +# Database "auth_db" +# User "auth_user" +# Password "auth_passwd" # # diff --git a/src/collectd.conf.pod b/src/collectd.conf.pod index 7dbb2c54..8606d3e0 100644 --- a/src/collectd.conf.pod +++ b/src/collectd.conf.pod @@ -5679,6 +5679,16 @@ If set to B (the default), convert counter values to rates. If set to B counter values are stored as is, i.e. as an increasing integer number. +=item B I + +=item B I + +=item B I + +Sets the information used when authenticating to a I database. The +fields are optional (in which case no authentication is attempted), but if you +want to use authentication all three fields must be set. + =back =head2 Plugin C diff --git a/src/write_mongodb.c b/src/write_mongodb.c index c7b76820..30e261c9 100644 --- a/src/write_mongodb.c +++ b/src/write_mongodb.c @@ -1,6 +1,6 @@ /** * collectd - src/write_mongodb.c - * Copyright (C) 2010-2012 Florian Forster + * Copyright (C) 2010-2013 Florian Forster * Copyright (C) 2010 Akkarit Sangpetch * Copyright (C) 2012 Chris Lundquist * @@ -23,7 +23,7 @@ * DEALINGS IN THE SOFTWARE. * * Authors: - * Florian Forster + * Florian Forster * Akkarit Sangpetch * Chris Lundquist **/ @@ -51,6 +51,11 @@ struct wm_node_s int port; int timeout; + /* Authentication information */ + char *db; + char *user; + char *passwd; + _Bool store_rates; mongo conn[1]; @@ -183,6 +188,23 @@ static int wm_write (const data_set_t *ds, /* {{{ */ return (-1); } + if ((node->db != NULL) && (node->user != NULL) && (node->passwd != NULL)) + { + status = mongo_cmd_authenticate (node->conn, + node->db, node->user, node->passwd); + if (status != MONGO_OK) + { + ERROR ("write_mongodb plugin: Authenticating to [%s]%i for database " + "\"%s\" as user \"%s\" failed.", + (node->host != NULL) ? node->host : "localhost", + (node->port != 0) ? node->port : MONGO_DEFAULT_PORT, + node->db, node->user); + mongo_destroy (node->conn); + pthread_mutex_unlock (&node->lock); + return (-1); + } + } + if (node->timeout > 0) { status = mongo_set_op_timeout (node->conn, node->timeout); if (status != MONGO_OK) { @@ -203,13 +225,14 @@ static int wm_write (const data_set_t *ds, /* {{{ */ status = mongo_insert (node->conn, collection_name, bson_record); #endif - if(status != MONGO_OK) + if (status != MONGO_OK) { ERROR ( "write_mongodb plugin: error inserting record: %d", node->conn->err); if (node->conn->err != MONGO_BSON_INVALID) ERROR ("write_mongodb plugin: %s", node->conn->errstr); - else if (bson_record->err) - ERROR ("write_mongodb plugin: %s", bson_record->errstr); + else + ERROR ("write_mongodb plugin: Invalid BSON structure, error = %#x", + (unsigned int) bson_record->err); /* Disconnect except on data errors. */ if ((node->conn->err != MONGO_BSON_INVALID) @@ -281,6 +304,12 @@ static int wm_config_node (oconfig_item_t *ci) /* {{{ */ status = cf_util_get_int (child, &node->timeout); else if (strcasecmp ("StoreRates", child->key) == 0) status = cf_util_get_boolean (child, &node->store_rates); + else if (strcasecmp ("Database", child->key) == 0) + status = cf_util_get_string (child, &node->db); + else if (strcasecmp ("User", child->key) == 0) + status = cf_util_get_string (child, &node->user); + else if (strcasecmp ("Password", child->key) == 0) + status = cf_util_get_string (child, &node->passwd); else WARNING ("write_mongodb plugin: Ignoring unknown config option \"%s\".", child->key); @@ -289,6 +318,20 @@ static int wm_config_node (oconfig_item_t *ci) /* {{{ */ break; } /* for (i = 0; i < ci->children_num; i++) */ + if ((node->db != NULL) || (node->user != NULL) || (node->passwd != NULL)) + { + if ((node->db == NULL) || (node->user == NULL) || (node->passwd == NULL)) + { + WARNING ("write_mongodb plugin: Authentication requires the " + "\"Database\", \"User\" and \"Password\" options to be specified, " + "but at last one of them is missing. Authentication will NOT be " + "used."); + sfree (node->db); + sfree (node->user); + sfree (node->passwd); + } + } + if (status == 0) { char cb_name[DATA_MAX_NAME_LEN];