summaryrefslogtreecommitdiff
path: root/server/reds.h
AgeCommit message (Collapse)AuthorFilesLines
2012-08-27seamless migration: pre migration phase on the src sideYonit Halperin1-2/+2
sending SPICE_MSG_MAIN_MIGRATE_BEGIN_SEAMLESS and handling SPICE_MSGC_MAIN_MIGRATE_CONNECTED_SEAMLESS The src side signals the client to establish a connection to the destination. In seamless migration, the client is also used to perform a sort of handshake with the destination, for verifying if seamless migration can be supported. see spice-protocol for more details: commit 3838ad140a046c4ddf42fef58c9727ecfdc09f9f
2012-08-27reds: add tracking for char devicesYonit Halperin1-0/+1
The list of attached char_devices will be used in the next patch for notifying each instance of SpiceCharDeviceState when the vm is started or stopped.
2012-07-03agent: use SpiceCharDeviceWriteBuffer for agent data from the clientYonit Halperin1-0/+2
This is an intermediate patch. The next patch will actually push the buffer to the device, instead of copying it.
2012-07-03agent: Fix tokens handling in main_channelYonit Halperin1-1/+2
- Allow sending tokens to a specific client. - Do not ignore tokens that are sent from the client to the server. The tokens support for multiple clients and for server side tokens is still broken in reds. It will be fixed in following patches, when the server-side agent code will use the SpiceCharDeviceState api. Notice that ignoring the server-side tokens didn't introduce a problem since both the client and the server set it to ~0.
2012-03-05Send name & uuid to capable clientsMarc-André Lureau1-0/+1
Add spice_server_set_name() and spice_server_set_uuid() that allows the client to identify a Spice server (useful to associate settings with a particular server) The SPICE_MSG_MAIN_NAME and SPICE_MSG_MAIN_UUID messages are only sent to capable clients, announcing SPICE_MAIN_CAP_NAME_AND_UUID.
2012-02-15server, separate SpiceChannelEventInfo from RedStreamAlon Levy1-1/+5
fixes rhbz 790749 use after free of SpiceChannelEventInfo. The lifetime of the SpiceChannelEventInfo was that of RedsStream, but it is used by main_dispatcher_handle_channel_event after the RedsStream is freed for the cursor and display channels. Making SCEI allocation be at RedsStream allocation, and deallocation after the DESTROY event is processed by core->channel_event, fixes use after free.
2012-01-13Remove trailing blank linesDaniel P. Berrange1-1/+0
Remove any blank lines at the end of all source files
2011-11-02server: handling semi-seamless migration in the target sideYonit Halperin1-1/+1
(1) not sending anything to a migrated client till we recieve SPICE_MSGC_MIGRATE_END (2) start a new client migration (handle client_migrate_info) only after SPICE_MSGC_MIGRATE_END from the previous migration was received for this client (3) use the correct ticket Note: we assume the same channles are linked before and ater migration. i.e., SPICE_MSGC_MAIN_ATTACH_CHANNELS is not sent from the clients.
2011-11-02server: handle spice_server_migrate_endYonit Halperin1-2/+0
If the migration has completed successfully: (1) send MSG_MAIN_MIGRATE_END to the clients that are connected to the target (2) send MSG_MAIN_SWITCH_HOST to all the other clients If the migration failed, send MSG_MAIN_MIGRATE_CANCEL to clients that are connected to the target. (cherry picked from commit 4b82580fc36228af13db4ac3c403753d6b5c40b5 branch 0.8; Was modified to support multiple clients, and the separation of main_channel from reds) Conflicts: server/reds.c
2011-11-02server,proto: tell the clients to connect to the migration target before ↵Yonit Halperin1-3/+11
migraton starts (1) send SPICE_MSG_MAIN_MIGRATE_BEGIN upon spice_server_migrate_connect (to all the clients that support it) (2) wait for SPICE_MSGC_MAIN_MIGRATE_(CONNECTED|CONNECT_ERROR) from all the relevant clients, or a timeout, in order to complete client_migrate_info monitor command (cherry picked from commit 5560c56ef05c74da5e0e0825dc1f134019593cad branch 0.8; Was modified to support the separation of main channel from reds, and multiple clients) Conflicts: server/reds.c
2011-11-02server: handle migration interface additionYonit Halperin1-0/+4
(cherry picked from commit 3ac0075cdac8fa42de47a7882022795e96cb1fee branch 0.8) Conflicts: server/reds.h
2011-09-05server: fix function prototypesChristophe Fergeau1-2/+2
Several functions in server/ were not specifying an argument list, ie they were declared as void foo(); When compiling with -Wstrict-prototypes, this leads to: test_playback.c:93:5: erreur: function declaration isn’t a prototype [-Werror=strict-prototypes]
2011-08-23server: add public spice_server_get_num_clientsAlon Levy1-0/+1
2011-08-23server: registering RedChannel in reds, instead of ChannelYonit Halperin1-24/+3
Merging the functionality of reds::channel, into RedChannel. In addition, cleanup and fix disconnection code: before this patch, red_dispatcher_disconnect_display_client could have been called from the red_worker thread (and it must be called only from the io thread). RedChannel holds only connected channel clients. RedClient holds all the channel clients that were created till it is destroyed (and then it destroys them as well). Note: snd_channel still doesn't use red_channel, however it creates dummy channel and channel clients, in order to register itself in reds. server/red_channel.c: a channel is connected if it holds at least one channel client Previously I changed RedChannel to hold only connected channel clients and RedClient, to hold all the channel clients as long as it is not destroyed. usbredir: multichannel has not been tested, it just compiles.
2011-08-23server/main_channel: support multiple clientsAlon Levy1-3/+3
The main channel deals with connecting new clients, announcing mouse mode changes, and the agent channel. The implementation is currently done without any changes to the protocol, so everything has to be either broadcast or to a specific client. channels list - specific client mouse mode - broadcast agent - broadcast notify - broadcast (should have two modes, and use the appropriate) Notable TODOs: * migration testing * agent tokens are wrongly sent (or did I fix that? check)
2011-08-23server/main_channel: move latency and bitrate to channel clientAlon Levy1-3/+0
They were globals before. This introduces api for other channels to query the low bandwidth status. The queries themselves are still done from the wrong context (channel and not channel client) but that's because the decoupling of channel and channel client will be done in the following patches. Note that snd_worker.c got two copied function declarations that belong to main_channel.h but can't be easily dragged into snd_worker.c since it still uses it's own RedChannel struct.
2011-08-23server: Add RedClientAlon Levy1-2/+4
That means RedClient tracks a ring of channels. Right now there will be only a single client because of the disconnection mechanism - whenever a new client comes we disconnect all existing clients. But this patch adds already a ring of clients to reds.c (stored in RedServer). There is a known problem handling many connections and disconnections at the same time, trigerrable easily by the following script: export NEW_DISPLAY=:3.0 Xephyr $NEW_DISPLAY -noreset & for ((i = 0 ; i < 5; ++i)); do for ((j = 0 ; j < 10; ++j)); do DISPLAY=$NEW_DISPLAY c_win7x86_qxl_tests & done sleep 2; done I fixed a few of the problems resulting from this in the same patch. This required already introducing a few other changes: * make sure all removal of channels happens in the main thread, for that two additional dispatcher calls are added to remove a specific channel client (RED_WORKER_MESSAGE_CURSOR_DISCONNECT_CLIENT and RED_WORKER_MESSAGE_DISPLAY_DISCONNECT_CLIENT). * change some asserts in input channel. * make main channel disconnect not recursive * introduce disconnect call back to red_channel_create_parser The remaining abort is from a double free in the main channel, still can't find it (doesn't happen when running under valgrind - probably due to the slowness resulting from that), but is easy to see when running under gdb.
2011-08-23server/main_channel: use MainChannel in sigAlon Levy1-0/+1
use MainChannel* instead of Channel* for a many functions in main_channel.h (affects main_channel.c and reds.c). some one liner fixes are hidden in here too.
2011-08-23server/reds.h: explicitly include config.hAlon Levy1-0/+2
2011-06-22s/__visible__/SPICE_GNUC_VISIBLEChristophe Fergeau1-1/+1
The C specification reserves use of identifiers starting with __ to the compiler so we shouldn't use one such symbol.
2011-05-03add #include <config.h> to all source filesChristophe Fergeau1-2/+0
When using config.h, it must be the very first include in all source files since it contains #define that may change the compilation process (eg libc structure layout changes when it's used to enable large file support on 32 bit x86 archs). This commit adds it at the beginning of all .c and .cpp files
2011-05-02server: s/desable/disableChristophe Fergeau1-1/+1
This fixes a typo in some function names, there should be no functional change.
2011-05-02use foo(void) instead of foo() in prototypesChristophe Fergeau1-6/+6
In C, the latter isn't a prototype for a function with no arg, but declares a function with an undefined number of args.
2011-02-28server: add SASL supportMarc-André Lureau1-0/+39
We introduce 2 public functions to integrate with the library user. spice_server_set_sasl() - turn on SASL spice_server_set_sasl_appname() - specify the name of the app (It is used for where to find the default configuration file) The patch for QEMU is on its way. https://bugs.freedesktop.org/show_bug.cgi?id=34795
2011-02-28server: add reds_channel_dispose()Marc-André Lureau1-0/+2
Try to have a common base dispose() method for channels. For now, it just free the caps. Make use of it in snd_worker, and in sync_write() - sync_write() is going to have default caps later on. https://bugs.freedesktop.org/show_bug.cgi?id=34795
2011-02-28server: rename s/peer/streamMarc-André Lureau1-1/+1
This is stylish change again. We are talking about a RedStream object, so let's just name the variable "stream" everywhere, to avoid confusion with a non existent RedPeer object. https://bugs.freedesktop.org/show_bug.cgi?id=34795
2011-02-28server/reds: remove the void* ctx fieldMarc-André Lureau1-2/+0
https://bugs.freedesktop.org/show_bug.cgi?id=34795
2011-02-28server: use the new reds_stream_{read,write}Marc-André Lureau1-5/+0
https://bugs.freedesktop.org/show_bug.cgi?id=34795
2011-02-27server: remove cb_free, not needed anymoreMarc-André Lureau1-1/+0
https://bugs.freedesktop.org/show_bug.cgi?id=34795
2011-02-27server: add reds_stream_{read,write,free,remove_watch}()Marc-André Lureau1-2/+14
https://bugs.freedesktop.org/show_bug.cgi?id=34795
2011-02-27server: s/RedsStreamContext/RedsStreamMarc-André Lureau1-4/+4
https://bugs.freedesktop.org/show_bug.cgi?id=34795
2011-02-27server/reds: remove unused readvMarc-André Lureau1-1/+0
Let's not bother with it since nobody uses it, and it's not implemented for SSL anyway https://bugs.freedesktop.org/show_bug.cgi?id=34795
2011-01-13server/reds: s/reds_push_migrate_data_item/reds_marshall_migrate_data_item/Alon Levy1-1/+1
2011-01-13server: split main_channel from redsAlon Levy1-0/+22
2010-12-07server: reds/inputs_channel: move some structs to inputs_channelAlon Levy1-12/+0
2010-12-07server: introduce inputs_channel, split from reds.cAlon Levy1-0/+8
2010-10-12server: add channel notifications.Gerd Hoffmann1-0/+2
This patch adds a channel event callback to the spice core interface. This new callback will be called for three events: (1) A new connection has been established. (2) The channel is ready (i.e. authentication is done, link message verification passed all tests, channel is ready to use). (3) Channel was disconnected. Qemu will use this to send notifications to the management app.
2010-05-21Fix spelling errors in comments and stringsAlexander Larsson1-1/+1
2010-05-19complete NetWireInterface redesign, make red_tunnel_worker.c build.Gerd Hoffmann1-1/+2
2010-05-19NetWireInterface: redesignGerd Hoffmann1-0/+4
2010-05-19TabletInterface: redesignGerd Hoffmann1-0/+4
2010-05-19QXL: redesign.Gerd Hoffmann1-0/+5
2010-05-19MouseInterface: redesignGerd Hoffmann1-0/+4
2010-05-19KeyboardInterface: redesign.Gerd Hoffmann1-0/+4
This is the direction I wanna take with all interfaces: Clearly separate interface (aka version information and function pointers) and state information. SpiceKbdInterface defines the interface, SpiceKbdInstance maintains per-instance state information. Keyboard hasn't much beside a pointer to SpiceKbdInterface, for other interfaces this very likely will be different.
2010-05-19s/CoreInterface/SpiceCoreInterface/Gerd Hoffmann1-1/+1
2010-05-19new watch api: switch liasync readGerd Hoffmann1-0/+1
2010-05-19fix visibilityGerd Hoffmann1-0/+2
2010-04-13Relicense everything from GPL to LGPL 2.1+Alexander Larsson1-9/+9
2009-10-18tunnelYonit Halperin1-0/+3
2009-10-14fresh startYaniv Kamay1-0/+70