summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merged in sandervrijders/ouroboros/be-fixprotobuf (pull request #176)dimitri staessens2016-07-265-6/+5
|\ \ | |/ |/| | | build: Fix wrong inclusion
| * build: Fix wrong inclusionSander Vrijders2016-07-265-6/+5
|/ | | | | | The protobuf include directory was not being correctly handed to the compiler when building. Now the include directory is added project-wide. And the protobuf package is searched for only once.
* Merged in sandervrijders/ouroboros/be-normal (pull request #175)dimitri staessens2016-07-153-10/+261
|\ | | | | | | ipcpd: normal: Add main loop to normal IPCP
| * ipcpd: normal: Add main loop to normal IPCPSander Vrijders2016-07-153-10/+261
| | | | | | | | | | | | This adds the main loop to the normal IPCP, just like it is present in the shim IPCPs. So in essence, the normal IPCP now reacts to all operations from ipcp.h.
* | Merged in dstaesse/ouroboros/be-irmd-fix (pull request #174)Sander Vrijders2016-07-153-36/+45
|\ \ | |/ |/| | | irmd: Fix accessing reg_api struct after destroy
| * irmd: Fix accessing reg_api struct after destroydimitri staessens2016-07-153-36/+45
|/ | | | | The destroy now only frees after all threads stopped using the object. Also fixes a SEGV when trying to allocate a flow to a remote name.
* Merged in sandervrijders/ouroboros/be (pull request #172)dimitri staessens2016-07-1412-25/+417
|\ | | | | | | ipcpd: normal: Establish N-1 management flows
| * Merge remote-tracking branch 'upstream/be' into beSander Vrijders2016-07-141-8/+7
| |\
| * | ipcpd: normal: Establish N-1 management flowsSander Vrijders2016-07-1412-25/+417
| | | | | | | | | | | | | | | | | | | | | | | | | | | This adds the intial implementation of establishing management N-1 flows between normal IPCPs. On calling fmgr_mgmt_flow, a management flow will be setup to a certain destination IPCP. After flow allocation, the fd is handed to the RIB manager. The flow manager also listens for incoming flow requests. In case they are management flows, they are handed to the RIB manager, otherwise to the FRCT.
* | | Merged in dstaesse/ouroboros/be-irmd-ae (pull request #173)Sander Vrijders2016-07-141-5/+6
|\ \ \ | |_|/ |/| | | | | irmd: Fix AE name always set to NULL
| * | irmd: Fix AE name always set to NULLdimitri staessens2016-07-141-5/+6
|/ /
* | Merged in dstaesse/ouroboros/be-gpb (pull request #171)Sander Vrijders2016-07-121-8/+7
|\ \ | | | | | | | | | lib: Remove src_ap_name from ipcpd messages
| * | lib: Remove src_ap_name from ipcpd messagesdimitri staessens2016-07-121-8/+7
|/ /
* | Merged in sandervrijders/ouroboros/be (pull request #170)dimitri staessens2016-07-129-40/+146
|\| | | | | | | Be
| * ipcpd: Add initial headers for the normal IPCPSander Vrijders2016-07-123-0/+124
| | | | | | | | | | | | | | | | | | This adds the initial headers for the normal IPCP. The normal IPCP consists of 3 main components: * The flow manager, in charge of managing N and N-1 flows. * The RIB manager, in charge of managing the RIB * FRCT: The flow and retransmission control task
| * lib: Remove N-1 DIF param from enroll operationSander Vrijders2016-07-126-40/+22
|/ | | | | | This removes the parameter N-1 DIF from the enroll operation. IPCPs should just allocate a flow to a DIF name and let the N-1 DIF resolve it.
* Merged in dstaesse/ouroboros/be-shm-pci (pull request #169)Sander Vrijders2016-07-112-45/+103
|\ | | | | | | lib: shm_du_map: PCI allocation / deallocation
| * lib: shm_du_map: PCI allocation / deallocationdimitri staessens2016-07-112-45/+103
|/ | | | | | Correct implementation of allocation for the Protocol Control Information. Also removes stale code checking for a corner case when the du map still wrapped multi-block SDU's.
* Merged in dstaesse/ouroboros/be-registry-refactor (pull request #168)Sander Vrijders2016-07-114-405/+421
|\ | | | | | | irmd: Refactor of registry.
| * irmd: Refactor of registrydimitri staessens2016-07-114-405/+421
|/ | | | | | Easier names for the functions.The registry now uses a single list to keep track of applications (bindings), moved the auto_exec state per binding.
* Merged in dstaesse/ouroboros/be-ops (pull request #167)Sander Vrijders2016-07-088-111/+6
|\ | | | | | | ipcpd: Deprecate ipcp_reg/ipcp_unreg
| * ipcpd: Deprecate ipcp_reg/ipcp_unregdimitri staessens2016-07-088-111/+6
|/
* Merged in dstaesse/ouroboros/be-ipcp-priority (pull request #166)Sander Vrijders2016-07-074-47/+160
|\ | | | | | | irmd: Prioritize local ipcp for local flows
| * irmd: Prioritize local ipcp for local flowsdimitri staessens2016-07-074-47/+160
| | | | | | | | | | | | | | | | | | | | For locally registered processes, the IRMd will first look for the local, then the normal, then the shim-udp. It will look for a normal, a shim-eth-llc and ultimately a shim-udp for non-local destinations. It does not yet check if a remote destination is actually known in a DIF. Fixes #18.
* | Merged in dstaesse/ouroboros/be-lockfile (pull request #165)Sander Vrijders2016-07-0715-39/+253
|\| | | | | | | lib: Add lockfile
| * ouroboros: Use ouroboros errno.hdimitri staessens2016-07-0710-10/+11
| | | | | | | | | | All includes of <errno.h> within ouroboros are replaced with the ouroboros errno.
| * lib: Add lockfiledimitri staessens2016-07-079-31/+244
|/ | | | | | | | | | | | The pid of the IRMd is stored in a lockfile in shared memory. This makes checking if the IRMd is running independent of the configuration, as previously the IRMd pid was stored at the end of the shm_du_map, which could not be read by an IRMd that would be compiled with different configuration options. Also corrects some unnecessary includes Fixes #21.
* Merged in dstaesse/ouroboros/be-irmd-fix-create (pull request #164)Sander Vrijders2016-07-076-29/+58
|\ | | | | | | lib:irmd: Fix logs and irm_create
| * irmd, ipcps: Close logfile on exitdimitri staessens2016-07-074-17/+33
| | | | | | | | | | | | | | IRMd and ipcps will now close the logfile upon exit. Also corrects exit(1) to exit(EXIT_FAILURE) and exit(0) to exit(EXIT_SUCCESS).
| * lib:irmd: Fix logs and irm_createdimitri staessens2016-07-063-12/+25
| | | | | | | | | | | | | | The irm_create() function called irmd_destroy before some key values were initialized. Logs cleanup was missing.
* | Merged in dstaesse/ouroboros/be-fix-stale (pull request #163)Sander Vrijders2016-07-061-1/+1
|\ \ | |/ |/| | | lib: shm_du_map: Fix cleaning stale DU map
| * lib: shm_du_map: Fix cleaning stale DU mapdimitri staessens2016-07-061-1/+1
| | | | | | | | | | Added check if the owner of the du map is actually running so a new IRMd instance can remove a stale DU map.
* | Merged in dstaesse/ouroboros/be-clean-exit (pull request #162)Sander Vrijders2016-07-061-5/+5
|\| | | | | | | lib: shm_du_map: Don't open rbuff when process exits
| * lib: shm_du_map: Don't open rbuff when process exitsdimitri staessens2016-07-061-5/+5
| | | | | | | | | | clean_sdus now has a boolean flag to let it know the process has exited.
* | Merged in dstaesse/ouroboros/be-clean-exit (pull request #160)Sander Vrijders2016-07-068-8/+36
|\| | | | | | | lib: shm_du_map: Clean sdus upon exit
| * Merge branch 'be' of bitbucket.org:ouroboros-rina/ouroboros into be-clean-exitdimitri staessens2016-07-0612-29/+196
| |\ | |/ |/|
* | Merged in sandervrijders/ouroboros/be (pull request #161)dimitri staessens2016-07-0612-29/+196
|\ \ | | | | | | | | | lib, irmd, ipcpd: Provide the feature to write to logs
| * | lib: Fix crapped up indentationSander Vrijders2016-07-061-2/+2
| | | | | | | | | | | | This fixes some crapped up indentation in logs.h
| * | Merge remote-tracking branch 'upstream/be' into beSander Vrijders2016-07-063-48/+121
| |\ \ | |/ / |/| |
| * | lib, irmd, ipcpd: Provide the feature to write to logsSander Vrijders2016-07-0612-29/+197
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Writing output to log files is now enabled by default. Logs are written to <INSTALL_PREFIX>/var/log/ouroboros, which is created on install. There is a log file for the irmd and one per IPCP. To still get (colored) output on stdout, provide the --stdout switch when starting the irmd. Fixes #17
| | * lib: shm_du_map: Clean sdus upon exitdimitri staessens2016-07-068-8/+36
| |/ |/| | | | | | | | | | | | | When an application closes the shm_du_map, it will clean all remaining sdu's for that application. Adds a function to clean the shm_du_map on close. Fixes #20.
* | Merged in dstaesse/ouroboros/be-fix-kill (pull request #159)Sander Vrijders2016-07-061-28/+101
|\ \ | | | | | | | | | irmd: Collect spawned processes
| * | irmd: Collect spawned processesdimitri staessens2016-07-061-28/+101
| | | | | | | | | | | | | | | | | | | | | The irmd will now collect terminated child processes (autostarted api's and ipcpd's). Upon exit, all autostarted api's will be killed. Fixes #19.
* | | Merged in dstaesse/ouroboros/be-registry-refactor (pull request #158)Sander Vrijders2016-07-063-19/+20
|\| | | |/ |/| | | irmd: Rename registry functions
| * irmd: Rename registry functionsdimitri staessens2016-07-063-19/+20
|/ | | | | Reflects that the functions (dis)associate an application instance from/with a name and not remove it from the registry entirely.
* Merged in dstaesse/ouroboros/be-pid (pull request #157)Sander Vrijders2016-07-059-36/+35
|\ | | | | | | lib: Change invalid pid to -1
| * lib: Change invalid pid to -1dimitri staessens2016-07-059-36/+35
|/ | | | | | | | The stack used pid 0 (the scheduler) to indicate an invalid process instance, probably as a leftover from the deprecated application process instance id. Using -1 is a better solution. Fixes #16.
* Merged in dstaesse/ouroboros/irmd-refactor (pull request #156)Sander Vrijders2016-07-055-632/+767
|\ | | | | | | irmd: Move registry to its own sources
| * irmd: Move registry to its own sourcesdimitri staessens2016-07-055-632/+767
|/ | | | | All registry functionality has been extracted from the IRMd to improve modularity and legibility of the code.
* Merged in sandervrijders/ouroboros/be (pull request #154)dimitri staessens2016-07-0520-177/+596
|\ | | | | | | lib: Provide first implementation of revised CDAP