git-interface: Factor out configuration file parsing
[aur.git] / doc / git-interface.txt
blob14ff0c5d9c009358a3b119a4237cc84cc35ecfa9
1 The aurweb Git and SSH interface
2 ================================
4 Git storage
5 -----------
7 Since release 4.0.0, aurweb uses Git repositories to store packages. Git
8 namespaces (see gitnamespaces(7)) are used to share the object database, such
9 that delta compression can be applied across package base boundaries.
11 Internally, all packages are stored in a single Git repository. Special refs,
12 so-called namespaced branches, are used to refer to the commits corresponding
13 to the actual package bases. For convenience, we also create a branch for each
14 package repository that carries the name of the corresponding package base,
15 such that one can easily access the history of a given package base by running
16 `git log <pkgbase>`. To the end-user, the individual namespaced branches are
17 presented as separate Git repositories.
19 Authentication: git-auth
20 ------------------------
22 Pushing to package repositories is possible via SSH. In order to access the SSH
23 interface, users first need to add an SSH public key to their account using the
24 web interface. Authentication is performed by the git-auth
25 AuthorizedKeysCommand script (see sshd_config(5) for details) which looks up
26 the public key in the AUR user table. Using this concept of "virtual users",
27 there is no need to create separate UNIX accounts for each registered AUR user.
29 If the public key is found, the corresponding authorized_keys line is printed
30 to stdout. If the public key does not exist, the login is denied. The
31 authorized_keys line also contains a forced command such that authenticated
32 users cannot access anything on the server except for the aurweb SSH interface.
33 The forced command can be configured in the aurweb configuration file and it
34 usually points to the git-serve program.
36 The INSTALL file in the top-level directory contains detailed instructions on
37 how to configure sshd(8) to use git-auth for authentication.
39 The Shell: git-serve
40 --------------------
42 The git-serve command, the "aurweb shell", provides different subcommands:
44 * The help command shows a list of available commands.
45 * The list-repos command lists all repositories of the authenticated user.
46 * The set-keywords command modifies the keywords assigned to a package base.
47 * The setup-repo command can be used to create a new repository.
48 * The restore command can be used to restore a deleted package base.
49 * The git-{receive,upload}-pack commands are redirected to git-shell(1).
51 The command is extracted from the SSH_ORIGINAL_COMMAND environment variable
52 which is usually set by the SSH daemon. If no command is specified, git-serve
53 displays a message stating that aurweb does not provide an interactive shell.
55 When invoking git-shell(1), the git-serve command also redirects all paths to
56 the shared Git repository and sets up the GIT_NAMESPACE environment variable
57 such that Git updates the correct namespaced branch.
59 The Update Hook: git-update
60 ---------------------------
62 The Git update hook, called git-update, performs several subtasks:
64 * Prevent from creating branches or tags other than master.
65 * Deny non-fast-forwards, except for Trusted Users and Developers.
66 * Verify each new commit (validate meta data, impose file size limits, ...)
67 * Update package base information and package information in the database.
68 * Update the named branch and the namespaced HEAD ref of the package.
70 It needs to be added to the shared Git repository, see INSTALL in the top-level
71 directory for further information.
73 Accessing Git repositories via HTTP
74 -----------------------------------
76 Git repositories can also be accessed via HTTP by configuring the web server to
77 forward specific requests to git-http-backend(1). Note that, since Git
78 namespaces are used internally, the web server needs to rewrite URIs and setup
79 the GIT_NAMESPACE environment variable accordingly before forwarding a request.
81 An example configuration for nginx and fcgiwrap can be found in the INSTALL
82 instructions in the top-level directory.
84 Further Configuration
85 ---------------------
87 When using Git namespaces, Git advertises refs outside the current namespace as
88 so-called "have" lines. This is normally used to reduce traffic but it has the
89 opposite effect in the case of aurweb: Most of the refs transferred to the
90 client during `git push` operations belong to branches of other package bases
91 and are essentially useless.
93 In order to omit these advertisements, one can add the strings "^refs/",
94 "!refs/" and "!HEAD" to the transfer.hideRefs configuration setting. Note that
95 the order of these patterns is important ("^refs/" must come first) and that
96 Git 2.7 or newer is required for them to work.