http.go 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434
  1. // Copyright 2017 The Gogs Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package repo
  5. import (
  6. "bytes"
  7. "compress/gzip"
  8. "fmt"
  9. "net/http"
  10. "os"
  11. "os/exec"
  12. "path"
  13. "path/filepath"
  14. "strconv"
  15. "strings"
  16. "time"
  17. "gopkg.in/macaron.v1"
  18. log "unknwon.dev/clog/v2"
  19. "gogs.io/gogs/internal/conf"
  20. "gogs.io/gogs/internal/db"
  21. "gogs.io/gogs/internal/lazyregexp"
  22. "gogs.io/gogs/internal/tool"
  23. )
  24. type HTTPContext struct {
  25. *macaron.Context
  26. OwnerName string
  27. OwnerSalt string
  28. RepoID int64
  29. RepoName string
  30. AuthUser *db.User
  31. }
  32. // askCredentials responses HTTP header and status which informs client to provide credentials.
  33. func askCredentials(c *macaron.Context, status int, text string) {
  34. c.Header().Set("WWW-Authenticate", "Basic realm=\".\"")
  35. c.Error(status, text)
  36. }
  37. func HTTPContexter() macaron.Handler {
  38. return func(c *macaron.Context) {
  39. if len(conf.HTTP.AccessControlAllowOrigin) > 0 {
  40. // Set CORS headers for browser-based git clients
  41. c.Header().Set("Access-Control-Allow-Origin", conf.HTTP.AccessControlAllowOrigin)
  42. c.Header().Set("Access-Control-Allow-Headers", "Content-Type, Authorization, User-Agent")
  43. // Handle preflight OPTIONS request
  44. if c.Req.Method == "OPTIONS" {
  45. c.Status(http.StatusOK)
  46. return
  47. }
  48. }
  49. ownerName := c.Params(":username")
  50. repoName := strings.TrimSuffix(c.Params(":reponame"), ".git")
  51. repoName = strings.TrimSuffix(repoName, ".wiki")
  52. isPull := c.Query("service") == "git-upload-pack" ||
  53. strings.HasSuffix(c.Req.URL.Path, "git-upload-pack") ||
  54. c.Req.Method == "GET"
  55. owner, err := db.Users.GetByUsername(ownerName)
  56. if err != nil {
  57. if db.IsErrUserNotExist(err) {
  58. c.Status(http.StatusNotFound)
  59. } else {
  60. c.Status(http.StatusInternalServerError)
  61. log.Error("Failed to get user [name: %s]: %v", ownerName, err)
  62. }
  63. return
  64. }
  65. repo, err := db.Repos.GetByName(owner.ID, repoName)
  66. if err != nil {
  67. if db.IsErrRepoNotExist(err) {
  68. c.Status(http.StatusNotFound)
  69. } else {
  70. c.Status(http.StatusInternalServerError)
  71. log.Error("Failed to get repository [owner_id: %d, name: %s]: %v", owner.ID, repoName, err)
  72. }
  73. return
  74. }
  75. // Authentication is not required for pulling from public repositories.
  76. if isPull && !repo.IsPrivate && !conf.Auth.RequireSigninView {
  77. c.Map(&HTTPContext{
  78. Context: c,
  79. })
  80. return
  81. }
  82. // In case user requested a wrong URL and not intended to access Git objects.
  83. action := c.Params("*")
  84. if !strings.Contains(action, "git-") &&
  85. !strings.Contains(action, "info/") &&
  86. !strings.Contains(action, "HEAD") &&
  87. !strings.Contains(action, "objects/") {
  88. c.NotFound()
  89. return
  90. }
  91. // Handle HTTP Basic Authentication
  92. authHead := c.Req.Header.Get("Authorization")
  93. if len(authHead) == 0 {
  94. askCredentials(c, http.StatusUnauthorized, "")
  95. return
  96. }
  97. auths := strings.Fields(authHead)
  98. if len(auths) != 2 || auths[0] != "Basic" {
  99. askCredentials(c, http.StatusUnauthorized, "")
  100. return
  101. }
  102. authUsername, authPassword, err := tool.BasicAuthDecode(auths[1])
  103. if err != nil {
  104. askCredentials(c, http.StatusUnauthorized, "")
  105. return
  106. }
  107. authUser, err := db.Users.Authenticate(authUsername, authPassword, -1)
  108. if err != nil && !db.IsErrUserNotExist(err) {
  109. c.Status(http.StatusInternalServerError)
  110. log.Error("Failed to authenticate user [name: %s]: %v", authUsername, err)
  111. return
  112. }
  113. // If username and password combination failed, try again using username as a token.
  114. if authUser == nil {
  115. token, err := db.AccessTokens.GetBySHA(authUsername)
  116. if err != nil {
  117. if db.IsErrAccessTokenNotExist(err) {
  118. askCredentials(c, http.StatusUnauthorized, "")
  119. } else {
  120. c.Status(http.StatusInternalServerError)
  121. log.Error("Failed to get access token [sha: %s]: %v", authUsername, err)
  122. }
  123. return
  124. }
  125. token.Updated = time.Now()
  126. if err = db.AccessTokens.Save(token); err != nil {
  127. log.Error("Failed to update access token: %v", err)
  128. }
  129. authUser, err = db.Users.GetByID(token.UserID)
  130. if err != nil {
  131. // Once we found token, we're supposed to find its related user,
  132. // thus any error is unexpected.
  133. c.Status(http.StatusInternalServerError)
  134. log.Error("Failed to get user [id: %d]: %v", token.UserID, err)
  135. return
  136. }
  137. } else if authUser.IsEnabledTwoFactor() {
  138. askCredentials(c, http.StatusUnauthorized, `User with two-factor authentication enabled cannot perform HTTP/HTTPS operations via plain username and password
  139. Please create and use personal access token on user settings page`)
  140. return
  141. }
  142. log.Trace("[Git] Authenticated user: %s", authUser.Name)
  143. mode := db.AccessModeWrite
  144. if isPull {
  145. mode = db.AccessModeRead
  146. }
  147. if !db.Perms.Authorize(authUser.ID, repo, mode) {
  148. askCredentials(c, http.StatusForbidden, "User permission denied")
  149. return
  150. }
  151. if !isPull && repo.IsMirror {
  152. c.Error(http.StatusForbidden, "Mirror repository is read-only")
  153. return
  154. }
  155. c.Map(&HTTPContext{
  156. Context: c,
  157. OwnerName: ownerName,
  158. OwnerSalt: owner.Salt,
  159. RepoID: repo.ID,
  160. RepoName: repoName,
  161. AuthUser: authUser,
  162. })
  163. }
  164. }
  165. type serviceHandler struct {
  166. w http.ResponseWriter
  167. r *http.Request
  168. dir string
  169. file string
  170. authUser *db.User
  171. ownerName string
  172. ownerSalt string
  173. repoID int64
  174. repoName string
  175. }
  176. func (h *serviceHandler) setHeaderNoCache() {
  177. h.w.Header().Set("Expires", "Fri, 01 Jan 1980 00:00:00 GMT")
  178. h.w.Header().Set("Pragma", "no-cache")
  179. h.w.Header().Set("Cache-Control", "no-cache, max-age=0, must-revalidate")
  180. }
  181. func (h *serviceHandler) setHeaderCacheForever() {
  182. now := time.Now().Unix()
  183. expires := now + 31536000
  184. h.w.Header().Set("Date", fmt.Sprintf("%d", now))
  185. h.w.Header().Set("Expires", fmt.Sprintf("%d", expires))
  186. h.w.Header().Set("Cache-Control", "public, max-age=31536000")
  187. }
  188. func (h *serviceHandler) sendFile(contentType string) {
  189. reqFile := path.Join(h.dir, h.file)
  190. fi, err := os.Stat(reqFile)
  191. if os.IsNotExist(err) {
  192. h.w.WriteHeader(http.StatusNotFound)
  193. return
  194. }
  195. h.w.Header().Set("Content-Type", contentType)
  196. h.w.Header().Set("Content-Length", fmt.Sprintf("%d", fi.Size()))
  197. h.w.Header().Set("Last-Modified", fi.ModTime().Format(http.TimeFormat))
  198. http.ServeFile(h.w, h.r, reqFile)
  199. }
  200. func serviceRPC(h serviceHandler, service string) {
  201. defer h.r.Body.Close()
  202. if h.r.Header.Get("Content-Type") != fmt.Sprintf("application/x-git-%s-request", service) {
  203. h.w.WriteHeader(http.StatusUnauthorized)
  204. return
  205. }
  206. h.w.Header().Set("Content-Type", fmt.Sprintf("application/x-git-%s-result", service))
  207. var (
  208. reqBody = h.r.Body
  209. err error
  210. )
  211. // Handle GZIP
  212. if h.r.Header.Get("Content-Encoding") == "gzip" {
  213. reqBody, err = gzip.NewReader(reqBody)
  214. if err != nil {
  215. log.Error("HTTP.Get: fail to create gzip reader: %v", err)
  216. h.w.WriteHeader(http.StatusInternalServerError)
  217. return
  218. }
  219. }
  220. var stderr bytes.Buffer
  221. cmd := exec.Command("git", service, "--stateless-rpc", h.dir)
  222. if service == "receive-pack" {
  223. cmd.Env = append(os.Environ(), db.ComposeHookEnvs(db.ComposeHookEnvsOptions{
  224. AuthUser: h.authUser,
  225. OwnerName: h.ownerName,
  226. OwnerSalt: h.ownerSalt,
  227. RepoID: h.repoID,
  228. RepoName: h.repoName,
  229. RepoPath: h.dir,
  230. })...)
  231. }
  232. cmd.Dir = h.dir
  233. cmd.Stdout = h.w
  234. cmd.Stderr = &stderr
  235. cmd.Stdin = reqBody
  236. if err = cmd.Run(); err != nil {
  237. log.Error("HTTP.serviceRPC: fail to serve RPC '%s': %v - %s", service, err, stderr.String())
  238. h.w.WriteHeader(http.StatusInternalServerError)
  239. return
  240. }
  241. }
  242. func serviceUploadPack(h serviceHandler) {
  243. serviceRPC(h, "upload-pack")
  244. }
  245. func serviceReceivePack(h serviceHandler) {
  246. serviceRPC(h, "receive-pack")
  247. }
  248. func getServiceType(r *http.Request) string {
  249. serviceType := r.FormValue("service")
  250. if !strings.HasPrefix(serviceType, "git-") {
  251. return ""
  252. }
  253. return strings.TrimPrefix(serviceType, "git-")
  254. }
  255. // FIXME: use process module
  256. func gitCommand(dir string, args ...string) []byte {
  257. cmd := exec.Command("git", args...)
  258. cmd.Dir = dir
  259. out, err := cmd.Output()
  260. if err != nil {
  261. log.Error(fmt.Sprintf("Git: %v - %s", err, out))
  262. }
  263. return out
  264. }
  265. func updateServerInfo(dir string) []byte {
  266. return gitCommand(dir, "update-server-info")
  267. }
  268. func packetWrite(str string) []byte {
  269. s := strconv.FormatInt(int64(len(str)+4), 16)
  270. if len(s)%4 != 0 {
  271. s = strings.Repeat("0", 4-len(s)%4) + s
  272. }
  273. return []byte(s + str)
  274. }
  275. func getInfoRefs(h serviceHandler) {
  276. h.setHeaderNoCache()
  277. service := getServiceType(h.r)
  278. if service != "upload-pack" && service != "receive-pack" {
  279. updateServerInfo(h.dir)
  280. h.sendFile("text/plain; charset=utf-8")
  281. return
  282. }
  283. refs := gitCommand(h.dir, service, "--stateless-rpc", "--advertise-refs", ".")
  284. h.w.Header().Set("Content-Type", fmt.Sprintf("application/x-git-%s-advertisement", service))
  285. h.w.WriteHeader(http.StatusOK)
  286. _, _ = h.w.Write(packetWrite("# service=git-" + service + "\n"))
  287. _, _ = h.w.Write([]byte("0000"))
  288. _, _ = h.w.Write(refs)
  289. }
  290. func getTextFile(h serviceHandler) {
  291. h.setHeaderNoCache()
  292. h.sendFile("text/plain")
  293. }
  294. func getInfoPacks(h serviceHandler) {
  295. h.setHeaderCacheForever()
  296. h.sendFile("text/plain; charset=utf-8")
  297. }
  298. func getLooseObject(h serviceHandler) {
  299. h.setHeaderCacheForever()
  300. h.sendFile("application/x-git-loose-object")
  301. }
  302. func getPackFile(h serviceHandler) {
  303. h.setHeaderCacheForever()
  304. h.sendFile("application/x-git-packed-objects")
  305. }
  306. func getIdxFile(h serviceHandler) {
  307. h.setHeaderCacheForever()
  308. h.sendFile("application/x-git-packed-objects-toc")
  309. }
  310. var routes = []struct {
  311. re *lazyregexp.Regexp
  312. method string
  313. handler func(serviceHandler)
  314. }{
  315. {lazyregexp.New("(.*?)/git-upload-pack$"), "POST", serviceUploadPack},
  316. {lazyregexp.New("(.*?)/git-receive-pack$"), "POST", serviceReceivePack},
  317. {lazyregexp.New("(.*?)/info/refs$"), "GET", getInfoRefs},
  318. {lazyregexp.New("(.*?)/HEAD$"), "GET", getTextFile},
  319. {lazyregexp.New("(.*?)/objects/info/alternates$"), "GET", getTextFile},
  320. {lazyregexp.New("(.*?)/objects/info/http-alternates$"), "GET", getTextFile},
  321. {lazyregexp.New("(.*?)/objects/info/packs$"), "GET", getInfoPacks},
  322. {lazyregexp.New("(.*?)/objects/info/[^/]*$"), "GET", getTextFile},
  323. {lazyregexp.New("(.*?)/objects/[0-9a-f]{2}/[0-9a-f]{38}$"), "GET", getLooseObject},
  324. {lazyregexp.New("(.*?)/objects/pack/pack-[0-9a-f]{40}\\.pack$"), "GET", getPackFile},
  325. {lazyregexp.New("(.*?)/objects/pack/pack-[0-9a-f]{40}\\.idx$"), "GET", getIdxFile},
  326. }
  327. func getGitRepoPath(dir string) (string, error) {
  328. if !strings.HasSuffix(dir, ".git") {
  329. dir += ".git"
  330. }
  331. filename := filepath.Join(conf.Repository.Root, dir)
  332. if _, err := os.Stat(filename); os.IsNotExist(err) {
  333. return "", err
  334. }
  335. return filename, nil
  336. }
  337. func HTTP(c *HTTPContext) {
  338. for _, route := range routes {
  339. reqPath := strings.ToLower(c.Req.URL.Path)
  340. m := route.re.FindStringSubmatch(reqPath)
  341. if m == nil {
  342. continue
  343. }
  344. // We perform check here because route matched in cmd/web.go is wider than needed,
  345. // but we only want to output this message only if user is really trying to access
  346. // Git HTTP endpoints.
  347. if conf.Repository.DisableHTTPGit {
  348. c.Error(http.StatusForbidden, "Interacting with repositories by HTTP protocol is disabled")
  349. return
  350. }
  351. if route.method != c.Req.Method {
  352. c.NotFound()
  353. return
  354. }
  355. file := strings.TrimPrefix(reqPath, m[1]+"/")
  356. dir, err := getGitRepoPath(m[1])
  357. if err != nil {
  358. log.Warn("HTTP.getGitRepoPath: %v", err)
  359. c.NotFound()
  360. return
  361. }
  362. route.handler(serviceHandler{
  363. w: c.Resp,
  364. r: c.Req.Request,
  365. dir: dir,
  366. file: file,
  367. authUser: c.AuthUser,
  368. ownerName: c.OwnerName,
  369. ownerSalt: c.OwnerSalt,
  370. repoID: c.RepoID,
  371. repoName: c.RepoName,
  372. })
  373. return
  374. }
  375. c.NotFound()
  376. }