Skip to content

Commit 92fda9c

Browse files
authored
Disallow duplicate storage paths (#26484)
Replace #26380
1 parent c7a21cb commit 92fda9c

File tree

7 files changed

+42
-20
lines changed

7 files changed

+42
-20
lines changed

modules/setting/indexer.go

+17-14
Original file line numberDiff line numberDiff line change
@@ -53,21 +53,24 @@ var Indexer = struct {
5353
func loadIndexerFrom(rootCfg ConfigProvider) {
5454
sec := rootCfg.Section("indexer")
5555
Indexer.IssueType = sec.Key("ISSUE_INDEXER_TYPE").MustString("bleve")
56-
Indexer.IssuePath = filepath.ToSlash(sec.Key("ISSUE_INDEXER_PATH").MustString(filepath.ToSlash(filepath.Join(AppDataPath, "indexers/issues.bleve"))))
57-
if !filepath.IsAbs(Indexer.IssuePath) {
58-
Indexer.IssuePath = filepath.ToSlash(filepath.Join(AppWorkPath, Indexer.IssuePath))
59-
}
60-
Indexer.IssueConnStr = sec.Key("ISSUE_INDEXER_CONN_STR").MustString(Indexer.IssueConnStr)
61-
62-
if Indexer.IssueType == "meilisearch" {
63-
u, err := url.Parse(Indexer.IssueConnStr)
64-
if err != nil {
65-
log.Warn("Failed to parse ISSUE_INDEXER_CONN_STR: %v", err)
66-
u = &url.URL{}
56+
if Indexer.IssueType == "bleve" {
57+
Indexer.IssuePath = filepath.ToSlash(sec.Key("ISSUE_INDEXER_PATH").MustString(filepath.ToSlash(filepath.Join(AppDataPath, "indexers/issues.bleve"))))
58+
if !filepath.IsAbs(Indexer.IssuePath) {
59+
Indexer.IssuePath = filepath.ToSlash(filepath.Join(AppWorkPath, Indexer.IssuePath))
60+
}
61+
fatalDuplicatedPath("issue_indexer", Indexer.IssuePath)
62+
} else {
63+
Indexer.IssueConnStr = sec.Key("ISSUE_INDEXER_CONN_STR").MustString(Indexer.IssueConnStr)
64+
if Indexer.IssueType == "meilisearch" {
65+
u, err := url.Parse(Indexer.IssueConnStr)
66+
if err != nil {
67+
log.Warn("Failed to parse ISSUE_INDEXER_CONN_STR: %v", err)
68+
u = &url.URL{}
69+
}
70+
Indexer.IssueConnAuth, _ = u.User.Password()
71+
u.User = nil
72+
Indexer.IssueConnStr = u.String()
6773
}
68-
Indexer.IssueConnAuth, _ = u.User.Password()
69-
u.User = nil
70-
Indexer.IssueConnStr = u.String()
7174
}
7275

7376
Indexer.IssueIndexerName = sec.Key("ISSUE_INDEXER_NAME").MustString(Indexer.IssueIndexerName)

modules/setting/path.go

+4
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,12 @@ func init() {
6666
AppWorkPath = filepath.Dir(AppPath)
6767
}
6868

69+
fatalDuplicatedPath("app_work_path", AppWorkPath)
70+
6971
appWorkPathBuiltin = AppWorkPath
7072
customPathBuiltin = CustomPath
73+
74+
fatalDuplicatedPath("custom_path", CustomPath)
7175
customConfBuiltin = CustomConf
7276
}
7377

modules/setting/repository.go

+3
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,9 @@ func loadRepositoryFrom(rootCfg ConfigProvider) {
285285
} else {
286286
RepoRootPath = filepath.Clean(RepoRootPath)
287287
}
288+
289+
fatalDuplicatedPath("repository.ROOT", RepoRootPath)
290+
288291
defaultDetectedCharsetsOrder := make([]string, 0, len(Repository.DetectedCharsetsOrder))
289292
for _, charset := range Repository.DetectedCharsetsOrder {
290293
defaultDetectedCharsetsOrder = append(defaultDetectedCharsetsOrder, strings.ToLower(strings.TrimSpace(charset)))

modules/setting/server.go

+4-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import (
77
"encoding/base64"
88
"net"
99
"net/url"
10-
"path"
1110
"path/filepath"
1211
"strconv"
1312
"strings"
@@ -321,17 +320,19 @@ func loadServerFrom(rootCfg ConfigProvider) {
321320
}
322321
StaticRootPath = sec.Key("STATIC_ROOT_PATH").MustString(StaticRootPath)
323322
StaticCacheTime = sec.Key("STATIC_CACHE_TIME").MustDuration(6 * time.Hour)
324-
AppDataPath = sec.Key("APP_DATA_PATH").MustString(path.Join(AppWorkPath, "data"))
323+
AppDataPath = sec.Key("APP_DATA_PATH").MustString(filepath.Join(AppWorkPath, "data"))
325324
if !filepath.IsAbs(AppDataPath) {
326325
AppDataPath = filepath.ToSlash(filepath.Join(AppWorkPath, AppDataPath))
327326
}
327+
fatalDuplicatedPath("app_data_path", AppDataPath)
328328

329329
EnableGzip = sec.Key("ENABLE_GZIP").MustBool()
330330
EnablePprof = sec.Key("ENABLE_PPROF").MustBool(false)
331-
PprofDataPath = sec.Key("PPROF_DATA_PATH").MustString(path.Join(AppWorkPath, "data/tmp/pprof"))
331+
PprofDataPath = sec.Key("PPROF_DATA_PATH").MustString(filepath.Join(AppWorkPath, "data/tmp/pprof"))
332332
if !filepath.IsAbs(PprofDataPath) {
333333
PprofDataPath = filepath.Join(AppWorkPath, PprofDataPath)
334334
}
335+
fatalDuplicatedPath("pprof_data_path", PprofDataPath)
335336

336337
landingPage := sec.Key("LANDING_PAGE").MustString("home")
337338
switch landingPage {

modules/setting/session.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ package setting
55

66
import (
77
"net/http"
8-
"path"
98
"path/filepath"
109
"strings"
1110

@@ -44,9 +43,10 @@ func loadSessionFrom(rootCfg ConfigProvider) {
4443
sec := rootCfg.Section("session")
4544
SessionConfig.Provider = sec.Key("PROVIDER").In("memory",
4645
[]string{"memory", "file", "redis", "mysql", "postgres", "couchbase", "memcache", "db"})
47-
SessionConfig.ProviderConfig = strings.Trim(sec.Key("PROVIDER_CONFIG").MustString(path.Join(AppDataPath, "sessions")), "\" ")
46+
SessionConfig.ProviderConfig = strings.Trim(sec.Key("PROVIDER_CONFIG").MustString(filepath.Join(AppDataPath, "sessions")), "\" ")
4847
if SessionConfig.Provider == "file" && !filepath.IsAbs(SessionConfig.ProviderConfig) {
49-
SessionConfig.ProviderConfig = path.Join(AppWorkPath, SessionConfig.ProviderConfig)
48+
SessionConfig.ProviderConfig = filepath.Join(AppWorkPath, SessionConfig.ProviderConfig)
49+
fatalDuplicatedPath("session", SessionConfig.ProviderConfig)
5050
}
5151
SessionConfig.CookieName = sec.Key("COOKIE_NAME").MustString("i_like_gitea")
5252
SessionConfig.CookiePath = AppSubURL + "/" // there was a bug, old code only set CookePath=AppSubURL, no trailing slash

modules/setting/setting.go

+9
Original file line numberDiff line numberDiff line change
@@ -226,3 +226,12 @@ func LoadSettingsForInstall() {
226226
loadServiceFrom(CfgProvider)
227227
loadMailerFrom(CfgProvider)
228228
}
229+
230+
var uniquePaths = make(map[string]string)
231+
232+
func fatalDuplicatedPath(name, p string) {
233+
if targetName, ok := uniquePaths[p]; ok && targetName != name {
234+
log.Fatal("storage path %q is being used by %q and %q and all storage paths must be unique to prevent data loss.", p, targetName, name)
235+
}
236+
uniquePaths[p] = name
237+
}

modules/setting/storage.go

+2
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,8 @@ func getStorageForLocal(targetSec, overrideSec ConfigSection, tp targetSecType,
240240
}
241241
}
242242

243+
fatalDuplicatedPath("storage."+name, storage.Path)
244+
243245
return &storage, nil
244246
}
245247

0 commit comments

Comments
 (0)