2020-12-23 22:21:36 +01:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2019-09-25 13:13:40 +02:00
|
|
|
/*
|
2019-10-01 09:20:35 +02:00
|
|
|
* Copyright (C) 2010 - 2017 Red Hat, Inc.
|
2017-03-28 12:16:31 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef __NM_CLIENT_UTILS_H__
|
|
|
|
|
#define __NM_CLIENT_UTILS_H__
|
|
|
|
|
|
2017-10-12 15:27:55 +02:00
|
|
|
#include "nm-active-connection.h"
|
|
|
|
|
#include "nm-device.h"
|
2021-02-12 15:01:09 +01:00
|
|
|
#include "libnm-core-aux-intern/nm-libnm-core-utils.h"
|
2019-02-28 14:22:35 +01:00
|
|
|
|
2018-04-27 17:28:09 +02:00
|
|
|
const NMObject **nmc_objects_sort_by_path(const NMObject *const *objs, gssize len);
|
|
|
|
|
|
2021-04-27 09:18:00 +02:00
|
|
|
const char *_nmc_string_is_valid(const char *input, const char *const *allowed, GError **error);
|
|
|
|
|
|
|
|
|
|
#define nmc_string_is_valid(input, allowed, error) \
|
|
|
|
|
_nmc_string_is_valid((input), NM_CAST_STRV_CC(allowed), (error))
|
2017-03-28 12:16:31 +02:00
|
|
|
|
2021-11-09 13:28:54 +01:00
|
|
|
gboolean nmc_string_to_uint(const char *str,
|
2017-03-28 12:16:31 +02:00
|
|
|
gboolean range_check,
|
|
|
|
|
unsigned long int min,
|
|
|
|
|
unsigned long int max,
|
|
|
|
|
unsigned long int *value);
|
|
|
|
|
gboolean nmc_string_to_bool(const char *str, gboolean *val_bool, GError **error);
|
2021-05-11 13:34:31 +02:00
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
|
NMC_STRING_TO_TERNARY_FLAGS_NONE = 0,
|
|
|
|
|
NMC_STRING_TO_TERNARY_FLAGS_IGNORE_FOR_DEFAULT = (1LL << 0),
|
|
|
|
|
} NMCStringToTernaryFlags;
|
|
|
|
|
|
2021-11-09 13:28:54 +01:00
|
|
|
gboolean nmc_string_to_ternary_full(const char *str,
|
2021-05-11 13:34:31 +02:00
|
|
|
NMCStringToTernaryFlags flags,
|
2021-11-09 13:28:54 +01:00
|
|
|
NMTernary *val,
|
|
|
|
|
GError **error);
|
2021-05-11 13:34:31 +02:00
|
|
|
|
|
|
|
|
static inline gboolean
|
|
|
|
|
nmc_string_to_ternary(const char *str, NMTernary *val, GError **error)
|
|
|
|
|
{
|
|
|
|
|
return nmc_string_to_ternary_full(str, NMC_STRING_TO_TERNARY_FLAGS_NONE, val, error);
|
|
|
|
|
}
|
2017-03-28 12:16:31 +02:00
|
|
|
|
|
|
|
|
gboolean matches(const char *cmd, const char *pattern);
|
|
|
|
|
|
2018-04-18 14:13:28 +02:00
|
|
|
/* FIXME: don't expose this function on its own, at least not from this file. */
|
2017-04-04 13:50:30 +02:00
|
|
|
const char *nmc_bond_validate_mode(const char *mode, GError **error);
|
|
|
|
|
|
2020-06-10 15:27:59 +02:00
|
|
|
const char *nmc_device_state_to_string_with_external(NMDevice *device);
|
|
|
|
|
|
2017-10-12 15:04:58 +02:00
|
|
|
const char *nm_active_connection_state_reason_to_string(NMActiveConnectionStateReason reason);
|
|
|
|
|
const char *nmc_device_state_to_string(NMDeviceState state);
|
|
|
|
|
const char *nmc_device_reason_to_string(NMDeviceStateReason reason);
|
|
|
|
|
const char *nmc_device_metered_to_string(NMMetered value);
|
|
|
|
|
|
2017-10-12 15:27:55 +02:00
|
|
|
NMActiveConnectionState nmc_activation_get_effective_state(NMActiveConnection *active,
|
2021-11-09 13:28:54 +01:00
|
|
|
NMDevice *device,
|
|
|
|
|
const char **reason);
|
2017-10-12 15:27:55 +02:00
|
|
|
|
2017-12-15 16:46:07 +01:00
|
|
|
const char *nmc_wifi_strength_bars(guint8 strength);
|
|
|
|
|
|
2017-12-15 16:51:59 +01:00
|
|
|
const char *nmc_password_subst_char(void);
|
|
|
|
|
|
2019-09-11 16:45:12 +02:00
|
|
|
void nmc_print_qrcode(const char *str);
|
|
|
|
|
|
2020-05-04 16:33:59 +02:00
|
|
|
GHashTable *nmc_utils_parse_passwd_file(char *contents, gssize *out_error_line, GError **error);
|
|
|
|
|
|
2020-05-04 13:33:35 +02:00
|
|
|
GHashTable *
|
|
|
|
|
nmc_utils_read_passwd_file(const char *passwd_file, gssize *out_error_line, GError **error);
|
|
|
|
|
|
2017-03-28 12:16:31 +02:00
|
|
|
#endif /* __NM_CLIENT_UTILS_H__ */
|