2009-06-17 20:45:48 +02:00
|
|
|
/****************************************************************************
|
2019-01-26 18:18:45 +01:00
|
|
|
* binfmt/binfmt_unloadmodule.c
|
2009-06-17 20:45:48 +02:00
|
|
|
*
|
2021-02-03 14:47:23 +01:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2009-06-17 20:45:48 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2009-12-15 18:06:59 +01:00
|
|
|
#include <sys/mman.h>
|
2009-06-17 20:45:48 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sched.h>
|
|
|
|
#include <debug.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2023-01-27 12:45:03 +01:00
|
|
|
#include <nuttx/addrenv.h>
|
2013-03-09 22:12:20 +01:00
|
|
|
#include <nuttx/kmalloc.h>
|
2012-10-24 22:19:44 +02:00
|
|
|
#include <nuttx/binfmt/binfmt.h>
|
2009-06-17 20:45:48 +02:00
|
|
|
|
2015-11-14 14:29:47 +01:00
|
|
|
#include "binfmt.h"
|
2009-06-17 20:45:48 +02:00
|
|
|
|
2009-06-17 23:15:31 +02:00
|
|
|
#ifndef CONFIG_BINFMT_DISABLE
|
|
|
|
|
2009-06-17 20:45:48 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2012-10-29 20:32:05 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: exec_dtors
|
|
|
|
*
|
|
|
|
* Description:
|
2019-01-26 18:18:45 +01:00
|
|
|
* Execute C++ static destructors.
|
2012-10-29 20:32:05 +01:00
|
|
|
*
|
|
|
|
* Input Parameters:
|
2018-08-05 16:09:54 +02:00
|
|
|
* binp - Load state information
|
2012-10-29 20:32:05 +01:00
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* 0 (OK) is returned on success and a negated errno is returned on
|
|
|
|
* failure.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_BINFMT_CONSTRUCTORS
|
2014-05-09 00:58:10 +02:00
|
|
|
static inline int exec_dtors(FAR struct binary_s *binp)
|
2012-10-29 20:32:05 +01:00
|
|
|
{
|
2012-10-29 21:43:35 +01:00
|
|
|
binfmt_dtor_t *dtor = binp->dtors;
|
2014-08-24 14:42:11 +02:00
|
|
|
#ifdef CONFIG_ARCH_ADDRENV
|
2012-12-19 18:54:26 +01:00
|
|
|
int ret;
|
|
|
|
#endif
|
2012-10-29 20:32:05 +01:00
|
|
|
int i;
|
|
|
|
|
2014-09-10 01:32:32 +02:00
|
|
|
/* Instantiate the address environment containing the destructors */
|
2012-12-19 18:54:26 +01:00
|
|
|
|
2014-08-24 14:42:11 +02:00
|
|
|
#ifdef CONFIG_ARCH_ADDRENV
|
2023-01-27 12:45:03 +01:00
|
|
|
ret = addrenv_select(&binp->addrenv);
|
2012-12-19 18:54:26 +01:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
2023-01-27 12:45:03 +01:00
|
|
|
berr("ERROR: addrenv_select() failed: %d\n", ret);
|
2012-12-19 18:54:26 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-10-29 20:32:05 +01:00
|
|
|
/* Execute each destructor */
|
|
|
|
|
|
|
|
for (i = 0; i < binp->ndtors; i++)
|
|
|
|
{
|
2016-06-11 19:59:51 +02:00
|
|
|
binfo("Calling dtor %d at %p\n", i, (FAR void *)dtor);
|
2012-10-29 20:32:05 +01:00
|
|
|
|
|
|
|
(*dtor)();
|
|
|
|
dtor++;
|
|
|
|
}
|
2012-12-19 18:54:26 +01:00
|
|
|
|
2014-09-10 01:32:32 +02:00
|
|
|
/* Restore the address environment */
|
2012-12-19 18:54:26 +01:00
|
|
|
|
2014-08-24 14:42:11 +02:00
|
|
|
#ifdef CONFIG_ARCH_ADDRENV
|
2023-01-27 12:45:03 +01:00
|
|
|
return addrenv_restore();
|
2012-12-19 18:54:26 +01:00
|
|
|
#else
|
|
|
|
return OK;
|
|
|
|
#endif
|
2012-10-29 20:32:05 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-06-17 22:25:27 +02:00
|
|
|
/****************************************************************************
|
2009-06-17 20:45:48 +02:00
|
|
|
* Public Functions
|
2009-06-17 22:25:27 +02:00
|
|
|
****************************************************************************/
|
2009-06-17 20:45:48 +02:00
|
|
|
|
2009-06-17 22:25:27 +02:00
|
|
|
/****************************************************************************
|
2009-06-17 20:45:48 +02:00
|
|
|
* Name: unload_module
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Unload a (non-executing) module from memory. If the module has
|
2012-10-29 20:32:05 +01:00
|
|
|
* been started (via exec_module) and has not exited, calling this will
|
|
|
|
* be fatal.
|
|
|
|
*
|
2014-05-09 00:58:10 +02:00
|
|
|
* However, this function must be called after the module exits. How
|
2012-10-29 20:32:05 +01:00
|
|
|
* this is done is up to your logic. Perhaps you register it to be
|
|
|
|
* called by on_exit()?
|
2009-06-17 20:45:48 +02:00
|
|
|
*
|
2009-06-17 22:25:27 +02:00
|
|
|
* Returned Value:
|
|
|
|
* This is a NuttX internal function so it follows the convention that
|
|
|
|
* 0 (OK) is returned on success and a negated errno is returned on
|
|
|
|
* failure.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2009-06-17 20:45:48 +02:00
|
|
|
|
2014-05-09 00:58:10 +02:00
|
|
|
int unload_module(FAR struct binary_s *binp)
|
2009-06-17 20:45:48 +02:00
|
|
|
{
|
2012-12-19 18:54:26 +01:00
|
|
|
int ret;
|
2012-10-29 20:32:05 +01:00
|
|
|
int i;
|
2014-04-14 00:22:22 +02:00
|
|
|
|
2012-10-29 20:32:05 +01:00
|
|
|
if (binp)
|
2009-06-17 20:45:48 +02:00
|
|
|
{
|
2014-05-09 00:58:10 +02:00
|
|
|
/* Perform any format-specific unload operations */
|
|
|
|
|
|
|
|
if (binp->unload)
|
|
|
|
{
|
|
|
|
ret = binp->unload(binp);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
2016-06-11 23:50:49 +02:00
|
|
|
berr("binp->unload() failed: %d\n", ret);
|
2017-10-02 23:30:55 +02:00
|
|
|
return ret;
|
2014-05-09 00:58:10 +02:00
|
|
|
}
|
|
|
|
}
|
2012-10-29 20:32:05 +01:00
|
|
|
|
|
|
|
#ifdef CONFIG_BINFMT_CONSTRUCTORS
|
2014-05-09 00:58:10 +02:00
|
|
|
/* Execute C++ destructors */
|
|
|
|
|
2012-12-19 18:54:26 +01:00
|
|
|
ret = exec_dtors(binp);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
2016-06-11 23:50:49 +02:00
|
|
|
berr("exec_ctors() failed: %d\n", ret);
|
2017-10-02 23:30:55 +02:00
|
|
|
return ret;
|
2012-12-19 18:54:26 +01:00
|
|
|
}
|
2012-10-29 20:32:05 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Unmap mapped address spaces */
|
|
|
|
|
|
|
|
if (binp->mapped)
|
2009-06-17 20:45:48 +02:00
|
|
|
{
|
2016-06-11 19:59:51 +02:00
|
|
|
binfo("Unmapping address space: %p\n", binp->mapped);
|
2012-10-29 20:32:05 +01:00
|
|
|
|
2021-02-15 18:15:08 +01:00
|
|
|
file_munmap(binp->mapped, binp->mapsize);
|
2009-06-17 20:45:48 +02:00
|
|
|
}
|
|
|
|
|
2012-10-29 20:32:05 +01:00
|
|
|
/* Free allocated address spaces */
|
|
|
|
|
|
|
|
for (i = 0; i < BINFMT_NALLOC; i++)
|
2009-06-17 20:45:48 +02:00
|
|
|
{
|
2012-10-29 20:32:05 +01:00
|
|
|
if (binp->alloc[i])
|
|
|
|
{
|
2016-06-11 19:59:51 +02:00
|
|
|
binfo("Freeing alloc[%d]: %p\n", i, binp->alloc[i]);
|
2021-06-18 01:47:45 +02:00
|
|
|
#if defined(CONFIG_ARCH_USE_TEXT_HEAP)
|
2022-07-22 16:10:47 +02:00
|
|
|
if (i == 0)
|
|
|
|
{
|
|
|
|
up_textheap_free((FAR void *)binp->alloc[i]);
|
|
|
|
}
|
|
|
|
else
|
2021-06-04 03:51:26 +02:00
|
|
|
#endif
|
2022-07-22 16:10:47 +02:00
|
|
|
{
|
|
|
|
kumm_free((FAR void *)binp->alloc[i]);
|
|
|
|
}
|
2012-10-29 20:32:05 +01:00
|
|
|
}
|
2009-06-17 20:45:48 +02:00
|
|
|
}
|
2012-12-19 18:54:26 +01:00
|
|
|
|
|
|
|
/* Notice that the address environment is not destroyed. This should
|
|
|
|
* happen automatically when the task exits.
|
|
|
|
*/
|
2009-06-17 20:45:48 +02:00
|
|
|
}
|
2012-10-29 20:32:05 +01:00
|
|
|
|
2009-06-17 20:45:48 +02:00
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
2009-06-17 23:15:31 +02:00
|
|
|
#endif /* CONFIG_BINFMT_DISABLE */
|