os.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:11k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * os.c : Low-level dynamic library handling
  3.  *****************************************************************************
  4.  * Copyright (C) 2001-2007 the VideoLAN team
  5.  * $Id: 30c5c13866573be7788adf8212cdf1ca7b4158b6 $
  6.  *
  7.  * Authors: Sam Hocevar <sam@zoy.org>
  8.  *          Ethan C. Baldridge <BaldridgeE@cadmus.com>
  9.  *          Hans-Peter Jansen <hpj@urpla.net>
  10.  *          Gildas Bazin <gbazin@videolan.org>
  11.  *
  12.  * This program is free software; you can redistribute it and/or modify
  13.  * it under the terms of the GNU General Public License as published by
  14.  * the Free Software Foundation; either version 2 of the License, or
  15.  * (at your option) any later version.
  16.  *
  17.  * This program is distributed in the hope that it will be useful,
  18.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20.  * GNU General Public License for more details.
  21.  *
  22.  * You should have received a copy of the GNU General Public License
  23.  * along with this program; if not, write to the Free Software
  24.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <vlc_common.h>
  30. #include <vlc_plugin.h> /* MODULE_SUFFIX */
  31. #include "libvlc.h"
  32. #include "modules.h"
  33. #include <stdlib.h>                                      /* free(), strtol() */
  34. #include <stdio.h>                                              /* sprintf() */
  35. #include <string.h>                                              /* strdup() */
  36. #ifdef HAVE_SYS_TYPES_H
  37. #   include <sys/types.h>
  38. #endif
  39. #if defined(__APPLE__) && defined(__x86_64__)
  40. #   define HAVE_DL_DLOPEN 1
  41. #   define HAVE_DLFCN_H 1
  42. #endif
  43. #if !defined(HAVE_DYNAMIC_PLUGINS)
  44.     /* no support for plugins */
  45. #elif defined(HAVE_DL_DYLD) && !defined(__x86_64__)
  46. #   if defined(HAVE_MACH_O_DYLD_H)
  47. #       include <mach-o/dyld.h>
  48. #   endif
  49. #elif defined(HAVE_DL_BEOS)
  50. #   if defined(HAVE_IMAGE_H)
  51. #       include <image.h>
  52. #   endif
  53. #elif defined(HAVE_DL_WINDOWS)
  54. #   include <windows.h>
  55. #elif defined(HAVE_DL_DLOPEN)
  56. #   if defined(HAVE_DLFCN_H) /* Linux, BSD, Hurd */
  57. #       include <dlfcn.h>
  58. #   endif
  59. #   if defined(HAVE_SYS_DL_H)
  60. #       include <sys/dl.h>
  61. #   endif
  62. #elif defined(HAVE_DL_SHL_LOAD)
  63. #   if defined(HAVE_DL_H)
  64. #       include <dl.h>
  65. #   endif
  66. #endif
  67. #ifdef HAVE_VALGRIND_VALGRIND_H
  68. # include <valgrind/valgrind.h>
  69. #endif
  70. /*****************************************************************************
  71.  * Local prototypes
  72.  *****************************************************************************/
  73. #ifdef HAVE_DYNAMIC_PLUGINS
  74. static void *module_Lookup( module_handle_t, const char * );
  75. #if defined(HAVE_DL_WINDOWS)
  76. static char * GetWindowsError  ( void );
  77. #endif
  78. /**
  79.  * module Call
  80.  *
  81.  * Call a symbol given its name and a module structure. The symbol MUST
  82.  * refer to a function returning int and taking a module_t* as an argument.
  83.  * param p_module the modules
  84.  * return 0 if it pass and -1 in case of a failure
  85.  */
  86. int module_Call( vlc_object_t *obj, module_t *p_module )
  87. {
  88.     static const char psz_name[] = "vlc_entry" MODULE_SUFFIX;
  89.     int (* pf_symbol) ( module_t * p_module );
  90.     /* Try to resolve the symbol */
  91.     pf_symbol = (int (*)(module_t *)) module_Lookup( p_module->handle,
  92.                                                      psz_name );
  93.     if( pf_symbol == NULL )
  94.     {
  95. #if (defined(HAVE_DL_DYLD) && !defined(__x86_64__)) || defined(HAVE_DL_BEOS)
  96.         msg_Warn( obj, "cannot find symbol "%s" in file `%s'",
  97.                   psz_name, p_module->psz_filename );
  98. #elif defined(HAVE_DL_WINDOWS)
  99.         char *psz_error = GetWindowsError();
  100.         msg_Warn( obj, "cannot find symbol "%s" in file `%s' (%s)",
  101.                   psz_name, p_module->psz_filename, psz_error );
  102.         free( psz_error );
  103. #elif defined(HAVE_DL_DLOPEN)
  104.         msg_Warn( obj, "cannot find symbol "%s" in file `%s' (%s)",
  105.                   psz_name, p_module->psz_filename, dlerror() );
  106. #elif defined(HAVE_DL_SHL_LOAD)
  107.         msg_Warn( obj, "cannot find symbol "%s" in file `%s' (%m)",
  108.                   psz_name, p_module->psz_filename );
  109. #else
  110. #   error "Something is wrong in modules.c"
  111. #endif
  112.         return -1;
  113.     }
  114.     /* We can now try to call the symbol */
  115.     if( pf_symbol( p_module ) != 0 )
  116.     {
  117.         /* With a well-written module we shouldn't have to print an
  118.          * additional error message here, but just make sure. */
  119.         msg_Err( obj, "Failed to call symbol "%s" in file `%s'",
  120.                  psz_name, p_module->psz_filename );
  121.         return -1;
  122.     }
  123.     /* Everything worked fine, we can return */
  124.     return 0;
  125. }
  126. /**
  127.  * Load a dynamically linked library using a system dependent method.
  128.  *
  129.  * param p_this vlc object
  130.  * param psz_file library file
  131.  * param p_handle the module handle returned
  132.  * return 0 on success as well as the module handle.
  133.  */
  134. int module_Load( vlc_object_t *p_this, const char *psz_file,
  135.                  module_handle_t *p_handle )
  136. {
  137.     module_handle_t handle;
  138. #if defined(HAVE_DL_DYLD) && !defined(__x86_64__) 
  139.     NSObjectFileImage image;
  140.     NSObjectFileImageReturnCode ret;
  141.     ret = NSCreateObjectFileImageFromFile( psz_file, &image );
  142.     if( ret != NSObjectFileImageSuccess )
  143.     {
  144.         msg_Warn( p_this, "cannot create image from `%s'", psz_file );
  145.         return -1;
  146.     }
  147.     /* Open the dynamic module */
  148.     handle = NSLinkModule( image, psz_file,
  149.                            NSLINKMODULE_OPTION_RETURN_ON_ERROR );
  150.     if( !handle )
  151.     {
  152.         NSLinkEditErrors errors;
  153.         const char *psz_file, *psz_err;
  154.         int i_errnum;
  155.         NSLinkEditError( &errors, &i_errnum, &psz_file, &psz_err );
  156.         msg_Warn( p_this, "cannot link module `%s' (%s)", psz_file, psz_err );
  157.         NSDestroyObjectFileImage( image );
  158.         return -1;
  159.     }
  160.     /* Destroy our image, we won't need it */
  161.     NSDestroyObjectFileImage( image );
  162. #elif defined(HAVE_DL_BEOS)
  163.     handle = load_add_on( psz_file );
  164.     if( handle < 0 )
  165.     {
  166.         msg_Warn( p_this, "cannot load module `%s'", psz_file );
  167.         return -1;
  168.     }
  169. #elif defined(HAVE_DL_WINDOWS)
  170.     wchar_t psz_wfile[MAX_PATH];
  171.     MultiByteToWideChar( CP_ACP, 0, psz_file, -1, psz_wfile, MAX_PATH );
  172. #ifndef UNDER_CE
  173.     /* FIXME: this is not thread-safe -- Courmisch */
  174.     UINT mode = SetErrorMode (SEM_FAILCRITICALERRORS);
  175.     SetErrorMode (mode|SEM_FAILCRITICALERRORS);
  176. #endif
  177.     handle = LoadLibraryW( psz_wfile );
  178. #ifndef UNDER_CE
  179.     SetErrorMode (mode);
  180. #endif
  181.     if( handle == NULL )
  182.     {
  183.         char *psz_err = GetWindowsError();
  184.         msg_Warn( p_this, "cannot load module `%s' (%s)", psz_file, psz_err );
  185.         free( psz_err );
  186.         return -1;
  187.     }
  188. #elif defined(HAVE_DL_DLOPEN)
  189. # if defined (RTLD_NOW)
  190.     const int flags = RTLD_NOW;
  191. # elif defined (DL_LAZY)
  192.     const int flags = DL_LAZY;
  193. # else
  194.     const int flags = 0;
  195. # endif
  196.     handle = dlopen( psz_file, flags );
  197.     if( handle == NULL )
  198.     {
  199.         msg_Warn( p_this, "cannot load module `%s' (%s)",
  200.                           psz_file, dlerror() );
  201.         return -1;
  202.     }
  203. #elif defined(HAVE_DL_SHL_LOAD)
  204.     handle = shl_load( psz_file, BIND_IMMEDIATE | BIND_NONFATAL, NULL );
  205.     if( handle == NULL )
  206.     {
  207.         msg_Warn( p_this, "cannot load module `%s' (%m)", psz_file );
  208.         return -1;
  209.     }
  210. #else
  211. #   error "Something is wrong in modules.c"
  212. #endif
  213.     *p_handle = handle;
  214.     return 0;
  215. }
  216. /**
  217.  * CloseModule: unload a dynamic library
  218.  *
  219.  * This function unloads a previously opened dynamically linked library
  220.  * using a system dependent method. No return value is taken in consideration,
  221.  * since some libraries sometimes refuse to close properly.
  222.  * param handle handle of the library
  223.  * return nothing
  224.  */
  225. void module_Unload( module_handle_t handle )
  226. {
  227. #if defined(HAVE_DL_DYLD) && !defined(__x86_64__)
  228.     NSUnLinkModule( handle, FALSE );
  229. #elif defined(HAVE_DL_BEOS)
  230.     unload_add_on( handle );
  231. #elif defined(HAVE_DL_WINDOWS)
  232.     FreeLibrary( handle );
  233. #elif defined(HAVE_DL_DLOPEN)
  234. # ifdef HAVE_VALGRIND_VALGRIND_H
  235.     if( RUNNING_ON_VALGRIND > 0 )
  236.         return; /* do not dlclose() so that we get proper stack traces */
  237. # endif
  238.     dlclose( handle );
  239. #elif defined(HAVE_DL_SHL_LOAD)
  240.     shl_unload( handle );
  241. #endif
  242.     return;
  243. }
  244. /**
  245.  * Looks up a symbol from a dynamically loaded library
  246.  *
  247.  * This function queries a loaded library for a symbol specified in a
  248.  * string, and returns a pointer to it. We don't check for dlerror() or
  249.  * similar functions, since we want a non-NULL symbol anyway.
  250.  *
  251.  * @param handle handle to the module
  252.  * @param psz_function function name
  253.  * @return NULL on error, or the address of the symbol
  254.  */
  255. static void *module_Lookup( module_handle_t handle, const char *psz_function )
  256. {
  257. #if defined(HAVE_DL_DYLD) && !defined(__x86_64__)
  258.     char psz_call[strlen( psz_function ) + 2];
  259.     psz_call[0] = '_';
  260.     memcpy( psz_call + 1, psz_function, sizeof( psz_call ) - 1 );
  261.     NSSymbol sym = NSLookupSymbolInModule( handle, psz_call );
  262.     return NSAddressOfSymbol( sym );
  263. #elif defined(HAVE_DL_BEOS)
  264.     void * p_symbol;
  265.     if( B_OK == get_image_symbol( handle, psz_function,
  266.                                   B_SYMBOL_TYPE_TEXT, &p_symbol ) )
  267.     {
  268.         return p_symbol;
  269.     }
  270.     else
  271.     {
  272.         return NULL;
  273.     }
  274. #elif defined(HAVE_DL_WINDOWS) && defined(UNDER_CE)
  275.     wchar_t wide[strlen( psz_function ) + 1];
  276.     size_t i = 0;
  277.     do
  278.         wide[i] = psz_function[i]; /* UTF-16 <- ASCII */
  279.     while( psz_function[i++] );
  280.     return (void *)GetProcAddress( handle, wide );
  281. #elif defined(HAVE_DL_WINDOWS) && defined(WIN32)
  282.     return (void *)GetProcAddress( handle, (char *)psz_function );
  283. #elif defined(HAVE_DL_DLOPEN)
  284.     return dlsym( handle, psz_function );
  285. #elif defined(HAVE_DL_SHL_LOAD)
  286.     void *p_sym;
  287.     shl_findsym( &handle, psz_function, TYPE_UNDEFINED, &p_sym );
  288.     return p_sym;
  289. #endif
  290. }
  291. #if defined(HAVE_DL_WINDOWS)
  292. static char * GetWindowsError( void )
  293. {
  294. #if defined(UNDER_CE)
  295.     wchar_t psz_tmp[MAX_PATH];
  296.     char * psz_buffer = malloc( MAX_PATH );
  297. #else
  298.     char * psz_tmp = malloc( MAX_PATH );
  299. #endif
  300.     int i = 0, i_error = GetLastError();
  301.     FormatMessage( FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
  302.                    NULL, i_error, MAKELANGID (LANG_NEUTRAL, SUBLANG_DEFAULT),
  303.                    (LPTSTR)psz_tmp, MAX_PATH, NULL );
  304.     /* Go to the end of the string */
  305.     while( psz_tmp[i] && psz_tmp[i] != _T('r') && psz_tmp[i] != _T('n') )
  306.     {
  307.         i++;
  308.     }
  309.     if( psz_tmp[i] )
  310.     {
  311. #if defined(UNDER_CE)
  312.         swprintf( psz_tmp + i, L" (error %i)", i_error );
  313.         psz_tmp[ 255 ] = L'';
  314. #else
  315.         snprintf( psz_tmp + i, 256 - i, " (error %i)", i_error );
  316.         psz_tmp[ 255 ] = '';
  317. #endif
  318.     }
  319. #if defined(UNDER_CE)
  320.     wcstombs( psz_buffer, psz_tmp, MAX_PATH );
  321.     return psz_buffer;
  322. #else
  323.     return psz_tmp;
  324. #endif
  325. }
  326. #endif /* HAVE_DL_WINDOWS */
  327. #endif /* HAVE_DYNAMIC_PLUGINS */