this patch allows to set agent port at runtime. In order to align with
both `addr` and `check-addr` commands, also add the possibility to
optionnaly set port on `agent-addr` command. This led to a small
refactor in order to use the same function for both `agent-addr` and
`agent-port` commands.

Signed-off-by: William Dauchy <wdau...@gmail.com>
---
 doc/management.txt |  6 +++-
 src/server.c       | 77 ++++++++++++++++++++++++++++++++++++++++------
 2 files changed, 73 insertions(+), 10 deletions(-)

diff --git a/doc/management.txt b/doc/management.txt
index bff770e4e..423c614b2 100644
--- a/doc/management.txt
+++ b/doc/management.txt
@@ -1828,10 +1828,14 @@ set server <backend>/<server> agent [ up | down ]
   switch a server's state regardless of some slow agent checks for example.
   Note that the change is propagated to tracking servers if any.
 
-set server <backend>/<server> agent-addr <addr>
+set server <backend>/<server> agent-addr <addr> [port <port>]
   Change addr for servers agent checks. Allows to migrate agent-checks to
   another address at runtime. You can specify both IP and hostname, it will be
   resolved.
+  Optionally, change the port agent.
+
+set server <backend>/<server> agent-port <port>
+  Change the port used for agent checks.
 
 set server <backend>/<server> agent-send <value>
   Change agent string sent to agent check target. Allows to update string while
diff --git a/src/server.c b/src/server.c
index 533755f1e..a983d5d68 100644
--- a/src/server.c
+++ b/src/server.c
@@ -56,6 +56,8 @@ static int srv_state_get_version(FILE *f);
 static void srv_cleanup_connections(struct server *srv);
 static const char *update_server_check_addr_port(struct server *s, const char 
*addr,
                                                 const char *port);
+static const char *update_server_agent_addr_port(struct server *s, const char 
*addr,
+                                                const char *port);
 
 /* List head of all known server keywords */
 static struct srv_kw_list srv_keywords = {
@@ -3573,6 +3575,47 @@ int update_server_addr(struct server *s, void *ip, int 
ip_sin_family, const char
        return 0;
 }
 
+/* update agent health check address and port
+ * addr can be ip4/ip6 or a hostname
+ * must be called with the server lock held.
+ */
+static const char *update_server_agent_addr_port(struct server *s, const char 
*addr,
+                                                const char *port)
+{
+       struct sockaddr_storage sk;
+       struct buffer *msg;
+       int new_port;
+
+       msg = get_trash_chunk();
+
+       if (!(s->agent.state & CHK_ST_ENABLED)) {
+               chunk_appendf(msg, "agent checks are not enabled on this 
server.\n");
+               goto out;
+       }
+
+       if (addr) {
+               memset(&sk, 0, sizeof(struct sockaddr_storage));
+               if (str2ip(addr, &sk) == NULL) {
+                       chunk_appendf(msg, "invalid addr '%s'\n", addr);
+                       goto out;
+               }
+               set_srv_agent_addr(s, &sk);
+       }
+       if (port) {
+               if (strl2irc(port, strlen(port), &new_port) != 0) {
+                       chunk_appendf(msg, "provided port is not an integer\n");
+                       goto out;
+               }
+               if (new_port < 0 || new_port > 65535) {
+                       chunk_appendf(msg, "provided port is invalid\n");
+                       goto out;
+               }
+               set_srv_agent_port(s, new_port);
+       }
+out:
+       return msg->area;
+}
+
 /* update server health check address and port
  * addr must be ip4 or ip6, it won't be resolved
  * must be called with the server lock held.
@@ -4428,15 +4471,31 @@ static int cli_parse_set_server(char **args, char 
*payload, struct appctx *appct
                        cli_err(appctx, "'set server <srv> agent' expects 'up' 
or 'down'.\n");
        }
        else if (strcmp(args[3], "agent-addr") == 0) {
-               struct sockaddr_storage sk;
-
-               memset(&sk, 0, sizeof(sk));
-               if (!(sv->agent.state & CHK_ST_ENABLED))
-                       cli_err(appctx, "agent checks are not enabled on this 
server.\n");
-               else if (str2ip(args[4], &sk))
-                       set_srv_agent_addr(sv, &sk);
-               else
-                       cli_err(appctx, "incorrect addr address given for 
agent.\n");
+               char *addr = NULL;
+               char *port = NULL;
+               if (strlen(args[4]) == 0) {
+                       cli_err(appctx, "set server <b>/<s> agent-addr requires"
+                                       " an address and optionally a port.\n");
+                       goto out_unlock;
+               }
+               addr = args[4];
+               if (strcmp(args[5], "port") == 0)
+                       port = args[6];
+               warning = update_server_agent_addr_port(sv, addr, port);
+               if (warning)
+                       cli_msg(appctx, LOG_WARNING, warning);
+       }
+       else if (strcmp(args[3], "agent-port") == 0) {
+               char *port = NULL;
+               if (strlen(args[4]) == 0) {
+                       cli_err(appctx, "set server <b>/<s> agent-port requires"
+                                       " a port.\n");
+                       goto out_unlock;
+               }
+               port = args[4];
+               warning = update_server_agent_addr_port(sv, NULL, port);
+               if (warning)
+                       cli_msg(appctx, LOG_WARNING, warning);
        }
        else if (strcmp(args[3], "agent-send") == 0) {
                if (!(sv->agent.state & CHK_ST_ENABLED))
-- 
2.30.0


Reply via email to