VirtualBox

source: vbox/trunk/src/VBox/Main/generic/DhcpServerRunner.cpp@ 17877

Last change on this file since 17877 was 17877, checked in by vboxsync, 16 years ago

export to OSE

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.2 KB
Line 
1/* $Id: DhcpServerRunner.cpp 17877 2009-03-14 19:59:21Z vboxsync $ */
2/** @file
3 * VirtualBox Main - interface for VBox DHCP server
4 */
5
6/*
7 * Copyright (C) 2009 Sun Microsystems, Inc.
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
19 * additional information or have any questions.
20 */
21#include "DhcpServerRunner.h"
22#include <iprt/process.h>
23#include <iprt/param.h>
24#include <iprt/env.h>
25
26struct ARGDEF
27{
28 DHCPCFG Type;
29 const char * Name;
30};
31
32#ifdef RT_OS_WINDOWS
33# define DHCP_EXECUTABLE_NAME "VBoxNetDHCP.exe"
34#else
35# define DHCP_EXECUTABLE_NAME "VBoxNetDHCP"
36#endif
37
38static const ARGDEF g_aArgDefs[] = {
39 {DHCPCFG_NAME, "--name "},
40 {DHCPCFG_NETNAME, "--network "},
41 {DHCPCFG_TRUNKTYPE, "--trunk-type "},
42 {DHCPCFG_TRUNKNAME, "--trunk-name "},
43 {DHCPCFG_MACADDRESS, "--mac-address "},
44 {DHCPCFG_IPADDRESS, "--ip-address "},
45 {DHCPCFG_LEASEDB, "--lease-db"},
46 {DHCPCFG_VERBOSE, "--verbose"},
47 {DHCPCFG_BEGINCONFIG, "--begin-config"},
48 {DHCPCFG_GATEWAY, "--gateway "},
49 {DHCPCFG_LOWERIP, "--lower-ip "},
50 {DHCPCFG_UPPERIP, "--upper-ip "},
51 {DHCPCFG_NETMASK, "--netmask "},
52 {DHCPCFG_HELP, "--help"},
53 {DHCPCFG_VERSION, "--version"}
54};
55
56static const ARGDEF * getArgDef(DHCPCFG type)
57{
58 for(int i = 0; i < sizeof(g_aArgDefs)/sizeof(g_aArgDefs[0]); i++)
59 {
60 if(g_aArgDefs[i].Type == type)
61 {
62 return &g_aArgDefs[i];
63 }
64 }
65 return NULL;
66}
67
68int DhcpServerRunner::start()
69{
70 if(isRunning())
71 return VINF_ALREADY_INITIALIZED;
72
73 const char * args[DHCPCFG_NOTOPT_MAXVAL * 2];
74
75 /* get the path to the executable */
76 const char *exePath = DHCP_EXECUTABLE_NAME;
77
78 int index = 0;
79
80 args[index++] = exePath;
81
82 for(int i = 0; i < DHCPCFG_NOTOPT_MAXVAL; i++)
83 {
84 if(!mOptions[i].isNull())
85 {
86 const ARGDEF * pArgDef = getArgDef((DHCPCFG)i);
87 args[index++] = pArgDef->Name;
88 if(!mOptions[i].isEmpty())
89 {
90 args[index++] = mOptions[i].raw();
91 }
92 }
93 }
94
95 args[index++] = NULL;
96
97 int rc = RTProcCreate (exePath, args, RTENV_DEFAULT, 0, &mProcess);
98 if (RT_FAILURE (rc))
99 {
100 mProcess = NIL_RTPROCESS;
101 }
102 return rc;
103}
104
105int DhcpServerRunner::stop()
106{
107 if(!isRunning())
108 return VINF_OBJECT_DESTROYED;
109
110 int rc = RTProcTerminate(mProcess);
111 mProcess = NIL_RTPROCESS;
112 return rc;
113}
114
115bool DhcpServerRunner::isRunning()
116{
117 if(mProcess == NIL_RTPROCESS)
118 return false;
119
120 RTPROCSTATUS status;
121 int rc = RTProcWait(mProcess, RTPROCWAIT_FLAGS_NOBLOCK, &status);
122
123 if(rc == VERR_PROCESS_RUNNING)
124 return true;
125
126 mProcess = NIL_RTPROCESS;
127 return false;
128}
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette