Skip to content
Snippets Groups Projects
Commit 8e604574 authored by Vivek Das Mohapatra's avatar Vivek Das Mohapatra
Browse files

Start implementing the debug-flag-from-env infrastructure

parent 42a6b4a0
No related branches found
No related tags found
1 merge request!311Build capsule-capture-libs from a bundled copy of libcapsule
......@@ -33,6 +33,7 @@ print_libstubs_LDFLAGS = -ldl
libcapsule_la_SOURCES = capsule/capsule-dlmopen.c \
capsule/capsule-relocate.c \
capsule/capsule-init.c \
utils/utils.c utils/dump.c \
utils/process-pt-dynamic.c \
utils/mmap-info.c
......
#include "capsule.h"
#include "utils/utils.h"
#include <stdlib.h>
void
capsule_init ()
{
set_debug_flags( secure_getenv("CAPSULE_DEBUG") );
}
......@@ -26,6 +26,8 @@ typedef struct
ElfW(Addr) real;
} capsule_item_t;
void capsule_init (void);
int capsule_relocate (const char *target,
void *source,
int debug,
......
......@@ -139,6 +139,8 @@ cat - <<EOF
symbol_ns = LM_ID_NEWLM;
prefix = "/host";
capsule_init();
dso = capsule_dlmopen( "$proxied_dso", prefix, &symbol_ns, wrappers,
0, exclude, &capsule_errno, &capsule_error );
......
#pragma once
enum
{
DEBUG_NONE = 0,
DEBUG_PATH = 0x1,
DEBUG_SEARCH = 0x1 << 1,
DEBUG_LDCACHE = 0x1 << 2,
DEBUG_CAPSULE = 0x1 << 3,
DEBUG_MPROTECT = 0x1 << 4,
DEBUG_WRAPPERS = 0x1 << 5,
DEBUG_RELOCS = 0x1 << 6,
DEBUG_ALL = 0xffff,
};
#ifdef DEBUG
#define debug(fmt, args...) \
fprintf( stderr, "%s:" fmt "\n", __PRETTY_FUNCTION__, ##args )
#else
#define debug(fmt, args...) \
#endif
extern unsigned long debug_context;
extern unsigned long debug_flags;
void set_debug_flags (const char *control);
......@@ -20,6 +20,10 @@
#include <fcntl.h>
#include <string.h>
#include <stdio.h>
#include "debug.h"
unsigned long debug_flags;
unsigned long debug_context;
char *safe_strncpy (char *dest, const char *src, size_t n)
{
......@@ -108,6 +112,5 @@ void set_debug_flags (const char *control)
(debug_flags & DEBUG_CAPSULE ) ? 'Y' : 'n' ,
(debug_flags & DEBUG_MPROTECT) ? 'Y' : 'n' ,
(debug_flags & DEBUG_WRAPPERS) ? 'Y' : 'n' ,
(debug_flags & DEBUG_RELOCS ) ? 'Y' : 'n' ,
(debug_flags & DEBUG_ALL ) ? 'Y' : 'n' )
(debug_flags & DEBUG_RELOCS ) ? 'Y' : 'n' );
}
......@@ -17,30 +17,7 @@
#pragma once
enum
{
DEBUG_NONE = 0,
DEBUG_PATH = 0x1,
DEBUG_SEARCH = 0x1 << 1,
DEBUG_LDCACHE = 0x1 << 2,
DEBUG_CAPSULE = 0x1 << 3,
DEBUG_MPROTECT = 0x1 << 4,
DEBUG_WRAPPERS = 0x1 << 5,
DEBUG_RELOCS = 0x1 << 6,
DEBUG_ALL = 0xffff,
};
#ifdef DEBUG
#define debug(fmt, args...) \
fprintf( stderr, "%s:" fmt "\n", __PRETTY_FUNCTION__, ##args )
#else
#define debug(fmt, args...) \
#endif
extern unsigned long debug_context;
extern unsigned long debug_flags;
#include "debug.h"
char *safe_strncpy (char *dest, const char *src, size_t n);
int resolve_link (const char *prefix, char *path, char *dir);
void set_debug_flags (const char *control);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment