1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380
|
/*
Copyright (C) 2000,2004,2005 Silicon Graphics, Inc. All Rights Reserved.
Portions Copyright (C) 2007-2020 David Anderson. All Rights Reserved.
Portions Copyright 2012-2018 SN Systems Ltd. All rights reserved.
This program is free software; you can redistribute it and/or
modify it under the terms of version 2 of the GNU General
Public License as published by the Free Software Foundation.
This program is distributed in the hope that it would be
useful, but WITHOUT ANY WARRANTY; without even the implied
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE.
Further, this software is distributed without any warranty
that it is free of the rightful claim of any third person
regarding infringement or the like. Any license provided
herein, whether implied or otherwise, applies only to this
software file. Patent licenses, if any, provided herein
do not apply to combinations of this program with other
software, or any other product whatsoever.
You should have received a copy of the GNU General Public
License along with this program; if not, write the Free
Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
Boston MA 02110-1301, USA.
*/
#ifndef globals_INCLUDED
#define globals_INCLUDED
#ifdef __cplusplus
extern "C" {
#endif
#include "config.h"
#ifdef DWARF_WITH_LIBELF /* Without libelf no need for _GNU_SOURCE */
#if (!defined(HAVE_RAW_LIBELF_OK) && defined(HAVE_LIBELF_OFF64_OK) )
/* At a certain point libelf.h requires _GNU_SOURCE.
here we assume the criteria in configure determined that
usefully.
*/
#define _GNU_SOURCE 1
#endif
#endif /* DWARF_WITH_LIBELF */
#include "warningcontrol.h"
#define DWARF_SECNAME_BUFFER_SIZE 50
#define ESB_FIXED_ALLOC_SIZE 300
#include <stdio.h>
#ifdef HAVE_STDLIB_H
#include <stdlib.h> /* for exit(), C89 malloc */
#endif /* HAVE_STDLIB_H */
#ifdef HAVE_MALLOC_H
/* Useful include for some Windows compilers. */
#include <malloc.h>
#endif /* HAVE_MALLOC_H */
#ifdef HAVE_STRING_H
#include <string.h> /* for strchr etc */
#endif /* HAVE_STRING_H */
/* Windows specific header files */
#if defined(_WIN32) && defined(HAVE_STDAFX_H)
#include "stdafx.h"
#endif /* HAVE_STDAFX_H */
#ifdef DWARF_WITH_LIBELF
#ifdef HAVE_ELF_H
#include <elf.h>
#endif /* HAVE_ELF_H */
#ifdef HAVE_LIBELF_H
# include <libelf.h>
#else /* !HAVE_LIBELF_H */
# ifdef HAVE_LIBELF_LIBELF_H
# include <libelf/libelf.h>
# endif /* HAVE_LIBELF_LIBELF_H */
#endif /* HAVE_LIB_ELF */
#endif /* DWARF_WITH_LIBELF */
#include "dwarf.h"
#include "libdwarf.h"
#ifdef HAVE_REGEX
#include <regex.h>
#endif
#include "checkutil.h"
#include "defined_types.h"
#include "glflags.h"
/* Used to avoid leakage when we hide errors.
Use carefully: doing err when you mean
*err will not be caught by the compiler
and will not do what one wants.
Using *err when err is correct will
be caught by the compiler. You are warned. */
#define DROP_ERROR_INSTANCE(d,r,e) \
if ((r) == DW_DLV_ERROR) { \
if (e) { \
dwarf_dealloc_error((d),(e)); \
(e) = 0; \
} \
} else { if ((r) != DW_DLV_OK && \
(r) != DW_DLV_NO_ENTRY) { \
report_caller_error_drop_error((r), \
__LINE__,__FILE__); \
} \
}
/* Version 5 returns DW_AT_decl_file differently than earlier versions */
#define DWVERSION5 5
/* Calculate wasted space */
extern void calculate_attributes_usage(Dwarf_Half attr,Dwarf_Half theform,
Dwarf_Unsigned value);
extern boolean is_strstrnocase(const char *data, const char *pattern);
/* tsearch tree used in macro checking. */
extern void * macro_check_tree; /* DWARF5 macros. */
extern void * macinfo_check_tree; /* DWARF2,3,4 macros */
/* Process TAGs for checking mode and reset pRangesInfo table
if appropriate. */
extern void tag_specific_checks_setup(Dwarf_Debug dbg,
Dwarf_Half val,int die_indent_level);
extern int simple_err_return_msg_either_action(int res,const char *msg);
extern int simple_err_return_action(int res,const char *msg);
extern int simple_err_only_return_action(int res,const char *msg);
extern void print_error_and_continue (Dwarf_Debug dbg, const char * msg,int res, Dwarf_Error err);
extern void print_error (Dwarf_Debug dbg, const char * msg,int res, Dwarf_Error err);
extern int print_line_numbers_this_cu (Dwarf_Debug dbg,
Dwarf_Die in_die,
char **srcfiles,
Dwarf_Signed cnt,
Dwarf_Error *err);
extern int print_frames (Dwarf_Debug dbg,int want_eh,
struct dwconf_s *,
Dwarf_Die * cu_die_for_current_frame,
void **, void **,Dwarf_Error *);
extern void printreg(Dwarf_Unsigned reg,struct dwconf_s *config_data);
extern int print_ranges (Dwarf_Debug dbg,Dwarf_Error *err);
extern int print_raw_all_rnglists(Dwarf_Debug dbg, Dwarf_Error *err);
extern int print_raw_all_loclists(Dwarf_Debug dbg, Dwarf_Error *err);
extern int print_pubnames (Dwarf_Debug dbg,Dwarf_Error *);
extern int print_infos (Dwarf_Debug dbg,Dwarf_Bool is_info,Dwarf_Error *);
extern int print_locs (Dwarf_Debug dbg,Dwarf_Error *);
extern int print_abbrevs (Dwarf_Debug dbg,Dwarf_Error *);
extern int print_strings (Dwarf_Debug dbg,Dwarf_Error *);
extern int print_aranges (Dwarf_Debug dbg,Dwarf_Error *);
extern int print_static_funcs(Dwarf_Debug dbg,Dwarf_Error *);
extern int print_static_vars(Dwarf_Debug dbg,Dwarf_Error *);
enum type_type_e {SGI_TYPENAME, DWARF_PUBTYPES} ;
extern int print_types(Dwarf_Debug dbg,enum type_type_e type_type,
Dwarf_Error *);
extern int print_weaknames(Dwarf_Debug dbg, Dwarf_Error *);
extern int print_debug_names(Dwarf_Debug dbg,Dwarf_Error *);
int print_debug_sup(Dwarf_Debug dbg, Dwarf_Error *error);
int print_all_abbrevs_for_cu(Dwarf_Debug dbg,
Dwarf_Unsigned offset,
Dwarf_Unsigned abbrev_num_in,
Dwarf_Unsigned *length_out,
Dwarf_Unsigned *abbrev_num_out,
Dwarf_Error *error);
int print_all_pubnames_style_records(Dwarf_Debug dbg,
const char * linetitle,
const char * section_true_name,
Dwarf_Global *globbuf,
Dwarf_Signed count,
Dwarf_Error *err);
/* These three ELF only */
extern int print_object_header(Dwarf_Debug dbg,Dwarf_Error *);
extern int print_relocinfo (Dwarf_Debug dbg, Dwarf_Error*);
void clean_up_syms_malloc_data(void);
/* Space used to record range information */
extern void allocate_range_array_info(void);
extern void release_range_array_info(void);
extern void record_range_array_info_entry(Dwarf_Off die_off,
Dwarf_Off range_off);
extern int check_range_array_info(Dwarf_Debug dbg,Dwarf_Error *);
int should_skip_this_cu(Dwarf_Debug dbg,boolean *,
Dwarf_Die cu_die);
int get_address_size_and_max(Dwarf_Debug dbg,
Dwarf_Half * size,
Dwarf_Addr * max,
Dwarf_Error *err);
/* Returns the producer of the CU */
int get_cu_name(Dwarf_Debug dbg,Dwarf_Die cu_die,
Dwarf_Off dieprint_cu_offset,
char **short_name,char **long_name,
Dwarf_Error *err);
/* Get number of abbreviations for a CU */
extern void get_abbrev_array_info(Dwarf_Debug dbg,Dwarf_Unsigned offset);
/* Validate an abbreviation */
extern void validate_abbrev_code(Dwarf_Debug dbg,Dwarf_Unsigned abbrev_code);
extern int print_one_die(
Dwarf_Debug dbg,
Dwarf_Die die,
Dwarf_Off dieprint_cu_offset,
boolean print_information,
int die_indent_level,
char **srcfiles,
Dwarf_Signed cnt,
boolean *an_attr_duplicated,
boolean ignore_die_stack,
Dwarf_Error *err);
/* Check for specific compiler */
extern boolean checking_this_compiler(void);
extern void update_compiler_target(const char *producer_name);
extern void add_cu_name_compiler_target(char *name);
/* General error reporting routines. These were
macros for a short time and when changed into functions
they kept (for now) their capitalization.
The capitalization will likely change. */
extern void PRINT_CU_INFO(void);
extern void DWARF_CHECK_COUNT(Dwarf_Check_Categories category, int inc);
extern void DWARF_ERROR_COUNT(Dwarf_Check_Categories category, int inc);
extern void DWARF_CHECK_ERROR_PRINT_CU(void);
#define DWARF_CHECK_ERROR(c,d) DWARF_CHECK_ERROR3(c,d,0,0)
#define DWARF_CHECK_ERROR2(c,d,e) DWARF_CHECK_ERROR3(c,d,e,0)
extern void DWARF_CHECK_ERROR3(Dwarf_Check_Categories category,
const char *str1, const char *str2, const char *strexpl);
extern int print_macinfo_by_offset(Dwarf_Debug dbg,
Dwarf_Die cudie,Dwarf_Unsigned offset,Dwarf_Error *);
void ranges_esb_string_destructor(void);
void destruct_abbrev_array(void);
int get_proc_name_by_die(Dwarf_Debug dbg,
Dwarf_Die die, Dwarf_Addr low_pc,
struct esb_s *proc_name,
Dwarf_Die *cu_die_for_print_frames,
void **pcMap,
Dwarf_Error *err);
extern void dump_block(char *prefix, char *data, Dwarf_Signed len);
extern int print_gdb_index(Dwarf_Debug dbg,Dwarf_Error *err);
extern int print_debugfission_index(Dwarf_Debug dbg,const char *type, Dwarf_Error *);
void clean_up_die_esb(void);
void safe_strcpy(char *out, long outlen, const char *in, long inlen);
int print_macros_5style_this_cu(Dwarf_Debug dbg, Dwarf_Die cu_die,
char **srcfiles,
Dwarf_Signed cnt,
Dwarf_Bool in_import_list, Dwarf_Unsigned offset,Dwarf_Error *);
/* Detailed attributes encoding space */
int print_attributes_encoding(Dwarf_Debug dbg,Dwarf_Error *);
/* Detailed tag and attributes usage */
int print_tag_attributes_usage(Dwarf_Debug dbg, Dwarf_Error *);
int print_section_groups_data(Dwarf_Debug dbg,Dwarf_Error *);
void update_section_flags_per_groups(Dwarf_Debug dbg);
void groups_restore_subsidiary_flags(void);
int print_str_offsets_section(Dwarf_Debug dbg,Dwarf_Error *);
void print_any_harmless_errors(Dwarf_Debug dbg);
void print_secname(Dwarf_Debug dbg,const char *secname);
void report_caller_error_drop_error(int dwdlv,
int line, char *filename);
int _dwarf_print_one_expr_op(Dwarf_Debug dbg,
Dwarf_Die die,
int die_indent_level,
Dwarf_Loc* expr,
Dwarf_Locdesc_c exprc,
int index,
Dwarf_Bool report_raw, /* non-zero reports cooked values */
Dwarf_Addr baseaddr,
struct esb_s *string_out,
Dwarf_Error *err);
/* encoding_type_func used in print_die.c and print_lopc_hipc_attr.c */
typedef const char *(*encoding_type_func) (unsigned,int doprintingonerr);
int dd_get_integer_and_name(Dwarf_Debug dbg,
Dwarf_Attribute attrib,
Dwarf_Unsigned * uval_out,
const char *attr_name,
struct esb_s* string_out,
encoding_type_func val_as_string,
Dwarf_Error * err,
int show_form);
int print_original_loclist_linecodes(Dwarf_Debug dbg,
Dwarf_Bool checking,
const char * tagname,
const char * attrname,
unsigned int llent,
Dwarf_Small lle_value,
Dwarf_Addr base_address,
Dwarf_Addr rawlopc,
Dwarf_Addr rawhipc,
Dwarf_Bool debug_addr_unavailable,
Dwarf_Addr lopc,
Dwarf_Addr hipc,
Dwarf_Unsigned locdesc_offset,
struct esb_s * ebsp,
Dwarf_Bool * bError);
int print_llex_linecodes(Dwarf_Debug dbg,
Dwarf_Bool checking,
const char * tagname,
const char * attrname,
unsigned int llent,
Dwarf_Small lle_value,
Dwarf_Addr base_address,
Dwarf_Addr rawlopc,
Dwarf_Addr rawhipc,
Dwarf_Bool debug_addr_unavailable,
Dwarf_Addr lopc,
Dwarf_Addr hipc,
Dwarf_Unsigned locdesc_offset,
struct esb_s * ebsp,
Dwarf_Bool * bError);
int print_debug_loclists_linecodes(Dwarf_Debug dbg,
Dwarf_Bool checking,
const char * tagname,
const char * attrname,
unsigned int llent,
Dwarf_Small lle_value,
Dwarf_Addr base_address,
Dwarf_Addr rawlopc,
Dwarf_Addr rawhipc,
Dwarf_Bool debug_addr_unavailable,
Dwarf_Addr lopc,
Dwarf_Addr hipc,
Dwarf_Unsigned locdesc_offset,
struct esb_s * ebsp,
Dwarf_Bool * bError);
void loc_error_check(
const char *tagname,
const char *attrname,
Dwarf_Addr lopcfinal,
Dwarf_Addr rawlopc,
Dwarf_Addr hipcfinal,
Dwarf_Addr rawhipc,
Dwarf_Unsigned offset,
Dwarf_Addr base_address,
Dwarf_Bool *bError);
int print_hipc_lopc_attribute(Dwarf_Debug dbg,
Dwarf_Half tag,
Dwarf_Die die,
int die_indent_level,
Dwarf_Unsigned dieprint_cu_goffset,
char ** srcfiles,
Dwarf_Signed cnt,
Dwarf_Attribute attrib,
Dwarf_Half attr,
Dwarf_Unsigned max_address,
Dwarf_Bool *bSawLowp,
Dwarf_Addr *lowAddrp,
Dwarf_Bool *bSawHighp,
Dwarf_Addr *highAddrp,
struct esb_s *valname,
Dwarf_Error *err);
#ifdef __cplusplus
}
#endif
#endif /* globals_INCLUDED */
|