Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

149 rivejä
4.7 KiB
C

2022-09-26 07:52:14 -05:00
// MIT License
//
2025-01-15 13:06:12 -05:00
// Copyright (c) 2022-2025 Advanced Micro Devices, Inc. All Rights Reserved.
2022-09-26 07:52:14 -05:00
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
#define _GNU_SOURCE
#define ROCPROFSYS_PUBLIC_API __attribute__((visibility("default")));
#define ROCPROFSYS_HIDDEN_API __attribute__((visibility("hidden")));
#define ROCPROFSYS_INTERNAL_API __attribute__((visibility("internal")));
2022-10-21 17:39:08 -05:00
2022-09-26 07:52:14 -05:00
#include <dlfcn.h>
2022-11-13 10:42:14 -06:00
#include <stdbool.h>
2022-09-26 07:52:14 -05:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
2022-11-13 10:42:14 -06:00
#include <unistd.h>
2022-09-26 07:52:14 -05:00
2022-10-21 17:39:08 -05:00
//
// local type definitions
//
typedef int (*main_func_t)(int, char**, char**);
2024-12-13 18:48:39 -05:00
typedef void (*init_func_t)(void);
typedef int (*start_main_t)(int (*)(int, char**, char**), int, char**, void (*)(void),
void (*)(void), void (*)(void), void*);
2022-10-21 17:39:08 -05:00
//
// local function declarations
//
int
2024-12-13 18:48:39 -05:00
rocprofsys_libc_start_main(int (*)(int, char**, char**), int, char**, void (*)(void),
void (*)(void), void (*)(void), void*) ROCPROFSYS_INTERNAL_API;
2022-10-21 17:39:08 -05:00
int
2024-12-13 18:48:39 -05:00
__libc_start_main(int (*)(int, char**, char**), int, char**, void (*)(void),
void (*)(void), void (*)(void), void*) ROCPROFSYS_PUBLIC_API;
2022-10-21 17:39:08 -05:00
//
// external function declarations
//
2022-09-30 10:47:07 -05:00
extern int
rocprofsys_preload_library(void);
2022-09-30 10:47:07 -05:00
2022-09-26 07:52:14 -05:00
extern void
rocprofsys_finalize(void);
2022-09-26 07:52:14 -05:00
extern void
rocprofsys_push_trace(const char* name);
2022-09-26 07:52:14 -05:00
extern void
rocprofsys_pop_trace(const char* name);
2022-09-26 07:52:14 -05:00
extern void
rocprofsys_init_tooling(void);
2022-09-26 07:52:14 -05:00
extern void
rocprofsys_init(const char*, bool, const char*);
2022-09-26 07:52:14 -05:00
extern char*
basename(const char*);
2022-09-26 07:52:14 -05:00
extern void rocprofsys_set_main(main_func_t) ROCPROFSYS_INTERNAL_API;
2022-09-26 07:52:14 -05:00
2024-12-13 18:48:39 -05:00
extern void
rocprofsys_set_main_init(init_func_t func) ROCPROFSYS_INTERNAL_API;
extern void
rocprofsys_main_init(void) ROCPROFSYS_INTERNAL_API;
extern int
rocprofsys_main(int argc, char** argv, char** envp) ROCPROFSYS_INTERNAL_API;
2022-09-26 07:52:14 -05:00
int
rocprofsys_libc_start_main(int (*_main)(int, char**, char**), int _argc, char** _argv,
2024-12-13 18:48:39 -05:00
void (*_init)(void), void (*_fini)(void),
void (*_rtld_fini)(void), void* _stack_end)
2022-09-26 07:52:14 -05:00
{
int _preload = rocprofsys_preload_library();
2022-09-30 10:47:07 -05:00
2022-09-26 07:52:14 -05:00
// prevent re-entry
static int _reentry = 0;
if(_reentry > 0) return -1;
_reentry = 1;
// get the address of this function
void* _this_func = __builtin_return_address(0);
2024-12-13 18:48:39 -05:00
// Save the real main function addresses
rocprofsys_set_main(_main);
2024-12-13 18:48:39 -05:00
rocprofsys_set_main_init(_init);
2022-09-26 07:52:14 -05:00
// Find the real __libc_start_main()
2022-10-21 17:39:08 -05:00
start_main_t user_main = dlsym(RTLD_NEXT, "__libc_start_main");
2022-09-26 07:52:14 -05:00
2022-09-30 10:47:07 -05:00
// disable future LD_PRELOADs
setenv("ROCPROFSYS_PRELOAD", "0", 1);
2022-09-30 10:47:07 -05:00
2022-09-26 07:52:14 -05:00
if(user_main && user_main != _this_func)
{
2022-09-30 10:47:07 -05:00
if(_preload == 0)
{
// call original main
return user_main(_main, _argc, _argv, _init, _fini, _rtld_fini, _stack_end);
2022-09-30 10:47:07 -05:00
}
else
{
2024-12-13 18:48:39 -05:00
// return user_main(rocprofsys_main, _argc, _argv,
// rocprofsys_main_init, _fini,
// _rtld_fini, _stack_end);
// call rocprof-sys main function wrapper
return user_main(rocprofsys_main, _argc, _argv, _init, _fini, _rtld_fini,
2022-09-30 10:47:07 -05:00
_stack_end);
}
2022-09-26 07:52:14 -05:00
}
else
{
fputs("Error! rocprof-sys could not find __libc_start_main!", stderr);
2022-09-26 07:52:14 -05:00
return -1;
}
}
2022-10-21 17:39:08 -05:00
int
__libc_start_main(int (*_main)(int, char**, char**), int _argc, char** _argv,
2024-12-13 18:48:39 -05:00
void (*_init)(void), void (*_fini)(void), void (*_rtld_fini)(void),
void* _stack_end)
2022-10-21 17:39:08 -05:00
{
2024-12-13 18:48:39 -05:00
// intercept the main function
return rocprofsys_libc_start_main(_main, _argc, _argv, _init, _fini, _rtld_fini,
_stack_end);
2022-10-21 17:39:08 -05:00
}