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
|
////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 1993-2021 The Octave Project Developers
//
// See the file COPYRIGHT.md in the top-level directory of this
// distribution or <https://octave.org/copyright/>.
//
// This file is part of Octave.
//
// Octave is free software: you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Octave is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Octave; see the file COPYING. If not, see
// <https://www.gnu.org/licenses/>.
//
////////////////////////////////////////////////////////////////////////
#if defined (HAVE_CONFIG_H)
# include "config.h"
#endif
#include <iostream>
#include <list>
#include "file-stat.h"
#include "oct-env.h"
#include "oct-time.h"
#include "defun.h"
#include "dynamic-ld.h"
#include "interpreter-private.h"
#include "interpreter.h"
#include "ov-fcn.h"
#include "ov-dld-fcn.h"
#include "ov-mex-fcn.h"
#include "parse.h"
#include "unwind-prot.h"
#include "utils.h"
#include "variables.h"
#define STRINGIFY(s) STRINGIFY1(s)
#define STRINGIFY1(s) #s
namespace octave
{
void
dynamic_loader::shlibs_list::append (const dynamic_library& shl)
{
m_lib_list.push_back (shl);
}
std::list<std::string>
dynamic_loader::shlibs_list::remove (dynamic_library& shl)
{
std::list<std::string> removed_fcns;
for (auto p = m_lib_list.begin (); p != m_lib_list.end (); p++)
{
if (*p == shl)
{
m_lib_list.erase (p);
removed_fcns = shl.close ();
break;
}
}
return removed_fcns;
}
dynamic_library
dynamic_loader::shlibs_list::find_file (const std::string& file_name) const
{
dynamic_library retval;
for (const auto& lib : m_lib_list)
{
if (lib.file_name () == file_name)
{
retval = lib;
break;
}
}
return retval;
}
void
dynamic_loader::shlibs_list::display (void) const
{
std::cerr << "current shared libraries:" << std::endl;
for (const auto& lib : m_lib_list)
std::cerr << " " << lib.file_name () << std::endl;
}
void
dynamic_loader::clear_function (const std::string& fcn_name)
{
warning_with_id ("Octave:reload-forces-clear", " %s", fcn_name.c_str ());
// FIXME: is there a way to avoid this? Can we manage the list of
// functions that are loaded in the symbol table completely outside
// of the dynamic_loader class?
symbol_table& symtab = m_interpreter.get_symbol_table ();
symtab.clear_dld_function (fcn_name);
}
void
dynamic_loader::clear (dynamic_library& oct_file)
{
if (oct_file.number_of_functions_loaded () > 1)
{
warning_with_id ("Octave:reload-forces-clear",
"reloading %s clears the following functions:",
oct_file.file_name ().c_str ());
std::list<std::string> removed_fcns = m_loaded_shlibs.remove (oct_file);
for (const auto& fcn_name : removed_fcns)
clear_function (fcn_name);
}
else
{
std::list<std::string> removed_fcns = m_loaded_shlibs.remove (oct_file);
// FIXME: is there a way to avoid this? Can we manage the list
// of functions that are loaded in the symbol table completely
// outside of the dynamic_loader class?
symbol_table& symtab = m_interpreter.get_symbol_table ();
for (const auto& fcn_name : removed_fcns)
symtab.clear_dld_function (fcn_name);
}
}
octave_function *
dynamic_loader::load_oct (const std::string& fcn_name,
const std::string& file_name,
bool relative)
{
octave_function *retval = nullptr;
unwind_protect frame;
frame.protect_var (m_doing_load);
m_doing_load = true;
dynamic_library oct_file = m_loaded_shlibs.find_file (file_name);
if (oct_file && oct_file.is_out_of_date ())
clear (oct_file);
if (! oct_file)
{
oct_file.open (file_name);
if (oct_file)
m_loaded_shlibs.append (oct_file);
}
if (! oct_file)
error ("%s is not a valid shared library", file_name.c_str ());
void *function = oct_file.search (fcn_name, name_mangler);
if (! function)
{
// FIXME: can we determine this C mangling scheme
// automatically at run time or configure time?
function = oct_file.search (fcn_name, name_uscore_mangler);
}
if (function)
{
octave_dld_fcn_getter f
= reinterpret_cast<octave_dld_fcn_getter> (function);
retval = f (oct_file, relative);
if (! retval)
error ("failed to install .oct file function '%s'",
fcn_name.c_str ());
}
return retval;
}
octave_function *
dynamic_loader::load_mex (const std::string& fcn_name,
const std::string& file_name,
bool /*relative*/)
{
octave_function *retval = nullptr;
unwind_protect frame;
frame.protect_var (m_doing_load);
m_doing_load = true;
dynamic_library mex_file = m_loaded_shlibs.find_file (file_name);
if (mex_file && mex_file.is_out_of_date ())
clear (mex_file);
if (! mex_file)
{
mex_file.open (file_name);
if (mex_file)
m_loaded_shlibs.append (mex_file);
}
if (! mex_file)
error ("%s is not a valid shared library", file_name.c_str ());
bool have_fmex = false;
void *function = mex_file.search (fcn_name, mex_mangler);
if (! function)
{
// FIXME: Can we determine this C mangling scheme
// automatically at run time or configure time?
function = mex_file.search (fcn_name, mex_uscore_mangler);
if (! function)
{
function = mex_file.search (fcn_name, mex_f77_mangler);
if (function)
have_fmex = true;
}
}
if (! function)
error ("failed to install .mex file function '%s'", fcn_name.c_str ());
retval = new octave_mex_function (function, have_fmex, mex_file, fcn_name);
return retval;
}
bool
dynamic_loader::remove_oct (const std::string& fcn_name,
dynamic_library& shl)
{
bool retval = false;
// We don't need to do anything if this is called because we are in
// the process of reloading a .oct file that has changed.
if (! m_doing_load)
{
retval = shl.remove (fcn_name);
if (shl.number_of_functions_loaded () == 0)
m_loaded_shlibs.remove (shl);
}
return retval;
}
bool
dynamic_loader::remove_mex (const std::string& fcn_name,
dynamic_library& shl)
{
// Use the same procedure as for oct files.
return remove_oct (fcn_name, shl);
}
std::string
dynamic_loader::name_mangler (const std::string& name)
{
return 'G' + name;
}
std::string
dynamic_loader::name_uscore_mangler (const std::string& name)
{
return "_G" + name;
}
std::string
dynamic_loader::mex_mangler (const std::string&)
{
return "mexFunction";
}
std::string
dynamic_loader::mex_uscore_mangler (const std::string&)
{
return "_mexFunction";
}
std::string
dynamic_loader::mex_f77_mangler (const std::string&)
{
return STRINGIFY (F77_FUNC (mexfunction, MEXFUNCTION));
}
}
|