Opened 14 years ago

Last modified 12 months ago

#4947 new enhancement

Identify Missing/Incorrect POSIX Functionality

Reported by: bonefish Owned by: nobody
Priority: normal Milestone: Unscheduled
Component: System/POSIX Version: R1/Development
Keywords: Cc: przemub@…
Blocked By: Blocking: #15272, #15280
Platform: All

Description

Haiku is missing quite a bit of POSIX functionality (mandatory and optional), some is not implemented correctly, others is exposed in the wrong header. To identify those issues:

Attachments (4)

posix-sys-headers eval.txt (2.5 KB ) - added by phoudoin 13 years ago.
Review made the 7th december 2010 on headers/posix/sys/* by a GCI student
Haiku POSIX Eval I-P.txt (3.2 KB ) - added by scottmc 13 years ago.
results from a research task by GCI student Hamish Morrison to check headers I-P
edited.tar.bz2 (2.3 KB ) - added by kallisti5 12 years ago.
nafcool gci 2011-2012 work
raport (v2) (1.1 KB ) - added by richienyhus 11 years ago.
Lastest info

Download all attachments as: .zip

Change History (25)

by phoudoin, 13 years ago

Attachment: posix-sys-headers eval.txt added

Review made the 7th december 2010 on headers/posix/sys/* by a GCI student

comment:1 by scottmc, 13 years ago

Another GCI student was tasked with reviewing headers A-H, here's the results from that research task, another task will be opened to implement these:

arpa/inet.h is fine.


assert.h is fine.


ctype.h None of the locale functions, ..._l(int, locale_t), are declared.


dirent.h The dir parameter of the dirfd function shouldn't be const.


dlfcn.h is fine.


errno.h is fine.


fcntl.h Flags for fcntl() are missing: F_GETOWN and F_SETOWN. File creation flag for open() is missing: O_TTY_INIT. File access mode flags for open() are missing: O_EXEC and O_SEARCH. The following optional functionality is missing: int posix_fadvise(int, off_t, off_t, int); int posix_fallocate(int, off_t, off_t); POSIX_FADV_DONTNEED POSIX_FADV_NOREUSE POSIX_FADV_NORMAL POSIX_FADV_RANDOM POSIX_FADV_SEQUENTIAL POSIX_FADV_WILLNEED


fenv.h is fine.


fnmatch.h is fine.


glob.h is fine.


grp.h is fine.


The following headers are missing: aio.h, complex.h, cpio.h, float.h, fmtmsg.h, ftw.h.


comment:2 by korli, 13 years ago

On dirent.h, Axel might give some insights since he added the const in hrev26469.

comment:3 by axeld, 13 years ago

I'm not entirely sure if I remember correctly, but it could be that dirfd() was not part of the POSIX specs back then, or maybe I just weren't aware that it is. In any case, having it accept only "const" should not cause any problems, but restrict us in the implementation of the function. Since it doesn't really matter, feel free to change it to what POSIX says.

by scottmc, 13 years ago

Attachment: Haiku POSIX Eval I-P.txt added

results from a research task by GCI student Hamish Morrison to check headers I-P

in reply to:  3 comment:4 by korli, 13 years ago

Replying to axeld:

I'm not entirely sure if I remember correctly, but it could be that dirfd() was not part of the POSIX specs back then, or maybe I just weren't aware that it is. In any case, having it accept only "const" should not cause any problems, but restrict us in the implementation of the function. Since it doesn't really matter, feel free to change it to what POSIX says.

Changed in hrev40137.

comment:5 by korli, 12 years ago

the part on ctype.h has a dependency on definition and implementation of locale_t in locale.h.

comment:6 by kallisti5, 12 years ago

attaching work by Mohammed Nafees in gci 2011-2012

comment:7 by kallisti5, 12 years ago

In fcntl.h:

Added definitions - F_GETOWN , F_SETOWN , O_EXEC , O_SEARCH , O_TTY_INIT

int posix_fadvise(int, off_t, off_t, int); int posix_fallocate(int, off_t, off_t);

POSIX_FADV_DONTNEED POSIX_FADV_NOREUSE POSIX_FADV_NORMAL POSIX_FADV_RANDOM POSIX_FADV_SEQUENTIAL POSIX_FADV_WILLNEED

In fcntl.cpp:

Implemented posix_fadvise & posix_fallocate. I don't know the code so just for initialization, added error returning code (as suggested by mmu_man in IRC)

In ctype.h:

Declared the locale functions.

In ctype.cpp:

Implemented the locale functions from refering the header file.

by kallisti5, 12 years ago

Attachment: edited.tar.bz2 added

nafcool gci 2011-2012 work

in reply to:  7 comment:8 by zooey, 12 years ago

Replying to kallisti5: [ ... ]

In ctype.h:

Declared the locale functions.

In ctype.cpp:

Implemented the locale functions from refering the header file.

While the function declarations in ctype.h look correct, all the ..._l() macro definitions and their implementation in ctype.cpp are lacking the locale parameter, which makes them useless.

comment:9 by przemub, 11 years ago

Cc: przemub@… added

by richienyhus, 11 years ago

Attachment: raport (v2) added

Lastest info

comment:10 by bonefish, 11 years ago

As written in the ticket description an actual list -- ideally with comments what is missing/lacking -- would be nice. I find bits and pieces scattered over ticket comments and attachments not that helpful. What I'm thinking of is a wiki page (or rather a structured set of pages), listing all the missing/lacking stuff. With comments adding details where necessary, links to tickets for the issues, and mention of POSIX test suite failures where applicable.

To detail on the process I had in mind:

  1. Create a wiki page with a list of all POSIX headers. Mark each header "unchecked".
  2. Pick a header marked "not checked" and check whether Haiku implements all of the contained functionality. That involves the following steps:
    • Check whether Haiku has the header and whether all functionality that should be declared there is declared.
    • Check whether declared functions and variables are actually defined in libroot.
    • If something is missing, create a wiki page for the header listing all the functionality missing. In the overview page replace the "unchecked" marker by "incomplete" linking to the page for the header. If nothing is missing, just replace the marker with "complete".
  3. Repeat 2. until all headers have been checked.

If a header is very large, 2. can be broken down: A subpage for the header could be created, listing the progress of the checking -- the list of what has been found lacking so far plus e.g. just the point in the header up to which things have been checked or a complete list of yet unchecked functionality.

This process is rather simple and it will result in a very nicely structured view of Haiku's POSIX support status. When bug reports for functionality that is there but buggy come in, we could even track those in the wiki pages, giving us an even better picture of Haiku's POSIX compliance.

comment:11 by luroh, 9 years ago

Milestone: R1Unscheduled

Move POSIX compatibility related tickets out of R1 milestone (FutureHaiku/Features).

comment:12 by korli, 5 years ago

posix_fadvise and its definitions are added in hrev53154.

comment:13 by cocobean, 5 years ago

DATE: 08/23/2019

Complete list of headers per POSIX.1-2017, 2018 edition (as of Haiku hrev53395):

<aio.h> - NOT IMPLEMENTED
<arpa/inet.h> - PASSED
<assert.h> - PASSED
<complex.h> - PASSED
<cpio.h> - NOT IMPLEMENTED
<ctype.h> - PASSED
<dirent.h> - PASSED
<dlfcn.h> - PASSED
<errno.h> - PASSED
<fcntl.h>  - work needed (posix_fallocate)
<fenv.h> - PASSED
<float.h> - NOT IMPLEMENTED
<fmtmsg.h> - NOT IMPLEMENTED
<fnmatch.h> - PASSED
<ftw.h> - PASSED
<glob.h> - PASSED
<grp.h> - PASSED
<iconv.h> - NOT IMPLEMENTED
<inttypes.h> - PASSED
<iso646.h> - NOT IMPLEMENTED
<langinfo.h> - PASSED (nl_langinfo_l)
<libgen.h> - PASSED
<limits.h> - work needed (PAGE_SIZE,PTHREAD_THREADS_MAX,RTSIG_MAX,SEM_*,PTHREAD_DESTRUCTOR_ITERATIONS,...)
<locale.h>  - work needed (LC*MASK,locale_t(duplocale.freelocale,duplocale))
<math.h> - PASSED
<monetary.h> - PASSED (strfmon_l)
<mqueue.h> - NOT IMPLEMENTED
<ndbm.h> - NOT IMPLEMENTED
<net/if.h> - PASSED
<netdb.h> - PASSED
<netinet/in.h> - PASSED
<netinet/tcp.h> - PASSED
<nl_types.h> - PASSED
<poll.h> - PASSED
<pthread.h>  - work needed
<pwd.h> - PASSED
<regex.h> - PASSED
<sched.h>  - work needed (sched_param*)
<search.h> - PASSED
<semaphore.h> - PASSED
<setjmp.h>  - work needed
<signal.h>  - work needed
<spawn.h> - PASSED (posix_spawnattr_getsched* not implemented)
<stdarg.h> - PASSED (GNU)
<stdbool.h> - NOT IMPLEMENTED
<stddef.h> - NOT IMPLEMENTED
<stdint.h> - UNCHECKED
<stdio.h>  - work needed
<stdlib.h> - PASSED
<string.h> - work needed (stpncpy, strcoll_l not implemented)
<strings.h> - PASSED (locale_t, strncasecmp_l, strcasecmp_l not implemented) 
<stropts.h> - NOT IMPLEMENTED
<sys/ipc.h> - PASSED
<sys/mman.h>  - work needed (POSIX_TYPED_MEM_*, MCL_*)
<sys/msg.h> - PASSED
<sys/resource.h> - PASSED
<sys/select.h> - PASSED
<sys/sem.h> - PASSED
<sys/shm.h> - NOT IMPLEMENTED
<sys/socket.h>  - work needed
<sys/stat.h> - PASSED
<sys/statvfs.h> - PASSED
<sys/time.h> - PASSED
<sys/times.h> - PASSED
<sys/types.h> - PASSED
<sys/uio.h> - PASSED
<sys/un.h> - PASSED
<sys/utsname.h> - PASSED
<sys/wait.h> - PASSED
<syslog.h> - PASSED
<tar.h> - PASSED
<termios.h> - work needed (pid_t tcgetsid(int);)
<tgmath.h> - NOT IMPLEMENTED
<time.h> - PASSED (*asctime_r(const struct tm *restrict, char *restrict))
<trace.h> - NOT IMPLEMENTED
<ulimit.h> - NOT IMPLEMENTED
<unistd.h>  - work needed (_CS_*,_PC_TIMESTAMP_RES*,_SC_SHELL,_SC_SPAWN,_SC_SPIN_LOCKS,... )
<utime.h> - PASSED (obsolete as of POSIX 1.2017)
<utmpx.h> - NOT IMPLEMENTED
<wchar.h> - PASSED
<wctype.h> - PASSED
<wordexp.h> - NOT IMPLEMENTED

Open POSIX Test 1.5.2 results (hrev53393):

posix-tests-hrev53393-MEM:conformance/interfaces/mmap/11-4: execution: FAILED 
posix-tests-hrev53393-MEM:conformance/interfaces/mmap/11-5: execution: FAILED 
posix-tests-hrev53393-MEM:conformance/interfaces/mmap/14-1: execution: FAILED 
posix-tests-hrev53393-MEM:conformance/interfaces/mmap/23-1: execution: FAILED 
posix-tests-hrev53393-MEM:conformance/interfaces/mmap/24-2: execution: FAILED 
posix-tests-hrev53393-MEM:conformance/interfaces/mmap/28-1: execution: FAILED 
posix-tests-hrev53393-MEM:conformance/interfaces/mmap/31-1: execution: FAILED 
posix-tests-hrev53393-MEM:conformance/interfaces/shm_open/11-1: execution: FAILED 
posix-tests-hrev53393-MEM:conformance/interfaces/shm_open/13-1: execution: FAILED 
posix-tests-hrev53393-MEM:conformance/interfaces/shm_open/20-1: execution: FAILED 
posix-tests-hrev53393-SEM:conformance/interfaces/sem_init/7-1: execution: FAILED 
posix-tests-hrev53393-SEM:conformance/interfaces/sem_timedwait/6-1: execution: FAILED 
posix-tests-hrev53393-SEM:conformance/interfaces/sem_timedwait/6-2: execution: FAILED 
posix-tests-hrev53393-SEM:conformance/interfaces/sem_unlink/3-1: execution: FAILED 
posix-tests-hrev53393-SEM:conformance/interfaces/sem_unlink/5-1: execution: FAILED 
posix-tests-hrev53393-SIG:conformance/interfaces/sigprocmask/17-1: execution: FAILED 
posix-tests-hrev53393-SIG:conformance/interfaces/sigprocmask/17-2: execution: FAILED 
posix-tests-hrev53393-SIG:conformance/interfaces/sigprocmask/17-3: execution: FAILED 
posix-tests-hrev53393-SIG:conformance/interfaces/sigprocmask/17-4: execution: FAILED 
posix-tests-hrev53393-SIG:conformance/interfaces/pthread_kill/6-1: execution: FAILED 
posix-tests-hrev53393-THR:conformance/interfaces/pthread_attr_setscope/4-1: execution: FAILED 
posix-tests-hrev53393-THR:conformance/interfaces/pthread_attr_setstack/2-1: execution: FAILED 
posix-tests-hrev53393-THR:conformance/interfaces/pthread_attr_setstack/6-1: execution: FAILED 
posix-tests-hrev53393-THR:conformance/interfaces/pthread_barrier_init/3-1: execution: FAILED 
posix-tests-hrev53393-THR:conformance/interfaces/pthread_cancel/5-1: execution: FAILED 
posix-tests-hrev53393-THR:conformance/interfaces/pthread_detach/4-1: execution: FAILED 
posix-tests-hrev53393-THR:conformance/interfaces/pthread_detach/4-2: execution: FAILED 
posix-tests-hrev53393-THR:conformance/interfaces/pthread_kill/6-1: execution: FAILED 
posix-tests-hrev53393-THR:conformance/interfaces/pthread_mutex_getprioceiling/1-1: execution: FAILED 
posix-tests-hrev53393-THR:conformance/interfaces/pthread_mutexattr_getprioceiling/1-1: execution: FAILED 
posix-tests-hrev53393-THR:conformance/interfaces/pthread_mutexattr_setprioceiling/1-1: execution: FAILED 
posix-tests-hrev53393-THR:conformance/interfaces/pthread_mutexattr_setprioceiling/3-1: execution: FAILED 
posix-tests-hrev53393-THR:conformance/interfaces/pthread_mutexattr_setprioceiling/3-2: execution: FAILED 
posix-tests-hrev53393-THR:conformance/interfaces/pthread_mutexattr_setprotocol/3-1: execution: FAILED 
posix-tests-hrev53393-THR:conformance/interfaces/pthread_mutexattr_setprotocol/3-2: execution: FAILED 
posix-tests-hrev53393-THR:conformance/interfaces/pthread_rwlock_rdlock/2-3: execution: FAILED 
posix-tests-hrev53393-THR:conformance/interfaces/pthread_rwlock_rdlock/4-1: execution: FAILED 
posix-tests-hrev53393-THR:conformance/interfaces/pthread_rwlock_timedrdlock/6-1: execution: FAILED 
posix-tests-hrev53393-THR:conformance/interfaces/pthread_rwlock_timedwrlock/2-1: execution: FAILED 
posix-tests-hrev53393-THR:conformance/interfaces/pthread_rwlock_timedwrlock/6-1: execution: FAILED 
posix-tests-hrev53393-THR:conformance/interfaces/pthread_rwlock_wrlock/2-1: execution: FAILED 
posix-tests-hrev53393-THR:conformance/interfaces/pthread_setschedparam/1-1: execution: FAILED 
posix-tests-hrev53393-TMR:conformance/interfaces/timer_delete/1-2: execution: FAILED 

Version 35, edited 5 years ago by cocobean (previous) (next) (diff)

comment:14 by Tunas, 4 years ago

Haiku hrev53610 - POSIX compliance report

The following tests failed:

conformance/definitions/errno_h/4-1: execution: FAILED 
conformance/interfaces/clock_getres/6-2: execution: FAILED 
conformance/interfaces/clock_gettime/8-2: execution: FAILED 
conformance/interfaces/clock_settime/17-2: execution: FAILED 
conformance/interfaces/clock_settime/4-1: execution: FAILED 
conformance/interfaces/clock_settime/7-1: execution: FAILED 
conformance/interfaces/difftime/1-1: execution: FAILED 
conformance/interfaces/fork/12-1: execution: FAILED 
conformance/interfaces/clock_settime/8-1: execution: FAILED 
conformance/interfaces/fsync/7-1: execution: FAILED 
conformance/interfaces/mmap/11-4: execution: FAILED 
conformance/interfaces/mmap/11-5: execution: FAILED 
conformance/interfaces/mmap/23-1: execution: FAILED 
conformance/interfaces/mmap/31-1: execution: FAILED 
conformance/interfaces/mmap/14-1: execution: FAILED 
conformance/interfaces/pthread_attr_setscope/4-1: execution: FAILED 
conformance/interfaces/pthread_attr_setstack/2-1: execution: FAILED 
conformance/interfaces/pthread_cancel/5-1: execution: FAILED 
conformance/interfaces/pthread_detach/4-1: execution: FAILED 
conformance/interfaces/pthread_detach/4-2: execution: FAILED 
conformance/interfaces/pthread_mutex_getprioceiling/1-1: execution: FAILED 
conformance/interfaces/pthread_mutexattr_getprioceiling/1-1: execution: FAILED 
conformance/interfaces/pthread_mutexattr_setprioceiling/1-1: execution: FAILED 
conformance/interfaces/pthread_mutexattr_setprotocol/3-1: execution: FAILED 
conformance/interfaces/pthread_rwlock_rdlock/2-3: execution: FAILED 
conformance/interfaces/pthread_rwlock_rdlock/4-1: execution: FAILED 
conformance/interfaces/pthread_rwlock_timedrdlock/6-1: execution: FAILED 
conformance/interfaces/pthread_rwlock_timedwrlock/2-1: execution: FAILED 
conformance/interfaces/pthread_rwlock_timedwrlock/6-1: execution: FAILED 
conformance/interfaces/pthread_rwlock_wrlock/2-1: execution: FAILED 
conformance/interfaces/pthread_setschedparam/1-1: execution: FAILED 
conformance/interfaces/sched_get_priority_max/1-2: execution: FAILED 
conformance/interfaces/sched_get_priority_min/1-2: execution: FAILED 
conformance/interfaces/sem_init/7-1: execution: FAILED 
conformance/interfaces/sem_timedwait/6-1: execution: FAILED 
conformance/interfaces/sem_timedwait/6-2: execution: FAILED 
conformance/interfaces/sem_unlink/3-1: execution: FAILED 
conformance/interfaces/shm_open/37-1: execution: FAILED 
conformance/interfaces/shm_open/38-1: execution: FAILED 
conformance/interfaces/signal/6-1: execution: FAILED 
conformance/interfaces/signal/7-1: execution: FAILED 
conformance/interfaces/sigprocmask/17-1: execution: FAILED 
conformance/interfaces/sigprocmask/17-2: execution: FAILED 
conformance/interfaces/sigprocmask/17-3: execution: FAILED 
conformance/interfaces/sigprocmask/17-4: execution: FAILED 
conformance/interfaces/sigqueue/12-1: execution: FAILED 
conformance/interfaces/sigqueue/3-1: execution: FAILED 
conformance/interfaces/sigset/8-1: execution: FAILED 
conformance/interfaces/sigwait/3-1: execution: FAILED 
conformance/interfaces/timer_create/10-1: execution: FAILED 
conformance/interfaces/timer_create/11-1: execution: FAILED 

The following tests hung and/or were interrupted due to a crash:

conformance/interfaces/fork/11-1: execution: HUNG 
conformance/interfaces/mmap/6-1: execution: HUNG 
conformance/interfaces/mmap/6-2: execution: HUNG 
conformance/interfaces/mmap/6-3: execution: HUNG 
conformance/interfaces/pthread_rwlock_wrlock/3-1: execution: HUNG
conformance/interfaces/pthread_mutex_lock/3-1: execution: INTERRUPTED 
conformance/interfaces/shm_open/5-1: execution: INTERRUPTED 
conformance/interfaces/timer_getoverrun/speculative/6-1: execution: INTERRUPTED 
conformance/interfaces/timer_gettime/speculative/6-1: execution: INTERRUPTED 
conformance/interfaces/pthread_attr_setdetachstate/2-1: execution: INTERRUPTED 
conformance/interfaces/timer_settime/speculative/12-1: execution: INTERRUPTED 
conformance/interfaces/pthread_key_create/speculative/5-1: execution: INTERRUPTED 
conformance/interfaces/pthread_detach/1-1: execution: INTERRUPTED 
conformance/interfaces/mmap/11-2: execution: INTERRUPTED 
conformance/interfaces/pthread_join/speculative/6-1: execution: INTERRUPTED 
conformance/interfaces/timer_delete/speculative/5-1: execution: INTERRUPTED

comment:15 by cocobean, 3 years ago

Last edited 19 months ago by cocobean (previous) (diff)

comment:16 by korli, 3 years ago

Blocking: 15272 added

comment:17 by korli, 3 years ago

Blocking: 15280 added

comment:18 by cocobean, 3 years ago

I compared the tests on Haiku with Linux and FreeBSD - and the Haiku code is comparable. Needs further review - but issues seem minor.

NOTE:

  1. SCHED_FIFO is defined/exists in Haiku, but failed for sched_get_priority_min(SCHED_FIFO) and sched_get_priority_max(SCHED_FIFO). The other SCHED_* functions passed. These are considered optional functions for POSIX compliance. Removed from testing.
  1. All POSIX pthread and semaphores defined, but fail some tests. Removed non-mandatory interface failures.
  1. MMAP - See posix/sys/mman.h and #8514.
  1. SHM - See Gerrit ticket 77 and #2657.

hrev54722 x86 (UPDATED 2020/11/18):

3 POSIX tests FAIL:

conformance/interfaces/pthread_cancel/5-1.test:execution:FAIL 
conformance/interfaces/pthread_detach/4-1.test:execution:FAIL 
conformance/interfaces/pthread_detach/4-2.test:execution:FAIL 

HAIKU is now mostly UNIX 03 conformant.

Last edited 12 months ago by cocobean (previous) (diff)

comment:19 by cocobean, 3 years ago

Last edited 19 months ago by cocobean (previous) (diff)

comment:20 by cocobean, 3 years ago

Last edited 19 months ago by cocobean (previous) (diff)

comment:21 by cocobean, 12 months ago

Haiku hrev56921 x64 - POSIX UNIX 03 compliance report

MMAP memory protection testing:

conformance/interfaces/mmap/11-2: execution: INTERRUPTED 
conformance/interfaces/mmap/6-1: execution: UNRESOLVED 
conformance/interfaces/mmap/6-2: execution: UNRESOLVED 
conformance/interfaces/mmap/6-3: execution: UNRESOLVED 

NOTE: These tests passed on Linux.

Last edited 12 months ago by cocobean (previous) (diff)
Note: See TracTickets for help on using tickets.