summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* lib: implementation of read/write locksdimitri staessens2016-05-134-0/+168
| | | | | This adds read/write locks, allowing for concurrent reads on the locked datastructure. This is needed for the fast path.
* Merged in dstaesse/ouroboros/be-rbuff (pull request #79)Sander Vrijders2016-05-121-5/+0
|\ | | | | | | lib: shm_ap_rbuff: small fixes
| * lib: shm_ap_rbuff: small fixesdimitri staessens2016-05-121-5/+0
|/ | | | Unnecessary filename string removed. Formatting fix.
* Merged in dstaesse/ouroboros/be-irmd (pull request #78)Sander Vrijders2016-05-121-1/+6
|\ | | | | | | irmd: fixed bad locking and added cleanup
| * irmd: fixed bad locking and added cleanupdimitri staessens2016-05-121-1/+6
|/ | | | flow_alloc_res had missing cleanup, added missing unlock.
* Merged in dstaesse/ouroboros/be-flow_opts (pull request #77)Sander Vrijders2016-05-121-0/+1
|\ | | | | | | include: added flows.h to CMakelists
| * include: added flow.h to CMakelistsdimitri staessens2016-05-121-0/+1
| |
* | Merged in dstaesse/ouroboros/be-flow_opts (pull request #76)Sander Vrijders2016-05-124-10/+38
|\| | | | | | | lib: dev: implementation of flow_cntl
| * dev: fixed wrong bracket placementdimitri staessens2016-05-121-2/+1
| |
| * lib: dev: implementation of flow_cntldimitri staessens2016-05-124-10/+39
|/ | | | | allows setting the oflags to make flow_read and flow_write blocking or non-blocking (FLOW_O_NONBLOCK).
* Merged in dstaesse/ouroboros/irmd-cleanup (pull request #75)Sander Vrijders2016-05-121-12/+115
|\ | | | | | | irmd: cleanup
| * irmd: cleanupdimitri staessens2016-05-121-12/+115
|/ | | | improved cleanup when killing the IRMd.
* Merged in dstaesse/ouroboros/udp-static (pull request #74)Sander Vrijders2016-05-111-98/+40
|\ | | | | | | ipcpd: threading and cleanup of ipcpd_udp
| * ipcpd: threading and cleanup of ipcpd_udpdimitri staessens2016-05-111-98/+40
|/ | | | | The shim_udp now correctly destroys its ringbuffer on exit. Now handles sdu's in a single thread using select() with a 10 us timeout.
* Merged in sandervrijders/ouroboros/be (pull request #73)Sander Vrijders2016-05-101-2/+2
|\ | | | | | | ipcpd: Fix unitialized value
| * ipcpd: Fix unitialized valueSander Vrijders2016-05-101-2/+2
|/ | | | | A value that was unitialized was being treated as an error in the release build with gcc.
* Merged in sandervrijders/ouroboros/be (pull request #72)dimitri staessens2016-05-105-68/+240
|\ | | | | | | ipcpd: Allow disabling of DNS
| * ipcpd: Add nslookup to shim UDPSander Vrijders2016-05-103-25/+156
| | | | | | | | | | This adds nslookup support to the shim UDP, so that a custom DNS server can be queried.
| * ipcpd: Allow disabling of DNSSander Vrijders2016-05-105-43/+84
|/ | | | | | This allows someone to disable the use of DNS in the shim UDP. It also adds a config file specific for the shim UDP (which holds the nsupdate location). Certain defines were also moved to the global config file.
* Merged in dstaesse/ouroboros/irmd-threads (pull request #70)Sander Vrijders2016-05-103-137/+321
|\ | | | | | | irmd: use pthread_cond_wait
| * irmd: added dedicated locks for signalingdimitri staessens2016-05-101-9/+40
| | | | | | | | | | it's more robust to use dedicated locks for pthread_cond_signal so no other threads can be waiting for the mutex.
| * irmd: fixed potential data racesdimitri staessens2016-05-101-8/+10
| | | | | | | | | | bmp_allocate should be called under lock. Helgrind does not give warnings anymore during flow allocation.
| * IRMd: set number of thread back to 3 (minimum)dimitri staessens2016-05-101-1/+1
| |
| * irmd: introduced lockingdimitri staessens2016-05-103-142/+287
| | | | | | | | | | This commit adds locking to the IRMd with a single global lock. It also fixes some issues in cleaning up the daemon.
| * Merge branch 'be' of bitbucket.org:ouroboros-rina/ouroboros into irmd-threadsdimitri staessens2016-05-103-9/+9
| |\ | |/ |/|
* | Merged in sandervrijders/ouroboros/be (pull request #71)dimitri staessens2016-05-103-9/+9
|\ \ | | | | | | | | | Fixes some log messages
| * | tools: Fix log messages in echo appSander Vrijders2016-05-102-8/+8
| | | | | | | | | | | | | | | This fixes bad indentation and log messages without a newline in the echo application.
| * | tools: Fix log message in irm toolSander Vrijders2016-05-101-1/+1
| | | | | | | | | | | | | | | A wrong log message was being printed if the bootstrap command was called with a wrong parameter.
| | * irmd: use pthread_cond_waitdimitri staessens2016-05-091-23/+29
| |/ |/| | | | | | | | | The initial implementation looped on a nanosleep to wait for an incoming flow allocation request. This implementation is now corrected with the necessary locks and the thread sleeps on a condition variable.
* | Merged in dstaesse/ouroboros/be-rm-shm-test (pull request #69)Sander Vrijders2016-05-093-197/+1
|\ \ | |/ |/| | | lib/test: removed the test for the shm_du_map
| * lib/test: removed the test for the shm_du_mapdimitri staessens2016-05-093-197/+1
|/ | | | | | | The test had a synchronisation issue. Due to rebuild of the shm_du_map for random access, there was also a hack in the shm_du_map specifically to run this test. Because of this hack, the decision was made to drop this test.
* Merged in dstaesse/ouroboros/be-fast-path (pull request #68)dimitri staessens2016-05-081-0/+1
|\ | | | | | | ipcpd-udp: fixed missing close
| * ipcpd-udp: fixed missing closedimitri staessens2016-05-081-0/+1
| | | | | | | | caused the shim to run out of file descriptors fast...
* | Merged in dstaesse/ouroboros/be-fast-path (pull request #67)Sander Vrijders2016-05-081-3/+6
|\| | | | | | | lib: fixed enormous memory leak in shm_ap_rbuff
| * lib: fixed enormous memory leak in shm_ap_rbuffdimitri staessens2016-05-081-3/+6
| | | | | | | | thanks Sander ;)
* | Merged in dstaesse/ouroboros/be-fast-path (pull request #66)Sander Vrijders2016-05-0810-76/+73
|\| | | | | | | lib: changed port_id to int
| * lib: changed port_id to intdimitri staessens2016-05-0810-76/+73
| | | | | | | | | | returning -1 as uint32_t leads to bugs. also changed types in GPB to sint to use zigzag encoding.
* | Merged in dstaesse/ouroboros/be-fast-path (pull request #65)Sander Vrijders2016-05-0828-773/+1859
|\| | | | | | | irmd: flow allocation and fast path
| * lib: changed SHM_AP_RBUFF to SHM_AP_RBUFF_PREFIXdimitri staessens2016-05-082-5/+5
| | | | | | | | This better reflects the use as the pid is appended to that name.
| * lib/irmd/ipcpd/tools: fixes comments on eb9f443dimitri staessens2016-05-085-21/+38
| |
| * irmd: flow allocation and fast pathdimitri staessens2016-05-0728-772/+1841
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit has a first implementation of flow allocation (the "slow path") and read/write (the "fast path") for ouroboros. It provides basic but unstable communications over the shared memory. It required a lot of changes all over the stack, and fixes a number of previously undetected issues. This PR still need heavy revision regarding data model, locking and cleanup. lib/dev: modifications to the API. It now uses an ap_init() call to set the AP name and sets the Instance ID to the pid of the process. It also binds the AP to the shared memory and creates tables for mappings in the fast path. A call to ap_fini() releases the resources. lib/shm_ap_rbuff: added ring buffer for data exchange between processes in the fast path. It passes an index in the shm_du_map. lib/shm_du_map: rewrote API to work with calls from dev.c. Garbage collector added. Tests updated to new API. ipcpd/ipcp-data: removed everything related to flows, as these are universal for all ap's and kept in ap_data (dev.c), or similar structs for shim ipcps. shim-udp: added flow allocator and read/write functions and shm elements. irmd: revised data model and structures necessary for flow allocation. tools: echo updated to new dev.h API. messaging system was updated to comply with new flow allocation messages. All exchanges use pid and port_id to bootstrap the fast path.
* Merged in sandervrijders/ouroboros/be (pull request #64)Dimitri Staessens2016-04-273-19/+121
|\ | | | | | | ipcpd: Add registration to DNS server
| * ipcpd: Add registration to DNS serverSander Vrijders2016-04-273-19/+121
|/ | | | | This adds support for adding the application name to a BIND DNS server through the nsupdate utility.
* Merged in dstaesse/ouroboros/udp-flow-alloc (pull request #63)Sander Vrijders2016-04-275-13/+52
|\ | | | | | | lib: client-side flow allocation
| * lib: client-side flow allocationdimitri staessens2016-04-275-13/+52
|/ | | | | flow allocation now propagates on the client side up to the IPCP. added UNKNOWN_AP and UNKNOWN_AE definitions to dev.h
* Merged in sandervrijders/ouroboros/be (pull request #62)Dimitri Staessens2016-04-273-64/+40
|\ | | | | | | ipcpd: Hide IRMd messages and fix formatting
| * ipcpd: Hide IRMd messages and fix formattingSander Vrijders2016-04-273-64/+40
| | | | | | | | | | This abstracts away the IRMd messages by calling the functions from ipcp.h in the ouroboros library. It also fixes some formatting issues.
* | Merged in sandervrijders/ouroboros/be (pull request #61)Dimitri Staessens2016-04-271-2/+2
|\| | | | | | | ipcpd: Fix shim-udp-test
| * ipcpd: Fix shim-udp-testSander Vrijders2016-04-271-2/+2
| | | | | | | | | | This fixes the shim-udp-test, which was using a non null-terminated string, which caused it to fail on some systems.
| * Merge remote-tracking branch 'upstream/be' into beSander Vrijders2016-04-2718-395/+938
| |\ | |/ |/|