bugzilla-daemon at bugzilla.mindrot.org
2007-Dec-21  04:42 UTC
[Bug 1418] New: Issues with X11 forwarding on Mac OS X
https://bugzilla.mindrot.org/show_bug.cgi?id=1418
           Summary: Issues with X11 forwarding on Mac OS X
    Classification: Unclassified
           Product: Portable OpenSSH
           Version: 4.7p1
          Platform: Other
        OS/Version: Mac OS X
            Status: NEW
          Severity: normal
          Priority: P2
         Component: ssh
        AssignedTo: bitbucket at mindrot.org
        ReportedBy: vgiffin at apple.com
Created an attachment (id=1414)
 --> (http://bugzilla.mindrot.org/attachment.cgi?id=1414)
Fixes X11 forwarding on Mac OS X.
Attached is a patch for building OpenSSH 4.7p1 on Mac OS X.
This patch fixes issues with X11 forwarding.
-- 
Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.
bugzilla-daemon at bugzilla.mindrot.org
2007-Dec-31  10:54 UTC
[Bug 1418] Issues with X11 forwarding on Mac OS X
https://bugzilla.mindrot.org/show_bug.cgi?id=1418
Darren Tucker <dtucker at zip.com.au> changed:
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |dtucker at zip.com.au
--- Comment #1 from Darren Tucker <dtucker at zip.com.au>  2007-12-31
21:54:29 ---
Could you please explain why this change is needed and what the effect
of not having it is?  Thanks.
-- 
Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.
You are watching someone on the CC list of the bug.
bugzilla-daemon at bugzilla.mindrot.org
2008-Jan-02  23:20 UTC
[Bug 1418] Issues with X11 forwarding on Mac OS X
https://bugzilla.mindrot.org/show_bug.cgi?id=1418 --- Comment #2 from Disco Vince Giffin <vgiffin at apple.com> 2008-01-03 10:20:13 --- (In reply to comment #1)> Could you please explain why this change is needed and what the effect > of not having it is? Thanks.This patch adds support for "on demand" X11 (via launchd) to ssh. When an attempt is made to communicate with the socket, launchd launches X11. Without this patch, the DISPLAY environment variable is not properly forwarded and X11 can't be launched (i.e. "Error: Can't open display:"). -- Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching the assignee of the bug. You are watching someone on the CC list of the bug.
bugzilla-daemon at bugzilla.mindrot.org
2008-Jan-03  07:46 UTC
[Bug 1418] Issues with X11 forwarding on Mac OS X
https://bugzilla.mindrot.org/show_bug.cgi?id=1418 --- Comment #3 from Darren Tucker <dtucker at zip.com.au> 2008-01-03 18:46:45 --- So it's simply special-casing a $DISPLAY of /tmp/launch/whatever as being a Unix domain socket? In that case I still don't see why the change is needed. Couldn't you get the same effect simply by setting $DISPLAY to unix:/tmp/launch/whatever? -- Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching the assignee of the bug. You are watching someone on the CC list of the bug.
bugzilla-daemon at bugzilla.mindrot.org
2008-Jan-03  07:50 UTC
[Bug 1418] Issues with X11 forwarding on Mac OS X
https://bugzilla.mindrot.org/show_bug.cgi?id=1418 --- Comment #4 from Darren Tucker <dtucker at zip.com.au> 2008-01-03 18:50:54 --- (In reply to comment #3)> In that case I still don't see why the change is needed. Couldn't you > get the same effect simply by setting $DISPLAY to > unix:/tmp/launch/whatever?Oh, hang on, the "unix:" display spec doesn't support a pathname. -- Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching the assignee of the bug. You are watching someone on the CC list of the bug.
bugzilla-daemon at bugzilla.mindrot.org
2008-Jul-14  03:43 UTC
[Bug 1418] Issues with X11 forwarding on Mac OS X
https://bugzilla.mindrot.org/show_bug.cgi?id=1418
Damien Miller <djm at mindrot.org> changed:
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Blocks|                            |1481
-- 
Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.
You are watching someone on the CC list of the bug.
bugzilla-daemon at bugzilla.mindrot.org
2009-Jan-13  07:35 UTC
[Bug 1418] Issues with X11 forwarding on Mac OS X
https://bugzilla.mindrot.org/show_bug.cgi?id=1418
Damien Miller <djm at mindrot.org> changed:
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Attachment #1414|                            |ok?(dtucker at zip.com.au)
               Flag|                            |
--- Comment #5 from Damien Miller <djm at mindrot.org>  2009-01-13
18:35:13 ---
(From update of attachment 1414)
apart from wrapping the check for /tmp/launch in an #ifdef __APPLE__
this looks ok to me. dtucker?
-- 
Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.
You are watching someone on the CC list of the bug.
bugzilla-daemon at bugzilla.mindrot.org
2009-Jan-13  08:24 UTC
[Bug 1418] Issues with X11 forwarding on Mac OS X
https://bugzilla.mindrot.org/show_bug.cgi?id=1418
Darren Tucker <dtucker at zip.com.au> changed:
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Attachment #1414|                            |ok+
               Flag|                            |
--- Comment #6 from Darren Tucker <dtucker at zip.com.au>  2009-01-13
19:24:40 ---
(From update of attachment 1414)
I'm not wild about having the path hard coded but since launchd seems
to work that way it's ok by me.
Oh, and style says blank line in connect_local_xsocket after the
variable declaration.
-- 
Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.
You are watching someone on the CC list of the bug.
bugzilla-daemon at bugzilla.mindrot.org
2009-Jan-18  10:56 UTC
[Bug 1418] Issues with X11 forwarding on Mac OS X
https://bugzilla.mindrot.org/show_bug.cgi?id=1418
Darren Tucker <dtucker at zip.com.au> changed:
           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|ssh                         |sshd
-- 
Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.
You are watching someone on the CC list of the bug.
bugzilla-daemon at bugzilla.mindrot.org
2009-Jan-18  10:57 UTC
[Bug 1418] Issues with X11 forwarding on Mac OS X
https://bugzilla.mindrot.org/show_bug.cgi?id=1418
Darren Tucker <dtucker at zip.com.au> changed:
           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|sshd                        |ssh
--- Comment #7 from Darren Tucker <dtucker at zip.com.au>  2009-01-18
21:57:16 ---
err, wrong bug.
-- 
Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.
You are watching someone on the CC list of the bug.
bugzilla-daemon at bugzilla.mindrot.org
2009-Jan-21  05:38 UTC
[Bug 1418] Issues with X11 forwarding on Mac OS X
https://bugzilla.mindrot.org/show_bug.cgi?id=1418
Damien Miller <djm at mindrot.org> changed:
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED
                 CC|                            |djm at mindrot.org
--- Comment #8 from Damien Miller <djm at mindrot.org>  2009-01-21
16:38:27 ---
This has been committed and will be in openssh-5.2. Thanks!
-- 
Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.
You are watching someone on the CC list of the bug.
bugzilla-daemon at bugzilla.mindrot.org
2009-Feb-23  02:35 UTC
[Bug 1418] Issues with X11 forwarding on Mac OS X
https://bugzilla.mindrot.org/show_bug.cgi?id=1418
Damien Miller <djm at mindrot.org> changed:
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |CLOSED
--- Comment #9 from Damien Miller <djm at mindrot.org>  2009-02-23
13:35:39 ---
Close bugs fixed/reviewed for openssh-5.2 release
-- 
Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.
You are watching someone on the CC list of the bug.
Seemingly Similar Threads
- [Bug 1413] New: Add support for launching ssh-agent from Mac OS X's launchd .
 - [Bug 1414] New: Botched getpwuid usage on Mac OS X
 - [Bug 1412] New: Support for users in more than 16 groups on Mac OS X.
 - [Bug 1420] New: BSM support on Mac OS X
 - [Bug 1415] New: Mac OS X has some changes to the default PAM settings.