1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 * or http://www.opensolaris.org/os/licensing. 10 * See the License for the specific language governing permissions 11 * and limitations under the License. 12 * 13 * When distributing Covered Code, include this CDDL HEADER in each 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 * If applicable, add the following below this CDDL HEADER, with the 16 * fields enclosed by brackets "[]" replaced with your own identifying 17 * information: Portions Copyright [yyyy] [name of copyright owner] 18 * 19 * CDDL HEADER END 20 */ 21 /* 22 * Copyright 2006 Sun Microsystems, Inc. All rights reserved. 23 * Use is subject to license terms. 24 * 25 * tree.h -- public definitions for tree module 26 * 27 * the parse tree is made up of struct node's. the struct is 28 * a "variant record" with a type, the filename and line number 29 * related to the node, and then type-specific node data. 30 */ 31 32 #ifndef _ESC_COMMON_TREE_H 33 #define _ESC_COMMON_TREE_H 34 35 #pragma ident "%Z%%M% %I% %E% SMI" 36 37 #ifdef __cplusplus 38 extern "C" { 39 #endif 40 41 struct node { 42 enum nodetype { 43 T_NOTHING = 1000, /* used to keep going on error cases */ 44 T_NAME, /* identifiers, sometimes chained */ 45 T_GLOBID, /* globals (e.g. $a) */ 46 T_EVENT, /* class@path{expr} */ 47 T_ENGINE, /* upset threshold engine (e.g. SERD) */ 48 T_ASRU, /* ASRU declaration */ 49 T_FRU, /* FRU declaration */ 50 T_TIMEVAL, /* num w/time suffix (ns internally) */ 51 T_NUM, /* num (ull internally) */ 52 T_QUOTE, /* quoted string */ 53 T_FUNC, /* func(arglist) */ 54 T_NVPAIR, /* name=value pair in decl */ 55 T_ASSIGN, /* assignment statement */ 56 T_CONDIF, /* a and T_CONDELSE in (a ? b : c ) */ 57 T_CONDELSE, /* lists b and c in (a ? b : c ) */ 58 T_NOT, /* boolean ! operator */ 59 T_AND, /* boolean && operator */ 60 T_OR, /* boolean || operator */ 61 T_EQ, /* boolean == operator */ 62 T_NE, /* boolean != operator */ 63 T_SUB, /* integer - operator */ 64 T_ADD, /* integer + operator */ 65 T_MUL, /* integer * operator */ 66 T_DIV, /* integer / operator */ 67 T_MOD, /* integer % operator */ 68 T_LT, /* boolean < operator */ 69 T_LE, /* boolean <= operator */ 70 T_GT, /* boolean > operator */ 71 T_GE, /* boolean >= operator */ 72 T_BITAND, /* bitwise & operator */ 73 T_BITOR, /* bitwise | operator */ 74 T_BITXOR, /* bitwise ^ operator */ 75 T_BITNOT, /* bitwise ~ operator */ 76 T_LSHIFT, /* bitwise << operator */ 77 T_RSHIFT, /* bitwise >> operator */ 78 T_ARROW, /* lhs (N)->(K) rhs */ 79 T_LIST, /* comma-separated list */ 80 T_FAULT, /* fault declaration */ 81 T_UPSET, /* upset declaration */ 82 T_DEFECT, /* defect declaration */ 83 T_ERROR, /* error declaration */ 84 T_EREPORT, /* ereport declaration */ 85 T_SERD, /* SERD engine declaration */ 86 T_STAT, /* STAT engine declaration */ 87 T_PROP, /* prop statement */ 88 T_MASK, /* mask statement */ 89 T_CONFIG /* config statement */ 90 } t; 91 92 /* 93 * regardless of the type of node, filename and line number 94 * information from the original .esc file is tracked here. 95 */ 96 const char *file; 97 int line; 98 99 /* 100 * the variant part of a struct node... 101 */ 102 union { 103 struct { 104 /* 105 * info kept for T_NAME, used in several ways: 106 * 107 * 1 for simple variable names. 108 * example: j 109 * 110 * 2 for event class names, with component 111 * names chained together via the "next" 112 * pointers. 113 * example: fault.fan.broken 114 * 115 * 3 for component pathnames, with component 116 * names chained together via the "next" 117 * pointers and iterators or instance numbers 118 * attached via the "child" pointers. 119 * example: sysboard[0]/cpu[n] 120 * 121 * case 3 is the most interesting. 122 * - if child is set, there's an iterator 123 * - if child is a T_NAME, it is x[j] or x<j> and 124 * iterator type tells you vertical or horizontal 125 * - if child is a T_NUM, it is x[0] or x<0> or 126 * x0 and iterator type tells you which one 127 * - if cp pointer is set, then we recently 128 * matched it to a config cache entry and one 129 * can ignore child for now because it still 130 * represents the *pattern* you're matching. 131 * cp represents what you matched. ptree() 132 * knows that if cp is set, to print that number 133 * instead of following child. 134 * 135 * when T_NAME nodes are chained: 136 * the "last" pointer takes you to the end of the 137 * chain, but only the first component's last pointer 138 * is kept up to date. it is used to determine 139 * where to append newly-created T_NAME nodes (see 140 * tree_name_append()). 141 */ 142 const char *s; /* the name itself */ 143 144 struct node *child; 145 struct node *next; 146 struct node *last; 147 148 /* opaque pointer used during config matching */ 149 struct config *cp; 150 151 enum nametype { 152 N_UNSPEC, 153 N_FAULT, 154 N_UPSET, 155 N_DEFECT, 156 N_ERROR, 157 N_EREPORT, 158 N_SERD, 159 N_STAT 160 } t:3; 161 enum itertype { 162 IT_NONE, 163 IT_VERTICAL, 164 IT_HORIZONTAL, 165 IT_ENAME 166 } it:2; 167 unsigned childgen:1; /* child was auto-generated */ 168 } name; 169 170 struct { 171 /* 172 * info kept for T_GLOBID 173 */ 174 const char *s; /* the name itself */ 175 } globid; 176 177 /* 178 * info kept for T_TIMEVAL and T_NUM 179 * 180 * timevals are kept in nanoseconds. 181 */ 182 unsigned long long ull; 183 184 struct { 185 /* 186 * info kept for T_QUOTE 187 */ 188 const char *s; /* the quoted string */ 189 } quote; 190 191 struct { 192 /* 193 * info kept for T_FUNC 194 */ 195 const char *s; /* name of function */ 196 struct node *arglist; 197 } func; 198 199 struct { 200 /* 201 * info kept for T_PROP and T_MASK statements 202 * as well as declarations for: 203 * T_FAULT 204 * T_UPSET 205 * T_DEFECT 206 * T_ERROR 207 * T_EREPORT 208 * T_ASRU 209 * T_FRU 210 * T_CONFIG 211 */ 212 struct node *np; 213 struct node *nvpairs; /* for declarations */ 214 struct lut *lutp; /* for declarations */ 215 struct node *next; /* for Props & Masks lists */ 216 struct node *expr; /* for if statements */ 217 unsigned char flags; /* see STMT_ flags below */ 218 } stmt; /* used for stmt */ 219 220 struct { 221 /* 222 * info kept for T_EVENT 223 */ 224 struct node *ename; /* event class name */ 225 struct node *epname; /* component path name */ 226 struct node *eexprlist; /* constraint expression */ 227 struct node *declp; /* event declaration */ 228 } event; 229 230 struct { 231 /* 232 * info kept for T_ARROW 233 */ 234 struct node *lhs; /* left side of arrow */ 235 struct node *rhs; /* right side of arrow */ 236 struct node *nnp; /* N value */ 237 struct node *knp; /* K value */ 238 struct node *prop; /* arrow is part of this prop */ 239 } arrow; 240 241 struct { 242 /* 243 * info kept for everything else (T_ADD, T_LIST, etc.) 244 */ 245 struct node *left; 246 struct node *right; 247 } expr; 248 } u; 249 }; 250 251 /* flags we keep with stmts */ 252 #define STMT_REF 0x01 /* declared item is referenced */ 253 #define STMT_CYMARK 0x02 /* declared item is marked for cycle check */ 254 #define STMT_CYCLE 0x04 /* cycle detected and already reported */ 255 256 #define TIMEVAL_EVENTUALLY (1000000000ULL*60*60*24*365*100) /* 100 years */ 257 258 void tree_init(void); 259 void tree_fini(void); 260 struct node *newnode(enum nodetype t, const char *file, int line); 261 void tree_free(struct node *root); 262 struct node *tree_root(struct node *np); 263 struct node *tree_nothing(void); 264 struct node *tree_expr(enum nodetype t, struct node *left, struct node *right); 265 struct node *tree_event(struct node *ename, struct node *epname, 266 struct node *eexprlist); 267 struct node *tree_if(struct node *expr, struct node *stmts, 268 const char *file, int line); 269 struct node *tree_name(const char *s, enum itertype it, 270 const char *file, int line); 271 struct node *tree_iname(const char *s, const char *file, int line); 272 struct node *tree_globid(const char *s, const char *file, int line); 273 struct node *tree_name_append(struct node *np1, struct node *np2); 274 struct node *tree_name_repairdash(struct node *np1, const char *s); 275 struct node *tree_name_repairdash2(const char *s, struct node *np1); 276 struct node *tree_name_iterator(struct node *np1, struct node *np2); 277 struct node *tree_timeval(const char *s, const char *suffix, 278 const char *file, int line); 279 struct node *tree_num(const char *s, const char *file, int line); 280 struct node *tree_quote(const char *s, const char *file, int line); 281 struct node *tree_func(const char *s, struct node *np, 282 const char *file, int line); 283 struct node *tree_pname(struct node *np); 284 struct node *tree_arrow(struct node *lhs, struct node *nnp, struct node *knp, 285 struct node *rhs); 286 struct lut *tree_s2np_lut_add(struct lut *root, const char *s, struct node *np); 287 struct node *tree_s2np_lut_lookup(struct lut *root, const char *s); 288 struct lut *tree_name2np_lut_add(struct lut *root, 289 struct node *namep, struct node *np); 290 struct node *tree_name2np_lut_lookup(struct lut *root, struct node *namep); 291 struct node *tree_name2np_lut_lookup_name(struct lut *root, struct node *namep); 292 struct lut *tree_event2np_lut_add(struct lut *root, 293 struct node *enp, struct node *np); 294 struct node *tree_event2np_lut_lookup(struct lut *root, struct node *enp); 295 struct node *tree_event2np_lut_lookup_event(struct lut *root, 296 struct node *enp); 297 struct node *tree_decl(enum nodetype t, struct node *enp, struct node *nvpairs, 298 const char *file, int line); 299 struct node *tree_stmt(enum nodetype t, struct node *np, 300 const char *file, int line); 301 void tree_report(); 302 int tree_namecmp(struct node *np1, struct node *np2); 303 int tree_eventcmp(struct node *np1, struct node *np2); 304 305 struct lut *Faults; 306 struct lut *Upsets; 307 struct lut *Defects; 308 struct lut *Errors; 309 struct lut *Ereports; 310 struct lut *Ereportenames; 311 struct lut *SERDs; 312 struct lut *STATs; 313 struct lut *ASRUs; 314 struct lut *FRUs; 315 struct lut *Configs; 316 struct node *Props; 317 struct node *Lastprops; 318 struct node *Masks; 319 struct node *Lastmasks; 320 struct node *Problems; 321 struct node *Lastproblems; 322 323 #ifdef __cplusplus 324 } 325 #endif 326 327 #endif /* _ESC_COMMON_TREE_H */ 328