Paul Stewart | bf66761 | 2012-06-29 14:49:54 -0700 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium OS Authors. All rights reserved. |
Paul Stewart | b606394 | 2011-08-05 10:17:29 -0700 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef SHILL_RESOLVER_ |
| 6 | #define SHILL_RESOLVER_ |
| 7 | |
Hristo Stefanov | ed2c28c | 2011-11-29 15:37:30 -0800 | [diff] [blame] | 8 | #include <string> |
| 9 | #include <vector> |
| 10 | |
Paul Stewart | b606394 | 2011-08-05 10:17:29 -0700 | [diff] [blame] | 11 | #include <base/file_path.h> |
Paul Stewart | 0d2ada3 | 2011-08-09 17:01:57 -0700 | [diff] [blame] | 12 | #include <base/lazy_instance.h> |
Paul Stewart | b606394 | 2011-08-05 10:17:29 -0700 | [diff] [blame] | 13 | #include <base/memory/ref_counted.h> |
Paul Stewart | b606394 | 2011-08-05 10:17:29 -0700 | [diff] [blame] | 14 | |
| 15 | #include "shill/refptr_types.h" |
| 16 | |
| 17 | namespace shill { |
| 18 | |
| 19 | // This provides a static function for dumping the DNS information out |
| 20 | // of an ipconfig into a "resolv.conf" formatted file. |
| 21 | class Resolver { |
| 22 | public: |
Paul Stewart | bf66761 | 2012-06-29 14:49:54 -0700 | [diff] [blame] | 23 | enum TimeoutParameters { |
| 24 | kDefaultTimeout, |
| 25 | kShortTimeout |
| 26 | }; |
| 27 | |
Paul Stewart | 4d5efb7 | 2012-09-17 12:24:34 -0700 | [diff] [blame] | 28 | // The default comma-separated list of search-list prefixes that |
| 29 | // should be ignored when writing out a DNS configuration. These |
| 30 | // are usually preconfigured by a DHCP server and are not of real |
| 31 | // value to the user. This will release DNS bandwidth for searches |
| 32 | // we expect will have a better chance of getting what the user is |
| 33 | // looking for. |
| 34 | static const char kDefaultIgnoredSearchList[]; |
| 35 | |
Paul Stewart | bf66761 | 2012-06-29 14:49:54 -0700 | [diff] [blame] | 36 | // The default comma-separated list of technologies for which short |
| 37 | // DNS timeouts should be enabled. |
| 38 | static const char kDefaultShortTimeoutTechnologies[]; |
| 39 | |
Paul Stewart | 0d2ada3 | 2011-08-09 17:01:57 -0700 | [diff] [blame] | 40 | virtual ~Resolver(); |
| 41 | |
Paul Stewart | b606394 | 2011-08-05 10:17:29 -0700 | [diff] [blame] | 42 | // Since this is a singleton, use Resolver::GetInstance()->Foo() |
| 43 | static Resolver *GetInstance(); |
| 44 | |
Paul Stewart | dd60e45 | 2011-08-08 11:38:36 -0700 | [diff] [blame] | 45 | virtual void set_path(const FilePath &path) { path_ = path; } |
Paul Stewart | b606394 | 2011-08-05 10:17:29 -0700 | [diff] [blame] | 46 | |
Paul Stewart | 6f65c0b | 2012-09-11 14:57:32 -0700 | [diff] [blame] | 47 | // Install domain name service parameters, given a list of |
| 48 | // DNS servers in |dns_servers|, a list of DNS search suffixes in |
| 49 | // |domain_search| and a DNS timeout parameter in |timeout|. |
Paul Stewart | dd60e45 | 2011-08-08 11:38:36 -0700 | [diff] [blame] | 50 | virtual bool SetDNSFromLists(const std::vector<std::string> &dns_servers, |
Paul Stewart | bf66761 | 2012-06-29 14:49:54 -0700 | [diff] [blame] | 51 | const std::vector<std::string> &domain_search, |
| 52 | TimeoutParameters timeout); |
Paul Stewart | b606394 | 2011-08-05 10:17:29 -0700 | [diff] [blame] | 53 | |
Paul Stewart | bf66761 | 2012-06-29 14:49:54 -0700 | [diff] [blame] | 54 | // Remove any created domain name service file. |
Paul Stewart | dd60e45 | 2011-08-08 11:38:36 -0700 | [diff] [blame] | 55 | virtual bool ClearDNS(); |
Paul Stewart | b606394 | 2011-08-05 10:17:29 -0700 | [diff] [blame] | 56 | |
Paul Stewart | 4d5efb7 | 2012-09-17 12:24:34 -0700 | [diff] [blame] | 57 | // Sets the list of ignored DNS search suffixes. This list will be used |
| 58 | // to filter the domain_search parameter of later SetDNSFromLists() calls. |
| 59 | virtual void set_ignored_search_list( |
| 60 | const std::vector<std::string> &ignored_list) { |
| 61 | ignored_search_list_ = ignored_list; |
| 62 | } |
| 63 | |
Paul Stewart | 0d2ada3 | 2011-08-09 17:01:57 -0700 | [diff] [blame] | 64 | protected: |
Paul Stewart | b606394 | 2011-08-05 10:17:29 -0700 | [diff] [blame] | 65 | Resolver(); |
Paul Stewart | 0d2ada3 | 2011-08-09 17:01:57 -0700 | [diff] [blame] | 66 | |
| 67 | private: |
| 68 | friend struct base::DefaultLazyInstanceTraits<Resolver>; |
| 69 | friend class ResolverTest; |
Paul Stewart | b606394 | 2011-08-05 10:17:29 -0700 | [diff] [blame] | 70 | |
Paul Stewart | bf66761 | 2012-06-29 14:49:54 -0700 | [diff] [blame] | 71 | static const char kDefaultTimeoutOptions[]; |
| 72 | static const char kShortTimeoutOptions[]; |
| 73 | |
Paul Stewart | b606394 | 2011-08-05 10:17:29 -0700 | [diff] [blame] | 74 | FilePath path_; |
Paul Stewart | 4d5efb7 | 2012-09-17 12:24:34 -0700 | [diff] [blame] | 75 | std::vector<std::string> ignored_search_list_; |
Paul Stewart | b606394 | 2011-08-05 10:17:29 -0700 | [diff] [blame] | 76 | |
| 77 | DISALLOW_COPY_AND_ASSIGN(Resolver); |
| 78 | }; |
| 79 | |
| 80 | } // namespace shill |
| 81 | |
| 82 | #endif // SHILL_RESOLVER_ |