@@ -559,11 +559,6 @@
return ret;
}
-#if defined(__GNUC__) || defined(__clang__)
-#pragma GCC diagnostic push
-#pragma GCC diagnostic ignored "-Wsign-compare"
-#endif
-
static void
dco_update_peer_stat(struct multi_context *m, uint32_t peerid, const nvlist_t *nvl)
{
@@ -582,10 +577,6 @@
__func__, peerid, mi->context.c2.dco_read_bytes, mi->context.c2.dco_write_bytes);
}
-#if defined(__GNUC__) || defined(__clang__)
-#pragma GCC diagnostic pop
-#endif
-
int
dco_read_and_process(dco_context_t *dco)
{
@@ -858,11 +858,6 @@
}
}
-#if defined(__GNUC__) || defined(__clang__)
-#pragma GCC diagnostic push
-#pragma GCC diagnostic ignored "-Wsign-compare"
-#endif
-
static int
ovpn_handle_peer(dco_context_t *dco, struct nlattr *attrs[])
{
@@ -889,7 +884,7 @@
if (dco->ifmode == OVPN_MODE_P2P)
{
c2 = &dco->c->c2;
- if (c2->tls_multi->dco_peer_id != peer_id)
+ if (c2->tls_multi->dco_peer_id != (int)peer_id)
{
return NL_SKIP;
}
@@ -918,10 +913,6 @@
return NL_OK;
}
-#if defined(__GNUC__) || defined(__clang__)
-#pragma GCC diagnostic pop
-#endif
-
static bool
ovpn_iface_check(dco_context_t *dco, struct nlattr *attrs[])
{
@@ -739,11 +739,6 @@
return 0;
}
-#if defined(__GNUC__) || defined(__clang__)
-#pragma GCC diagnostic push
-#pragma GCC diagnostic ignored "-Wsign-compare"
-#endif
-
int
dco_get_peer_stats_multi(dco_context_t *dco, const bool raise_sigusr1_on_err)
{
@@ -838,9 +833,9 @@
{
OVPN_PEER_STATS *stat = &peer_stats[i];
- if (stat->PeerId >= dco->c->multi->max_clients)
+ if (stat->PeerId >= (int)dco->c->multi->max_clients)
{
- msg(M_WARN, "%s: received out of bound peer_id %u (max=%u)", __func__, stat->PeerId,
+ msg(M_WARN, "%s: received out of bound peer_id %d (max=%u)", __func__, stat->PeerId,
dco->c->multi->max_clients);
continue;
}
@@ -871,10 +866,6 @@
return ret;
}
-#if defined(__GNUC__) || defined(__clang__)
-#pragma GCC diagnostic pop
-#endif
-
int
dco_get_peer_stats_fallback(struct context *c, const bool raise_sigusr1_on_err)
{
@@ -180,11 +180,6 @@
return false;
}
-#if defined(__GNUC__) || defined(__clang__)
-#pragma GCC diagnostic push
-#pragma GCC diagnostic ignored "-Wsign-compare"
-#endif
-
/*
* Get a client instance based on real address. If
* the instance doesn't exist, create it while
@@ -217,7 +212,7 @@
uint32_t peer_id = ((uint32_t)ptr[1] << 16) | ((uint32_t)ptr[2] << 8) | ((uint32_t)ptr[3]);
peer_id_disabled = (peer_id == MAX_PEER_ID);
- if (!peer_id_disabled && (peer_id < m->max_clients) && (m->instances[peer_id]))
+ if (!peer_id_disabled && (peer_id < m->max_clients) && m->instances[peer_id])
{
/* Floating on TCP will never be possible, so ensure we only process
* UDP clients */
@@ -315,10 +310,6 @@
return mi;
}
-#if defined(__GNUC__) || defined(__clang__)
-#pragma GCC diagnostic pop
-#endif
-
/*
* Send a packet to UDP socket.
*/
@@ -695,11 +695,6 @@
}
}
-#if defined(__GNUC__) || defined(__clang__)
-#pragma GCC diagnostic push
-#pragma GCC diagnostic ignored "-Wsign-compare"
-#endif
-
/*
* Create a client instance object for a newly connected client.
*/
@@ -782,10 +777,6 @@
return NULL;
}
-#if defined(__GNUC__) || defined(__clang__)
-#pragma GCC diagnostic pop
-#endif
-
/*
* Dump tables -- triggered by SIGUSR2.
* If status file is defined, write to file.
@@ -3261,7 +3252,7 @@
return;
}
- if ((peer_id < m->max_clients) && (m->instances[peer_id]))
+ if (((uint32_t)peer_id < m->max_clients) && m->instances[peer_id])
{
struct multi_instance *mi = m->instances[peer_id];
set_prefix(mi);
@@ -4085,18 +4076,13 @@
#endif /* ifdef ENABLE_MANAGEMENT */
}
-#if defined(__GNUC__) || defined(__clang__)
-#pragma GCC diagnostic push
-#pragma GCC diagnostic ignored "-Wsign-compare"
-#endif
-
void
multi_assign_peer_id(struct multi_context *m, struct multi_instance *mi)
{
/* max_clients must be less then max peer-id value */
ASSERT(m->max_clients < MAX_PEER_ID);
- for (int i = 0; i < m->max_clients; ++i)
+ for (uint32_t i = 0; i < m->max_clients; ++i)
{
if (!m->instances[i])
{
@@ -4117,10 +4103,6 @@
}
}
-#if defined(__GNUC__) || defined(__clang__)
-#pragma GCC diagnostic pop
-#endif
-
/**
* @brief Determines the earliest wakeup interval based on periodic operations.
*
@@ -182,7 +182,7 @@
struct multi_reap *reaper;
struct mroute_addr local;
bool enable_c2c;
- int max_clients;
+ uint32_t max_clients;
int tcp_queue_limit;
int status_file_version;
int n_clients; /* current number of authenticated clients */
@@ -1431,7 +1431,7 @@
SHOW_INT(cf_per);
SHOW_INT(cf_initial_max);
SHOW_INT(cf_initial_per);
- SHOW_INT(max_clients);
+ SHOW_UINT(max_clients);
SHOW_INT(max_routes_per_client);
SHOW_STR(auth_user_pass_verify_script);
SHOW_BOOL(auth_user_pass_verify_script_via_file);
@@ -7354,7 +7354,7 @@
else if (streq(p[0], "max-clients") && p[1] && !p[2])
{
VERIFY_PERMISSION(OPT_P_GENERAL);
- if (!atoi_constrained(p[1], &options->max_clients, p[0], 1, MAX_PEER_ID, msglevel))
+ if (!atoi_constrained(p[1], (int *)&options->max_clients, p[0], 1, MAX_PEER_ID - 1, msglevel))
{
goto err;
}
@@ -530,7 +530,7 @@
int cf_initial_max;
int cf_initial_per;
- int max_clients;
+ uint32_t max_clients;
int max_routes_per_client;
int stale_routes_check_interval;
int stale_routes_ageing_time;