debian-mirror-gitlab/doc/development/shell_commands.md

227 lines
8.2 KiB
Markdown
Raw Normal View History

2021-01-29 00:20:46 +05:30
---
stage: none
group: unassigned
2021-02-22 17:27:13 +05:30
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
2021-01-29 00:20:46 +05:30
---
2014-09-02 18:07:02 +05:30
# Guidelines for shell commands in the GitLab codebase
2015-04-26 12:48:37 +05:30
This document contains guidelines for working with processes and files in the GitLab codebase.
These guidelines are meant to make your code more reliable _and_ secure.
2014-09-02 18:07:02 +05:30
## References
2019-12-21 20:55:43 +05:30
- [Google Ruby Security Reviewer's Guide](https://code.google.com/archive/p/ruby-security/wikis/Guide.wiki)
2020-04-22 19:07:51 +05:30
- [OWASP Command Injection](https://wiki.owasp.org/index.php/Command_Injection)
2019-12-21 20:55:43 +05:30
- [Ruby on Rails Security Guide Command Line Injection](https://guides.rubyonrails.org/security.html#command-line-injection)
2014-09-02 18:07:02 +05:30
## Use File and FileUtils instead of shell commands
Sometimes we invoke basic Unix commands via the shell when there is also a Ruby API for doing it. Use the Ruby API if it exists. <http://www.ruby-doc.org/stdlib-2.0.0/libdoc/fileutils/rdoc/FileUtils.html#module-FileUtils-label-Module+Functions>
```ruby
# Wrong
system "mkdir -p tmp/special/directory"
# Better (separate tokens)
system *%W(mkdir -p tmp/special/directory)
# Best (do not use a shell command)
FileUtils.mkdir_p "tmp/special/directory"
# Wrong
contents = `cat #{filename}`
# Correct
contents = File.read(filename)
2015-04-26 12:48:37 +05:30
# Sometimes a shell command is just the best solution. The example below has no
# user input, and is hard to implement correctly in Ruby: delete all files and
# directories older than 120 minutes under /some/path, but not /some/path
# itself.
Gitlab::Popen.popen(%W(find /some/path -not -path /some/path -mmin +120 -delete))
2014-09-02 18:07:02 +05:30
```
This coding style could have prevented CVE-2013-4490.
2019-12-04 20:38:33 +05:30
## Always use the configurable Git binary path for Git commands
2015-11-26 14:37:03 +05:30
```ruby
# Wrong
system(*%W(git branch -d -- #{branch_name}))
# Correct
system(*%W(#{Gitlab.config.git.bin_path} branch -d -- #{branch_name}))
```
2014-09-02 18:07:02 +05:30
## Bypass the shell by splitting commands into separate tokens
2021-02-22 17:27:13 +05:30
When we pass shell commands as a single string to Ruby, Ruby lets `/bin/sh` evaluate the entire string. Essentially, we are asking the shell to evaluate a one-line script. This creates a risk for shell injection attacks. It is better to split the shell command into tokens ourselves. Sometimes we use the scripting capabilities of the shell to change the working directory or set environment variables. All of this can also be achieved securely straight from Ruby
2014-09-02 18:07:02 +05:30
```ruby
# Wrong
system "cd /home/git/gitlab && bundle exec rake db:#{something} RAILS_ENV=production"
# Correct
system({'RAILS_ENV' => 'production'}, *%W(bundle exec rake db:#{something}), chdir: '/home/git/gitlab')
# Wrong
system "touch #{myfile}"
# Better
system "touch", myfile
# Best (do not run a shell command at all)
FileUtils.touch myfile
```
This coding style could have prevented CVE-2013-4546.
## Separate options from arguments with --
Make the difference between options and arguments clear to the argument parsers of system commands with `--`. This is supported by many but not all Unix commands.
To understand what `--` does, consider the problem below.
2020-04-22 19:07:51 +05:30
```shell
2014-09-02 18:07:02 +05:30
# Example
$ echo hello > -l
$ cat -l
2020-04-22 19:07:51 +05:30
2014-09-02 18:07:02 +05:30
cat: illegal option -- l
usage: cat [-benstuv] [file ...]
```
In the example above, the argument parser of `cat` assumes that `-l` is an option. The solution in the example above is to make it clear to `cat` that `-l` is really an argument, not an option. Many Unix command line tools follow the convention of separating options from arguments with `--`.
2020-04-22 19:07:51 +05:30
```shell
2014-09-02 18:07:02 +05:30
# Example (continued)
$ cat -- -l
2020-04-22 19:07:51 +05:30
2014-09-02 18:07:02 +05:30
hello
```
2019-12-21 20:55:43 +05:30
In the GitLab codebase, we avoid the option/argument ambiguity by _always_ using `--` for commands that support it.
2014-09-02 18:07:02 +05:30
```ruby
# Wrong
2015-11-26 14:37:03 +05:30
system(*%W(#{Gitlab.config.git.bin_path} branch -d #{branch_name}))
2014-09-02 18:07:02 +05:30
# Correct
2015-11-26 14:37:03 +05:30
system(*%W(#{Gitlab.config.git.bin_path} branch -d -- #{branch_name}))
2014-09-02 18:07:02 +05:30
```
This coding style could have prevented CVE-2013-4582.
## Do not use the backticks
Capturing the output of shell commands with backticks reads nicely, but you are forced to pass the command as one string to the shell. We explained above that this is unsafe. In the main GitLab codebase, the solution is to use `Gitlab::Popen.popen` instead.
```ruby
# Wrong
2015-11-26 14:37:03 +05:30
logs = `cd #{repo_dir} && #{Gitlab.config.git.bin_path} log`
2014-09-02 18:07:02 +05:30
# Correct
2015-11-26 14:37:03 +05:30
logs, exit_status = Gitlab::Popen.popen(%W(#{Gitlab.config.git.bin_path} log), repo_dir)
2014-09-02 18:07:02 +05:30
# Wrong
user = `whoami`
# Correct
user, exit_status = Gitlab::Popen.popen(%W(whoami))
```
2019-12-04 20:38:33 +05:30
In other repositories, such as GitLab Shell you can also use `IO.popen`.
2014-09-02 18:07:02 +05:30
```ruby
# Safe IO.popen example
2015-11-26 14:37:03 +05:30
logs = IO.popen(%W(#{Gitlab.config.git.bin_path} log), chdir: repo_dir) { |p| p.read }
2014-09-02 18:07:02 +05:30
```
Note that unlike `Gitlab::Popen.popen`, `IO.popen` does not capture standard error.
2015-04-26 12:48:37 +05:30
## Avoid user input at the start of path strings
Various methods for opening and reading files in Ruby can be used to read the
2020-03-13 15:44:24 +05:30
standard output of a process instead of a file. The following two commands do
2015-04-26 12:48:37 +05:30
roughly the same:
2017-08-17 22:00:37 +05:30
```ruby
2015-04-26 12:48:37 +05:30
`touch /tmp/pawned-by-backticks`
File.read('|touch /tmp/pawned-by-file-read')
```
The key is to open a 'file' whose name starts with a `|`.
Affected methods include Kernel#open, File::read, File::open, IO::open and IO::read.
You can protect against this behavior of 'open' and 'read' by ensuring that an
2020-03-13 15:44:24 +05:30
attacker cannot control the start of the filename string you are opening. For
2015-04-26 12:48:37 +05:30
instance, the following is sufficient to protect against accidentally starting
a shell command with `|`:
2017-08-17 22:00:37 +05:30
```ruby
2015-04-26 12:48:37 +05:30
# we assume repo_path is not controlled by the attacker (user)
path = File.join(repo_path, user_input)
# path cannot start with '|' now.
File.read(path)
```
If you have to use user input a relative path, prefix `./` to the path.
Prefixing user-supplied paths also offers extra protection against paths
starting with `-` (see the discussion about using `--` above).
## Guard against path traversal
Path traversal is a security where the program (GitLab) tries to restrict user
access to a certain directory on disk, but the user manages to open a file
outside that directory by taking advantage of the `../` path notation.
2017-08-17 22:00:37 +05:30
```ruby
2015-04-26 12:48:37 +05:30
# Suppose the user gave us a path and they are trying to trick us
user_input = '../other-repo.git/other-file'
# We look up the repo path somewhere
repo_path = 'repositories/user-repo.git'
# The intention of the code below is to open a file under repo_path, but
2020-03-13 15:44:24 +05:30
# because the user used '..' they can 'break out' into
2015-04-26 12:48:37 +05:30
# 'repositories/other-repo.git'
full_path = File.join(repo_path, user_input)
File.open(full_path) do # Oops!
```
A good way to protect against this is to compare the full path with its
'absolute path' according to Ruby's `File.absolute_path`.
2017-08-17 22:00:37 +05:30
```ruby
2015-04-26 12:48:37 +05:30
full_path = File.join(repo_path, user_input)
if full_path != File.absolute_path(full_path)
raise "Invalid path: #{full_path.inspect}"
end
File.open(full_path) do # Etc.
```
A check like this could have avoided CVE-2013-4583.
2015-09-11 14:41:01 +05:30
## Properly anchor regular expressions to the start and end of strings
2019-07-07 11:18:12 +05:30
When using regular expressions to validate user input that is passed as an argument to a shell command, make sure to use the `\A` and `\z` anchors that designate the start and end of the string, rather than `^` and `$`, or no anchors at all.
2015-09-11 14:41:01 +05:30
If you don't, an attacker could use this to execute commands with potentially harmful effect.
2021-03-11 19:13:27 +05:30
For example, when a project's `import_url` is validated like below, the user could trick GitLab into cloning from a Git repository on the local file system.
2015-09-11 14:41:01 +05:30
```ruby
validates :import_url, format: { with: URI.regexp(%w(ssh git http https)) }
2019-07-07 11:18:12 +05:30
# URI.regexp(%w(ssh git http https)) roughly evaluates to /(ssh|git|http|https):(something_that_looks_like_a_url)/
2015-09-11 14:41:01 +05:30
```
Suppose the user submits the following as their import URL:
2020-04-22 19:07:51 +05:30
```plaintext
2015-09-11 14:41:01 +05:30
file://git:/tmp/lol
```
Since there are no anchors in the used regular expression, the `git:/tmp/lol` in the value would match, and the validation would pass.
When importing, GitLab would execute the following command, passing the `import_url` as an argument:
2020-03-13 15:44:24 +05:30
```shell
2015-09-11 14:41:01 +05:30
git clone file://git:/tmp/lol
```
2021-04-29 21:17:54 +05:30
Git ignores the `git:` part, interpret the path as `file:///tmp/lol`, and imports the repository into the new project. This action could potentially give the attacker access to any repository in the system, whether private or not.