12 #ifndef _JANUS_UTILS_H 13 #define _JANUS_UTILS_H 17 #include <netinet/in.h> 21 #define JANUS_JSON_BOOL JSON_TRUE 22 #define JANUS_JSON_PARAM_REQUIRED 1 23 #define JANUS_JSON_PARAM_POSITIVE 2 24 #define JANUS_JSON_PARAM_NONEMPTY 4 48 char *
janus_string_replace(
char *message,
const char *old_string,
const char *new_string) G_GNUC_WARN_UNUSED_RESULT;
175 #define JANUS_VALIDATE_JSON_OBJECT_FORMAT(missing_format, invalid_format, obj, params, error_code, error_cause, log_error, missing_code, invalid_code) \ 179 for(i = 0; i < sizeof(params) / sizeof(struct janus_json_parameter); i++) { \ 180 json_t *val = json_object_get(obj, params[i].name); \ 182 if((params[i].flags & JANUS_JSON_PARAM_REQUIRED) != 0) { \ 183 error_code = (missing_code); \ 185 JANUS_LOG(LOG_ERR, missing_format "\n", params[i].name); \ 186 if(error_cause != NULL) \ 187 g_snprintf(error_cause, sizeof(error_cause), missing_format, params[i].name); \ 192 if(!janus_json_is_valid(val, params[i].jtype, params[i].flags)) { \ 193 error_code = (invalid_code); \ 194 char type_name[20]; \ 195 janus_get_json_type_name(params[i].jtype, params[i].flags, type_name); \ 197 JANUS_LOG(LOG_ERR, invalid_format "\n", params[i].name, type_name); \ 198 if(error_cause != NULL) \ 199 g_snprintf(error_cause, sizeof(error_cause), invalid_format, params[i].name, type_name); \ 213 #define JANUS_VALIDATE_JSON_OBJECT(obj, params, error_code, error_cause, log_error, missing_code, invalid_code) \ 214 JANUS_VALIDATE_JSON_OBJECT_FORMAT("Missing mandatory element (%s)", "Invalid element type (%s should be %s)", obj, params, error_code, error_cause, log_error, missing_code, invalid_code) 225 #define JANUS_CHECK_SECRET(secret, obj, member, error_code, error_cause, missing_code, invalid_code, unauthorized_code) \ 228 static struct janus_json_parameter secret_parameters[] = { \ 229 {member, JSON_STRING, JANUS_JSON_PARAM_REQUIRED} \ 231 JANUS_VALIDATE_JSON_OBJECT(obj, secret_parameters, error_code, error_cause, TRUE, missing_code, invalid_code); \ 232 if(error_code == 0 && !janus_strcmp_const_time((secret), json_string_value(json_object_get(obj, member)))) { \ 233 error_code = (unauthorized_code); \ 234 JANUS_LOG(LOG_ERR, "Unauthorized (wrong %s)\n", member); \ 235 if(error_cause != NULL) \ 236 g_snprintf(error_cause, sizeof(error_cause), "Unauthorized (wrong %s)", member); \ unsigned int flags
Definition: utils.h:29
uint16_t janus_address_to_port(struct sockaddr *address)
Get the port from a sockaddr address.
Definition: utils.c:405
int janus_get_codec_pt(const char *sdp, const char *codec)
Ugly and dirty helper to quickly get the payload type associated with a codec in an SDP...
Definition: utils.c:230
guint64 janus_random_uint64(void)
Helper to generate random 64-bit unsigned integers (useful for Janus IDs)
Definition: utils.c:76
const char * janus_get_codec_from_pt(const char *sdp, int pt)
Ugly and dirty helper to quickly get the codec associated with a payload type in an SDP...
Definition: utils.c:314
int janus_pidfile_create(const char *file)
Create and lock a PID file.
Definition: utils.c:429
void janus_get_json_type_name(int jtype, unsigned int flags, char *type_name)
Creates a string describing the JSON type and constraint.
Definition: utils.c:484
int janus_mkdir(const char *dir, mode_t mode)
Helper to create a new directory, and recursively create parent directories if needed.
Definition: utils.c:203
void janus_flags_set(janus_flags *flags, uint32_t flag)
Janus flags set method.
Definition: utils.c:103
void janus_flags_reset(janus_flags *flags)
Janus flags reset method.
Definition: utils.c:98
const gchar * name
Definition: utils.h:27
gint64 janus_get_monotonic_time(void)
Helper to retrieve the system monotonic time, as Glib's g_get_monotonic_time may not be available (on...
Definition: utils.c:30
json_type jtype
Definition: utils.h:28
gint64 janus_get_real_time(void)
Helper to retrieve the system real time, as Glib's g_get_real_time may not be available (only since 2...
Definition: utils.c:36
guint32 janus_random_uint32(void)
Helper to generate random 32-bit unsigned integers (useful for SSRCs, etc.)
Definition: utils.c:72
gboolean janus_flags_is_set(janus_flags *flags, uint32_t flag)
Janus flags check method.
Definition: utils.c:115
void janus_flags_clear(janus_flags *flags, uint32_t flag)
Janus flags clear method.
Definition: utils.c:109
uint32_t janus_flags
Janus flags container.
Definition: utils.h:83
char * janus_string_replace(char *message, const char *old_string, const char *new_string) G_GNUC_WARN_UNUSED_RESULT
Helper to replace strings.
Definition: utils.c:124
int janus_pidfile_remove(void)
Unlock and remove a previously created PID file.
Definition: utils.c:468
guint64 * janus_uint64_dup(guint64 num)
Helper to generate an allocated copy of a guint64 number.
Definition: utils.c:92
gboolean janus_is_ip_valid(const char *ip, int *family)
Check if the given IP address is valid: family is set to the address family if the IP is valid...
Definition: utils.c:361
gboolean janus_is_true(const char *value)
Helper to parse yes/no|true/false configuration values.
Definition: utils.c:42
gboolean janus_strcmp_const_time(const void *str1, const void *str2)
Helper to compare strings in constant time.
Definition: utils.c:46
char * janus_address_to_ip(struct sockaddr *address)
Convert a sockaddr address to an IP string.
Definition: utils.c:381
gboolean janus_json_is_valid(json_t *val, json_type jtype, unsigned int flags)
Checks whether the JSON value matches the type and constraint.
Definition: utils.c:524