mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-10 06:55:15 +00:00
Both the demo and the test asserted that each running instance of a module gets its own copy of a library named in DT_NEEDED: two instances adding their own seed each saw a total of seed*3. That was true of the loader that walked DT_NEEDED itself. The loader now hands the work to dlopen(), which returns the object already in the module registry rather than loading a second copy of it, so there is one library and one set of its globals, shared by every module that names it. The module's own data stays private per instance, because exec() loads the module afresh each time. What an instance can still assert on its own is that every add it made landed in the library, so that is what it checks; the totals interleave and the final one counts both. The test additionally checks the consequences: the library is pinned once rather than once per instance, and its destructor runs once, at the last close, holding what both instances built up. USER_FAIL_PRIVATE becomes USER_FAIL_SHARED rather than gaining a companion. The bit is a private protocol between cxxuser.cpp, which sets it, and testing/fs/xipfs, which reads it; nothing else names it, and the property it used to report no longer exists. Assisted-by: Claude Opus 5 (1M context) <noreply@anthropic.com> Signed-off-by: Marco Casaroli <marco.casaroli@gmail.com>
72 lines
2.8 KiB
C
72 lines
2.8 KiB
C
/****************************************************************************
|
|
* apps/examples/fdpicxip/modules/user.c
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* 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.
|
|
*
|
|
****************************************************************************/
|
|
|
|
/* Uses libcounter.so. Two instances run concurrently, and there is one
|
|
* library between them: DT_NEEDED is loaded with dlopen(), which returns
|
|
* the object already in the registry rather than a second copy of it, so
|
|
* the totals interleave and the final one counts both instances' bumps.
|
|
* What each instance can assert on its own is that every bump it made
|
|
* landed somewhere it can still see.
|
|
*
|
|
* libcounter is also a *leaf* library -- it calls nothing outside itself,
|
|
* so it has no PLT and therefore no DT_PLTGOT. The loader has to fall back
|
|
* to PT_DYNAMIC vaddr + memsz to find its GOT. If that fallback is wrong
|
|
* the library cannot reach its own globals, which is exactly what the total
|
|
* below would expose.
|
|
*/
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include <stdlib.h>
|
|
#include <syslog.h>
|
|
#include <unistd.h>
|
|
|
|
/****************************************************************************
|
|
* Public Functions
|
|
****************************************************************************/
|
|
|
|
extern int counter_bump(int by);
|
|
extern int counter_total(void);
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
int seed = (argc > 1) ? atoi(argv[1]) : 0;
|
|
int i;
|
|
|
|
for (i = 0; i < 3; i++)
|
|
{
|
|
counter_bump(seed);
|
|
usleep(100000);
|
|
}
|
|
|
|
syslog(LOG_INFO, "[user %d] library total = %d (at least %d) -- %s\n",
|
|
seed, counter_total(), seed * 3,
|
|
counter_total() >= seed * 3 ? "PASS" : "FAIL");
|
|
|
|
/* Reported through the exit status as well as the log, so a test can
|
|
* assert on it rather than a human reading the console.
|
|
*/
|
|
|
|
return counter_total() >= seed * 3 ? EXIT_SUCCESS : EXIT_FAILURE;
|
|
}
|