#ifndef CLI_DEF_H #define CLI_DEF_H #include #include #ifdef __cplusplus extern "C" { #endif #ifndef FALSE #define FALSE 0 #endif #ifndef TRUE #define TRUE (!FALSE) #endif /* allocation unit for vals in valstruct */ #define MULTI_ALLOC 5 /* we have room if cnt%MULTI_ALLOC != 0 */ typedef enum { do_del_mode, del_mode, create_mode, update_mode }vtw_cmode; typedef enum { EQ_COND = 1, NE_COND, LT_COND, LE_COND, GT_COND, GE_COND, IN_COND, TOP_COND }vtw_cond_e; /* IN_COND is like EQ for singular compare, but OR for multivalue right operand */ typedef struct { const char *f_segp; int f_seglen; int f_segoff; } first_seg; /* the first segment might be ADIR, or CDIR, or MDIR we reserve space large enough for any one. If the shorter one is used, it right aligned. path points to the start of the current first segment */ typedef struct { char *path_buf; /* path buffer */ char *path; /* path */ int path_len; /* path length used */ int path_alloc; /* allocated - 1*/ int *path_ends; /* path ends for dif levels*/ int path_lev; /* how many used */ int path_ends_alloc; /* how many allocated */ int print_offset; /* for additional optional output information */ } vtw_path; /* vyatta tree walk */ extern int char2val(const vtw_def *def, char *value, valstruct *valp); extern int get_value(char **valpp, vtw_path *pathp); extern vtw_node * make_node(vtw_oper_e oper, vtw_node *left, vtw_node *right); extern vtw_node *make_str_node(char *str); extern vtw_node *make_var_node(char *str); extern vtw_node *make_str_node0(char *str, vtw_oper_e op); extern void append(vtw_list *l, vtw_node *n, int aux); extern int yy_cli_val_lex(void); extern void init_path(vtw_path *path, const char *root); extern void pop_path(vtw_path *path); extern void push_path(vtw_path *path, const char *segm); extern void push_path_no_escape(vtw_path *path, char *segm); extern void free_def(vtw_def *defp); extern vtw_path m_path, t_path; /************************************************* GLOBAL FUNCTIONS ***************************************************/ extern void add_val(valstruct *first, valstruct *second); extern int cli_val_read(char *buf, int max_size); extern vtw_node *make_val_node(valstruct *val); extern valstruct str2val(char *cp); extern void switch_path(first_seg *seg); extern void free_val(valstruct *val); extern int mkdir_p(const char *path); extern void free_path(vtw_path *path); extern int get_config_lock(void); extern void release_config_lock(void); #define VTWERR_BADPATH -2 #define VTWERR_OK 0 #define TAG_NAME "node.tag" #define DEF_NAME "node.def" #define VAL_NAME "node.val" #define MOD_NAME ".modified" #define OPQ_NAME ".wh.__dir_opaque" /*** output ***/ #define LOGFILE_STDOUT "/var/log/vyatta/cfg-stdout.log" #define LOGFILE_STDERR "/var/log/vyatta/cfg-stderr.log" extern int out_fd; extern FILE *err_stream; /* debug hooks? */ #define my_malloc(size, name) malloc(size) #define my_realloc(ptr, size, name) realloc(ptr, size) #define my_strdup(str, name) strdup(str) #define my_free(ptr) free(ptr) /*** debug ***/ #undef CLI_DEBUG #ifdef CLI_DEBUG #define DPRINT(fmt, arg...) printf(fmt, #arg) #else #define DPRINT(fmt, arg...) while (0) { printf(fmt, ##arg); } #endif #ifdef __cplusplus } #endif #endif