| // Licensed to the Apache Software Foundation (ASF) under one |
| // or more contributor license agreements. See the NOTICE file |
| // distributed with this work for additional information |
| // regarding copyright ownership. The ASF licenses this file |
| // to you under the Apache License, Version 2.0 (the |
| // "License"); you may not use this file except in compliance |
| // with the License. You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, |
| // software distributed under the License is distributed on an |
| // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| // KIND, either express or implied. See the License for the |
| // specific language governing permissions and limitations |
| // under the License. |
| package com.cloud.consoleproxy; |
| |
| import com.cloud.utils.StringUtils; |
| import org.apache.log4j.Logger; |
| import org.eclipse.jetty.websocket.api.Session; |
| import org.eclipse.jetty.websocket.api.extensions.Frame; |
| |
| import java.awt.Image; |
| import java.io.IOException; |
| import java.net.URI; |
| import java.net.UnknownHostException; |
| import java.nio.ByteBuffer; |
| import java.util.List; |
| |
| import com.cloud.consoleproxy.vnc.NoVncClient; |
| |
| public class ConsoleProxyNoVncClient implements ConsoleProxyClient { |
| private static final Logger s_logger = Logger.getLogger(ConsoleProxyNoVncClient.class); |
| private static int nextClientId = 0; |
| |
| private NoVncClient client; |
| private Session session; |
| |
| protected int clientId = getNextClientId(); |
| protected long ajaxSessionId = 0; |
| |
| protected long createTime = System.currentTimeMillis(); |
| protected long lastFrontEndActivityTime = System.currentTimeMillis(); |
| |
| private boolean connectionAlive; |
| |
| private ConsoleProxyClientParam clientParam; |
| |
| public ConsoleProxyNoVncClient(Session session) { |
| this.session = session; |
| } |
| |
| private int getNextClientId() { |
| return ++nextClientId; |
| } |
| |
| @Override |
| public void sendClientRawKeyboardEvent(InputEventType event, int code, int modifiers) { |
| } |
| |
| @Override |
| public void sendClientMouseEvent(InputEventType event, int x, int y, int code, int modifiers) { |
| } |
| |
| @Override |
| public boolean isHostConnected() { |
| return connectionAlive; |
| } |
| |
| @Override |
| public boolean isFrontEndAlive() { |
| if (!connectionAlive || System.currentTimeMillis() |
| - getClientLastFrontEndActivityTime() > ConsoleProxy.VIEWER_LINGER_SECONDS * 1000) { |
| s_logger.info("Front end has been idle for too long"); |
| return false; |
| } |
| return true; |
| } |
| |
| public void sendClientFrame(Frame f) throws IOException { |
| byte[] data = new byte[f.getPayloadLength()]; |
| f.getPayload().get(data); |
| client.write(data); |
| } |
| |
| @Override |
| public void initClient(ConsoleProxyClientParam param) { |
| setClientParam(param); |
| client = new NoVncClient(); |
| connectionAlive = true; |
| |
| updateFrontEndActivityTime(); |
| Thread worker = new Thread(new Runnable() { |
| public void run() { |
| try { |
| |
| String tunnelUrl = param.getClientTunnelUrl(); |
| String tunnelSession = param.getClientTunnelSession(); |
| String websocketUrl = param.getWebsocketUrl(); |
| |
| connectClientToVNCServer(tunnelUrl, tunnelSession, websocketUrl); |
| |
| authenticateToVNCServer(); |
| |
| int readBytes; |
| byte[] b; |
| while (connectionAlive) { |
| if (client.isVncOverWebSocketConnection()) { |
| if (client.isVncOverWebSocketConnectionOpen()) { |
| updateFrontEndActivityTime(); |
| } |
| connectionAlive = client.isVncOverWebSocketConnectionAlive(); |
| } else { |
| b = new byte[100]; |
| readBytes = client.read(b); |
| if (readBytes == -1) { |
| break; |
| } |
| if (readBytes > 0) { |
| session.getRemote().sendBytes(ByteBuffer.wrap(b, 0, readBytes)); |
| updateFrontEndActivityTime(); |
| } |
| } |
| } |
| connectionAlive = false; |
| } catch (IOException e) { |
| e.printStackTrace(); |
| } |
| } |
| |
| }); |
| worker.start(); |
| } |
| |
| /** |
| * Authenticate to VNC server when not using websockets |
| * @throws IOException |
| */ |
| private void authenticateToVNCServer() throws IOException { |
| if (!client.isVncOverWebSocketConnection()) { |
| String ver = client.handshake(); |
| session.getRemote().sendBytes(ByteBuffer.wrap(ver.getBytes(), 0, ver.length())); |
| |
| byte[] b = client.authenticate(getClientHostPassword()); |
| session.getRemote().sendBytes(ByteBuffer.wrap(b, 0, 4)); |
| } |
| } |
| |
| /** |
| * Connect to a VNC server in one of three possible ways: |
| * - When tunnelUrl and tunnelSession are not empty -> via tunnel |
| * - When websocketUrl is not empty -> connect to websocket |
| * - Otherwise -> connect to TCP port on host directly |
| */ |
| private void connectClientToVNCServer(String tunnelUrl, String tunnelSession, String websocketUrl) { |
| try { |
| if (StringUtils.isNotBlank(websocketUrl)) { |
| s_logger.info("Connect to VNC over websocket URL: " + websocketUrl); |
| client.connectToWebSocket(websocketUrl, session); |
| } else if (tunnelUrl != null && !tunnelUrl.isEmpty() && tunnelSession != null |
| && !tunnelSession.isEmpty()) { |
| URI uri = new URI(tunnelUrl); |
| s_logger.info("Connect to VNC server via tunnel. url: " + tunnelUrl + ", session: " |
| + tunnelSession); |
| |
| ConsoleProxy.ensureRoute(uri.getHost()); |
| client.connectTo(uri.getHost(), uri.getPort(), uri.getPath() + "?" + uri.getQuery(), |
| tunnelSession, "https".equalsIgnoreCase(uri.getScheme())); |
| } else { |
| s_logger.info("Connect to VNC server directly. host: " + getClientHostAddress() + ", port: " |
| + getClientHostPort()); |
| ConsoleProxy.ensureRoute(getClientHostAddress()); |
| client.connectTo(getClientHostAddress(), getClientHostPort()); |
| } |
| } catch (UnknownHostException e) { |
| s_logger.error("Unexpected exception", e); |
| } catch (IOException e) { |
| s_logger.error("Unexpected exception", e); |
| } catch (Throwable e) { |
| s_logger.error("Unexpected exception", e); |
| } |
| } |
| |
| private void setClientParam(ConsoleProxyClientParam param) { |
| this.clientParam = param; |
| } |
| |
| @Override |
| public void closeClient() { |
| this.connectionAlive = false; |
| ConsoleProxy.removeViewer(this); |
| } |
| |
| @Override |
| public int getClientId() { |
| return this.clientId; |
| } |
| |
| @Override |
| public long getAjaxSessionId() { |
| return this.ajaxSessionId; |
| } |
| |
| @Override |
| public AjaxFIFOImageCache getAjaxImageCache() { |
| // Unimplemented |
| return null; |
| } |
| |
| @Override |
| public Image getClientScaledImage(int width, int height) { |
| // Unimplemented |
| return null; |
| } |
| |
| @Override |
| public String onAjaxClientStart(String title, List<String> languages, String guest) { |
| // Unimplemented |
| return null; |
| } |
| |
| @Override |
| public String onAjaxClientUpdate() { |
| // Unimplemented |
| return null; |
| } |
| |
| @Override |
| public String onAjaxClientKickoff() { |
| // Unimplemented |
| return null; |
| } |
| |
| @Override |
| public long getClientCreateTime() { |
| return createTime; |
| } |
| |
| public void updateFrontEndActivityTime() { |
| lastFrontEndActivityTime = System.currentTimeMillis(); |
| } |
| |
| @Override |
| public long getClientLastFrontEndActivityTime() { |
| return lastFrontEndActivityTime; |
| } |
| |
| @Override |
| public String getClientHostAddress() { |
| return clientParam.getClientHostAddress(); |
| } |
| |
| @Override |
| public int getClientHostPort() { |
| return clientParam.getClientHostPort(); |
| } |
| |
| @Override |
| public String getClientHostPassword() { |
| return clientParam.getClientHostPassword(); |
| } |
| |
| @Override |
| public String getClientTag() { |
| if (clientParam.getClientTag() != null) |
| return clientParam.getClientTag(); |
| return ""; |
| } |
| |
| public Session getSession() { |
| return session; |
| } |
| |
| } |