summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* [SERVER] Fix UBSimon Rettberg2021-05-111-1/+1
|
* [SERVER] Honor uplinkTimeout directly when connecting to alt-serverSimon Rettberg2021-05-102-5/+3Star
|
* [KERNEL] Improve debug output in net.cSimon Rettberg2021-04-203-7/+13
|
* [KERNEL] Even more RTT fakery on manual server switchSimon Rettberg2021-04-201-5/+12
|
* [KERNEL] Clean alt-server list first when connectingSimon Rettberg2021-04-161-11/+8Star
| | | | | | | When establishing a new connection on a disconnected device, the old list of alt-servers was retained. This would lead to us connecting to the wrong server, as the number of newly passed servers was used when looping over the list of alt-servers to actually connect.
* [KERNEL] Fix Linter errorsManuel Bentele2021-04-162-3/+5
|
* [KERNEL] Removes duplicate word 'of' in license headersManuel Bentele2021-04-1616-16/+16
|
* [SERVER] Mark uplink requests with BGR/prefetch flags and handle themSimon Rettberg2021-04-141-5/+20
| | | | | | | | | Incoming requests from clients might actually be prefetch jobs from another downstream proxy. Don't do prefetching for those, as this would cascade upwars in the proxy chain (prefetch for a prefetch of a prefetch) Incoming requests might also be background replication. Don't relay those if we're not configured for background replication as well.
* [SERVER] Set TCP_NODELAY on outgoing connectionsSimon Rettberg2021-04-141-1/+4
| | | | | | | This will send all (block) requests immediately at sometimes more overhead, but slighly less delays. Since the outgoing connection on a client is only used very lightly, this tradeoff should always make sense.
* [SERVER] Make prefetching synchronousSimon Rettberg2021-04-143-168/+226
| | | | | | | | | There is a race condition where we process the next request from the same client faster than the OS will schedule the async prefetch job, rendering it a NOOP in the best case (request ranges match) or fetching redundant data from the upstream server (prefetch range is larger than actual request by client). Make prefetching synchronous to prevent this race condition.
* [CLIENT] Use SO_GETPEERCRED instead of braindead setuid crapSimon Rettberg2021-04-141-56/+69
| | | | | | If you need daemon mode, run as root with --daemon, normal users can then request devices to be connected using the same binary WITHOUT havind the suid bit set on it.
* [KERNEL] Deduplicate code, clean up, split into functionsSimon Rettberg2021-04-142-402/+339Star
|
* [KERNEL] Fix CMD name in debug messagesSimon Rettberg2021-04-141-3/+3
|
* [KERNEL] Improve socket connectSimon Rettberg2021-03-291-34/+59
| | | | | | | | - Remove the ugly timeout hack that apparently isn't required after all. - Set a few socket options that appear to make sense in out use case (no linger, only one SYN retry, NODELAY). - Adapt socket timeout in panic mode, in case we're on a very bad connection.
* [KERNEL] Overhaul sysfs filesSimon Rettberg2021-03-262-40/+18Star
| | | | | | Remove superflous, reduntant or otherwise useless information. Use space as separator instead of comma for better readability and easier parsing in shell etc.
* [KERNEL] Implement best_count logic for load balancingSimon Rettberg2021-03-264-22/+48
| | | | | | | Similar logic already exists in the fuse client: Count how many times in a row a server was fastest when measuring RTTs, and lower the switching threshold more the higher the count gets.
* [KERNEL] Use sockaddr instead of dnbd3_host_t where possibleSimon Rettberg2021-03-246-241/+216Star
| | | | | | | | Convert dnbd3_host_t to struct sockaddr immediately when adding alt servers, so we don't have to convert it every time we establish a connection. Additionally we can now use %pISpc in printf-like functions instead of having if/else constructs whenever we want to print an address.
* [KERNEL] Set fake low RTT after manual server switchSimon Rettberg2021-03-232-0/+8
| | | | | This avoids automatically switching back right after adding and switching to a server.
* [KERNEL] Synchronous add/remove of alt-servers via IOCTLSimon Rettberg2021-03-234-165/+229
|
* [SERVER] Fix compiler warningSimon Rettberg2021-03-221-1/+1
|
* [KERNEL] Enable assertions if CONFIG_DEBUG_DRIVER is setManuel Bentele2021-03-161-0/+6
|
* [KERNEL] Refactor code to satisfy Linux kernel code styleManuel Bentele2021-03-1211-621/+535Star
|
* [BUILD] Build picohttpparser as independent libraryManuel Bentele2021-03-113-15/+15
|
* [BUILD] Enable lint targets if lint programs are foundManuel Bentele2021-03-112-2/+566
|
* [BUILD] Disable lint/formatting for non-kernel for nowSimon Rettberg2021-03-051-0/+12
|
* [BUILD] Add support in CMake to validate (lint) the source codeManuel Bentele2021-03-046-30/+88
|
* [FUSE] Fix build: Add dnbd3-build to dependenciesSimon Rettberg2020-12-081-1/+1
|
* [BUILD] Fix dnbd3-client build, Fix source-only buildSimon Rettberg2020-12-021-1/+1
|
* [BUILD] Include branch and build timestamp in binariesSimon Rettberg2020-12-025-7/+13
|
* [CLIENT] print help and version number correctlyManuel Bentele2020-12-021-8/+5Star
| | | | | | This change prevents the dnbd3-client to print the help text twice if the help parameter is submitted. In addition to that, correct exit codes are set after the help text is printed and the program terminates.
* [SERVER] replaced non-existent FUSE define to match CMake's build definesManuel Bentele2020-11-271-3/+3
|
* [SERVER] Fix warningsSimon Rettberg2020-11-234-7/+9
|
* [BUILD] update search paths for 'libatomic' to support build on FreeBSDManuel Bentele2020-11-231-1/+1
|
* [BUILD] add CMake find package search to find 'libatomic' automaticallyManuel Bentele2020-11-231-0/+3
|
* [KERNEL] Fix race condition for request_queuereceive in receive threadSimon Rettberg2020-11-201-8/+7Star
| | | | | | | | | | Formerly, the request that was about to be received was looked up in the receive queue without removing it, then the request payload was received from the socket while the lock was not being held, and finally, the lock was required again and the request removed from the queue. This is dangrous as another thread can concurrently take the request from the queue while the receive thread reads the payload from the socket, leading to a double-free by calling blk_mq_end_request twice.
* [KERNEL] Cleanup thread cleanup, fix closing of device when busySimon Rettberg2020-11-203-90/+124
|
* [BUILD] add support for atomic operations not supported by hardwareManuel Bentele2020-11-201-1/+1
| | | | | | | | | | | | | | This change links the dnbd3-server with 'libatomic' to add support for atomic operations not supported by hardware (especially 32-bit hardware architectures, such as ARM). Thus the dnbd3-server can also run on a Raspberry Pi 1 running Rasperry Pi OS. Note that the dnbd3-server is still linked to the libatomic, even if the hardware supports atomic operations. In this case, the compiler resolves atomic operations and replaces them automatically with specific built-in functions. This unnecessary linkage can be removed in the future if the GCC supports an upcoming option called automatic linking of libatomic (--enable-autolink-libatomic).
* [KERNEL] Fix several connect/disconnect race conditionsSimon Rettberg2020-11-193-188/+193
| | | | | | | | | | | | | | | | | | | Previously disconnect was protected against concurrent calls, but connect wasn't. It was easy to crash the kernel when calling connect and disconnect IOCTLs in a tight loop concurrently. A global lock was introduced to make sure only one caller can change the connection state at a time. dev->connection_lock needs to be aquired when calling dnbd3_net_connect or _disconnect. This atomic_t based locking mechanism should be turned into a mutex in a next step, relying on mutex_trylock for cases where we don't have the cmpxchg-schedule() loop. Along the way it was noticed that the send/receive timeouts don't apply to kernel_connect, which might have been the case in older 3.x kernel versions. A crude workaround using nonblocking connect has been introduced to emulate this, but a clean solution for this is welcomed. Also, devices are now properly closed on module unload.
* [KERNEL] add support for Linux kernel 4.19 on Ubuntu 18.04 (GCC 7.5)Manuel Bentele2020-11-161-8/+8
| | | | | | | This patch replaces the __VA_OPT__ varadic macro for the C preprocessor with a builtin GCC extension for optional varadic arguments. Based on this change, the dnbd3 Linux kernel module can be also built with GCC 7.5 on a fresh Ubuntu 18.04 with Linux kernel version 4.19.x.
* [SERVER] Fix log calls in thread debug codeSimon Rettberg2020-11-131-5/+7
|
* cmake: Fix passing -Defines to ccSimon Rettberg2020-11-131-3/+3
|
* [CLIENT] display proper connected server if multiple servers specifiedManuel Bentele2020-11-102-14/+20
| | | | | | | With this change, the dnbd3-client is able to display the selected server (choosen by the Linux kernel module) after successful probing. Therefore, the ioctl call OPEN returns the selected server host as index of the specified dnbd3-server hosts after successful probing.
* [KERNEL] add manual switching of dnbd3-server to specified serverManuel Bentele2020-11-104-56/+159
| | | | | | This patch adds the feature to manually switch the dnbd3-server to a specified server. The switching is implemented by the use of the ioctl call SWITCH.
* [KERNEL] protect read-only access to server listManuel Bentele2020-11-091-6/+9
| | | | | | | | | | This patch completes the changes from the last commit [1] and protects in addition the read-only access to the alternative list of new servers. Otherwise a race condition between ioctl ADD_SRV/REM_SRV (process context) and dnbd3 discover thread would be possible since the 'new_servers_num' field is changed in both contexts. [1] - DNBD3 commit db5a93a43fea2aa3c3bbaf8c48d238e60d834676
* [KERNEL] protect access to server list if alt server is added/removedManuel Bentele2020-11-091-0/+3
| | | | | | This patch locks the protecting spinlock of the DNBD3 device's new server list. Otherwise a race condition between ioctl ADD_SRV/REM_SRV (process context) and dnbd3 discover thread would be possible.
* [KERNEL]: change probing logic to select first available serverManuel Bentele2020-11-092-16/+25
| | | | | | | This patch changes the probing logic to select the first available dnbd3-server submitted by the ioctl OPEN call. All other specified dnbd3-servers are added to the alternative server list and do not have to be available.
* [KERNEL, CLIENT]: submit and probe multiple dnbd3-server with ioctl OPENManuel Bentele2020-11-064-104/+263
| | | | | | | | | | The ioctl OPEN call for DNBD3 devices exposed by the dnbd3 Linux kernel module, is extended with a fixed array of dnbd3 hosts. The fixed array allows the dnbd3-client to submit host information (IP address and port) of multiple dnbd3-servers. This information is used to probe all submitted dnbd3-servers and add them to the alternative dnbd3-server list. If at least one dnbd3-server is not reachable, the OPEN ioctl call will abort with an error code.
* [CLIENT] format output of program help textManuel Bentele2020-10-301-7/+7
|
* [CLIENT] add documentation for adding/removing dnbd3-server to helpManuel Bentele2020-10-302-10/+9Star
|
* [FUSE] removed unnecessary cmdln argument check for sticky modeManuel Bentele2020-10-301-6/+0Star
|