summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [KERNEL/CLIENT] Add IPv6 supportdnbd3-sr-thesis-finalsr2013-01-153-42/+151
|
* [SERVER] Remove old TODO notesr2013-01-151-13/+0Star
|
* [SERVER] Add IPv6 support (clients and RPC connections)sr2013-01-1510-159/+341
|
* [SERVER] Add socket helper module to simplify connection setupsr2013-01-154-69/+118
| | | | [SERVER] Add more comments to job.c
* [SERVER] Fix double-free/dangling pointer related to deleting a trusted ↵sr2013-01-101-0/+5
| | | | namespace
* [SERVER] Ignore trusted server if soft- or hard-deadline for an image has ↵sr2013-01-061-6/+17
| | | | been reached
* [SERVER] Fix nullpointer deref when last image is deletedsr2013-01-062-1/+4
|
* < != >sr2013-01-061-1/+1
|
* [SERVER] Copy deletion deadlines only for replicated images and only from ↵sr2013-01-062-0/+13
| | | | replication source server
* [SERVER] RPC: Fix return code when adding and removing trusted name spacessr2013-01-042-6/+17
|
* [SERVER] pthread_spin_lock != pthread_spin_unlocksr2013-01-034-48/+25Star
| | | | [SERVER] Implement RPC_DEL_IMG
* [SERVER] Fix RPC_ADD_IMGsr2013-01-021-2/+3
|
* [SERVER] Handle uncached proxy-mode properlysr2012-12-201-7/+9
|
* ...sr2012-12-202-33/+4Star
|
* ...sr2012-12-201-50/+64
|
* [SERVER] More verbose error messagessr2012-12-202-2/+5
|
* [SERVER] Remove unused default-namespace codesr2012-12-203-29/+6Star
|
* [SERVER] Refactor codesr2012-12-198-118/+134
| | | | [SERVER] Return List of Alt Servers on RPC_IMG_LIST
* [SERVER] Remove unix socket support for RPC interfacesr2012-11-079-160/+146Star
| | | | [SERVER] Restructure RPC functions, add helpers
* [SERVER] Fix return code for IPC_IMAGE_ADDsr2012-09-255-16/+64
| | | | [SERVER] Check if image exists on IPC_IMAGE_ADD
* [SERVER] IPC: Add calls to add/remove trusted namespaces and serverssr2012-09-195-16/+96
|
* [SERVER] Check trust settings before replicating image or adding alt serversr2012-09-196-6/+86
| | | | [SERVER] Close dnbd3 block deviced of proxy images when shutting down
* [SERVER] Async prealloc of cache filesr2012-09-171-17/+35
|
* [SERVER] Automatically connect a dnbd3 device for a relayed imagesr2012-09-096-44/+161
| | | | | | [SERVER] Automatically disconnect dnbd3 device if local cache copy is complete [SERVER] Pre-allocate disk space for cache file [KERNEL] Refuse connection if server reports disk size < 4096 bytes
* [SERVER] Automatically assign and connect a dnbd3 device to a relayed imagesr2012-09-067-13/+206
|
* ...sr2012-09-052-2/+3
|
* [SERVER] Fix saving of trusted server datasr2012-09-052-4/+20
|
* make things actually work as promised in last commitsr2012-09-053-12/+45
|
* [SERVER] Automatically add and remove alt servers from images depending on ↵sr2012-09-056-36/+187
| | | | | | wehter the other server is reachable [SERVER] Automatically replicate images from other servers
* [SERVER] More work towards automatic server discovery and queryingsr2012-09-048-84/+228
|
* [SERVER] Check which dnbd3 devices are idle and ready to use for proxy modesr2012-09-0317-349/+511
| | | | | | [SERVER] Skeleton of server-to-server communication [SERVER] Update access-time of images in use by actual clients [*] Add dnbd3_host_t type to handle address+port+addrtype consistently across the project
* [*] Fixed and unified formattingsr2012-09-0323-1848/+1873
|
* [SERVER] Add list of trusted servers and namespaces (load, display)sr2012-09-0210-71/+310
|
* [KERNEL] Fix off-by-one errorsr2012-09-012-7/+10
|
* [SERVER] Create skeleton of upcoming watchdog/job executorsr2012-09-012-0/+107
|
* fix complile errorsr2012-09-014-4/+5
|
* [KERNEL] Tell server whether we're a client or a server in proxy modesr2012-09-0114-72/+119
| | | | | [KERNEL] SysFS: Return empty string for current_server if not connected [SERVER] Code refactoring
* [SERVER] Added soft and hard timeouts for image deletion: reject any new ↵sr2012-08-319-218/+454
| | | | | | | clients for an image where the soft timeout has been reached, kill all clients for an image where the hard timeout has been reached and remove it from the server. Check for the hard timeout every five minutes [SERVER] Re-Implement image deletion to work with image names instead of vids [SERVER] Add helper functions to simplify dealing with libxml2
* last minute messup fixedsr2012-08-304-9/+11
|
* [SERVER] Set _FILE_OFFSET_BITS=64 so that images >4GiB will be handled ↵sr2012-08-308-682/+974
| | | | | | | | | properly on 32bit [SERVER] Change IPC interface to be able to handle more than 1 request per connection [SERVER] Change IPC interface to use select() so it can handle multiple connections at the same time [SERVER] Re-Implement dnbd3_add_image() to work with image list [SERVER] Add lots of sanity/safety checks and error messages when loading/adding an image
* Fix linebreak, add commentsr2012-08-281-2/+7
|
* [KERNEL] Add IOCTLs to add and remove serverssr2012-08-286-216/+208Star
| | | | | [KERNEL] Detect dead idle connection earlier [KERNEL] Improved debug output
* [SERVER] Add missing ntohl() calls when parsing replysr2012-08-272-0/+5
|
* [KERNEL] Refactor and extend sysfs (add data the server will need in proxy mode)sr2012-08-2712-178/+252
| | | | | | | [SERVER] Use MSG_MORE instead of cork/uncork to save two syscalls [KERNEL] Fail-Counter for alt servers, ignore servers that fail too often [KERNEL] Add new alt servers to list, instead of replacing the old list [*] Add CMD_LATEST_RID to tell client about new revisions
* [KERNEL] Make rtt threshold relativesr2012-08-253-31/+34
|
* [KERNEL] Fix receive thread not reacting to wake_upsr2012-08-251-3/+14
|
* [KERNEL] Only update alt-server list if received from initial serversr2012-08-256-17/+65
| | | | [*] Add CMD_KEEPALIVE protocol message type
* [KERNEL] Fix compiler warning on 32bit systemssr2012-08-251-2/+2
|
* [KERNEL] Make it possible to receive push messages by the serversr2012-08-255-40/+80
|
* [*] Fix bug in serializer_get_*sr2012-08-258-22/+62
| | | | | | [CLIENT/KERNEL] Change ioctl to handle volume names instead if vids [*] Make protocol endian safe [CLIENT] Display ioctl errorcode on failure