Merge 'v2.3.1'

* v2.3.1:
  Release notes for 2.3.1
  Release notes for 2.2.2.2
  Fix permissions bug caused by directly inheriting from All-Projects

Conflicts:
	gerrit-server/src/main/java/com/google/gerrit/server/project/SectionSortCache.java

Change-Id: Ic0282b03cd4736fc33558ecca02dd5e34686ea4a
This commit is contained in:
Shawn O. Pearce 2012-06-21 16:27:34 -07:00
commit fd99f84ec0
6 changed files with 79 additions and 4 deletions

View File

@ -0,0 +1,24 @@
Release notes for Gerrit 2.2.2.2
================================
Gerrit 2.2.2.2 is now available:
link:http://code.google.com/p/gerrit/downloads/detail?name=gerrit-2.2.2.2.war[http://code.google.com/p/gerrit/downloads/detail?name=gerrit-2.2.2.2.war]
There are no schema changes from 2.2.2, or 2.2.2.1.
However, if upgrading from anything earlier, follow the upgrade
procedure in the 2.2.2 link:ReleaseNotes-2.2.2.html[ReleaseNotes].
Security Fixes
--------------
* Some access control sections may be ignored
+
Gerrit sometimes ignored an access control section in a project
if the exact same section name appeared in All-Projects. The bug
required an unrelated project to have access.inheritFrom set to
All-Projects and be accessed before the project that has the same
section name as All-Projects. This is an unlikely scenario for
most servers, as Gerrit does not normally set inheritFrom equal to
All-Projects. The usual behavior is to not supply this property in
project.config, and permit the implicit inheritence to take place.

View File

@ -0,0 +1,24 @@
Release notes for Gerrit 2.3.1
==============================
Gerrit 2.3.1 is now available:
link:http://code.google.com/p/gerrit/downloads/detail?name=gerrit-2.3.1.war[http://code.google.com/p/gerrit/downloads/detail?name=gerrit-2.3.1.war]
There are no schema changes from 2.3.
However, if upgrading from anything earlier, follow the upgrade
procedure in the 2.3 link:ReleaseNotes-2.3.html[ReleaseNotes].
Security Fixes
--------------
* Some access control sections may be ignored
+
Gerrit sometimes ignored an access control section in a project
if the exact same section name appeared in All-Projects. The bug
required an unrelated project to have access.inheritFrom set to
All-Projects and be accessed before the project that has the same
section name as All-Projects. This is an unlikely scenario for
most servers, as Gerrit does not normally set inheritFrom equal to
All-Projects. The usual behavior is to not supply this property in
project.config, and permit the implicit inheritence to take place.

View File

@ -11,11 +11,13 @@ Version 2.4.x
Version 2.3.x
-------------
* link:ReleaseNotes-2.3.html[2.3]
* link:ReleaseNotes-2.3.1.html[2.3.1]
[[2_2]]
Version 2.2.x
-------------
* link:ReleaseNotes-2.2.2.html[2.2.2],
* link:ReleaseNotes-2.2.2.2.html[2.2.2.2],
* link:ReleaseNotes-2.2.2.1.html[2.2.2.1],
* link:ReleaseNotes-2.2.1.html[2.2.1],
* link:ReleaseNotes-2.2.0.html[2.2.0]

View File

@ -198,6 +198,7 @@ public class ProjectState {
List<SectionMatcher> all = new ArrayList<SectionMatcher>();
Set<Project.NameKey> seen = new HashSet<Project.NameKey>();
ProjectState allProjects = projectCache.getAllProjects();
seen.add(getProject().getNameKey());
ProjectState s = this;
@ -210,7 +211,9 @@ public class ProjectState {
}
s = projectCache.get(parent);
} while (s != null);
all.addAll(projectCache.getAllProjects().getLocalAccessSections());
if (seen.add(allProjects.getProject().getNameKey())) {
all.addAll(allProjects.getLocalAccessSections());
}
return all;
}

View File

@ -24,6 +24,9 @@ import com.google.inject.Singleton;
import com.google.inject.TypeLiteral;
import com.google.inject.name.Named;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.Arrays;
import java.util.Collections;
import java.util.IdentityHashMap;
@ -32,6 +35,9 @@ import java.util.List;
/** Caches the order AccessSections should be sorted for evaluation. */
@Singleton
public class SectionSortCache {
private static final Logger log =
LoggerFactory.getLogger(SectionSortCache.class);
private static final String CACHE_NAME = "permission_sort";
public static Module module() {
@ -73,10 +79,11 @@ public class SectionSortCache {
}
} else {
boolean poison = false;
IdentityHashMap<AccessSection, Integer> srcMap =
new IdentityHashMap<AccessSection, Integer>();
for (int i = 0; i < cnt; i++) {
srcMap.put(sections.get(i), i);
poison |= srcMap.put(sections.get(i), i) != null;
}
Collections.sort(sections, new MostSpecificComparator(ref));
@ -91,7 +98,11 @@ public class SectionSortCache {
}
}
cache.put(key, new EntryVal(srcIdx));
if (poison) {
log.error("Received duplicate AccessSection instances, not caching sort");
} else {
cache.put(key, new EntryVal(srcIdx));
}
}
}

View File

@ -150,6 +150,18 @@ public class RefControlTest extends TestCase {
u.controlForRef("refs/heads/foobar").canUpload());
}
public void testInheritDuplicateSections() {
grant(parent, READ, admin, "refs/*");
grant(local, READ, devs, "refs/heads/*");
local.getProject().setParentName(parent.getProject().getName());
assertTrue("a can read", user("a", admin).isVisible());
local = new ProjectConfig(new Project.NameKey("local"));
local.createInMemory();
grant(local, READ, devs, "refs/*");
assertTrue("d can read", user("d", devs).isVisible());
}
public void testInheritRead_OverrideWithDeny() {
grant(parent, READ, registered, "refs/*");
grant(local, READ, registered, "refs/*").setDeny();
@ -322,7 +334,6 @@ public class RefControlTest extends TestCase {
local = new ProjectConfig(new Project.NameKey("local"));
local.createInMemory();
local.getProject().setParentName(parent.getProject().getName());
sectionSorter =
new PermissionCollection.Factory(