/** @file * * VirtualBox Guest Service: * Linux guest. */ /* * Copyright (C) 2006-2007 Sun Microsystems, Inc. * * This file is part of VirtualBox Open Source Edition (OSE), as * available from http://www.virtualbox.org. This file is free software; * you can redistribute it and/or modify it under the terms of the GNU * General Public License (GPL) as published by the Free Software * Foundation, in version 2 as it comes in the "COPYING" file of the * VirtualBox OSE distribution. VirtualBox OSE is distributed in the * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa * Clara, CA 95054 USA or visit http://www.sun.com if you need * additional information or have any questions. */ #include #include /* For exit */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include "VBoxClient.h" #define TRACE RTPrintf("%s: %d\n", __PRETTY_FUNCTION__, __LINE__); Log(("%s: %d\n", __PRETTY_FUNCTION__, __LINE__)) static int (*gpfnOldIOErrorHandler)(Display *) = NULL; /** Object representing the service we are running. This has to be global * so that the cleanup routine can access it. */ VBoxClient::Service *g_pService; /** The name of our pidfile. It is global for the benefit of the cleanup * routine. */ static char *g_pszPidFile; /** The file handle of our pidfile. It is global for the benefit of the * cleanup routine. */ static RTFILE g_hPidFile; /** Clean up if we get a signal or something. This is extern so that we * can call it from other compilation units. */ void VBoxClient::CleanUp() { if (g_pService) { g_pService->cleanup(); delete g_pService; } if (g_pszPidFile && g_hPidFile) VbglR3ClosePidFile(g_pszPidFile, g_hPidFile); VbglR3Term(); exit(0); } /** * A standard signal handler which cleans up and exits. */ void vboxClientSignalHandler(int cSignal) { Log(("VBoxClient: terminated with signal %d\n", cSignal)); /** Disable seamless mode */ RTPrintf(("VBoxClient: terminating...\n")); VBoxClient::CleanUp(); } /** * Xlib error handler for certain errors that we can't avoid. */ int vboxClientXLibErrorHandler(Display *pDisplay, XErrorEvent *pError) { char errorText[1024]; if (pError->error_code == BadAtom) { /* This can be triggered in debug builds if a guest application passes a bad atom in its list of supported clipboard formats. As such it is harmless. */ Log(("VBoxClient: ignoring BadAtom error and returning\n")); return 0; } if (pError->error_code == BadWindow) { /* This can be triggered if a guest application destroys a window before we notice. */ Log(("VBoxClient: ignoring BadWindow error and returning\n")); return 0; } XGetErrorText(pDisplay, pError->error_code, errorText, sizeof(errorText)); LogRel(("VBoxClient: an X Window protocol error occurred: %s (error code %d). Request code: %d, minor code: %d, serial number: %d\n", errorText, pError->error_code, pError->request_code, pError->minor_code, pError->serial)); VBoxClient::CleanUp(); return 0; /* We should never reach this. */ } /** * Xlib error handler for fatal errors. This often means that the programme is still running * when X exits. */ static int vboxClientXLibIOErrorHandler(Display *pDisplay) { Log(("VBoxClient: a fatal guest X Window error occurred. This may just mean that the Window system was shut down while the client was still running.\n")); VBoxClient::CleanUp(); return 0; /* We should never reach this. */ } /** * Reset all standard termination signals to call our signal handler, which * cleans up and exits. */ void vboxClientSetSignalHandlers(void) { struct sigaction sigAction; LogFlowFunc(("\n")); sigAction.sa_handler = vboxClientSignalHandler; sigemptyset(&sigAction.sa_mask); sigAction.sa_flags = 0; sigaction(SIGHUP, &sigAction, NULL); sigaction(SIGINT, &sigAction, NULL); sigaction(SIGQUIT, &sigAction, NULL); sigaction(SIGABRT, &sigAction, NULL); sigaction(SIGPIPE, &sigAction, NULL); sigaction(SIGALRM, &sigAction, NULL); sigaction(SIGTERM, &sigAction, NULL); sigaction(SIGUSR1, &sigAction, NULL); sigaction(SIGUSR2, &sigAction, NULL); LogFlowFunc(("returning\n")); } /** * Print out a usage message and exit with success. */ void vboxClientUsage(const char *pcszFileName) { RTPrintf("Usage: %s --clipboard|--autoresize|--seamless [-d|--nodaemon]\n", pcszFileName); RTPrintf("Start the VirtualBox X Window System guest services.\n\n"); RTPrintf("Options:\n"); RTPrintf(" --clipboard start the shared clipboard service\n"); RTPrintf(" --autoresize start the display auto-resize service\n"); RTPrintf(" --seamless start the seamless windows service\n"); RTPrintf(" -d, --nodaemon continue running as a system service\n"); RTPrintf("\n"); exit(0); } /** * The main loop for the VBoxClient daemon. */ int main(int argc, char *argv[]) { int rcClipboard, rc = VINF_SUCCESS; const char *pszFileName = RTPathFilename(argv[0]); bool fDaemonise = true; /* Have any fatal errors occurred yet? */ bool fSuccess = true; /* Do we know which service we wish to run? */ bool fHaveService = false; if (NULL == pszFileName) pszFileName = "VBoxClient"; /* Initialise our runtime before all else. */ RTR3Init(); /* Parse our option(s) */ /** @todo Use RTGetOpt() if the arguments become more complex. */ for (int i = 1; i < argc; ++i) { if (!strcmp(argv[i], "-d") || !strcmp(argv[i], "--nodaemon")) fDaemonise = false; else if (!strcmp(argv[i], "--clipboard")) { if (g_pService == NULL) g_pService = VBoxClient::GetClipboardService(); else fSuccess = false; } else if (!strcmp(argv[i], "--autoresize")) { if (g_pService == NULL) g_pService = VBoxClient::GetAutoResizeService(); else fSuccess = false; } else if (!strcmp(argv[i], "--seamless")) { if (g_pService == NULL) g_pService = VBoxClient::GetSeamlessService(); else fSuccess = false; } else if (!strcmp(argv[i], "-h") || !strcmp(argv[i], "--help")) { vboxClientUsage(pszFileName); exit(0); } else { RTPrintf("%s: unrecognized option `%s'\n", pszFileName, argv[i]); RTPrintf("Try `%s --help' for more information\n", pszFileName); exit(1); } } if (!fSuccess || !g_pService) { vboxClientUsage(pszFileName); exit(1); } if (fDaemonise) { rc = VbglR3Daemonize(false /* fNoChDir */, false /* fNoClose */); if (RT_FAILURE(rc)) { RTPrintf("VBoxClient: failed to daemonize. Exiting.\n"); Log(("VBoxClient: failed to daemonize. Exiting.\n")); #ifdef DEBUG RTPrintf("Error %Rrc\n", rc); #endif return 1; } } const char *pszHome = RTEnvGet("HOME"); if (pszHome == NULL) { RTPrintf("VBoxClient: failed to get home directory. Exiting.\n"); Log(("VBoxClient: failed to get home directory. Exiting.\n")); return 1; } if (RTStrAPrintf(&g_pszPidFile, "%s/%s", pszHome, g_pService->getPidFilePath()) == -1) if (pszHome == NULL) { RTPrintf("VBoxClient: out of memory. Exiting.\n"); Log(("VBoxClient: out of memory. Exiting.\n")); return 1; } /* Initialise the guest library. */ if (RT_FAILURE(VbglR3InitUser())) { RTPrintf("Failed to connect to the VirtualBox kernel service\n"); Log(("Failed to connect to the VirtualBox kernel service\n")); return 1; } if (g_pszPidFile && RT_FAILURE(VbglR3PidFile(g_pszPidFile, &g_hPidFile))) { RTPrintf("Failed to create a pidfile. Exiting.\n"); Log(("Failed to create a pidfile. Exiting.\n")); VbglR3Term(); return 1; } /* Set signal handlers to clean up on exit. */ vboxClientSetSignalHandlers(); /* Set an X11 error handler, so that we don't die when we get unavoidable errors. */ XSetErrorHandler(vboxClientXLibErrorHandler); /* Set an X11 I/O error handler, so that we can shutdown properly on fatal errors. */ XSetIOErrorHandler(vboxClientXLibIOErrorHandler); g_pService->run(); VBoxClient::CleanUp(); return 1; /* We should never get here. */ }