args->flags)) < 0)
goto cleanup;
+ if (nifaces > REMOTE_INTERFACE_LIST_MAX) {
+ virReportError(VIR_ERR_RPC,
+ _("Too many interfaces '%d' for limit '%d'"),
+ nifaces, REMOTE_INTERFACE_LIST_MAX);
+ goto cleanup;
+ }
+
if (ifaces && nifaces) {
if (VIR_ALLOC_N(ret->ifaces.ifaces_val, nifaces) < 0)
goto cleanup;
(char *) &ret) == -1)
goto done;
+ if (ret.ifaces.ifaces_len > REMOTE_INTERFACE_LIST_MAX) {
+ virReportError(VIR_ERR_RPC,
+ _("Too many interfaces '%d' for limit '%d'"),
+ ret.ifaces.ifaces_len, REMOTE_INTERFACE_LIST_MAX);
+ goto cleanup;
+ }
+
if (ifaces) {
if (VIR_ALLOC_N(tmp_ifaces, ret.ifaces.ifaces_len + 1) < 0)
goto cleanup;
/* Upper limit on lists of networks. */
const REMOTE_NETWORK_LIST_MAX = 16384;
-/* Upper limit on lists of interface names. */
-const REMOTE_INTERFACE_NAME_LIST_MAX = 16384;
-
-/* Upper limit on lists of defined interface names. */
-const REMOTE_DEFINED_INTERFACE_NAME_LIST_MAX = 16384;
+/* Upper limit on lists of interfaces. */
+const REMOTE_INTERFACE_LIST_MAX = 16384;
/* Upper limit on lists of storage pools. */
const REMOTE_STORAGE_POOL_LIST_MAX = 4096;
};
struct remote_connect_list_interfaces_ret {
- remote_nonnull_string names<REMOTE_INTERFACE_NAME_LIST_MAX>; /* insert@1 */
+ remote_nonnull_string names<REMOTE_INTERFACE_LIST_MAX>; /* insert@1 */
};
struct remote_connect_num_of_defined_interfaces_ret {
};
struct remote_connect_list_defined_interfaces_ret {
- remote_nonnull_string names<REMOTE_DEFINED_INTERFACE_NAME_LIST_MAX>; /* insert@1 */
+ remote_nonnull_string names<REMOTE_INTERFACE_LIST_MAX>; /* insert@1 */
};
struct remote_interface_lookup_by_name_args {
};
struct remote_connect_list_all_interfaces_ret {
- remote_nonnull_interface ifaces<>;
+ remote_nonnull_interface ifaces<REMOTE_INTERFACE_LIST_MAX>;
unsigned int ret;
};