blob: 7eeb3817ce84cc922cc265a1937c7d8094556244 [file] [log] [blame]
fabiomfv@google.comee457f82011-01-24 16:49:19 +00001/*
2 * Copyright 2009 Google Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
5 * use this file except in compliance with the License. You may obtain a copy of
6 * 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, WITHOUT
12 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13 * License for the specific language governing permissions and limitations under
14 * the License.
15 */
16
17#include <windows.h>
18#include <winnt.h>
19#include <winreg.h>
20#include "Debug.h"
21#include "Preferences.h"
22#include "AllowedConnections.h"
23
24#define REG_ACCESS_LIST "SOFTWARE\\Google\\Google Web Toolkit\\gwt-dev-plugin.accessList"
25
26/**
27 * Return a null-terminated string containing the access list.
28 *
29 * @param HKEY registry key for the access list value
30 * @return null-terminated string containing the access list (an empty string
31 * if the value does not exist) -- caller is responsible for freeing with
32 * delete[]
33 */
34static char* getAccessList(HKEY keyHandle) {
35 char *buf;
36 DWORD len = 512;
37 while(true) {
38 buf = new char[len];
39 int cc = RegQueryValueExA(keyHandle, NULL, 0, NULL, (LPBYTE) buf, &len);
40 if (cc == ERROR_SUCCESS) {
41 break;
42 } else if (cc == ERROR_FILE_NOT_FOUND) {
43 // special handling if the value doesn't exist
44 len = 0;
45 break;
46 } else if (cc != ERROR_MORE_DATA) {
47 // log unexpected errors
48 Debug::log(Debug::Error) << "Unable to load access list from registry: "
49 << cc << Debug::flush;
50 len = 0;
51 break;
52 }
53 // Buffer wasn't big enough, so make it bigger and try again
54 delete [] buf;
55 len *= 2;
56 }
57 buf[len] = 0;
58 return buf;
59}
60
61void Preferences::addNewRule(const std::string& pattern, bool exclude) {
62 HKEY keyHandle;
63 if (RegCreateKeyExA(HKEY_CURRENT_USER, REG_ACCESS_LIST, 0, 0,
64 REG_OPTION_NON_VOLATILE, KEY_ALL_ACCESS, NULL, &keyHandle, NULL)
65 != ERROR_SUCCESS) {
66 return;
67 }
68 char *buf = getAccessList(keyHandle);
69 std::string pref(buf);
70 delete [] buf;
71 if (pref.length() > 0) {
72 pref += ',';
73 }
74 if (exclude) {
75 pref += '!';
76 }
77 pref += pattern;
78 int cc = RegSetValueExA(keyHandle, NULL, 0, REG_SZ, (LPBYTE) pref.c_str(),
79 pref.length() + 1);
80 if (cc != ERROR_SUCCESS) {
81 Debug::log(Debug::Error) << "Unable to store access list in registry: "
82 << cc << Debug::flush;
83 }
84 RegCloseKey(keyHandle);
85}
86
87void Preferences::loadAccessList() {
88 // TODO(jat): can Reg* routines throw exceptions? If so, we need to make
89 // this exception safe about closing the key hendle and freeing the buffer.
90 HKEY keyHandle;
91 if (RegCreateKeyExA(HKEY_CURRENT_USER, REG_ACCESS_LIST, 0, 0,
92 REG_OPTION_NON_VOLATILE, KEY_ALL_ACCESS, NULL, &keyHandle, NULL)
93 != ERROR_SUCCESS) {
94 return;
95 }
96 char *buf = getAccessList(keyHandle);
97 AllowedConnections::initFromAccessList(buf);
98 delete [] buf;
99 RegCloseKey(keyHandle);
100}