summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* client X11: support volume keys when evdev is in useYonit Halperin2012-03-011-0/+6
| | | | | | | | Add support for sending volume keys scancodes to the guest RHBZ #552539 Signed-off-by: Yonit Halperin <yhalperi@redhat.com> (cherry picked from commit d2cd7b2b020da1dc7efe778ddfc4525e31784dbb)
* client: keyboard - add mapping for volume keysYonit Halperin2012-03-012-0/+6
| | | | | | | | | | | Add support for sending volume keys scancodes to the guest RHBZ #552539 A good reference for mapping keymaps to scancodes can be found in spice-gtk/gtk/keymaps.csv Signed-off-by: Yonit Halperin <yhalperi@redhat.com> (cherry picked from commit 68cdc5488da1a008fa4e8a4447b85aa8ac9c2735)
* Fix compilation when smartcard support is disabledChristophe Fergeau2012-03-014-0/+8
| | | | | | | The addition of smartcard control to the controller doesn't handle the case when smartcard support is disabled at compile time. When this is the case, this causes compile errors. (cherry picked from commit a50619e7334ff3620034a8b2ea75ceeffd4a805a)
* controller_test: add READMEAlon Levy2012-02-281-0/+10
|
* client controller_test: reorder parameters since pid isn't needed for linux ↵Alon Levy2012-02-281-3/+3
| | | | client test
* client: handle CONTROLLER_ENABLE_SMARTCARD (rhbz 641828)Alon Levy2012-02-284-1/+11
|
* controller_test: add ENABLE_SMARTCARDAlon Levy2012-02-281-0/+4
|
* server, separate SpiceChannelEventInfo from RedStreamAlon Levy2012-02-233-22/+30
| | | | | | | | | | 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.
* server/spicevmc: Don't destroy the rcc twiceHans de Goede2012-02-203-3/+6
| | | | | | | | | | | | | | | | | | | | | | | spicevmc calls red_channel_client_destroy() on the rcc when it disconnects since we don't want to delay the destroy until the session gets closed as spicevmc channels can be opened, closed and opened again during a single session. This causes red_channel_client_destroy() to get called twice, triggering an assert, when a connected channel gets destroyed. This was fixed with commit ffc4de01e6f9ea0676f17b10e45a137d7e15d6ac for the case where: a spicevmc channel was open on client disconnected, and the main channel disconnect gets handled first. But the channel can also be destroyed when the chardev gets unregistered with the spice-server. This path still triggers the assert. This patch fixes this by adding a destroying flag to the rcc struct, and also moves the previous fix over to the same, more clean, method of detecting this special case. Signed-off-by: Hans de Goede <hdegoede@redhat.com>
* server: support IPV6 addresses in channel events sent to qemuYonit Halperin2012-02-122-4/+23
| | | | | | | | | | RHBZ #788444 CC: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Yonit Halperin <yhalperi@redhat.com> (cherry picked from commit 5868c99da65610898202a5cc896e36e4835b5b87)
* Merge remote-tracking branch 'origin/master' into 0.100.10.1Hans de Goede2012-01-2328-73/+133
|\
| * Release 0.10.1Hans de Goede2012-01-233-2/+10
| |
| * Fix various comparison between signed and unsigned integer expressions warningsHans de Goede2012-01-234-9/+9
| | | | | | | | | | | | These turn into errors because of our -Werror use, breaking the build. Signed-off-by: Hans de Goede <hdegoede@redhat.com>
| * server/red_channel: red_peer_handle_incoming: comment on null checkAlon Levy2012-01-231-0/+2
| | | | | | | | Signed-off-by: Alon Levy <alevy@redhat.com>
| * server/tests/test_empty_success: fix warning on bzeroAlon Levy2012-01-231-0/+2
| | | | | | | | Signed-off-by: Alon Levy <alevy@redhat.com>
| * Use found python binary to check for pyparsingDan McGee2012-01-231-1/+2
| | | | | | | | | | | | | | | | | | This matches what we do in client/Makefile.am to actually run the python scripts, which is to use the python binary we find first, preferring 'python2' over 'python'. This makes the compile work on odd systems such as Arch Linux where the python binary is actually python3. Signed-off-by: Dan McGee <dpmcgee@gmail.com>
| * Remove epoll headers from client codeDan McGee2012-01-232-2/+0
| | | | | | | | | | | | | | There is no more usage of epoll on the client side, so no need to include these header files. Signed-off-by: Dan McGee <dpmcgee@gmail.com>
| * server: don't complain if setsockopt(SO_PRIORITY) call failsNahum Shalman2012-01-231-1/+7
| | | | | | | | | | | | | | | | | | | | dc7855967f4e did this for the TCP_NODELAY and IP_TOS calls; we should do it for priority as well if necessary. We also #ifdef the setting of the low-level socket priority based on whether we have a definition of SO_PRIORITY available. This option is not available on Illumos/Solaris platforms; however, since we set IP_TOS anyway it is not a big deal to omit it here.
| * server/inputs_channel: don't set O_ASYNC option on socketDan McGee2012-01-231-7/+2
| | | | | | | | | | | | | | | | output to send a SIGIO signal to the running program. However, we don't handle this signal anywhere in the code, so setting the option is unnecessary. Signed-off-by: Dan McGee <dpmcgee@gmail.com>
| * Update .gitignore with a few more generated filesDan McGee2012-01-235-0/+7
| | | | | | | | Signed-off-by: Dan McGee <dpmcgee@gmail.com>
| * Fix git commit hook errors in red_workerDan McGee2012-01-231-32/+56
| | | | | | | | | | | | | | This ensures all line lengths are down below 100 characters as well as removing some trailing spaces. Signed-off-by: Dan McGee <dpmcgee@gmail.com>
| * Fix line length errors in main_channelDan McGee2012-01-231-11/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | These are all existing errors; fix them so they don't block future commits in this file unnecessarily. error (1): length @ server/main_channel.c +369 error (2): length @ server/main_channel.c +444 error (3): length @ server/main_channel.c +764 error (4): length @ server/main_channel.c +932 error (5): length @ server/main_channel.c +1044 Signed-off-by: Dan McGee <dpmcgee@gmail.com>
| * docs/Spice_for_newbies.odt: some updates - added copy paste and wan mention, ↵Alon Levy2012-01-221-0/+0
| | | | | | | | removed vdi_port
| * server/red_channel: avoid segfault if stream == NULLAlon Levy2012-01-221-0/+4
| |
| * client/foreign_menu: arm build fixAlon Levy2012-01-221-1/+1
| |
| * import existing odt docsAlon Levy2012-01-225-0/+0
| |
| * server: Don't complain if setsockopt NODELAY fails on unix socketsHans de Goede2012-01-185-7/+19
| | | | | | | | | | | | | | | | | | | | | | | | With Daniel P. Berrange's patches to allow use of pre-supplied fd's as channels, we can no longer be sure that our connections are TCP sockets, so it makes no sense to complain if a TCP/IP specific setsockopt fails with an errno of ENOTSUP. Note that this extends Daniel's commit 492ddb5d1d595e2d12208f4602b18e4432f4e6b4 which already added the same check to server/inputs_channel.c Signed-off-by: Hans de Goede <hdegoede@redhat.com>
* | Merge remote-tracking branch 'origin/master' into 0.10Hans de Goede2012-01-18240-2932/+4060
|\|
| * Add a 'syntax-check' make targetDaniel P. Berrange2012-01-136-0/+2117
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The 'make syntax-check' target is used to perform various code style sanity checks, as well as to detect certain trivial error patterns. The target is placed in GNUmakefile, instead of Makefile.am since it relies on GNU specific make extensions. The actual GNUmakefile and maint.mk files are taken from the GNULIB project, unchanged The cfg.mk file is used to configure which of the syntax checks are activated, to allow addition of new project specific syntax checks, and to blacklist certain files which should not be checked * .mailmap: Add mapping for various broken email addrs in commit log, to stop complaints about AUTHORS file missing entries * GNUmakefile: define the 'syntax-check' rule * maint.mk: definition of standard syntax checks * cfg.mk: configuration for checks
| * Remove trailing whitespace from end of linesDaniel P. Berrange2012-01-1326-83/+82
| |
| * Replace test XXX -a YYY with test XXX && test YYYDaniel P. Berrange2012-01-131-5/+5
| | | | | | | | | | The '-a' and '-o' operators to test are not portable. Always combine two invocations of 'test' using || or && instead.
| * Add missing includes of config.hDaniel P. Berrange2012-01-1314-1/+14
| | | | | | | | Not all files were including config.h
| * Remove bogus include of strings.hDaniel P. Berrange2012-01-134-4/+0
| | | | | | | | The tests include strings.h but don't need any of its functions
| * Remove unused backup fileDaniel P. Berrange2012-01-131-1413/+0
| | | | | | | | | | The common/glc.c.save file appears to be a obsolete copy of glc.c
| * Remove trailing blank linesDaniel P. Berrange2012-01-13182-184/+1
| | | | | | | | Remove any blank lines at the end of all source files
| * Remove 'the the' typosDaniel P. Berrange2012-01-132-2/+2
| |
| * Remove unused assert.h includeDaniel P. Berrange2012-01-131-1/+0
| | | | | | | | The assert.h include was never used in any code
| * Always quote first arg to AC_DEFINEDaniel P. Berrange2012-01-131-4/+4
| | | | | | | | The first arg to AC_DEFINE should always be quoted
| * Fix up copyright decl to always use 'Copyright (C) Red Hat, Inc.'Daniel P. Berrange2012-01-134-4/+4
| | | | | | | | A couple of files were missing '(C)' in the copyright header
| * Improve usefulness of README fileDaniel P. Berrange2012-01-131-9/+77
| | | | | | | | | | | | | | The COPYING file already contains the license text, so the README file need not repeat it. Instead put in a description of what SPICE is, simple install instructions & pointers to mailing lists and bug trackers
| * Fill out the AUTHORS file with some contentDaniel P. Berrange2012-01-131-0/+33
| | | | | | | | | | | | The AUTHORS file is empty, fill it in with a list of present and past maintainers, and email addresses of all people who have contributed patches
| * Remove casts from void * with xrealloc() callsDaniel P. Berrange2012-01-131-12/+10
| | | | | | | | | | The xrealloc() function returns void*, so the return value never needs to be cast
| * Rewrite code to avoid triggering warning about casting param to free()Daniel P. Berrange2012-01-131-1/+2
| | | | | | | | | | | | | | | | Since free() takes a void* parameters do not need to be cast. The existing code here is actally fine, but it trips up the syntax-check rule, so tweak it to an equivalent construct which passes the syntax check
| * Remove useless if() before free()Daniel P. Berrange2012-01-1311-42/+16
| | | | | | | | | | The free() function allows NULL to be passed in, so any code which puts a if() before free() is wasting time
| * Death to all TABsDaniel P. Berrange2012-01-1319-877/+877
| | | | | | | | | | | | Source files should all use spaces instead of tabs for indentation. Update the few files not already in compliance
| * common/ssl_verify: special case to WIN32 that isn't MINGW32Alon Levy2012-01-131-1/+1
| |
| * common/bitops: mingw32: reorder so __GNUC__ define is checked firstAlon Levy2012-01-131-14/+14
| |
| * common/backtrace: for mingw32 no pipe/wait_pid, just disableAlon Levy2012-01-132-4/+23
| |
| * client/windows: fix several assigned but not used errorsAlon Levy2012-01-132-17/+10
| |
| * client/windows: arraysize(inf.bmiColors) == 1 in mingw32Alon Levy2012-01-132-0/+6
| |