Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 1 | // Copyright 2019 Google Inc. All rights reserved. |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | package android |
| 16 | |
| 17 | import ( |
| 18 | "fmt" |
| 19 | "regexp" |
Paul Duffin | 157f40f | 2020-09-29 16:01:08 +0100 | [diff] [blame] | 20 | "sort" |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 21 | "strings" |
| 22 | "sync" |
Paul Duffin | 78ac5b9 | 2020-01-14 12:42:08 +0000 | [diff] [blame] | 23 | |
| 24 | "github.com/google/blueprint" |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 25 | ) |
| 26 | |
| 27 | // Enforces visibility rules between modules. |
| 28 | // |
Paul Duffin | e2453c7 | 2019-05-31 14:00:04 +0100 | [diff] [blame] | 29 | // Multi stage process: |
| 30 | // * First stage works bottom up, before defaults expansion, to check the syntax of the visibility |
| 31 | // rules that have been specified. |
| 32 | // |
| 33 | // * Second stage works bottom up to extract the package info for each package and store them in a |
| 34 | // map by package name. See package.go for functionality for this. |
| 35 | // |
| 36 | // * Third stage works bottom up to extract visibility information from the modules, parse it, |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 37 | // create visibilityRule structures and store them in a map keyed by the module's |
| 38 | // qualifiedModuleName instance, i.e. //<pkg>:<name>. The map is stored in the context rather |
| 39 | // than a global variable for testing. Each test has its own Config so they do not share a map |
Paul Duffin | e2453c7 | 2019-05-31 14:00:04 +0100 | [diff] [blame] | 40 | // and so can be run in parallel. If a module has no visibility specified then it uses the |
| 41 | // default package visibility if specified. |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 42 | // |
Paul Duffin | e2453c7 | 2019-05-31 14:00:04 +0100 | [diff] [blame] | 43 | // * Fourth stage works top down and iterates over all the deps for each module. If the dep is in |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 44 | // the same package then it is automatically visible. Otherwise, for each dep it first extracts |
| 45 | // its visibilityRule from the config map. If one could not be found then it assumes that it is |
| 46 | // publicly visible. Otherwise, it calls the visibility rule to check that the module can see |
| 47 | // the dependency. If it cannot then an error is reported. |
| 48 | // |
| 49 | // TODO(b/130631145) - Make visibility work properly with prebuilts. |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 50 | |
| 51 | // Patterns for the values that can be specified in visibility property. |
| 52 | const ( |
| 53 | packagePattern = `//([^/:]+(?:/[^/:]+)*)` |
| 54 | namePattern = `:([^/:]+)` |
| 55 | visibilityRulePattern = `^(?:` + packagePattern + `)?(?:` + namePattern + `)?$` |
| 56 | ) |
| 57 | |
| 58 | var visibilityRuleRegexp = regexp.MustCompile(visibilityRulePattern) |
| 59 | |
Cole Faust | 894bb3b | 2024-02-07 11:28:26 -0800 | [diff] [blame] | 60 | type visibilityModuleReference struct { |
Cole Faust | 9a24d90 | 2024-03-18 15:38:12 -0700 | [diff] [blame] | 61 | name qualifiedModuleName |
| 62 | module Module |
Cole Faust | 894bb3b | 2024-02-07 11:28:26 -0800 | [diff] [blame] | 63 | } |
| 64 | |
Cole Faust | 9a24d90 | 2024-03-18 15:38:12 -0700 | [diff] [blame] | 65 | func createVisibilityModuleReference(name, dir string, module Module) visibilityModuleReference { |
Cole Faust | 894bb3b | 2024-02-07 11:28:26 -0800 | [diff] [blame] | 66 | return visibilityModuleReference{ |
Cole Faust | 9a24d90 | 2024-03-18 15:38:12 -0700 | [diff] [blame] | 67 | name: createQualifiedModuleName(name, dir), |
| 68 | module: module, |
Cole Faust | 894bb3b | 2024-02-07 11:28:26 -0800 | [diff] [blame] | 69 | } |
| 70 | } |
| 71 | |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 72 | // A visibility rule is associated with a module and determines which other modules it is visible |
| 73 | // to, i.e. which other modules can depend on the rule's module. |
| 74 | type visibilityRule interface { |
| 75 | // Check to see whether this rules matches m. |
| 76 | // Returns true if it does, false otherwise. |
Cole Faust | 894bb3b | 2024-02-07 11:28:26 -0800 | [diff] [blame] | 77 | matches(m visibilityModuleReference) bool |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 78 | |
| 79 | String() string |
| 80 | } |
| 81 | |
Paul Duffin | e2453c7 | 2019-05-31 14:00:04 +0100 | [diff] [blame] | 82 | // Describes the properties provided by a module that contain visibility rules. |
| 83 | type visibilityPropertyImpl struct { |
Paul Duffin | 63c6e18 | 2019-07-24 14:24:38 +0100 | [diff] [blame] | 84 | name string |
| 85 | stringsProperty *[]string |
Paul Duffin | e2453c7 | 2019-05-31 14:00:04 +0100 | [diff] [blame] | 86 | } |
| 87 | |
| 88 | type visibilityProperty interface { |
| 89 | getName() string |
| 90 | getStrings() []string |
| 91 | } |
| 92 | |
Paul Duffin | 63c6e18 | 2019-07-24 14:24:38 +0100 | [diff] [blame] | 93 | func newVisibilityProperty(name string, stringsProperty *[]string) visibilityProperty { |
Paul Duffin | e2453c7 | 2019-05-31 14:00:04 +0100 | [diff] [blame] | 94 | return visibilityPropertyImpl{ |
Paul Duffin | 63c6e18 | 2019-07-24 14:24:38 +0100 | [diff] [blame] | 95 | name: name, |
| 96 | stringsProperty: stringsProperty, |
Paul Duffin | e2453c7 | 2019-05-31 14:00:04 +0100 | [diff] [blame] | 97 | } |
| 98 | } |
| 99 | |
| 100 | func (p visibilityPropertyImpl) getName() string { |
| 101 | return p.name |
| 102 | } |
| 103 | |
| 104 | func (p visibilityPropertyImpl) getStrings() []string { |
Paul Duffin | 63c6e18 | 2019-07-24 14:24:38 +0100 | [diff] [blame] | 105 | return *p.stringsProperty |
Paul Duffin | e2453c7 | 2019-05-31 14:00:04 +0100 | [diff] [blame] | 106 | } |
| 107 | |
Martin Stjernholm | 226b20d | 2019-05-17 22:42:02 +0100 | [diff] [blame] | 108 | // A compositeRule is a visibility rule composed from a list of atomic visibility rules. |
| 109 | // |
| 110 | // The list corresponds to the list of strings in the visibility property after defaults expansion. |
| 111 | // Even though //visibility:public is not allowed together with other rules in the visibility list |
| 112 | // of a single module, it is allowed here to permit a module to override an inherited visibility |
| 113 | // spec with public visibility. |
| 114 | // |
| 115 | // //visibility:private is not allowed in the same way, since we'd need to check for it during the |
| 116 | // defaults expansion to make that work. No non-private visibility rules are allowed in a |
| 117 | // compositeRule containing a privateRule. |
| 118 | // |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 119 | // This array will only be [] if all the rules are invalid and will behave as if visibility was |
| 120 | // ["//visibility:private"]. |
| 121 | type compositeRule []visibilityRule |
| 122 | |
Cole Faust | 894bb3b | 2024-02-07 11:28:26 -0800 | [diff] [blame] | 123 | var _ visibilityRule = compositeRule{} |
| 124 | |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 125 | // A compositeRule matches if and only if any of its rules matches. |
Cole Faust | 894bb3b | 2024-02-07 11:28:26 -0800 | [diff] [blame] | 126 | func (c compositeRule) matches(m visibilityModuleReference) bool { |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 127 | for _, r := range c { |
| 128 | if r.matches(m) { |
| 129 | return true |
| 130 | } |
| 131 | } |
| 132 | return false |
| 133 | } |
| 134 | |
Paul Duffin | e2453c7 | 2019-05-31 14:00:04 +0100 | [diff] [blame] | 135 | func (c compositeRule) String() string { |
Paul Duffin | 593b3c9 | 2019-12-05 14:31:48 +0000 | [diff] [blame] | 136 | return "[" + strings.Join(c.Strings(), ", ") + "]" |
| 137 | } |
| 138 | |
| 139 | func (c compositeRule) Strings() []string { |
Paul Duffin | e2453c7 | 2019-05-31 14:00:04 +0100 | [diff] [blame] | 140 | s := make([]string, 0, len(c)) |
| 141 | for _, r := range c { |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 142 | s = append(s, r.String()) |
| 143 | } |
Paul Duffin | 593b3c9 | 2019-12-05 14:31:48 +0000 | [diff] [blame] | 144 | return s |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | // A packageRule is a visibility rule that matches modules in a specific package (i.e. directory). |
| 148 | type packageRule struct { |
| 149 | pkg string |
| 150 | } |
| 151 | |
Cole Faust | 894bb3b | 2024-02-07 11:28:26 -0800 | [diff] [blame] | 152 | var _ visibilityRule = packageRule{} |
| 153 | |
| 154 | func (r packageRule) matches(m visibilityModuleReference) bool { |
| 155 | return m.name.pkg == r.pkg |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 156 | } |
| 157 | |
| 158 | func (r packageRule) String() string { |
Martin Stjernholm | 01407c5 | 2020-05-13 01:54:21 +0100 | [diff] [blame] | 159 | return fmt.Sprintf("//%s", r.pkg) // :__pkg__ is the default, so skip it. |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 160 | } |
| 161 | |
| 162 | // A subpackagesRule is a visibility rule that matches modules in a specific package (i.e. |
| 163 | // directory) or any of its subpackages (i.e. subdirectories). |
| 164 | type subpackagesRule struct { |
| 165 | pkgPrefix string |
| 166 | } |
| 167 | |
Cole Faust | 894bb3b | 2024-02-07 11:28:26 -0800 | [diff] [blame] | 168 | var _ visibilityRule = subpackagesRule{} |
| 169 | |
| 170 | func (r subpackagesRule) matches(m visibilityModuleReference) bool { |
| 171 | return isAncestor(r.pkgPrefix, m.name.pkg) |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | func isAncestor(p1 string, p2 string) bool { |
Cole Faust | 3ac7db8 | 2023-01-12 10:36:17 -0800 | [diff] [blame] | 175 | // Equivalent to strings.HasPrefix(p2+"/", p1+"/"), but without the string copies |
| 176 | // The check for a trailing slash is so that we don't consider sibling |
| 177 | // directories with common prefixes to be ancestors, e.g. "fooo/bar" should not be |
| 178 | // a descendant of "foo". |
| 179 | return strings.HasPrefix(p2, p1) && (len(p2) == len(p1) || p2[len(p1)] == '/') |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 180 | } |
| 181 | |
| 182 | func (r subpackagesRule) String() string { |
| 183 | return fmt.Sprintf("//%s:__subpackages__", r.pkgPrefix) |
| 184 | } |
| 185 | |
Martin Stjernholm | 226b20d | 2019-05-17 22:42:02 +0100 | [diff] [blame] | 186 | // visibilityRule for //visibility:public |
| 187 | type publicRule struct{} |
| 188 | |
Cole Faust | 894bb3b | 2024-02-07 11:28:26 -0800 | [diff] [blame] | 189 | var _ visibilityRule = publicRule{} |
| 190 | |
| 191 | func (r publicRule) matches(_ visibilityModuleReference) bool { |
Martin Stjernholm | 226b20d | 2019-05-17 22:42:02 +0100 | [diff] [blame] | 192 | return true |
| 193 | } |
| 194 | |
| 195 | func (r publicRule) String() string { |
| 196 | return "//visibility:public" |
| 197 | } |
| 198 | |
| 199 | // visibilityRule for //visibility:private |
| 200 | type privateRule struct{} |
| 201 | |
Cole Faust | 894bb3b | 2024-02-07 11:28:26 -0800 | [diff] [blame] | 202 | var _ visibilityRule = privateRule{} |
| 203 | |
| 204 | func (r privateRule) matches(_ visibilityModuleReference) bool { |
Martin Stjernholm | 226b20d | 2019-05-17 22:42:02 +0100 | [diff] [blame] | 205 | return false |
| 206 | } |
| 207 | |
| 208 | func (r privateRule) String() string { |
| 209 | return "//visibility:private" |
| 210 | } |
| 211 | |
Cole Faust | 9a24d90 | 2024-03-18 15:38:12 -0700 | [diff] [blame] | 212 | var anyPartitionRegex = regexp.MustCompile("^any_(system|system_ext|vendor|product|data|odm)_partition$") |
| 213 | |
Cole Faust | 894bb3b | 2024-02-07 11:28:26 -0800 | [diff] [blame] | 214 | // visibilityRule for //visibility:any_partition |
Cole Faust | 9a24d90 | 2024-03-18 15:38:12 -0700 | [diff] [blame] | 215 | type anyPartitionRule struct { |
| 216 | partitionType string |
| 217 | } |
Cole Faust | 894bb3b | 2024-02-07 11:28:26 -0800 | [diff] [blame] | 218 | |
| 219 | var _ visibilityRule = anyPartitionRule{} |
| 220 | |
Cole Faust | 9a24d90 | 2024-03-18 15:38:12 -0700 | [diff] [blame] | 221 | type PartitionTypeInterface interface { |
| 222 | PartitionType() string |
| 223 | } |
| 224 | |
Cole Faust | 894bb3b | 2024-02-07 11:28:26 -0800 | [diff] [blame] | 225 | func (r anyPartitionRule) matches(m visibilityModuleReference) bool { |
Cole Faust | 9a24d90 | 2024-03-18 15:38:12 -0700 | [diff] [blame] | 226 | if m2, ok := m.module.(PartitionTypeInterface); ok { |
| 227 | return m2.PartitionType() == r.partitionType |
| 228 | } |
| 229 | return false |
Cole Faust | 894bb3b | 2024-02-07 11:28:26 -0800 | [diff] [blame] | 230 | } |
| 231 | |
| 232 | func (r anyPartitionRule) String() string { |
Cole Faust | 9a24d90 | 2024-03-18 15:38:12 -0700 | [diff] [blame] | 233 | return "//visibility:any_" + r.partitionType + "_partition" |
Cole Faust | 894bb3b | 2024-02-07 11:28:26 -0800 | [diff] [blame] | 234 | } |
| 235 | |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 236 | var visibilityRuleMap = NewOnceKey("visibilityRuleMap") |
| 237 | |
Cole Faust | 9a24d90 | 2024-03-18 15:38:12 -0700 | [diff] [blame] | 238 | type visibilityRulesForModule struct { |
| 239 | rule compositeRule |
| 240 | implicitPartitionRules compositeRule |
| 241 | } |
| 242 | |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 243 | // The map from qualifiedModuleName to visibilityRule. |
Paul Duffin | 44885e2 | 2020-02-19 16:10:09 +0000 | [diff] [blame] | 244 | func moduleToVisibilityRuleMap(config Config) *sync.Map { |
| 245 | return config.Once(visibilityRuleMap, func() interface{} { |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 246 | return &sync.Map{} |
| 247 | }).(*sync.Map) |
| 248 | } |
| 249 | |
Paul Duffin | 78ac5b9 | 2020-01-14 12:42:08 +0000 | [diff] [blame] | 250 | // Marker interface that identifies dependencies that are excluded from visibility |
| 251 | // enforcement. |
| 252 | type ExcludeFromVisibilityEnforcementTag interface { |
| 253 | blueprint.DependencyTag |
| 254 | |
| 255 | // Method that differentiates this interface from others. |
| 256 | ExcludeFromVisibilityEnforcement() |
| 257 | } |
| 258 | |
Paul Duffin | 530483c | 2021-03-07 13:20:38 +0000 | [diff] [blame] | 259 | // The visibility mutators. |
| 260 | var PrepareForTestWithVisibility = FixtureRegisterWithContext(registerVisibilityMutators) |
| 261 | |
| 262 | func registerVisibilityMutators(ctx RegistrationContext) { |
Paul Duffin | cfd3374 | 2021-02-27 11:59:02 +0000 | [diff] [blame] | 263 | ctx.PreArchMutators(RegisterVisibilityRuleChecker) |
Paul Duffin | cfd3374 | 2021-02-27 11:59:02 +0000 | [diff] [blame] | 264 | ctx.PreArchMutators(RegisterVisibilityRuleGatherer) |
Paul Duffin | cfd3374 | 2021-02-27 11:59:02 +0000 | [diff] [blame] | 265 | ctx.PostDepsMutators(RegisterVisibilityRuleEnforcer) |
Paul Duffin | 530483c | 2021-03-07 13:20:38 +0000 | [diff] [blame] | 266 | } |
Paul Duffin | cfd3374 | 2021-02-27 11:59:02 +0000 | [diff] [blame] | 267 | |
Martin Stjernholm | 226b20d | 2019-05-17 22:42:02 +0100 | [diff] [blame] | 268 | // The rule checker needs to be registered before defaults expansion to correctly check that |
| 269 | // //visibility:xxx isn't combined with other packages in the same list in any one module. |
Paul Duffin | 593b3c9 | 2019-12-05 14:31:48 +0000 | [diff] [blame] | 270 | func RegisterVisibilityRuleChecker(ctx RegisterMutatorsContext) { |
Martin Stjernholm | 226b20d | 2019-05-17 22:42:02 +0100 | [diff] [blame] | 271 | ctx.BottomUp("visibilityRuleChecker", visibilityRuleChecker).Parallel() |
| 272 | } |
| 273 | |
Paul Duffin | e2453c7 | 2019-05-31 14:00:04 +0100 | [diff] [blame] | 274 | // Registers the function that gathers the visibility rules for each module. |
| 275 | // |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 276 | // Visibility is not dependent on arch so this must be registered before the arch phase to avoid |
Martin Stjernholm | 226b20d | 2019-05-17 22:42:02 +0100 | [diff] [blame] | 277 | // having to process multiple variants for each module. This goes after defaults expansion to gather |
Paul Duffin | e2453c7 | 2019-05-31 14:00:04 +0100 | [diff] [blame] | 278 | // the complete visibility lists from flat lists and after the package info is gathered to ensure |
| 279 | // that default_visibility is available. |
Paul Duffin | 593b3c9 | 2019-12-05 14:31:48 +0000 | [diff] [blame] | 280 | func RegisterVisibilityRuleGatherer(ctx RegisterMutatorsContext) { |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 281 | ctx.BottomUp("visibilityRuleGatherer", visibilityRuleGatherer).Parallel() |
| 282 | } |
| 283 | |
| 284 | // This must be registered after the deps have been resolved. |
Paul Duffin | 593b3c9 | 2019-12-05 14:31:48 +0000 | [diff] [blame] | 285 | func RegisterVisibilityRuleEnforcer(ctx RegisterMutatorsContext) { |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 286 | ctx.TopDown("visibilityRuleEnforcer", visibilityRuleEnforcer).Parallel() |
| 287 | } |
| 288 | |
Martin Stjernholm | 226b20d | 2019-05-17 22:42:02 +0100 | [diff] [blame] | 289 | // Checks the per-module visibility rule lists before defaults expansion. |
| 290 | func visibilityRuleChecker(ctx BottomUpMutatorContext) { |
Cole Faust | 894bb3b | 2024-02-07 11:28:26 -0800 | [diff] [blame] | 291 | visibilityProperties := ctx.Module().visibilityProperties() |
| 292 | for _, p := range visibilityProperties { |
| 293 | if visibility := p.getStrings(); visibility != nil { |
| 294 | checkRules(ctx, ctx.ModuleDir(), p.getName(), visibility) |
Martin Stjernholm | 226b20d | 2019-05-17 22:42:02 +0100 | [diff] [blame] | 295 | } |
| 296 | } |
| 297 | } |
| 298 | |
Paul Duffin | e2453c7 | 2019-05-31 14:00:04 +0100 | [diff] [blame] | 299 | func checkRules(ctx BaseModuleContext, currentPkg, property string, visibility []string) { |
Martin Stjernholm | 226b20d | 2019-05-17 22:42:02 +0100 | [diff] [blame] | 300 | ruleCount := len(visibility) |
| 301 | if ruleCount == 0 { |
| 302 | // This prohibits an empty list as its meaning is unclear, e.g. it could mean no visibility and |
| 303 | // it could mean public visibility. Requiring at least one rule makes the owner's intent |
| 304 | // clearer. |
Paul Duffin | e2453c7 | 2019-05-31 14:00:04 +0100 | [diff] [blame] | 305 | ctx.PropertyErrorf(property, "must contain at least one visibility rule") |
Martin Stjernholm | 226b20d | 2019-05-17 22:42:02 +0100 | [diff] [blame] | 306 | return |
| 307 | } |
| 308 | |
Paul Duffin | 51084ff | 2020-05-05 19:19:22 +0100 | [diff] [blame] | 309 | for i, v := range visibility { |
Paul Duffin | 0c83aba | 2020-05-01 18:13:36 +0100 | [diff] [blame] | 310 | ok, pkg, name := splitRule(ctx, v, currentPkg, property) |
Martin Stjernholm | 226b20d | 2019-05-17 22:42:02 +0100 | [diff] [blame] | 311 | if !ok { |
Martin Stjernholm | 226b20d | 2019-05-17 22:42:02 +0100 | [diff] [blame] | 312 | continue |
| 313 | } |
| 314 | |
| 315 | if pkg == "visibility" { |
| 316 | switch name { |
Jeongik Cha | 31be352 | 2024-03-12 19:34:29 +0900 | [diff] [blame] | 317 | case "private", "public": |
Martin Stjernholm | 226b20d | 2019-05-17 22:42:02 +0100 | [diff] [blame] | 318 | case "legacy_public": |
Paul Duffin | e2453c7 | 2019-05-31 14:00:04 +0100 | [diff] [blame] | 319 | ctx.PropertyErrorf(property, "//visibility:legacy_public must not be used") |
Martin Stjernholm | 226b20d | 2019-05-17 22:42:02 +0100 | [diff] [blame] | 320 | continue |
Paul Duffin | 51084ff | 2020-05-05 19:19:22 +0100 | [diff] [blame] | 321 | case "override": |
| 322 | // This keyword does not create a rule so pretend it does not exist. |
| 323 | ruleCount -= 1 |
Martin Stjernholm | 226b20d | 2019-05-17 22:42:02 +0100 | [diff] [blame] | 324 | default: |
Cole Faust | 9a24d90 | 2024-03-18 15:38:12 -0700 | [diff] [blame] | 325 | if anyPartitionRegex.MatchString(name) { |
| 326 | // any_*_partition can be used with another visibility fields |
| 327 | continue |
| 328 | } |
Paul Duffin | e2453c7 | 2019-05-31 14:00:04 +0100 | [diff] [blame] | 329 | ctx.PropertyErrorf(property, "unrecognized visibility rule %q", v) |
Martin Stjernholm | 226b20d | 2019-05-17 22:42:02 +0100 | [diff] [blame] | 330 | continue |
| 331 | } |
Paul Duffin | 51084ff | 2020-05-05 19:19:22 +0100 | [diff] [blame] | 332 | if name == "override" { |
| 333 | if i != 0 { |
| 334 | ctx.PropertyErrorf(property, `"%v" may only be used at the start of the visibility rules`, v) |
| 335 | } |
| 336 | } else if ruleCount != 1 { |
Paul Duffin | e2453c7 | 2019-05-31 14:00:04 +0100 | [diff] [blame] | 337 | ctx.PropertyErrorf(property, "cannot mix %q with any other visibility rules", v) |
Martin Stjernholm | 226b20d | 2019-05-17 22:42:02 +0100 | [diff] [blame] | 338 | continue |
| 339 | } |
| 340 | } |
| 341 | |
| 342 | // If the current directory is not in the vendor tree then there are some additional |
| 343 | // restrictions on the rules. |
| 344 | if !isAncestor("vendor", currentPkg) { |
| 345 | if !isAllowedFromOutsideVendor(pkg, name) { |
Paul Duffin | e2453c7 | 2019-05-31 14:00:04 +0100 | [diff] [blame] | 346 | ctx.PropertyErrorf(property, |
Martin Stjernholm | 226b20d | 2019-05-17 22:42:02 +0100 | [diff] [blame] | 347 | "%q is not allowed. Packages outside //vendor cannot make themselves visible to specific"+ |
| 348 | " targets within //vendor, they can only use //vendor:__subpackages__.", v) |
| 349 | continue |
| 350 | } |
| 351 | } |
| 352 | } |
| 353 | } |
| 354 | |
| 355 | // Gathers the flattened visibility rules after defaults expansion, parses the visibility |
| 356 | // properties, stores them in a map by qualifiedModuleName for retrieval during enforcement. |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 357 | // |
| 358 | // See ../README.md#Visibility for information on the format of the visibility rules. |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 359 | func visibilityRuleGatherer(ctx BottomUpMutatorContext) { |
Cole Faust | 894bb3b | 2024-02-07 11:28:26 -0800 | [diff] [blame] | 360 | m := ctx.Module() |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 361 | |
Paul Duffin | e2453c7 | 2019-05-31 14:00:04 +0100 | [diff] [blame] | 362 | qualifiedModuleId := m.qualifiedModuleId(ctx) |
| 363 | currentPkg := qualifiedModuleId.pkg |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 364 | |
Paul Duffin | 63c6e18 | 2019-07-24 14:24:38 +0100 | [diff] [blame] | 365 | // Parse the visibility rules that control access to the module and store them by id |
| 366 | // for use when enforcing the rules. |
Cole Faust | 9a24d90 | 2024-03-18 15:38:12 -0700 | [diff] [blame] | 367 | var rule compositeRule |
Paul Duffin | 0c83aba | 2020-05-01 18:13:36 +0100 | [diff] [blame] | 368 | primaryProperty := m.base().primaryVisibilityProperty |
| 369 | if primaryProperty != nil { |
| 370 | if visibility := primaryProperty.getStrings(); visibility != nil { |
Cole Faust | 9a24d90 | 2024-03-18 15:38:12 -0700 | [diff] [blame] | 371 | rule = parseRules(ctx, currentPkg, primaryProperty.getName(), visibility) |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 372 | } |
| 373 | } |
Cole Faust | 9a24d90 | 2024-03-18 15:38:12 -0700 | [diff] [blame] | 374 | ipr := implicitPartitionRules(ctx) |
| 375 | if rule != nil || ipr != nil { |
| 376 | moduleToVisibilityRuleMap(ctx.Config()).Store(qualifiedModuleId, visibilityRulesForModule{ |
| 377 | rule: rule, |
| 378 | implicitPartitionRules: ipr, |
| 379 | }) |
| 380 | } |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 381 | } |
| 382 | |
Paul Duffin | 0c83aba | 2020-05-01 18:13:36 +0100 | [diff] [blame] | 383 | func parseRules(ctx BaseModuleContext, currentPkg, property string, visibility []string) compositeRule { |
Martin Stjernholm | 226b20d | 2019-05-17 22:42:02 +0100 | [diff] [blame] | 384 | rules := make(compositeRule, 0, len(visibility)) |
| 385 | hasPrivateRule := false |
Paul Duffin | 44885e2 | 2020-02-19 16:10:09 +0000 | [diff] [blame] | 386 | hasPublicRule := false |
Martin Stjernholm | 226b20d | 2019-05-17 22:42:02 +0100 | [diff] [blame] | 387 | hasNonPrivateRule := false |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 388 | for _, v := range visibility { |
Paul Duffin | 0c83aba | 2020-05-01 18:13:36 +0100 | [diff] [blame] | 389 | ok, pkg, name := splitRule(ctx, v, currentPkg, property) |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 390 | if !ok { |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 391 | continue |
| 392 | } |
| 393 | |
Martin Stjernholm | 226b20d | 2019-05-17 22:42:02 +0100 | [diff] [blame] | 394 | var r visibilityRule |
| 395 | isPrivateRule := false |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 396 | if pkg == "visibility" { |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 397 | switch name { |
| 398 | case "private": |
Martin Stjernholm | 226b20d | 2019-05-17 22:42:02 +0100 | [diff] [blame] | 399 | r = privateRule{} |
| 400 | isPrivateRule = true |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 401 | case "public": |
Martin Stjernholm | 226b20d | 2019-05-17 22:42:02 +0100 | [diff] [blame] | 402 | r = publicRule{} |
Paul Duffin | 44885e2 | 2020-02-19 16:10:09 +0000 | [diff] [blame] | 403 | hasPublicRule = true |
Paul Duffin | 51084ff | 2020-05-05 19:19:22 +0100 | [diff] [blame] | 404 | case "override": |
| 405 | // Discard all preceding rules and any state based on them. |
| 406 | rules = nil |
| 407 | hasPrivateRule = false |
| 408 | hasPublicRule = false |
| 409 | hasNonPrivateRule = false |
| 410 | // This does not actually create a rule so continue onto the next rule. |
| 411 | continue |
Cole Faust | 9a24d90 | 2024-03-18 15:38:12 -0700 | [diff] [blame] | 412 | default: |
| 413 | match := anyPartitionRegex.FindStringSubmatch(name) |
| 414 | if match != nil { |
| 415 | r = anyPartitionRule{ |
| 416 | partitionType: match[1], |
| 417 | } |
| 418 | } |
Martin Stjernholm | 226b20d | 2019-05-17 22:42:02 +0100 | [diff] [blame] | 419 | } |
| 420 | } else { |
| 421 | switch name { |
| 422 | case "__pkg__": |
| 423 | r = packageRule{pkg} |
| 424 | case "__subpackages__": |
| 425 | r = subpackagesRule{pkg} |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 426 | default: |
Liz Kammer | 873f4b6 | 2020-10-15 08:42:01 -0700 | [diff] [blame] | 427 | ctx.PropertyErrorf(property, "invalid visibility pattern %q. Must match "+ |
| 428 | " //<package>:<scope>, //<package> or :<scope> "+ |
| 429 | "where <scope> is one of \"__pkg__\", \"__subpackages__\"", |
| 430 | v) |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 431 | } |
| 432 | } |
| 433 | |
Martin Stjernholm | 226b20d | 2019-05-17 22:42:02 +0100 | [diff] [blame] | 434 | if isPrivateRule { |
| 435 | hasPrivateRule = true |
| 436 | } else { |
| 437 | hasNonPrivateRule = true |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 438 | } |
| 439 | |
| 440 | rules = append(rules, r) |
| 441 | } |
| 442 | |
Martin Stjernholm | 226b20d | 2019-05-17 22:42:02 +0100 | [diff] [blame] | 443 | if hasPrivateRule && hasNonPrivateRule { |
| 444 | ctx.PropertyErrorf("visibility", |
| 445 | "cannot mix \"//visibility:private\" with any other visibility rules") |
| 446 | return compositeRule{privateRule{}} |
| 447 | } |
| 448 | |
Paul Duffin | 44885e2 | 2020-02-19 16:10:09 +0000 | [diff] [blame] | 449 | if hasPublicRule { |
| 450 | // Public overrides all other rules so just return it. |
| 451 | return compositeRule{publicRule{}} |
| 452 | } |
| 453 | |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 454 | return rules |
| 455 | } |
| 456 | |
Cole Faust | 9a24d90 | 2024-03-18 15:38:12 -0700 | [diff] [blame] | 457 | func implicitPartitionRules(ctx BaseModuleContext) compositeRule { |
| 458 | var result compositeRule |
| 459 | if ctx.SocSpecific() { |
| 460 | result = append(result, anyPartitionRule{partitionType: "vendor"}) |
| 461 | } else if ctx.ProductSpecific() { |
| 462 | result = append(result, anyPartitionRule{partitionType: "product"}) |
| 463 | } else if ctx.Module().InstallInData() { |
| 464 | result = append(result, anyPartitionRule{partitionType: "data"}) |
| 465 | } else if ctx.SystemExtSpecific() { |
| 466 | result = append(result, anyPartitionRule{partitionType: "system_ext"}) |
| 467 | } else if ctx.DeviceSpecific() { |
| 468 | result = append(result, anyPartitionRule{partitionType: "odm"}) |
| 469 | } |
| 470 | return result |
| 471 | } |
| 472 | |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 473 | func isAllowedFromOutsideVendor(pkg string, name string) bool { |
| 474 | if pkg == "vendor" { |
Cole Faust | 894bb3b | 2024-02-07 11:28:26 -0800 | [diff] [blame] | 475 | return name == "__subpackages__" |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 476 | } |
| 477 | |
| 478 | return !isAncestor("vendor", pkg) |
| 479 | } |
| 480 | |
Paul Duffin | 0c83aba | 2020-05-01 18:13:36 +0100 | [diff] [blame] | 481 | func splitRule(ctx BaseModuleContext, ruleExpression string, currentPkg, property string) (bool, string, string) { |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 482 | // Make sure that the rule is of the correct format. |
| 483 | matches := visibilityRuleRegexp.FindStringSubmatch(ruleExpression) |
| 484 | if ruleExpression == "" || matches == nil { |
Paul Duffin | 0c83aba | 2020-05-01 18:13:36 +0100 | [diff] [blame] | 485 | // Visibility rule is invalid so ignore it. Keep going rather than aborting straight away to |
| 486 | // ensure all the rules on this module are checked. |
| 487 | ctx.PropertyErrorf(property, |
| 488 | "invalid visibility pattern %q must match"+ |
Liz Kammer | 873f4b6 | 2020-10-15 08:42:01 -0700 | [diff] [blame] | 489 | " //<package>:<scope>, //<package> or :<scope> "+ |
| 490 | "where <scope> is one of \"__pkg__\", \"__subpackages__\"", |
Paul Duffin | 0c83aba | 2020-05-01 18:13:36 +0100 | [diff] [blame] | 491 | ruleExpression) |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 492 | return false, "", "" |
| 493 | } |
| 494 | |
| 495 | // Extract the package and name. |
| 496 | pkg := matches[1] |
| 497 | name := matches[2] |
| 498 | |
| 499 | // Normalize the short hands |
| 500 | if pkg == "" { |
| 501 | pkg = currentPkg |
| 502 | } |
| 503 | if name == "" { |
| 504 | name = "__pkg__" |
| 505 | } |
| 506 | |
| 507 | return true, pkg, name |
| 508 | } |
| 509 | |
| 510 | func visibilityRuleEnforcer(ctx TopDownMutatorContext) { |
Cole Faust | 9a24d90 | 2024-03-18 15:38:12 -0700 | [diff] [blame] | 511 | qualified := createVisibilityModuleReference(ctx.ModuleName(), ctx.ModuleDir(), ctx.Module()) |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 512 | |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 513 | // Visit all the dependencies making sure that this module has access to them all. |
| 514 | ctx.VisitDirectDeps(func(dep Module) { |
Paul Duffin | 78ac5b9 | 2020-01-14 12:42:08 +0000 | [diff] [blame] | 515 | // Ignore dependencies that have an ExcludeFromVisibilityEnforcementTag |
| 516 | tag := ctx.OtherModuleDependencyTag(dep) |
| 517 | if _, ok := tag.(ExcludeFromVisibilityEnforcementTag); ok { |
| 518 | return |
| 519 | } |
| 520 | |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 521 | depName := ctx.OtherModuleName(dep) |
| 522 | depDir := ctx.OtherModuleDir(dep) |
| 523 | depQualified := qualifiedModuleName{depDir, depName} |
| 524 | |
| 525 | // Targets are always visible to other targets in their own package. |
Cole Faust | 894bb3b | 2024-02-07 11:28:26 -0800 | [diff] [blame] | 526 | if depQualified.pkg == qualified.name.pkg { |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 527 | return |
| 528 | } |
| 529 | |
Paul Duffin | 44885e2 | 2020-02-19 16:10:09 +0000 | [diff] [blame] | 530 | rule := effectiveVisibilityRules(ctx.Config(), depQualified) |
Paul Duffin | d99d997 | 2020-09-29 16:00:55 +0100 | [diff] [blame] | 531 | if !rule.matches(qualified) { |
Liz Kammer | e501bb4 | 2020-10-15 11:46:38 -0700 | [diff] [blame] | 532 | ctx.ModuleErrorf("depends on %s which is not visible to this module\nYou may need to add %q to its visibility", depQualified, "//"+ctx.ModuleDir()) |
Paul Duffin | e2453c7 | 2019-05-31 14:00:04 +0100 | [diff] [blame] | 533 | } |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 534 | }) |
| 535 | } |
| 536 | |
Paul Duffin | d99d997 | 2020-09-29 16:00:55 +0100 | [diff] [blame] | 537 | // Default visibility is public. |
| 538 | var defaultVisibility = compositeRule{publicRule{}} |
| 539 | |
| 540 | // Return the effective visibility rules. |
| 541 | // |
| 542 | // If no rules have been specified this will return the default visibility rule |
| 543 | // which is currently //visibility:public. |
Paul Duffin | 44885e2 | 2020-02-19 16:10:09 +0000 | [diff] [blame] | 544 | func effectiveVisibilityRules(config Config, qualified qualifiedModuleName) compositeRule { |
| 545 | moduleToVisibilityRule := moduleToVisibilityRuleMap(config) |
Cole Faust | 9a24d90 | 2024-03-18 15:38:12 -0700 | [diff] [blame] | 546 | value := visibilityRulesForModule{} |
| 547 | if valueRaw, ok := moduleToVisibilityRule.Load(qualified); ok { |
| 548 | value = valueRaw.(visibilityRulesForModule) |
| 549 | } |
Paul Duffin | 593b3c9 | 2019-12-05 14:31:48 +0000 | [diff] [blame] | 550 | var rule compositeRule |
Cole Faust | 9a24d90 | 2024-03-18 15:38:12 -0700 | [diff] [blame] | 551 | if value.rule != nil { |
| 552 | rule = value.rule |
Paul Duffin | 593b3c9 | 2019-12-05 14:31:48 +0000 | [diff] [blame] | 553 | } else { |
Cole Faust | 894bb3b | 2024-02-07 11:28:26 -0800 | [diff] [blame] | 554 | rule = packageDefaultVisibility(moduleToVisibilityRule, qualified) |
Paul Duffin | 593b3c9 | 2019-12-05 14:31:48 +0000 | [diff] [blame] | 555 | } |
Paul Duffin | d99d997 | 2020-09-29 16:00:55 +0100 | [diff] [blame] | 556 | |
| 557 | // If no rule is specified then return the default visibility rule to avoid |
| 558 | // every caller having to treat nil as public. |
| 559 | if rule == nil { |
| 560 | rule = defaultVisibility |
| 561 | } |
Cole Faust | 9a24d90 | 2024-03-18 15:38:12 -0700 | [diff] [blame] | 562 | |
| 563 | // If a partition rule wasn't specified, add implicit partition visibility |
| 564 | // rules based on the partition properties like vendor: true. |
| 565 | foundPartitionRule := false |
| 566 | for _, r := range rule { |
| 567 | if _, ok := r.(anyPartitionRule); ok { |
| 568 | foundPartitionRule = true |
| 569 | break |
| 570 | } |
| 571 | } |
| 572 | if !foundPartitionRule { |
| 573 | rule = append(rule, value.implicitPartitionRules...) |
| 574 | } |
| 575 | |
Paul Duffin | 593b3c9 | 2019-12-05 14:31:48 +0000 | [diff] [blame] | 576 | return rule |
| 577 | } |
| 578 | |
Bob Badour | eef4c1c | 2022-05-16 12:20:04 -0700 | [diff] [blame] | 579 | func createQualifiedModuleName(moduleName, dir string) qualifiedModuleName { |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 580 | qualified := qualifiedModuleName{dir, moduleName} |
| 581 | return qualified |
| 582 | } |
Paul Duffin | e484f47 | 2019-06-20 16:38:08 +0100 | [diff] [blame] | 583 | |
Cole Faust | 894bb3b | 2024-02-07 11:28:26 -0800 | [diff] [blame] | 584 | func packageDefaultVisibility(moduleToVisibilityRule *sync.Map, moduleId qualifiedModuleName) compositeRule { |
Paul Duffin | e484f47 | 2019-06-20 16:38:08 +0100 | [diff] [blame] | 585 | packageQualifiedId := moduleId.getContainingPackageId() |
| 586 | for { |
| 587 | value, ok := moduleToVisibilityRule.Load(packageQualifiedId) |
| 588 | if ok { |
Cole Faust | 9a24d90 | 2024-03-18 15:38:12 -0700 | [diff] [blame] | 589 | return value.(visibilityRulesForModule).rule |
Paul Duffin | e484f47 | 2019-06-20 16:38:08 +0100 | [diff] [blame] | 590 | } |
| 591 | |
| 592 | if packageQualifiedId.isRootPackage() { |
| 593 | return nil |
| 594 | } |
| 595 | |
| 596 | packageQualifiedId = packageQualifiedId.getContainingPackageId() |
| 597 | } |
| 598 | } |
Paul Duffin | 593b3c9 | 2019-12-05 14:31:48 +0000 | [diff] [blame] | 599 | |
Paul Duffin | 157f40f | 2020-09-29 16:01:08 +0100 | [diff] [blame] | 600 | type VisibilityRuleSet interface { |
| 601 | // Widen the visibility with some extra rules. |
| 602 | Widen(extra []string) error |
| 603 | |
| 604 | Strings() []string |
| 605 | } |
| 606 | |
| 607 | type visibilityRuleSet struct { |
| 608 | rules []string |
| 609 | } |
| 610 | |
| 611 | var _ VisibilityRuleSet = (*visibilityRuleSet)(nil) |
| 612 | |
| 613 | func (v *visibilityRuleSet) Widen(extra []string) error { |
| 614 | // Check the extra rules first just in case they are invalid. Otherwise, if |
| 615 | // the current visibility is public then the extra rules will just be ignored. |
| 616 | if len(extra) == 1 { |
| 617 | singularRule := extra[0] |
| 618 | switch singularRule { |
| 619 | case "//visibility:public": |
| 620 | // Public overrides everything so just discard any existing rules. |
| 621 | v.rules = extra |
| 622 | return nil |
| 623 | case "//visibility:private": |
| 624 | // Extending rule with private is an error. |
| 625 | return fmt.Errorf("%q does not widen the visibility", singularRule) |
| 626 | } |
| 627 | } |
| 628 | |
| 629 | if len(v.rules) == 1 { |
| 630 | switch v.rules[0] { |
| 631 | case "//visibility:public": |
| 632 | // No point in adding rules to something which is already public. |
| 633 | return nil |
| 634 | case "//visibility:private": |
| 635 | // Adding any rules to private means it is no longer private so the |
| 636 | // private can be discarded. |
| 637 | v.rules = nil |
| 638 | } |
| 639 | } |
| 640 | |
| 641 | v.rules = FirstUniqueStrings(append(v.rules, extra...)) |
| 642 | sort.Strings(v.rules) |
| 643 | return nil |
| 644 | } |
| 645 | |
| 646 | func (v *visibilityRuleSet) Strings() []string { |
| 647 | return v.rules |
| 648 | } |
| 649 | |
Paul Duffin | 593b3c9 | 2019-12-05 14:31:48 +0000 | [diff] [blame] | 650 | // Get the effective visibility rules, i.e. the actual rules that affect the visibility of the |
| 651 | // property irrespective of where they are defined. |
| 652 | // |
| 653 | // Includes visibility rules specified by package default_visibility and/or on defaults. |
| 654 | // Short hand forms, e.g. //:__subpackages__ are replaced with their full form, e.g. |
| 655 | // //package/containing/rule:__subpackages__. |
Paul Duffin | 157f40f | 2020-09-29 16:01:08 +0100 | [diff] [blame] | 656 | func EffectiveVisibilityRules(ctx BaseModuleContext, module Module) VisibilityRuleSet { |
Paul Duffin | 593b3c9 | 2019-12-05 14:31:48 +0000 | [diff] [blame] | 657 | moduleName := ctx.OtherModuleName(module) |
| 658 | dir := ctx.OtherModuleDir(module) |
| 659 | qualified := qualifiedModuleName{dir, moduleName} |
| 660 | |
Paul Duffin | 44885e2 | 2020-02-19 16:10:09 +0000 | [diff] [blame] | 661 | rule := effectiveVisibilityRules(ctx.Config(), qualified) |
Paul Duffin | 593b3c9 | 2019-12-05 14:31:48 +0000 | [diff] [blame] | 662 | |
Cole Faust | 9a24d90 | 2024-03-18 15:38:12 -0700 | [diff] [blame] | 663 | currentModule := createVisibilityModuleReference(moduleName, dir, module) |
Cole Faust | 894bb3b | 2024-02-07 11:28:26 -0800 | [diff] [blame] | 664 | |
Martin Stjernholm | 0641d18 | 2020-05-13 02:20:06 +0100 | [diff] [blame] | 665 | // Modules are implicitly visible to other modules in the same package, |
| 666 | // without checking the visibility rules. Here we need to add that visibility |
| 667 | // explicitly. |
Cole Faust | 894bb3b | 2024-02-07 11:28:26 -0800 | [diff] [blame] | 668 | if !rule.matches(currentModule) { |
Martin Stjernholm | 64aeaad | 2020-05-13 22:11:40 +0100 | [diff] [blame] | 669 | if len(rule) == 1 { |
| 670 | if _, ok := rule[0].(privateRule); ok { |
| 671 | // If the rule is //visibility:private we can't append another |
| 672 | // visibility to it. Semantically we need to convert it to a package |
| 673 | // visibility rule for the location where the result is used, but since |
| 674 | // modules are implicitly visible within the package we get the same |
| 675 | // result without any rule at all, so just make it an empty list to be |
| 676 | // appended below. |
Paul Duffin | d99d997 | 2020-09-29 16:00:55 +0100 | [diff] [blame] | 677 | rule = nil |
Martin Stjernholm | 64aeaad | 2020-05-13 22:11:40 +0100 | [diff] [blame] | 678 | } |
| 679 | } |
Martin Stjernholm | 0641d18 | 2020-05-13 02:20:06 +0100 | [diff] [blame] | 680 | rule = append(rule, packageRule{dir}) |
| 681 | } |
| 682 | |
Paul Duffin | 157f40f | 2020-09-29 16:01:08 +0100 | [diff] [blame] | 683 | return &visibilityRuleSet{rule.Strings()} |
Paul Duffin | 593b3c9 | 2019-12-05 14:31:48 +0000 | [diff] [blame] | 684 | } |
Paul Duffin | 5ec73ec | 2020-05-01 17:52:01 +0100 | [diff] [blame] | 685 | |
| 686 | // Clear the default visibility properties so they can be replaced. |
| 687 | func clearVisibilityProperties(module Module) { |
| 688 | module.base().visibilityPropertyInfo = nil |
| 689 | } |
| 690 | |
| 691 | // Add a property that contains visibility rules so that they are checked for |
| 692 | // correctness. |
| 693 | func AddVisibilityProperty(module Module, name string, stringsProperty *[]string) { |
| 694 | addVisibilityProperty(module, name, stringsProperty) |
| 695 | } |
| 696 | |
| 697 | func addVisibilityProperty(module Module, name string, stringsProperty *[]string) visibilityProperty { |
| 698 | base := module.base() |
| 699 | property := newVisibilityProperty(name, stringsProperty) |
| 700 | base.visibilityPropertyInfo = append(base.visibilityPropertyInfo, property) |
| 701 | return property |
| 702 | } |
| 703 | |
| 704 | // Set the primary visibility property. |
| 705 | // |
| 706 | // Also adds the property to the list of properties to be validated. |
| 707 | func setPrimaryVisibilityProperty(module Module, name string, stringsProperty *[]string) { |
| 708 | module.base().primaryVisibilityProperty = addVisibilityProperty(module, name, stringsProperty) |
| 709 | } |