Arman Uguray | 065d0f7 | 2015-07-16 18:12:13 -0700 | [diff] [blame] | 1 | // |
| 2 | // Copyright (C) 2015 Google, Inc. |
| 3 | // |
| 4 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | // you may not use this file except in compliance with the License. |
| 6 | // You may obtain a copy of the License at: |
| 7 | // |
| 8 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | // |
| 10 | // Unless required by applicable law or agreed to in writing, software |
| 11 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | // See the License for the specific language governing permissions and |
| 14 | // limitations under the License. |
| 15 | // |
| 16 | |
| 17 | #include "service/settings.h" |
| 18 | |
Arman Uguray | 503baaa | 2015-08-20 11:49:00 -0700 | [diff] [blame] | 19 | #include <base/base_switches.h> |
Arman Uguray | 065d0f7 | 2015-07-16 18:12:13 -0700 | [diff] [blame] | 20 | #include <base/command_line.h> |
Arman Uguray | 065d0f7 | 2015-07-16 18:12:13 -0700 | [diff] [blame] | 21 | #include <base/logging.h> |
| 22 | |
| 23 | #include "service/switches.h" |
| 24 | |
| 25 | namespace bluetooth { |
| 26 | |
Myles Watson | 911d1ae | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 27 | Settings::Settings() : initialized_(false) {} |
Arman Uguray | 065d0f7 | 2015-07-16 18:12:13 -0700 | [diff] [blame] | 28 | |
Myles Watson | 911d1ae | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 29 | Settings::~Settings() {} |
Arman Uguray | 065d0f7 | 2015-07-16 18:12:13 -0700 | [diff] [blame] | 30 | |
| 31 | bool Settings::Init() { |
| 32 | CHECK(!initialized_); |
| 33 | auto command_line = base::CommandLine::ForCurrentProcess(); |
Arman Uguray | fe65fb7 | 2015-07-24 19:14:42 -0700 | [diff] [blame] | 34 | const auto& switches = command_line->GetSwitches(); |
Arman Uguray | 065d0f7 | 2015-07-16 18:12:13 -0700 | [diff] [blame] | 35 | |
Arman Uguray | fe65fb7 | 2015-07-24 19:14:42 -0700 | [diff] [blame] | 36 | for (const auto& iter : switches) { |
Ian Coolidge | c6760d8 | 2015-07-30 20:51:47 -0700 | [diff] [blame] | 37 | if (iter.first == switches::kCreateIPCSocketPath) { |
| 38 | // kCreateIPCSocketPath: An optional argument that initializes an IPC |
| 39 | // socket path for IPC. |
Arman Uguray | fe65fb7 | 2015-07-24 19:14:42 -0700 | [diff] [blame] | 40 | base::FilePath path(iter.second); |
| 41 | if (path.empty() || path.EndsWithSeparator()) { |
Ian Coolidge | c6760d8 | 2015-07-30 20:51:47 -0700 | [diff] [blame] | 42 | LOG(ERROR) << "Invalid IPC create socket path"; |
Arman Uguray | fe65fb7 | 2015-07-24 19:14:42 -0700 | [diff] [blame] | 43 | return false; |
| 44 | } |
Arman Uguray | 065d0f7 | 2015-07-16 18:12:13 -0700 | [diff] [blame] | 45 | |
Ian Coolidge | c6760d8 | 2015-07-30 20:51:47 -0700 | [diff] [blame] | 46 | create_ipc_socket_path_ = path; |
| 47 | } else if (iter.first == switches::kAndroidIPCSocketSuffix) { |
| 48 | // kAndroidIPCSocketSuffix: An optional argument used to express |
| 49 | // a socket that Android init created for us. We bind to this. |
| 50 | const std::string& suffix = iter.second; |
| 51 | if (suffix.empty()) { |
| 52 | LOG(ERROR) << "Invalid Android socket suffix"; |
| 53 | return false; |
| 54 | } |
| 55 | |
| 56 | android_ipc_socket_suffix_ = suffix; |
Arman Uguray | 503baaa | 2015-08-20 11:49:00 -0700 | [diff] [blame] | 57 | } |
| 58 | // Check for libbase logging switches. These get processed by |
| 59 | // logging::InitLogging directly. |
| 60 | else if (iter.first != ::switches::kV) { |
Arman Uguray | 8531fc3 | 2015-11-17 19:29:31 -0800 | [diff] [blame] | 61 | LOG(ERROR) << "Unexpected command-line switches found: " << iter.first; |
Arman Uguray | fe65fb7 | 2015-07-24 19:14:42 -0700 | [diff] [blame] | 62 | return false; |
| 63 | } |
Arman Uguray | 065d0f7 | 2015-07-16 18:12:13 -0700 | [diff] [blame] | 64 | } |
| 65 | |
Ian Coolidge | c6760d8 | 2015-07-30 20:51:47 -0700 | [diff] [blame] | 66 | // Two IPC methods/paths were provided. |
Myles Watson | 911d1ae | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 67 | if (!android_ipc_socket_suffix_.empty() && !create_ipc_socket_path_.empty()) { |
Ian Coolidge | c6760d8 | 2015-07-30 20:51:47 -0700 | [diff] [blame] | 68 | LOG(ERROR) << "Too many IPC methods provided"; |
| 69 | return false; |
| 70 | } |
| 71 | |
Arman Uguray | 065d0f7 | 2015-07-16 18:12:13 -0700 | [diff] [blame] | 72 | // The daemon has no arguments |
| 73 | if (command_line->GetArgs().size()) { |
| 74 | LOG(ERROR) << "Unexpected command-line arguments found"; |
| 75 | return false; |
| 76 | } |
| 77 | |
Arman Uguray | 065d0f7 | 2015-07-16 18:12:13 -0700 | [diff] [blame] | 78 | initialized_ = true; |
| 79 | return true; |
| 80 | } |
| 81 | |
| 82 | } // namespace bluetooth |