2015-10-03 19:28:23 +03:00
|
|
|
#define _POSIX_C_SOURCE 200809L
|
2020-05-08 12:31:09 +03:00
|
|
|
#include "ruby/internal/config.h"
|
2018-07-17 04:00:05 +03:00
|
|
|
#include <stdio.h>
|
2015-10-03 18:09:47 +03:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2018-11-07 07:02:14 +03:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
2015-10-03 18:09:47 +03:00
|
|
|
|
2023-12-04 04:02:38 +03:00
|
|
|
#ifdef _WIN32
|
|
|
|
# error This feature is unnecessary on Windows in favor of SxS.
|
|
|
|
#endif
|
|
|
|
|
2016-04-14 04:30:12 +03:00
|
|
|
#include "ruby-runner.h"
|
2015-11-01 02:34:17 +03:00
|
|
|
|
2017-09-24 04:48:25 +03:00
|
|
|
static void
|
2020-02-23 07:31:56 +03:00
|
|
|
insert_env_path(const char *envname, const char *paths, size_t size, int prepend)
|
2017-09-24 04:48:25 +03:00
|
|
|
{
|
|
|
|
const char *env = getenv(envname);
|
|
|
|
char c = 0;
|
|
|
|
size_t n = 0;
|
|
|
|
|
|
|
|
if (env) {
|
|
|
|
while ((c = *env) == PATH_SEP) ++env;
|
|
|
|
n = strlen(env);
|
|
|
|
while (n > 0 && env[n-1] == PATH_SEP) --n;
|
|
|
|
}
|
|
|
|
if (c) {
|
|
|
|
char *e = malloc(size+n+1);
|
|
|
|
size_t pos = 0;
|
|
|
|
if (prepend) {
|
2023-10-20 12:09:47 +03:00
|
|
|
if (size == n || (size < n && env[size] == PATH_SEP)) {
|
|
|
|
if (strncmp(paths, env, size) == 0) {
|
|
|
|
free(e);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2017-09-24 04:48:25 +03:00
|
|
|
memcpy(e, paths, pos = size-1);
|
|
|
|
e[pos++] = PATH_SEP;
|
|
|
|
}
|
|
|
|
memcpy(e+pos, env, n);
|
|
|
|
pos += n;
|
|
|
|
if (!prepend) {
|
2023-10-20 12:09:47 +03:00
|
|
|
if (size == n || (size < n && env[n-size-1] == PATH_SEP)) {
|
|
|
|
if (strncmp(paths, &env[n-size], size) == 0) {
|
|
|
|
free(e);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2017-09-24 04:48:25 +03:00
|
|
|
e[pos++] = PATH_SEP;
|
|
|
|
memcpy(e+pos, paths, size-1);
|
|
|
|
pos += size-1;
|
|
|
|
}
|
|
|
|
e[pos] = '\0';
|
|
|
|
env = e;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
env = paths;
|
|
|
|
}
|
|
|
|
setenv(envname, env, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define EXTOUT_DIR BUILDDIR"/"EXTOUT
|
2015-10-03 18:09:47 +03:00
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
static const char builddir[] = BUILDDIR;
|
2017-05-29 09:39:41 +03:00
|
|
|
static const char rubypath[] = BUILDDIR"/"STRINGIZE(RUBY_INSTALL_NAME);
|
2017-09-24 04:48:25 +03:00
|
|
|
static const char rubylib[] =
|
|
|
|
ABS_SRCDIR"/lib"
|
|
|
|
PATH_SEPARATOR
|
|
|
|
EXTOUT_DIR"/common"
|
|
|
|
PATH_SEPARATOR
|
|
|
|
EXTOUT_DIR"/"ARCH
|
|
|
|
;
|
2017-05-29 09:39:41 +03:00
|
|
|
const size_t dirsize = sizeof(builddir);
|
|
|
|
const size_t namesize = sizeof(rubypath) - dirsize;
|
|
|
|
const char *rubyname = rubypath + dirsize;
|
|
|
|
char *arg0 = argv[0], *p;
|
2015-11-01 05:50:59 +03:00
|
|
|
|
2020-02-23 07:31:56 +03:00
|
|
|
insert_env_path(LIBPATHENV, builddir, dirsize, 1);
|
|
|
|
insert_env_path("RUBYLIB", rubylib, sizeof(rubylib), 0);
|
2017-05-29 09:39:41 +03:00
|
|
|
|
|
|
|
if (!(p = strrchr(arg0, '/'))) p = arg0; else p++;
|
|
|
|
if (strlen(p) < namesize - 1) {
|
|
|
|
argv[0] = malloc(p - arg0 + namesize);
|
|
|
|
memcpy(argv[0], arg0, p - arg0);
|
2017-09-15 22:25:46 +03:00
|
|
|
p = argv[0] + (p - arg0);
|
2017-05-29 09:39:41 +03:00
|
|
|
}
|
2017-09-15 22:25:46 +03:00
|
|
|
memcpy(p, rubyname, namesize);
|
2017-05-29 09:39:41 +03:00
|
|
|
|
|
|
|
execv(rubypath, argv);
|
2018-07-17 04:00:05 +03:00
|
|
|
perror(rubypath);
|
2015-10-03 18:09:47 +03:00
|
|
|
return -1;
|
|
|
|
}
|