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 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543
|
/**************************************************************************/
/* */
/* OCaml */
/* */
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
/* */
/* Copyright 2001 Institut National de Recherche en Informatique et */
/* en Automatique. */
/* */
/* All rights reserved. This file is distributed under the terms of */
/* the GNU Lesser General Public License version 2.1, with the */
/* special exception on linking described in the file LICENSE. */
/* */
/**************************************************************************/
#define CAML_INTERNALS
/* Unix-specific stuff */
#define _GNU_SOURCE
/* Helps finding RTLD_DEFAULT in glibc */
/* also secure_getenv */
#include <stddef.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include "caml/config.h"
#ifdef HAS_GETTIMEOFDAY
#include <sys/time.h>
#endif
#include <sys/stat.h>
#include <fcntl.h>
#if defined(SUPPORT_DYNAMIC_LINKING) && !defined(BUILDING_LIBCAMLRUNS)
#define WITH_DYNAMIC_LINKING
#ifdef __CYGWIN__
#include "flexdll.h"
#else
#include <dlfcn.h>
#endif
#endif
#ifdef HAS_UNISTD
#include <unistd.h>
#endif
#ifdef HAS_POSIX_MONOTONIC_CLOCK
#include <time.h>
#elif defined(HAS_CLOCK_GETTIME_NSEC_NP)
#include <time.h>
#endif
#ifdef HAS_DIRENT
#include <dirent.h>
#else
#include <sys/dir.h>
#endif
#ifdef __APPLE__
#include <mach-o/dyld.h>
#endif
#ifdef HAS_SYS_MMAN_H
#include <sys/mman.h>
#endif
#include "caml/fail.h"
#include "caml/memory.h"
#include "caml/misc.h"
#include "caml/osdeps.h"
#include "caml/signals.h"
#include "caml/sys.h"
#include "caml/io.h"
#include "caml/alloc.h"
#include "caml/platform.h"
#ifndef S_ISREG
#define S_ISREG(mode) (((mode) & S_IFMT) == S_IFREG)
#endif
#ifndef EINTR
#define EINTR (-1)
#endif
#ifndef EAGAIN
#define EAGAIN (-1)
#endif
#ifndef EWOULDBLOCK
#define EWOULDBLOCK (-1)
#endif
int caml_read_fd(int fd, int flags, void * buf, int n)
{
int retcode;
caml_enter_blocking_section_no_pending();
retcode = read(fd, buf, n);
caml_leave_blocking_section();
return retcode;
}
int caml_write_fd(int fd, int flags, void * buf, int n)
{
int retcode;
again:
caml_enter_blocking_section_no_pending();
retcode = write(fd, buf, n);
caml_leave_blocking_section();
if (retcode == -1) {
if ((errno == EAGAIN || errno == EWOULDBLOCK) && n > 1) {
/* We couldn't do a partial write here, probably because
n <= PIPE_BUF and POSIX says that writes of less than
PIPE_BUF characters must be atomic.
We first try again with a partial write of 1 character.
If that fails too, we'll return an error code. */
n = 1; goto again;
}
}
CAMLassert (retcode > 0 || retcode == -1);
return retcode;
}
caml_stat_string caml_decompose_path(struct ext_table * tbl, char * path)
{
char * p, * q;
size_t n;
if (path == NULL) return NULL;
p = caml_stat_strdup(path);
q = p;
while (1) {
for (n = 0; q[n] != 0 && q[n] != ':'; n++) /*nothing*/;
caml_ext_table_add(tbl, q);
q = q + n;
if (*q == 0) break;
*q = 0;
q += 1;
}
return p;
}
caml_stat_string caml_search_in_path(struct ext_table * path, const char * name)
{
char * dir, * fullname;
struct stat st;
for (const char *p = name; *p != 0; p++) {
if (*p == '/') goto not_found;
}
for (int i = 0; i < path->size; i++) {
dir = path->contents[i];
if (dir[0] == 0) dir = "."; /* empty path component = current dir */
fullname = caml_stat_strconcat(3, dir, "/", name);
if (stat(fullname, &st) == 0 && S_ISREG(st.st_mode))
return fullname;
caml_stat_free(fullname);
}
not_found:
return caml_stat_strdup(name);
}
#ifdef __CYGWIN__
/* Cygwin needs special treatment because of the implicit ".exe" at the
end of executable file names */
static int cygwin_file_exists(const char * name)
{
int fd, ret;
struct stat st;
/* Cannot use stat() here because it adds ".exe" implicitly */
fd = open(name, O_RDONLY);
if (fd == -1) return 0;
ret = fstat(fd, &st);
close(fd);
return ret == 0 && S_ISREG(st.st_mode);
}
static caml_stat_string cygwin_search_exe_in_path(struct ext_table * path,
const char * name)
{
char * dir, * fullname;
for (const char *p = name; *p != 0; p++) {
if (*p == '/' || *p == '\\') goto not_found;
}
for (int i = 0; i < path->size; i++) {
dir = path->contents[i];
if (dir[0] == 0) dir = "."; /* empty path component = current dir */
fullname = caml_stat_strconcat(3, dir, "/", name);
if (cygwin_file_exists(fullname)) return fullname;
caml_stat_free(fullname);
fullname = caml_stat_strconcat(4, dir, "/", name, ".exe");
if (cygwin_file_exists(fullname)) return fullname;
caml_stat_free(fullname);
}
not_found:
if (cygwin_file_exists(name)) return caml_stat_strdup(name);
fullname = caml_stat_strconcat(2, name, ".exe");
if (cygwin_file_exists(fullname)) return fullname;
caml_stat_free(fullname);
return caml_stat_strdup(name);
}
#endif
caml_stat_string caml_search_exe_in_path(const char * name)
{
struct ext_table path;
char * tofree;
caml_stat_string res;
caml_ext_table_init(&path, 8);
tofree = caml_decompose_path(&path, getenv("PATH"));
#ifndef __CYGWIN__
res = caml_search_in_path(&path, name);
#else
res = cygwin_search_exe_in_path(&path, name);
#endif
caml_stat_free(tofree);
caml_ext_table_free(&path, 0);
return res;
}
caml_stat_string caml_search_dll_in_path(struct ext_table * path,
const char * name)
{
caml_stat_string dllname;
caml_stat_string res;
dllname = caml_stat_strconcat(2, name, ".so");
res = caml_search_in_path(path, dllname);
caml_stat_free(dllname);
return res;
}
#ifdef WITH_DYNAMIC_LINKING
#ifdef __CYGWIN__
/* Use flexdll */
void * caml_dlopen(char * libname, int global)
{
int flags = (global ? FLEXDLL_RTLD_GLOBAL : 0);
return flexdll_dlopen(libname, flags);
}
void caml_dlclose(void * handle)
{
flexdll_dlclose(handle);
}
void * caml_dlsym(void * handle, const char * name)
{
return flexdll_dlsym(handle, name);
}
void * caml_globalsym(const char * name)
{
return flexdll_dlsym(flexdll_dlopen(NULL,0), name);
}
char * caml_dlerror(void)
{
return flexdll_dlerror();
}
#else /* ! __CYGWIN__ */
/* Use normal dlopen */
#ifndef RTLD_GLOBAL
#define RTLD_GLOBAL 0
#endif
#ifndef RTLD_LOCAL
#define RTLD_LOCAL 0
#endif
void * caml_dlopen(char * libname, int global)
{
return dlopen(libname, RTLD_NOW | (global ? RTLD_GLOBAL : RTLD_LOCAL));
}
void caml_dlclose(void * handle)
{
dlclose(handle);
}
void * caml_dlsym(void * handle, const char * name)
{
return dlsym(handle, name);
}
void * caml_globalsym(const char * name)
{
#ifdef RTLD_DEFAULT
return caml_dlsym(RTLD_DEFAULT, name);
#else
return NULL;
#endif
}
char * caml_dlerror(void)
{
return (char*) dlerror();
}
#endif /* __CYGWIN__ */
#else
void * caml_dlopen(char * libname, int global)
{
return NULL;
}
void caml_dlclose(void * handle)
{
}
void * caml_dlsym(void * handle, const char * name)
{
return NULL;
}
void * caml_globalsym(const char * name)
{
return NULL;
}
char * caml_dlerror(void)
{
return "dynamic loading not supported on this platform";
}
#endif /* WITH_DYNAMIC_LINKING */
/* Add to [contents] the (short) names of the files contained in
the directory named [dirname]. No entries are added for [.] and [..].
Return 0 on success, -1 on error; set errno in the case of error. */
CAMLexport int caml_read_directory(char * dirname, struct ext_table * contents)
{
DIR * d;
#ifdef HAS_DIRENT
struct dirent * e;
#else
struct direct * e;
#endif
d = opendir(dirname);
if (d == NULL) return -1;
while (1) {
e = readdir(d);
if (e == NULL) break;
if (strcmp(e->d_name, ".") == 0 || strcmp(e->d_name, "..") == 0) continue;
int rc = caml_ext_table_add_noexc(contents, caml_stat_strdup(e->d_name));
if (rc == -1) { closedir(d); errno = ENOMEM; return -1; }
}
closedir(d);
return 0;
}
/* Recover executable name from /proc/self/exe if possible */
char * caml_executable_name(void)
{
#if defined(__linux__)
int namelen, retcode;
char * name;
struct stat st;
/* lstat("/proc/self/exe") returns st_size == 0 so we cannot use it
to determine the size of the buffer. Instead, we guess and adjust. */
namelen = 256;
while (1) {
name = caml_stat_alloc(namelen);
retcode = readlink("/proc/self/exe", name, namelen);
if (retcode == -1) { caml_stat_free(name); return NULL; }
if (retcode < namelen) break;
caml_stat_free(name);
if (namelen >= 1024*1024) return NULL; /* avoid runaway and overflow */
namelen *= 2;
}
/* readlink() does not zero-terminate its result.
There is room for a final zero since retcode < namelen. */
name[retcode] = 0;
/* Make sure that the contents of /proc/self/exe is a regular file.
(Old Linux kernels return an inode number instead.) */
if (stat(name, &st) == -1 || ! S_ISREG(st.st_mode)) {
caml_stat_free(name); return NULL;
}
return name;
#elif defined(__APPLE__)
unsigned int namelen;
char * name;
namelen = 256;
name = caml_stat_alloc(namelen);
if (_NSGetExecutablePath(name, &namelen) == 0) return name;
caml_stat_free(name);
/* Buffer is too small, but namelen now contains the size needed */
name = caml_stat_alloc(namelen);
if (_NSGetExecutablePath(name, &namelen) == 0) return name;
caml_stat_free(name);
return NULL;
#else
return NULL;
#endif
}
char *caml_secure_getenv (char const *var)
{
#ifdef HAS_SECURE_GETENV
return secure_getenv (var);
#elif defined (HAS___SECURE_GETENV)
return __secure_getenv (var);
#elif defined(HAS_ISSETUGID)
if (!issetugid ())
return getenv(var);
else
return NULL;
#else
if (geteuid () == getuid () && getegid () == getgid ())
return getenv(var);
else
return NULL;
#endif
}
uint64_t caml_time_counter(void)
{
#if defined(HAS_CLOCK_GETTIME_NSEC_NP)
return (clock_gettime_nsec_np(CLOCK_UPTIME_RAW));
#elif defined(HAS_POSIX_MONOTONIC_CLOCK)
struct timespec t;
clock_gettime(CLOCK_MONOTONIC, &t);
return
(uint64_t)t.tv_sec * (uint64_t)1000000000 +
(uint64_t)t.tv_nsec;
#elif defined(HAS_GETTIMEOFDAY)
struct timeval t;
gettimeofday(&t, 0);
return
(uint64_t)t.tv_sec * (uint64_t)1000000000 +
(uint64_t)t.tv_usec * (uint64_t)1000;
#else
# error "No timesource available"
#endif
}
int caml_num_rows_fd(int fd)
{
#ifdef TIOCGWINSZ
struct winsize w;
w.ws_row = -1;
if (ioctl(fd, TIOCGWINSZ, &w) == 0)
return w.ws_row;
else
return -1;
#else
return -1;
#endif
}
void caml_init_os_params(void)
{
caml_plat_mmap_alignment = caml_plat_pagesize = sysconf(_SC_PAGESIZE);
return;
}
#ifndef __CYGWIN__
void *caml_plat_mem_map(uintnat size, int reserve_only)
{
uintnat alloc_sz = size;
void* mem;
mem = mmap(0, alloc_sz, reserve_only ? PROT_NONE : (PROT_READ | PROT_WRITE),
MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
if (mem == MAP_FAILED)
return 0;
return mem;
}
static void* map_fixed(void* mem, uintnat size, int prot)
{
if (mmap(mem, size, prot, MAP_PRIVATE | MAP_ANONYMOUS | MAP_FIXED,
-1, 0) == MAP_FAILED) {
return 0;
} else {
return mem;
}
}
#else
/* Cygwin implementation: memory reserved using mmap, but relying on the large
allocation granularity of the underlying Windows VirtualAlloc call to ensure
alignment (since on Windows it is not possible to trim the region). Commit
done using mprotect, since Cygwin's mmap doesn't implement the required
functions for committing using mmap. */
void *caml_plat_mem_map(uintnat size, int reserve_only)
{
void* mem;
mem = mmap(0, size, reserve_only ? PROT_NONE : (PROT_READ | PROT_WRITE),
MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
if (mem == MAP_FAILED)
return 0;
return mem;
}
static void* map_fixed(void* mem, uintnat size, int prot)
{
if (mprotect(mem, size, prot) != 0) {
return 0;
} else {
return mem;
}
}
#endif /* !__CYGWIN__ */
void* caml_plat_mem_commit(void* mem, uintnat size)
{
void* p = map_fixed(mem, size, PROT_READ | PROT_WRITE);
/*
FIXME: On Linux, it might be useful to populate page tables with
MAP_POPULATE to reduce the time spent blocking on page faults at
a later point.
*/
return p;
}
void caml_plat_mem_decommit(void* mem, uintnat size)
{
map_fixed(mem, size, PROT_NONE);
}
void caml_plat_mem_unmap(void* mem, uintnat size)
{
if (munmap(mem, size) != 0)
CAMLassert(0);
}
|