2013-01-23 17:28:19 +00:00
|
|
|
#
|
|
|
|
# vnc.py: VNC related installer functionality
|
|
|
|
#
|
|
|
|
# Copyright (C) 2004, 2007 Red Hat, Inc. All rights reserved.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
# Author(s): Jeremy Katz <katzj@redhat.com>
|
|
|
|
#
|
|
|
|
|
|
|
|
import os, sys
|
|
|
|
import time
|
2014-04-07 12:38:09 +00:00
|
|
|
from pyanaconda import network, product, iutil
|
2013-01-23 17:28:19 +00:00
|
|
|
import socket
|
|
|
|
import subprocess
|
2014-04-07 12:38:09 +00:00
|
|
|
import dbus
|
2013-01-23 17:28:19 +00:00
|
|
|
|
2014-04-07 12:38:09 +00:00
|
|
|
from pyanaconda.i18n import _, P_
|
2013-01-23 17:28:19 +00:00
|
|
|
from pyanaconda.ui.tui.simpleline import App
|
|
|
|
from pyanaconda.ui.tui.spokes.askvnc import VNCPassSpoke
|
|
|
|
|
|
|
|
import logging
|
|
|
|
log = logging.getLogger("anaconda")
|
|
|
|
stdoutLog = logging.getLogger("anaconda.stdout")
|
|
|
|
|
2014-04-07 12:38:09 +00:00
|
|
|
XVNC_BINARY_NAME = "Xvnc"
|
|
|
|
|
|
|
|
|
|
|
|
def shutdownServer():
|
|
|
|
"""Try to shutdown any running XVNC server
|
|
|
|
|
|
|
|
Why is this function on the module level and not in the VncServer class ?
|
|
|
|
|
|
|
|
As the server needs to be killed from the exit handler, it would have
|
|
|
|
to somehow get to the VncServer instance. Like this, it can just kill
|
|
|
|
it by calling a function of the vnc module.
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
iutil.execWithCapture("killall", [XVNC_BINARY_NAME])
|
|
|
|
log.info("The XVNC server has been shut down.")
|
|
|
|
except OSError as e:
|
|
|
|
log.error("Shutdown of the XVNC server failed with exception:\n%s", e)
|
|
|
|
|
|
|
|
|
2013-01-23 17:28:19 +00:00
|
|
|
class VncServer:
|
|
|
|
|
|
|
|
def __init__(self, display="1", root="/", ip=None, name=None,
|
|
|
|
password="", vncconnecthost="",
|
|
|
|
vncconnectport="", log_file="/tmp/vncserver.log",
|
|
|
|
pw_file="/tmp/vncpassword"):
|
|
|
|
self.display = display
|
|
|
|
self.root = root
|
|
|
|
self.ip = ip
|
|
|
|
self.name = name
|
|
|
|
self.password = password
|
|
|
|
self.vncconnecthost = vncconnecthost
|
|
|
|
self.vncconnectport = vncconnectport
|
|
|
|
self.log_file = log_file
|
|
|
|
self.pw_file = pw_file
|
|
|
|
self.connxinfo = None
|
|
|
|
self.anaconda = None
|
|
|
|
self.log = logging.getLogger("anaconda.stdout")
|
|
|
|
|
|
|
|
self.desktop = _("%(productName)s %(productVersion)s installation")\
|
|
|
|
% {'productName': product.productName,
|
|
|
|
'productVersion': product.productVersion}
|
|
|
|
|
|
|
|
def setVNCPassword(self):
|
|
|
|
"""Set the vnc server password. Output to file. """
|
|
|
|
|
|
|
|
r, w = os.pipe()
|
2015-03-23 11:36:12 +00:00
|
|
|
iutil.eintr_retry_call(os.write, w, "%s\n" % self.password)
|
2013-01-23 17:28:19 +00:00
|
|
|
|
2014-04-07 12:38:09 +00:00
|
|
|
with open(self.pw_file, "w") as pw_file:
|
|
|
|
# the -f option makes sure vncpasswd does not ask for the password again
|
|
|
|
rc = iutil.execWithRedirect("vncpasswd", ["-f"],
|
2015-03-23 11:36:12 +00:00
|
|
|
stdin=r, stdout=pw_file, binary_output=True, log_output=False)
|
2013-01-23 17:28:19 +00:00
|
|
|
|
2015-03-23 11:36:12 +00:00
|
|
|
iutil.eintr_retry_call(os.close, r)
|
|
|
|
iutil.eintr_retry_call(os.close, w)
|
2013-01-23 17:28:19 +00:00
|
|
|
|
|
|
|
return rc
|
|
|
|
|
|
|
|
def initialize(self):
|
|
|
|
"""Here is were all the relative vars get initialized. """
|
|
|
|
|
|
|
|
# Network may be slow. Try for 5 seconds
|
|
|
|
tries = 5
|
|
|
|
while tries:
|
|
|
|
self.ip = network.getFirstRealIP()
|
|
|
|
if self.ip:
|
|
|
|
break
|
|
|
|
time.sleep(1)
|
|
|
|
tries -= 1
|
|
|
|
|
|
|
|
if not self.ip:
|
|
|
|
return
|
|
|
|
|
|
|
|
ipstr = self.ip
|
|
|
|
try:
|
|
|
|
hinfo = socket.gethostbyaddr(ipstr)
|
2014-04-07 12:38:09 +00:00
|
|
|
except socket.herror as e:
|
|
|
|
log.debug("Exception caught trying to get host name of %s: %s", ipstr, e)
|
2013-01-23 17:28:19 +00:00
|
|
|
self.name = network.getHostname()
|
|
|
|
else:
|
|
|
|
if len(hinfo) == 3:
|
|
|
|
self.name = hinfo[0]
|
|
|
|
|
|
|
|
if self.ip.find(':') != -1:
|
|
|
|
ipstr = "[%s]" % (self.ip,)
|
|
|
|
|
|
|
|
if (self.name is not None) and (not self.name.startswith('localhost')) and (ipstr is not None):
|
2014-04-07 12:38:09 +00:00
|
|
|
self.connxinfo = "%s:%s (%s:%s)" % (socket.getfqdn(name=self.name), self.display, ipstr, self.display)
|
2013-01-23 17:28:19 +00:00
|
|
|
elif ipstr is not None:
|
|
|
|
self.connxinfo = "%s:%s" % (ipstr, self.display,)
|
|
|
|
else:
|
|
|
|
self.connxinfo = None
|
|
|
|
|
|
|
|
# figure out product info
|
|
|
|
if self.name is not None:
|
|
|
|
self.desktop = _("%(productName)s %(productVersion)s installation "
|
|
|
|
"on host %(name)s") \
|
|
|
|
% {'productName': product.productName,
|
|
|
|
'productVersion': product.productVersion,
|
|
|
|
'name': self.name}
|
|
|
|
|
|
|
|
def openlogfile(self):
|
|
|
|
try:
|
2015-03-23 11:36:12 +00:00
|
|
|
fd = iutil.eintr_retry_call(os.open, self.log_file, os.O_RDWR | os.O_CREAT)
|
2013-01-23 17:28:19 +00:00
|
|
|
except OSError as e:
|
|
|
|
sys.stderr.write("error opening %s: %s\n", (self.log_file, e))
|
|
|
|
fd = None
|
|
|
|
|
|
|
|
return fd
|
|
|
|
|
|
|
|
def connectToView(self):
|
|
|
|
"""Attempt to connect to self.vncconnecthost"""
|
|
|
|
|
|
|
|
maxTries = 10
|
2015-03-23 11:36:12 +00:00
|
|
|
self.log.info(_("Attempting to connect to vnc client on host %s..."), self.vncconnecthost)
|
2013-01-23 17:28:19 +00:00
|
|
|
|
|
|
|
if self.vncconnectport != "":
|
|
|
|
hostarg = self.vncconnecthost + ":" + self.vncconnectport
|
|
|
|
else:
|
|
|
|
hostarg = self.vncconnecthost
|
|
|
|
|
|
|
|
vncconfigcommand = [self.root+"/usr/bin/vncconfig", "-display", ":%s"%self.display, "-connect", hostarg]
|
|
|
|
|
2014-04-07 12:38:09 +00:00
|
|
|
for _i in range(maxTries):
|
2013-01-23 17:28:19 +00:00
|
|
|
vncconfp = subprocess.Popen(vncconfigcommand, stdout=subprocess.PIPE, stderr=subprocess.PIPE) # vncconfig process
|
2014-04-07 12:38:09 +00:00
|
|
|
err = vncconfp.communicate()[1]
|
2013-01-23 17:28:19 +00:00
|
|
|
|
|
|
|
if err == '':
|
|
|
|
self.log.info(_("Connected!"))
|
|
|
|
return True
|
|
|
|
elif err.startswith("connecting") and err.endswith("failed\n"):
|
|
|
|
self.log.info(_("Will try to connect again in 15 seconds..."))
|
|
|
|
time.sleep(15)
|
|
|
|
continue
|
|
|
|
else:
|
|
|
|
log.critical(err)
|
|
|
|
sys.exit(1)
|
|
|
|
self.log.error(P_("Giving up attempting to connect after %d try!\n",
|
|
|
|
"Giving up attempting to connect after %d tries!\n",
|
2015-03-23 11:36:12 +00:00
|
|
|
maxTries), maxTries)
|
2013-01-23 17:28:19 +00:00
|
|
|
return False
|
|
|
|
|
|
|
|
def VNCListen(self):
|
|
|
|
"""Put the server in listening mode.
|
|
|
|
|
|
|
|
We dont really have to do anything for the server to listen :)
|
|
|
|
"""
|
|
|
|
if self.connxinfo != None:
|
2015-03-23 11:36:12 +00:00
|
|
|
self.log.info(_("Please manually connect your vnc client to %s to begin the install."), self.connxinfo)
|
2013-01-23 17:28:19 +00:00
|
|
|
else:
|
|
|
|
self.log.info(_("Please manually connect your vnc client to <IP ADDRESS>:%s "
|
|
|
|
"to begin the install. Switch to the shell (Ctrl-B 2) and "
|
2015-03-23 11:36:12 +00:00
|
|
|
"run 'ip addr' to find the <IP ADDRESS>."), self.display)
|
2013-01-23 17:28:19 +00:00
|
|
|
|
|
|
|
def startServer(self):
|
|
|
|
self.log.info(_("Starting VNC..."))
|
2014-04-07 12:38:09 +00:00
|
|
|
network.wait_for_connectivity()
|
2013-01-23 17:28:19 +00:00
|
|
|
|
|
|
|
# Lets call it from here for now.
|
|
|
|
try:
|
|
|
|
self.initialize()
|
2014-04-07 12:38:09 +00:00
|
|
|
except (socket.herror, dbus.DBusException, ValueError) as e:
|
|
|
|
stdoutLog.critical("Could not initialize the VNC server: %s", e)
|
2013-01-23 17:28:19 +00:00
|
|
|
sys.exit(1)
|
|
|
|
|
2015-03-23 11:36:12 +00:00
|
|
|
if self.password and (len(self.password) < 6 or len(self.password) > 8):
|
2013-01-23 17:28:19 +00:00
|
|
|
self.changeVNCPasswdWindow()
|
|
|
|
|
|
|
|
if not self.password:
|
|
|
|
SecurityTypes = "None"
|
|
|
|
rfbauth = "0"
|
|
|
|
else:
|
|
|
|
SecurityTypes = "VncAuth"
|
|
|
|
rfbauth = self.pw_file
|
|
|
|
# Create the password file.
|
2014-04-07 12:38:09 +00:00
|
|
|
self.setVNCPassword()
|
2013-01-23 17:28:19 +00:00
|
|
|
|
|
|
|
# Lets start the xvnc.
|
2014-04-07 12:38:09 +00:00
|
|
|
xvnccommand = [ XVNC_BINARY_NAME, ":%s" % self.display,
|
2013-01-23 17:28:19 +00:00
|
|
|
"-depth", "16", "-br",
|
|
|
|
"IdleTimeout=0", "-auth", "/dev/null", "-once",
|
|
|
|
"DisconnectClients=false", "desktop=%s" % (self.desktop,),
|
|
|
|
"SecurityTypes=%s" % SecurityTypes, "rfbauth=%s" % rfbauth ]
|
|
|
|
|
|
|
|
try:
|
|
|
|
xvncp = subprocess.Popen(xvnccommand, stdout=self.openlogfile(), stderr=subprocess.STDOUT)
|
|
|
|
except OSError:
|
|
|
|
stdoutLog.critical("Could not start the VNC server. Aborting.")
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
# Lets give the xvnc time to initialize
|
|
|
|
time.sleep(1)
|
|
|
|
|
|
|
|
# Make sure it hasn't blown up
|
|
|
|
if xvncp.poll() != None:
|
|
|
|
sys.exit(1)
|
|
|
|
else:
|
|
|
|
self.log.info(_("The VNC server is now running."))
|
|
|
|
|
|
|
|
# Lets tell the user what we are going to do.
|
|
|
|
if self.vncconnecthost != "":
|
|
|
|
self.log.warning(_("\n\nYou chose to connect to a listening vncviewer. \n"
|
|
|
|
"This does not require a password to be set. If you \n"
|
|
|
|
"set a password, it will be used in case the connection \n"
|
|
|
|
"to the vncviewer is unsuccessful\n\n"))
|
|
|
|
elif self.password == "":
|
|
|
|
self.log.warning(_("\n\nWARNING!!! VNC server running with NO PASSWORD!\n"
|
|
|
|
"You can use the vncpassword=<password> boot option\n"
|
|
|
|
"if you would like to secure the server.\n\n"))
|
|
|
|
elif self.password != "":
|
|
|
|
self.log.warning(_("\n\nYou chose to execute vnc with a password. \n\n"))
|
|
|
|
else:
|
|
|
|
self.log.warning(_("\n\nUnknown Error. Aborting. \n\n"))
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
# Lets try to configure the vnc server to whatever the user specified
|
|
|
|
if self.vncconnecthost != "":
|
|
|
|
connected = self.connectToView()
|
|
|
|
if not connected:
|
|
|
|
self.VNCListen()
|
|
|
|
else:
|
|
|
|
self.VNCListen()
|
|
|
|
|
|
|
|
os.environ["DISPLAY"]=":%s" % self.display
|
|
|
|
|
|
|
|
def changeVNCPasswdWindow(self):
|
|
|
|
""" Change the password to a sane parameter.
|
|
|
|
|
2015-03-23 11:36:12 +00:00
|
|
|
We ask user to input a password that (len(password) > 6
|
|
|
|
and len(password) <= 8) or password == ''.
|
2013-01-23 17:28:19 +00:00
|
|
|
"""
|
|
|
|
|
2015-03-23 11:36:12 +00:00
|
|
|
message = _("VNC password must be six to eight characters long.\n"
|
|
|
|
"Please enter a new one, or leave blank for no password.")
|
2013-01-23 17:28:19 +00:00
|
|
|
app = App("VNC PASSWORD")
|
|
|
|
spoke = VNCPassSpoke(app, self.anaconda.ksdata, None, None, None,
|
|
|
|
message)
|
|
|
|
app.schedule_screen(spoke)
|
|
|
|
app.run()
|
|
|
|
|
|
|
|
self.password = self.anaconda.ksdata.vnc.password
|