2018-10-06 17:57:06 +02:00
|
|
|
|
NuttX TODO List (Last updated October 6, 2018)
|
2011-09-13 21:04:13 +02:00
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2007-12-13 17:52:37 +01:00
|
|
|
|
|
2013-07-23 22:47:16 +02:00
|
|
|
|
This file summarizes known NuttX bugs, limitations, inconsistencies with
|
2015-05-06 15:01:33 +02:00
|
|
|
|
standards, things that could be improved, and ideas for enhancements. This
|
2018-01-21 14:47:13 +01:00
|
|
|
|
TODO list does not include issues associated with individual board ports. See
|
2016-05-27 22:43:33 +02:00
|
|
|
|
also the individual README.txt files in the configs/ sub-directories for
|
|
|
|
|
issues related to each board port.
|
2011-09-10 18:20:09 +02:00
|
|
|
|
|
2016-05-28 20:22:35 +02:00
|
|
|
|
nuttx/:
|
2011-03-19 22:04:13 +01:00
|
|
|
|
|
2018-09-19 20:15:04 +02:00
|
|
|
|
(15) Task/Scheduler (sched/)
|
2018-06-21 18:59:58 +02:00
|
|
|
|
(3) SMP
|
2015-04-07 20:16:15 +02:00
|
|
|
|
(1) Memory Management (mm/)
|
2017-02-07 17:35:04 +01:00
|
|
|
|
(0) Power Management (drivers/pm)
|
2017-11-12 00:44:59 +01:00
|
|
|
|
(3) Signals (sched/signal, arch/)
|
2017-11-11 22:43:16 +01:00
|
|
|
|
(2) pthreads (sched/pthread)
|
2015-03-10 16:42:35 +01:00
|
|
|
|
(0) Message Queues (sched/mqueue)
|
2018-09-18 15:09:10 +02:00
|
|
|
|
(9) Kernel/Protected Build
|
2016-02-06 18:35:30 +01:00
|
|
|
|
(3) C++ Support
|
2018-06-07 07:27:36 +02:00
|
|
|
|
(5) Binary loaders (binfmt/)
|
2018-09-18 15:09:10 +02:00
|
|
|
|
(18) Network (net/, drivers/net)
|
2015-06-28 16:08:57 +02:00
|
|
|
|
(4) USB (drivers/usbdev, drivers/usbhost)
|
2018-09-18 15:09:10 +02:00
|
|
|
|
(2) Other drivers (drivers/)
|
2018-10-06 17:57:06 +02:00
|
|
|
|
(11) Libraries (libs/libc/, libs/libm/)
|
2018-09-29 23:04:11 +02:00
|
|
|
|
(11) File system/Generic drivers (fs/, drivers/)
|
2017-11-27 23:33:31 +01:00
|
|
|
|
(10) Graphics Subsystem (graphics/)
|
2017-11-12 16:12:50 +01:00
|
|
|
|
(1) Build system / Toolchains
|
2016-05-28 20:22:35 +02:00
|
|
|
|
(3) Linux/Cywgin simulation (arch/sim)
|
2018-03-04 14:30:50 +01:00
|
|
|
|
(5) ARM (arch/arm/)
|
2007-12-13 17:52:37 +01:00
|
|
|
|
|
2016-05-28 20:22:35 +02:00
|
|
|
|
apps/ and other Add-Ons:
|
2011-03-19 22:04:13 +01:00
|
|
|
|
|
2017-01-11 14:42:15 +01:00
|
|
|
|
(2) Network Utilities (apps/netutils/)
|
|
|
|
|
(1) NuttShell (NSH) (apps/nshlib)
|
2012-02-01 20:07:57 +01:00
|
|
|
|
(1) System libraries apps/system (apps/system)
|
2017-06-17 22:10:37 +02:00
|
|
|
|
(1) Modbus (apps/modbus)
|
2016-05-28 20:22:35 +02:00
|
|
|
|
(1) Pascal add-on (pcode/)
|
2014-09-30 21:27:34 +02:00
|
|
|
|
(4) Other Applications & Tests (apps/examples/)
|
2011-03-19 22:04:13 +01:00
|
|
|
|
|
2007-12-13 17:52:37 +01:00
|
|
|
|
o Task/Scheduler (sched/)
|
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: CHILD PTHREAD TERMINATION
|
2007-12-13 17:52:37 +01:00
|
|
|
|
Description: When a tasks exits, shouldn't all of its child pthreads also be
|
|
|
|
|
terminated?
|
2013-01-04 17:00:38 +01:00
|
|
|
|
Status: Closed. No, this behavior will not be implemented.
|
2007-12-13 17:52:37 +01:00
|
|
|
|
Priority: Medium, required for good emulation of process/pthread model.
|
2017-05-31 19:17:11 +02:00
|
|
|
|
The current behavior allows for the main thread of a task to
|
2018-01-21 14:47:13 +01:00
|
|
|
|
exit() and any child pthreads will persist. That does raise
|
2017-05-31 19:17:11 +02:00
|
|
|
|
some issues: The main thread is treated much like just-another-
|
|
|
|
|
pthread but must follow the semantics of a task or a process.
|
|
|
|
|
That results in some inconsistencies (for example, with robust
|
|
|
|
|
mutexes, what should happen if the main thread exits while
|
|
|
|
|
holding a mutex?)
|
2007-12-13 17:52:37 +01:00
|
|
|
|
|
2013-01-04 17:00:38 +01:00
|
|
|
|
Title: pause() NON-COMPLIANCE
|
2017-04-20 17:31:12 +02:00
|
|
|
|
Description: In the POSIX description of this function the pause() function
|
|
|
|
|
must suspend the calling thread until delivery of a signal whose
|
2013-01-04 17:00:38 +01:00
|
|
|
|
action is either to execute a signal-catching function or to
|
|
|
|
|
terminate the process. The current implementation only waits for
|
|
|
|
|
any non-blocked signal to be received. It should only wake up if
|
|
|
|
|
the signal is delivered to a handler.
|
|
|
|
|
Status: Open.
|
|
|
|
|
Priority: Medium Low.
|
2010-08-22 05:44:18 +02:00
|
|
|
|
|
2013-03-08 19:29:56 +01:00
|
|
|
|
Title: ON-DEMAND PAGING INCOMPLETE
|
2010-08-22 05:44:18 +02:00
|
|
|
|
Description: On-demand paging has recently been incorporated into the RTOS.
|
|
|
|
|
The design of this feature is described here:
|
2010-09-08 03:53:23 +02:00
|
|
|
|
http://www.nuttx.org/NuttXDemandPaging.html.
|
|
|
|
|
As of this writing, the basic feature implementation is
|
|
|
|
|
complete and much of the logic has been verified. The test
|
|
|
|
|
harness for the feature exists only for the NXP LPC3131 (see
|
|
|
|
|
configs/ea3131/pgnsh and locked directories). There are
|
|
|
|
|
some limitations of this testing so I still cannot say that
|
|
|
|
|
the feature is fully functional.
|
2013-01-04 17:00:38 +01:00
|
|
|
|
Status: Open. This has been put on the shelf for some time.
|
2010-08-22 05:44:18 +02:00
|
|
|
|
Priority: Medium-Low
|
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: GET_ENVIRON_PTR()
|
2011-03-09 04:41:34 +01:00
|
|
|
|
Description: get_environ_ptr() (sched/sched_getenvironptr.c) is not implemented.
|
2013-08-27 17:40:19 +02:00
|
|
|
|
The representation of the environment strings selected for
|
2016-05-27 22:43:33 +02:00
|
|
|
|
NuttX is not compatible with the operation. Some significant
|
2014-01-14 21:06:02 +01:00
|
|
|
|
re-design would be required to implement this function and that
|
2011-03-09 04:41:34 +01:00
|
|
|
|
effort is thought to be not worth the result.
|
2013-01-04 17:00:38 +01:00
|
|
|
|
Status: Open. No change is planned.
|
2011-03-09 04:41:34 +01:00
|
|
|
|
Priority: Low -- There is no plan to implement this.
|
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: TIMER_GETOVERRUN()
|
2011-03-09 04:41:34 +01:00
|
|
|
|
Description: timer_getoverrun() (sched/timer_getoverrun.c) is not implemented.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low -- There is no plan to implement this.
|
|
|
|
|
|
2016-05-27 22:43:33 +02:00
|
|
|
|
Title: INCOMPATIBILITIES WITH execv() AND execl()
|
2013-01-08 20:27:38 +01:00
|
|
|
|
Description: Simplified 'execl()' and 'execv()' functions are provided by
|
|
|
|
|
NuttX. NuttX does not support processes and hence the concept
|
|
|
|
|
of overlaying a tasks process image with a new process image
|
|
|
|
|
does not make any sense. In NuttX, these functions are
|
|
|
|
|
wrapper functions that:
|
|
|
|
|
|
|
|
|
|
1. Call the non-standard binfmt function 'exec', and then
|
|
|
|
|
2. exit(0).
|
|
|
|
|
|
|
|
|
|
As a result, the current implementations of 'execl()' and
|
|
|
|
|
'execv()' suffer from some incompatibilities, the most
|
|
|
|
|
serious of these is that the exec'ed task will not have
|
|
|
|
|
the same task ID as the vfork'ed function. So the parent
|
|
|
|
|
function cannot know the ID of the exec'ed task.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Medium Low for now
|
|
|
|
|
|
2016-12-08 16:27:13 +01:00
|
|
|
|
Title: ISSUES WITH atexit(), on_exit(), AND pthread_cleanup_pop()
|
2013-01-17 15:43:55 +01:00
|
|
|
|
Description: These functions execute with the following bad properties:
|
2013-07-23 22:47:16 +02:00
|
|
|
|
|
2013-01-17 15:43:55 +01:00
|
|
|
|
1. They run with interrupts disabled,
|
|
|
|
|
2. They run in supervisor mode (if applicable), and
|
|
|
|
|
3. They do not obey any setup of PIC or address
|
|
|
|
|
environments. Do they need to?
|
2017-04-10 17:58:34 +02:00
|
|
|
|
4. In the case of task_delete() and pthread_cancel() without
|
2018-10-08 22:45:00 +02:00
|
|
|
|
deferred cancellation, these callbacks will run on the
|
2017-04-10 17:58:34 +02:00
|
|
|
|
thread of execution and address context of the caller of
|
|
|
|
|
task_delete() or pthread_cancel(). That is very bad!
|
2013-01-17 15:43:55 +01:00
|
|
|
|
|
|
|
|
|
The fix for all of these issues it to have the callbacks
|
2016-12-08 19:30:10 +01:00
|
|
|
|
run on the caller's thread as is currently done with
|
2016-12-08 17:24:40 +01:00
|
|
|
|
signal handlers. Signals are delivered differently in
|
2018-01-21 14:47:13 +01:00
|
|
|
|
PROTECTED and KERNEL modes: The delivery involves a
|
2016-12-08 17:24:40 +01:00
|
|
|
|
signal handling trampoline function in the user address
|
|
|
|
|
space and two signal handlers: One to call the signal
|
|
|
|
|
handler trampoline in user mode (SYS_signal_handler) and
|
|
|
|
|
on in with the signal handler trampoline to return to
|
|
|
|
|
supervisor mode (SYS_signal_handler_return)
|
|
|
|
|
|
|
|
|
|
The primary difference is in the location of the signal
|
|
|
|
|
handling trampoline:
|
|
|
|
|
|
|
|
|
|
- In PROTECTED mode, there is on a single user space blob
|
|
|
|
|
with a header at the beginning of the block (at a well-
|
|
|
|
|
known location. There is a pointer to the signal handler
|
|
|
|
|
trampoline function in that header.
|
|
|
|
|
- In the KERNEL mode, a special process signal handler
|
|
|
|
|
trampoline is used at a well-known location in every
|
|
|
|
|
process address space (ARCH_DATA_RESERVE->ar_sigtramp).
|
2013-01-17 15:43:55 +01:00
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Medium Low. This is an important change to some less
|
|
|
|
|
important interfaces. For the average user, these
|
|
|
|
|
functions are just fine the way they are.
|
|
|
|
|
|
2013-01-24 00:11:13 +01:00
|
|
|
|
Title: execv() AND vfork()
|
|
|
|
|
Description: There is a problem when vfork() calls execv() (or execl()) to
|
2014-10-15 18:57:04 +02:00
|
|
|
|
start a new application: When the parent thread calls vfork()
|
2013-01-24 00:11:13 +01:00
|
|
|
|
it receives and gets the pid of the vforked task, and *not*
|
|
|
|
|
the pid of the desired execv'ed application.
|
|
|
|
|
|
|
|
|
|
The same tasking arrangement is used by the standard function
|
|
|
|
|
posix_spawn(). However, posix_spawn uses the non-standard, internal
|
2014-10-15 18:57:04 +02:00
|
|
|
|
NuttX interface task_reparent() to replace the child's parent task
|
2013-01-24 00:11:13 +01:00
|
|
|
|
with the caller of posix_spawn(). That cannot be done with vfork()
|
2013-02-04 16:29:19 +01:00
|
|
|
|
because we don't know what vfork() is going to do.
|
2013-01-24 00:11:13 +01:00
|
|
|
|
|
2013-02-04 16:29:19 +01:00
|
|
|
|
Any solution to this is either very difficult or impossible without
|
2013-01-24 00:11:13 +01:00
|
|
|
|
an MMU.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low (it might as well be low since it isn't going to be fixed).
|
|
|
|
|
|
2013-01-27 16:52:58 +01:00
|
|
|
|
Title: errno IS NOT SHARED AMONG THREADS
|
|
|
|
|
Description: In NuttX, the errno value is unique for each thread. But for
|
|
|
|
|
bug-for-bug compatibility, the same errno should be shared by
|
|
|
|
|
the task and each thread that it creates. It is *very* easy
|
|
|
|
|
to make this change: Just move the pterrno field from
|
2013-02-04 19:46:28 +01:00
|
|
|
|
struct tcb_s to struct task_group_s. However, I am still not
|
|
|
|
|
sure if this should be done or not.
|
2018-01-30 23:16:41 +01:00
|
|
|
|
NOTE: glibc behaves this way unless __thread is defined then,
|
|
|
|
|
in that case, it behaves like NuttX (using TLS to save the
|
|
|
|
|
thread local errno).
|
2018-02-03 16:35:46 +01:00
|
|
|
|
Status: Closed. The existing solution is better and compatible with
|
|
|
|
|
thread-aware GLIBC (although its incompatibilities could show
|
|
|
|
|
up in porting some code). I will retain this issue for
|
2018-10-08 22:45:00 +02:00
|
|
|
|
reference only.
|
2018-02-03 16:35:46 +01:00
|
|
|
|
Priority: N/A
|
2013-01-27 16:52:58 +01:00
|
|
|
|
|
2015-08-24 23:52:14 +02:00
|
|
|
|
Title: SCALABILITY
|
|
|
|
|
Description: Task control information is retained in simple lists. This
|
|
|
|
|
is completely appropriate for small embedded systems where
|
|
|
|
|
the number of tasks, N, is relatively small. Most list
|
2016-08-17 22:07:01 +02:00
|
|
|
|
operations are O(N). This could become an issue if N gets
|
2015-08-24 23:52:14 +02:00
|
|
|
|
very large.
|
|
|
|
|
|
|
|
|
|
In that case, these simple lists should be replaced with
|
|
|
|
|
something more performant such as a balanced tree in the
|
|
|
|
|
case of ordered lists. Fortunately, most internal lists are
|
|
|
|
|
hidden behind simple accessor functions and so the internal
|
|
|
|
|
data structures can be changed if need with very little impact.
|
|
|
|
|
|
2016-05-27 22:43:33 +02:00
|
|
|
|
Explicitly reference to the list structure are hidden behind
|
2016-02-07 00:44:41 +01:00
|
|
|
|
the macro this_task().
|
2015-08-24 23:52:14 +02:00
|
|
|
|
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low. Things are just the way that we want them for the way
|
|
|
|
|
that NuttX is used today.
|
|
|
|
|
|
2017-04-12 15:28:11 +02:00
|
|
|
|
Title: INTERNAL VERSIONS OF USER FUNCTIONS
|
|
|
|
|
Description: The internal NuttX logic uses the same interfaces as does
|
|
|
|
|
the application. That sometime produces a problem because
|
|
|
|
|
there is "overloaded" functionality in those user interfaces
|
2018-01-21 14:47:13 +01:00
|
|
|
|
that are not desirable.
|
2017-04-12 15:28:11 +02:00
|
|
|
|
|
|
|
|
|
For example, having cancellation points hidden inside of the
|
|
|
|
|
OS can cause non-cancellation point interfaces to behave
|
2017-10-04 23:22:27 +02:00
|
|
|
|
strangely.
|
2017-04-12 15:28:11 +02:00
|
|
|
|
|
|
|
|
|
Here is another issue: Internal OS functions should not set
|
|
|
|
|
errno and should never have to look at the errno value to
|
|
|
|
|
determine the cause of the failure. The errno is provided
|
|
|
|
|
for compatibility with POSIX application interface
|
|
|
|
|
requirements and really doesn't need to be used within the
|
|
|
|
|
OS.
|
|
|
|
|
|
|
|
|
|
Both of these could be fixed if there were special internal
|
|
|
|
|
versions these functions. For example, there could be a an
|
2017-10-04 23:22:27 +02:00
|
|
|
|
nxsem_wait() that does all of the same things as sem_wait()
|
2017-04-12 15:28:11 +02:00
|
|
|
|
was does not create a cancellation point and does not set
|
|
|
|
|
the errno value on failures.
|
|
|
|
|
|
|
|
|
|
Everything inside the OS would use nx_sem_wait().
|
|
|
|
|
Applications would call sem_wait() which would just be a
|
|
|
|
|
wrapper around nx_sem_wait() that adds the cancellation point
|
|
|
|
|
and that sets the errno value on failures.
|
|
|
|
|
|
2017-10-08 17:06:35 +02:00
|
|
|
|
On particularly difficult issue is the use of common memory
|
2018-09-26 18:27:50 +02:00
|
|
|
|
manager C, and NX libraries in the build. For the PROTECTED
|
|
|
|
|
and KERNEL builds, this issue is resolved. In that case,
|
|
|
|
|
The OS links with a different version of the libraries than
|
|
|
|
|
does the application: The OS version would use the OS internal
|
2017-10-08 17:06:35 +02:00
|
|
|
|
interfaces and the application would use the standard
|
|
|
|
|
interfaces.
|
|
|
|
|
|
2018-09-26 18:27:50 +02:00
|
|
|
|
But for the FLAT build, both the OS and the applications use
|
|
|
|
|
the same library functions. For applications, the library
|
|
|
|
|
functions *must* support errno's and cancellation and, hence,
|
|
|
|
|
these are also used within the OS.
|
|
|
|
|
|
2017-10-08 17:06:35 +02:00
|
|
|
|
But that raises yet another issue: If the application
|
|
|
|
|
version of the libraries use the standard interfaces
|
|
|
|
|
internally, then they may generate unexpected cancellation
|
|
|
|
|
points. For example, the memory management would take a
|
|
|
|
|
semaphore using sem_wait() to get exclusive access to the
|
|
|
|
|
heap. That means that every call to malloc() and free()
|
|
|
|
|
would be a cancellation point, a clear POSIX violation.
|
|
|
|
|
|
2017-04-12 15:28:11 +02:00
|
|
|
|
Changes like that could clean up some of this internal
|
2017-10-04 23:22:27 +02:00
|
|
|
|
craziness.
|
|
|
|
|
|
|
|
|
|
UPDATE:
|
2017-10-08 17:06:35 +02:00
|
|
|
|
2017-10-03: This change has been completed for the case of
|
|
|
|
|
semaphores used in the OS. Still need to checkout signals
|
2017-10-04 23:22:27 +02:00
|
|
|
|
and messages queues that are also used in the OS. Also
|
|
|
|
|
backed out commit b4747286b19d3b15193b2a5e8a0fe48fa0a8638c.
|
2017-10-10 18:58:26 +02:00
|
|
|
|
2017-10-06: This change has been completed for the case of
|
2017-10-08 17:06:35 +02:00
|
|
|
|
signals used in the OS. Still need to checkout messages
|
|
|
|
|
queues that are also used in the OS.
|
2017-10-10 18:58:26 +02:00
|
|
|
|
2017-10-10: This change has been completed for the case of
|
|
|
|
|
message queue used in the OS. I am keeping this issue
|
|
|
|
|
open because (1) there are some known remaining calls that
|
|
|
|
|
that will modify the errno (such as dup(), dup2(),
|
2018-01-31 23:11:54 +01:00
|
|
|
|
task_activate(), kthread_create(), exec(), mq_open(),
|
2018-01-30 23:16:41 +01:00
|
|
|
|
mq_close(), and others) and (2) there may still be calls that
|
|
|
|
|
create cancellation points. Need to check things like open(),
|
|
|
|
|
close(), read(), write(), and possibly others.
|
2018-01-30 18:07:36 +01:00
|
|
|
|
2018-01-30: This change has been completed for the case of
|
|
|
|
|
scheduler functions used within the OS: sched_getparam(),
|
2018-01-30 23:16:41 +01:00
|
|
|
|
sched_setparam(), sched_getscheduler(), sched_setschedule(),
|
|
|
|
|
and sched_setaffinity(),
|
2018-09-15 18:49:41 +02:00
|
|
|
|
2018-09-15: This change has been completed for the case of
|
|
|
|
|
open() used within the OS. There are places under libs/ and
|
|
|
|
|
configs/ that have not been converted. I also note cases
|
|
|
|
|
where fopen() is called under libs/libc/netdb/.
|
2017-09-01 15:13:03 +02:00
|
|
|
|
|
2017-04-12 15:28:11 +02:00
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low. Things are working OK the way they are. But the design
|
|
|
|
|
could be improved and made a little more efficient with this
|
|
|
|
|
change.
|
|
|
|
|
|
2017-06-17 22:10:37 +02:00
|
|
|
|
Task: IDLE THREAD TCB SETUP
|
|
|
|
|
Description: There are issues with setting IDLE thread stacks:
|
|
|
|
|
|
|
|
|
|
1. One problem is stack-related data in the IDLE threads TCB.
|
|
|
|
|
A solution might be to standardize the use of g_idle_topstack.
|
|
|
|
|
That you could add initialization like this in os_start:
|
|
|
|
|
|
|
|
|
|
@@ -344,6 +347,11 @@ void os_start(void)
|
|
|
|
|
g_idleargv[1] = NULL;
|
|
|
|
|
g_idletcb.argv = g_idleargv;
|
|
|
|
|
|
|
|
|
|
+ /* Set the IDLE task stack size */
|
|
|
|
|
+
|
|
|
|
|
+ g_idletcb.cmn.adj_stack_size = CONFIG_IDLETHREAD_STACKSIZE;
|
|
|
|
|
+ g_idletcb.cmn.stack_alloc_ptr = (void *)(g_idle_topstack - CONFIG_IDLETHREAD_STACKSIZE);
|
|
|
|
|
+
|
|
|
|
|
/* Then add the idle task's TCB to the head of the ready to run list */
|
|
|
|
|
|
|
|
|
|
dq_addfirst((FAR dq_entry_t *)&g_idletcb, (FAR dq_queue_t *)&g_readytorun);
|
|
|
|
|
|
|
|
|
|
The g_idle_topstack variable is available for almost all architectures:
|
|
|
|
|
|
|
|
|
|
$ find . -name *.h | xargs grep g_idle_top
|
|
|
|
|
./arm/src/common/up_internal.h:EXTERN const uint32_t g_idle_topstack;
|
|
|
|
|
./avr/src/avr/avr.h:extern uint16_t g_idle_topstack;
|
|
|
|
|
./avr/src/avr32/avr32.h:extern uint32_t g_idle_topstack;
|
|
|
|
|
./hc/src/common/up_internal.h:extern uint16_t g_idle_topstack;
|
|
|
|
|
./mips/src/common/up_internal.h:extern uint32_t g_idle_topstack;
|
|
|
|
|
./misoc/src/lm32/lm32.h:extern uint32_t g_idle_topstack;
|
|
|
|
|
./renesas/src/common/up_internal.h:extern uint32_t g_idle_topstack;
|
|
|
|
|
./renesas/src/m16c/chip.h:extern uint32_t g_idle_topstack; /* Start of the heap */
|
|
|
|
|
./risc-v/src/common/up_internal.h:EXTERN uint32_t g_idle_topstack;
|
|
|
|
|
./x86/src/common/up_internal.h:extern uint32_t g_idle_topstack;
|
|
|
|
|
|
2017-11-12 17:17:10 +01:00
|
|
|
|
That omits these architectures: sh1, sim, xtensa, z16, z80,
|
2017-06-17 22:10:37 +02:00
|
|
|
|
ez80, and z8. All would have to support this common
|
2018-10-08 22:45:00 +02:00
|
|
|
|
global variable.
|
2017-06-17 22:10:37 +02:00
|
|
|
|
|
|
|
|
|
Also, the stack itself may be 8-, 16-, or 32-bits wide,
|
2017-11-12 17:17:10 +01:00
|
|
|
|
depending upon the architecture and do have differing
|
|
|
|
|
alignment requirements.
|
2017-06-17 22:10:37 +02:00
|
|
|
|
|
|
|
|
|
2. Another problem is colorizing that stack to use with
|
|
|
|
|
stack usage monitoring logic. There is logic in some
|
|
|
|
|
start functions to do this in a function called go_os_start.
|
|
|
|
|
It is available in these architectures:
|
|
|
|
|
|
|
|
|
|
./arm/src/efm32/efm32_start.c:static void go_os_start(void *pv, unsigned int nbytes)
|
|
|
|
|
./arm/src/kinetis/kinetis_start.c:static void go_os_start(void *pv, unsigned int nbytes)
|
|
|
|
|
./arm/src/sam34/sam_start.c:static void go_os_start(void *pv, unsigned int nbytes)
|
|
|
|
|
./arm/src/samv7/sam_start.c:static void go_os_start(void *pv, unsigned int nbytes)
|
|
|
|
|
./arm/src/stm32/stm32_start.c:static void go_os_start(void *pv, unsigned int nbytes)
|
|
|
|
|
./arm/src/stm32f7/stm32_start.c:static void go_os_start(void *pv, unsigned int nbytes)
|
|
|
|
|
./arm/src/stm32l4/stm32l4_start.c:static void go_os_start(void *pv, unsigned int nbytes)
|
|
|
|
|
./arm/src/tms570/tms570_boot.c:static void go_os_start(void *pv, unsigned int nbytes)
|
|
|
|
|
./arm/src/xmc4/xmc4_start.c:static void go_os_start(void *pv, unsigned int nbytes)
|
|
|
|
|
|
|
|
|
|
But no others.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low, only needed for more complete debug.
|
2017-06-14 16:39:26 +02:00
|
|
|
|
|
2018-01-21 14:47:13 +01:00
|
|
|
|
Title: PRIORITY INHERITANCE WITH SPORADIC SCHEDULER
|
|
|
|
|
Description: The sporadic scheduler manages CPU utilization by a task by
|
|
|
|
|
alternating between a high and a low priority. In either
|
|
|
|
|
state, it may have its priority boosted. However, under
|
|
|
|
|
some circumstances, it is impossible in the current design to
|
2018-01-22 18:11:23 +01:00
|
|
|
|
switch to the correct priority if a semaphore held by the
|
|
|
|
|
sporadic thread is participating in priority inheritance:
|
|
|
|
|
|
|
|
|
|
There is an issue when switching from the high to the low
|
|
|
|
|
priority state. If the priority was NOT boosted above the
|
|
|
|
|
higher priority, it still may still need to boosted with
|
|
|
|
|
respect to the lower priority. If the highest priority
|
|
|
|
|
thread waiting on a semaphore held by the sporadic thread is
|
|
|
|
|
higher in priority than the low priority but less than the
|
|
|
|
|
higher priority, then new thread priority should be set to
|
|
|
|
|
that middle priority, not to the lower priority.
|
2018-01-21 14:47:13 +01:00
|
|
|
|
|
|
|
|
|
In order to do this we would need to know the highest
|
|
|
|
|
priority from among all tasks waiting for the all semaphores
|
|
|
|
|
held by the sporadic task. That information could be
|
|
|
|
|
retained by the priority inheritance logic for use by the
|
|
|
|
|
sporadic scheduler. The boost priority could be retained in
|
|
|
|
|
a new field of the TCB (say, pend_priority). That
|
|
|
|
|
pend_priority could then be used when switching from the
|
|
|
|
|
higher to the lower priority.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low. Does anyone actually use the sporadic scheduler?
|
|
|
|
|
|
|
|
|
|
Title: SIMPLIFY SPORADIC SCHEDULER DESIGN
|
|
|
|
|
Description: I have been planning to re-implement sporadic scheduling for
|
|
|
|
|
some time. I believe that the current implementation is
|
|
|
|
|
unnecessarily complex. There is no clear statement for the
|
|
|
|
|
requirements of sporadic scheduling that I could find, so I
|
|
|
|
|
based the design on some behaviors of another OS that I saw
|
|
|
|
|
published (QNX as I recall).
|
|
|
|
|
|
|
|
|
|
But I think that the bottom line requirement for sporadic
|
|
|
|
|
scheduling is that is it should make a best attempt to
|
|
|
|
|
control a fixed percentage of CPU bandwidth for a task in
|
|
|
|
|
during an interval only by modifying it is priority between
|
|
|
|
|
a low and a high priority. The current design involves
|
|
|
|
|
several timers: A "budget" timer plus a variable number of
|
|
|
|
|
"replenishment" timers and a lot of nonsense to duplicate QNX
|
|
|
|
|
behavior that I think I not necessary.
|
|
|
|
|
|
|
|
|
|
It think that the sporadic scheduler could be re-implemented
|
|
|
|
|
with only the single "budget" timer. Instead of starting a
|
|
|
|
|
new "replenishment" timer when the task is resumed, that
|
|
|
|
|
single timer could just be extended.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low. This is an enhancement. And does anyone actually use
|
|
|
|
|
the sporadic scheduler?
|
|
|
|
|
|
2018-10-08 22:45:00 +02:00
|
|
|
|
Title: REMOVE NESTED CANCELLATION POINT SUPPORT
|
|
|
|
|
Description: The current implementation support nested cancellation points.
|
2018-03-04 14:30:50 +01:00
|
|
|
|
The TCB field cpcount keeps track of that nesting level.
|
2018-10-08 22:45:00 +02:00
|
|
|
|
However, cancellation points should not be calling other
|
2018-03-04 14:30:50 +01:00
|
|
|
|
cancellation points so this design could be simplified by
|
|
|
|
|
removing all support for nested cancellation points.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low. No harm is being done by the current implementation.
|
|
|
|
|
This change is primarily for aesthetic reasons. If would
|
|
|
|
|
reduce memory usage by a very small but probably
|
|
|
|
|
insignificant amount.
|
|
|
|
|
|
2016-11-19 23:37:09 +01:00
|
|
|
|
o SMP
|
|
|
|
|
^^^
|
|
|
|
|
|
2016-11-27 17:21:20 +01:00
|
|
|
|
Title: SMP AND DATA CACHES
|
|
|
|
|
Description: When spinlocks, semaphores, etc. are used in an SMP system with
|
|
|
|
|
a data cache, then there may be problems with cache coherency
|
|
|
|
|
in some CPU architectures: When one CPU modifies the shared
|
|
|
|
|
object, the changes may not be visible to another CPU if it
|
|
|
|
|
does not share the data cache. That would cause failure in
|
|
|
|
|
the IPC logic.
|
2016-11-19 20:31:14 +01:00
|
|
|
|
|
|
|
|
|
Flushing the D-cache on writes and invalidating before a read is
|
2016-11-27 17:21:20 +01:00
|
|
|
|
not really an option. That would essentially effect every memory
|
|
|
|
|
access and there may be side-effects due to cache line sizes
|
|
|
|
|
and alignment.
|
|
|
|
|
|
|
|
|
|
For the same reason a separate, non-cacheable memory region is
|
|
|
|
|
not an option. Essentially all data would have to go in the
|
|
|
|
|
non-cached region and you would have no benefit from the data
|
|
|
|
|
cache.
|
|
|
|
|
|
|
|
|
|
On ARM Cortex-A, each CPU has a separate data cache. However,
|
|
|
|
|
the MPCore's Snoop Controller Unit supports coherency among
|
|
|
|
|
the different caches. The SCU is enabled by the SCU control
|
|
|
|
|
register and each CPU participates in the SMP coherency by
|
|
|
|
|
setting the ACTLR_SMP bit in the auxiliary control register
|
|
|
|
|
(ACTLR).
|
|
|
|
|
|
|
|
|
|
Status: Closed
|
|
|
|
|
Priority: High on platforms that may have the issue.
|
2016-11-19 20:31:14 +01:00
|
|
|
|
|
2018-06-16 22:41:47 +02:00
|
|
|
|
Title: MISUSE OF sched_lock() IN SMP MODE
|
|
|
|
|
Description: The OS API sched_lock() disables pre-emption and locks a
|
|
|
|
|
task in place. In the single CPU case, it is also often
|
|
|
|
|
used to enforce a simple critical section since not other
|
|
|
|
|
task can run while pre-emption is locked.
|
|
|
|
|
|
|
|
|
|
This, however, does not generalize to the SMP case. In the
|
|
|
|
|
SMP case, there are multiple tasks running on multiple CPUs.
|
|
|
|
|
The basic behavior is still correct: The task that has
|
|
|
|
|
locked pre-emption will not be suspended. However, there
|
|
|
|
|
is no longer any protection for use as a critical section:
|
2018-10-08 22:45:00 +02:00
|
|
|
|
tasks running on other CPUs may still execute that
|
|
|
|
|
unprotected code region.
|
2018-06-16 22:41:47 +02:00
|
|
|
|
|
|
|
|
|
The solution is to replace the use of sched_lock() with
|
|
|
|
|
stronger protection such as spin_lock_irqsave().
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Medium for SMP system. Not critical to single CPU systems.
|
2018-10-08 22:45:00 +02:00
|
|
|
|
NOTE: There are no known bugs from this potential problem.
|
2018-06-16 22:41:47 +02:00
|
|
|
|
|
|
|
|
|
Title: CORTEX-A GIC SGI INTERRUPT MASKING
|
|
|
|
|
Description: In the ARMv7-A GICv2 architecture, the inter-processor
|
|
|
|
|
interrupts (SGIs) are non maskable and will occur even if
|
2018-10-08 22:45:00 +02:00
|
|
|
|
interrupts are disabled. This adds a lot of complexity
|
2018-06-16 22:41:47 +02:00
|
|
|
|
to the ARMV7-A critical section design.
|
|
|
|
|
|
2018-08-25 16:19:31 +02:00
|
|
|
|
Masayuki Ishakawa has suggested the use of the GICv2 ICCMPR
|
2018-06-16 22:41:47 +02:00
|
|
|
|
register to control SGI interrupts. This register (much like
|
|
|
|
|
the ARMv7-M BASEPRI register) can be used to mask interrupts
|
|
|
|
|
by interrupt priority. Since SGIs may be assigned priorities
|
|
|
|
|
the ICCMPR should be able to block execution of SGIs as well.
|
|
|
|
|
|
|
|
|
|
Such an implementation would be very similar to the BASEPRI
|
|
|
|
|
(vs PRIMASK) implementation for the ARMv7-M: (1) The
|
|
|
|
|
up_irq_save() and up_irq_restore() registers would have to
|
|
|
|
|
set/restore the ICCMPR register, (2) register setup logic in
|
|
|
|
|
arch/arm/src/armv7-a for task start-up and signal dispatch
|
|
|
|
|
would have to set the ICCMPR correctly, and (3) the 'xcp'
|
2018-10-08 22:45:00 +02:00
|
|
|
|
structure would have to be extended to hold the ICCMPR
|
2018-06-16 22:41:47 +02:00
|
|
|
|
register; logic would have to added be save/restore the
|
|
|
|
|
ICCMPR register in the 'xcp' structure on each interrupt and
|
|
|
|
|
context switch.
|
|
|
|
|
|
|
|
|
|
This would also be an essential part of a high priority,
|
|
|
|
|
nested interrupt implementation (unrelated).
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low. There are no know issues with the current non-maskable
|
|
|
|
|
SGI implementation. This change would, however, lead to
|
|
|
|
|
simplification in the design and permit commonality with
|
2018-10-08 22:45:00 +02:00
|
|
|
|
other, non-GIC implementations.
|
2018-06-16 22:41:47 +02:00
|
|
|
|
|
2016-05-27 22:43:33 +02:00
|
|
|
|
o Memory Management (mm/)
|
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^
|
2007-12-13 17:52:37 +01:00
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: FREE MEMORY ON TASK EXIT
|
2007-12-13 17:52:37 +01:00
|
|
|
|
Description: Add an option to free all memory allocated by a task when the
|
|
|
|
|
task exits. This is probably not be worth the overhead for a
|
|
|
|
|
deeply embedded system.
|
2012-04-27 18:20:32 +02:00
|
|
|
|
|
2011-03-02 15:43:28 +01:00
|
|
|
|
There would be complexities with this implementation as well
|
|
|
|
|
because often one task allocates memory and then passes the
|
|
|
|
|
memory to another: The task that "owns" the memory may not
|
|
|
|
|
be the same as the task that allocated the memory.
|
2012-04-27 18:20:32 +02:00
|
|
|
|
|
|
|
|
|
Update. From the NuttX forum:
|
|
|
|
|
...there is a good reason why task A should never delete task B.
|
|
|
|
|
That is because you will strand memory resources. Another feature
|
|
|
|
|
lacking in most flat address space RTOSs is automatic memory
|
|
|
|
|
clean-up when a task exits.
|
|
|
|
|
|
|
|
|
|
That behavior just comes for free in a process-based OS like Linux:
|
|
|
|
|
Each process has its own heap and when you tear down the process
|
|
|
|
|
environment, you naturally destroy the heap too.
|
|
|
|
|
|
|
|
|
|
But RTOSs have only a single, shared heap. I have spent some time
|
|
|
|
|
thinking about how you could clean up memory required by a task
|
|
|
|
|
when a task exits. It is not so simple. It is not as simple as
|
|
|
|
|
just keeping memory allocated by a thread in a list then freeing
|
|
|
|
|
the list of allocations when the task exists.
|
|
|
|
|
|
|
|
|
|
It is not that simple because you don't know how the memory is
|
|
|
|
|
being used. For example, if task A allocates memory that is used
|
|
|
|
|
by task B, then when task A exits, you would not want to free that
|
|
|
|
|
memory needed by task B. In a process-based system, you would
|
|
|
|
|
have to explicitly map shared memory (with reference counting) in
|
|
|
|
|
order to share memory. So the life of shared memory in that
|
|
|
|
|
environment is easily managed.
|
|
|
|
|
|
|
|
|
|
I have thought that the way that this could be solved in NuttX
|
|
|
|
|
would be: (1) add links and reference counts to all memory allocated
|
|
|
|
|
by a thread. This would increase the memory allocation overhead!
|
|
|
|
|
(2) Keep the list head in the TCB, and (3) extend mmap() and munmap()
|
|
|
|
|
to include the shared memory operations (which would only manage
|
|
|
|
|
the reference counting and the life of the allocation).
|
|
|
|
|
|
|
|
|
|
Then what about pthreads? Memory should not be freed until the last
|
|
|
|
|
pthread in the group exists. That could be done with an additional
|
|
|
|
|
reference count on the whole allocated memory list (just as streams
|
|
|
|
|
and file descriptors are now shared and persist until the last
|
|
|
|
|
pthread exits).
|
|
|
|
|
|
|
|
|
|
I think that would work but to me is very unattractive and
|
|
|
|
|
inconsistent with the NuttX "small footprint" objective. ...
|
|
|
|
|
|
|
|
|
|
Other issues:
|
|
|
|
|
- Memory free time would go up because you would have to remove
|
|
|
|
|
the memory from that list in free().
|
|
|
|
|
- There are special cases inside the RTOS itself. For example,
|
|
|
|
|
if task A creates task B, then initial memory allocations for
|
|
|
|
|
task B are created by task A. Some special allocators would
|
|
|
|
|
be required to keep this memory on the correct list (or on
|
|
|
|
|
no list at all).
|
|
|
|
|
|
2015-06-25 21:39:57 +02:00
|
|
|
|
Updated 2016-06-25:
|
|
|
|
|
For processors with an MMU (Memory Management Unit), NuttX can be
|
|
|
|
|
built in a kernel mode. In that case, each process will have a
|
|
|
|
|
local copy of its heap (filled with sbrk()) and when the process
|
|
|
|
|
exits, its local heap will be destroyed and the underlying page
|
|
|
|
|
memory is recovered.
|
|
|
|
|
|
|
|
|
|
So in this case, NuttX work just link Linux or or *nix systems:
|
|
|
|
|
All memory allocated by processes or threads in processes will
|
2017-01-12 23:24:41 +01:00
|
|
|
|
be recovered when the process exits.
|
2015-06-25 21:39:57 +02:00
|
|
|
|
|
|
|
|
|
But not for the flat memory build. In that case, the issues
|
|
|
|
|
above do apply. There is no safe way to recover the memory in
|
|
|
|
|
that case (and even if there were, the additional overhead would
|
|
|
|
|
not be acceptable on most platforms).
|
|
|
|
|
|
|
|
|
|
This does not prohibit anyone from creating a wrapper for malloc()
|
|
|
|
|
and an atexit() callback that frees memory on task exit. People
|
|
|
|
|
are free and, in fact, encouraged, to do that. However, since
|
|
|
|
|
it is inherently unsafe, I would never incorporate anything
|
|
|
|
|
like that into NuttX.
|
|
|
|
|
|
2017-01-11 14:42:15 +01:00
|
|
|
|
Status: Open. No changes are planned. NOTE: This applies to the FLAT
|
|
|
|
|
and PROTECTED builds only. There is no such leaking of memory
|
|
|
|
|
in the KERNEL build mode.
|
2007-12-13 17:52:37 +01:00
|
|
|
|
Priority: Medium/Low, a good feature to prevent memory leaks but would
|
|
|
|
|
have negative impact on memory usage and code size.
|
|
|
|
|
|
2016-10-09 17:36:03 +02:00
|
|
|
|
o Power Management (drivers/pm)
|
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2015-03-10 14:50:32 +01:00
|
|
|
|
o Signals (sched/signal, arch/)
|
2007-12-13 17:52:37 +01:00
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: STANDARD SIGNALS
|
2018-08-30 18:27:18 +02:00
|
|
|
|
Description: 'Standard' signals and signal actions are not fully
|
|
|
|
|
supported. The SIGCHLD signal is supported and, if the
|
|
|
|
|
option CONFIG_SIG_DEFAULT=y is included, some signals will
|
|
|
|
|
perform their default actions (dependent upon addition
|
|
|
|
|
configuration settings):
|
|
|
|
|
|
|
|
|
|
Signal Action Additional Configuration
|
|
|
|
|
------- -------------------- -------------------------
|
|
|
|
|
SIGUSR1 Abnormal Termination CONFIG_SIG_SIGUSR1_ACTION
|
|
|
|
|
SIGUSR2 Abnormal Termination CONFIG_SIG_SIGUSR2_ACTION
|
|
|
|
|
SIGALRM Abnormal Termination CONFIG_SIG_SIGALRM_ACTION
|
|
|
|
|
SIGPOLL Abnormal Termination CONFIG_SIG_SIGPOLL_ACTION
|
|
|
|
|
SIGSTOP Suspend task CONFIG_SIG_SIGSTOP_ACTION
|
|
|
|
|
SIGSTP Suspend task CONFIG_SIG_SIGSTOP_ACTION
|
|
|
|
|
SIGCONT Resume task CONFIG_SIG_SIGSTOP_ACTION
|
|
|
|
|
SIGINT Abnormal Termination CONFIG_SIG_SIGKILL_ACTION
|
|
|
|
|
SIGKILL Abnormal Termination CONFIG_SIG_SIGKILL_ACTION
|
2013-01-14 16:42:03 +01:00
|
|
|
|
|
2015-04-07 20:16:15 +02:00
|
|
|
|
Status: Open. No further changes are planned.
|
2007-12-13 17:52:37 +01:00
|
|
|
|
Priority: Low, required by standards but not so critical for an
|
|
|
|
|
embedded system.
|
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: SIGEV_THREAD
|
2015-12-30 22:26:30 +01:00
|
|
|
|
Description: Implementation of support for support for SIGEV_THREAD is available
|
|
|
|
|
only in the FLAT build mode because it uses the OS work queues to
|
|
|
|
|
perform the callback. The alternative for the PROTECTED and KERNEL
|
|
|
|
|
builds would be to create pthreads in the user space to perform the
|
|
|
|
|
callbacks. That is not a very attractive solution due to performance
|
|
|
|
|
issues. It would also require some additional logic to specify the
|
|
|
|
|
TCB of the parent so that the pthread could be bound to the correct
|
|
|
|
|
group.
|
|
|
|
|
|
2018-10-05 19:15:57 +02:00
|
|
|
|
There is also some user-space logic in libs/libc/aio/lio_listio.c.
|
|
|
|
|
That logic could use the user-space work queue for the callbacks.
|
2011-09-10 18:20:09 +02:00
|
|
|
|
Status: Low, there are alternative designs. However, these features
|
|
|
|
|
are required by the POSIX standard.
|
|
|
|
|
Priority: Low for now
|
|
|
|
|
|
2013-01-14 16:42:03 +01:00
|
|
|
|
Title: SIGNAL NUMBERING
|
|
|
|
|
Description: In signal.h, the range of valid signals is listed as 0-31. However,
|
|
|
|
|
in many interfaces, 0 is not a valid signal number. The valid
|
|
|
|
|
signal number should be 1-32. The signal set operations would need
|
|
|
|
|
to map bits appropriately.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low. Even if there are only 31 usable signals, that is still a lot.
|
|
|
|
|
|
2015-03-10 14:50:32 +01:00
|
|
|
|
o pthreads (sched/pthreads)
|
2017-03-26 18:35:23 +02:00
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^
|
2007-12-13 17:52:37 +01:00
|
|
|
|
|
2012-03-22 15:07:45 +01:00
|
|
|
|
Title: PTHREAD_PRIO_PROTECT
|
2017-02-07 17:35:04 +01:00
|
|
|
|
Description: Extend pthread_mutexattr_setprotocol(). It should support
|
|
|
|
|
PTHREAD_PRIO_PROTECT (and so should its non-standard counterpart
|
|
|
|
|
sem_setproto()).
|
2016-11-08 14:45:21 +01:00
|
|
|
|
|
2012-03-22 15:07:45 +01:00
|
|
|
|
"When a thread owns one or more mutexes initialized with the
|
|
|
|
|
PTHREAD_PRIO_PROTECT protocol, it shall execute at the higher of its
|
|
|
|
|
priority or the highest of the priority ceilings of all the mutexes
|
|
|
|
|
owned by this thread and initialized with this attribute, regardless of
|
|
|
|
|
whether other threads are blocked on any of these mutexes or not.
|
|
|
|
|
|
2016-11-08 14:45:21 +01:00
|
|
|
|
"While a thread is holding a mutex which has been initialized with
|
2012-03-22 15:07:45 +01:00
|
|
|
|
the PTHREAD_PRIO_INHERIT or PTHREAD_PRIO_PROTECT protocol attributes,
|
|
|
|
|
it shall not be subject to being moved to the tail of the scheduling queue
|
|
|
|
|
at its priority in the event that its original priority is changed,
|
|
|
|
|
such as by a call to sched_setparam(). Likewise, when a thread unlocks
|
|
|
|
|
a mutex that has been initialized with the PTHREAD_PRIO_INHERIT or
|
|
|
|
|
PTHREAD_PRIO_PROTECT protocol attributes, it shall not be subject to
|
2016-11-08 14:45:21 +01:00
|
|
|
|
being moved to the tail of the scheduling queue at its priority in the
|
2012-03-22 15:07:45 +01:00
|
|
|
|
event that its original priority is changed."
|
2016-11-08 14:45:21 +01:00
|
|
|
|
|
2013-01-04 17:00:38 +01:00
|
|
|
|
Status: Open. No changes planned.
|
2012-03-24 14:57:04 +01:00
|
|
|
|
Priority: Low -- about zero, probably not that useful. Priority inheritance is
|
|
|
|
|
already supported and is a much better solution. And it turns out
|
|
|
|
|
that priority protection is just about as complex as priority inheritance.
|
2016-05-27 22:43:33 +02:00
|
|
|
|
Excerpted from my post in a Linked-In discussion:
|
2012-03-24 14:57:04 +01:00
|
|
|
|
|
|
|
|
|
"I started to implement this HLS/"PCP" semaphore in an RTOS that I
|
2016-11-08 14:45:21 +01:00
|
|
|
|
work with (http://www.nuttx.org) and I discovered after doing the
|
|
|
|
|
analysis and basic code framework that a complete solution for the
|
|
|
|
|
case of a counting semaphore is still quite complex -- essentially
|
|
|
|
|
as complex as is priority inheritance.
|
2012-03-24 14:57:04 +01:00
|
|
|
|
|
|
|
|
|
"For example, suppose that a thread takes 3 different HLS semaphores
|
2016-11-08 14:45:21 +01:00
|
|
|
|
A, B, and C. Suppose that they are prioritized in that order with
|
|
|
|
|
A the lowest and C the highest. Suppose the thread takes 5 counts
|
|
|
|
|
from A, 3 counts from B, and 2 counts from C. What priority should
|
|
|
|
|
it run at? It would have to run at the priority of the highest
|
|
|
|
|
priority semaphore C. This means that the RTOS must maintain
|
|
|
|
|
internal information of the priority of every semaphore held by
|
|
|
|
|
the thread.
|
2012-03-24 14:57:04 +01:00
|
|
|
|
|
|
|
|
|
"Now suppose it releases one count on semaphore B. How does the
|
2016-11-08 14:45:21 +01:00
|
|
|
|
RTOS know that it still holds 2 counts on B? With some complex
|
|
|
|
|
internal data structure. The RTOS would have to maintain internal
|
|
|
|
|
information about how many counts from each semaphore are held
|
|
|
|
|
by each thread.
|
2012-03-24 14:57:04 +01:00
|
|
|
|
|
|
|
|
|
"How does the RTOS know that it should not decrement the priority
|
2016-11-08 14:45:21 +01:00
|
|
|
|
from the priority of C? Again, only with internal complexity. It
|
|
|
|
|
would have to know the priority of every semaphore held by
|
|
|
|
|
every thread.
|
2012-03-24 14:57:04 +01:00
|
|
|
|
|
2014-10-15 18:57:04 +02:00
|
|
|
|
"Providing the HLS capability on a simple pthread mutex would not
|
2016-11-08 14:45:21 +01:00
|
|
|
|
be such quite such a complex job if you allow only one mutex per
|
|
|
|
|
thread. However, the more general case seems almost as complex
|
|
|
|
|
as priority inheritance. I decided that the implementation does
|
|
|
|
|
not have value to me. I only wanted it for its reduced
|
|
|
|
|
complexity; in all other ways I believe that it is the inferior
|
|
|
|
|
solution. So I discarded a few hours of programming. Not a
|
|
|
|
|
big loss from the experience I gained."
|
2012-03-22 15:07:45 +01:00
|
|
|
|
|
2017-06-17 22:10:37 +02:00
|
|
|
|
Title: INAPPROPRIATE USE OF sched_lock() BY pthreads
|
|
|
|
|
Description: In implementation of standard pthread functions, the non-
|
|
|
|
|
standard, NuttX function sched_lock() is used. This is very
|
2017-11-11 22:43:16 +01:00
|
|
|
|
strong since it disables pre-emption for all threads in all
|
2017-06-17 22:10:37 +02:00
|
|
|
|
task groups. I believe it is only really necessary in most
|
|
|
|
|
cases to lock threads in the task group with a new non-
|
|
|
|
|
standard interface, say pthread_lock().
|
|
|
|
|
|
|
|
|
|
This is because the OS resources used by a thread such as
|
|
|
|
|
mutexes, condition variable, barriers, etc. are only
|
|
|
|
|
meaningful from within the task group. So, in order to
|
|
|
|
|
performance exclusive operations on these resources, it is
|
|
|
|
|
only necessary to block other threads executing within the
|
|
|
|
|
task group.
|
|
|
|
|
|
|
|
|
|
This is an easy change: pthread_lock() and pthread_unlock()
|
|
|
|
|
would simply operate on a semaphore retained in the task
|
|
|
|
|
group structure. I am, however, hesitant to make this change:
|
2017-11-11 22:43:16 +01:00
|
|
|
|
In the FLAT build model, there is nothing that prevents people
|
2017-06-17 22:10:37 +02:00
|
|
|
|
from accessing the inter-thread controls from threads in
|
2018-01-21 14:47:13 +01:00
|
|
|
|
different task groups. Making this change, while correct,
|
2017-06-17 22:10:37 +02:00
|
|
|
|
might introduce subtle bugs in code by people who are not
|
|
|
|
|
using NuttX correctly.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low. This change would improve real-time performance of the
|
|
|
|
|
OS but is not otherwise required.
|
|
|
|
|
|
2015-03-10 16:42:35 +01:00
|
|
|
|
o Message Queues (sched/mqueue)
|
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2015-03-10 14:50:32 +01:00
|
|
|
|
|
2014-09-13 14:10:23 +02:00
|
|
|
|
o Kernel/Protected Build
|
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^
|
2013-12-30 17:04:34 +01:00
|
|
|
|
|
|
|
|
|
Title: NSH PARTITIONING.
|
|
|
|
|
Description: There are issues with several NSH commands in the NuttX kernel
|
2014-09-13 14:10:23 +02:00
|
|
|
|
and protected build modes (where NuttX is built as a monolithic
|
|
|
|
|
kernel and user code must trap into the protected kernel via
|
|
|
|
|
syscalls). The current NSH implementation has several commands
|
|
|
|
|
that call directly into kernel internal functions for which
|
|
|
|
|
there is no syscall available. The commands cause link failures
|
|
|
|
|
in the kernel/protected build mode and must currently be disabled.
|
2013-12-30 17:04:34 +01:00
|
|
|
|
Here are known problems that must be fixed:
|
|
|
|
|
|
|
|
|
|
COMMAND KERNEL INTERFACE(s)
|
|
|
|
|
-------- ----------------------------------------------
|
|
|
|
|
mkrd ramdisk_register()
|
|
|
|
|
|
2013-03-23 15:46:02 +01:00
|
|
|
|
Status: Open
|
2013-12-30 17:04:34 +01:00
|
|
|
|
Priority: Medium/High -- the kernel build configuration is not fully fielded
|
2013-03-23 15:46:02 +01:00
|
|
|
|
yet.
|
|
|
|
|
|
2016-03-24 20:10:45 +01:00
|
|
|
|
Title: apps/system PARTITIONING
|
|
|
|
|
Description: Several of the USB device helper applications in apps/system
|
|
|
|
|
violate OS/application partitioning and will fail on a kernel
|
2016-03-25 21:23:27 +01:00
|
|
|
|
or protected build. Many of these have been fixed by adding
|
2016-03-27 00:26:47 +01:00
|
|
|
|
the BOARDIOC_USBDEV_CONTROL boardctl() command. But there are
|
2016-03-25 21:23:27 +01:00
|
|
|
|
still issues.
|
2016-03-24 20:10:45 +01:00
|
|
|
|
|
2016-03-27 00:26:47 +01:00
|
|
|
|
These functions still call directly into operating system
|
|
|
|
|
functions:
|
2016-03-24 20:10:45 +01:00
|
|
|
|
|
2016-03-25 23:01:59 +01:00
|
|
|
|
- usbmsc_configure - Called from apps/system/usbmsc and
|
2016-03-25 21:23:27 +01:00
|
|
|
|
apps/system/composite
|
2017-11-11 22:43:16 +01:00
|
|
|
|
- usbmsc_bindlun - Called from apps/system/usbmsc
|
2016-03-25 23:01:59 +01:00
|
|
|
|
- usbmsc_exportluns - Called from apps/system/usbmsc.
|
2016-03-25 21:23:27 +01:00
|
|
|
|
|
2016-03-24 20:10:45 +01:00
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Medium/High -- the kernel build configuration is not fully fielded
|
|
|
|
|
yet.
|
|
|
|
|
|
2014-09-20 23:01:50 +02:00
|
|
|
|
Title: NxTERM PARTITIONING.
|
|
|
|
|
Description: NxTerm is implemented (correctly) as a driver that resides
|
2013-12-30 17:04:34 +01:00
|
|
|
|
in the nuttx/ directory. However, the user interfaces must be
|
|
|
|
|
moved into a NuttX library or into apps/. Currently
|
2014-09-20 23:01:50 +02:00
|
|
|
|
applications calls to the NxTerm user interfaces are
|
2017-03-12 19:37:13 +01:00
|
|
|
|
undefined in the Kernel/Protected builds.
|
2013-03-23 15:46:02 +01:00
|
|
|
|
Status: Open
|
2013-12-30 17:04:34 +01:00
|
|
|
|
Priority: Medium
|
2013-03-23 15:46:02 +01:00
|
|
|
|
|
2014-09-13 14:10:23 +02:00
|
|
|
|
Title: C++ CONSTRUCTORS HAVE TOO MANY PRIVILEGES (PROTECTED MODE)
|
2013-03-23 15:46:02 +01:00
|
|
|
|
Description: When a C++ ELF module is loaded, its C++ constructors are called
|
2014-09-13 14:10:23 +02:00
|
|
|
|
via sched/task_starthook.c logic. This logic runs in protected mode.
|
2013-03-23 15:46:02 +01:00
|
|
|
|
The is a security hole because the user code runs with kernel-
|
2013-12-30 17:04:34 +01:00
|
|
|
|
privileges when the constructor executes.
|
2013-03-23 15:46:02 +01:00
|
|
|
|
|
|
|
|
|
Destructors likely have the opposite problem. The probably try to
|
|
|
|
|
execute some kernel logic in user mode? Obviously this needs to
|
|
|
|
|
be investigated further.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low (unless you need build a secure C++ system).
|
|
|
|
|
|
|
|
|
|
Title: TOO MANY SYSCALLS
|
|
|
|
|
Description: There are a few syscalls that operate very often in user space.
|
|
|
|
|
Since syscalls are (relatively) time consuming this could be
|
|
|
|
|
a performance issue. Here is some numbers that I collected
|
2014-10-15 18:57:04 +02:00
|
|
|
|
in an application that was doing mostly printf output:
|
2013-03-23 15:46:02 +01:00
|
|
|
|
|
|
|
|
|
sem_post - 18% of syscalls
|
|
|
|
|
sem_wait - 18% of syscalls
|
|
|
|
|
getpid - 59% of syscalls
|
|
|
|
|
--------------------------
|
|
|
|
|
95% of syscalls
|
|
|
|
|
|
|
|
|
|
Obviously system performance could be improved greatly by simply
|
|
|
|
|
optimizing these functions so that they do not need to system calls
|
2017-10-16 19:38:00 +02:00
|
|
|
|
so frequently. This getpid() call is part of the re-entrant
|
|
|
|
|
semaphore logic used with printf() and other C buffered I/O.
|
|
|
|
|
Something like TLS might be used to retain the thread's ID
|
|
|
|
|
locally.
|
2013-03-23 15:46:02 +01:00
|
|
|
|
|
|
|
|
|
Linux, for example, has functions call up() and down(). up()
|
|
|
|
|
increments the semaphore count but does not call into the kernel
|
|
|
|
|
unless incrementing the count unblocks a task; similarly, down
|
2013-08-27 17:40:19 +02:00
|
|
|
|
decrements the count and does not call into the kernel unless
|
2013-03-23 15:46:02 +01:00
|
|
|
|
the count becomes negative the caller must be blocked.
|
2013-05-18 19:15:37 +02:00
|
|
|
|
|
|
|
|
|
Update:
|
2017-10-16 19:38:00 +02:00
|
|
|
|
"I am thinking that there should be a "magic" global, user-
|
|
|
|
|
accessible variable that holds the PID of the currently
|
|
|
|
|
executing thread; basically the PID of the task at the head
|
|
|
|
|
of the ready-to-run list. This variable would have to be reset
|
|
|
|
|
each time the head of the ready-to-run list changes.
|
2013-05-18 19:15:37 +02:00
|
|
|
|
|
|
|
|
|
"Then getpid() could be implemented in user space with no system call
|
|
|
|
|
by simply reading this variable.
|
|
|
|
|
|
|
|
|
|
"This one would be easy: Just a change to include/nuttx/userspace.h,
|
2018-10-05 19:15:57 +02:00
|
|
|
|
configs/*/kernel/up_userspace.c, libs/libc/,
|
|
|
|
|
sched/sched_addreadytorun.c, and sched/sched_removereadytorun.c.
|
|
|
|
|
That would eliminate 59% of the syscalls."
|
2014-09-13 14:10:23 +02:00
|
|
|
|
|
|
|
|
|
Update:
|
|
|
|
|
This is probably also just a symptom of the OS test that does mostly
|
|
|
|
|
console output. The requests for the pid() are part of the
|
|
|
|
|
implementation of the I/O's re-entrant semaphore implementation and
|
|
|
|
|
would not be an issue in the more general case.
|
2016-03-11 14:17:32 +01:00
|
|
|
|
|
|
|
|
|
Update:
|
|
|
|
|
One solution might be to used CONFIG_TLS, add the PID to struct
|
|
|
|
|
tls_info_s. Then the PID could be obtained without a system call.
|
2017-10-16 19:38:00 +02:00
|
|
|
|
TLS is not very useful in the FLAT build, however. TLS works by
|
|
|
|
|
putting per-thread data at the bottom of an aligned stack. The
|
|
|
|
|
current stack pointer is the ANDed with the alignment mask to
|
|
|
|
|
obtain the per-thread data address.
|
|
|
|
|
|
|
|
|
|
There are problems with this in the FLAT and PROTECTED builds:
|
|
|
|
|
First the maximum size of the stack is limited by the number
|
|
|
|
|
of bits in the mask. This means that you need to have a very
|
|
|
|
|
high alignment to support tasks with large stacks. But
|
|
|
|
|
secondly, the higher the alignment of the stacks stacks, the
|
|
|
|
|
more memory is lost to fragmentation.
|
|
|
|
|
|
|
|
|
|
In the KERNEL build, the the stack lies at a virtual address
|
|
|
|
|
and it is possible to have highly aligned stacks with no such
|
|
|
|
|
penalties.
|
2013-03-23 15:46:02 +01:00
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low-Medium. Right now, I do not know if these syscalls are a
|
2014-01-07 23:27:45 +01:00
|
|
|
|
real performance issue or not. The above statistics were collected
|
|
|
|
|
from a an atypical application (the OS test), and does an excessive
|
|
|
|
|
amount of console output. There is probably no issue with more typical
|
|
|
|
|
embedded applications.
|
2013-03-23 15:46:02 +01:00
|
|
|
|
|
2014-01-01 15:52:58 +01:00
|
|
|
|
Title: SECURITY ISSUES
|
2013-03-24 18:28:38 +01:00
|
|
|
|
Description: In the current designed, the kernel code calls into the user-space
|
|
|
|
|
allocators to allocate user-space memory. It is a security risk to
|
|
|
|
|
call into user-space in kernel-mode because that could be exploited
|
|
|
|
|
to gain control of the system. That could be fixed by dropping to
|
|
|
|
|
user mode before trapping into the memory allocators; the memory
|
|
|
|
|
allocators would then need to trap in order to return (this is
|
|
|
|
|
already done to return from signal handlers; that logic could be
|
|
|
|
|
renamed more generally and just used for a generic return trap).
|
2014-01-01 15:52:58 +01:00
|
|
|
|
|
|
|
|
|
Another place where the system calls into the user code in kernel
|
|
|
|
|
mode is work_usrstart() to start the user work queue. That is
|
|
|
|
|
another security hole that should be plugged.
|
2013-03-24 18:28:38 +01:00
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low (unless security becomes an issue).
|
|
|
|
|
|
2013-04-11 14:53:26 +02:00
|
|
|
|
Title: MICRO-KERNEL
|
|
|
|
|
Description: The initial kernel build cut many interfaces at a very high level.
|
2013-04-12 16:38:52 +02:00
|
|
|
|
The resulting monolithic kernel is then rather large. It would
|
2013-04-11 14:53:26 +02:00
|
|
|
|
not be a prohibitively large task to reorganize the interfaces so
|
|
|
|
|
that NuttX is built as a micro-kernel, i.e., with only the core
|
|
|
|
|
OS services within the kernel and with other OS facilities, such
|
2013-04-12 16:38:52 +02:00
|
|
|
|
as the file system, message queues, etc., residing in user-space
|
|
|
|
|
and to interfacing with those core OS facilities through traps.
|
2013-07-23 22:47:16 +02:00
|
|
|
|
Status: Open
|
2013-04-11 14:53:26 +02:00
|
|
|
|
Priority: Low. This is a good idea and certainly an architectural
|
2014-08-15 23:38:37 +02:00
|
|
|
|
improvement. However, there is no strong motivation now do
|
2013-07-23 22:47:16 +02:00
|
|
|
|
do that partitioning work.
|
2013-04-11 14:53:26 +02:00
|
|
|
|
|
2016-05-28 20:22:35 +02:00
|
|
|
|
Title: USER MODE TASKS CAN MODIFY PRIVILEGED TASKS
|
|
|
|
|
Description: Certain interfaces, such as sched_setparam(),
|
|
|
|
|
sched_setscheduler(), etc. can be used by user mode tasks to
|
2018-01-20 23:16:35 +01:00
|
|
|
|
modify the behavior of privileged kernel threads.
|
2016-05-28 20:22:35 +02:00
|
|
|
|
For a truly secure system. Privileges need to be checked in
|
|
|
|
|
every interface that permits one thread to modify the
|
|
|
|
|
properties of another thread.
|
2016-05-30 17:16:08 +02:00
|
|
|
|
|
|
|
|
|
NOTE: It would be a simple matter to simply disable user
|
|
|
|
|
threads from modifying privileged threads. However, you
|
|
|
|
|
might also want to be able to modify privileged threads from
|
|
|
|
|
user tasks with certain permissions. Permissions is a much
|
|
|
|
|
more complex issue.
|
2017-10-16 19:38:00 +02:00
|
|
|
|
|
|
|
|
|
task_delete(), for example, is not permitted to kill a kernel
|
|
|
|
|
thread. But should not a privileged user task be able to do
|
|
|
|
|
so?
|
2016-05-28 20:22:35 +02:00
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low for most embedded systems but would be a critical need if
|
|
|
|
|
NuttX were used in a secure system.
|
|
|
|
|
|
2018-09-18 15:09:10 +02:00
|
|
|
|
Title: ERRNO VARIABLE in KERNEL MODE
|
|
|
|
|
Description: In the FLAT and PROTECTED mode, the errno variable is retained
|
|
|
|
|
within the TCB. It requires a call into the OS to access the
|
|
|
|
|
errno variable.
|
|
|
|
|
|
|
|
|
|
In the KERNEL build, TLS should be used: The errno should be
|
|
|
|
|
stored at the base of the callers stack along with other TLS
|
|
|
|
|
data.
|
|
|
|
|
|
|
|
|
|
To do this, NuttX system calls should be reorganized. The
|
|
|
|
|
system calls should go to the internal OS functions (like
|
|
|
|
|
nxsem_wait() vs sem_wait()) which do not set the errno value.
|
2018-10-08 22:45:00 +02:00
|
|
|
|
The implementation available to applications (sem_wait() in
|
2018-09-18 15:09:10 +02:00
|
|
|
|
this example) should call the internal OS function then set the
|
|
|
|
|
errno variable in TLS.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low, this primarily an aesthetic issue but may also have some
|
2018-10-08 22:45:00 +02:00
|
|
|
|
performance implications if the the errno variable is accessed
|
2018-09-18 15:09:10 +02:00
|
|
|
|
via a system call at high rates.
|
|
|
|
|
|
2007-06-06 12:25:20 +02:00
|
|
|
|
o C++ Support
|
2007-12-13 17:52:37 +01:00
|
|
|
|
^^^^^^^^^^^
|
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: USE OF SIZE_T IN NEW OPERATOR
|
2011-10-03 23:10:11 +02:00
|
|
|
|
Description: The argument of the 'new' operators should take a type of
|
|
|
|
|
size_t (see libxx/libxx_new.cxx and libxx/libxx_newa.cxx). But
|
|
|
|
|
size_t has an unknown underlying. In the nuttx sys/types.h
|
|
|
|
|
header file, size_t is typed as uint32_t (which is determined by
|
|
|
|
|
architecture-specific logic). But the C++ compiler may believe
|
|
|
|
|
that size_t is of a different type resulting in compilation errors
|
|
|
|
|
in the operator. Using the underlying integer type Instead of
|
|
|
|
|
size_t seems to resolve the compilation issues.
|
|
|
|
|
Status: Kind of open. There is a workaround. Setting CONFIG_CXX_NEWLONG=y
|
|
|
|
|
will define the operators with argument of type unsigned long;
|
|
|
|
|
Setting CONFIG_CXX_NEWLONG=n will define the operators with argument
|
|
|
|
|
of type unsigned int. But this is pretty ugly! A better solution
|
2014-01-14 21:06:02 +01:00
|
|
|
|
would be to get a hold of the compilers definition of size_t.
|
2011-10-03 23:10:11 +02:00
|
|
|
|
Priority: Low.
|
|
|
|
|
|
2013-06-23 18:45:37 +02:00
|
|
|
|
Title: STATIC CONSTRUCTORS AND MULTITASKING
|
|
|
|
|
Description: The logic that calls static constructors operates on the main
|
|
|
|
|
thread of the initial user application task. Any static
|
|
|
|
|
constructors that cache task/thread specific information such
|
|
|
|
|
as C streams or file descriptors will not work in other tasks.
|
|
|
|
|
See also UCLIBC++ AND STATIC CONSTRUCTORS below.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low and probably will not changed. In these case, there will
|
|
|
|
|
need to be an application specific solution.
|
|
|
|
|
|
|
|
|
|
Title: UCLIBC++ AND STATIC CONSTRUCTORS
|
|
|
|
|
uClibc++ was designed to work in a Unix environment with
|
|
|
|
|
processes and with separately linked executables. Each process
|
|
|
|
|
has its own, separate uClibc++ state. uClibc++ would be
|
|
|
|
|
instantiated like this in Linux:
|
|
|
|
|
|
|
|
|
|
1) When the program is built, a tiny start-up function is
|
|
|
|
|
included at the beginning of the program. Each program has
|
|
|
|
|
its own, separate list of C++ constructors.
|
|
|
|
|
|
|
|
|
|
2) When the program is loaded into memory, space is set aside
|
|
|
|
|
for uClibc's static objects and then this special start-up
|
|
|
|
|
routine is called. It initializes the C library, calls all
|
|
|
|
|
of the constructors, and calls atexit() so that the destructors
|
|
|
|
|
will be called when the process exits.
|
|
|
|
|
|
|
|
|
|
In this way, you get a per-process uClibc++ state since there
|
|
|
|
|
is per-process storage of uClibc++ global state and per-process
|
|
|
|
|
initialization of uClibc++ state.
|
|
|
|
|
|
|
|
|
|
Compare this to how NuttX (and most embedded RTOSs) would work:
|
|
|
|
|
|
|
|
|
|
1) The entire FLASH image is built as one big blob. All of the
|
|
|
|
|
constructors are lumped together and all called together at
|
|
|
|
|
one time.
|
|
|
|
|
|
|
|
|
|
This, of course, does not have to be so. We could segregate
|
|
|
|
|
constructors by some criteria and we could use a task start
|
|
|
|
|
up routine to call constructors separately. We could even
|
|
|
|
|
use ELF executables that are separately linked and already
|
|
|
|
|
have their constructors separately called when the ELF
|
|
|
|
|
executable starts.
|
|
|
|
|
|
|
|
|
|
But this would not do you very much good in the case of
|
|
|
|
|
uClibc++ because:
|
|
|
|
|
|
|
|
|
|
2) NuttX does not support processes, i.e., separate address
|
|
|
|
|
environments for each task. As a result, the scope of global
|
|
|
|
|
data is all tasks. Any change to the global state made by
|
|
|
|
|
one task can effect another task. There can only one
|
|
|
|
|
uClibc++ state and it will be shared by all tasks. uClibc++
|
|
|
|
|
apparently relies on global instances (at least for cin and
|
|
|
|
|
cout) there is no way to to have any unique state for any
|
|
|
|
|
"task group".
|
|
|
|
|
|
|
|
|
|
[NuttX does not support processes because in order to have
|
|
|
|
|
true processes, your hardware must support a memory management
|
|
|
|
|
unit (MMU) and I am not aware of any mainstream MCU that has
|
|
|
|
|
an MMU (or, at least an MMU that is capable enough to support
|
|
|
|
|
processes).]
|
|
|
|
|
|
|
|
|
|
NuttX does not have processes, but it does have "task groups".
|
|
|
|
|
See http://www.nuttx.org/doku.php?id=wiki:nxinternal:tasksnthreads.
|
|
|
|
|
A task group is the task plus all of the pthreads created by
|
|
|
|
|
the task via pthread_create(). Resources like FILE streams
|
|
|
|
|
are shared within a task group. Task groups are like a poor
|
|
|
|
|
man's process.
|
|
|
|
|
|
|
|
|
|
This means that if the uClibc++ static classes are initialized
|
|
|
|
|
by one member of a task group, then cin/cout should work
|
|
|
|
|
correctly with all threads that are members of task group. The
|
|
|
|
|
destructors would be called when the final member of the task
|
|
|
|
|
group exists (if registered via atexit()).
|
|
|
|
|
|
|
|
|
|
So if you use only pthreads, uClibc++ should work very much like
|
|
|
|
|
it does in Linux. If your NuttX usage model is like one process
|
|
|
|
|
with many threads then you have Linux compatibility.
|
|
|
|
|
|
|
|
|
|
If you wanted to have uClibc++ work across task groups, then
|
|
|
|
|
uClibc++ and NuttX would need some extensions. I am thinking
|
|
|
|
|
along the lines of the following:
|
|
|
|
|
|
2014-10-15 18:57:04 +02:00
|
|
|
|
1) There is a per-task group storage are within the RTOS (see
|
|
|
|
|
include/nuttx/sched.h). If we add some new, non-standard APIs
|
2013-06-23 18:45:37 +02:00
|
|
|
|
then uClibc++ could get access to per-task group storage (in
|
|
|
|
|
the spirit of pthread_getspecific() which gives you access to
|
|
|
|
|
per-thread storage).
|
|
|
|
|
|
|
|
|
|
2) Then move all of uClibc++'s global state into per-task group
|
|
|
|
|
storage and add a uClibc++ initialization function that would:
|
|
|
|
|
a) allocate per-task group storage, b) call all of the static
|
|
|
|
|
constructors, and c) register with atexit() to perform clean-
|
|
|
|
|
up when the task group exits.
|
|
|
|
|
|
|
|
|
|
That would be a fair amount of effort. I don't really know what
|
|
|
|
|
the scope of such an effort would be. I suspect that it is not
|
|
|
|
|
large but probably complex.
|
|
|
|
|
|
|
|
|
|
NOTES:
|
|
|
|
|
|
|
|
|
|
1) See STATIC CONSTRUCTORS AND MULTITASKING
|
|
|
|
|
|
|
|
|
|
2) To my knowledge, only some uClibc++ ofstream logic is
|
|
|
|
|
sensitive to this. All other statically initialized classes
|
|
|
|
|
seem to work OK across different task groups.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low. I have no plan to change this logic now unless there is
|
|
|
|
|
some strong demand to do so.
|
|
|
|
|
|
2009-06-27 00:52:57 +02:00
|
|
|
|
o Binary loaders (binfmt/)
|
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: NXFLAT TESTS
|
2011-03-20 19:18:19 +01:00
|
|
|
|
Description: Not all of the NXFLAT test under apps/examples/nxflat are working.
|
2009-06-27 00:52:57 +02:00
|
|
|
|
Most simply do not compile yet. tests/mutex runs okay but
|
|
|
|
|
outputs garbage on completion.
|
2013-01-27 16:52:58 +01:00
|
|
|
|
|
|
|
|
|
Update: 13-27-1, tests/mutex crashed with a memory corruption
|
|
|
|
|
problem the last time that I ran it.
|
2009-06-27 00:52:57 +02:00
|
|
|
|
Status: Open
|
|
|
|
|
Priority: High
|
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: ARM UP_GETPICBASE()
|
2009-06-27 00:52:57 +02:00
|
|
|
|
Description: The ARM up_getpicbase() does not seem to work. This means
|
|
|
|
|
the some features like wdog's might not work in NXFLAT modules.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Medium-High
|
|
|
|
|
|
2014-09-30 21:27:34 +02:00
|
|
|
|
Title: NXFLAT READ-ONLY DATA IN RAM
|
2013-07-23 22:47:16 +02:00
|
|
|
|
Description: At present, all .rodata must be put into RAM. There is a
|
2009-06-27 00:52:57 +02:00
|
|
|
|
tentative design change that might allow .rodata to be placed
|
|
|
|
|
in FLASH (see Documentation/NuttXNxFlat.html).
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Medium
|
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: GOT-RELATIVE FUNCTION POINTERS
|
2009-06-27 00:52:57 +02:00
|
|
|
|
Description: If the function pointer to a statically defined function is
|
|
|
|
|
taken, then GCC generates a relocation that cannot be handled
|
2014-01-14 21:06:02 +01:00
|
|
|
|
by NXFLAT. There is a solution described in Documentation/NuttXNxFlat.html,
|
2009-06-27 00:52:57 +02:00
|
|
|
|
by that would require a compiler change (which we want to avoid).
|
|
|
|
|
The simple workaround is to make such functions global in scope.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low (probably will not fix)
|
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: USE A HASH INSTEAD OF A STRING IN SYMBOL TABLES
|
2009-06-27 00:52:57 +02:00
|
|
|
|
Description: In the NXFLAT symbol tables... Using a 32-bit hash value instead
|
|
|
|
|
of a string to identify a symbol should result in a smaller footprint.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low
|
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: WINDOWS-BASED TOOLCHAIN BUILD
|
2011-05-07 18:59:20 +02:00
|
|
|
|
Description: Windows build issue. Some of the configurations that use NXFLAT have
|
2011-04-16 17:43:39 +02:00
|
|
|
|
the linker script specified like this:
|
|
|
|
|
|
2012-10-10 19:01:23 +02:00
|
|
|
|
NXFLATLDFLAGS2 = $(NXFLATLDFLAGS1) -T$(TOPDIR)/binfmt/libnxflat/gnu-nxflat-gotoff.ld -no-check-sections
|
2011-04-16 17:43:39 +02:00
|
|
|
|
|
|
|
|
|
That will not work for windows-based tools because they require Windows
|
|
|
|
|
style paths. The solution is to do something like this:
|
|
|
|
|
|
|
|
|
|
if ($(WINTOOL)y)
|
2012-10-10 19:01:23 +02:00
|
|
|
|
NXFLATLDSCRIPT=${cygpath -w $(TOPDIR)/binfmt/libnxflat/gnu-nxflat-gotoff.ld}
|
2011-04-16 17:43:39 +02:00
|
|
|
|
else
|
2012-10-10 19:01:23 +02:00
|
|
|
|
NXFLATLDSCRIPT=$(TOPDIR)/binfmt/libnxflat/gnu-nxflat-gotoff.ld
|
2011-04-16 17:43:39 +02:00
|
|
|
|
endif
|
2013-07-23 22:47:16 +02:00
|
|
|
|
|
2011-04-16 17:43:39 +02:00
|
|
|
|
Then use
|
2013-07-23 22:47:16 +02:00
|
|
|
|
|
2011-04-16 17:43:39 +02:00
|
|
|
|
NXFLATLDFLAGS2 = $(NXFLATLDFLAGS1) -T"$(NXFLATLDSCRIPT)" -no-check-sections
|
2011-12-18 14:53:58 +01:00
|
|
|
|
|
2011-04-16 17:43:39 +02:00
|
|
|
|
Status: Open
|
|
|
|
|
Priority: There are too many references like the above. They will have
|
|
|
|
|
to get fixed as needed for Windows native tool builds.
|
|
|
|
|
|
2010-05-06 03:38:31 +02:00
|
|
|
|
o Network (net/, drivers/net)
|
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2007-12-13 17:52:37 +01:00
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: LISTENING FOR UDP BROADCASTS
|
2007-12-13 17:52:37 +01:00
|
|
|
|
Description: Incoming UDP broadcast should only be accepted if listening on
|
|
|
|
|
INADDR_ANY(?)
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low
|
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: CONCURRENT TCP SEND OPERATIONS
|
2008-09-01 22:35:41 +02:00
|
|
|
|
Description: At present, there cannot be two concurrent active TCP send
|
2008-11-20 22:59:36 +01:00
|
|
|
|
operations in progress using the same socket. This is because
|
|
|
|
|
the uIP ACK logic will support only one transfer at a time. The
|
2013-07-23 22:47:16 +02:00
|
|
|
|
solution is simple: A mutex will be needed to make sure that each
|
2008-11-20 22:59:36 +01:00
|
|
|
|
send that is started is able to be the exclusive sender until all of
|
|
|
|
|
the data to be sent has been ACKed.
|
2011-03-18 21:35:31 +01:00
|
|
|
|
Status: Open. There is some temporary logic to apps/nshlib that does
|
2008-09-01 22:35:41 +02:00
|
|
|
|
this same fix and that temporary logic should be removed when
|
|
|
|
|
send() is fixed.
|
|
|
|
|
Priority: Medium-Low. This is an important issue for applications that
|
|
|
|
|
send on the same TCP socket from multiple threads.
|
|
|
|
|
|
2015-01-30 20:52:04 +01:00
|
|
|
|
Title: POLL/SELECT ON TCP/UDP SOCKETS NEEDS READ-AHEAD
|
|
|
|
|
Description: poll()/select() only works for availability of buffered TCP/UDP
|
2009-08-16 16:43:13 +02:00
|
|
|
|
read data (when read-ahead is enabled). The way writing is
|
2018-01-23 18:54:03 +01:00
|
|
|
|
handled in the network layer, either (1) If CONFIG_UDP/TCP_WRITE_BUFFERS=y
|
|
|
|
|
then we never have to wait to send; otherwise, we always have
|
|
|
|
|
to wait to send. So it is impossible to notify the caller
|
|
|
|
|
when it can send without waiting.
|
|
|
|
|
|
|
|
|
|
An exception "never having to wait" is the case where we are
|
|
|
|
|
out of memory for use in write buffering. In that case, the
|
|
|
|
|
blocking send()/sendto() would have to wait for the memory
|
|
|
|
|
to become available.
|
2009-08-16 16:43:13 +02:00
|
|
|
|
Status: Open, probably will not be fixed.
|
|
|
|
|
Priority: Medium... this does effect porting of applications that expect
|
|
|
|
|
different behavior from poll()/select()
|
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: INTERFACES TO LEAVE/JOIN IGMP MULTICAST GROUP
|
2010-07-19 22:52:02 +02:00
|
|
|
|
Description: The interfaces used to leave/join IGMP multicast groups is non-standard.
|
|
|
|
|
RFC3678 (IGMPv3) suggests ioctl() commands to do this (SIOCSIPMSFILTER) but
|
|
|
|
|
also status that those APIs are historic. NuttX implements these ioctl
|
2011-05-28 23:42:18 +02:00
|
|
|
|
commands, but is non-standard because: (1) It does not support IGMPv3, and
|
2016-05-27 22:43:33 +02:00
|
|
|
|
(2) it looks up drivers by their device name (e.g., "eth0") vs IP address.
|
2010-07-19 22:52:02 +02:00
|
|
|
|
|
|
|
|
|
Linux uses setsockopt() to control multicast group membership using the
|
|
|
|
|
IP_ADD_MEMBERSHIP and IP_DROP_MEMBERSHIP options. It also looks up drivers
|
|
|
|
|
using IP addresses (It would require additional logic in NuttX to look up
|
|
|
|
|
drivers by IP address). See http://tldp.org/HOWTO/Multicast-HOWTO-6.html
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Medium. All standards compatibility is important to NuttX. However, most
|
|
|
|
|
the mechanism for leaving and joining groups is hidden behind a wrapper
|
|
|
|
|
function so that little of this incompatibilities need be exposed.
|
|
|
|
|
|
2014-04-23 21:02:00 +02:00
|
|
|
|
Title: CLOSED CONNECTIONS IN THE BACKLOG
|
|
|
|
|
If a connection is backlogged but accept() is not called quickly, then
|
|
|
|
|
that connection may time out. How should this be handled? Should the
|
|
|
|
|
connection be removed from the backlog if it is times out or is closed?
|
|
|
|
|
Or should it remain in the backlog with a status indication so that accept()
|
2016-05-27 22:43:33 +02:00
|
|
|
|
can fail when it encounters the invalid connection?
|
2011-06-06 17:06:08 +02:00
|
|
|
|
Status: Open
|
2014-08-19 15:47:32 +02:00
|
|
|
|
Priority: Medium. Important on slow applications that will not accept
|
|
|
|
|
connections promptly.
|
2011-08-05 04:31:59 +02:00
|
|
|
|
|
2016-12-03 19:21:18 +01:00
|
|
|
|
Title: IPv6 REQUIRES ADDRESS FILTER SUPPORT
|
|
|
|
|
Description: IPv6 requires that the Ethernet driver support NuttX address
|
|
|
|
|
filter interfaces. Several Ethernet drivers do support there,
|
|
|
|
|
however. Others support the address filtering interfaces but
|
2018-09-18 15:09:10 +02:00
|
|
|
|
have never been verified:
|
2016-12-03 19:21:18 +01:00
|
|
|
|
|
2018-01-23 18:54:03 +01:00
|
|
|
|
C5471, LM3S, ez80, DM0x90 NIC, PIC, LPC54: Do not support
|
|
|
|
|
address filtering.
|
2016-12-03 19:21:18 +01:00
|
|
|
|
Kinetis, LPC17xx, LPC43xx: Untested address filter support
|
|
|
|
|
|
2014-11-20 16:38:38 +01:00
|
|
|
|
Status: Open
|
2016-12-03 19:21:18 +01:00
|
|
|
|
Priority: Pretty high if you want a to use IPv6 on these platforms.
|
2014-11-20 16:38:38 +01:00
|
|
|
|
|
2014-11-23 19:52:18 +01:00
|
|
|
|
Title: UDP MULTICAST RECEPTION
|
|
|
|
|
Description: The logic in udp_input() expects either a single receive socket or
|
|
|
|
|
none at all. However, multiple sockets should be capable of
|
|
|
|
|
receiving a UDP datagram (multicast reception). This could be
|
|
|
|
|
handled easily by something like:
|
|
|
|
|
|
|
|
|
|
for (conn = NULL; conn = udp_active (pbuf, conn); )
|
|
|
|
|
|
|
|
|
|
If the callback logic that receives a packet responds with an
|
|
|
|
|
outgoing packet, then it will over-write the received buffer,
|
|
|
|
|
however. recvfrom() will not do that, however. We would have
|
|
|
|
|
to make that the rule: Recipients of a UDP packet must treat
|
|
|
|
|
the packet as read-only.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low, unless your logic depends on that behavior.
|
|
|
|
|
|
2015-01-05 19:09:33 +01:00
|
|
|
|
Title: NETWORK WON'T STAY DOWN
|
|
|
|
|
Description: If you enable the NSH network monitor (CONFIG_NSH_NETINIT_MONITOR)
|
|
|
|
|
then the NSH 'ifdown' command is broken. Doing 'nsh> ifconfig eth0'
|
|
|
|
|
will, indeed, bring the network down. However, the network monitor
|
|
|
|
|
notices the change in the link status and will bring the network
|
|
|
|
|
back up. There needs to be some kind of interlock between
|
|
|
|
|
cmd_ifdown() and the network monitor thread to prevent this.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low, this is just a nuisance in most cases.
|
|
|
|
|
|
2015-02-01 15:52:26 +01:00
|
|
|
|
Title: FIFO CLEAN-UP AFTER CLOSING UNIX DOMAIN DATAGRAM SOCKET
|
|
|
|
|
Description: FIFOs are used as the IPC underlying all local Unix domain
|
|
|
|
|
sockets. In NuttX, FIFOs are implemented as device drivers
|
|
|
|
|
(not as a special FIFO files). The FIFO device driver is
|
|
|
|
|
instantiated when the Unix domain socket communications begin
|
|
|
|
|
and will automatically be released when (1) the driver is
|
|
|
|
|
unlinked and (2) all open references to the driver have been
|
|
|
|
|
closed. But there is no mechanism in place now to unlink the
|
|
|
|
|
FIFO when the Unix domain datagram socket is no longer used.
|
|
|
|
|
The primary issue is timing.. the FIFO should persist until
|
|
|
|
|
it is no longer needed. Perhaps there should be a delayed
|
|
|
|
|
call to unlink() (using a watchdog or the work queue). If
|
|
|
|
|
the driver is re-opened, the delayed unlink could be
|
2016-05-27 22:43:33 +02:00
|
|
|
|
canceled? Needs more thought.
|
2015-02-01 15:52:26 +01:00
|
|
|
|
NOTE: This is not an issue for Unix domain streams sockets:
|
|
|
|
|
The end-of-life of the FIFO is well determined when sockets
|
|
|
|
|
are disconnected and support for that case is fully implemented.
|
2015-01-30 20:52:04 +01:00
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low for now because I don't have a situation where this is a
|
|
|
|
|
problem for me. If you use the same Unix domain paths, then
|
|
|
|
|
it is not a issue; in fact it is more efficient if the FIFO
|
2015-01-31 19:29:02 +01:00
|
|
|
|
devices persist. But this would be a serious problem if,
|
|
|
|
|
for example, you create new Unix domain paths dynamically.
|
|
|
|
|
In that case you would effectively have a memory leak and the
|
|
|
|
|
number of FIFO instances grow.
|
2015-01-30 20:52:04 +01:00
|
|
|
|
|
2015-04-07 20:16:15 +02:00
|
|
|
|
Title: TCP IPv4-MAPPED IPv6 ADDRESSES
|
|
|
|
|
Description: The UDP implementation in net/udp contains support for Hybrid
|
|
|
|
|
dual-stack IPv6/IPv4 implementations that utilize a special
|
|
|
|
|
class of addresses, the IPv4-mapped IPv6 addresses. You can
|
|
|
|
|
see that UDP implementation in:
|
|
|
|
|
|
|
|
|
|
udp_callback.c:
|
|
|
|
|
ip6_map_ipv4addr(ipv4addr,
|
|
|
|
|
udp_send.c:
|
|
|
|
|
ip6_is_ipv4addr((FAR struct in6_addr*)conn->u.ipv6.raddr)))
|
|
|
|
|
ip6_is_ipv4addr((FAR struct in6_addr*)conn->u.ipv6.raddr))
|
|
|
|
|
in_addr_t raddr = ip6_get_ipv4addr((FAR struct in6_addr*)conn->u.ipv6.raddr);
|
|
|
|
|
|
|
|
|
|
There is no corresponding support for TCP sockets.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low. I don't know of any issues now, but I am sure that
|
|
|
|
|
someone will encounter this in the future.
|
|
|
|
|
|
2016-01-13 14:44:44 +01:00
|
|
|
|
Title: MISSING netdb INTERFACES
|
|
|
|
|
Description: There is no implementation for many netdb interfaces such as
|
2018-06-08 15:07:21 +02:00
|
|
|
|
getnetbyname(), getprotobyname(), getnameinfo(), etc.
|
2016-01-13 14:44:44 +01:00
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low
|
|
|
|
|
|
2017-03-03 16:20:02 +01:00
|
|
|
|
Title: ETHERNET WITH MULTIPLE LPWORK THREADS
|
|
|
|
|
Description: Recently, Ethernet drivers were modified to support multiple
|
|
|
|
|
work queue structures. The question was raised: "My only
|
2017-04-20 17:31:12 +02:00
|
|
|
|
reservation would be, how would this interact in the case of
|
|
|
|
|
having CONFIG_STM32_ETHMAC_LPWORK and CONFIG_SCHED_LPNTHREADS
|
2017-03-03 16:20:02 +01:00
|
|
|
|
> 1? Can it be guaranteed that one work item won't be
|
|
|
|
|
interrupted and execution switched to another? I think so but
|
|
|
|
|
am not 100% confident."
|
|
|
|
|
|
|
|
|
|
I suspect that you right. There are probably vulnerabilities
|
|
|
|
|
in the CONFIG_STM32_ETHMAC_LPWORK with CONFIG_SCHED_LPNTHREADS
|
|
|
|
|
> 1 case. But that really doesn't depend entirely upon the
|
|
|
|
|
change to add more work queue structures. Certainly with only
|
|
|
|
|
work queue structure you would have concurrent Ethernet
|
|
|
|
|
operations in that multiple LP threads; just because the work
|
|
|
|
|
structure is available, does not mean that there is not dequeued
|
|
|
|
|
work in progress. The multiple structures probably widens the
|
|
|
|
|
window for that concurrency, but does not create it.
|
|
|
|
|
|
|
|
|
|
The current Ethernet designs depend upon a single work queue to
|
2018-10-08 22:45:00 +02:00
|
|
|
|
serialize data. In the case of multiple LP threads, some
|
2017-03-03 16:20:02 +01:00
|
|
|
|
additional mechanism would have to be added to enforce that
|
|
|
|
|
serialization.
|
|
|
|
|
|
2017-03-04 18:33:36 +01:00
|
|
|
|
NOTE: Most drivers will call net_lock() and net_unlock() around
|
|
|
|
|
the critical portions of the driver work. In that case, all work
|
|
|
|
|
will be properly serialized. This issue only applies to drivers
|
|
|
|
|
that may perform operations that require protection outside of
|
|
|
|
|
the net_lock'ed region. Sometimes, this may require extending
|
|
|
|
|
the netlock() to be beginning of the driver work function.
|
2017-03-04 16:45:09 +01:00
|
|
|
|
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: High if you happen to be using Ethernet in this configuration.
|
|
|
|
|
|
2018-09-18 15:09:10 +02:00
|
|
|
|
Title: NETWORK DRIVERS USING HIGH PRIORITY WORK QUEUE
|
|
|
|
|
Description: Many network drivers run the network on the high priority work
|
|
|
|
|
queue thread (or support an option to do so). Networking should
|
|
|
|
|
not be done on the high priority work thread because it interferes
|
2018-10-08 22:45:00 +02:00
|
|
|
|
with real-time behavior. Fix by forcing all network drivers to
|
2018-09-18 15:09:10 +02:00
|
|
|
|
run on the low priority work queue.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low. Not such big deal for demo network test and demo
|
|
|
|
|
configurations except that it provides a bad example for a product
|
|
|
|
|
OS configuration.
|
|
|
|
|
|
2017-03-14 20:05:06 +01:00
|
|
|
|
Title: REPARTITION DRIVER FUNCTIONALITY
|
|
|
|
|
Description: Every network driver performs the first level of packet decoding.
|
|
|
|
|
It examines the packet header and calls ipv4_input(), ipv6_input().
|
|
|
|
|
icmp_input(), etc. as appropriate. This is a maintenance problem
|
|
|
|
|
because it means that any changes to the network input interfaces
|
|
|
|
|
affects all drivers.
|
|
|
|
|
|
|
|
|
|
A better, more maintainable solution would use a single net_input()
|
|
|
|
|
function that would receive all incoming packets. This function
|
|
|
|
|
would then perform that common packet decoding logic that is
|
|
|
|
|
currently implemented in every network driver.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low. Really just as aesthetic maintainability issue.
|
|
|
|
|
|
2017-04-15 15:40:14 +02:00
|
|
|
|
Title: BROADCAST WITH MULTIPLE NETWORK INTERFACES
|
|
|
|
|
Description: There is currently no mechanism to send a broadcast packet
|
|
|
|
|
out through several network interfaces. Currently packets
|
|
|
|
|
can be sent to only one device. Logic in netdev_findby_ipvXaddr()
|
|
|
|
|
currently just selects the first device in the list of
|
|
|
|
|
devices; only that device will receive broadcast packets.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: High if you require broadcast on multiple networks. There is
|
|
|
|
|
no simple solution known at this time, however. Perhaps
|
|
|
|
|
netdev_findby_ipvXaddr() should return a list of devices rather
|
|
|
|
|
than a single device? All upstream logic would then have to
|
|
|
|
|
deal with a list of devices. That would be a huge effect and
|
|
|
|
|
certainly doesn't dount as a "simple solution".
|
|
|
|
|
|
2017-06-19 00:00:08 +02:00
|
|
|
|
Title: ICMPv6 FOR 6LoWPAN
|
2017-06-17 22:10:37 +02:00
|
|
|
|
Description: The current ICMPv6 and neighbor-related logic only works with
|
2017-06-19 00:00:08 +02:00
|
|
|
|
Ethernet MAC. For 6LoWPAN, a new more conservative IPv6
|
2018-10-08 22:45:00 +02:00
|
|
|
|
neighbour discovery is provided by RFC 6775. This RFC needs to
|
2017-06-19 00:00:08 +02:00
|
|
|
|
be supported in order to support ping6 on a 6LoWPAN network.
|
2017-06-18 16:09:33 +02:00
|
|
|
|
If RFC 6775 were implemented, then arbitrary IPv6 addresses,
|
|
|
|
|
including addresses from DHCPv6 could be used.
|
|
|
|
|
|
2017-06-18 17:01:18 +02:00
|
|
|
|
UPDATE: With IPv6 neighbor discovery, any IPv6 address may
|
2017-06-18 16:09:33 +02:00
|
|
|
|
be associated with any short or extended address. In fact,
|
|
|
|
|
that is the whole purpose of the neighbor discover logic: It
|
|
|
|
|
plays the same role as ARP in IPv4; it ultimately just manages
|
|
|
|
|
a neighbor table that, like the arp table, provides the
|
|
|
|
|
mapping between IP addresses and node addresses.
|
|
|
|
|
|
2017-06-19 00:00:08 +02:00
|
|
|
|
The NuttX, Contiki-based 6LoWPAN implementation circumvented
|
2017-06-18 16:09:33 +02:00
|
|
|
|
the need for the neighbor discovery logic by using only MAC-
|
|
|
|
|
based addressing, i.e., the lower two or eight bytes of the
|
|
|
|
|
IP address are the node address.
|
|
|
|
|
|
2017-06-19 00:00:08 +02:00
|
|
|
|
Most of the 6LoWPAN compression algorithms exploit this to
|
2017-06-18 16:09:33 +02:00
|
|
|
|
compress the IPv6 address to nothing but a bit indicating
|
|
|
|
|
that the IP address derives from the node address. So I
|
2017-06-18 17:01:18 +02:00
|
|
|
|
think IPv6 neighbor discover is useless in the current
|
|
|
|
|
implementation.
|
2017-06-18 16:09:33 +02:00
|
|
|
|
|
2017-06-18 17:01:18 +02:00
|
|
|
|
If we want to use IPv6 neighbor discovery, we could dispense
|
2017-06-19 15:31:52 +02:00
|
|
|
|
with the all MAC based addressing. But if we want to retain
|
2017-06-18 17:01:18 +02:00
|
|
|
|
the more compact MAC-based addressing, then we don't need
|
|
|
|
|
IPv6 neighbor discovery.
|
2017-06-18 16:09:33 +02:00
|
|
|
|
|
|
|
|
|
So, the full neighbor discovery logic is not currently useful,
|
|
|
|
|
but it would still be nice to have enough in place to support
|
2017-06-18 17:01:18 +02:00
|
|
|
|
ping6. Full neighbor support would probably be necessary if we
|
|
|
|
|
wanted to route 6LoWPAN frames outside of the WPAN.
|
2017-06-18 16:09:33 +02:00
|
|
|
|
|
2017-06-17 22:10:37 +02:00
|
|
|
|
Status: Open
|
2017-06-18 16:09:33 +02:00
|
|
|
|
Priority: Low for now. I don't plan on implementing this. It would
|
|
|
|
|
only be relevant if we were to decide to abandon the use of
|
2017-06-19 00:00:08 +02:00
|
|
|
|
MAC-based addressing in the 6LoWPAN implementation.
|
2017-06-17 22:10:37 +02:00
|
|
|
|
|
|
|
|
|
Title: ETHERNET LOCAL BROADCAST DOES NOT WORK
|
|
|
|
|
Description: In case of "local broadcast" the system still send ARP
|
|
|
|
|
request to the destination, but it shouldn't, it should
|
|
|
|
|
broadcast. For Example, the system has network with IP
|
|
|
|
|
10.0.0.88, netmask of 255.255.255.0, it should send
|
|
|
|
|
messages for 10.0.0.255 as broadcast, and not send ARP
|
|
|
|
|
for 10.0.0.255
|
|
|
|
|
|
|
|
|
|
For more easier networking, the next line should have give
|
|
|
|
|
me the broadcast address of the network, but it doesn't:
|
|
|
|
|
|
|
|
|
|
ioctl(_socket_fd, SIOCGIFBRDADDR, &bc_addr);
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Medium
|
|
|
|
|
|
2017-10-25 20:37:02 +02:00
|
|
|
|
Title: TCP ISSUES WITH QUICK CLOSE
|
|
|
|
|
Description: This failure has been reported in the accept() logic:
|
|
|
|
|
|
|
|
|
|
- psock_tcp_accept() waits on net_lockedwait() below
|
|
|
|
|
- The accept operation completes, the socket is in the connected
|
|
|
|
|
state and psock_accept() is awakened. It cannot run,
|
|
|
|
|
however, because its priority is low and so it is blocked
|
|
|
|
|
from execution.
|
|
|
|
|
- In the mean time, the remote host sends a
|
2018-01-20 23:16:35 +01:00
|
|
|
|
packet which is presumably caught in the read-ahead buffer.
|
2017-10-25 20:37:02 +02:00
|
|
|
|
- Then the remote host closes the socket. Nothing happens on
|
|
|
|
|
the target side because net_start_monitor() has not yet been
|
|
|
|
|
called.
|
|
|
|
|
- Then accept() finally runs, but not with a connected but
|
|
|
|
|
rather with a disconnected socket. This fails when it
|
|
|
|
|
attempts to start the network monitor on the disconnected
|
|
|
|
|
socket below.
|
|
|
|
|
- It is also impossible to read the buffered TCP data from a
|
|
|
|
|
disconnected socket. The TCP recvfrom() logic would also
|
|
|
|
|
need to permit reading buffered data from a disconnected
|
|
|
|
|
socket.
|
|
|
|
|
|
|
|
|
|
This problem was report when the target hosted an FTP server
|
|
|
|
|
and files were being accessed by FileZilla.
|
|
|
|
|
|
|
|
|
|
connect() most likely has this same issue.
|
|
|
|
|
|
|
|
|
|
A work-around might be to raise the priority of the thread
|
2017-11-16 18:22:32 +01:00
|
|
|
|
that calls accept(). accept() might also need to check the
|
|
|
|
|
tcpstateflags in the connection structure before returning
|
|
|
|
|
in order to assure that the socket truly is connected.
|
2017-10-25 20:37:02 +02:00
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Medium. I have never heard of this problem being reported
|
2017-10-26 17:25:20 +02:00
|
|
|
|
before, so I suspect it might not be so prevalent as one
|
2017-10-25 20:37:02 +02:00
|
|
|
|
might expect.
|
|
|
|
|
|
2018-09-18 15:09:10 +02:00
|
|
|
|
Title: TCP SOCKETS CLOSED TOO QUICKLY
|
|
|
|
|
Description: When a socket is closed, the resources are torn down
|
|
|
|
|
immediately (unless the SO_LINGER option is selected). As a
|
|
|
|
|
result, the socket does not send the FIN and this looks like
|
|
|
|
|
an unexpected, abnormal loss of connection to the remote peer.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Medium-Low.
|
|
|
|
|
|
2017-11-01 16:13:15 +01:00
|
|
|
|
Title: LOCAL DATAGRAM RECVFROM RETURNS WRONG SENDER ADDRESS
|
|
|
|
|
Description: The recvfrom logic for local datagram sockets returns the
|
|
|
|
|
incorrect sender "from" address. Instead, it returns the
|
|
|
|
|
receiver's "to" address. This means that returning a reply
|
|
|
|
|
to the "from" address receiver sending a packet to itself.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Medium High. This makes using local datagram sockets in
|
|
|
|
|
anything but a well-known point-to-point configuration
|
|
|
|
|
impossible.
|
|
|
|
|
|
2011-03-04 17:24:51 +01:00
|
|
|
|
o USB (drivers/usbdev, drivers/usbhost)
|
2012-02-18 19:13:30 +01:00
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2007-12-13 17:52:37 +01:00
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: USB STORAGE DRIVER DELAYS
|
2010-04-10 03:32:29 +02:00
|
|
|
|
Description: There is a workaround for a bug in drivers/usbdev/usbdev_storage.c.
|
2012-03-24 14:57:04 +01:00
|
|
|
|
that involves delays. This needs to be redesigned to eliminate these
|
|
|
|
|
delays. See logic conditioned on CONFIG_USBMSC_RACEWAR.
|
2014-03-20 22:20:24 +01:00
|
|
|
|
|
2016-05-27 22:43:33 +02:00
|
|
|
|
If queuing of stall requests is supported by the DCD then this workaround
|
2014-03-20 22:20:24 +01:00
|
|
|
|
is not required. In this case, (1) the stall is not sent until all
|
|
|
|
|
write requests preceding the stall request are sent, (2) the stall is
|
|
|
|
|
sent, and then after the stall is cleared, (3) all write requests
|
|
|
|
|
queued after the stall are sent.
|
|
|
|
|
|
|
|
|
|
See, for example, the queuing of pending stall requests in the SAM3/4
|
2014-03-22 16:27:43 +01:00
|
|
|
|
UDP driver at arch/arm/src/sam34/sam_udp.c. There the logic is do this
|
|
|
|
|
is implemented with a normal request queue, a pending request queue, a
|
|
|
|
|
stall flag and a stall pending flag:
|
|
|
|
|
|
|
|
|
|
1) If the normal request queue is not empty when the STALL request is
|
|
|
|
|
received, the stall pending flag is set.
|
|
|
|
|
2) If addition write requests are received while the stall pending flag
|
|
|
|
|
is set (or while waiting for the stall to be sent), those write requests
|
|
|
|
|
go into the pending queue.
|
|
|
|
|
3) When the normal request queue empties successful and all of the write
|
|
|
|
|
transfers complete, the STALL is sent. The stall pending flag is
|
|
|
|
|
cleared and the stall flag is set. Now the endpoint is really stalled.
|
|
|
|
|
4) After the STALL is cleared (via the Clear Feature SETUP), the pending
|
|
|
|
|
request queue is copied to the normal request queue, the stall flag is
|
|
|
|
|
cleared, and normal write request processing resumes.
|
|
|
|
|
|
2010-04-10 03:32:29 +02:00
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Medium
|
|
|
|
|
|
2012-04-12 16:47:29 +02:00
|
|
|
|
Title: EP0 OUT CLASS DATA
|
|
|
|
|
Description: There is no mechanism in place to handle EP0 OUT data transfers.
|
|
|
|
|
There are two aspects to this problem, neither are easy to fix
|
|
|
|
|
(only because of the number of drivers that would be impacted):
|
|
|
|
|
|
|
|
|
|
1. The class drivers only send EP0 write requests and these are
|
|
|
|
|
only queued on EP0 IN by this drivers. There is never a read
|
|
|
|
|
request queued on EP0 OUT.
|
|
|
|
|
2. But EP0 OUT data could be buffered in a buffer in the driver
|
|
|
|
|
data structure. However, there is no method currently
|
|
|
|
|
defined in the USB device interface to obtain the EP0 data.
|
2012-04-12 18:30:48 +02:00
|
|
|
|
|
|
|
|
|
Updates: (1) The USB device-to-class interface as been extended so
|
|
|
|
|
that EP0 OUT data can accompany the SETUP request sent to the
|
|
|
|
|
class drivers. (2) The logic in the STM32 F4 OTG FS device driver
|
|
|
|
|
has been extended to provide this data. Updates are still needed
|
|
|
|
|
to other drivers.
|
2013-02-11 22:44:00 +01:00
|
|
|
|
|
|
|
|
|
Here is an overview of the required changes:
|
|
|
|
|
New two buffers in driver structure:
|
|
|
|
|
|
|
|
|
|
1. The existing EP0 setup request buffer (ctrlreq, 8 bytes)
|
|
|
|
|
2. A new EP0 data buffer to driver state structure (ep0data,
|
|
|
|
|
max packetsize)
|
|
|
|
|
|
|
|
|
|
Add a new state:
|
|
|
|
|
|
|
|
|
|
3. Waiting for EP0 setup OUT data (EP0STATE_SETUP_OUT)
|
|
|
|
|
|
|
|
|
|
General logic flow:
|
|
|
|
|
|
|
|
|
|
1. When an EP0 SETUP packet is received:
|
|
|
|
|
- Read the request into EP0 setup request buffer (ctrlreq,
|
|
|
|
|
8 bytes)
|
|
|
|
|
- If this is an OUT request with data length, set the EP0
|
|
|
|
|
state to EP0STATE_SETUP_OUT and wait to receive data on
|
|
|
|
|
EP0.
|
|
|
|
|
- Otherwise, the SETUP request may be processed now (or,
|
|
|
|
|
in the case of the F4 driver, at the conclusion of the
|
|
|
|
|
SETUP phase).
|
|
|
|
|
2. When EP0 the EP0 OUT DATA packet is received:
|
|
|
|
|
- Verify state is EP0STATE_SETUP_OUT
|
|
|
|
|
- Read the request into the EP0 data buffer (ep0data, max
|
|
|
|
|
packet size)
|
|
|
|
|
- Now process the previously buffered SETUP request along
|
|
|
|
|
with the OUT data.
|
|
|
|
|
3. When the setup packet is dispatched to the class driver,
|
|
|
|
|
the OUT data must be passed as the final parameter in the
|
|
|
|
|
call.
|
|
|
|
|
|
2013-09-02 22:55:33 +02:00
|
|
|
|
Update 2013-9-2: The new USB device-side driver for the SAMA5D3
|
|
|
|
|
correctly supports OUT SETUP data following the same design as
|
|
|
|
|
per above.
|
|
|
|
|
|
2013-11-08 00:25:05 +01:00
|
|
|
|
Update 2013-11-7: David Sidrane has fixed with issue with the
|
|
|
|
|
STM32 F1 USB device driver. Still a few more to go before this
|
|
|
|
|
can be closed out.
|
|
|
|
|
|
2012-04-12 16:47:29 +02:00
|
|
|
|
Status: Open
|
|
|
|
|
Priority: High for class drivers that need EP0 data. For example, the
|
|
|
|
|
CDC/ACM serial driver might need the line coding data (that
|
2014-01-14 21:06:02 +01:00
|
|
|
|
data is not used currently, but it might be).
|
2012-04-12 16:47:29 +02:00
|
|
|
|
|
2015-05-06 15:01:33 +02:00
|
|
|
|
Title: IMPROVED USAGE of STM32 USB RESOURCES
|
|
|
|
|
Description: The STM32 platforms use a non-standard, USB host peripheral
|
|
|
|
|
that uses "channels" to implement data transfers the current
|
|
|
|
|
logic associates each channel with an pipe/endpoint (with two
|
|
|
|
|
channels for bi-directional control endpoints). The OTGFS
|
|
|
|
|
peripheral has 8 channels and the OTGHS peripheral has 12
|
|
|
|
|
channels.
|
|
|
|
|
|
|
|
|
|
This works okay until you add a hub and try connect multiple
|
2015-06-14 22:27:58 +02:00
|
|
|
|
devices. A typical device will require 3-4 pipes and, hence,
|
2015-05-06 15:01:33 +02:00
|
|
|
|
4-5 channels. This effectively prevents using a hub with the
|
|
|
|
|
STM32 devices. This also applies to the EFM32 which uses the
|
|
|
|
|
same IP.
|
|
|
|
|
|
|
|
|
|
It should be possible to redesign the STM32 F4 OTGHS/OTGFS and
|
|
|
|
|
EFM32 host driver so that channels are dynamically assigned to
|
|
|
|
|
pipes as needed for individual transfers. Then you could have
|
|
|
|
|
more "apparent" pipes and make better use of channels.
|
|
|
|
|
Although there are only 8 or 12 channels, transfers are not
|
|
|
|
|
active all of the time on all channels so it ought to be
|
|
|
|
|
possible to have an unlimited number of "pipes" but with no
|
|
|
|
|
more than 8 or 12 active transfers.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Medium-Low
|
|
|
|
|
|
2015-05-09 16:23:11 +02:00
|
|
|
|
Title: USB CDC/ACM HOST CLASS DRIVER
|
2016-05-27 22:43:33 +02:00
|
|
|
|
Description: A CDC/ACM host class driver has been added. This has been
|
2015-05-09 16:23:11 +02:00
|
|
|
|
testing by running the USB CDC/ACM host on an Olimex
|
|
|
|
|
LPC1766STK and using the configs/stm3210e-eval/usbserial
|
|
|
|
|
configuration (using the CDC/ACM device side driver). There
|
|
|
|
|
are several unresolved issues that prevent the host driver
|
|
|
|
|
from being usable:
|
|
|
|
|
|
2015-05-10 16:16:58 +02:00
|
|
|
|
- The driver works fine when configured for reduced or bulk-
|
2017-03-08 15:34:31 +01:00
|
|
|
|
only protocol on the Olimex LPC1766STK.
|
2015-05-10 16:26:26 +02:00
|
|
|
|
|
2015-05-09 16:23:11 +02:00
|
|
|
|
- Testing has not been performed with the interrupt IN channel
|
|
|
|
|
enabled (ie., I have not enabled FLOW control nor do I have
|
|
|
|
|
a test case that used the interrupt IN channel). I can see
|
|
|
|
|
that the polling for interrupt IN data is occurring
|
|
|
|
|
initially.
|
2015-05-10 16:26:26 +02:00
|
|
|
|
|
2015-05-09 16:23:11 +02:00
|
|
|
|
- I test for incoming data by doing 'nsh> cat /dev/ttyACM0' on
|
|
|
|
|
the Olimex LPC1766STK host. The bulk data reception still
|
2018-10-08 22:45:00 +02:00
|
|
|
|
works okay whether or not the interrupt IN channel is enabled.
|
2015-05-09 16:23:11 +02:00
|
|
|
|
If the interrupt IN channel is enabled, then polling of that
|
|
|
|
|
channel appears to stop when the bulk in channel becomes
|
|
|
|
|
active.
|
2015-05-10 16:26:26 +02:00
|
|
|
|
|
2015-05-09 16:23:11 +02:00
|
|
|
|
- The RX reception logic uses the low priority work queue.
|
|
|
|
|
However, that logic never returns and so blocks other use of
|
|
|
|
|
the work queue thread. This is probably okay but means that
|
|
|
|
|
the RX reception logic probably should be moved to its own
|
|
|
|
|
dedicated thread.
|
2015-05-10 16:26:26 +02:00
|
|
|
|
|
2015-05-14 18:22:08 +02:00
|
|
|
|
- I get crashes when I run with the STM32 OTGHS host driver.
|
|
|
|
|
Apparently the host driver is trashing memory on receipt
|
|
|
|
|
of data.
|
|
|
|
|
|
2017-03-08 15:34:31 +01:00
|
|
|
|
UPDATE: This behavior needs to be retested with:
|
|
|
|
|
commit ce2845c5c3c257d081f624857949a6afd4a4668a
|
|
|
|
|
Author: Janne Rosberg <janne.rosberg@offcode.fi>
|
|
|
|
|
Date: Tue Mar 7 06:58:32 2017 -0600
|
|
|
|
|
|
|
|
|
|
usbhost_cdcacm: fix tx outbuffer overflow and remove now
|
|
|
|
|
invalid assert
|
|
|
|
|
|
|
|
|
|
commit 3331e9c49aaaa6dcc3aefa6a9e2c80422ffedcd3
|
|
|
|
|
Author: Janne Rosberg <janne.rosberg@offcode.fi>
|
|
|
|
|
Date: Tue Mar 7 06:57:06 2017 -0600
|
|
|
|
|
|
|
|
|
|
STM32 OTGHS host: stm32_in_transfer() fails and returns NAK
|
|
|
|
|
if a short transfer is received. This causes problems from
|
|
|
|
|
class drivers like CDC/ACM where short packets are expected.
|
|
|
|
|
In those protocols, any transfer may be terminated by sending
|
|
|
|
|
short or NUL packet.
|
|
|
|
|
|
|
|
|
|
commit 0631c1aafa76dbaa41b4c37e18db98be47b60481
|
|
|
|
|
Author: Gregory Nutt <gnutt@nuttx.org>
|
|
|
|
|
Date: Tue Mar 7 07:17:24 2017 -0600
|
|
|
|
|
|
|
|
|
|
STM32 OTGFS, STM32 L4 and F7: Adapt Janne Rosberg's patch to
|
|
|
|
|
STM32 OTGHS host to OTGFS host, and to similar implements for
|
|
|
|
|
L4 and F7.
|
|
|
|
|
|
2015-05-14 18:22:08 +02:00
|
|
|
|
- The SAMA5D EHCI and the LPC31 EHCI drivers both take semaphores
|
|
|
|
|
in the cancel method. The current CDC/ACM class driver calls
|
|
|
|
|
the cancel() method from an interrupt handler. This will
|
|
|
|
|
cause a crash. Those EHCI drivers should be redesigned to
|
|
|
|
|
permit cancellation from the interrupt level.
|
|
|
|
|
|
2015-05-10 16:16:58 +02:00
|
|
|
|
Most of these problems are unique to the Olimex LPC1766STK
|
|
|
|
|
DCD; some are probably design problems in the CDC/ACM host
|
|
|
|
|
driver. The bottom line is that the host CDC/ACM driver is
|
2015-05-10 18:23:23 +02:00
|
|
|
|
still immature and you could experience issues in some
|
|
|
|
|
configurations if you use it.
|
|
|
|
|
|
2018-10-08 22:45:00 +02:00
|
|
|
|
That all being said, I know of no issues with the current
|
2017-03-08 15:34:31 +01:00
|
|
|
|
CDC/ACM driver on the Olimex LPC1766STK platform if the interrupt
|
|
|
|
|
IN endpoint is not used, i.e., in "reduced" mode. The only loss
|
|
|
|
|
of functionality is output flow control.
|
|
|
|
|
|
|
|
|
|
UPDATE: The CDC/ACM class driver may also now be functional on
|
|
|
|
|
the STM32. That needs to be verified.
|
2015-05-10 18:23:23 +02:00
|
|
|
|
|
2015-05-09 16:23:11 +02:00
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Medium-Low unless you really need host CDC/ACM support.
|
|
|
|
|
|
2018-10-05 19:15:57 +02:00
|
|
|
|
o Libraries (libs/libc/, libs/libm/)
|
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2007-12-13 17:52:37 +01:00
|
|
|
|
|
2012-12-21 21:09:32 +01:00
|
|
|
|
Title: SIGNED time_t
|
|
|
|
|
Description: The NuttX time_t is type uint32_t. I think this is consistent
|
|
|
|
|
with all standards and with normal usage of time_t. However,
|
|
|
|
|
according to Wikipedia, time_t is usually implemented as a
|
|
|
|
|
signed 32-bit value.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Very low unless there is some compelling issue that I do not
|
|
|
|
|
know about.
|
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: ENVIRON
|
2007-12-13 17:52:37 +01:00
|
|
|
|
Description: The definition of environ in stdlib.h is bogus and will not
|
|
|
|
|
work as it should. This is because the underlying
|
2015-04-06 23:26:50 +02:00
|
|
|
|
representation of the environment is not an array of pointers.
|
2007-12-13 17:52:37 +01:00
|
|
|
|
Status: Open
|
2007-12-31 16:45:58 +01:00
|
|
|
|
Priority: Medium
|
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: TERMIOS
|
2008-11-18 15:54:43 +01:00
|
|
|
|
Description: Need some minimal termios support... at a minimum, enough to
|
|
|
|
|
switch between raw and "normal" modes to support behavior like
|
|
|
|
|
that needed for readline().
|
2018-10-05 19:15:57 +02:00
|
|
|
|
UPDATE: There is growing functionality in libs/libc/termios/
|
|
|
|
|
and in the ioctl methods of several MCU serial drivers (stm32,
|
|
|
|
|
lpc43, lpc17, pic32, and others). However, as phrased, this
|
|
|
|
|
bug cannot yet be closed since this "growing functionality"
|
|
|
|
|
does not address all termios.h functionality and not all
|
|
|
|
|
serial drivers support termios.
|
2008-11-18 15:54:43 +01:00
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low
|
2008-11-18 00:58:17 +01:00
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: RESETTING GETOPT()
|
2011-02-24 01:52:51 +01:00
|
|
|
|
Description: There is an issue with the way that getopt() handles errors that
|
|
|
|
|
return '?'.
|
2013-07-23 22:47:16 +02:00
|
|
|
|
|
2011-02-24 01:52:51 +01:00
|
|
|
|
1. Does getopt() reset its global variables after returning '?' so
|
|
|
|
|
that it can be re-used? That would be required to support where
|
|
|
|
|
the caller terminates parsing before reaching the last parameter.
|
|
|
|
|
2. Or is the client expected to continue parsing after getopt()
|
|
|
|
|
returns '?' and parse until the final parameter?
|
2013-07-23 22:47:16 +02:00
|
|
|
|
|
2011-02-24 01:52:51 +01:00
|
|
|
|
The current getopt() implementation only supports #2.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low
|
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: CONCURRENT STREAM READ/WRITE
|
2013-07-23 22:47:16 +02:00
|
|
|
|
Description: NuttX only supports a single file pointer so reads and writes
|
2011-09-13 21:04:13 +02:00
|
|
|
|
must be from the same position. This prohibits implementation
|
|
|
|
|
of behavior like that required for fopen() with the "a+" mode.
|
|
|
|
|
According to the fopen man page:
|
2013-07-23 22:47:16 +02:00
|
|
|
|
|
2011-09-13 21:04:13 +02:00
|
|
|
|
"a+ Open for reading and appending (writing at end of file).
|
|
|
|
|
The file is created if it does not exist. The initial file
|
|
|
|
|
position for reading is at the beginning of the file, but
|
|
|
|
|
output is always appended to the end of the file."
|
|
|
|
|
|
|
|
|
|
At present, the single NuttX file pointer is positioned to the
|
|
|
|
|
end of the file for both reading and writing.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Medium. This kind of operation is probably not very common in
|
|
|
|
|
deeply embedded systems but is required by standards.
|
|
|
|
|
|
2012-01-06 20:29:37 +01:00
|
|
|
|
Title: DIVIDE BY ZERO
|
|
|
|
|
Description: This is bug 3468949 on the SourceForge website (submitted by
|
|
|
|
|
Philipp Klaus Krause):
|
|
|
|
|
"lib_strtod.c does contain divisions by zero in lines 70 and 96.
|
|
|
|
|
AFAIK, unlike for Java, division by zero is not a reliable way to
|
|
|
|
|
get infinity in C. AFAIK compilers are allowed e.g. give a compile-
|
|
|
|
|
time error, and some, such as sdcc, do. AFAIK, C implementations
|
|
|
|
|
are not even required to support infinity. In C99 the macro isinf()
|
|
|
|
|
could replace the first use of division by zero. Unfortunately, the
|
2014-10-15 18:57:04 +02:00
|
|
|
|
macro INFINITY from math.h probably can't replace the second division
|
2012-01-06 20:29:37 +01:00
|
|
|
|
by zero, since it will result in a compile-time diagnostic, if the
|
|
|
|
|
implementation does not support infinity."
|
|
|
|
|
Status: Open
|
2013-07-23 22:47:16 +02:00
|
|
|
|
Priority:
|
2012-01-06 20:29:37 +01:00
|
|
|
|
|
2012-01-15 17:11:32 +01:00
|
|
|
|
Title: OLD dtoa NEEDS TO BE UPDATED
|
2018-10-05 19:15:57 +02:00
|
|
|
|
Description: This implementation of dtoa in libs/libc/stdio is old and will not
|
2013-07-23 22:47:16 +02:00
|
|
|
|
work with some newer compilers. See
|
2012-01-15 17:11:32 +01:00
|
|
|
|
http://patrakov.blogspot.com/2009/03/dont-use-old-dtoac.html
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: ??
|
|
|
|
|
|
2012-08-06 04:14:36 +02:00
|
|
|
|
Title: FLOATING POINT FORMATS
|
2017-02-15 16:32:42 +01:00
|
|
|
|
Description: Only the %f floating point format is supported. Others are
|
|
|
|
|
accepted but treated like %f.
|
2012-08-06 04:14:36 +02:00
|
|
|
|
Status: Open
|
2012-08-06 19:59:41 +02:00
|
|
|
|
Priority: Medium (this might important to someone).
|
|
|
|
|
|
|
|
|
|
Title: FLOATING POINT PRECISION
|
|
|
|
|
Description: A fieldwidth and precision is required with the %f format. If %f
|
|
|
|
|
is used with no format, than floating numbers will be printed with
|
|
|
|
|
a precision of 0 (effectively presented as integers).
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Medium (this might important to someone).
|
2012-08-06 04:14:36 +02:00
|
|
|
|
|
2014-12-29 14:25:44 +01:00
|
|
|
|
Title: LIBM INACCURACIES
|
|
|
|
|
Description: "..if you are writing something like robot control or
|
|
|
|
|
inertial navigation system for aircraft, I have found
|
|
|
|
|
that using the toolchain libmath is only safe option.
|
|
|
|
|
I ported some code for converting quaternions to Euler
|
|
|
|
|
angles to NuttX for my project and only got it working
|
|
|
|
|
after switching to newlib math library.
|
|
|
|
|
|
|
|
|
|
"NuttX does not fully implement IEC 60559 floating point
|
|
|
|
|
from C99 (sections marked [MX] in OpenGroup specs) so if
|
|
|
|
|
your code assumes that some function, say pow(), actually
|
|
|
|
|
behaves right for all the twenty or so odd corner cases
|
|
|
|
|
that the standards committees have recently specified,
|
|
|
|
|
you might get surprises. I'd expect pow(0.0, 1.0) to
|
|
|
|
|
return 0.0 (as zero raised to any positive power is
|
|
|
|
|
well-defined in mathematics) but I get +Inf.
|
|
|
|
|
|
|
|
|
|
"NuttX atan2(-0.0, -1.0) returns +M_PI instead of correct
|
|
|
|
|
-M_PI. If we expect [MX] functionality, then atan2(Inf, Inf)
|
|
|
|
|
should return M_PI/4, instead NuttX gives NaN.
|
|
|
|
|
|
|
|
|
|
"asin(2.0) does not set domain error or return NaN. In fact
|
|
|
|
|
it does not return at all as the loop in it does not
|
|
|
|
|
converge, hanging your app.
|
|
|
|
|
|
2015-09-01 16:45:14 +02:00
|
|
|
|
"There are likely many other issues like these as the Rhombus
|
2014-12-29 14:25:44 +01:00
|
|
|
|
OS code has not been tested or used that much. Sorry for not
|
|
|
|
|
providing patches, but we found it easier just to switch the
|
|
|
|
|
math library."
|
|
|
|
|
|
2015-09-01 16:45:14 +02:00
|
|
|
|
UPDATE: 2015-09-01: A fix for the noted problems with asin()
|
|
|
|
|
has been applied.
|
2016-07-31 19:09:02 +02:00
|
|
|
|
2016-07-30: Numerous fixes and performance improvements from
|
|
|
|
|
David Alessio.
|
2015-09-01 16:45:14 +02:00
|
|
|
|
|
2016-12-10 00:38:18 +01:00
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low for casual users but clearly high if you need care about
|
2014-12-29 16:45:18 +01:00
|
|
|
|
these incorrect corner case behaviors in the math libraries.
|
2014-12-29 14:25:44 +01:00
|
|
|
|
|
2017-02-15 16:32:42 +01:00
|
|
|
|
Title: REPARTITION LIBC FUNCTIONALITY
|
2016-12-10 00:38:18 +01:00
|
|
|
|
Description: There are many things implemented within the kernel (for example
|
|
|
|
|
under sched/pthread) that probably should be migrated in the
|
|
|
|
|
C library where it belongs.
|
2016-12-10 14:12:11 +01:00
|
|
|
|
|
|
|
|
|
I would really like to see a little flavor of a micro-kernel
|
|
|
|
|
at the OS interface: I would like to see more primitive OS
|
|
|
|
|
system calls with more higher level logic in the C library.
|
|
|
|
|
|
2017-01-11 14:42:15 +01:00
|
|
|
|
One awkward thing is the incompatibility of KERNEL vs FLAT
|
2016-12-10 14:12:11 +01:00
|
|
|
|
builds: In the kernel build, it would be nice to move many
|
|
|
|
|
of the thread-specific data items out of the TCB and into
|
|
|
|
|
the process address environment where they belong. It is
|
|
|
|
|
difficult to make this compatible with the FLAT build,
|
|
|
|
|
however.
|
|
|
|
|
Status: Open
|
2016-12-10 00:38:18 +01:00
|
|
|
|
Priority: Low
|
|
|
|
|
|
2008-02-08 01:56:16 +01:00
|
|
|
|
o File system / Generic drivers (fs/, drivers/)
|
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2007-12-13 17:52:37 +01:00
|
|
|
|
|
2011-05-02 03:30:30 +02:00
|
|
|
|
NOTE: The NXFFS file system has its own TODO list at nuttx/fs/nxffs/README.txt
|
|
|
|
|
|
2017-02-13 19:05:33 +01:00
|
|
|
|
Title: MISSING FILE SYSTEM FEATURES
|
|
|
|
|
Description: Implement missing file system features:
|
2017-02-12 19:10:46 +01:00
|
|
|
|
|
|
|
|
|
chmod() is probably not relevant since file modes are not
|
|
|
|
|
currently supported.
|
|
|
|
|
|
2017-02-13 19:05:33 +01:00
|
|
|
|
File privileges would also be good to support. But this is
|
|
|
|
|
really a small part of a much larger feature. NuttX has no
|
|
|
|
|
user IDs, there are no groups, there are no privileges
|
|
|
|
|
associated with either. User's don't need credentials.
|
|
|
|
|
This is really a system wide issues of which chmod is only
|
|
|
|
|
a small part.
|
|
|
|
|
|
|
|
|
|
User privileges never seemed important to me since NuttX is
|
|
|
|
|
intended for deeply embedded environments where there are
|
|
|
|
|
not multiple users with varying levels of trust.
|
|
|
|
|
|
|
|
|
|
link, unlink, softlink, readlink - For symbolic links. Only
|
|
|
|
|
the ROMFS file system currently supports hard and soft links,
|
2018-09-05 19:56:14 +02:00
|
|
|
|
so this is not too important. The top-level, pseudo-file
|
2018-01-03 15:32:57 +01:00
|
|
|
|
system supports soft links.
|
2017-02-13 19:05:33 +01:00
|
|
|
|
|
|
|
|
|
File locking
|
|
|
|
|
|
|
|
|
|
Special files - NuttX support special files only in the top-
|
|
|
|
|
level pseudo file system. Unix systems support many
|
|
|
|
|
different special files via mknod(). This would be
|
|
|
|
|
important only if it is an objective of NuttX to become a
|
|
|
|
|
true Unix OS. Again only supported by ROMFS.
|
|
|
|
|
|
|
|
|
|
True inodes - Standard Unix inodes. Currently only supported
|
|
|
|
|
by ROMFs.
|
2017-02-12 19:10:46 +01:00
|
|
|
|
|
2018-01-03 15:32:57 +01:00
|
|
|
|
File times, for example as set by utimes().
|
|
|
|
|
|
2017-02-12 19:10:46 +01:00
|
|
|
|
The primary obstacle to all these is that each would require
|
|
|
|
|
changes to all existing file systems. That number is pretty
|
|
|
|
|
large. The number of file system implementations that would
|
|
|
|
|
need to be reviewed and modified As of this writing this
|
|
|
|
|
would include binfs, fat, hostfs, nfs, nxffs, procfs, romfs,
|
|
|
|
|
tmpfs, unionfs, plus pseduo-file system support.
|
|
|
|
|
|
2007-12-13 17:52:37 +01:00
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low
|
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: ROMFS CHECKSUMS
|
2008-09-12 17:54:20 +02:00
|
|
|
|
Description: The ROMFS file system does not verify checksums on either
|
|
|
|
|
volume header on on the individual files.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low. I have mixed feelings about if NuttX should pay a
|
|
|
|
|
performance penalty for better data integrity.
|
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: SPI-BASED SD MULTIPLE BLOCK TRANSFERS
|
2008-11-11 23:01:06 +01:00
|
|
|
|
Description: The simple SPI based MMCS/SD driver in fs/mmcsd does not
|
|
|
|
|
yet handle multiple block transfers.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Medium-Low
|
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: SDIO-BASED SD READ-AHEAD/WRITE BUFFERING INCOMPLETE
|
2009-12-06 01:19:50 +01:00
|
|
|
|
Description: The drivers/mmcsd/mmcsd_sdio.c driver has hooks in place to
|
|
|
|
|
support read-ahead buffering and write buffering, but the logic
|
|
|
|
|
is incomplete and untested.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low
|
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: POLLHUP SUPPORT
|
2011-12-03 17:13:40 +01:00
|
|
|
|
Description: All drivers that support the poll method should also report
|
2014-10-15 18:57:04 +02:00
|
|
|
|
POLLHUP event when the driver is closed.
|
2011-12-03 17:13:40 +01:00
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Medium-Low
|
|
|
|
|
|
2012-02-13 02:42:03 +01:00
|
|
|
|
Title: CONFIG_RAMLOG_CONSOLE DOES NOT WORK
|
2012-02-12 21:27:49 +01:00
|
|
|
|
Description: When I enable CONFIG_RAMLOG_CONSOLE, the system does not come up
|
2014-01-14 21:06:02 +01:00
|
|
|
|
properly (using configuration stm3240g-eval/nsh2). The problem
|
|
|
|
|
may be an assertion that is occurring before we have a console.
|
2012-02-12 21:27:49 +01:00
|
|
|
|
Status: Open
|
2012-02-13 02:42:03 +01:00
|
|
|
|
Priority: Medium
|
2012-02-12 21:27:49 +01:00
|
|
|
|
|
2013-10-25 22:19:09 +02:00
|
|
|
|
Title: UNIFIED DESCRIPTOR REPRESENTATION
|
2016-05-27 22:43:33 +02:00
|
|
|
|
Description: There are two separate ranges of descriptors for file and
|
2013-10-25 22:19:09 +02:00
|
|
|
|
socket descriptors: if a descriptor is in one range then it is
|
|
|
|
|
recognized as a file descriptor; if it is in another range
|
|
|
|
|
then it is recognized as a socket descriptor. These separate
|
|
|
|
|
descriptor ranges can cause problems, for example, they makes
|
|
|
|
|
dup'ing descriptors with dup2() problematic. The two groups
|
|
|
|
|
of descriptors are really indices into two separate tables:
|
|
|
|
|
On an array of file structures and the other an array of
|
|
|
|
|
socket structures. There really should be one array that
|
|
|
|
|
is a union of file and socket descriptors. Then socket and
|
2014-10-15 18:57:04 +02:00
|
|
|
|
file descriptors could lie in the same range.
|
2016-07-20 18:45:21 +02:00
|
|
|
|
|
|
|
|
|
Another example of how the current implementation limits
|
2017-02-14 14:48:54 +01:00
|
|
|
|
functionality: I recently started to implement of the FILEMAX
|
2016-07-20 18:45:21 +02:00
|
|
|
|
(using pctl() instead sysctl()). My objective was to be able
|
|
|
|
|
to control the number of available file descriptors on a task-
|
|
|
|
|
by-task basis. The complexity due to the partitioning of
|
2018-01-21 14:47:13 +01:00
|
|
|
|
descriptor space in a range for file descriptors and a range
|
2016-07-20 18:45:21 +02:00
|
|
|
|
for socket descriptors made this feature nearly impossible to
|
|
|
|
|
implement.
|
2013-10-25 22:19:09 +02:00
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low
|
|
|
|
|
|
2014-01-14 21:06:02 +01:00
|
|
|
|
Title: DUPLICATE FAT FILE NAMES
|
|
|
|
|
Description: "The NSH and POSIX API interpretations about sensitivity or
|
|
|
|
|
insensitivity to upper/lowercase file names seem to be not
|
|
|
|
|
consistent in our usage - which can result in creating two
|
|
|
|
|
directories with the same name..."
|
2014-01-16 14:30:15 +01:00
|
|
|
|
|
|
|
|
|
Example using NSH:
|
|
|
|
|
|
|
|
|
|
nsh> echo "Test1" >/tmp/AtEsT.tXt
|
|
|
|
|
nsh> echo "Test2" >/tmp/aTeSt.TxT
|
|
|
|
|
nsh> ls /tmp
|
|
|
|
|
/tmp:
|
|
|
|
|
AtEsT.tXt
|
|
|
|
|
aTeSt.TxT
|
|
|
|
|
nsh> cat /tmp/aTeSt.TxT
|
2014-04-14 00:22:22 +02:00
|
|
|
|
Test2
|
2014-01-16 14:30:15 +01:00
|
|
|
|
nsh> cat /tmp/AtEsT.tXt
|
2014-04-14 00:22:22 +02:00
|
|
|
|
Test1
|
2014-01-16 14:30:15 +01:00
|
|
|
|
|
2014-01-14 21:06:02 +01:00
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low
|
|
|
|
|
|
2015-03-15 19:22:12 +01:00
|
|
|
|
Title: MISSING FILES IN NSH 'LS' OF A DIRECTORY
|
|
|
|
|
Description: I have seen cases where (1) long file names are enabled,
|
|
|
|
|
but (2) a short file name is created like:
|
|
|
|
|
|
2016-05-27 22:43:33 +02:00
|
|
|
|
nsh> echo "This is another test" >/mnt/sdcard/another.txt
|
2015-03-15 19:22:12 +01:00
|
|
|
|
|
|
|
|
|
But then on subsequent 'ls' operations, the file does not appear:
|
|
|
|
|
|
|
|
|
|
nsh> ls -l /mnt/sdcard
|
|
|
|
|
|
|
|
|
|
I have determined that the problem is because, for some as-
|
2018-10-08 22:45:00 +02:00
|
|
|
|
of-yet-unknown reason the short file name is treated as a long
|
2015-03-15 19:22:12 +01:00
|
|
|
|
file name. The name then fails the long filename checksum
|
|
|
|
|
test and is skipped.
|
|
|
|
|
|
|
|
|
|
readdir() (and fat_readdir()) is the logic underlying the
|
|
|
|
|
failure and the problem appears to be something unique to the
|
|
|
|
|
fat_readdir() implementation. Why? Because the file is
|
|
|
|
|
visible when you put the SD card on a PC and because this
|
|
|
|
|
works fine:
|
|
|
|
|
|
|
|
|
|
nsh> ls -l /mnt/sdcard/another.txt
|
|
|
|
|
|
|
|
|
|
The failure does not happen on all short file names. I do
|
|
|
|
|
not understand the pattern. But I have not had the opportunity
|
|
|
|
|
to dig into this deeply.
|
|
|
|
|
Status: Open
|
2015-03-16 15:49:39 +01:00
|
|
|
|
Priority: Perhaps not a problem??? I have analyzed this problem and
|
|
|
|
|
I am not sure what to do about it. I am suspected that a
|
|
|
|
|
fat filesystem was used with a version of NuttX that does
|
|
|
|
|
not support long file name entries. Here is the failure
|
|
|
|
|
scenario:
|
|
|
|
|
|
|
|
|
|
1) A file with a long file name is created under Windows.
|
|
|
|
|
2) Then the file is deleted. I am not sure if Windows or
|
|
|
|
|
NuttX deleted the file, but the resulting directory
|
|
|
|
|
content is not compatible with NuttX with long file
|
|
|
|
|
name support.
|
|
|
|
|
|
|
|
|
|
The file deletion left the full sequence of long
|
|
|
|
|
file name entries intact but apparently delete only
|
|
|
|
|
the following short file name entry. I am thinking
|
|
|
|
|
that this might have happened because a version of NuttX
|
|
|
|
|
with only short file name support was used to delete
|
|
|
|
|
the file.
|
|
|
|
|
|
|
|
|
|
3) When a new file with a short file name was created, it
|
|
|
|
|
re-used the short file name entry that was previously
|
|
|
|
|
deleted. This makes the new short file name entry
|
|
|
|
|
look like a part of the long file name.
|
|
|
|
|
|
|
|
|
|
4) When comparing the checksum in the long file name
|
|
|
|
|
entry with the checksum of the short file name, the
|
2016-05-27 22:43:33 +02:00
|
|
|
|
checksum fails and the entire directory sequence is
|
2018-01-21 14:47:13 +01:00
|
|
|
|
ignored by readdir() logic. This is why the file does
|
|
|
|
|
not appear in the 'ls'.
|
2015-03-15 19:22:12 +01:00
|
|
|
|
|
2018-09-29 23:04:11 +02:00
|
|
|
|
Title: SILENT SPIFFS FILE TRUNCATION
|
|
|
|
|
Description: Under certain corner case conditions, SPIFFS will truncate
|
|
|
|
|
files. All of the writes to the file will claim that the
|
|
|
|
|
data has been written but after the file is closed, it may
|
|
|
|
|
be a little shorter than expected.
|
|
|
|
|
|
|
|
|
|
This is due to how the caching is implemented in SPIFFS:
|
|
|
|
|
|
|
|
|
|
1. On each write, the data is not written to the FLASH but
|
|
|
|
|
rather to an internal cache in memory.
|
|
|
|
|
2. When the a write causes the cache to become full, the
|
|
|
|
|
content of cache is flushed to memory. If that flush
|
|
|
|
|
fails because the FLASH has become full, write will
|
|
|
|
|
return the file system full error (ENOSPC).
|
|
|
|
|
3. The cache is also flushed when the file is closed (or
|
|
|
|
|
when fsync() is called). These will also fail if the
|
|
|
|
|
file system becomes full.
|
|
|
|
|
|
|
|
|
|
The problem is when the file is closed, the final file
|
|
|
|
|
size could be smaller than the number of successful writes
|
|
|
|
|
to the file.
|
|
|
|
|
|
|
|
|
|
This error is probably not so significant in a real world
|
2018-09-30 01:19:04 +02:00
|
|
|
|
file system usage: It requires that you write continuously
|
|
|
|
|
to SPIFFS, never deleting files or freeing FLASH resources
|
|
|
|
|
in any way. And it requires the unlikely circumstance that
|
|
|
|
|
the final file written has its last few hundred bytes in
|
|
|
|
|
cache when the file is closed but there are even fewer bytes
|
|
|
|
|
available on the FLASH. That would be rare with a cache
|
|
|
|
|
size of a few hundred bytes and very large serial FLASH.
|
|
|
|
|
|
|
|
|
|
This issue does cause the test at apps/examples/fstest to
|
|
|
|
|
fail. That test fails with a "Partial Read" because the
|
|
|
|
|
file being read is smaller than number bytes written to the
|
|
|
|
|
file. That test does write small files continuously until
|
|
|
|
|
file system is full and even the the error is rare. The
|
|
|
|
|
configs/sim/spiffs test can used to demonstrate the error.
|
2018-09-29 23:04:11 +02:00
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Medium. It is certain a file system failure, but I think that
|
|
|
|
|
the exposure in real world uses cases is very small.
|
|
|
|
|
|
2016-10-09 17:36:03 +02:00
|
|
|
|
o Graphics Subsystem (graphics/)
|
2008-12-06 17:08:07 +01:00
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2012-05-21 19:36:26 +02:00
|
|
|
|
See also the NxWidgets TODO list file for related issues.
|
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: UNTESTED GRAPHICS APIS
|
2008-12-06 17:08:07 +01:00
|
|
|
|
Description: Testing of all APIs is not complete. See
|
|
|
|
|
http://nuttx.sourceforge.net/NXGraphicsSubsystem.html#testcoverage
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Medium
|
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: ITALIC FONTS / NEGATIVE FONT OFFSETS
|
2011-07-27 07:02:58 +02:00
|
|
|
|
Description: Font metric structure (in include/nuttx/nx/nxfont.h) should allow
|
|
|
|
|
negative X offsets. Negative x-offsets are necessary for certain
|
|
|
|
|
glyphs (and is very common in italic fonts).
|
|
|
|
|
For example Eth, icircumflex, idieresis, and oslash should have
|
2011-08-04 03:25:58 +02:00
|
|
|
|
offset=1 in the 40x49b font (these missing negative offsets are
|
|
|
|
|
NOTE'ed in the font header files).
|
2011-07-27 07:02:58 +02:00
|
|
|
|
Status: Open. The problem is that the x-offset is an unsigned bitfield
|
|
|
|
|
in the current structure.
|
|
|
|
|
Priority: Low.
|
|
|
|
|
|
2012-05-15 18:40:43 +02:00
|
|
|
|
Title: RAW WINDOW AUTORAISE
|
|
|
|
|
Description: Auto-raise only applies to NXTK windows. Shouldn't it also apply
|
|
|
|
|
to raw windows as well?
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low
|
|
|
|
|
|
|
|
|
|
Title: AUTO-RAISE DISABLED
|
2012-05-21 19:36:26 +02:00
|
|
|
|
Description: Auto-raise is currently disabled in NX multi-server mode. The
|
2012-05-15 18:40:43 +02:00
|
|
|
|
reason is complex:
|
|
|
|
|
- Most touchscreen controls send touch data a high rates
|
|
|
|
|
- In multi-server mode, touch events get queued in a message
|
|
|
|
|
queue.
|
|
|
|
|
- The logic that receives the messages performs the auto-raise.
|
|
|
|
|
But it can do stupid things after the first auto-raise as
|
2014-01-14 21:06:02 +01:00
|
|
|
|
it operates on the stale data in the message queue.
|
2012-05-15 18:40:43 +02:00
|
|
|
|
I am thinking that auto-raise ought to be removed from NuttX
|
|
|
|
|
and moved out into a graphics layer (like NxWM) that knows
|
|
|
|
|
more about the appropriate context to do the autoraise.
|
|
|
|
|
Status: Open
|
2012-05-15 22:10:32 +02:00
|
|
|
|
Priority: Medium low
|
2012-05-15 18:40:43 +02:00
|
|
|
|
|
2014-09-20 23:01:50 +02:00
|
|
|
|
Title: NxTERM VT100 SUPPORT
|
|
|
|
|
Description: If the NxTerm will be used with the Emacs-like command line
|
2014-07-30 22:26:50 +02:00
|
|
|
|
editor (CLE), then it will need to support VT100 cursor control
|
|
|
|
|
commands.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low, the need has not yet arisen.
|
|
|
|
|
|
2014-12-29 18:03:33 +01:00
|
|
|
|
Title: PER-WINDOW FRAMEBUFFERS
|
2016-05-27 22:43:33 +02:00
|
|
|
|
Description: One of the most awkward things to handle in the NX windowing
|
2014-12-29 18:03:33 +01:00
|
|
|
|
system is the re-draw callback. This is difficult because it
|
|
|
|
|
requires ad hoc, custom logic to be able to do the redrawing
|
|
|
|
|
in most cases.
|
|
|
|
|
|
|
|
|
|
One solution would be to provide a per-window framebuffer.
|
|
|
|
|
All rending would be performed into the per-window framebuffer
|
|
|
|
|
and the rended bits would be copied the LCD or framebuffer
|
|
|
|
|
device memory on demand when the redraw is required.
|
|
|
|
|
|
|
|
|
|
This would (a) greatly simplify the graphics interface, (b)
|
|
|
|
|
greatly improve redraw performance, and (c) enable a more
|
|
|
|
|
generic use of the windowing. The downside would be a large
|
|
|
|
|
usage of memory to hold all of the framebuffers, one for each
|
|
|
|
|
window.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low, of mostly strategic value.
|
|
|
|
|
|
2015-08-06 18:28:34 +02:00
|
|
|
|
Title: VERTICAL ANTI-ALIASING
|
|
|
|
|
Description: Anti-aliasing is implemented along the horizontal raster line
|
|
|
|
|
with fractional pixels at the ends of each line. There is no
|
|
|
|
|
accounting for fractional pixels in the vertical direction.
|
|
|
|
|
As a result lines closer to vertical receive better anti-
|
|
|
|
|
aliasing than lines closer to horizontal.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low, not a serious issue but worth noting. There is no plan
|
|
|
|
|
to change this behavior.
|
2015-11-27 19:33:58 +01:00
|
|
|
|
|
2017-10-15 17:50:31 +02:00
|
|
|
|
Title: WIDE-FONT SUPPORT
|
2017-06-17 22:10:37 +02:00
|
|
|
|
Description: Wide fonts are not currently supported by the NuttX graphics sub-
|
2018-04-16 01:15:48 +02:00
|
|
|
|
system.
|
2017-06-17 22:10:37 +02:00
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low for many, but I imagine higher in countries that use wide fonts
|
|
|
|
|
|
2018-10-08 22:45:00 +02:00
|
|
|
|
Title: LOW-RES FRAMEBUFFER RENDERING
|
|
|
|
|
Description: There are obvious issues in the low-res, < 8 BPP, implementation of
|
2018-01-21 14:47:13 +01:00
|
|
|
|
the framebuffer rendering logic of graphics/nxglib/fb. I see two
|
2017-11-27 23:33:31 +01:00
|
|
|
|
obvious problems in reviewing nxglib_copyrectangle():
|
|
|
|
|
|
|
|
|
|
1. The masking logic might work 1 BPP, but is insufficient for other
|
|
|
|
|
resolutions like 2-BPP and 4-BPP.
|
|
|
|
|
2. The use of lnlen will not handle multiple bits per pixel. It
|
|
|
|
|
would need to be converted to a byte count.
|
|
|
|
|
|
|
|
|
|
The function PDC_copy_glyph() in the file apps/graphics/pdcurs34/nuttx/pdcdisp.c
|
|
|
|
|
derives from nxglib_copyrectangle() and all of those issues have been
|
|
|
|
|
resolved in that file.
|
|
|
|
|
|
2018-01-21 14:47:13 +01:00
|
|
|
|
Other frambuffer rendering functions probably have similar issues.
|
2017-11-27 23:33:31 +01:00
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low. It is not surprising that there would be bugs in this logic:
|
|
|
|
|
I have never encountered a hardware framebuffer with sub-byte pixel
|
|
|
|
|
depth. If such a beast ever shows up, then this priority would be
|
|
|
|
|
higher.
|
|
|
|
|
|
2007-03-21 18:21:26 +01:00
|
|
|
|
o Build system
|
2007-12-13 17:52:37 +01:00
|
|
|
|
^^^^^^^^^^^^
|
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: MAKE EXPORT LIMITATIONS
|
2011-07-12 00:52:51 +02:00
|
|
|
|
Description: The top-level Makefile 'export' target that will bundle up all of the
|
|
|
|
|
NuttX libraries, header files, and the startup object into an export-able
|
|
|
|
|
tarball. This target uses the tools/mkexport.sh script. Issues:
|
|
|
|
|
|
|
|
|
|
1. This script assumes the host archiver ar may not be appropriate for
|
|
|
|
|
non-GCC toolchains
|
2011-08-07 18:34:39 +02:00
|
|
|
|
2. For the kernel build, the user libraries should be built into some
|
2011-07-12 00:52:51 +02:00
|
|
|
|
libuser.a. The list of user libraries would have to accepted with
|
|
|
|
|
some new argument, perhaps -u.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low.
|
|
|
|
|
|
2016-01-03 18:59:43 +01:00
|
|
|
|
o Other drivers (drivers/)
|
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2018-03-04 14:30:50 +01:00
|
|
|
|
Title: SYSLOG OUTPUT LOST ON A CRASH
|
2018-09-18 15:09:10 +02:00
|
|
|
|
Description: Flush syslog output on crash. I don't know how to do in the
|
2018-03-04 14:30:50 +01:00
|
|
|
|
character driver case with interrupts disabled. It would be
|
|
|
|
|
easy to flush the interrupt interrupt buffer, but not the
|
|
|
|
|
data buffered within a character driver (such as the serial
|
|
|
|
|
driver).
|
|
|
|
|
|
|
|
|
|
Perhaps there could be a crash dump IOCTL command to flush
|
|
|
|
|
that buffered data with interrupts disabled?
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low. It would be a convenience and would simplify crash
|
|
|
|
|
debug if you could see all of the SYSLOG output up to the
|
|
|
|
|
time of the crash. But not essential.
|
|
|
|
|
|
2018-09-18 15:09:10 +02:00
|
|
|
|
Title: SERIAL DRIVER WITH DMA DOES NOT DISCARD OOB CHARACTERS
|
|
|
|
|
Description: If Ctrl-Z or Ctrl-C actions are enabled, the the OOB
|
|
|
|
|
character that generates the signal action must not be placed
|
|
|
|
|
in the serial driver Rx buffer. This behavior is correct for
|
|
|
|
|
the non-DMA case (serial_io.c), but not for the DMA case
|
|
|
|
|
(serial_dma.c). In the DMA case, the OOB character is left
|
|
|
|
|
in the Rx buffer and will be received as normal Rx data by
|
|
|
|
|
the application. It should not work that way.
|
|
|
|
|
|
|
|
|
|
Perhaps in the DMA case, the OOB characters could be filtered
|
|
|
|
|
out later, just before returning the Rx data to the application?
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low, provided that the application can handle these characters
|
|
|
|
|
in the data stream.
|
|
|
|
|
|
2008-11-18 15:54:43 +01:00
|
|
|
|
o Linux/Cywgin simulation (arch/sim)
|
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2014-10-03 18:20:19 +02:00
|
|
|
|
Title: SIMULATOR HAS NO INTERRUPTS (NON-PREMPTIBLE)
|
|
|
|
|
Description: The current simulator implementation is has no interrupts and, hence,
|
2014-10-15 18:57:04 +02:00
|
|
|
|
is non-preemptible. Also, without simulated interrupt, there can
|
2014-10-03 18:20:19 +02:00
|
|
|
|
be no high-fidelity simulated device drivers.
|
|
|
|
|
|
|
|
|
|
Currently, all timing and serial input is simulated in the IDLE loop:
|
|
|
|
|
When nothing is going on in the simulation, the IDLE loop runs and
|
|
|
|
|
fakes timer and UART events.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low, unless there is a need for developing a higher fidelity simulation
|
|
|
|
|
I have been thinking about how to implement simulated interrupts in
|
2014-10-03 19:21:35 +02:00
|
|
|
|
the simulation. I think a solution would work like this:
|
|
|
|
|
http://www.nuttx.org/doku.php?id=wiki:nxinternal:simulator
|
2014-10-03 18:20:19 +02:00
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: ROUND-ROBIN SCHEDULING IN THE SIMULATOR
|
2011-02-10 21:15:42 +01:00
|
|
|
|
Description: Since the simulation is not pre-emptible, you can't use round-robin
|
|
|
|
|
scheduling (no time slicing). Currently, the timer interrupts are
|
|
|
|
|
"faked" during IDLE loop processing and, as a result, there is no
|
2014-01-14 21:06:02 +01:00
|
|
|
|
task pre-emption because there are no asynchronous events. This could
|
2010-07-28 17:01:28 +02:00
|
|
|
|
probably be fixed if the "timer interrupt" were driver by Linux
|
2016-02-14 23:19:15 +01:00
|
|
|
|
signals. NOTE: You would also have to implement up_irq_save() and
|
|
|
|
|
up_irq_restore() to block and (conditionally) unblock the signal.
|
2010-07-28 17:01:28 +02:00
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low
|
2013-07-23 22:47:16 +02:00
|
|
|
|
|
2016-02-19 13:52:41 +01:00
|
|
|
|
Title: SMP SIMULATION ISSUES
|
2016-02-18 15:34:11 +01:00
|
|
|
|
Description: The configuration has basic support SMP testing. The simulation
|
|
|
|
|
supports the emulation of multiple CPUs by creating multiple
|
|
|
|
|
pthreads, each run a copy of the simulation in the same process
|
|
|
|
|
address space.
|
|
|
|
|
|
2016-02-19 13:52:41 +01:00
|
|
|
|
At present, the SMP simulation is not fully functional: It does
|
|
|
|
|
operate on the simulated CPU threads for a few context switches
|
|
|
|
|
then fails during a setjmp() operation. I suspect that this is
|
|
|
|
|
not an issue with the NuttX SMP logic but more likely some chaos
|
2016-02-19 17:01:15 +01:00
|
|
|
|
in the pthread controls. I have seen similar such strange behavior
|
|
|
|
|
other times that I have tried to use setjmp/longmp from a signal
|
2016-02-19 22:34:36 +01:00
|
|
|
|
handler! Like when I tried to implement simulated interrupts
|
|
|
|
|
using signals.
|
|
|
|
|
|
|
|
|
|
Apparently, if longjmp is invoked from the context of a signal
|
|
|
|
|
handler, the result is undefined:
|
|
|
|
|
http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1318.htm
|
2016-02-18 15:34:11 +01:00
|
|
|
|
|
2016-02-19 13:52:41 +01:00
|
|
|
|
You can enable SMP for ostest configuration by enabling:
|
2016-02-18 15:34:11 +01:00
|
|
|
|
|
|
|
|
|
-# CONFIG_EXPERIMENTAL is not set
|
|
|
|
|
+CONFIG_EXPERIMENTAL=y
|
|
|
|
|
|
|
|
|
|
+CONFIG_SPINLOCK=y
|
|
|
|
|
+CONFIG_SMP=y
|
|
|
|
|
+CONFIG_SMP_NCPUS=2
|
|
|
|
|
+CONFIG_SMP_IDLETHREAD_STACKSIZE=2048
|
|
|
|
|
|
2016-02-19 13:52:41 +01:00
|
|
|
|
You also must enable near-realtime-performance otherwise even long
|
|
|
|
|
timeouts will expire before a CPU thread even has a chance to
|
|
|
|
|
execute.
|
|
|
|
|
|
|
|
|
|
-# CONFIG_SIM_WALLTIME is not set
|
|
|
|
|
+CONFIG_SIM_WALLTIME=y
|
|
|
|
|
|
2016-02-18 15:34:11 +01:00
|
|
|
|
And you can enable some additional debug output with:
|
|
|
|
|
|
|
|
|
|
-# CONFIG_DEBUG_SCHED is not set
|
|
|
|
|
+CONFIG_DEBUG_SCHED=y
|
|
|
|
|
|
|
|
|
|
-# CONFIG_SCHED_INSTRUMENTATION is not set
|
|
|
|
|
+CONFIG_SCHED_INSTRUMENTATION=y
|
|
|
|
|
|
2016-02-19 13:52:41 +01:00
|
|
|
|
The NSH configuration can also be forced to run SMP, but
|
|
|
|
|
suffers from the same quirky behavior. I can be made
|
|
|
|
|
reliable if you modify arch/sim/src/up_idle.c so that
|
|
|
|
|
the IDLE loop only runs for CPU0. Otherwise, often
|
|
|
|
|
simuart_post() will be called from CPU1 and it will try
|
|
|
|
|
to restart NSH on CPU0 and, again, the same quirkiness
|
|
|
|
|
occurs.
|
|
|
|
|
|
|
|
|
|
But for example, this command:
|
|
|
|
|
|
|
|
|
|
nsh> sleep 1 &
|
|
|
|
|
|
|
|
|
|
will execute the sleep command on CPU1 which has worked
|
|
|
|
|
every time that I have tried it (which is not too many
|
|
|
|
|
times).
|
|
|
|
|
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low, SMP is important, but SMP on the simulator is not
|
2016-02-18 20:38:24 +01:00
|
|
|
|
|
2007-12-13 17:52:37 +01:00
|
|
|
|
o ARM (arch/arm/)
|
|
|
|
|
^^^^^^^^^^^^^^^
|
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: IMPROVED ARM INTERRUPT HANDLING
|
2009-06-13 15:39:16 +02:00
|
|
|
|
Description: ARM interrupt handling performance could be improved in some
|
|
|
|
|
ways. One easy way is to use a pointer to the context save
|
2016-03-10 00:39:43 +01:00
|
|
|
|
area in g_current_regs instead of using up_copystate so much.
|
2013-07-24 15:47:51 +02:00
|
|
|
|
|
|
|
|
|
This approach is already implemented for the ARM Cortex-M0,
|
|
|
|
|
Cortex-M3, Cortex-M4, and Cortex-A5 families. But still needs
|
|
|
|
|
to be back-ported to the ARM7 and ARM9 (which are nearly
|
2013-07-30 19:37:09 +02:00
|
|
|
|
identical to the Cortex-A5 in this regard). The change is
|
|
|
|
|
*very* simple for this architecture, but not implemented.
|
|
|
|
|
Status: Open. But complete on all ARM platforms except ARM7 and ARM9.
|
|
|
|
|
Priority: Low.
|
2008-11-08 17:28:00 +01:00
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: IMPROVED ARM INTERRUPT HANDLING
|
2014-01-14 21:06:02 +01:00
|
|
|
|
Description: The ARM and Cortex-M3 interrupt handlers restores all registers
|
2009-06-13 15:39:16 +02:00
|
|
|
|
upon return. This could be improved as well: If there is no
|
|
|
|
|
context switch, then the static registers need not be restored
|
2008-11-13 01:15:41 +01:00
|
|
|
|
because they will not be modified by the called C code.
|
2016-08-06 21:33:41 +02:00
|
|
|
|
(see arch/renesas/src/sh1/sh1_vector.S for example)
|
2008-11-13 01:15:41 +01:00
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low
|
|
|
|
|
|
2012-01-23 18:19:43 +01:00
|
|
|
|
Title: CORTEX-M3 STACK OVERFLOW
|
2014-09-11 22:34:10 +02:00
|
|
|
|
Description: There is bit bit logic in up_fullcontextrestore() that executes on
|
2012-01-23 18:19:43 +01:00
|
|
|
|
return from interrupts (and other context switches) that looks like:
|
|
|
|
|
|
|
|
|
|
ldr r1, [r0, #(4*REG_CPSR)] /* Fetch the stored CPSR value */
|
|
|
|
|
msr cpsr, r1 /* Set the CPSR */
|
|
|
|
|
|
|
|
|
|
/* Now recover r0 and r1 */
|
|
|
|
|
|
|
|
|
|
ldr r0, [sp]
|
|
|
|
|
ldr r1, [sp, #4]
|
|
|
|
|
add sp, sp, #(2*4)
|
|
|
|
|
|
|
|
|
|
/* Then return to the address at the stop of the stack,
|
|
|
|
|
* destroying the stack frame
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
ldr pc, [sp], #4
|
|
|
|
|
|
2013-07-30 19:37:09 +02:00
|
|
|
|
Under conditions of excessively high interrupt conditions, many
|
2014-01-14 21:06:02 +01:00
|
|
|
|
nested interrupts can occur just after the 'msr cpsr' instruction.
|
2012-01-23 18:19:43 +01:00
|
|
|
|
At that time, there are 4 bytes on the stack and, with each
|
|
|
|
|
interrupt, the stack pointer may increment and possibly overflow.
|
|
|
|
|
|
|
|
|
|
This can happen only under conditions of continuous interrupts.
|
2018-04-16 01:15:48 +02:00
|
|
|
|
One suggested change is:
|
2012-01-23 18:19:43 +01:00
|
|
|
|
|
|
|
|
|
ldr r1, [r0, #(4*REG_CPSR)] /* Fetch the stored CPSR value */
|
|
|
|
|
msr spsr_cxsf, r1 /* Set the CPSR */
|
|
|
|
|
ldmia r0, {r0-r15}^
|
|
|
|
|
|
|
|
|
|
But this has not been proven to be a solution.
|
2013-07-30 19:37:09 +02:00
|
|
|
|
|
2016-05-27 22:43:33 +02:00
|
|
|
|
UPDATE: Other ARM architectures have a similar issue.
|
2013-07-30 19:37:09 +02:00
|
|
|
|
|
2012-01-23 18:19:43 +01:00
|
|
|
|
Status: Open
|
2014-01-14 21:06:02 +01:00
|
|
|
|
Priority: Low. The conditions of continuous interrupts is really the problem.
|
|
|
|
|
If your design needs continuous interrupts like this, please try
|
2012-01-23 18:19:43 +01:00
|
|
|
|
the above change and, please, submit a patch with the working fix.
|
2012-08-07 22:18:56 +02:00
|
|
|
|
|
2014-10-22 22:25:58 +02:00
|
|
|
|
Title: IMPROVED TASK START-UP AND SYSCALL RETURN
|
|
|
|
|
Description: Couldn't up_start_task and up_start_pthread syscalls be
|
|
|
|
|
eliminated. Wouldn't this work to get us from kernel-
|
|
|
|
|
to user-mode with a system trap:
|
|
|
|
|
|
|
|
|
|
lda r13, #address
|
|
|
|
|
str rn, [r13]
|
|
|
|
|
msr spsr_SVC, rm
|
|
|
|
|
ld r13,{r15}^
|
|
|
|
|
|
2015-04-06 23:26:50 +02:00
|
|
|
|
Would also need to set r13_USER and r14_USER. For new
|
|
|
|
|
SYS_context_switch... couldn't we do he same thing?
|
2014-10-22 22:25:58 +02:00
|
|
|
|
|
|
|
|
|
Also... System calls use traps to get from user- to kernel-
|
|
|
|
|
mode to perform OS services. That is necessary to get from
|
|
|
|
|
user- to kernel-mode. But then another trap is used to get
|
|
|
|
|
from kernel- back to user-mode. It seems like this second
|
|
|
|
|
trap should be unnecessary. We should be able to do the
|
|
|
|
|
same kind of logic to do this.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low-ish, but a good opportunity for performance improvement.
|
|
|
|
|
|
2018-03-04 14:30:50 +01:00
|
|
|
|
Title: USE COMMON VECTOR LOGIC IN ALL ARM ARCHITECTURES.
|
|
|
|
|
Description: Originally, each ARMv7-M MCU architecture had its own
|
|
|
|
|
private implementation for interrupt vectors and interrupt
|
|
|
|
|
handling logic. This was superceded by common interrupt
|
|
|
|
|
vector logic but these private implementations were never
|
|
|
|
|
removed from older MCU architectures. This is turning into
|
|
|
|
|
a maintenance issue because any improvements to the common
|
|
|
|
|
vector handling must also be re-implemented for each of the
|
|
|
|
|
older MCU architectures.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low. A pain in the ass and an annoying implementation, but
|
|
|
|
|
not really an issue otherwise.
|
|
|
|
|
|
2011-03-19 22:04:13 +01:00
|
|
|
|
o Network Utilities (apps/netutils/)
|
2014-10-15 18:57:04 +02:00
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2011-03-19 22:04:13 +01:00
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: UNVERIFIED THTTPD FEATURES
|
2017-02-15 16:32:42 +01:00
|
|
|
|
Description: Not all THTTPD features/options have been verified. In
|
|
|
|
|
particular, there is no test case of a CGI program receiving
|
|
|
|
|
POST input. Only the configuration of apps/examples/thttpd
|
|
|
|
|
has been tested.
|
2011-03-19 22:04:13 +01:00
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Medium
|
|
|
|
|
|
2014-10-22 22:25:58 +02:00
|
|
|
|
Title: NETWORK MONITOR NOT GENERALLY AVAILABLE
|
2015-04-06 23:26:50 +02:00
|
|
|
|
Description: The NSH network management logic has general applicability
|
2014-10-22 22:25:58 +02:00
|
|
|
|
but is currently useful only because it is embedded in the NSH
|
|
|
|
|
module. It should be moved to apps/system or, better,
|
|
|
|
|
apps/netutils.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low
|
2011-03-19 22:04:13 +01:00
|
|
|
|
|
|
|
|
|
o NuttShell (NSH) (apps/nshlib)
|
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: IFCONFIG AND MULTIPLE NETWORK INTERFACES
|
2016-05-27 22:43:33 +02:00
|
|
|
|
Description: The ifconfig command will not behave correctly if an interface
|
2011-05-28 23:42:18 +02:00
|
|
|
|
is provided and there are multiple interfaces. It should only
|
|
|
|
|
show status for the single interface on the command line; it will
|
|
|
|
|
still show status for all interfaces.
|
|
|
|
|
Status: Open
|
2015-11-27 19:33:58 +01:00
|
|
|
|
Priority: Low
|
2011-05-28 23:42:18 +02:00
|
|
|
|
|
2012-02-01 20:07:57 +01:00
|
|
|
|
o System libraries apps/system (apps/system)
|
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
|
Title: READLINE IMPLEMENTATION
|
|
|
|
|
Description: readline implementation does not use C-buffered I/O, but rather
|
|
|
|
|
talks to serial driver directly via read(). It includes VT-100
|
2014-10-15 18:57:04 +02:00
|
|
|
|
specific editing commands. A more generic readline() should be
|
2012-08-05 00:00:18 +02:00
|
|
|
|
implemented using termios' tcsetattr() to put the serial driver
|
|
|
|
|
into a "raw" mode.
|
2012-02-01 20:07:57 +01:00
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low (unless you are using mixed C-buffered I/O with readline and
|
|
|
|
|
fgetc, for example).
|
|
|
|
|
|
2017-06-17 22:10:37 +02:00
|
|
|
|
o Modbus (apps/modbus)
|
|
|
|
|
^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
|
Title: MODBUS NOT USABLE WITH USB SERIAL
|
|
|
|
|
Description: Modbus can be used with USB serial, however, if the USB
|
2018-01-21 14:47:13 +01:00
|
|
|
|
serial connection is lost, Modbus will hang in an infinite
|
2017-06-17 22:10:37 +02:00
|
|
|
|
loop.
|
|
|
|
|
|
|
|
|
|
This is a problem in the handling of select() and read()
|
2018-01-21 14:47:13 +01:00
|
|
|
|
and could probably resolved by studying the Modbus error
|
2017-06-17 22:10:37 +02:00
|
|
|
|
handling.
|
|
|
|
|
|
|
|
|
|
A more USB-friendly solution would be to: (1) Re-connect and
|
|
|
|
|
(2) re-open the serial drviers. That is what is done is NSH.
|
|
|
|
|
When the serial USB device is removed, this terminates the
|
|
|
|
|
session and NSH will then try to re-open the USB device. See
|
|
|
|
|
the function nsh_waitusbready() in the file
|
|
|
|
|
apps/nshlib/nsh_usbconsole.c. When the USB serial is
|
|
|
|
|
reconnected the open() in the function will succeed and a new
|
|
|
|
|
session will be started.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low. This is really an enhancement request: Modbus was never
|
|
|
|
|
designed to work with removable serial devices.
|
|
|
|
|
|
2016-05-28 20:22:35 +02:00
|
|
|
|
o Pascal Add-On (pcode/)
|
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
|
Title: P-CODES IN MEMORY UNTESTED
|
|
|
|
|
Description: Need APIs to verify execution of P-Code from memory buffer.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low
|
|
|
|
|
|
|
|
|
|
Title: SMALLER LOADER AND OBJECT FORMAT
|
|
|
|
|
Description: Loader and object format may be too large for some small
|
|
|
|
|
memory systems. Consider ways to reduce memory footprint.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Medium
|
|
|
|
|
|
|
|
|
|
Title: PDBG
|
2017-05-11 21:35:56 +02:00
|
|
|
|
Description: Move the pascal p-code debugger into the NuttX apps/ tree
|
2016-05-28 20:22:35 +02:00
|
|
|
|
where it can be used from the NSH command line.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low
|
|
|
|
|
|
2011-03-20 19:18:19 +01:00
|
|
|
|
o Other Applications & Tests (apps/examples/)
|
2012-02-01 20:07:57 +01:00
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2011-03-20 19:18:19 +01:00
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: EXAMPLES/PIPE ON CYGWIN
|
2011-03-20 19:18:19 +01:00
|
|
|
|
Description: The redirection test (part of examples/pipe) terminates
|
|
|
|
|
incorrectly on the Cywgin-based simulation platform (but works
|
|
|
|
|
fine on the Linux-based simulation platform).
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Low
|
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: EXAMPLES/SENDMAIL UNTESTED
|
2011-03-20 19:18:19 +01:00
|
|
|
|
Description: examples/sendmail is untested on the target (it has been tested
|
2012-08-05 00:00:18 +02:00
|
|
|
|
on the host, but not on the target).
|
2011-03-20 19:18:19 +01:00
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Med
|
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: EXAMPLES/NX FONT CACHING
|
2011-07-09 14:53:12 +02:00
|
|
|
|
Description: The font caching logic in examples/nx is incomplete. Fonts are
|
|
|
|
|
added to the cache, but never removed. When the cache is full
|
|
|
|
|
it stops rendering. This is not a problem for the examples/nx
|
|
|
|
|
code because it uses so few fonts, but if the logic were
|
|
|
|
|
leveraged for more general purposes, it would be a problem.
|
2017-01-06 22:38:59 +01:00
|
|
|
|
|
2011-07-09 18:01:00 +02:00
|
|
|
|
Update: see examples/nxtext for some improved font cache handling.
|
2017-01-06 22:38:59 +01:00
|
|
|
|
Update: The NXTERM font cache has been generalized and is now
|
|
|
|
|
offered as the standard, common font cache for all applications.
|
|
|
|
|
both the nx and nxtext examples should be modified to use this
|
|
|
|
|
common font cache. See interfaces defined in nxfonts.h.
|
2011-07-09 14:53:12 +02:00
|
|
|
|
Status: Open
|
2014-10-15 18:57:04 +02:00
|
|
|
|
Priority: Low. This is not really a problem because examples/nx works
|
2011-07-09 14:53:12 +02:00
|
|
|
|
fine with its bogus font caching.
|
|
|
|
|
|
2011-12-18 14:53:58 +01:00
|
|
|
|
Title: EXAMPLES/NXTEXT ARTIFACTS
|
2011-07-24 14:36:21 +02:00
|
|
|
|
Description: examples/nxtext. Artifacts when the pop-up window is opened.
|
|
|
|
|
There are some artifacts that appear in the upper left hand
|
|
|
|
|
corner. These seems to be related to window creation. At
|
|
|
|
|
tiny artifact would not be surprising (the initial window
|
|
|
|
|
should like at (0,0) and be of size (1,1)), but sometimes
|
|
|
|
|
the artifact is larger.
|
|
|
|
|
Status: Open
|
|
|
|
|
Priority: Medium.
|