summaryrefslogtreecommitdiffstats
path: root/src/server
Commit message (Collapse)AuthorAgeFilesLines
...
* [SERVER] Helper function for loading line based space separated data from fileSimon Rettberg2017-10-013-34/+63
|
* [SERVER] Fix closing timeout reset, fix log messagesSimon Rettberg2017-09-082-1/+5
|
* [SERVER] Refactor: Move client list to net.* and isolateSimon Rettberg2017-09-078-247/+290
|
* [SERVER] Implement closeUnusedFd config optionSimon Rettberg2017-09-023-0/+33
| | | | | | | This will close the readFd of images that have no active clients after some idle period (1 hour currently). Prevents deleted images from taking up space until the server is shut down.
* [*] Continue splitting #defines to clientconfig.h etc.Simon Rettberg2017-09-023-41/+2Star
|
* [SERVER] Split server-only defs from config.h to serverconfig.hSimon Rettberg2017-08-267-7/+54
|
* [SERVER] Change handling of nonworking images, check for size changeSimon Rettberg2017-08-241-77/+169
|
* [SERVER] Fix status query on big endianSimon Rettberg2017-08-211-4/+7
|
* [SERVER] Make crclist handling endian-safeSimon Rettberg2017-04-272-1/+9
|
* [SERVER] Remove stray lineSimon Rettberg2017-04-271-1/+0Star
|
* [SERVER] Fix image_load aswell...Simon Rettberg2016-11-091-12/+12
|
* [SERVER] Fix loading of rid-based images in vmdk legacy modeSimon Rettberg2016-11-091-9/+8Star
|
* [SERVER] Bump debug lock tracking limitsSimon Rettberg2016-07-131-2/+2
|
* [SERVER] Fix formattingSimon Rettberg2016-03-227-54/+55
|
* [SERVER] (FreeBSD) Unlock send mutex on sendfile errorSimon Rettberg2016-03-221-0/+1
|
* running FreeBSD sendfileSebastian2016-02-111-13/+36
|
* dnbd3server build success on freebsd :)Sebastian2016-02-117-27/+56
|
* cleanup commitsSebastian2016-02-1117-121/+39Star
|
* [SHARED] signal.h -> fdsignal.hSimon Rettberg2016-02-106-6/+6
|
* First steps in make signals more abstract from the underlying mechanism; ↵Simon Rettberg2016-02-055-96/+71Star
| | | | | | | | | | replace epoll with poll. We now don't assume that a signal equals a single fd (eventfd on Linux). The next step would be to create a version of signal.c that uses a pipe internally, so it can be used on other platforms, like *BSD. This is also the reason epoll was replaced with poll in uplink.c
* [SERVER] BREAKING: Get rid of pseudo case-insensitivityv2.1Simon Rettberg2016-02-018-52/+39Star
| | | | | | | | | | This was a wrong decision made long time ago, and it's broken in certain scenarios (eg. two servers serving from same NFS mount). Also it's of limited use anyways since it only supportes ASCII and would ignore umlauts, so blöd and BLÖD would still be considered two different images. So if you relied on this "feature" in any way, be careful when updating.
* [SERVER] Fix a lot of (mostly harmless) data racesSimon Rettberg2016-01-1111-90/+159
|
* [SERVER] Performance: Optimized some functions (gprof)Simon Rettberg2015-12-174-25/+45
| | | | | | | A run with gprof revealed that background replication is a huge CPU hog. The block selection was very slow and has been improved a lot. Minor improvements were made to other functions that scan the cache map of an image and are thus relatively slow.
* [SERVER] image_markComplete now handles locking so we remove() unlockedSimon Rettberg2015-12-172-15/+18
|
* [SERVER] Cancel scanning of image dir if _shutdown is setSimon Rettberg2015-12-162-4/+8
| | | | So you can cancel image loading on startup via Ctrl-C
* [SERVER] Fix image_calcBlockCrc32: Use 64bit for fileSize paramSimon Rettberg2015-12-161-22/+27
| | | | Using uint32_t for fileSize is not too clever :(
* [SERVER] More fine grained locking for RPC; better error loggingSimon Rettberg2015-12-167-68/+143
|
* [SERVER] Update config exampleSimon Rettberg2015-12-151-2/+6
|
* [SERVER] Remove non-working images from list, plus refactoringSimon Rettberg2015-12-156-131/+315
| | | | | | | | | | Now that we can automatically load unknown images from disk on request, it makes sense to remove non-working images from the image list. On future requests, we will look for them on disk again, which is nice in case of temporary storage hickups. Also, some more ore less related locking has been refined (loading images, replicating images)
* [SERVER] Make listen port configurableSimon Rettberg2015-12-143-3/+18
|
* [SERVER] Free memory on exit to get new valgrind high scoreSimon Rettberg2015-12-141-1/+4
|
* [SERVER] Disallow images starting with "." now that we allow load-on-demandSimon Rettberg2015-12-141-1/+2
| | | | | This will prevent hidden files from being exported to clients and also prevents directory traversal attacks ( ../../image.img )
* [SERVER] Support looking on disk if an unknown image is requestedSimon Rettberg2015-12-125-28/+116
|
* [SERVER] Nullpad images virtually at runtime instead of padding the actual fileSimon Rettberg2015-12-106-173/+158Star
|
* [SERVER] Remove redundant range checkSimon Rettberg2015-12-091-8/+0Star
|
* [SERVER] Use error code constants instead of magic valuesSimon Rettberg2015-12-071-4/+4
|
* [SERVER] Add missing nullptr check from refactoring, improve lockingSimon Rettberg2015-12-071-9/+11
|
* [SERVER] Update includes for moved log.hSimon Rettberg2015-12-0210-11/+11
|
* [FUSE] Compiles againSimon Rettberg2015-11-302-238/+0Star
|
* [FUSE] Mid-refactoring, does not compileSimon Rettberg2015-11-248-306/+6Star
|
* [SERVER] Fix race condition potentially leading to use after releaseSimon Rettberg2015-11-231-2/+2
|
* [FUSE] Start refactoring so we can handle multithread fuseSimon Rettberg2015-11-217-109/+8Star
|
* [SERVER] Improve image related lockingSimon Rettberg2015-11-201-1/+7
|
* [SERVER] Check uplink server for newer revision than local if client ↵Simon Rettberg2015-11-111-15/+22
| | | | requests rid=0
* [SERVER] Fix integer overflow of global bytesReceived getterSimon Rettberg2015-05-131-1/+1
|
* [SERVER] Reload images in another thread when triggered by signalSimon Rettberg2015-05-123-38/+62
| | | | | | | The server used to reload all images on the main thread, which is also responsible for accepting connections. While reloading the list, no new connections were accepted, which lead to clients marking the server as bad during their RTT measurements, then switching away from it.
* [SERVER] Renamed image_fillJson to image_getListAsJson.Stephan Schwaer2015-05-083-3/+3
|
* [SERVER] Rename some more RPC fieldsSimon Rettberg2015-05-082-2/+2
|
* [SERVER] Add image ID for easier handling in RPC, export RID via RPC, make ↵Simon Rettberg2015-05-084-11/+17
| | | | names of the byte count fields in RPC consistent
* [SERVER] Fix premature connection close for RPC repliesSimon Rettberg2015-05-053-7/+40
|