summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Nierlein <sven@nierlein.de>2017-05-28 19:10:20 (GMT)
committerSven Nierlein <sven@nierlein.de>2017-05-28 19:10:20 (GMT)
commit75e345f70d384609ddae8b636f07a377897bc355 (patch)
tree63bb884005a402b2c0f3a77cbfbe7117b6007a34
parent5b1c2aa5f64f5fe122efce2933c01c3b63bb32e9 (diff)
downloadmonitoring-plugins-75e345f.tar.gz
check_curl: add proxy auth option
-rw-r--r--plugins/check_curl.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/plugins/check_curl.c b/plugins/check_curl.c
index 9d4c3f0..1544195 100644
--- a/plugins/check_curl.c
+++ b/plugins/check_curl.c
@@ -175,6 +175,7 @@ char string_expect[MAX_INPUT_BUFFER] = "";
175char server_expect[MAX_INPUT_BUFFER] = HTTP_EXPECT; 175char server_expect[MAX_INPUT_BUFFER] = HTTP_EXPECT;
176int server_expect_yn = 0; 176int server_expect_yn = 0;
177char user_auth[MAX_INPUT_BUFFER] = ""; 177char user_auth[MAX_INPUT_BUFFER] = "";
178char proxy_auth[MAX_INPUT_BUFFER] = "";
178char **http_opt_headers; 179char **http_opt_headers;
179int http_opt_headers_count = 0; 180int http_opt_headers_count = 0;
180int display_html = FALSE; 181int display_html = FALSE;
@@ -520,6 +521,10 @@ check_http (void)
520 /* set default or user-given user agent identification */ 521 /* set default or user-given user agent identification */
521 handle_curl_option_return_code (curl_easy_setopt (curl, CURLOPT_USERAGENT, user_agent), "CURLOPT_USERAGENT"); 522 handle_curl_option_return_code (curl_easy_setopt (curl, CURLOPT_USERAGENT, user_agent), "CURLOPT_USERAGENT");
522 523
524 /* proxy-authentication */
525 if (strcmp(proxy_auth, ""))
526 handle_curl_option_return_code (curl_easy_setopt (curl, CURLOPT_PROXYUSERPWD, proxy_auth), "CURLOPT_PROXYUSERPWD");
527
523 /* authentication */ 528 /* authentication */
524 if (strcmp(user_auth, "")) 529 if (strcmp(user_auth, ""))
525 handle_curl_option_return_code (curl_easy_setopt (curl, CURLOPT_USERPWD, user_auth), "CURLOPT_USERPWD"); 530 handle_curl_option_return_code (curl_easy_setopt (curl, CURLOPT_USERPWD, user_auth), "CURLOPT_USERPWD");
@@ -1128,6 +1133,7 @@ process_arguments (int argc, char **argv)
1128 {"url", required_argument, 0, 'u'}, 1133 {"url", required_argument, 0, 'u'},
1129 {"port", required_argument, 0, 'p'}, 1134 {"port", required_argument, 0, 'p'},
1130 {"authorization", required_argument, 0, 'a'}, 1135 {"authorization", required_argument, 0, 'a'},
1136 {"proxy-authorization", required_argument, 0, 'b'},
1131 {"header-string", required_argument, 0, 'd'}, 1137 {"header-string", required_argument, 0, 'd'},
1132 {"string", required_argument, 0, 's'}, 1138 {"string", required_argument, 0, 's'},
1133 {"expect", required_argument, 0, 'e'}, 1139 {"expect", required_argument, 0, 'e'},
@@ -1171,7 +1177,7 @@ process_arguments (int argc, char **argv)
1171 } 1177 }
1172 1178
1173 while (1) { 1179 while (1) {
1174 c = getopt_long (argc, argv, "Vvh46t:c:w:A:k:H:P:j:T:I:a:d:e:p:s:R:r:u:f:C:J:K:nlLS::m:M:NE", longopts, &option); 1180 c = getopt_long (argc, argv, "Vvh46t:c:w:A:k:H:P:j:T:I:a:b:d:e:p:s:R:r:u:f:C:J:K:nlLS::m:M:NE", longopts, &option);
1175 if (c == -1 || c == EOF || c == 1) 1181 if (c == -1 || c == EOF || c == 1)
1176 break; 1182 break;
1177 1183
@@ -1238,6 +1244,10 @@ process_arguments (int argc, char **argv)
1238 strncpy (user_auth, optarg, MAX_INPUT_BUFFER - 1); 1244 strncpy (user_auth, optarg, MAX_INPUT_BUFFER - 1);
1239 user_auth[MAX_INPUT_BUFFER - 1] = 0; 1245 user_auth[MAX_INPUT_BUFFER - 1] = 0;
1240 break; 1246 break;
1247 case 'b': /* proxy-authorization info */
1248 strncpy (proxy_auth, optarg, MAX_INPUT_BUFFER - 1);
1249 proxy_auth[MAX_INPUT_BUFFER - 1] = 0;
1250 break;
1241 case 'P': /* HTTP POST data in URL encoded format; ignored if settings already */ 1251 case 'P': /* HTTP POST data in URL encoded format; ignored if settings already */
1242 if (! http_post_data) 1252 if (! http_post_data)
1243 http_post_data = strdup (optarg); 1253 http_post_data = strdup (optarg);
@@ -1648,6 +1658,8 @@ print_help (void)
1648 printf (" %s\n", _("Return CRITICAL if found, OK if not\n")); 1658 printf (" %s\n", _("Return CRITICAL if found, OK if not\n"));
1649 printf (" %s\n", "-a, --authorization=AUTH_PAIR"); 1659 printf (" %s\n", "-a, --authorization=AUTH_PAIR");
1650 printf (" %s\n", _("Username:password on sites with basic authentication")); 1660 printf (" %s\n", _("Username:password on sites with basic authentication"));
1661 printf (" %s\n", "-b, --proxy-authorization=AUTH_PAIR");
1662 printf (" %s\n", _("Username:password on proxy-servers with basic authentication"));
1651 printf (" %s\n", "-A, --useragent=STRING"); 1663 printf (" %s\n", "-A, --useragent=STRING");
1652 printf (" %s\n", _("String to be sent in http header as \"User Agent\"")); 1664 printf (" %s\n", _("String to be sent in http header as \"User Agent\""));
1653 printf (" %s\n", "-k, --header=STRING"); 1665 printf (" %s\n", "-k, --header=STRING");