1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/policy/configuration_policy_pref_store.h"
#include <map>
#include <set>
#include <string>
#include <vector>
#include "base/command_line.h"
#include "base/lazy_instance.h"
#include "base/logging.h"
#include "base/stl_util.h"
#include "base/string16.h"
#include "base/string_util.h"
#include "base/utf_string_conversions.h"
#include "base/values.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/policy/browser_policy_connector.h"
#include "chrome/browser/policy/configuration_policy_provider.h"
#include "chrome/browser/policy/policy_path_parser.h"
#include "chrome/browser/prefs/incognito_mode_prefs.h"
#include "chrome/browser/prefs/pref_value_map.h"
#include "chrome/browser/prefs/proxy_config_dictionary.h"
#include "chrome/browser/search_engines/search_terms_data.h"
#include "chrome/browser/search_engines/template_url.h"
#include "chrome/common/pref_names.h"
#include "content/common/notification_service.h"
#include "policy/policy_constants.h"
namespace policy {
// Accepts policy settings from a ConfigurationPolicyProvider, converts them
// to preferences and caches the result.
class ConfigurationPolicyPrefKeeper
: private ConfigurationPolicyStoreInterface {
public:
explicit ConfigurationPolicyPrefKeeper(ConfigurationPolicyProvider* provider);
virtual ~ConfigurationPolicyPrefKeeper();
// Get a preference value.
PrefStore::ReadResult GetValue(const std::string& key,
const Value** result) const;
// Compute the set of preference names that are different in |keeper|. This
// includes preferences that are missing in either one.
void GetDifferingPrefPaths(const ConfigurationPolicyPrefKeeper* other,
std::vector<std::string>* differing_prefs) const;
private:
// ConfigurationPolicyStore methods:
virtual void Apply(ConfigurationPolicyType setting, Value* value);
// Policies that map to a single preference are handled
// by an automated converter. Each one of these policies
// has an entry in |simple_policy_map_| with the following type.
struct PolicyToPreferenceMapEntry {
base::Value::Type value_type;
ConfigurationPolicyType policy_type;
const char* preference_path; // A DictionaryValue path, not a file path.
};
// Remove the preferences found in the map from |prefs_|. Returns true if any
// such preferences were found and removed.
bool RemovePreferencesOfMap(const PolicyToPreferenceMapEntry* map,
int table_size);
bool ApplyPolicyFromMap(ConfigurationPolicyType policy,
Value* value,
const PolicyToPreferenceMapEntry* map,
int size);
// Processes proxy-specific policies. Returns true if the specified policy
// is a proxy-related policy. ApplyProxyPolicy assumes the ownership
// of |value| in the case that the policy is proxy-specific.
bool ApplyProxyPolicy(ConfigurationPolicyType policy, Value* value);
// Handles sync-related policies. Returns true if the policy was handled.
// Assumes ownership of |value| in that case.
bool ApplySyncPolicy(ConfigurationPolicyType policy, Value* value);
// Handles policies that affect Autofill. Returns true if the policy was
// handled and assumes ownership of |value| in that case.
bool ApplyAutofillPolicy(ConfigurationPolicyType policy, Value* value);
// Processes download directory policy. Returns true if the specified policy
// is the download directory policy. ApplyDownloadDirPolicy assumes the
// ownership of |value| in the case that the policy is recognized.
bool ApplyDownloadDirPolicy(ConfigurationPolicyType policy, Value* value);
// Processes disk cache directory policy. Returns true if the specified policy
// is the right one. ApplyDiskCacheDirPolicy assumes the
// ownership of |value| in the case that the policy is recognized.
bool ApplyDiskCacheDirPolicy(ConfigurationPolicyType policy, Value* value);
// Processes file-selection dialogs policy. Returns true if the specified
// policy is the file-selection dialogs policy.
// ApplyFileSelectionDialogsPolicy assumes the ownership of |value| in the
// case that the policy is recognized.
bool ApplyFileSelectionDialogsPolicy(ConfigurationPolicyType policy,
Value* value);
// Processes default search provider policies. Returns true if the specified
// policy is a default search provider related policy. In that case,
// ApplyDefaultSearchPolicy takes ownership of |value|.
bool ApplyDefaultSearchPolicy(ConfigurationPolicyType policy, Value* value);
// Processes incognito mode availability related policies. Returns true if the
// specified policy is pertinent to incognito mode availability. In that case,
// the function takes ownership of |value|.
bool ApplyIncognitoModePolicy(ConfigurationPolicyType policy, Value* value);
// Processes a policy that can disable the bookmarks bar. It can also affect
// other preferences.
bool ApplyBookmarksPolicy(ConfigurationPolicyType policy, Value* value);
// Make sure that the |path| if present in |prefs_|. If not, set it to
// a blank string.
void EnsureStringPrefExists(const std::string& path);
// If the required entries for default search are specified and valid,
// finalizes the policy-specified configuration by initializing the
// unspecified map entries. Otherwise wipes all default search related
// map entries from |prefs_|.
void FinalizeDefaultSearchPolicySettings();
// If the required entries for the proxy settings are specified and valid,
// finalizes the policy-specified configuration by initializing the
// respective values in |prefs_|.
void FinalizeProxyPolicySettings();
// If the required entries for the Incognito mode availability settings
// are specified and valid, finalizes the policy-specified configuration
// by initializing the respective values in |prefs_|.
void FinalizeIncognitoModeSettings();
// Returns true if the policy values stored in proxy_* represent a valid proxy
// configuration, including the case in which there is no configuration at
// all.
bool CheckProxySettings();
// Assumes CheckProxySettings returns true and applies the values stored
// in proxy_*.
void ApplyProxySettings();
bool HasProxyPolicy(ConfigurationPolicyType policy) const;
// Temporary cache that stores values until FinalizeProxyPolicySettings()
// is called.
std::map<ConfigurationPolicyType, Value*> proxy_policies_;
// Saved state of the deprecated kPolicyIncognitoEnabled. It is still used for
// backward compatibility to set the new kIncognitoAvailabilityMode pref in
// case the corresponding policy for the latter is not specified.
scoped_ptr<Value> deprecated_incognito_enabled_;
PrefValueMap prefs_;
static const PolicyToPreferenceMapEntry kSimplePolicyMap[];
static const PolicyToPreferenceMapEntry kDefaultSearchPolicyMap[];
DISALLOW_COPY_AND_ASSIGN(ConfigurationPolicyPrefKeeper);
};
const ConfigurationPolicyPrefKeeper::PolicyToPreferenceMapEntry
ConfigurationPolicyPrefKeeper::kSimplePolicyMap[] = {
{ Value::TYPE_STRING, kPolicyHomepageLocation, prefs::kHomePage },
{ Value::TYPE_BOOLEAN, kPolicyHomepageIsNewTabPage,
prefs::kHomePageIsNewTabPage },
{ Value::TYPE_INTEGER, kPolicyRestoreOnStartup,
prefs::kRestoreOnStartup},
{ Value::TYPE_LIST, kPolicyRestoreOnStartupURLs,
prefs::kURLsToRestoreOnStartup },
{ Value::TYPE_BOOLEAN, kPolicyAlternateErrorPagesEnabled,
prefs::kAlternateErrorPagesEnabled },
{ Value::TYPE_BOOLEAN, kPolicySearchSuggestEnabled,
prefs::kSearchSuggestEnabled },
{ Value::TYPE_BOOLEAN, kPolicyDnsPrefetchingEnabled,
prefs::kNetworkPredictionEnabled },
{ Value::TYPE_BOOLEAN, kPolicyDisableSpdy,
prefs::kDisableSpdy },
{ Value::TYPE_LIST, kPolicyDisabledSchemes,
prefs::kDisabledSchemes },
{ Value::TYPE_BOOLEAN, kPolicySafeBrowsingEnabled,
prefs::kSafeBrowsingEnabled },
{ Value::TYPE_BOOLEAN, kPolicyPasswordManagerEnabled,
prefs::kPasswordManagerEnabled },
{ Value::TYPE_BOOLEAN, kPolicyPasswordManagerAllowShowPasswords,
prefs::kPasswordManagerAllowShowPasswords },
{ Value::TYPE_BOOLEAN, kPolicyPrintingEnabled,
prefs::kPrintingEnabled },
{ Value::TYPE_BOOLEAN, kPolicyMetricsReportingEnabled,
prefs::kMetricsReportingEnabled },
{ Value::TYPE_STRING, kPolicyApplicationLocaleValue,
prefs::kApplicationLocale},
{ Value::TYPE_LIST, kPolicyExtensionInstallWhitelist,
prefs::kExtensionInstallAllowList},
{ Value::TYPE_LIST, kPolicyExtensionInstallBlacklist,
prefs::kExtensionInstallDenyList},
{ Value::TYPE_LIST, kPolicyExtensionInstallForcelist,
prefs::kExtensionInstallForceList},
{ Value::TYPE_LIST, kPolicyDisabledPlugins,
prefs::kPluginsDisabledPlugins},
{ Value::TYPE_LIST, kPolicyDisabledPluginsExceptions,
prefs::kPluginsDisabledPluginsExceptions},
{ Value::TYPE_LIST, kPolicyEnabledPlugins,
prefs::kPluginsEnabledPlugins},
{ Value::TYPE_BOOLEAN, kPolicyShowHomeButton,
prefs::kShowHomeButton },
{ Value::TYPE_BOOLEAN, kPolicyJavascriptEnabled,
prefs::kWebKitJavascriptEnabled },
{ Value::TYPE_BOOLEAN, kPolicySavingBrowserHistoryDisabled,
prefs::kSavingBrowserHistoryDisabled },
{ Value::TYPE_BOOLEAN, kPolicyClearSiteDataOnExit,
prefs::kClearSiteDataOnExit },
{ Value::TYPE_BOOLEAN, kPolicyDeveloperToolsDisabled,
prefs::kDevToolsDisabled },
{ Value::TYPE_BOOLEAN, kPolicyBlockThirdPartyCookies,
prefs::kBlockThirdPartyCookies },
{ Value::TYPE_INTEGER, kPolicyDefaultCookiesSetting,
prefs::kManagedDefaultCookiesSetting },
{ Value::TYPE_INTEGER, kPolicyDefaultImagesSetting,
prefs::kManagedDefaultImagesSetting },
{ Value::TYPE_INTEGER, kPolicyDefaultJavaScriptSetting,
prefs::kManagedDefaultJavaScriptSetting },
{ Value::TYPE_INTEGER, kPolicyDefaultPluginsSetting,
prefs::kManagedDefaultPluginsSetting },
{ Value::TYPE_INTEGER, kPolicyDefaultPopupsSetting,
prefs::kManagedDefaultPopupsSetting },
{ Value::TYPE_LIST, kPolicyCookiesAllowedForUrls,
prefs::kManagedCookiesAllowedForUrls },
{ Value::TYPE_LIST, kPolicyCookiesBlockedForUrls,
prefs::kManagedCookiesBlockedForUrls },
{ Value::TYPE_LIST, kPolicyCookiesSessionOnlyForUrls,
prefs::kManagedCookiesSessionOnlyForUrls },
{ Value::TYPE_LIST, kPolicyImagesAllowedForUrls,
prefs::kManagedImagesAllowedForUrls },
{ Value::TYPE_LIST, kPolicyImagesBlockedForUrls,
prefs::kManagedImagesBlockedForUrls },
{ Value::TYPE_LIST, kPolicyJavaScriptAllowedForUrls,
prefs::kManagedJavaScriptAllowedForUrls },
{ Value::TYPE_LIST, kPolicyJavaScriptBlockedForUrls,
prefs::kManagedJavaScriptBlockedForUrls },
{ Value::TYPE_LIST, kPolicyPluginsAllowedForUrls,
prefs::kManagedPluginsAllowedForUrls },
{ Value::TYPE_LIST, kPolicyPluginsBlockedForUrls,
prefs::kManagedPluginsBlockedForUrls },
{ Value::TYPE_LIST, kPolicyPopupsAllowedForUrls,
prefs::kManagedPopupsAllowedForUrls },
{ Value::TYPE_LIST, kPolicyPopupsBlockedForUrls,
prefs::kManagedPopupsBlockedForUrls },
{ Value::TYPE_INTEGER, kPolicyDefaultNotificationsSetting,
prefs::kManagedDefaultNotificationsSetting },
{ Value::TYPE_INTEGER, kPolicyDefaultGeolocationSetting,
prefs::kManagedDefaultGeolocationSetting },
{ Value::TYPE_STRING, kPolicyAuthSchemes,
prefs::kAuthSchemes },
{ Value::TYPE_BOOLEAN, kPolicyDisableAuthNegotiateCnameLookup,
prefs::kDisableAuthNegotiateCnameLookup },
{ Value::TYPE_BOOLEAN, kPolicyEnableAuthNegotiatePort,
prefs::kEnableAuthNegotiatePort },
{ Value::TYPE_STRING, kPolicyAuthServerWhitelist,
prefs::kAuthServerWhitelist },
{ Value::TYPE_STRING, kPolicyAuthNegotiateDelegateWhitelist,
prefs::kAuthNegotiateDelegateWhitelist },
{ Value::TYPE_STRING, kPolicyGSSAPILibraryName,
prefs::kGSSAPILibraryName },
{ Value::TYPE_BOOLEAN, kPolicyAllowCrossOriginAuthPrompt,
prefs::kAllowCrossOriginAuthPrompt },
{ Value::TYPE_BOOLEAN, kPolicyDisable3DAPIs,
prefs::kDisable3DAPIs },
{ Value::TYPE_BOOLEAN, kPolicyDisablePluginFinder,
prefs::kDisablePluginFinder },
{ Value::TYPE_INTEGER, kPolicyPolicyRefreshRate,
prefs::kUserPolicyRefreshRate },
{ Value::TYPE_INTEGER, kPolicyDevicePolicyRefreshRate,
prefs::kDevicePolicyRefreshRate },
{ Value::TYPE_BOOLEAN, kPolicyInstantEnabled, prefs::kInstantEnabled },
{ Value::TYPE_BOOLEAN, kPolicyDefaultBrowserSettingEnabled,
prefs::kDefaultBrowserSettingEnabled },
{ Value::TYPE_BOOLEAN, kPolicyRemoteAccessClientFirewallTraversal,
prefs::kRemoteAccessClientFirewallTraversal },
{ Value::TYPE_BOOLEAN, kPolicyRemoteAccessHostFirewallTraversal,
prefs::kRemoteAccessHostFirewallTraversal },
{ Value::TYPE_BOOLEAN, kPolicyCloudPrintProxyEnabled,
prefs::kCloudPrintProxyEnabled },
{ Value::TYPE_BOOLEAN, kPolicyTranslateEnabled, prefs::kEnableTranslate },
{ Value::TYPE_BOOLEAN, kPolicyAllowOutdatedPlugins,
prefs::kPluginsAllowOutdated },
{ Value::TYPE_BOOLEAN, kPolicyAlwaysAuthorizePlugins,
prefs::kPluginsAlwaysAuthorize },
{ Value::TYPE_BOOLEAN, kPolicyEditBookmarksEnabled,
prefs::kEditBookmarksEnabled },
{ Value::TYPE_BOOLEAN, kPolicyAllowFileSelectionDialogs,
prefs::kAllowFileSelectionDialogs },
{ Value::TYPE_BOOLEAN, kPolicyImportBookmarks,
prefs::kImportBookmarks},
{ Value::TYPE_BOOLEAN, kPolicyImportHistory,
prefs::kImportHistory},
{ Value::TYPE_BOOLEAN, kPolicyImportHomepage,
prefs::kImportHomepage},
{ Value::TYPE_BOOLEAN, kPolicyImportSearchEngine,
prefs::kImportSearchEngine },
{ Value::TYPE_BOOLEAN, kPolicyImportSavedPasswords,
prefs::kImportSavedPasswords },
{ Value::TYPE_INTEGER, kPolicyMaxConnectionsPerProxy,
prefs::kMaxConnectionsPerProxy },
{ Value::TYPE_BOOLEAN, kPolicyHideWebStorePromo,
prefs::kNTPHideWebStorePromo },
#if defined(OS_CHROMEOS)
{ Value::TYPE_BOOLEAN, kPolicyChromeOsLockOnIdleSuspend,
prefs::kEnableScreenLock },
{ Value::TYPE_STRING, kPolicyChromeOsReleaseChannel,
prefs::kChromeOsReleaseChannel },
#endif
};
const ConfigurationPolicyPrefKeeper::PolicyToPreferenceMapEntry
ConfigurationPolicyPrefKeeper::kDefaultSearchPolicyMap[] = {
{ Value::TYPE_BOOLEAN, kPolicyDefaultSearchProviderEnabled,
prefs::kDefaultSearchProviderEnabled },
{ Value::TYPE_STRING, kPolicyDefaultSearchProviderName,
prefs::kDefaultSearchProviderName },
{ Value::TYPE_STRING, kPolicyDefaultSearchProviderKeyword,
prefs::kDefaultSearchProviderKeyword },
{ Value::TYPE_STRING, kPolicyDefaultSearchProviderSearchURL,
prefs::kDefaultSearchProviderSearchURL },
{ Value::TYPE_STRING, kPolicyDefaultSearchProviderSuggestURL,
prefs::kDefaultSearchProviderSuggestURL },
{ Value::TYPE_STRING, kPolicyDefaultSearchProviderInstantURL,
prefs::kDefaultSearchProviderInstantURL },
{ Value::TYPE_STRING, kPolicyDefaultSearchProviderIconURL,
prefs::kDefaultSearchProviderIconURL },
{ Value::TYPE_LIST, kPolicyDefaultSearchProviderEncodings,
prefs::kDefaultSearchProviderEncodings },
};
ConfigurationPolicyPrefKeeper::ConfigurationPolicyPrefKeeper(
ConfigurationPolicyProvider* provider) {
if (!provider->Provide(this))
LOG(WARNING) << "Failed to get policy from provider.";
FinalizeProxyPolicySettings();
FinalizeDefaultSearchPolicySettings();
FinalizeIncognitoModeSettings();
}
ConfigurationPolicyPrefKeeper::~ConfigurationPolicyPrefKeeper() {
DCHECK(proxy_policies_.empty());
}
PrefStore::ReadResult
ConfigurationPolicyPrefKeeper::GetValue(const std::string& key,
const Value** result) const {
const Value* stored_value = NULL;
if (!prefs_.GetValue(key, &stored_value))
return PrefStore::READ_NO_VALUE;
// Check whether there's a default value, which indicates READ_USE_DEFAULT
// should be returned.
if (stored_value->IsType(Value::TYPE_NULL))
return PrefStore::READ_USE_DEFAULT;
if (result)
*result = stored_value;
return PrefStore::READ_OK;
}
void ConfigurationPolicyPrefKeeper::GetDifferingPrefPaths(
const ConfigurationPolicyPrefKeeper* other,
std::vector<std::string>* differing_prefs) const {
prefs_.GetDifferingKeys(&other->prefs_, differing_prefs);
}
void ConfigurationPolicyPrefKeeper::Apply(ConfigurationPolicyType policy,
Value* value) {
if (ApplyProxyPolicy(policy, value) ||
ApplySyncPolicy(policy, value) ||
ApplyAutofillPolicy(policy, value) ||
ApplyDownloadDirPolicy(policy, value) ||
ApplyDiskCacheDirPolicy(policy, value) ||
ApplyFileSelectionDialogsPolicy(policy, value) ||
ApplyDefaultSearchPolicy(policy, value) ||
ApplyIncognitoModePolicy(policy, value) ||
ApplyBookmarksPolicy(policy, value) ||
ApplyPolicyFromMap(policy, value, kSimplePolicyMap,
arraysize(kSimplePolicyMap)))
return;
// Other policy implementations go here.
NOTIMPLEMENTED();
delete value;
}
bool ConfigurationPolicyPrefKeeper::RemovePreferencesOfMap(
const PolicyToPreferenceMapEntry* map, int table_size) {
bool found_any = false;
for (int i = 0; i < table_size; ++i) {
if (prefs_.RemoveValue(map[i].preference_path))
found_any = true;
}
return found_any;
}
bool ConfigurationPolicyPrefKeeper::ApplyPolicyFromMap(
ConfigurationPolicyType policy,
Value* value,
const PolicyToPreferenceMapEntry* map,
int size) {
for (int current = 0; current < size; ++current) {
if (map[current].policy_type == policy) {
DCHECK_EQ(map[current].value_type, value->GetType())
<< "mismatch in provided and expected policy value for preferences "
<< map[current].preference_path << ". expected = "
<< map[current].value_type << ", actual = "<< value->GetType();
prefs_.SetValue(map[current].preference_path, value);
return true;
}
}
return false;
}
bool ConfigurationPolicyPrefKeeper::ApplyProxyPolicy(
ConfigurationPolicyType policy,
Value* value) {
// We only collect the values until we have sufficient information when
// FinalizeProxyPolicySettings() is called to determine whether the presented
// values were correct and apply them in that case.
if (ConfigurationPolicyPrefStore::IsProxyPolicy(policy)) {
delete proxy_policies_[policy];
proxy_policies_[policy] = value;
return true;
}
// We are not interested in this policy.
return false;
}
bool ConfigurationPolicyPrefKeeper::ApplySyncPolicy(
ConfigurationPolicyType policy, Value* value) {
if (policy == kPolicySyncDisabled) {
bool disable_sync;
if (value->GetAsBoolean(&disable_sync) && disable_sync)
prefs_.SetValue(prefs::kSyncManaged, value);
else
delete value;
return true;
}
return false;
}
bool ConfigurationPolicyPrefKeeper::ApplyAutofillPolicy(
ConfigurationPolicyType policy, Value* value) {
if (policy == kPolicyAutoFillEnabled) {
bool auto_fill_enabled;
if (value->GetAsBoolean(&auto_fill_enabled) && !auto_fill_enabled)
prefs_.SetValue(prefs::kAutofillEnabled,
Value::CreateBooleanValue(false));
delete value;
return true;
}
return false;
}
bool ConfigurationPolicyPrefKeeper::ApplyDownloadDirPolicy(
ConfigurationPolicyType policy,
Value* value) {
// Replace the policy string which might contain some user variables to an
// expanded string.
if (policy == kPolicyDownloadDirectory) {
// This policy is ignored on ChromeOS because the download path there is
// fixed and can not be configured by the user.
#if !defined(OS_CHROMEOS)
FilePath::StringType string_value;
bool result = value->GetAsString(&string_value);
DCHECK(result);
FilePath::StringType expanded_value =
policy::path_parser::ExpandPathVariables(string_value);
prefs_.SetValue(prefs::kDownloadDefaultDirectory,
Value::CreateStringValue(expanded_value));
prefs_.SetValue(prefs::kPromptForDownload,
Value::CreateBooleanValue(false));
#endif // !defined(OS_CHROMEOS)
delete value;
return true;
}
// We are not interested in this policy.
return false;
}
bool ConfigurationPolicyPrefKeeper::ApplyDiskCacheDirPolicy(
ConfigurationPolicyType policy,
Value* value) {
// Replace the policy string which might contain some user variables to an
// expanded string.
if (policy == kPolicyDiskCacheDir) {
FilePath::StringType string_value;
bool result = value->GetAsString(&string_value);
DCHECK(result);
FilePath::StringType expanded_value =
policy::path_parser::ExpandPathVariables(string_value);
prefs_.SetValue(prefs::kDiskCacheDir,
Value::CreateStringValue(expanded_value));
delete value;
return true;
}
// We are not interested in this policy.
return false;
}
bool ConfigurationPolicyPrefKeeper::ApplyFileSelectionDialogsPolicy(
ConfigurationPolicyType policy,
Value* value) {
if (policy == kPolicyAllowFileSelectionDialogs) {
prefs_.SetValue(prefs::kAllowFileSelectionDialogs, value);
// If file-selection dialogs are not allowed we forbid the user to be
// prompted for the download location, since this would end up in an Infobar
// explaining that file-selection dialogs are forbidden anyways.
bool allow_file_selection_dialogs = true;
bool result = value->GetAsBoolean(&allow_file_selection_dialogs);
DCHECK(result);
if (!allow_file_selection_dialogs) {
prefs_.SetValue(prefs::kPromptForDownload,
Value::CreateBooleanValue(false));
}
return true;
}
// We are not interested in this policy.
return false;
}
bool ConfigurationPolicyPrefKeeper::ApplyDefaultSearchPolicy(
ConfigurationPolicyType policy,
Value* value) {
// The DefaultSearchProviderEncodings policy has type list, but the related
// preference has type string. Convert one into the other here, using
// ';' as a separator.
if (policy == kPolicyDefaultSearchProviderEncodings) {
ListValue* list;
if (!value->GetAsList(&list)) {
NOTREACHED()
<< "mismatch in provided and expected policy value for preferences "
<< prefs::kDefaultSearchProviderEncodings << ". expected = "
<< Value::TYPE_LIST << ", actual = "<< value->GetType();
return false;
}
ListValue::const_iterator iter(list->begin());
ListValue::const_iterator end(list->end());
std::string encodings;
for (; iter != end; ++iter) {
std::string s;
if ((*iter)->GetAsString(&s)) {
if (!encodings.empty())
encodings.push_back(';');
encodings.append(s);
} else {
NOTREACHED();
}
}
// We own |value|.
delete value;
prefs_.SetValue(prefs::kDefaultSearchProviderEncodings,
Value::CreateStringValue(encodings));
return true;
}
if (ApplyPolicyFromMap(policy, value, kDefaultSearchPolicyMap,
arraysize(kDefaultSearchPolicyMap))) {
return true;
}
return false;
}
bool ConfigurationPolicyPrefKeeper::ApplyIncognitoModePolicy(
ConfigurationPolicyType policy,
Value* value) {
if (policy == kPolicyIncognitoModeAvailability) {
int availability = IncognitoModePrefs::ENABLED;
bool result = value->GetAsInteger(&availability);
delete value;
if (result) {
IncognitoModePrefs::Availability availability_enum_value;
if (IncognitoModePrefs::IntToAvailability(availability,
&availability_enum_value)) {
prefs_.SetValue(prefs::kIncognitoModeAvailability,
Value::CreateIntegerValue(availability_enum_value));
} else {
LOG(WARNING) << "IncognitoModeAvailability policy value is "
<< "out of range " << availability;
}
} else {
LOG(WARNING) << "IncognitoModeAvailability policy value could not be "
<< "parsed";
}
return true;
}
if (policy == kPolicyIncognitoEnabled) {
deprecated_incognito_enabled_.reset(value);
return true;
}
// The policy is not relevant to incognito.
return false;
}
bool ConfigurationPolicyPrefKeeper::ApplyBookmarksPolicy(
ConfigurationPolicyType policy,
Value* value) {
if (policy != kPolicyBookmarkBarEnabled)
return false;
DCHECK_EQ(Value::TYPE_BOOLEAN, value->GetType());
prefs_.SetValue(prefs::kEnableBookmarkBar, value);
// kShowBookmarkBar is not managed directly by a policy, but when
// kEnableBookmarkBar is managed, kShowBookmarkBar should be false so that
// the bookmarks bar either is completely disabled or only shows on the NTP.
// This also disables the checkbox for this preference in the prefs UI.
prefs_.SetValue(prefs::kShowBookmarkBar, Value::CreateBooleanValue(false));
return true;
}
void ConfigurationPolicyPrefKeeper::EnsureStringPrefExists(
const std::string& path) {
std::string value;
if (!prefs_.GetString(path, &value))
prefs_.SetString(path, value);
}
namespace {
// Implementation of SearchTermsData just for validation.
class SearchTermsDataForValidation : public SearchTermsData {
public:
SearchTermsDataForValidation() {}
// Implementation of SearchTermsData.
virtual std::string GoogleBaseURLValue() const {
return "http://www.google.com/";
}
virtual std::string GetApplicationLocale() const {
return "en";
}
#if defined(OS_WIN) && defined(GOOGLE_CHROME_BUILD)
virtual string16 GetRlzParameterValue() const {
return string16();
}
#endif
private:
DISALLOW_COPY_AND_ASSIGN(SearchTermsDataForValidation);
};
} // namespace
void ConfigurationPolicyPrefKeeper::FinalizeDefaultSearchPolicySettings() {
bool enabled = true;
if (prefs_.GetBoolean(prefs::kDefaultSearchProviderEnabled, &enabled) &&
!enabled) {
// If default search is disabled, we ignore the other fields.
prefs_.SetString(prefs::kDefaultSearchProviderName, std::string());
prefs_.SetString(prefs::kDefaultSearchProviderSearchURL, std::string());
prefs_.SetString(prefs::kDefaultSearchProviderSuggestURL, std::string());
prefs_.SetString(prefs::kDefaultSearchProviderIconURL, std::string());
prefs_.SetString(prefs::kDefaultSearchProviderEncodings, std::string());
prefs_.SetString(prefs::kDefaultSearchProviderKeyword, std::string());
prefs_.SetString(prefs::kDefaultSearchProviderInstantURL, std::string());
return;
}
std::string search_url;
// The search URL is required.
if (prefs_.GetString(prefs::kDefaultSearchProviderSearchURL, &search_url) &&
!search_url.empty()) {
SearchTermsDataForValidation search_terms_data;
const TemplateURLRef search_url_ref(search_url, 0, 0);
// It must support replacement (which implies it is valid).
if (search_url_ref.SupportsReplacementUsingTermsData(search_terms_data)) {
// The other entries are optional. Just make sure that they are all
// specified via policy, so that we don't use regular prefs.
EnsureStringPrefExists(prefs::kDefaultSearchProviderSuggestURL);
EnsureStringPrefExists(prefs::kDefaultSearchProviderIconURL);
EnsureStringPrefExists(prefs::kDefaultSearchProviderEncodings);
EnsureStringPrefExists(prefs::kDefaultSearchProviderKeyword);
EnsureStringPrefExists(prefs::kDefaultSearchProviderInstantURL);
// For the name, default to the host if not specified.
std::string name;
if (!prefs_.GetString(prefs::kDefaultSearchProviderName, &name) ||
name.empty())
prefs_.SetString(prefs::kDefaultSearchProviderName,
GURL(search_url).host());
// And clear the IDs since these are not specified via policy.
prefs_.SetString(prefs::kDefaultSearchProviderID, std::string());
prefs_.SetString(prefs::kDefaultSearchProviderPrepopulateID,
std::string());
return;
}
}
// Required entries are not there. Remove any related entries.
RemovePreferencesOfMap(kDefaultSearchPolicyMap,
arraysize(kDefaultSearchPolicyMap));
}
void ConfigurationPolicyPrefKeeper::FinalizeIncognitoModeSettings() {
int int_value;
if (!prefs_.GetInteger(prefs::kIncognitoModeAvailability, &int_value)) {
// If kPolicyIncognitoModeAvailability is not specified, check the obsolete
// kPolicyIncognitoEnabled.
if (deprecated_incognito_enabled_.get()) {
bool enabled = true;
if (deprecated_incognito_enabled_->GetAsBoolean(&enabled)) {
prefs_.SetInteger(
prefs::kIncognitoModeAvailability,
enabled ? IncognitoModePrefs::ENABLED :
IncognitoModePrefs::DISABLED);
} else {
LOG(WARNING) << "IncognitoEnabled policy value could not be parsed";
}
}
}
}
void ConfigurationPolicyPrefKeeper::FinalizeProxyPolicySettings() {
if (CheckProxySettings())
ApplyProxySettings();
STLDeleteContainerPairSecondPointers(proxy_policies_.begin(),
proxy_policies_.end());
proxy_policies_.clear();
}
bool ConfigurationPolicyPrefKeeper::CheckProxySettings() {
bool mode = HasProxyPolicy(kPolicyProxyMode);
bool server_mode = HasProxyPolicy(kPolicyProxyServerMode); // deprecated
bool server = HasProxyPolicy(kPolicyProxyServer);
bool pac_url = HasProxyPolicy(kPolicyProxyPacUrl);
bool bypass_list = HasProxyPolicy(kPolicyProxyBypassList);
if ((server || pac_url || bypass_list) && !(mode || server_mode)) {
LOG(WARNING) << "A centrally-administered policy defines proxy setting"
<< " details without setting a proxy mode.";
return false;
}
// If there's a server mode, convert it into a mode.
std::string mode_value;
if (mode) {
if (server_mode)
LOG(WARNING) << "Both ProxyMode and ProxyServerMode policies defined, "
<< "ignoring ProxyMode.";
if (!proxy_policies_[kPolicyProxyMode]->GetAsString(&mode_value)) {
LOG(WARNING) << "Invalid ProxyMode value.";
return false;
}
} else if (server_mode) {
int server_mode_value;
if (!proxy_policies_[kPolicyProxyServerMode]->GetAsInteger(
&server_mode_value)) {
LOG(WARNING) << "Invalid ProxyServerMode value.";
return false;
}
switch (server_mode_value) {
case kPolicyNoProxyServerMode:
mode_value = ProxyPrefs::kDirectProxyModeName;
break;
case kPolicyAutoDetectProxyServerMode:
mode_value = ProxyPrefs::kAutoDetectProxyModeName;
break;
case kPolicyManuallyConfiguredProxyServerMode:
if (server && pac_url) {
LOG(WARNING) << "A centrally-administered policy dictates that"
<< " both fixed proxy servers and a .pac url. should"
<< " be used for proxy configuration.";
return false;
}
if (!server && !pac_url) {
LOG(WARNING) << "A centrally-administered policy dictates that the"
<< " proxy settings should use either fixed proxy"
<< " servers or a .pac url, but specifies neither.";
return false;
}
if (pac_url)
mode_value = ProxyPrefs::kPacScriptProxyModeName;
else
mode_value = ProxyPrefs::kFixedServersProxyModeName;
break;
case kPolicyUseSystemProxyServerMode:
mode_value = ProxyPrefs::kSystemProxyModeName;
break;
default:
LOG(WARNING) << "Invalid proxy mode " << server_mode_value;
return false;
}
}
// If neither ProxyMode nor ProxyServerMode are specified, mode_value will be
// empty and the proxy shouldn't be configured at all.
if (mode_value.empty())
return true;
if (mode_value == ProxyPrefs::kDirectProxyModeName) {
if (server || pac_url || bypass_list) {
LOG(WARNING) << "A centrally-administered policy disables the use of"
<< " a proxy but also specifies an explicit proxy"
<< " configuration.";
return false;
}
} else if (mode_value == ProxyPrefs::kAutoDetectProxyModeName) {
if (server || bypass_list || pac_url) {
LOG(WARNING) << "A centrally-administered policy dictates that a proxy"
<< " shall be auto configured but specifies fixed proxy"
<< " servers, a by-pass list or a .pac script URL.";
return false;
}
} else if (mode_value == ProxyPrefs::kPacScriptProxyModeName) {
if (server || bypass_list) {
LOG(WARNING) << "A centrally-administered policy dictates that a .pac"
<< " script URL should be used for proxy configuration but"
<< " also specifies policies required only for fixed"
<< " proxy servers.";
return false;
}
} else if (mode_value == ProxyPrefs::kFixedServersProxyModeName) {
if (pac_url) {
LOG(WARNING) << "A centrally-administered policy dictates that"
<< " fixed proxy servers should be used but also"
<< " specifies a .pac script URL.";
return false;
}
} else if (mode_value == ProxyPrefs::kSystemProxyModeName) {
if (server || pac_url || bypass_list) {
LOG(WARNING) << "A centrally-administered policy dictates that the"
<< " system proxy settings should be used but also "
<< " specifies an explicit proxy configuration.";
return false;
}
} else {
LOG(WARNING) << "Invalid proxy mode " << mode_value;
return false;
}
return true;
}
void ConfigurationPolicyPrefKeeper::ApplyProxySettings() {
ProxyPrefs::ProxyMode mode;
if (HasProxyPolicy(kPolicyProxyMode)) {
std::string string_mode;
CHECK(proxy_policies_[kPolicyProxyMode]->GetAsString(&string_mode));
if (!ProxyPrefs::StringToProxyMode(string_mode, &mode)) {
LOG(WARNING) << "A centrally-administered policy specifies a value for "
<< "the ProxyMode policy that isn't recognized.";
return;
}
} else if (HasProxyPolicy(kPolicyProxyServerMode)) {
int int_mode = 0;
CHECK(proxy_policies_[kPolicyProxyServerMode]->GetAsInteger(&int_mode));
switch (int_mode) {
case kPolicyNoProxyServerMode:
mode = ProxyPrefs::MODE_DIRECT;
break;
case kPolicyAutoDetectProxyServerMode:
mode = ProxyPrefs::MODE_AUTO_DETECT;
break;
case kPolicyManuallyConfiguredProxyServerMode:
mode = ProxyPrefs::MODE_FIXED_SERVERS;
if (HasProxyPolicy(kPolicyProxyPacUrl))
mode = ProxyPrefs::MODE_PAC_SCRIPT;
break;
case kPolicyUseSystemProxyServerMode:
mode = ProxyPrefs::MODE_SYSTEM;
break;
default:
mode = ProxyPrefs::MODE_DIRECT;
NOTREACHED();
}
} else {
return;
}
switch (mode) {
case ProxyPrefs::MODE_DIRECT:
prefs_.SetValue(prefs::kProxy, ProxyConfigDictionary::CreateDirect());
break;
case ProxyPrefs::MODE_AUTO_DETECT:
prefs_.SetValue(prefs::kProxy, ProxyConfigDictionary::CreateAutoDetect());
break;
case ProxyPrefs::MODE_PAC_SCRIPT: {
if (!HasProxyPolicy(kPolicyProxyPacUrl)) {
LOG(WARNING) << "A centrally-administered policy specifies to use a "
<< "PAC script, but doesn't supply the PAC script URL.";
return;
}
std::string pac_url;
proxy_policies_[kPolicyProxyPacUrl]->GetAsString(&pac_url);
prefs_.SetValue(prefs::kProxy,
ProxyConfigDictionary::CreatePacScript(pac_url, false));
break;
}
case ProxyPrefs::MODE_FIXED_SERVERS: {
if (!HasProxyPolicy(kPolicyProxyServer)) {
LOG(WARNING) << "A centrally-administered policy specifies to use a "
<< "fixed server, but doesn't supply the server address.";
return;
}
std::string proxy_server;
proxy_policies_[kPolicyProxyServer]->GetAsString(&proxy_server);
std::string bypass_list;
if (HasProxyPolicy(kPolicyProxyBypassList))
proxy_policies_[kPolicyProxyBypassList]->GetAsString(&bypass_list);
prefs_.SetValue(prefs::kProxy,
ProxyConfigDictionary::CreateFixedServers(proxy_server,
bypass_list));
break;
}
case ProxyPrefs::MODE_SYSTEM:
prefs_.SetValue(prefs::kProxy,
ProxyConfigDictionary::CreateSystem());
break;
case ProxyPrefs::kModeCount:
NOTREACHED();
}
}
bool ConfigurationPolicyPrefKeeper::HasProxyPolicy(
ConfigurationPolicyType policy) const {
std::map<ConfigurationPolicyType, Value*>::const_iterator iter;
iter = proxy_policies_.find(policy);
std::string tmp;
if (iter == proxy_policies_.end() ||
!iter->second ||
iter->second->IsType(Value::TYPE_NULL) ||
(iter->second->IsType(Value::TYPE_STRING) &&
iter->second->GetAsString(&tmp) &&
tmp.empty())) {
return false;
}
return true;
}
ConfigurationPolicyPrefStore::ConfigurationPolicyPrefStore(
ConfigurationPolicyProvider* provider)
: provider_(provider),
initialization_complete_(false) {
if (provider_) {
// Read initial policy.
policy_keeper_.reset(new ConfigurationPolicyPrefKeeper(provider));
registrar_.Init(provider_, this);
initialization_complete_ = provider->IsInitializationComplete();
} else {
initialization_complete_ = true;
}
}
ConfigurationPolicyPrefStore::~ConfigurationPolicyPrefStore() {
}
void ConfigurationPolicyPrefStore::AddObserver(PrefStore::Observer* observer) {
observers_.AddObserver(observer);
}
void ConfigurationPolicyPrefStore::RemoveObserver(
PrefStore::Observer* observer) {
observers_.RemoveObserver(observer);
}
bool ConfigurationPolicyPrefStore::IsInitializationComplete() const {
return initialization_complete_;
}
PrefStore::ReadResult
ConfigurationPolicyPrefStore::GetValue(const std::string& key,
const Value** value) const {
if (policy_keeper_.get())
return policy_keeper_->GetValue(key, value);
return PrefStore::READ_NO_VALUE;
}
void ConfigurationPolicyPrefStore::OnUpdatePolicy() {
Refresh();
}
void ConfigurationPolicyPrefStore::OnProviderGoingAway() {
provider_ = NULL;
}
// static
ConfigurationPolicyPrefStore*
ConfigurationPolicyPrefStore::CreateManagedPlatformPolicyPrefStore() {
BrowserPolicyConnector* connector =
g_browser_process->browser_policy_connector();
return new ConfigurationPolicyPrefStore(
connector->GetManagedPlatformProvider());
}
// static
ConfigurationPolicyPrefStore*
ConfigurationPolicyPrefStore::CreateManagedCloudPolicyPrefStore() {
return new ConfigurationPolicyPrefStore(
g_browser_process->browser_policy_connector()->GetManagedCloudProvider());
}
// static
ConfigurationPolicyPrefStore*
ConfigurationPolicyPrefStore::CreateRecommendedPlatformPolicyPrefStore() {
BrowserPolicyConnector* connector =
g_browser_process->browser_policy_connector();
return new ConfigurationPolicyPrefStore(
connector->GetRecommendedPlatformProvider());
}
// static
ConfigurationPolicyPrefStore*
ConfigurationPolicyPrefStore::CreateRecommendedCloudPolicyPrefStore() {
return new ConfigurationPolicyPrefStore(
g_browser_process->browser_policy_connector()->
GetRecommendedCloudProvider());
}
/* static */
const ConfigurationPolicyProvider::PolicyDefinitionList*
ConfigurationPolicyPrefStore::GetChromePolicyDefinitionList() {
static ConfigurationPolicyProvider::PolicyDefinitionList::Entry entries[] = {
{ kPolicyHomepageLocation, Value::TYPE_STRING, key::kHomepageLocation },
{ kPolicyHomepageIsNewTabPage, Value::TYPE_BOOLEAN,
key::kHomepageIsNewTabPage },
{ kPolicyRestoreOnStartup, Value::TYPE_INTEGER, key::kRestoreOnStartup },
{ kPolicyRestoreOnStartupURLs, Value::TYPE_LIST,
key::kRestoreOnStartupURLs },
{ kPolicyDefaultSearchProviderEnabled, Value::TYPE_BOOLEAN,
key::kDefaultSearchProviderEnabled },
{ kPolicyDefaultSearchProviderName, Value::TYPE_STRING,
key::kDefaultSearchProviderName },
{ kPolicyDefaultSearchProviderKeyword, Value::TYPE_STRING,
key::kDefaultSearchProviderKeyword },
{ kPolicyDefaultSearchProviderSearchURL, Value::TYPE_STRING,
key::kDefaultSearchProviderSearchURL },
{ kPolicyDefaultSearchProviderSuggestURL, Value::TYPE_STRING,
key::kDefaultSearchProviderSuggestURL },
{ kPolicyDefaultSearchProviderInstantURL, Value::TYPE_STRING,
key::kDefaultSearchProviderInstantURL },
{ kPolicyDefaultSearchProviderIconURL, Value::TYPE_STRING,
key::kDefaultSearchProviderIconURL },
{ kPolicyDefaultSearchProviderEncodings, Value::TYPE_LIST,
key::kDefaultSearchProviderEncodings },
{ kPolicyProxyMode, Value::TYPE_STRING, key::kProxyMode },
{ kPolicyProxyServerMode, Value::TYPE_INTEGER, key::kProxyServerMode },
{ kPolicyProxyServer, Value::TYPE_STRING, key::kProxyServer },
{ kPolicyProxyPacUrl, Value::TYPE_STRING, key::kProxyPacUrl },
{ kPolicyProxyBypassList, Value::TYPE_STRING, key::kProxyBypassList },
{ kPolicyAlternateErrorPagesEnabled, Value::TYPE_BOOLEAN,
key::kAlternateErrorPagesEnabled },
{ kPolicySearchSuggestEnabled, Value::TYPE_BOOLEAN,
key::kSearchSuggestEnabled },
{ kPolicyDnsPrefetchingEnabled, Value::TYPE_BOOLEAN,
key::kDnsPrefetchingEnabled },
{ kPolicyDisableSpdy, Value::TYPE_BOOLEAN, key::kDisableSpdy },
{ kPolicyDisabledSchemes, Value::TYPE_LIST, key::kDisabledSchemes },
{ kPolicySafeBrowsingEnabled, Value::TYPE_BOOLEAN,
key::kSafeBrowsingEnabled },
{ kPolicyMetricsReportingEnabled, Value::TYPE_BOOLEAN,
key::kMetricsReportingEnabled },
{ kPolicyPasswordManagerEnabled, Value::TYPE_BOOLEAN,
key::kPasswordManagerEnabled },
{ kPolicyPasswordManagerAllowShowPasswords, Value::TYPE_BOOLEAN,
key::kPasswordManagerAllowShowPasswords },
{ kPolicyAutoFillEnabled, Value::TYPE_BOOLEAN, key::kAutoFillEnabled },
{ kPolicyDisabledPlugins, Value::TYPE_LIST, key::kDisabledPlugins },
{ kPolicyDisabledPluginsExceptions, Value::TYPE_LIST,
key::kDisabledPluginsExceptions },
{ kPolicyEnabledPlugins, Value::TYPE_LIST, key::kEnabledPlugins },
{ kPolicyApplicationLocaleValue, Value::TYPE_STRING,
key::kApplicationLocaleValue },
{ kPolicySyncDisabled, Value::TYPE_BOOLEAN, key::kSyncDisabled },
{ kPolicyExtensionInstallWhitelist, Value::TYPE_LIST,
key::kExtensionInstallWhitelist },
{ kPolicyExtensionInstallBlacklist, Value::TYPE_LIST,
key::kExtensionInstallBlacklist },
{ kPolicyExtensionInstallForcelist, Value::TYPE_LIST,
key::kExtensionInstallForcelist },
{ kPolicyShowHomeButton, Value::TYPE_BOOLEAN, key::kShowHomeButton },
{ kPolicyPrintingEnabled, Value::TYPE_BOOLEAN, key::kPrintingEnabled },
{ kPolicyJavascriptEnabled, Value::TYPE_BOOLEAN, key::kJavascriptEnabled },
{ kPolicyIncognitoEnabled, Value::TYPE_BOOLEAN, key::kIncognitoEnabled },
{ kPolicyIncognitoModeAvailability, Value::TYPE_INTEGER,
key::kIncognitoModeAvailability },
{ kPolicySavingBrowserHistoryDisabled, Value::TYPE_BOOLEAN,
key::kSavingBrowserHistoryDisabled },
{ kPolicyClearSiteDataOnExit, Value::TYPE_BOOLEAN,
key::kClearSiteDataOnExit },
{ kPolicyDeveloperToolsDisabled, Value::TYPE_BOOLEAN,
key::kDeveloperToolsDisabled },
{ kPolicyBlockThirdPartyCookies, Value::TYPE_BOOLEAN,
key::kBlockThirdPartyCookies },
{ kPolicyDefaultCookiesSetting, Value::TYPE_INTEGER,
key::kDefaultCookiesSetting },
{ kPolicyDefaultImagesSetting, Value::TYPE_INTEGER,
key::kDefaultImagesSetting },
{ kPolicyDefaultJavaScriptSetting, Value::TYPE_INTEGER,
key::kDefaultJavaScriptSetting },
{ kPolicyDefaultPluginsSetting, Value::TYPE_INTEGER,
key::kDefaultPluginsSetting },
{ kPolicyDefaultPopupsSetting, Value::TYPE_INTEGER,
key::kDefaultPopupsSetting },
{ kPolicyDefaultNotificationsSetting, Value::TYPE_INTEGER,
key::kDefaultNotificationsSetting },
{ kPolicyDefaultGeolocationSetting, Value::TYPE_INTEGER,
key::kDefaultGeolocationSetting },
{ kPolicyCookiesAllowedForUrls, Value::TYPE_LIST,
key::kCookiesAllowedForUrls },
{ kPolicyCookiesBlockedForUrls, Value::TYPE_LIST,
key::kCookiesBlockedForUrls },
{ kPolicyCookiesSessionOnlyForUrls, Value::TYPE_LIST,
key::kCookiesSessionOnlyForUrls },
{ kPolicyImagesAllowedForUrls, Value::TYPE_LIST,
key::kImagesAllowedForUrls },
{ kPolicyImagesBlockedForUrls, Value::TYPE_LIST,
key::kImagesBlockedForUrls },
{ kPolicyJavaScriptAllowedForUrls, Value::TYPE_LIST,
key::kJavaScriptAllowedForUrls },
{ kPolicyJavaScriptBlockedForUrls, Value::TYPE_LIST,
key::kJavaScriptBlockedForUrls },
{ kPolicyPluginsAllowedForUrls, Value::TYPE_LIST,
key::kPluginsAllowedForUrls },
{ kPolicyPluginsBlockedForUrls, Value::TYPE_LIST,
key::kPluginsBlockedForUrls },
{ kPolicyPopupsAllowedForUrls, Value::TYPE_LIST,
key::kPopupsAllowedForUrls },
{ kPolicyPopupsBlockedForUrls, Value::TYPE_LIST,
key::kPopupsBlockedForUrls },
{ kPolicyAuthSchemes, Value::TYPE_STRING, key::kAuthSchemes },
{ kPolicyDisableAuthNegotiateCnameLookup, Value::TYPE_BOOLEAN,
key::kDisableAuthNegotiateCnameLookup },
{ kPolicyEnableAuthNegotiatePort, Value::TYPE_BOOLEAN,
key::kEnableAuthNegotiatePort },
{ kPolicyAuthServerWhitelist, Value::TYPE_STRING,
key::kAuthServerWhitelist },
{ kPolicyAuthNegotiateDelegateWhitelist, Value::TYPE_STRING,
key::kAuthNegotiateDelegateWhitelist },
{ kPolicyGSSAPILibraryName, Value::TYPE_STRING,
key::kGSSAPILibraryName },
{ kPolicyAllowCrossOriginAuthPrompt, Value::TYPE_BOOLEAN,
key::kAllowCrossOriginAuthPrompt },
{ kPolicyDisable3DAPIs, Value::TYPE_BOOLEAN,
key::kDisable3DAPIs },
{ kPolicyDisablePluginFinder, Value::TYPE_BOOLEAN,
key::kDisablePluginFinder },
{ kPolicyPolicyRefreshRate, Value::TYPE_INTEGER,
key::kPolicyRefreshRate },
{ kPolicyDevicePolicyRefreshRate, Value::TYPE_INTEGER,
key::kDevicePolicyRefreshRate },
{ kPolicyInstantEnabled, Value::TYPE_BOOLEAN, key::kInstantEnabled },
{ kPolicyDefaultBrowserSettingEnabled, Value::TYPE_BOOLEAN,
key::kDefaultBrowserSettingEnabled },
{ kPolicyRemoteAccessClientFirewallTraversal, Value::TYPE_BOOLEAN,
key::kRemoteAccessClientFirewallTraversal },
{ kPolicyRemoteAccessHostFirewallTraversal, Value::TYPE_BOOLEAN,
key::kRemoteAccessHostFirewallTraversal },
{ kPolicyCloudPrintProxyEnabled, Value::TYPE_BOOLEAN,
key::kCloudPrintProxyEnabled },
{ kPolicyDownloadDirectory, Value::TYPE_STRING,
key::kDownloadDirectory },
{ kPolicyTranslateEnabled, Value::TYPE_BOOLEAN, key::kTranslateEnabled },
{ kPolicyAllowOutdatedPlugins, Value::TYPE_BOOLEAN,
key::kAllowOutdatedPlugins },
{ kPolicyAlwaysAuthorizePlugins, Value::TYPE_BOOLEAN,
key::kAlwaysAuthorizePlugins },
{ kPolicyBookmarkBarEnabled, Value::TYPE_BOOLEAN,
key::kBookmarkBarEnabled },
{ kPolicyEditBookmarksEnabled, Value::TYPE_BOOLEAN,
key::kEditBookmarksEnabled },
{ kPolicyAllowFileSelectionDialogs, Value::TYPE_BOOLEAN,
key::kAllowFileSelectionDialogs },
{ kPolicyDiskCacheDir, Value::TYPE_STRING,
key::kDiskCacheDir },
{ kPolicyImportBookmarks, Value::TYPE_BOOLEAN,
key::kImportBookmarks },
{ kPolicyImportHistory, Value::TYPE_BOOLEAN,
key::kImportHistory },
{ kPolicyImportHomepage, Value::TYPE_BOOLEAN,
key::kImportHomepage },
{ kPolicyImportSearchEngine, Value::TYPE_BOOLEAN,
key::kImportSearchEngine },
{ kPolicyImportSavedPasswords, Value::TYPE_BOOLEAN,
key::kImportSavedPasswords },
{ kPolicyMaxConnectionsPerProxy, Value::TYPE_INTEGER,
key::kMaxConnectionsPerProxy },
{ kPolicyHideWebStorePromo, Value::TYPE_BOOLEAN,
key::kHideWebStorePromo },
#if defined(OS_CHROMEOS)
{ kPolicyChromeOsLockOnIdleSuspend, Value::TYPE_BOOLEAN,
key::kChromeOsLockOnIdleSuspend },
{ kPolicyChromeOsReleaseChannel, Value::TYPE_STRING,
key::kChromeOsReleaseChannel },
#endif
};
static ConfigurationPolicyProvider::PolicyDefinitionList policy_list = {
entries,
entries + arraysize(entries),
};
return &policy_list;
}
bool
ConfigurationPolicyPrefStore::IsProxyPolicy(ConfigurationPolicyType policy) {
return policy == kPolicyProxyMode ||
policy == kPolicyProxyServerMode ||
policy == kPolicyProxyServer ||
policy == kPolicyProxyPacUrl ||
policy == kPolicyProxyBypassList;
}
void ConfigurationPolicyPrefStore::Refresh() {
if (!provider_)
return;
// Construct a new keeper, determine what changed and swap the keeper in.
scoped_ptr<ConfigurationPolicyPrefKeeper> new_keeper(
new ConfigurationPolicyPrefKeeper(provider_));
std::vector<std::string> changed_prefs;
new_keeper->GetDifferingPrefPaths(policy_keeper_.get(), &changed_prefs);
policy_keeper_.reset(new_keeper.release());
// Send out change notifications.
for (std::vector<std::string>::const_iterator pref(changed_prefs.begin());
pref != changed_prefs.end();
++pref) {
FOR_EACH_OBSERVER(PrefStore::Observer, observers_,
OnPrefValueChanged(*pref));
}
// Update the initialization flag.
if (!initialization_complete_ &&
provider_->IsInitializationComplete()) {
initialization_complete_ = true;
FOR_EACH_OBSERVER(PrefStore::Observer, observers_,
OnInitializationCompleted(true));
}
}
} // namespace policy
|