Skip to content

Commit 98e570b

Browse files
lunnyGiteaBot
authored andcommitted
Fix auth check bug (go-gitea#24382)
Fix https://github.com/go-gitea/gitea/pull/24362/files#r1179095324 `getAuthenticatedMeta` has checked them, these code are duplicated one. And the first invokation has a wrong permission check. `DownloadHandle` should require read permission but not write.
1 parent e301e26 commit 98e570b

File tree

2 files changed

+41
-10
lines changed

2 files changed

+41
-10
lines changed

services/lfs/server.go

-10
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,6 @@ func DownloadHandler(ctx *context.Context) {
8686
return
8787
}
8888

89-
repository := getAuthenticatedRepository(ctx, rc, true)
90-
if repository == nil {
91-
return
92-
}
93-
9489
// Support resume download using Range header
9590
var fromByte, toByte int64
9691
toByte = meta.Size - 1
@@ -365,11 +360,6 @@ func VerifyHandler(ctx *context.Context) {
365360
return
366361
}
367362

368-
repository := getAuthenticatedRepository(ctx, rc, true)
369-
if repository == nil {
370-
return
371-
}
372-
373363
contentStore := lfs_module.NewContentStore()
374364
ok, err := contentStore.Verify(meta.Pointer)
375365

tests/integration/lfs_getobject_test.go

+41
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import (
1111
"net/http/httptest"
1212
"testing"
1313

14+
"code.gitea.io/gitea/models/auth"
1415
"code.gitea.io/gitea/models/db"
1516
git_model "code.gitea.io/gitea/models/git"
1617
repo_model "code.gitea.io/gitea/models/repo"
@@ -40,6 +41,31 @@ func storeObjectInRepo(t *testing.T, repositoryID int64, content *[]byte) string
4041
return pointer.Oid
4142
}
4243

44+
func storeAndGetLfsToken(t *testing.T, ts auth.AccessTokenScope, content *[]byte, extraHeader *http.Header, expectedStatus int) *httptest.ResponseRecorder {
45+
repo, err := repo_model.GetRepositoryByOwnerAndName(db.DefaultContext, "user2", "repo1")
46+
assert.NoError(t, err)
47+
oid := storeObjectInRepo(t, repo.ID, content)
48+
defer git_model.RemoveLFSMetaObjectByOid(db.DefaultContext, repo.ID, oid)
49+
50+
token := getUserToken(t, "user2", ts)
51+
52+
// Request OID
53+
req := NewRequest(t, "GET", "/user2/repo1.git/info/lfs/objects/"+oid+"/test")
54+
req.Header.Set("Accept-Encoding", "gzip")
55+
req.SetBasicAuth("user2", token)
56+
if extraHeader != nil {
57+
for key, values := range *extraHeader {
58+
for _, value := range values {
59+
req.Header.Add(key, value)
60+
}
61+
}
62+
}
63+
64+
resp := MakeRequest(t, req, expectedStatus)
65+
66+
return resp
67+
}
68+
4369
func storeAndGetLfs(t *testing.T, content *[]byte, extraHeader *http.Header, expectedStatus int) *httptest.ResponseRecorder {
4470
repo, err := repo_model.GetRepositoryByOwnerAndName(db.DefaultContext, "user2", "repo1")
4571
assert.NoError(t, err)
@@ -89,6 +115,21 @@ func TestGetLFSSmall(t *testing.T) {
89115
checkResponseTestContentEncoding(t, &content, resp, false)
90116
}
91117

118+
func TestGetLFSSmallToken(t *testing.T) {
119+
defer tests.PrepareTestEnv(t)()
120+
content := []byte("A very small file\n")
121+
122+
resp := storeAndGetLfsToken(t, auth.AccessTokenScopePublicRepo, &content, nil, http.StatusOK)
123+
checkResponseTestContentEncoding(t, &content, resp, false)
124+
}
125+
126+
func TestGetLFSSmallTokenFail(t *testing.T) {
127+
defer tests.PrepareTestEnv(t)()
128+
content := []byte("A very small file\n")
129+
130+
storeAndGetLfsToken(t, auth.AccessTokenScopeNotification, &content, nil, http.StatusForbidden)
131+
}
132+
92133
func TestGetLFSLarge(t *testing.T) {
93134
defer tests.PrepareTestEnv(t)()
94135
content := make([]byte, web.GzipMinSize*10)

0 commit comments

Comments
 (0)