Re: [X2Go-Dev] [X2Go-User] "connectedHost" variable contains wrong IP, reason unknown

2014-06-12 Thread Mihai Moldovan
* On 12.06.2014 01:04 am, Mike wrote: > I'm far from being any type of coder. Looks like it could be an endian issue > though. No, that doesn't make sense to me. ppc64 supports both little endian (which is compatible to x86 -- and as it works on x86, it's highly doubtful this is a little endian

Re: [X2Go-Dev] [X2Go-User] "connectedHost" variable contains wrong IP, reason unknown

2014-06-12 Thread Mihai Moldovan
Hello Sebastien Please don't mind me answering inline. * On 12.06.2014 07:28 pm, sebastien chabrolles wrote: > So, I don't say that the problem is due to Endianness, but we have to keep in > mind that fedora 20 ppc64 is BIG Endian. Yes, but big endian is fine. All those functions operate in net

[X2Go-Dev] Bug#515: [X2Go-User] "connectedHost" variable contains wrong IP, reason unknown

2014-06-13 Thread Mihai Moldovan
* On 12.06.2014 09:48 pm, Mihai Moldovan wrote: >> For the connection, I use IPV4 addresse, no hostname. There is only one IP on >> the server. > OK. I was asking because the code is calling gethostbyname() which, when > given a > host name, looks up the address of that sp

[X2Go-Dev] Bug#513: Bug#515: [X2Go-User] "connectedHost" variable contains wrong IP, reason unknown

2014-06-13 Thread Mihai Moldovan
WaitForRemote(int) is being called by nxagent/x2goagent. Thus, I should be rather debugging that and not nxproxy... smime.p7s Description: S/MIME Cryptographic Signature ___ x2go-dev mailing list x2go-dev@lists.x2go.org http://lists.x2go.org/listinfo/

[X2Go-Dev] Bug#515: [X2Go-User] "connectedHost" variable contains wrong IP, reason unknown

2014-06-13 Thread Mihai Moldovan
* On 14.06.2014 01:22 am, Mihai Moldovan wrote: > WaitForRemote(int) is being called by nxagent/x2goagent. Thus, I should be > rather debugging that and not nxproxy... Sorry for sending the last eMail to the wrong bug number, Mike. I got confused with the threads and was adding the addr

[X2Go-Dev] Bug#515: [X2Go-User] "connectedHost" variable contains wrong IP, reason unknown

2014-06-13 Thread Mihai Moldovan
Basically, the addresses Sebastien has seen were "nothing more" than uninitialized memory. The underlaying issue was that accept() wants a socklen_t *addrlen parameter. The original code created a size_t variable to store the size of the sockaddr structure where information like the IP address is

[X2Go-Dev] Bug#515: [X2Go-User] "connectedHost" variable contains wrong IP, reason unknown

2014-06-13 Thread Mihai Moldovan
Oh, and thanks again to Sebastien for providing access to a Power8 machine for debugging and building purposes! smime.p7s Description: S/MIME Cryptographic Signature ___ x2go-dev mailing list x2go-dev@lists.x2go.org http://lists.x2go.org/listinfo/x2go-

[X2Go-Dev] Bug#516: Bug#516: Bug#516: X2go successfully connects to server, but no window is shown

2014-06-14 Thread Mihai Moldovan
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Hello Mike and Sebastien, I hope I may answer. * On 15.06.2014 12:48 am, Mike Gabriel wrote: > Please use nx-libs from the nightly builds (or build it your self) and > re-test with my fixes for the xtrans code in NX/X11. (xtrans is responsible to

[X2Go-Dev] Bug#516: Bug#516: X2go successfully connects to server, but no window is shown

2014-06-20 Thread Mihai Moldovan
Hi, Well, I have done quite some work. The xkbcomp issue I've been seeing seems to be normal - other machines behave the same. It was a missing directory (keymaps.dir) in /usr/share/X11/xkb on my x86_64 machine that prevented xkbcomp from being called and a root-non-root issue regarding the file

[X2Go-Dev] Bug#516: Bug#516: Bug#516: X2go successfully connects to server, but no window is shown

2014-06-20 Thread Mihai Moldovan
Nevermind, we have a window! But the colors are all off and redrawing is broken. More bugs wait to be discovered. :) Mihai smime.p7s Description: S/MIME Cryptographic Signature ___ x2go-dev mailing list x2go-dev@lists.x2go.org http://lists.x2go.org

[X2Go-Dev] Bug#516: Bug#516: [PATCH 0/5] Introduction

2014-06-20 Thread Mihai Moldovan
The following five patches apply against the current nx-libs repository with the other full+lite patches applied. This one is required: nxagent_Window.c-ppc64-create-windows.patch Theses ones are optional, as they either don't add functionality if not building nx-libs in debug mode or only have

[X2Go-Dev] Bug#516: Bug#516: [PATCH 1/5] Create Windows on Big Endian 64bit systems

2014-06-20 Thread Mihai Moldovan
An endiannes issue was setting incorrect event masks when creating X11 windows. This time, a smaller integer has been casted to a bigger one and passed to some function actually setting its value. This meant, that garbage from stack was attached to the smaller integer value, putting unknown memor

[X2Go-Dev] Bug#516: Bug#516: [PATCH 2/5] Introduction

2014-06-20 Thread Mihai Moldovan
Fix several compile errors when specifying -DDEBUG globally. Previous GCC versions were more liberal and the code thus compiled. Also initialize/reset a count variable correctly. diff --git a/nx-X11/programs/Xserver/dix/dixfonts.c b/nx-X11/programs/Xserver/dix/dixfonts.c index b66fe23..193f555 10

[X2Go-Dev] Bug#516: Bug#516: [PATCH 3/5] Error reporting logic in keyboard section.

2014-06-20 Thread Mihai Moldovan
Don't print out nonsensical information, if there really was no error when creating the keyboard file or the other way around. Also add the reason when failing to create the keyboard file. Lastly, only print an error message if SessionPath *really* is not defined. diff --git a/nx-X11/programs/Xse

[X2Go-Dev] Bug#516: Bug#516: [PATCH 4/5] Fix issues in TEST mode in NX modules.

2014-06-20 Thread Mihai Moldovan
Check for pSrc->pDrawable to exist instead of having nxagent segfault when it does not. This enables the possibility of compiling all nxagent modules in TEST mode. diff --git a/nx-X11/programs/Xserver/hw/nxagent/Render.c b/nx-X11/programs/Xserver/hw/nxagent/Render.c index 41a1ec0..9f8c994 100644

[X2Go-Dev] Bug#516: Bug#516: [PATCH 5/5] Replace int with socklen_t and use the correct pointer version in nxtrans Xtranssock.c

2014-06-20 Thread Mihai Moldovan
While the code was working before, I'd still rather use socklen_t instead of int and not cast its address to void* but rather socklen_t*. Don't change the SVR4/SCO section, as I have no means of testing that. This patch is strictly speaking not necessary, but just a tiny bit cleaner compared to b

[X2Go-Dev] Bug#516: Bug#516: [PATCH 2/5] Introduction

2014-06-20 Thread Mihai Moldovan
The subject line should have spelled "Fix issues when globally enabling DEBUG macro.", but you'll get the idea. Sorry for having forgotten to change the subject line. smime.p7s Description: S/MIME Cryptographic Signature ___ x2go-dev mailing list x2go-

[X2Go-Dev] Bug#516: Bug#516: [PATCH 1/5] Create Windows on Big Endian 64bit systems

2014-06-21 Thread Mihai Moldovan
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 * On 21.06.2014 10:26 pm, Mike Gabriel wrote: > Maybe the same patch is needed at that second position? No. It's needed in two other places, actually. I totally didn't catch that, sorry. Let me test the changes and I'll get back with an updated p

[X2Go-Dev] Bug#516: Bug#516: [PATCH 1/5 v2] Create Windows and fix drawing issues on Big Endian 64bit systems

2014-06-21 Thread Mihai Moldovan
Multiple endiannes issues were setting incorrect event masks when creating and drawing X11 windows. This time, a smaller integer has been casted to a bigger one and passed to some function actually setting its value. This meant, that garbage from stack was attached to the smaller integer value, p

Re: [X2Go-Dev] Bug#516: [PATCH 1/5] Create Windows on Big Endian 64bit systems

2014-06-21 Thread Mihai Moldovan
* On 21.06.2014 11:11 pm, Stefan Baur wrote: > Am 21.06.2014 22:26, schrieb Mike Gabriel: >> Hi Mihai, >> thanks for digging into this. I wish you could work more on NX!!! >> Good work!!! > +1 > > And by now, I guess we can officially grant Mihai the honorary title > of "Cowbyte - the chaser of End

[X2Go-Dev] Bug#516: Bug#516: [PATCH 1/5 v2] Create Windows and fix drawing issues on Big Endian 64bit systems

2014-06-21 Thread Mihai Moldovan
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 * On 21.06.2014 11:23 pm, Mike Gabriel wrote: > Hi Mihai, > > On Sa 21 Jun 2014 23:12:59 CEST, Mihai Moldovan wrote: > >> Multiple endiannes issues were setting incorrect event masks when creating >> and >> drawing X

Re: [X2Go-Dev] Bug#522: X2Go issue (in src:x2goclient) has been marked as pending for release

2014-06-27 Thread Mihai Moldovan
I would so reject this patch. It's logically flawed. First: 106 QStringList args; 107 if ( argc > 1 ) 108 args=app.arguments(); Later: 154 if(argc <=1) 155 { 156 args=app.arguments(); 157 } Remove those two occurrences and use: 106 QStringL

Re: [X2Go-Dev] Bug#522: X2Go issue (in src:x2goclient) has been marked as pending for release

2014-06-29 Thread Mihai Moldovan
Hi Alex, * On 27.06.2014 09:36 pm, Oleksandr Shneyder wrote: > The list is never empty, it have at least 1. argument - it is always > executable name. args will be empty on OS X and Linux, if no argument has been passed to x2goclient.exe. > I'll leave my solution here, because in a case of linux

[X2Go-Dev] Bug#655: Bug#655: Tooltips flickering on java applicatoin

2014-11-01 Thread Mihai Moldovan
Brainstorming: Bmp Icons? GTK theme? Heinz oraforms information On October 24, 2014 6:14:02 PM CEST, Marco Bastianello wrote: >Package: x2goclient >Version: 4.0.3.0 > >Running an eclipse-rcp application that uses tooltips (swt). Tooltip >flash alternately with a black square >The problem occur

[X2Go-Dev] Bug#655: Bug#655: Tooltips flickering on java applicatoin

2014-11-01 Thread Mihai Moldovan
Brainstorming: VcxSrv at fault? CYGWIN X On October 24, 2014 6:14:02 PM CEST, Marco Bastianello wrote: >Package: x2goclient >Version: 4.0.3.0 > >Running an eclipse-rcp application that uses tooltips (swt). Tooltip >flash alternately with a black square >The problem occurs when using the x2g

[X2Go-Dev] Bug#654: Bug#654: java application missing icons on menus

2014-11-21 Thread Mihai Moldovan
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 24.10.2014 06:04 pm, Marco Bastianello wrote: > Package: x2goclient > Version: 4.0.3.0 > > Running an eclipse-rcp application there are no icons on menus and popup-menus (right click) > The problem occurs when using the x2go "single application"

[X2Go-Dev] Bug#679: generate man pages via help2man or asciidoc or ... (TBD)

2014-11-22 Thread Mihai Moldovan
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Package: x2goserver Version: 4.1.0.0-preview Severity: wishlist Owner: io...@ionic.de troff is a waste of time and impedes documentation by being obscure and requiring real training at first. Rewrite man pages in plain text format and use help2man

[X2Go-Dev] Bug#282: Bug#282: Use client-side LANG + LC_* settings in server session

2014-11-23 Thread Mihai Moldovan
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 02.08.2013 09:39 am, Mike Gabriel wrote: > When I use a terminal shell emulator (konsole, xfce-emulator, etc) on the > remote (server x2go), non-ascii characters (accented characters, for > instance) are not well printed. > > The same thing happe

[X2Go-Dev] Bug#679: Bug#679: generate man pages via help2man or asciidoc or ... (TBD)

2014-11-26 Thread Mihai Moldovan
On November 27, 2014 5:20:09 AM CET, Mike Gabriel wrote: >However, this seems so >low-prio, I am tempted to close this bug and tag it as "wontfix". That's why I set myself as bug owner. Don't worry about it. Mihai ___ x2go-dev mailing list x2go-d

[X2Go-Dev] [git repositories] New branching concept

2015-01-10 Thread Mihai Moldovan
Hi, This information targets all users with commit privileges to the official x2go repositories. Coming up soon™, new branching policies will be in effect. TLDR: DO: - create feature branches as "feature/" - comment on need for "bugfix/" branches - rebase your feature branches against mas

[X2Go-Dev] Bug#744: Bug#744: user-local keystrokes.cfg does not work

2015-01-15 Thread Mihai Moldovan
On 15.01.2015 04:10 PM, Horst Schirmeier wrote: > debian/wrappers/x2goagent | 12 ++-- > 1 file changed, 10 insertions(+), 2 deletions(-) > > diff --git a/debian/wrappers/x2goagent b/debian/wrappers/x2goagent > index 129c7ca..750c651 100644 > --- a/debian/wrappers/x2goagent > +++ b/debian/

[X2Go-Dev] Bug#744: Bug#744: user-local keystrokes.cfg does not work

2015-01-16 Thread Mihai Moldovan
On 16.01.2015 03:11 PM, Horst Schirmeier wrote: > How about this variant? > > patch for x2go-specific keystroke configuration files, enable user-local > keystrokes.cfg > --- > ...agent_x2go-specific-keystroke-config.full.patch | 22 > ++ > debian/patches/series

[X2Go-Dev] Bug#744: Bug#744: user-local keystrokes.cfg does not work

2015-01-16 Thread Mihai Moldovan
On 15.01.2015 11:56 PM, Mike Gabriel wrote: > Thanks for your patch, Horst. I totally forgot about that. Thanks. >> Do we actually WANT to make ~/.nx/foo override /etc/x2go/foo *for > > First: We want to allow users to override system-wide settings by > user settings. Yes, my point was explicit

Re: [X2Go-Dev] X2Go Readme.i18n files

2015-01-20 Thread Mihai Moldovan
On 20.01.2015 04:12 PM, Mike Gabriel wrote: > [...] provided Readme.i18n files for various X2Go components (not sure how > many of those are in the .rar file). > > Could you commit them to Git? Ok, on todo short list for whenever I get home. Thanks. Mihai P.S.: rar?! signature.asc Descr

Re: [X2Go-Dev] X2Go Readme.i18n files

2015-01-20 Thread Mihai Moldovan
On 20.01.2015 05:03 PM, Mike Gabriel wrote: > On Di 20 Jan 2015 16:52:33 CET, Mihai Moldovan wrote: > >> On 20.01.2015 04:12 PM, Mike Gabriel wrote: >>> [...] provided Readme.i18n files for various X2Go components >>> (not sure how many of those are in the .rar f

[X2Go-Dev] Bug#753: Bug#753: Update mail alias git-ad...@x2go.org

2015-01-20 Thread Mihai Moldovan
On 20.01.2015 10:15 PM, Mike Gabriel wrote: > @Mihai: please let Heinz know via this bug report, where he should > forward those mails. My normal address will do fine, thanks. Mihai signature.asc Description: OpenPGP digital signature ___ x2go-dev

Re: [X2Go-Dev] Bug#742: Executing parec seems unnecessary now that X2Go Client for Windows 4.0.3.0 uses PulseAudio 5.0

2015-01-24 Thread Mihai Moldovan
On 25.01.2015 01:11 AM, Michael DePaulo wrote: > Also, I did not bother to update the changelog because I feel this is > a very minor change, and I do not want to bombard users with too many > details in the changelog. I will confirm on x2go-project that doing so > is OK. Please do document the ch

Re: [X2Go-Dev] [X2Go-Project] RfC: How should X2Go handle commercial offers/sponsorships and discussions related to that?

2015-01-27 Thread Mihai Moldovan
On 27.01.2015 06:37 PM, Stefan Baur wrote: > Am 27.01.2015 um 17:02 schrieb Short, Kermit: > >> I work for a federal nuclear research laboratory in the US. If my >> participation here causes conflict, please let me know. > > That is what I don't want to get my hands involved in when it comes > to m

Re: [X2Go-Dev] [X2Go-Project] RfC: How should X2Go handle commercial offers/sponsorships and discussions related to that?

2015-01-27 Thread Mihai Moldovan
On 27.01.2015 08:05 PM, Stefan Baur wrote: > Since we do offer a Windows client, you cannot be sure of that. > In fact, they may be using X2Go to do some less important stuff on a > remote Linux box while running their reactor control on some Windows > variant trojanized by Stuxnet. That's very va

[X2Go-Dev] Bug#753: Bug#753: Update mail alias git-ad...@x2go.org

2015-01-28 Thread Mihai Moldovan
On 20.01.2015 11:41 PM, Mihai Moldovan wrote: > On 20.01.2015 10:15 PM, Mike Gabriel wrote: >> @Mihai: please let Heinz know via this bug report, where he should >> forward those mails. > My normal address will do fine, thanks. Actually, please use ionic+x2gogitad...@ionic.

[X2Go-Dev] packages.x2go.org now providing source RPM's

2015-01-28 Thread Mihai Moldovan
Hi, I'm proud to announce that packages.x2go.org is now additionally providing source RPM's for RPM-based distros. I have also updated the documentation on http://wiki.x2go.org/doku.php/wiki:development:nightly-builds to reflect the changes. Mihai signature.asc Description: OpenPGP digital

Re: [X2Go-Dev] [X2Go-Project] Invitation

2015-01-30 Thread Mihai Moldovan
On 30.01.2015 01:25 PM, Heinz-M. Graesing wrote: > I'm happy to announce that it will be possible for me to invite you > (developers) to our first interactive online meeting next Thursday > (2015-02-05) 4pm to 6pm. ACK. > So as the most of us are already meet on on our IRC channel, I would > sug

[X2Go-Dev] Bug#776: Bug#776: nx-X11: Size of pointer 'server_support' used instead of size of its data

2015-01-31 Thread Mihai Moldovan
If I may... On 31.01.2015 10:24 PM, Heinrich Schuchardt wrote: > In the last year a lot of security relevant errors were discovered and > fixed in the x-server code. What is the policy of the x2go project? Do > you want to rebase the nx-libs package on current xorg code? Do you > plan to support W

Re: [X2Go-Dev] [X2Go-Project] Invitation

2015-02-02 Thread Mihai Moldovan
On 02.02.2015 10:06 AM, Mike Gabriel wrote: > On Mo 02 Feb 2015 09:07:21 CET, Stefan Baur wrote: > >> Am 30.01.2015 um 13:25 schrieb Heinz-M. Graesing: >>> So as the most of us are already meet on on our IRC channel, I >>> would suggest to meet there as a fall-back. >> >> Would you please clarify

Re: [X2Go-Dev] [X2Go-Project] Invitation

2015-02-02 Thread Mihai Moldovan
On 30.01.2015 01:37 PM, Mike Gabriel wrote: > On Fr 30 Jan 2015 13:25:08 CET, Heinz-M. Graesing wrote: > >> (2015-02-05) 4pm to 6pm > > works for me if it is UTC time. Really, what reference timezone did you mean? Mihai signature.asc Description: OpenPGP digital signature __

[X2Go-Dev] Bug#653: Bug#653: X2go and jetbrains java applications

2015-02-03 Thread Mihai Moldovan
On 03.02.2015 01:58 PM, Александр Демидов wrote: > > Bug in openjdk platform > > https://bugs.openjdk.java.net/browse/JDK-7172749 > Bug #653 is so far specific to IBM's SDK and was not reproducible on other systems. It also only affects the splashscreen of the very special Eclipse-based applicatio

Re: [X2Go-Dev] [X2Go-Project] upcoming releases for nearly all X2Go components

2015-02-06 Thread Mihai Moldovan
On 06.02.2015 06:13 AM, Mike Gabriel wrote: > @Heinz, Mihai: who of you is available for doing the next releases > with me? I probably am, depending on when you'll actually do it. Preferably not Tue or Wed. > @Stefan, Heinz, Alex, Mihai: What is your opinion about releasing X2Go > Server 4.1.0.0

[X2Go-Dev] Bug#783: Bug#783: Bug#783: RPM Pre Script fail on Upgrade (Nightly)

2015-02-09 Thread Mihai Moldovan
Control: close -1 Thanks On 09.02.2015 02:07 PM, Mike Gabriel wrote: > On Mo 09 Feb 2015 12:49:16 CET, Schlomo Schapiro wrote: > >> Package: x2goserver >> Version: 4.1.0.0-0.0x2go1.0.git20150201.1236.heuler.el6 > Yep, should already have been fixed for several days by [1]. > [1] > http://code.x2

Re: [X2Go-Dev] CUPS-X2Go (3.0.1.1) released

2015-02-10 Thread Mihai Moldovan
On 11.02.2015 12:30 AM, Orion Poplawski wrote: > On 02/10/2015 01:24 PM, Mihai Moldovan wrote: >> Dear all >> >> The X2Go project is proud to announce a new release of the X2Go >> component ,,cups-x2go''. >> >> [...] >>* cups-x2go.spec:

Re: [X2Go-Dev] CUPS-X2Go (3.0.1.1) released

2015-02-10 Thread Mihai Moldovan
One more thing. As those issues have no functional impact, I'd like to not re-release this package. Is this OK with you? Mihai signature.asc Description: OpenPGP digital signature ___ x2go-dev mailing list x2go-dev@lists.x2go.org http://lists.x2go.

Re: [X2Go-Dev] CUPS-X2Go (3.0.1.1) released

2015-02-10 Thread Mihai Moldovan
On 11.02.2015 02:22 AM, Mihai Moldovan wrote: > On 11.02.2015 12:30 AM, Orion Poplawski wrote: >> Also, FYI: >> - on Fedora ssh is in openssh-clients. > Thanks. Does that hold for all versions? Fixed by commit: http://code.x2go.org/gitweb?p=cups-x2go.

Re: [X2Go-Dev] CUPS-X2Go (3.0.1.1) released

2015-02-11 Thread Mihai Moldovan
On 11.02.2015 12:53 PM, Mike Gabriel wrote: > On Mi 11 Feb 2015 00:30:45 CET, Orion Poplawski wrote: >> I don't understand the reason for this change, it seems clearly to be >> a noarch >> package. > > see > https://jenkins.x2go.org:8443/view/CUPS/job/cups-x2go+nightly+sles-11.3/1/console > > """

[X2Go-Dev] Bug#788: Bug#788: Bug#788: Pyhoca-Gui freezes when connection to desktop

2015-02-13 Thread Mihai Moldovan
On 13.02.2015 01:40 PM, Ja Bi wrote: > > Does not ring a bell. "reassign" is some command??? > Yes, it's a command for the Debian Bugtracker. Feel free to ignore it. Down in his message, Mike asked some questions: > PyHoca-GUI with wxPython 3.0 and python-gevent << 1.0 (strictly less!) > behaves

Re: [X2Go-Dev] [X2Go-Commits] [nx-libs] 12/52: Move COPYING.full+lite as COPYING to /

2015-02-15 Thread Mihai Moldovan
On 14.02.2015 05:47 PM, git-ad...@x2go.org wrote: > This is an automated email from the git hooks/post-receive script. > > x2go pushed a commit to branch 3.6.x > in repository nx-libs. > > commit 902dc519d96be582088e5fe0644cefac7ecc0133 > Author: Mike Gabriel > Date: Sat Feb 14 15:58:11 2015 +01

Re: [X2Go-Dev] [X2Go-Commits] [nx-libs] 13/52: LZW decompress: fix for CVE-2011-2895 From xorg/lib/Xfont commit d11ee5886e9d9ec610051a206b135a4cdc1e09a0

2015-02-15 Thread Mihai Moldovan
On 14.02.2015 05:47 PM, git-ad...@x2go.org wrote: > This is an automated email from the git hooks/post-receive script. > > x2go pushed a commit to branch 3.6.x > in repository nx-libs. > > commit af55da1e9c1a6a352b24823a8f7062c288ffbbc0 > Author: Mike DePaulo > Date: Sun Feb 8 19:15:20 2015 -050

Re: [X2Go-Dev] [X2Go-Commits] [nx-libs] 19/52: CVE-2014-0210: unvalidated length in _fs_recv_conn_setup() from xorg/lib/libXfont commit 891e084b26837162b12f841060086a105edde86d

2015-02-15 Thread Mihai Moldovan
On 14.02.2015 05:47 PM, git-ad...@x2go.org wrote: > This is an automated email from the git hooks/post-receive script. > > x2go pushed a commit to branch 3.6.x > in repository nx-libs. > > commit 94c6de0649cd295044b1e4ff7265949c9c787519 > Author: Mike DePaulo > Date: Sun Feb 8 21:03:33 2015 -050

Re: [X2Go-Dev] [X2Go-Commits] [nx-libs] 23/52: CVE-2014-0210: unvalidated length fields in fs_read_query_info() from xorg/lib/libXfont commit 491291cabf78efdeec8f18b09e14726a9030cc8f

2015-02-15 Thread Mihai Moldovan
On 14.02.2015 05:47 PM, git-ad...@x2go.org wrote: > This is an automated email from the git hooks/post-receive script. > > x2go pushed a commit to branch 3.6.x > in repository nx-libs. > > commit c6aebf9284855a0e24ad9c5ffdd36aa65e16bec7 > Author: Mike DePaulo > Date: Sun Feb 8 22:08:09 2015 -050

Re: [X2Go-Dev] [X2Go-Commits] [nx-libs] 23/52: CVE-2014-0210: unvalidated length fields in fs_read_query_info() from xorg/lib/libXfont commit 491291cabf78efdeec8f18b09e14726a9030cc8f

2015-02-15 Thread Mihai Moldovan
On 15.02.2015 09:13 PM, Michael DePaulo wrote: > Would you mind making a follow-up commit? Will do (later), but only once I'm through all the other commits. signature.asc Description: OpenPGP digital signature ___ x2go-dev mailing list x2go-dev@lists

Re: [X2Go-Dev] [X2Go-Commits] [nx-libs] 13/52: LZW decompress: fix for CVE-2011-2895 From xorg/lib/Xfont commit d11ee5886e9d9ec610051a206b135a4cdc1e09a0

2015-02-15 Thread Mihai Moldovan
On 15.02.2015 09:15 PM, Michael DePaulo wrote: > On Sun, Feb 15, 2015 at 3:01 PM, Michael DePaulo wrote: >> On Sun, Feb 15, 2015 at 2:11 PM, Mihai Moldovan wrote: >>> On 14.02.2015 05:47 PM, git-ad...@x2go.org wrote: >>>> [...] >>>> diff --git a/nx-X11

Re: [X2Go-Dev] [X2Go-Commits] [nx-libs] 27/52: CVE-2014-0210: unvalidated length fields in fs_read_glyphs() from xorg/lib/libXfont commit 520683652564c2a4e42328ae23eef9bb63271565

2015-02-15 Thread Mihai Moldovan
On 14.02.2015 05:47 PM, git-ad...@x2go.org wrote: > This is an automated email from the git hooks/post-receive script. > > x2go pushed a commit to branch 3.6.x > in repository nx-libs. > > commit ece51493f1d970f45e53588e33a700464a42fbab > Author: Mike DePaulo > Date: Sun Feb 8 22:27:47 2015 -050

Re: [X2Go-Dev] [X2Go-Commits] [nx-libs] 28/52: CVE-2014-0210: unvalidated length fields in fs_read_list() from xorg/lib/libXfont commit 5fa73ac18474be3032ee7af9c6e29deab163ea39

2015-02-15 Thread Mihai Moldovan
On 14.02.2015 05:47 PM, git-ad...@x2go.org wrote: > This is an automated email from the git hooks/post-receive script. > > x2go pushed a commit to branch 3.6.x > in repository nx-libs. > > commit ef439da38d3a4c00a4e03e7d8f83cb359cd9a230 > Author: Mike DePaulo > Date: Sun Feb 8 22:35:21 2015 -050

Re: [X2Go-Dev] [X2Go-Commits] [nx-libs] 29/52: CVE-2014-0210: unvalidated length fields in fs_read_list_info() from xorg/lib/libXfont commit d338f81df1e188eb16e1d6aeea7f4800f89c1218

2015-02-15 Thread Mihai Moldovan
On 14.02.2015 05:47 PM, git-ad...@x2go.org wrote: > This is an automated email from the git hooks/post-receive script. > > x2go pushed a commit to branch 3.6.x > in repository nx-libs. > > commit b65259bf3bcca15b5069cb7a6c06f95a40f79813 > Author: Mike DePaulo > Date: Sun Feb 8 22:38:32 2015 -050

Re: [X2Go-Dev] [X2Go-Commits] [nx-libs] 32/52: dix: integer overflow in GetHosts() [CVE-2014-8092 2/4]

2015-02-15 Thread Mihai Moldovan
On 14.02.2015 05:47 PM, git-ad...@x2go.org wrote: > This is an automated email from the git hooks/post-receive script. > > x2go pushed a commit to branch 3.6.x > in repository nx-libs. > > commit d4c76981f7fddb364166464c571ed8d3de3086cd > Author: Alan Coopersmith > Date: Mon Jan 6 23:30:14 2014

Re: [X2Go-Dev] [X2Go-Commits] [nx-libs] 44/52: glx: Be more strict about rejecting invalid image sizes [CVE-2014-8093 2/6]

2015-02-15 Thread Mihai Moldovan
On 14.02.2015 05:47 PM, git-ad...@x2go.org wrote: > This is an automated email from the git hooks/post-receive script. > > x2go pushed a commit to branch 3.6.x > in repository nx-libs. > > commit cdf0c3e65670c797a4fd0617d44d2bdff4011815 > Author: Adam Jackson > Date: Mon Nov 10 12:13:37 2014 -05

Re: [X2Go-Dev] [X2Go-Commits] [nx-libs] 51/52: glx: Length checking for RenderLarge requests (v2) [CVE-2014-8098 3/8] (v3)

2015-02-15 Thread Mihai Moldovan
On 14.02.2015 05:47 PM, git-ad...@x2go.org wrote: > This is an automated email from the git hooks/post-receive script. > > x2go pushed a commit to branch 3.6.x > in repository nx-libs. > > commit 9c558f9ca2c0d4e34fa71dff272ed1c39c22cd9d > Author: Adam Jackson > Date: Mon Nov 10 12:13:43 2014 -05

Re: [X2Go-Dev] [X2Go-Commits] [nx-libs] branch 3.6.x updated (1fd8551 -> 1ea1cd8)

2015-02-15 Thread Mihai Moldovan
Everything not mentioned looks either fine or rather passes basic sanity and plausibility checks. signature.asc Description: OpenPGP digital signature ___ x2go-dev mailing list x2go-dev@lists.x2go.org http://lists.x2go.org/listinfo/x2go-dev

Re: [X2Go-Dev] [X2Go-Commits] [nx-libs] 12/52: Move COPYING.full+lite as COPYING to /

2015-02-15 Thread Mihai Moldovan
On 16.02.2015 04:59 AM, Mike Gabriel wrote: > This is work not yet finished. I have it on my agenda to create a > complete debian/copyright file. > > When that is done, I may re-add various license files. OK. It just looked somewhat "forgotten", that's why I brought it up. > Note, that I only re

Re: [X2Go-Dev] Where can I download the NXagent source code?

2015-02-15 Thread Mihai Moldovan
On 16.02.2015 05:03 AM, Chernousov Anton wrote: > I trying to compile from source x2goserver and can't find GIT > repository for nxagent. Please tell me where it is. :) > > Thank you for your assistance. nxagent is contained in the nx-libs repository at http://code.x2go.org/gitweb?p=nx-libs.git;a=

Re: [X2Go-Dev] [X2Go-Commits] [nx-libs] 23/52: CVE-2014-0210: unvalidated length fields in fs_read_query_info() from xorg/lib/libXfont commit 491291cabf78efdeec8f18b09e14726a9030cc8f

2015-02-15 Thread Mihai Moldovan
On 15.02.2015 09:17 PM, Mihai Moldovan wrote: > Will do (later), but only once I'm through all the other commits. http://code.x2go.org/gitweb?p=nx-libs.git;a=commitdiff;h=e29bbd5bf0565eaf7c02f85a57b87f66531fa6b3;hp=5fc2f57fb5520bb61e2c1f8b6fd2522b203b3b9d signature.asc Description:

Re: [X2Go-Dev] [X2Go-Commits] [nx-libs] 19/52: CVE-2014-0210: unvalidated length in _fs_recv_conn_setup() from xorg/lib/libXfont commit 891e084b26837162b12f841060086a105edde86d

2015-02-15 Thread Mihai Moldovan
On 15.02.2015 09:10 PM, Michael DePaulo wrote: > I am actually not sure, I need to learn memory management better. > > The upstream commit uses and free(alts), and malloc is used before it: > http://cgit.freedesktop.org/xorg/lib/libXfont/commit/?id=891e084b26837162b12f841060086a105edde86d > And tha

Re: [X2Go-Dev] [X2Go-Commits] [nx-libs] 13/52: LZW decompress: fix for CVE-2011-2895 From xorg/lib/Xfont commit d11ee5886e9d9ec610051a206b135a4cdc1e09a0

2015-02-15 Thread Mihai Moldovan
On 15.02.2015 09:15 PM, Michael DePaulo wrote: > On a related note, upstream has this follow-up commit: > http://cgit.freedesktop.org/xorg/lib/libXfont/commit/?id=bd48ad11fd11412c62c3ac8ed5d52c4f10a985aa > > It was not backported to RHEL5 though. http://code.x2go.org/gitweb?p=nx-libs.git;a=commitd

Re: [X2Go-Dev] [X2Go-Commits] [nx-libs] 32/52: dix: integer overflow in GetHosts() [CVE-2014-8092 2/4]

2015-02-15 Thread Mihai Moldovan
On 15.02.2015 10:32 PM, Mihai Moldovan wrote: > Not an error: I'd change the number "1048576" to "1024*1024", because > "1048576" is not easily recognized as 1 MB while the latter is more > clear (and the compiler statically optimizes it at compile/pre

Re: [X2Go-Dev] [X2Go-Commits] [nx-libs] 28/52: CVE-2014-0210: unvalidated length fields in fs_read_list() from xorg/lib/libXfont commit 5fa73ac18474be3032ee7af9c6e29deab163ea39

2015-02-16 Thread Mihai Moldovan
On 16.02.2015 09:29 AM, Ulrich Sibiller wrote: > On Sun, Feb 15, 2015 at 10:02 PM, Mihai Moldovan wrote: >> Just as a heads-up: I would have moved this into the for loop condition >> like so: > The code might offer a lot of possibilities for improvement. However, > as all thi

[X2Go-Dev] Bug#790: Add language chooser to X2GoClient

2015-02-16 Thread Mihai Moldovan
package: x2goclient severity: wishlist On local desktops, the login manager allows users to choose a GUI language. X2GoClient, which is basically our login manager replacement (even in non-TCE mode) lacks such an option. Since we offer an option to switch the keyboard layout, a similar option to

Re: [X2Go-Dev] Status of fixing CVE-2015-0255 (2015-02-10)

2015-02-17 Thread Mihai Moldovan
On 17.02.2015 02:39 PM, Michael DePaulo wrote: > On Mon, Feb 16, 2015 at 8:14 AM, Michael DePaulo wrote: >> I am looking into fixing the recently announced X.org vulnerability >> (CVE-2015-0255) in nx-libs. >> http://www.x.org/wiki/Development/Security/Advisory-2015-02-10/ >> >> It looks like nx-l

Re: [X2Go-Dev] Status of fixing CVE-2015-0255 (2015-02-10)

2015-02-17 Thread Mihai Moldovan
On 18.02.2015 03:30 AM, Michael DePaulo wrote: > Done. > > I had to backport 2 more commits as prereqs. However, they are non-intrusive. > > I will wait for review (e.g., from Mihai) before backporting from > 3.6.x to 3.5.0.x. Everything looks sane. Nitpick: a little bit of mismatching whitespace

[X2Go-Dev] Preview of X2Go Client 4.0.3.2 available

2015-02-17 Thread Mihai Moldovan
Hi all I am happy to announce a preview of X2Go Client 4.0.3.2 based on on my bugfix/osx branch based on my feature/cleanup branch based on current master. This pre-release includes a fix for the problem of X2Go Client deadlocking when trying to establish more than one session sequentially. Plea

Re: [X2Go-Dev] X.org Coverity fixes (from 2006) & nx-libs

2015-02-17 Thread Mihai Moldovan
On 18.02.2015 04:12 AM, Michael DePaulo wrote: > While I was backporting the CVE-2015-0255 fix from X.org to nx-libs, I > noticed that there were a ton of Coverity fixes from 2006 in the X.org > Xserver: > http://cgit.freedesktop.org/xorg/xserver/log/?qt=grep&q=Coverity > > I backported only one of

Re: [X2Go-Dev] versioning of X2Go Client

2015-02-17 Thread Mihai Moldovan
On 18.02.2015 06:09 AM, Mike Gabriel wrote: > my recommendations for X2Go Client versioning: > > o release X2Go Client as is on Git master as 4.0.3.2 > o merge feature/cleanup branch to master (discussion at our next > meeting) > o version bump to 4.0.4.0 > o release 4.0.4.0 whenever it sui

[X2Go-Dev] Generic Release Steps Documented on the Wiki

2015-02-18 Thread Mihai Moldovan
Hi As promised, I have documented the generic release steps on this wiki page: http://wiki.x2go.org/doku.php/wiki:development:release-howto Also, this howto is accessible via http://wiki.x2go.org/doku.php/wiki:development:start There's probably still room for improvement and I will add more docu

[X2Go-Dev] Bug#792: Error message from X2Go Client when XQuartz is not installed is unclear.

2015-02-18 Thread Mihai Moldovan
Package: x2goclient Version: 4.0.3.2-preview1 Severity: normal Owner: io...@ionic.de The error messages that pop up when XQuartz is not installed is currently "x2oclient could not find any suitable X11 Application. ..." followed by "You are using X11 (Apple X-Window Server) version ... This vers

[X2Go-Dev] Bug#794: Error message regarding a missing host public key should be non-modal.

2015-02-18 Thread Mihai Moldovan
Package: x2goclient Version: 4.0.3.2-preview1 Severity: normal Owner: io...@ionic.de The error message that pops up when remote printing or file sharing is enabled and the (client's) host public key does not exist is currently modal. This makes the client hang upon connecting until the user clos

[X2Go-Dev] Bug#793: Clarify error message regarding a missing host public key.

2015-02-18 Thread Mihai Moldovan
Package: x2goclient Version: 4.0.3.2-preview1 Severity: normal Owner: io...@ionic.de The error message that pops up when remote printing or file sharing is enabled and the (client's) host public key does not exist is currently "SSH daemon failed to open the application's public host key." This

Re: [X2Go-Dev] x2go repo error for redhat 5.11

2015-02-19 Thread Mihai Moldovan
Hi Alain On 16.02.2015 10:39 PM, Desmeules, Alain wrote: > I try install x2go server on redhat 5.11 and the repository have an error. > > > > Here the configuration on > http://wiki.x2go.org/doku.php/wiki:repositories:epel > > > > [x2go-releases] > > name=Upstream X2Go Packages (release build

[X2Go-Dev] "features/cleanup" (and "bugfix/osx") branch in x2goclient.git

2015-02-19 Thread Mihai Moldovan
Hi all For the last couple of weeks, I've been working on the OS X side of X2Go Client, as some of you may or may not have noticed. Part of that work was a restructuring of the x2goclient.git repository. I started forking master to features/cleanup, gradually moved files around into new sub-direc

Re: [X2Go-Dev] x2go repo error for redhat 5.11

2015-02-20 Thread Mihai Moldovan
Hi Alain, On 20.02.2015 03:55 PM, Desmeules, Alain wrote: > No, sorry. Same error. > > [...] > http://packages.x2go.org/epel/5Server/main/x86_64/repodata/e962d2acb73446622c19c2758a80bc5b5c6c983bf3e86f31a839e416fbda5629-primary.sqlite.bz2: > [Errno -3] Error performing checksum > Trying other mi

Re: [X2Go-Dev] Bug#788: Bug#788: Pyhoca-Gui freezes when connection to desktop

2015-02-21 Thread Mihai Moldovan
Hi Sorry for the delay. I've noticed your message the first time around, but given that gevent is recent enough, I didn't have any additional information. I can only suggest to start pyhoca-gui with the additional parameters --debug and --libdebug to see what is going on (if anything.) Disclaime

[X2Go-Dev] Bug#788: Bug#788: Bug#788: Pyhoca-Gui freezes when connection to desktop

2015-02-22 Thread Mihai Moldovan
On 22.02.2015 02:03 AM, Ja Bi wrote: > Libdebug shows nothing...:( Neither --debug nor --libdebug shed any light? Ok. Just to rule out a server-side problem: have you already tried x2goclient connecting to the same box? Does this work as expected? Mihai signature.asc Description: OpenPGP di

[X2Go-Dev] Bug#788: Bug#788: Bug#788: Pyhoca-Gui freezes when connection to desktop

2015-02-22 Thread Mihai Moldovan
On 23.02.2015 06:37 AM, Mike Gabriel wrote: > the above is an issue with old Python Gevent (<< 1.0.0) and wxPython 3.x. > > Upgrading Python Gevent to a version >= 1.0.0 helps. I tried to > provide that version in our .deb archives. Not sure about other > distros (RPM-based). But the user is using

Re: [X2Go-Dev] [git repositories] New branching concept

2015-02-23 Thread Mihai Moldovan
Hi, I am pleased to let you know, that the new branching concept will be effective starting now. I have reworked the git hooks and changed the repositories accordingly. Additionally, the git hooks are now available publicly from http://code.x2go.org/gitweb?p=maintenancescripts.git;a=tree;f=git/

Re: [X2Go-Dev] [X2Go-User] use ssh proxy with x2go firefox plugin

2015-02-24 Thread Mihai Moldovan
On 24.02.2015 01:45 PM, nicolas husson wrote: > I copy the session file of my x2goclient inside the /var/www > of my server, in the part x2goconfig and add > "server= @Serverx2goIp". > > Then when I reach the web server of my x2goServer and launch the config It > failed with the error 'connection

[X2Go-Dev] Bug#788: Bug#788: Pyhoca-Gui freezes when connection to desktop

2015-02-24 Thread Mihai Moldovan
On 24.02.2015 10:45 AM, Ja Bi wrote: > Exactly. I tried to use x2goclient, but the dependecies (here on > gento) to qt are huge (i tried to avoid this qt stuff) so i don`t > really want to install it:( (maybe if i find some binaries) or try > from windows or different linux. Testing with x2goclien

Re: [X2Go-Dev] [Bug#798] Use of ssh proxy with x2goplugin

2015-02-25 Thread Mihai Moldovan
On 25.02.2015 04:36 PM, Mike Gabriel wrote: > yes. Please send your patch as mail attachment to 7...@bugs.x2go.org. This bug number does not exist. Nicolas, please submit your patch to x2go-dev@lists.x2go.org and next time follow the procedure for reporting bugs described here: http://bugs.x2go.o

[X2Go-Dev] Bug#798: Bug#798: Fwd: Bugs report using ssh proxy with x2goplugin

2015-02-26 Thread Mihai Moldovan
Control: reassign -1 x2goplugin 4.0.3.2 Control: retitle -1 X2Go Plugin does not honor SSH proxy settings Control: severity -1 normal Control: owner -1 io...@ionic.de Thanks On 26.02.2015 03:51 PM, nicolas husson wrote: > This is why I think that x2goplugin doesn't work with ssh proxy. > > Attach

[X2Go-Dev] Bug#788: Bug#788: Pyhoca-Gui freezes when connection to desktop

2015-02-26 Thread Mihai Moldovan
On 24.02.2015 04:59 PM, Ja Bi wrote: > I am trying with pyhoca client from windows7 and from gentoo and it is > the same... I wasn't able to reproduce your problem on my machine. This is, however, not, because I wasn't able to reproduce the bug per se, but because my nxagent is crashing once I cli

[X2Go-Dev] Bug#788: Bug#788: Bug#788: Pyhoca-Gui freezes when connection to desktop

2015-02-27 Thread Mihai Moldovan
On 27.02.2015 10:18 PM, Mike Gabriel wrote: > On Do 26 Feb 2015 18:11:22 CET, Mihai Moldovan wrote: > >> Gentoo seems to be doing some weird stuff anyway (like not using nxagent >> in "x2goagent mode" for X2Go). I will have to look into that some time >> next w

[X2Go-Dev] Bug#788: Bug#788: Bug#788: Pyhoca-Gui freezes when connection to desktop

2015-03-01 Thread Mihai Moldovan
On 01.03.2015 12:02 PM, Ja Bi wrote: > Ok, probably solved. > > I removed /etc/x2go/xinitrc.d/vmware-xsession-gdm.sh > and now it works as it should. Wait, did you complete remove it? x2goserver 4.0.1.19[1] should have fixed such problems (it's also available in Gentoo as of a few days) so there'

[X2Go-Dev] 2nd Online ΞX2Go Developer Meeting (2015-03-05/4pm) (was: 2nd Online ΞX2Go Developer Meeting (2015-02-5/4pm))

2015-03-01 Thread Mihai Moldovan
Hi all This is an amendment to the previous announcement. The correct date of course is March 3rd 2015. Best, Mihai On 01.03.2015 07:42 PM, Heinz-M. Graesing wrote: > Dear Developers, > > Again, I'd like to invite you - the DEVELOPPERS of X2Go - to assemble > together and talk about X2Go.

Re: [X2Go-Dev] 2nd Online ΞX2Go Developer Meeting (2015-03-05/4pm)

2015-03-01 Thread Mihai Moldovan
On 01.03.2015 08:16 PM, Mihai Moldovan wrote: > The correct date of course is March 3rd 2015. Now I'm messing up myself. The correct date is March *5th* 2015. Mihai signature.asc Description: OpenPGP digital signature ___ x2go-dev mail

Re: [X2Go-Dev] 2nd Online ΞX2Go Developer Meeting (2015-03-05/4pm) (was: 2nd Online ΞX2Go Developer Meeting (2015-02-5/4pm))

2015-03-02 Thread Mihai Moldovan
On 02.03.2015 01:36 PM, Mike Gabriel wrote: > I won't be available at 4pm GMT. This is the time I normally have to > leave from work and head back home. Last meeting I could make an > exception, this time it won't work. > > In private communication with Heinz I mentioned it several time, that > 5th

  1   2   3   4   5   6   7   >