| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | [SERVER] Speed up replicationHEAD | Simon Rettberg | 2026-01-20 | 4 | -173/+233 |
| | | | | | | | | | Handling block replies on uplink connections is now parallelized: - write to disk - relay data to clients - request next chunk (when BGR is active) happens in parallel now. | ||||
| * | github: Use github.com/gregkh/linux instead of git.kernel.org | Simon Rettberg | 2025-12-18 | 1 | -1/+1 |
| | | | | | Hopefully faster and won't fail that often :> | ||||
| * | [KERNEL] Fix build on RHEL 9.7 & 10.1 | Mira | 2025-12-18 | 1 | -2/+4 |
| | | | | Co-authored-by: Simon Rettberg <srett@users.noreply.github.com> | ||||
| * | github: Add CentOS versions 9.7 and 10.1 | Michael | 2025-12-17 | 1 | -1/+9 |
| | | | | | | * Add Rocky 9.7 and 10.1 kernel sources to workflow * Update Rocky 10.1 kernel version name | ||||
| * | gitlab-ci: Only run on master branch | Simon Rettberg | 2025-12-09 | 1 | -0/+6 |
| | | |||||
| * | Merge branch 'iscsi-refactor' | Simon Rettberg | 2025-12-09 | 25 | -191/+9129 |
| |\ | |||||
| | * | [SERVER] iscsi: More comments | Simon Rettberg | 2025-12-09 | 1 | -18/+54 |
| | | | |||||
| | * | [SERVER] iscsi: Add braces | Simon Rettberg | 2025-12-09 | 1 | -22/+38 |
| | | | |||||
| | * | [SERVER] iscsi: Update a few doxygen blocks | Simon Rettberg | 2025-12-09 | 1 | -57/+52![]() |
| | | | |||||
| | * | [SERVER] iscsi: Make iscsi_connection stack-allocated | Simon Rettberg | 2025-12-09 | 1 | -64/+6![]() |
| | | | |||||
| | * | [SERVER] iscsi: May not -> Must not | Simon Rettberg | 2025-12-09 | 1 | -39/+39 |
| | | | |||||
| | * | [SERVER] iscsi: Replace int8 with uint8, remove unused login flags | Simon Rettberg | 2025-12-09 | 2 | -58/+20![]() |
| | | | |||||
| | * | [SERVER] iscsi: Implement NOP-In on idle timeout | Simon Rettberg | 2025-12-09 | 1 | -29/+45 |
| | | | | | | | | | | | | | | | If the socket timeout triggers while we wait for the next iSCSI PDU, send a NOP-In with the transfer tag set, so that the initiator is required to send a NOP-Out in response. If the following reveive times out once again, tear down the connection. | ||||
| | * | [SERVER] iscsi: Fix handling of reason_code in logout request | Simon Rettberg | 2025-12-09 | 2 | -2/+7 |
| | | | | | | | | | Only the lower 7 bits carry the reason code, mask away highest bit. | ||||
| | * | [SERVER] iscsi: fix typo | Simon Rettberg | 2025-12-09 | 1 | -2/+2 |
| | | | |||||
| | * | [SERVER] iscsi: Remove unused defines, move session into connection | Simon Rettberg | 2025-12-09 | 2 | -1072/+70![]() |
| | | | |||||
| | * | [SERVER] iscsi: Report read cache enabled; report maximum prefetch | Simon Rettberg | 2025-12-09 | 1 | -4/+10 |
| | | | | | | | | | | | ctld is also reporting maximum prefetch values, so let's just do the same. | ||||
| | * | [SERVER] iscsi: Fix endianness bugs in ACTION(16) and rotation rate | Simon Rettberg | 2025-12-09 | 1 | -22/+18![]() |
| | | | |||||
| | * | [SERVER] iscsi: Make kernel fast again | Simon Rettberg | 2025-12-09 | 1 | -7/+22 |
| | | | |||||
| | * | [SERVER] iscsi: Make iscsi_task stack-allocated | Simon Rettberg | 2025-12-09 | 2 | -91/+25![]() |
| | | | | | | | | | Saves another round of malloc/free calls on every request. | ||||
| | * | [SERVER] iscsi: Overhaul sending of SCSI response, and DATA-In loop | Simon Rettberg | 2025-12-09 | 2 | -184/+131![]() |
| | | | |||||
| | * | [SERVER] iscsi: Add bytesSent accounting, set thread name | Simon Rettberg | 2025-12-09 | 1 | -0/+5 |
| | | | |||||
| | * | [SERVER] iscsi: Minor clang-tidy cleanups (mostly) | Simon Rettberg | 2025-12-09 | 1 | -230/+114![]() |
| | | | | | | | | | | | | | - Remove redundant case block - Remove redundant const/struct prefix - Fix a couple missing params in Doxygen blocks | ||||
| | * | [SERVER] iscsi: Reply OK to any task management function | Simon Rettberg | 2025-12-09 | 2 | -1/+235 |
| | | | | | | | | | | | | | | | Since we process everything sequentially, by the time we receive any task management function, the task referenced in the request has already been rejected (or processed), so we just reply OK for now, so the SNs don't get messed up. | ||||
| | * | [SERVER] iscsi: Remove unused functions & casts, turn [0] into [] | Simon Rettberg | 2025-12-09 | 2 | -306/+104![]() |
| | | | | | | | | | | | | | | | In functions that can handle multiple different structs, instead of picking an arbitrary one as the pointer type in the function signature, pass an uint8_t and cast to the according struct in the sub-cases in the method body. | ||||
| | * | [SERVER] iscsi: Rename constant to reflect it means LOGICAL block size | Simon Rettberg | 2025-12-09 | 2 | -21/+22 |
| | | | | | | | | | ... The other one is already named PHYSICAL | ||||
| | * | [SERVER] iscsi: Unify usage of length and position variables | Simon Rettberg | 2025-12-09 | 2 | -461/+213![]() |
| | | | | | | | | | | | | | | | | | | | | | | | | | There were a lot of similarly named and redundant variables in various structs named pos, len, xfer_len, des_xfer_pos, etc. It could be very challenging to keep track of what information is stored where when working with the code. Attempt to minimize this by relying only on a single "len" variable in the scsi_task struct. This refactoring uncovered a few inconsistencies in how allocation length limitations were handled, which were addressed here too. | ||||
| | * | [SERVER] iscsi: Refactor receive function and PDU handling | Simon Rettberg | 2025-12-09 | 4 | -1056/+617![]() |
| | | | | | | | | | | | | | | | | | | | | | | | | | - Fold header/data handling into one function This uncovered a few redundant checks and makes it easier to reason about control flow - Make all iscsi_pdu stack-allocated This greatly reduces the number of malloc and free calls during normal operation, lowers the risk of memory management bugs, and potentially increases performance in high concurrency scenarios. | ||||
| | * | [SERVER] iscsi: Honor global _shutdown | Simon Rettberg | 2025-12-09 | 2 | -6/+1![]() |
| | | | |||||
| | * | [SERVER] iscsi: Restore proper padding of DataSegment | Simon Rettberg | 2025-12-09 | 1 | -0/+7 |
| | | | | | | | | | | | | | | | | | This broke when sending ds payload was refactored to avoid copying the buffer into the PDU's buffer before sending. iscsi_connection_pdu_create took care of this before, but now that we send the source buffer directly, pad the packet manually after sending the buffer contents if required. | ||||
| | * | [SERVER] iscsi: Cleanup commented-out code | Simon Rettberg | 2025-12-09 | 1 | -5/+0![]() |
| | | | |||||
| | * | [SERVER] iscsi: Change LUN to 0 | Simon Rettberg | 2025-12-09 | 1 | -1/+1 |
| | | | | | | | | | Makes using the kernel's iscsi module simpler | ||||
| | * | Update README and sample config | Simon Rettberg | 2025-12-09 | 4 | -552/+5![]() |
| | | | |||||
| | * | Fix AFL build | Simon Rettberg | 2025-12-09 | 10 | -42/+26![]() |
| | | | |||||
| | * | [SERVER] Refactor classic dnbd3 code a bit, locking etc. | Simon Rettberg | 2025-12-09 | 1 | -28/+54 |
| | | | |||||
| | * | [SERVER] iscsi: Fix crashes | Simon Rettberg | 2025-12-09 | 3 | -37/+41 |
| | | | |||||
| | * | [SERVER] Check if iSCSI server is enabled, check opcode | Simon Rettberg | 2025-12-09 | 3 | -12/+16 |
| | | | |||||
| | * | [SERVER] iscsi: use sendfile() | Simon Rettberg | 2025-12-09 | 6 | -151/+122![]() |
| | | | |||||
| | * | [SERVER] iscsi refactor: First working version | Simon Rettberg | 2025-12-09 | 10 | -18065/+2734![]() |
| | | | | | | | | | | | | | | | | | | | Work towards simplifying the iscsi implementation has begun. Goals are: - Simpler and easier to understand resource/lifecycle management of allocations - Single-threaded architecture, making locking unnecessary - Moving as many allocations as possible to the stack - Making the call-stack more shallow for easier tracking of code flow | ||||
| | * | [SERVER] iscsi: Implement relaying requests to uplink servers | Simon Rettberg | 2025-12-09 | 3 | -26/+220 |
| | | | |||||
| | * | [SERVER] iscsi: Hook into net.c, text response handling, more features: | Sebastian Vater | 2025-12-09 | 12 | -2256/+16091 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - R2T handling - Portal groups - Fixes to login phase handling - Code refactoring - Remove obsolete PDU fields - SCSI INQUIRY handler - Persistent Reservation support - Implement SCSI block based operations - Implement other needed SCSI ops - Disks are now reported as read-only - Doxygen tags - Bugfixes for crashes, memleaks, etc. | ||||
| | * | [SERVER] iscsi: Finish login handling, add NOP-In/Out handling | Sebastian Vater | 2025-12-09 | 2 | -261/+1448 |
| | | | | | | | | | Also a couple bug fixes and other minor improvements | ||||
| | * | [SERVER] iscsi: Implement receive loop, add a lot of new iSCSI structures | Sebastian Vater | 2025-12-09 | 2 | -120/+3956 |
| | | | | | | | | | | | - globals, portal groups, portals, ports, etc. - Finally, fixed some bugs. | ||||
| | * | [SERVER] iscsi: Add a lot of Doxygen comments, some general additions | Sebastian Vater | 2025-12-09 | 3 | -2674/+5482 |
| | | | |||||
| | * | doxygen: Add initial config and gitlab runner job | Simon Rettberg | 2025-12-09 | 4 | -2/+280 |
| | | | |||||
| | * | [SERVER] iscsi: Initial commit, WIP | Sebastian Vater | 2025-12-09 | 3 | -0/+4589 |
| | | | |||||
| * | | [KERNEL] Fix build on newer gcc | Simon Rettberg | 2025-11-17 | 2 | -4/+8 |
| | | | |||||
| * | | github: Update list of kernels to build | Simon Rettberg | 2025-11-14 | 1 | -10/+6![]() |
| | | | | | | | | | | | Remove older Rocky 9.x builds, update 9.6 and 1.0 kernels, add vanilla kernel 6.17.x | ||||
| * | | [KERNEL] Update src to support 6.14+ | Simon Rettberg | 2025-11-14 | 1 | -0/+9 |
| | | | |||||
| * | | [KERNEL] Fix build on newer kernels | Simon Rettberg | 2025-11-14 | 1 | -1/+2 |
| |/ | | | | | The build system of newer kernels now ignores EXTRA_CFLAGS, breaking builds. Switch to the more modern KCFLAGS variable. | ||||

