1 | /* $Id: HostDnsService.h 48806 2013-10-02 05:23:35Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * Host DNS listener.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2005-2012 Oracle Corporation
|
---|
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 |
|
---|
18 | #ifndef ___H_DNSHOSTSERVICE
|
---|
19 | #define ___H_DNSHOSTSERVICE
|
---|
20 | #include "VirtualBoxBase.h"
|
---|
21 |
|
---|
22 | #include <iprt/cdefs.h>
|
---|
23 | #include <iprt/critsect.h>
|
---|
24 | #include <iprt/types.h>
|
---|
25 |
|
---|
26 |
|
---|
27 | #include <list>
|
---|
28 |
|
---|
29 | typedef std::list<com::Utf8Str> Utf8StrList;
|
---|
30 | typedef Utf8StrList::iterator Utf8StrListIterator;
|
---|
31 |
|
---|
32 | class HostDnsService
|
---|
33 | {
|
---|
34 | public:
|
---|
35 | HostDnsService();
|
---|
36 | virtual ~HostDnsService();
|
---|
37 | virtual HRESULT init(const VirtualBox *aParent);
|
---|
38 | virtual HRESULT start(void);
|
---|
39 | virtual void stop(void);
|
---|
40 | STDMETHOD(COMGETTER(NameServers))(ComSafeArrayOut(BSTR, aNameServers));
|
---|
41 | STDMETHOD(COMGETTER(DomainName))(BSTR *aDomainName);
|
---|
42 | STDMETHOD(COMGETTER(SearchStrings))(ComSafeArrayOut(BSTR, aSearchStrings));
|
---|
43 | protected:
|
---|
44 | virtual HRESULT update(void);
|
---|
45 |
|
---|
46 | /* XXX: hide it with struct Data together with <list> */
|
---|
47 | Utf8StrList m_llNameServers;
|
---|
48 | Utf8StrList m_llSearchStrings;
|
---|
49 | com::Utf8Str m_DomainName;
|
---|
50 | RTCRITSECT m_hCritSect;
|
---|
51 |
|
---|
52 | private:
|
---|
53 | const VirtualBox *mParent;
|
---|
54 | HostDnsService(const HostDnsService& service){ NOREF(service); }
|
---|
55 | HostDnsService& operator =(const HostDnsService& service){ NOREF(service); return *this; }
|
---|
56 | };
|
---|
57 |
|
---|
58 | # ifdef RT_OS_DARWIN
|
---|
59 | class HostDnsServiceDarwin: public HostDnsService
|
---|
60 | {
|
---|
61 | public:
|
---|
62 | HostDnsServiceDarwin();
|
---|
63 | virtual ~HostDnsServiceDarwin();
|
---|
64 |
|
---|
65 | virtual HRESULT init(const VirtualBox *aParent);
|
---|
66 | virtual HRESULT start(void);
|
---|
67 | virtual void stop(void);
|
---|
68 | virtual HRESULT update();
|
---|
69 | private:
|
---|
70 | static void hostDnsServiceStoreCallback(void *store, void *arrayRef, void *info);
|
---|
71 |
|
---|
72 | };
|
---|
73 | # endif
|
---|
74 |
|
---|
75 | # ifdef RT_OS_WINDOWS
|
---|
76 | class HostDnsServiceWin: public HostDnsService
|
---|
77 | {
|
---|
78 | public:
|
---|
79 | HostDnsServiceWin();
|
---|
80 | virtual ~HostDnsServiceWin();
|
---|
81 |
|
---|
82 | virtual HRESULT init(const VirtualBox *aParent);
|
---|
83 | virtual HRESULT start(void);
|
---|
84 | virtual void stop(void);
|
---|
85 | virtual HRESULT update();
|
---|
86 | private:
|
---|
87 | void strList2List(Utf8StrList& lst, char *strLst);
|
---|
88 | };
|
---|
89 | # endif
|
---|
90 |
|
---|
91 | #if defined(RT_OS_SOLARIS) || defined(RT_OS_LINUX) || defined(RT_OS_OS2)
|
---|
92 |
|
---|
93 | class HostDnsServiceResolvConf: public HostDnsService
|
---|
94 | {
|
---|
95 | public:
|
---|
96 | HostDnsServiceResolvConf(const char *aResolvConfFileName = "/etc/resolv.conf");
|
---|
97 | virtual ~HostDnsServiceResolvConf();
|
---|
98 | virtual HRESULT init(const VirtualBox *aParent);
|
---|
99 | virtual HRESULT update();
|
---|
100 | protected:
|
---|
101 | com::Utf8Str m_ResolvConfFilename;
|
---|
102 | RTFILE m_ResolvConfFile;
|
---|
103 | };
|
---|
104 |
|
---|
105 | # if defined(RT_OS_SOLARIS)
|
---|
106 | /**
|
---|
107 | * XXX: https://blogs.oracle.com/praks/entry/file_events_notification
|
---|
108 | */
|
---|
109 | class HostDnsServiceSolaris: public HostDnsServiceResolvConf
|
---|
110 | {
|
---|
111 | public:
|
---|
112 | HostDnsServiceSolaris(){}
|
---|
113 | virtual ~HostDnsServiceSolaris(){}
|
---|
114 | };
|
---|
115 | # elif defined(RT_OS_LINUX)
|
---|
116 | /**
|
---|
117 | * XXX: http://www.ibm.com/developerworks/linux/library/l-ubuntu-inotify/index.html
|
---|
118 | */
|
---|
119 | class HostDnsServiceLinux: public HostDnsServiceResolvConf
|
---|
120 | {
|
---|
121 | public:
|
---|
122 | HostDnsServiceLinux(){}
|
---|
123 | virtual ~HostDnsServiceLinux(){}
|
---|
124 | };
|
---|
125 |
|
---|
126 | # elif defined(RT_OS_OS2)
|
---|
127 | class HostDnsServiceOs2: public HostDnsServiceResolvConf
|
---|
128 | {
|
---|
129 | public:
|
---|
130 | HostDnsServiceOs2()
|
---|
131 | {
|
---|
132 | /* XXX: \\MPTN\\ETC should be taken from environment variable ETC */
|
---|
133 | ::HostDnsServiceResolvConf("\\MPTN\\ETC\\RESOLV2");
|
---|
134 | }
|
---|
135 | virtual ~HostDnsServiceOs2(){}
|
---|
136 | };
|
---|
137 | # endif
|
---|
138 | #endif
|
---|
139 |
|
---|
140 | #endif /* !___H_DNSHOSTSERVICE */
|
---|