2016-06-24 15:06:46 -04:00
|
|
|
require 'securerandom'
|
|
|
|
|
2012-05-26 06:37:49 -04:00
|
|
|
module Gitlab
|
2013-02-04 08:07:56 -05:00
|
|
|
class Shell
|
2017-07-03 14:28:29 -04:00
|
|
|
GITLAB_SHELL_ENV_VARS = %w(GIT_TERMINAL_PROMPT).freeze
|
|
|
|
|
2017-03-01 06:00:37 -05:00
|
|
|
Error = Class.new(StandardError)
|
2012-09-07 01:16:29 -04:00
|
|
|
|
2015-12-14 21:53:52 -05:00
|
|
|
KeyAdder = Struct.new(:io) do
|
2014-03-13 13:32:30 -04:00
|
|
|
def add_key(id, key)
|
2016-09-16 05:43:05 -04:00
|
|
|
key = Gitlab::Shell.strip_key(key)
|
|
|
|
# Newline and tab are part of the 'protocol' used to transmit id+key to the other end
|
|
|
|
if key.include?("\t") || key.include?("\n")
|
|
|
|
raise Error.new("Invalid key: #{key.inspect}")
|
|
|
|
end
|
|
|
|
|
2015-10-08 20:34:50 -04:00
|
|
|
io.puts("#{id}\t#{key}")
|
2014-03-13 13:32:30 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-11-05 11:14:22 -05:00
|
|
|
class << self
|
2016-09-29 12:46:54 -04:00
|
|
|
def secret_token
|
|
|
|
@secret_token ||= begin
|
|
|
|
File.read(Gitlab.config.gitlab_shell.secret_file).chomp
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def ensure_secret_token!
|
|
|
|
return if File.exist?(File.join(Gitlab.config.gitlab_shell.path, '.gitlab_shell_secret'))
|
|
|
|
|
|
|
|
generate_and_link_secret_token
|
|
|
|
end
|
|
|
|
|
2014-11-05 11:14:22 -05:00
|
|
|
def version_required
|
2017-06-21 09:48:12 -04:00
|
|
|
@version_required ||= File.read(Rails.root
|
|
|
|
.join('GITLAB_SHELL_VERSION')).strip
|
2014-11-05 11:14:22 -05:00
|
|
|
end
|
2016-09-16 05:43:05 -04:00
|
|
|
|
|
|
|
def strip_key(key)
|
2017-04-05 02:09:04 -04:00
|
|
|
key.split(/[ ]+/)[0, 2].join(' ')
|
2016-09-16 05:43:05 -04:00
|
|
|
end
|
2016-09-29 12:46:54 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
# Create (if necessary) and link the secret token file
|
|
|
|
def generate_and_link_secret_token
|
|
|
|
secret_file = Gitlab.config.gitlab_shell.secret_file
|
|
|
|
shell_path = Gitlab.config.gitlab_shell.path
|
|
|
|
|
|
|
|
unless File.size?(secret_file)
|
|
|
|
# Generate a new token of 16 random hexadecimal characters and store it in secret_file.
|
2016-10-13 04:04:58 -04:00
|
|
|
@secret_token = SecureRandom.hex(16)
|
|
|
|
File.write(secret_file, @secret_token)
|
2016-09-29 12:46:54 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
link_path = File.join(shell_path, '.gitlab_shell_secret')
|
|
|
|
if File.exist?(shell_path) && !File.exist?(link_path)
|
|
|
|
FileUtils.symlink(secret_file, link_path)
|
|
|
|
end
|
|
|
|
end
|
2014-11-05 11:14:22 -05:00
|
|
|
end
|
|
|
|
|
2013-02-04 08:07:56 -05:00
|
|
|
# Init new repository
|
2013-01-28 14:02:10 -05:00
|
|
|
#
|
2016-06-22 17:04:51 -04:00
|
|
|
# storage - project's storage path
|
2013-02-04 08:07:56 -05:00
|
|
|
# name - project path with namespace
|
2013-01-28 10:39:02 -05:00
|
|
|
#
|
|
|
|
# Ex.
|
2016-06-22 17:04:51 -04:00
|
|
|
# add_repository("/path/to/storage", "gitlab/gitlab-ci")
|
2013-01-28 10:39:02 -05:00
|
|
|
#
|
2016-06-22 17:04:51 -04:00
|
|
|
def add_repository(storage, name)
|
2017-07-03 14:28:29 -04:00
|
|
|
gitlab_shell_fast_execute([gitlab_shell_projects_path,
|
|
|
|
'add-project', storage, "#{name}.git"])
|
2012-11-21 00:54:05 -05:00
|
|
|
end
|
|
|
|
|
2013-02-11 12:41:02 -05:00
|
|
|
# Import repository
|
|
|
|
#
|
2016-06-22 17:04:51 -04:00
|
|
|
# storage - project's storage path
|
2013-02-11 12:41:02 -05:00
|
|
|
# name - project path with namespace
|
|
|
|
#
|
|
|
|
# Ex.
|
2016-06-22 17:04:51 -04:00
|
|
|
# import_repository("/path/to/storage", "gitlab/gitlab-ci", "https://github.com/randx/six.git")
|
2013-02-11 12:41:02 -05:00
|
|
|
#
|
2016-06-22 17:04:51 -04:00
|
|
|
def import_repository(storage, name, url)
|
2017-02-13 10:43:17 -05:00
|
|
|
# Timeout should be less than 900 ideally, to prevent the memory killer
|
|
|
|
# to silently kill the process without knowing we are timing out here.
|
2017-07-03 14:28:29 -04:00
|
|
|
cmd = [gitlab_shell_projects_path, 'import-project',
|
|
|
|
storage, "#{name}.git", url, "#{Gitlab.config.gitlab_shell.git_timeout}"]
|
|
|
|
gitlab_shell_fast_execute_raise_error(cmd)
|
2013-02-11 12:41:02 -05:00
|
|
|
end
|
|
|
|
|
2017-03-27 10:43:03 -04:00
|
|
|
# Fetch remote for repository
|
|
|
|
#
|
|
|
|
# name - project path with namespace
|
|
|
|
# remote - remote name
|
|
|
|
# forced - should we use --force flag?
|
2017-04-03 15:36:14 -04:00
|
|
|
# no_tags - should we use --no-tags flag?
|
2017-03-27 10:43:03 -04:00
|
|
|
#
|
|
|
|
# Ex.
|
|
|
|
# fetch_remote("gitlab/gitlab-ci", "upstream")
|
|
|
|
#
|
|
|
|
def fetch_remote(storage, name, remote, forced: false, no_tags: false)
|
2017-04-13 21:53:30 -04:00
|
|
|
args = [gitlab_shell_projects_path, 'fetch-remote', storage, "#{name}.git", remote, "#{Gitlab.config.gitlab_shell.git_timeout}"]
|
2017-03-27 10:43:03 -04:00
|
|
|
args << '--force' if forced
|
|
|
|
args << '--no-tags' if no_tags
|
|
|
|
|
2017-07-03 14:28:29 -04:00
|
|
|
gitlab_shell_fast_execute_raise_error(args)
|
2017-03-27 10:43:03 -04:00
|
|
|
end
|
|
|
|
|
2013-03-12 06:37:53 -04:00
|
|
|
# Move repository
|
2016-06-22 17:04:51 -04:00
|
|
|
# storage - project's storage path
|
2013-03-12 06:37:53 -04:00
|
|
|
# path - project path with namespace
|
|
|
|
# new_path - new project path with namespace
|
|
|
|
#
|
|
|
|
# Ex.
|
2016-06-22 17:04:51 -04:00
|
|
|
# mv_repository("/path/to/storage", "gitlab/gitlab-ci", "randx/gitlab-ci-new")
|
2013-03-12 06:37:53 -04:00
|
|
|
#
|
2016-06-22 17:04:51 -04:00
|
|
|
def mv_repository(storage, path, new_path)
|
2017-07-03 14:28:29 -04:00
|
|
|
gitlab_shell_fast_execute([gitlab_shell_projects_path, 'mv-project',
|
|
|
|
storage, "#{path}.git", "#{new_path}.git"])
|
2013-03-12 06:37:53 -04:00
|
|
|
end
|
|
|
|
|
2013-03-19 11:37:50 -04:00
|
|
|
# Fork repository to new namespace
|
2016-07-26 17:22:13 -04:00
|
|
|
# forked_from_storage - forked-from project's storage path
|
2013-03-19 11:37:50 -04:00
|
|
|
# path - project path with namespace
|
2016-07-26 17:22:13 -04:00
|
|
|
# forked_to_storage - forked-to project's storage path
|
2013-03-19 11:37:50 -04:00
|
|
|
# fork_namespace - namespace for forked project
|
|
|
|
#
|
|
|
|
# Ex.
|
2016-07-26 17:22:13 -04:00
|
|
|
# fork_repository("/path/to/forked_from/storage", "gitlab/gitlab-ci", "/path/to/forked_to/storage", "randx")
|
2013-03-19 11:37:50 -04:00
|
|
|
#
|
2016-07-26 17:22:13 -04:00
|
|
|
def fork_repository(forked_from_storage, path, forked_to_storage, fork_namespace)
|
2017-07-03 14:28:29 -04:00
|
|
|
gitlab_shell_fast_execute([gitlab_shell_projects_path, 'fork-project',
|
|
|
|
forked_from_storage, "#{path}.git", forked_to_storage,
|
|
|
|
fork_namespace])
|
2013-03-19 11:37:50 -04:00
|
|
|
end
|
|
|
|
|
2013-02-04 07:28:10 -05:00
|
|
|
# Remove repository from file system
|
2013-01-28 10:22:45 -05:00
|
|
|
#
|
2016-06-22 17:04:51 -04:00
|
|
|
# storage - project's storage path
|
2013-11-01 10:25:06 -04:00
|
|
|
# name - project path with namespace
|
2013-01-28 10:22:45 -05:00
|
|
|
#
|
|
|
|
# Ex.
|
2016-06-22 17:04:51 -04:00
|
|
|
# remove_repository("/path/to/storage", "gitlab/gitlab-ci")
|
2013-01-28 10:22:45 -05:00
|
|
|
#
|
2016-06-22 17:04:51 -04:00
|
|
|
def remove_repository(storage, name)
|
2017-07-03 14:28:29 -04:00
|
|
|
gitlab_shell_fast_execute([gitlab_shell_projects_path,
|
|
|
|
'rm-project', storage, "#{name}.git"])
|
2012-03-05 17:26:40 -05:00
|
|
|
end
|
|
|
|
|
2013-02-04 08:07:56 -05:00
|
|
|
# Add new key to gitlab-shell
|
2013-02-04 07:28:10 -05:00
|
|
|
#
|
2013-02-04 08:07:56 -05:00
|
|
|
# Ex.
|
2013-02-05 04:12:15 -05:00
|
|
|
# add_key("key-42", "sha-rsa ...")
|
2013-02-04 08:07:56 -05:00
|
|
|
#
|
2013-02-05 04:12:15 -05:00
|
|
|
def add_key(key_id, key_content)
|
2017-07-03 14:28:29 -04:00
|
|
|
gitlab_shell_fast_execute([gitlab_shell_keys_path,
|
|
|
|
'add-key', key_id, self.class.strip_key(key_content)])
|
2013-02-04 08:07:56 -05:00
|
|
|
end
|
|
|
|
|
2014-03-13 13:32:30 -04:00
|
|
|
# Batch-add keys to authorized_keys
|
|
|
|
#
|
|
|
|
# Ex.
|
|
|
|
# batch_add_keys { |adder| adder.add_key("key-42", "sha-rsa ...") }
|
|
|
|
def batch_add_keys(&block)
|
|
|
|
IO.popen(%W(#{gitlab_shell_path}/bin/gitlab-keys batch-add-keys), 'w') do |io|
|
2017-02-21 18:59:42 -05:00
|
|
|
yield(KeyAdder.new(io))
|
2014-03-13 13:32:30 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-04 08:07:56 -05:00
|
|
|
# Remove ssh key from gitlab shell
|
2013-01-28 10:39:02 -05:00
|
|
|
#
|
|
|
|
# Ex.
|
2013-02-05 04:12:15 -05:00
|
|
|
# remove_key("key-342", "sha-rsa ...")
|
2013-01-28 10:39:02 -05:00
|
|
|
#
|
2013-02-05 04:12:15 -05:00
|
|
|
def remove_key(key_id, key_content)
|
2017-07-03 14:28:29 -04:00
|
|
|
args = [gitlab_shell_keys_path, 'rm-key', key_id]
|
|
|
|
args << key_content if key_content
|
|
|
|
|
|
|
|
gitlab_shell_fast_execute(args)
|
2013-01-28 10:39:02 -05:00
|
|
|
end
|
|
|
|
|
2013-07-18 06:55:01 -04:00
|
|
|
# Remove all ssh keys from gitlab shell
|
|
|
|
#
|
|
|
|
# Ex.
|
2013-07-29 06:46:00 -04:00
|
|
|
# remove_all_keys
|
2013-07-18 06:55:01 -04:00
|
|
|
#
|
|
|
|
def remove_all_keys
|
2017-07-03 14:28:29 -04:00
|
|
|
gitlab_shell_fast_execute([gitlab_shell_keys_path, 'clear'])
|
2013-07-18 06:55:01 -04:00
|
|
|
end
|
|
|
|
|
2013-03-21 16:11:08 -04:00
|
|
|
# Add empty directory for storing repositories
|
|
|
|
#
|
|
|
|
# Ex.
|
2016-06-22 17:04:51 -04:00
|
|
|
# add_namespace("/path/to/storage", "gitlab")
|
2013-03-21 16:11:08 -04:00
|
|
|
#
|
2016-06-22 17:04:51 -04:00
|
|
|
def add_namespace(storage, name)
|
2017-03-27 16:22:01 -04:00
|
|
|
path = full_path(storage, name)
|
|
|
|
FileUtils.mkdir_p(path, mode: 0770) unless exists?(storage, name)
|
|
|
|
rescue Errno::EEXIST => e
|
|
|
|
Rails.logger.warn("Directory exists as a file: #{e} at: #{path}")
|
2013-03-21 16:11:08 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# Remove directory from repositories storage
|
|
|
|
# Every repository inside this directory will be removed too
|
|
|
|
#
|
|
|
|
# Ex.
|
2016-06-22 17:04:51 -04:00
|
|
|
# rm_namespace("/path/to/storage", "gitlab")
|
2013-03-21 16:11:08 -04:00
|
|
|
#
|
2016-06-22 17:04:51 -04:00
|
|
|
def rm_namespace(storage, name)
|
|
|
|
FileUtils.rm_r(full_path(storage, name), force: true)
|
2013-03-21 16:11:08 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# Move namespace directory inside repositories storage
|
|
|
|
#
|
|
|
|
# Ex.
|
2016-06-22 17:04:51 -04:00
|
|
|
# mv_namespace("/path/to/storage", "gitlab", "gitlabhq")
|
2013-03-21 16:11:08 -04:00
|
|
|
#
|
2016-06-22 17:04:51 -04:00
|
|
|
def mv_namespace(storage, old_name, new_name)
|
|
|
|
return false if exists?(storage, new_name) || !exists?(storage, old_name)
|
2013-03-21 16:11:08 -04:00
|
|
|
|
2016-06-22 17:04:51 -04:00
|
|
|
FileUtils.mv(full_path(storage, old_name), full_path(storage, new_name))
|
2013-03-21 16:11:08 -04:00
|
|
|
end
|
|
|
|
|
2014-09-25 18:07:40 -04:00
|
|
|
def url_to_repo(path)
|
2013-02-11 12:16:59 -05:00
|
|
|
Gitlab.config.gitlab_shell.ssh_path_prefix + "#{path}.git"
|
2012-08-28 17:04:06 -04:00
|
|
|
end
|
2013-03-12 06:37:53 -04:00
|
|
|
|
2013-11-20 06:41:41 -05:00
|
|
|
# Return GitLab shell version
|
|
|
|
def version
|
2013-12-09 12:32:37 -05:00
|
|
|
gitlab_shell_version_file = "#{gitlab_shell_path}/VERSION"
|
2013-11-20 06:41:41 -05:00
|
|
|
|
|
|
|
if File.readable?(gitlab_shell_version_file)
|
2015-04-06 08:02:49 -04:00
|
|
|
File.read(gitlab_shell_version_file).chomp
|
2013-11-20 06:41:41 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-06-03 05:50:08 -04:00
|
|
|
# Check if such directory exists in repositories.
|
|
|
|
#
|
|
|
|
# Usage:
|
2016-06-22 17:04:51 -04:00
|
|
|
# exists?(storage, 'gitlab')
|
|
|
|
# exists?(storage, 'gitlab/cookies.git')
|
2015-06-03 05:50:08 -04:00
|
|
|
#
|
2016-06-22 17:04:51 -04:00
|
|
|
def exists?(storage, dir_name)
|
|
|
|
File.exist?(full_path(storage, dir_name))
|
2015-06-03 05:50:08 -04:00
|
|
|
end
|
|
|
|
|
2013-03-21 16:11:08 -04:00
|
|
|
protected
|
|
|
|
|
2013-12-09 12:32:37 -05:00
|
|
|
def gitlab_shell_path
|
|
|
|
Gitlab.config.gitlab_shell.path
|
|
|
|
end
|
|
|
|
|
2013-02-14 18:10:18 -05:00
|
|
|
def gitlab_shell_user_home
|
|
|
|
File.expand_path("~#{Gitlab.config.gitlab_shell.ssh_user}")
|
|
|
|
end
|
|
|
|
|
2016-06-22 17:04:51 -04:00
|
|
|
def full_path(storage, dir_name)
|
2013-03-21 16:11:08 -04:00
|
|
|
raise ArgumentError.new("Directory name can't be blank") if dir_name.blank?
|
|
|
|
|
2016-06-22 17:04:51 -04:00
|
|
|
File.join(storage, dir_name)
|
2013-03-21 16:11:08 -04:00
|
|
|
end
|
|
|
|
|
2014-10-31 08:00:50 -04:00
|
|
|
def gitlab_shell_projects_path
|
|
|
|
File.join(gitlab_shell_path, 'bin', 'gitlab-projects')
|
|
|
|
end
|
|
|
|
|
|
|
|
def gitlab_shell_keys_path
|
|
|
|
File.join(gitlab_shell_path, 'bin', 'gitlab-keys')
|
|
|
|
end
|
2017-07-03 14:28:29 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def gitlab_shell_fast_execute(cmd)
|
|
|
|
output, status = gitlab_shell_fast_execute_helper(cmd)
|
|
|
|
|
|
|
|
return true if status.zero?
|
|
|
|
|
|
|
|
Rails.logger.error("gitlab-shell failed with error #{status}: #{output}")
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
|
|
|
def gitlab_shell_fast_execute_raise_error(cmd)
|
|
|
|
output, status = gitlab_shell_fast_execute_helper(cmd)
|
|
|
|
|
|
|
|
raise Error, output unless status.zero?
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
def gitlab_shell_fast_execute_helper(cmd)
|
|
|
|
vars = ENV.to_h.slice(*GITLAB_SHELL_ENV_VARS)
|
|
|
|
|
|
|
|
# Don't pass along the entire parent environment to prevent gitlab-shell
|
|
|
|
# from wasting I/O by searching through GEM_PATH
|
|
|
|
Bundler.with_original_env { Popen.popen(cmd, nil, vars) }
|
|
|
|
end
|
2011-12-03 18:44:59 -05:00
|
|
|
end
|
|
|
|
end
|