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 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925
|
/*
* Copyright (C) 2006,2007 Lauri Leukkunen <lle@rahina.org>
*
* Licensed under LGPL version 2.1, see top level LICENSE file for details.
*/
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <dirent.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#ifdef _GNU_SOURCE
#undef _GNU_SOURCE
#include <string.h>
#include <libgen.h>
#define _GNU_SOURCE
#else
#include <string.h>
#include <libgen.h>
#endif
#include <limits.h>
#include <sys/param.h>
#include <sys/file.h>
#include <assert.h>
#include <lua.h>
#include <lualib.h>
#include <lauxlib.h>
#include <mapping.h>
#include <sb2.h>
/* ------------ WARNING WARNING WARNING ------------
* A SERIOUS WARNING ABOUT THE "pthread" LIBRARY:
* The libpthread.so library interferes with some other libraries on
* Linux. It is enough to just load the library to memory. For example,
* /usr/bin/html2text on debian "etch" crashes if libpthread.so is loaded,
* but works fine if libpthread is not loaded (the crash is caused by
* a segfault inside libstdc++)
*
* Because of this, a special interface to the pthread library must be used:
* We must use the run-time interface to dynamic linker and detect if the
* pthread library has already been loaded (most likely, by the real program
* that we are serving).
*/
#include <dlfcn.h>
int pthread_library_is_available = 0; /* flag */
static int pthread_detection_done = 0;
/* pointers to pthread library functions, if the pthread library is in use.
*/
static int (*pthread_key_create_fnptr)(pthread_key_t *key,
void (*destructor)(void*)) = NULL;
static void *(*pthread_getspecific_fnptr)(pthread_key_t key) = NULL;
static int (*pthread_setspecific_fnptr)(pthread_key_t key,
const void *value) = NULL;
static int (*pthread_once_fnptr)(pthread_once_t *, void (*)(void)) = NULL;
pthread_t (*pthread_self_fnptr)(void) = NULL;
int (*pthread_mutex_lock_fnptr)(pthread_mutex_t *mutex) = NULL;
int (*pthread_mutex_unlock_fnptr)(pthread_mutex_t *mutex) = NULL;
static void check_pthread_library()
{
if (pthread_detection_done == 0) {
/* these are available only in libpthread: */
pthread_key_create_fnptr = dlsym(RTLD_DEFAULT,
"pthread_key_create");
pthread_getspecific_fnptr = dlsym(RTLD_DEFAULT,
"pthread_getspecific");
pthread_setspecific_fnptr = dlsym(RTLD_DEFAULT,
"pthread_setspecific");
pthread_once_fnptr = dlsym(RTLD_DEFAULT,
"pthread_once");
pthread_mutex_lock_fnptr = dlsym(RTLD_DEFAULT,
"pthread_mutex_lock");
pthread_mutex_unlock_fnptr = dlsym(RTLD_DEFAULT,
"pthread_mutex_unlock");
/* Linux/glibc: pthread_self seems to exist in both
* glibc and libpthread. */
pthread_self_fnptr = dlsym(RTLD_DEFAULT,
"pthread_self");
if (pthread_key_create_fnptr &&
pthread_getspecific_fnptr &&
pthread_setspecific_fnptr &&
pthread_once_fnptr) {
SB_LOG(SB_LOGLEVEL_DEBUG,
"pthread library FOUND");
pthread_detection_done = 1;
pthread_library_is_available = 1;
} else if (!pthread_key_create_fnptr &&
!pthread_getspecific_fnptr &&
!pthread_setspecific_fnptr &&
!pthread_once_fnptr) {
SB_LOG(SB_LOGLEVEL_DEBUG,
"pthread library not found");
pthread_detection_done = -1;
pthread_library_is_available = 0;
} else {
SB_LOG(SB_LOGLEVEL_ERROR,
"pthread library is only partially available"
" - operation may become unstable");
pthread_detection_done = -2;
pthread_library_is_available = 0;
}
} else {
SB_LOG(SB_LOGLEVEL_NOISE,
"pthread detection already done (%d)",
pthread_detection_done);
}
}
/* ------------ End Of pthreads Warnings & Interface Code ------------ */
#define __set_errno(e) errno = e
void mapping_log_write(char *msg);
static int lua_bind_sb_functions(lua_State *l);
static pthread_key_t lua_key;
static pthread_once_t lua_key_once = PTHREAD_ONCE_INIT;
static char *read_string_variable_from_lua(
struct lua_instance *luaif,
const char *name)
{
char *result = NULL;
if (luaif && name && *name) {
lua_getglobal(luaif->lua, name);
result = (char *)lua_tostring(luaif->lua, -1);
if (result) {
result = strdup(result);
}
lua_pop(luaif->lua, 1);
SB_LOG(SB_LOGLEVEL_DEBUG,
"Lua variable %s = '%s', gettop=%d",
name, (result ? result : "<NULL>"),
lua_gettop(luaif->lua));
}
return(result);
}
static void free_lua(void *buf)
{
free(buf);
}
static void alloc_lua_key(void)
{
if (pthread_key_create_fnptr)
(*pthread_key_create_fnptr)(&lua_key, free_lua);
}
/* used only if pthread lib is not available: */
static struct lua_instance *my_lua_instance = NULL;
static void load_and_execute_lua_file(struct lua_instance *luaif, const char *filename)
{
const char *errmsg;
switch(luaL_loadfile(luaif->lua, filename)) {
case LUA_ERRFILE:
fprintf(stderr, "Error loading %s\n", filename);
exit(1);
case LUA_ERRSYNTAX:
errmsg = lua_tostring(luaif->lua, -1);
fprintf(stderr, "Syntax error in %s (%s)\n", filename,
(errmsg?errmsg:""));
exit(1);
case LUA_ERRMEM:
fprintf(stderr, "Memory allocation error while "
"loading %s\n", filename);
exit(1);
default:
;
}
lua_call(luaif->lua, 0, 0);
}
/* Lua calls this at panic: */
static int sb2_lua_panic(lua_State *l)
{
fprintf(stderr,
"Scratchbox2: Lua interpreter PANIC: unprotected error in call to Lua API (%s)\n",
lua_tostring(l, -1));
sblog_init(); /* make sure the logger has been initialized */
SB_LOG(SB_LOGLEVEL_ERROR,
"Lua interpreter PANIC: unprotected error in call to Lua API (%s)\n",
lua_tostring(l, -1));
return 0;
}
static struct lua_instance *alloc_lua(void)
{
struct lua_instance *tmp;
char *main_lua_script = NULL;
char *lua_if_version = NULL;
if (pthread_getspecific_fnptr) {
tmp = (*pthread_getspecific_fnptr)(lua_key);
if (tmp != NULL) {
SB_LOG(SB_LOGLEVEL_DEBUG,
"alloc_lua: already done (pt-getspec.)");
return(tmp);
}
} else if (my_lua_instance) {
SB_LOG(SB_LOGLEVEL_DEBUG,
"alloc_lua: already done (has my_lua_instance)");
return(my_lua_instance);
}
tmp = malloc(sizeof(struct lua_instance));
if (!tmp) {
SB_LOG(SB_LOGLEVEL_ERROR,
"alloc_lua: Failed to allocate memory");
return(NULL);
}
memset(tmp, 0, sizeof(struct lua_instance));
if (pthread_setspecific_fnptr) {
(*pthread_setspecific_fnptr)(lua_key, tmp);
} else {
my_lua_instance = tmp;
}
if (!sbox_session_dir || !*sbox_session_dir) {
SB_LOG(SB_LOGLEVEL_ERROR,
"alloc_lua: no SBOX_SESSION_DIR");
return(NULL); /* can't live without a session */
}
sbox_session_dir = strdup(sbox_session_dir);
if (asprintf(&main_lua_script, "%s/lua_scripts/main.lua",
sbox_session_dir) < 0) {
SB_LOG(SB_LOGLEVEL_ERROR,
"alloc_lua: asprintf failed to allocate memory");
return(NULL);
}
SB_LOG(SB_LOGLEVEL_INFO, "Loading '%s'", main_lua_script);
tmp->lua = luaL_newstate();
lua_atpanic(tmp->lua, sb2_lua_panic);
disable_mapping(tmp);
luaL_openlibs(tmp->lua);
lua_bind_sb_functions(tmp->lua); /* register our sb_ functions */
load_and_execute_lua_file(tmp, main_lua_script);
enable_mapping(tmp);
/* check Lua/C interface version. */
lua_if_version = read_string_variable_from_lua(tmp,
"sb2_lua_c_interface_version");
if (!lua_if_version) {
SB_LOG(SB_LOGLEVEL_ERROR, "FATAL ERROR: "
"sb2's Lua scripts didn't provide"
" 'sb2_lua_c_interface_version' identifier!");
exit(1);
}
if (strcmp(lua_if_version, SB2_LUA_C_INTERFACE_VERSION)) {
SB_LOG(SB_LOGLEVEL_ERROR, "FATAL ERROR: "
"sb2's Lua script interface version mismatch:"
" scripts provide '%s', but '%s' was expected",
lua_if_version, SB2_LUA_C_INTERFACE_VERSION);
exit(1);
}
free(lua_if_version);
SB_LOG(SB_LOGLEVEL_INFO, "lua initialized.");
SB_LOG(SB_LOGLEVEL_NOISE, "gettop=%d", lua_gettop(tmp->lua));
free(main_lua_script);
return(tmp);
}
static void increment_luaif_usage_counter(volatile struct lua_instance *ptr)
{
if (SB_LOG_IS_ACTIVE(SB_LOGLEVEL_DEBUG)) {
/* Well, to make this bullet-proof the luaif structure
* should be locked, but since this code is now used only for
* producing debugging information and the pointer is marked
* "volatile", the results are good enough. No need to slow
* down anything with additional locks - this function is
* called frequently. */
if (ptr->lua_instance_in_use > 0) SB_LOG(SB_LOGLEVEL_DEBUG,
"Lua instance already in use! (%d)",
ptr->lua_instance_in_use);
(ptr->lua_instance_in_use)++;
}
}
void release_lua(struct lua_instance *luaif)
{
if (SB_LOG_IS_ACTIVE(SB_LOGLEVEL_DEBUG)) {
int i;
volatile struct lua_instance *ptr = luaif;
SB_LOG(SB_LOGLEVEL_NOISE, "release_lua()");
if (!ptr) {
SB_LOG(SB_LOGLEVEL_DEBUG,
"release_lua(): ptr is NULL ");
return;
}
i = ptr->lua_instance_in_use;
if (i > 1) SB_LOG(SB_LOGLEVEL_DEBUG,
"Lua instance usage counter was %d", i);
(ptr->lua_instance_in_use)--;
}
}
/* get access to lua context. Remember to call release_lua() after the
* pointer is not needed anymore.
*/
struct lua_instance *get_lua(void)
{
struct lua_instance *ptr = NULL;
if (!sb2_global_vars_initialized__) sb2_initialize_global_variables();
if (!SB_LOG_INITIALIZED()) sblog_init();
SB_LOG(SB_LOGLEVEL_NOISE, "get_lua()");
if (pthread_detection_done == 0) check_pthread_library();
if (pthread_library_is_available) {
if (pthread_once_fnptr)
(*pthread_once_fnptr)(&lua_key_once, alloc_lua_key);
if (pthread_getspecific_fnptr)
ptr = (*pthread_getspecific_fnptr)(lua_key);
if (!ptr) ptr = alloc_lua();
if (!ptr) {
SB_LOG(SB_LOGLEVEL_ERROR,
"Something's wrong with"
" the pthreads support");
fprintf(stderr, "FATAL: sb2 preload library:"
" Something's wrong with"
" the pthreads support.\n");
exit(1);
}
} else {
/* no pthreads, single-thread application */
ptr = my_lua_instance;
if (!ptr) ptr = alloc_lua();
if (!ptr) {
SB_LOG(SB_LOGLEVEL_ERROR,
"Failed to get Lua instance"
" (and the pthreads support is "
" disabled!)");
fprintf(stderr, "FATAL: sb2 preload library:"
" Failed to get Lua instance"
" (and the pthreads support is disabled!)\n");
exit(1);
}
}
if (SB_LOG_IS_ACTIVE(SB_LOGLEVEL_DEBUG)) {
increment_luaif_usage_counter(ptr);
}
return(ptr);
}
/* Preload library constructor. Unfortunately this can
* be called after other parts of this library have been called
* if the program uses multiple threads (unbelievable, but true!),
* so this isn't really too useful. Lua initialization was
* moved to get_lua() because of this.
*/
#ifndef SB2_TESTER
#ifdef __GNUC__
void sb2_preload_library_constructor(void) __attribute((constructor));
#endif
#endif /* SB2_TESTER */
void sb2_preload_library_constructor(void)
{
SB_LOG(SB_LOGLEVEL_DEBUG, "sb2_preload_library_constructor called");
sblog_init();
SB_LOG(SB_LOGLEVEL_DEBUG, "sb2_preload_library_constructor: done");
}
/* Read string variables from lua.
* Note that this function is exported from libsb2.so (for sb2-show etc): */
char *sb2__read_string_variable_from_lua__(const char *name)
{
struct lua_instance *luaif;
char *cp;
luaif = get_lua();
cp = read_string_variable_from_lua(luaif, name);
release_lua(luaif);
return(cp);
}
/* Return the Lua/C interface version string = the library interface version.
* Note that this function is exported from libsb2.so (for sb2-show etc): */
const char *sb2__lua_c_interface_version__(void)
{
/* currently it is enough to return pointer to the constant string. */
return(SB2_LUA_C_INTERFACE_VERSION);
}
/* Read and execute an lua file. Used from sb2-show, useful
* for debugging and benchmarking since the script is executed
* in a context which already contains all SB2's varariables etc.
* Note that this function is exported from libsb2.so:
*/
void sb2__load_and_execute_lua_file__(const char *filename)
{
struct lua_instance *luaif;
luaif = get_lua();
load_and_execute_lua_file(luaif, filename);
release_lua(luaif);
}
#if 0 /* DISABLED 2008-10-23/LTA: sb_decolonize_path() is not currently available*/
/* "sb.decolonize_path", to be called from lua code */
static int lua_sb_decolonize_path(lua_State *l)
{
int n;
char *path;
char *resolved_path;
n = lua_gettop(l);
if (n != 1) {
lua_pushstring(l, NULL);
return 1;
}
path = strdup(lua_tostring(l, 1));
resolved_path = sb_decolonize_path(path);
lua_pushstring(l, resolved_path);
free(resolved_path);
free(path);
return 1;
}
#endif
/* "sb.readlink", to be called from lua code */
static int lua_sb_readlink(lua_State *l)
{
int n;
char *path;
char resolved_path[PATH_MAX + 1];
n = lua_gettop(l);
if (n != 1) {
lua_pushstring(l, NULL);
return 1;
}
memset(resolved_path, '\0', PATH_MAX + 1);
path = strdup(lua_tostring(l, 1));
if (readlink(path, resolved_path, PATH_MAX) < 0) {
free(path);
lua_pushstring(l, NULL);
return 1;
} else {
free(path);
lua_pushstring(l, resolved_path);
return 1;
}
}
#if 0 /* Not used anymore. */
/* "sb.getdirlisting", to be called from lua code */
static int lua_sb_getdirlisting(lua_State *l)
{
DIR *d;
struct dirent *de;
char *path;
int count;
int n = lua_gettop(l);
if (n != 1) {
lua_pushstring(l, NULL);
return 1;
}
path = strdup(lua_tostring(l, 1));
if ( (d = opendir(path)) == NULL ) {
lua_pushstring(l, NULL);
return 1;
}
count = 1; /* Lua indexes tables from 1 */
lua_newtable(l); /* create a new table on the stack */
while ( (de = readdir(d)) != NULL) { /* get one dirent at a time */
lua_pushnumber(l, count);
lua_pushstring(l, de->d_name); /* push the entries to
* lua stack */
lua_settable(l, -3);
count++;
}
closedir(d);
free(path);
return 1;
}
#endif
/* "sb.log": interface from lua to the logging system.
* Parameters:
* 1. log level (string)
* 2. log message (string)
*/
static int lua_sb_log(lua_State *luastate)
{
char *logmsg;
char *loglevel;
int n = lua_gettop(luastate);
if (n != 2) {
SB_LOG(SB_LOGLEVEL_DEBUG,
"sb_log_from_lua: wrong number of params (%d)", n);
lua_pushstring(luastate, NULL);
return 1;
}
/* FIXME: is it necessary to use strdup here? */
loglevel = strdup(lua_tostring(luastate, 1));
logmsg = strdup(lua_tostring(luastate, 2));
if(!strcmp(loglevel, "debug"))
SB_LOG(SB_LOGLEVEL_DEBUG, ">> %s", logmsg);
else if(!strcmp(loglevel, "info"))
SB_LOG(SB_LOGLEVEL_INFO, "INFO: %s", logmsg);
else if(!strcmp(loglevel, "warning"))
SB_LOG(SB_LOGLEVEL_WARNING, "WARNING: %s", logmsg);
else if(!strcmp(loglevel, "network"))
SB_LOG(SB_LOGLEVEL_NETWORK, "NETWORK: %s", logmsg);
else if(!strcmp(loglevel, "notice"))
SB_LOG(SB_LOGLEVEL_NOTICE, "NOTICE: %s", logmsg);
else if(!strcmp(loglevel, "error"))
SB_LOG(SB_LOGLEVEL_ERROR, "ERROR: %s", logmsg);
else if(!strcmp(loglevel, "noise"))
SB_LOG(SB_LOGLEVEL_NOISE, ">>>>: %s", logmsg);
else if(!strcmp(loglevel, "noise2"))
SB_LOG(SB_LOGLEVEL_NOISE2, ">>>>>>: %s", logmsg);
else if(!strcmp(loglevel, "noise3"))
SB_LOG(SB_LOGLEVEL_NOISE3, ">>>>>>>>: %s", logmsg);
else /* default to level "error" */
SB_LOG(SB_LOGLEVEL_ERROR, "%s", logmsg);
free(loglevel);
free(logmsg);
lua_pushnumber(luastate, 1);
return 1;
}
static int lua_sb_setenv(lua_State *luastate)
{
int n = lua_gettop(luastate);
if (n != 2) {
SB_LOG(SB_LOGLEVEL_DEBUG,
"sb_log_from_lua: wrong number of params (%d)", n);
lua_pushstring(luastate, NULL);
return 1;
}
setenv(strdup(lua_tostring(luastate, 1)), strdup(lua_tostring(luastate, 2)), 1);
return 1;
}
/* "sb.path_exists", to be called from lua code
* returns true if file, directory or symlink exists at the specified real path,
* false if not.
*/
static int lua_sb_path_exists(lua_State *l)
{
int n;
n = lua_gettop(l);
if (n != 1) {
lua_pushboolean(l, 0);
} else {
char *path = strdup(lua_tostring(l, 1));
int result = 0;
SB_LOG(SB_LOGLEVEL_DEBUG, "lua_sb_path_exists testing '%s'",
path);
#ifdef AT_FDCWD
/* this is easy, can use faccessat() */
if (faccessat_nomap_nolog(AT_FDCWD, path, F_OK, AT_SYMLINK_NOFOLLOW) == 0) {
/* target exists */
result=1;
}
#else
/* Not so easy. The OS does not have faccessat() [it has
* been added to Linux 2.6.16 - older systems don't have it]
* so the operation must make the check by two separate calls:
* First check if the target is symlink (by readlink()),
* next check if it is an ordinary file or directoy.
* N.B. the result is that this returns 'true' if a symlink
* exists, even if the target of the symlink does not
* exist. Plain access() returns 'false' if it is a symlink
* which points to a non-existent destination)
* N.B.2. we'll use readlink because lstat() can't be used,
* full explanation for this can be found in paths.c.
*/
{
char link_dest[PATH_MAX+1];
int link_len;
link_len = readlink_nomap(path, link_dest, PATH_MAX);
if (link_len > 0) {
/* was a symlink */
result = 1;
} else {
if (access_nomap_nolog(path, F_OK) == 0)
result = 1;
}
}
#endif
lua_pushboolean(l, result);
SB_LOG(SB_LOGLEVEL_DEBUG, "lua_sb_path_exists got %d",
result);
free(path);
}
return 1;
}
/* "sb.debug_messages_enabled", to be called from lua code
* returns true if SB_LOG messages have been enabled for the debug levels
* (debug,noise,noise2...)
*/
static int lua_sb_debug_messages_enabled(lua_State *l)
{
if (SB_LOG_IS_ACTIVE(SB_LOGLEVEL_DEBUG)) {
lua_pushboolean(l, 1);
} else {
lua_pushboolean(l, 0);
}
return 1;
}
/* "sb.getcwd", to be called from lua code */
static int lua_sb_getcwd(lua_State *l)
{
char cwd[PATH_MAX + 1];
if (getcwd_nomap_nolog(cwd, sizeof(cwd))) {
lua_pushstring(l, cwd);
} else {
lua_pushstring(l, NULL);
}
return 1;
}
/* "sb.get_binary_name", to be called from lua code */
static int lua_sb_get_binary_name(lua_State *l)
{
lua_pushstring(l, sbox_binary_name);
return 1;
}
/* "sb.get_active_exec_policy_name", to be called from lua code */
static int lua_sb_get_active_exec_policy_name(lua_State *l)
{
lua_pushstring(l, sbox_active_exec_policy_name);
return 1;
}
/* "sb.get_forced_mapmode", to be called from lua code */
static int lua_sb_get_forced_mapmode(lua_State *l)
{
if (sbox_session_mode) lua_pushstring(l, sbox_session_mode);
else lua_pushnil(l);
return 1;
}
/* "sb.get_session_perm", to be called from lua code */
static int lua_sb_get_session_perm(lua_State *l)
{
if (sbox_session_perm) lua_pushstring(l, sbox_session_perm);
else lua_pushnil(l);
return 1;
}
/* "sb.isprefix(a,b)", to be called from lua code
* Return true if "a" is prefix of "b"
*/
static int lua_sb_isprefix(lua_State *l)
{
int n = lua_gettop(l);
if (n != 2) {
lua_pushboolean(l, 0);
} else {
const char *str_a = lua_tostring(l, 1);
const char *str_b = lua_tostring(l, 2);
int result = 0;
if (str_a && str_b) {
int prefixlen = strlen(str_a);
if (!strncmp(str_a, str_b, prefixlen)) result = 1;
}
SB_LOG(SB_LOGLEVEL_DEBUG, "lua_sb_isprefix '%s','%s' => %d",
str_a, str_b, result);
lua_pushboolean(l, result);
}
return 1;
}
/* "sb.test_path_match(path, rule.dir, rule.prefix, rule.path)":
* This is used from find_rule(); implementing this in C improves preformance.
* Returns min.path length if a match is found, otherwise returns -1
*/
static int lua_sb_test_path_match(lua_State *l)
{
int n = lua_gettop(l);
int result = -1;
if (n == 4) {
const char *str_path = lua_tostring(l, 1);
const char *str_rule_dir = lua_tostring(l, 2);
const char *str_rule_prefix = lua_tostring(l, 3);
const char *str_rule_path = lua_tostring(l, 4);
const char *match_type = "no match";
if (str_path && str_rule_dir && (*str_rule_dir != '\0')) {
int prefixlen = strlen(str_rule_dir);
/* test a directory prefix: the next char after the
* prefix must be '\0' or '/', unless we are accessing
* the root directory */
if (!strncmp(str_path, str_rule_dir, prefixlen)) {
if ( ((prefixlen == 1) && (*str_path=='/')) ||
(str_path[prefixlen] == '/') ||
(str_path[prefixlen] == '\0') ) {
result = prefixlen;
match_type = "dir";
}
}
}
if ((result == -1) && str_path
&& str_rule_prefix && (*str_rule_prefix != '\0')) {
int prefixlen = strlen(str_rule_prefix);
if (!strncmp(str_path, str_rule_prefix, prefixlen)) {
result = prefixlen;
match_type = "prefix";
}
}
if ((result == -1) && str_path && str_rule_path) {
int rule_path_len = strlen(str_rule_path);
if (!strcmp(str_path, str_rule_path)) {
result = rule_path_len;
match_type = "path";
} else {
/* if "path" has a trailing slash, we may
* want to try again, ignoring the trailing
* slash. */
int path_len = strlen(str_path);
if ((path_len > 2) &&
(str_path[path_len-1] == '/') &&
(path_len == (rule_path_len+1)) &&
!strncmp(str_path, str_rule_path, rule_path_len)) {
result = rule_path_len;
match_type = "path/";
}
}
}
SB_LOG(SB_LOGLEVEL_NOISE2,
"lua_sb_test_path_match '%s','%s','%s' => %d (%s)",
str_path, str_rule_prefix, str_rule_path,
result, match_type);
}
lua_pushnumber(l, result);
return 1;
}
/* "sb.procfs_mapping_request", to be called from lua code */
static int lua_sb_procfs_mapping_request(lua_State *l)
{
int n;
char *path;
char *resolved_path;
n = lua_gettop(l);
if (n != 1) {
lua_pushstring(l, NULL);
return 1;
}
path = strdup(lua_tostring(l, 1));
resolved_path = procfs_mapping_request(path);
if (resolved_path) {
/* mapped to somewhere else */
lua_pushstring(l, resolved_path);
free(resolved_path);
} else {
/* no need to map this path */
lua_pushnil(l);
}
free(path);
return 1;
}
static int test_if_str_in_colon_separated_list_from_env(
const char *str, const char *env_var_name)
{
int result = 0; /* boolean; default result is "not found" */
char *list;
char *tok = NULL;
char *tok_state = NULL;
list = getenv(env_var_name);
if (!list) {
SB_LOG(SB_LOGLEVEL_DEBUG, "no %s", env_var_name);
return(0);
}
list = strdup(list); /* will be modified by strtok_r */
SB_LOG(SB_LOGLEVEL_DEBUG, "%s is '%s'", env_var_name, list);
tok = strtok_r(list, ":", &tok_state);
while (tok) {
result = !strcmp(str, tok);
if (result) break; /* return if matched */
tok = strtok_r(NULL, ":", &tok_state);
}
free(list);
return(result);
}
/* "sb.test_if_listed_in_envvar", to be called from lua code
* Parameters (in stack):
* 1. string: unmapped path
* 2. string: name of environment variable containing colon-separated list
* Returns (in stack):
* 1. flag (boolean): true if the path is listed in the environment
* variable "SBOX_REDIRECT_IGNORE", false otherwise
* (this is used to examine values of "SBOX_REDIRECT_IGNORE" and
* "SBOX_REDIRECT_FORCE")
*
* Note: these variables typically can't be cached
* they can be changed by the current process.
*/
static int lua_sb_test_if_listed_in_envvar(lua_State *l)
{
int result = 0; /* boolean; default result is "false" */
int n;
const char *path = NULL;
const char *env_var_name = NULL;
n = lua_gettop(l);
if (n != 2) {
SB_LOG(SB_LOGLEVEL_DEBUG,
"test_if_listed_in_envvar FAILS: lua_gettop = %d", n);
} else {
path = lua_tostring(l, 1);
env_var_name = lua_tostring(l, 2);
if (path && env_var_name) {
result = test_if_str_in_colon_separated_list_from_env(
path, env_var_name);
}
}
lua_pushboolean(l, result);
SB_LOG(SB_LOGLEVEL_DEBUG, "test_if_listed_in_envvar(%s) => %d",
path, result);
return 1;
}
/* mappings from c to lua */
static const luaL_reg reg[] =
{
#if 0
{"getdirlisting", lua_sb_getdirlisting},
#endif
{"readlink", lua_sb_readlink},
#if 0
{"decolonize_path", lua_sb_decolonize_path},
#endif
{"log", lua_sb_log},
{"setenv", lua_sb_setenv},
{"path_exists", lua_sb_path_exists},
{"debug_messages_enabled", lua_sb_debug_messages_enabled},
{"getcwd", lua_sb_getcwd},
{"get_binary_name", lua_sb_get_binary_name},
{"get_active_exec_policy_name", lua_sb_get_active_exec_policy_name},
{"get_forced_mapmode", lua_sb_get_forced_mapmode},
{"get_session_perm", lua_sb_get_session_perm},
{"isprefix", lua_sb_isprefix},
{"test_path_match", lua_sb_test_path_match},
{"procfs_mapping_request", lua_sb_procfs_mapping_request},
{"test_if_listed_in_envvar", lua_sb_test_if_listed_in_envvar},
{NULL, NULL}
};
static int lua_bind_sb_functions(lua_State *l)
{
luaL_register(l, "sb", reg);
lua_pushliteral(l,"version");
lua_pushstring(l, "2.0" );
lua_settable(l,-3);
return 0;
}
|