HEX
Server: Apache/2
System: Linux nexus-01 4.18.0-553.120.1.el8_10.x86_64 #1 SMP Mon Apr 20 18:04:27 EDT 2026 x86_64
User: aglcoke (1118)
PHP: 8.2.31
Disabled: mail,exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: //usr/include/dovecot/config-filter.h
#ifndef CONFIG_FILTER_H
#define CONFIG_FILTER_H

#include "net.h"

/* A single filter in configuration. Only one of the fields should be set at
   a time. Use parent-hierarchy to set multiple filters. */
struct config_filter {
	/* Parent filter, which is ANDed to this filter */
	struct config_filter *parent;

	const char *protocol;
	/* local_name is for TLS SNI requests.
	   both local_name and local_bits can't be set at the same time. */
	const char *local_name;
	/* the hosts are used only in doveconf output */
	const char *local_host, *remote_host;
	struct ip_addr local_net, remote_net;
	unsigned int local_bits, remote_bits;

	/* named_filter { .. } */
	const char *filter_name;
	/* named_list_filter key { .. } */
	bool filter_name_array;

	/* TRUE if default settings are being accessed. These will be stored in
	   separate filters so they can be ordered before global settings. */
	bool default_settings;
};

struct config_include_group {
	const char *label;
	const char *name;

	const char *last_path;
	unsigned int last_linenum;
};
ARRAY_DEFINE_TYPE(config_include_group, struct config_include_group);

/* Each unique config_filter (including its parents in hierarchy) has its own
   config_filter_parser. */
struct config_filter_parser {
	/* Increasing number for every created parser. Used by sorting. */
	unsigned int create_order;
	/* Number of filters in this parser and parent parsers that have
	   filter.filter_name_array=TRUE. */
	unsigned int named_list_filter_count;
	/* Number of filters in this parser that have non-NULL
	   filter.filter_name and filter.filter_name_array=FALSE. */
	unsigned int named_filter_count;

	/* Filter parser tree. These are used only for doveconf's human output
	   to write the filters in nice nested hierarchies. */
	struct config_filter_parser *parent;
	struct config_filter_parser *children_head, *children_tail, *prev, *next;

	/* Filter that is identical, but has !filter.default_settings. These
	   are updated on-demand by config_get_value() */
	struct config_filter_parser *reverse_default_sibling;

	/* When this filter is used, it includes settings from these groups. */
	ARRAY_TYPE(config_include_group) include_groups;
	/* Filter for this parser. Its parent filters must also match. */
	struct config_filter filter;
	/* NULL-terminated array of parsers for settings. All parsers have the
	   same number of module_parsers. Each module parser is initialized
	   lazily after the first setting in the module is changed. */
	struct config_module_parser *module_parsers;
	/* Named [list] filters may have required_setting. If they do, this
	   boolean tracks whether that setting has been changed in this
	   filter. */
	bool filter_required_setting_seen;
	/* TRUE if this filter shouldn't be included in the config output.
	   This is used by doveconf -f filter handling to drop filters that
	   were merged to parents. */
	bool dropped;
};

/* Returns TRUE if filter matches mask. The parents must also match. */
bool config_filter_match(const struct config_filter *mask,
			 const struct config_filter *filter);
/* Returns 1 if filter matches mask, 0 if there's a match, -1 if filter is
   missing fields required by mask. Filter parents aren't checked. */
int config_filter_match_no_recurse(const struct config_filter *mask,
				   const struct config_filter *filter);
/* Returns TRUE if two filters are fully equal. */
bool config_filters_equal(const struct config_filter *f1,
			  const struct config_filter *f2);
bool config_filters_equal_no_recursion(const struct config_filter *f1,
				       const struct config_filter *f2);
/* Returns hash of the filter and its parents. */
unsigned int config_filter_hash(const struct config_filter *filter);
/* Returns TRUE if filter is empty, and it has no parent filters, and it has
   default_settings=FALSE. */
bool config_filter_is_empty(const struct config_filter *filter);
/* Returns TRUE if filter is empty, and it has no parent filters, and it has
   default_settings=TRUE. */
bool config_filter_is_empty_defaults(const struct config_filter *filter);

/* Return path prefix of named [list] filters. */
const char *config_filter_get_path_prefix(const struct config_filter *filter);

#endif