gitlab-org--gitlab-foss/lib/gitlab/workhorse.rb

178 lines
4.7 KiB
Ruby
Raw Normal View History

2016-02-01 10:33:22 +00:00
require 'base64'
require 'json'
require 'securerandom'
2016-02-01 10:33:22 +00:00
module Gitlab
class Workhorse
2017-02-21 23:32:18 +00:00
SEND_DATA_HEADER = 'Gitlab-Workhorse-Send-Data'.freeze
VERSION_FILE = 'GITLAB_WORKHORSE_VERSION'.freeze
INTERNAL_API_CONTENT_TYPE = 'application/vnd.gitlab-workhorse+json'.freeze
INTERNAL_API_REQUEST_HEADER = 'Gitlab-Workhorse-Api-Request'.freeze
NOTIFICATION_CHANNEL = 'workhorse:notifications'.freeze
# Supposedly the effective key size for HMAC-SHA256 is 256 bits, i.e. 32
# bytes https://tools.ietf.org/html/rfc4868#section-2.6
SECRET_LENGTH = 32
2016-02-02 13:09:55 +00:00
2016-02-11 17:10:14 +00:00
class << self
2016-04-06 15:52:12 +00:00
def git_http_ok(repository, user)
params = {
GL_ID: Gitlab::GlId.gl_id(user),
RepoPath: repository.path_to_repo,
2016-04-06 15:52:12 +00:00
}
params.merge!(
GitalySocketPath: Gitlab.config.gitaly.socket_path,
GitalyResourcePath: "/projects/#{repository.project.id}/git-http/info-refs",
) if Gitlab.config.gitaly.socket_path.present?
params
2016-04-06 15:52:12 +00:00
end
def lfs_upload_ok(oid, size)
{
StoreLFSPath: "#{Gitlab.config.lfs.storage_path}/tmp/upload",
LfsOid: oid,
LfsSize: size,
}
end
def artifact_upload_ok
{ TempPath: ArtifactUploader.artifacts_upload_path }
end
2016-02-01 10:33:22 +00:00
def send_git_blob(repository, blob)
2016-02-02 13:09:55 +00:00
params = {
2016-02-01 10:33:22 +00:00
'RepoPath' => repository.path_to_repo,
'BlobId' => blob.id,
}
[
2016-02-02 13:09:55 +00:00
SEND_DATA_HEADER,
2016-06-08 12:30:15 +00:00
"git-blob:#{encode(params)}"
2016-02-01 10:33:22 +00:00
]
end
2016-02-02 13:09:55 +00:00
def send_git_archive(repository, ref:, format:)
2016-02-02 13:09:55 +00:00
format ||= 'tar.gz'
format.downcase!
params = repository.archive_metadata(ref, Gitlab.config.gitlab.repository_downloads_path, format)
2016-02-02 13:09:55 +00:00
raise "Repository or ref not found" if params.empty?
[
SEND_DATA_HEADER,
2016-06-08 12:30:15 +00:00
"git-archive:#{encode(params)}"
2016-02-02 13:09:55 +00:00
]
end
2016-05-12 18:50:49 +00:00
2016-06-08 12:30:15 +00:00
def send_git_diff(repository, diff_refs)
2016-05-12 18:50:49 +00:00
params = {
2016-06-08 12:30:15 +00:00
'RepoPath' => repository.path_to_repo,
'ShaFrom' => diff_refs.base_sha,
'ShaTo' => diff_refs.head_sha
2016-05-12 18:50:49 +00:00
}
[
SEND_DATA_HEADER,
"git-diff:#{encode(params)}"
2016-02-02 13:09:55 +00:00
]
end
2016-07-03 21:01:13 +00:00
def send_git_patch(repository, diff_refs)
params = {
2016-06-28 12:59:25 +00:00
'RepoPath' => repository.path_to_repo,
'ShaFrom' => diff_refs.base_sha,
2016-07-03 21:01:13 +00:00
'ShaTo' => diff_refs.head_sha
}
[
2016-06-28 12:59:25 +00:00
SEND_DATA_HEADER,
"git-format-patch:#{encode(params)}"
]
end
def send_artifacts_entry(build, entry)
params = {
'Archive' => build.artifacts_file.path,
'Entry' => Base64.encode64(entry.path)
}
[
SEND_DATA_HEADER,
"artifacts-entry:#{encode(params)}"
]
end
def terminal_websocket(terminal)
details = {
'Terminal' => {
'Subprotocols' => terminal[:subprotocols],
'Url' => terminal[:url],
'Header' => terminal[:headers],
'MaxSessionTime' => terminal[:max_session_time],
}
}
details['Terminal']['CAPem'] = terminal[:ca_pem] if terminal.has_key?(:ca_pem)
details
end
def version
path = Rails.root.join(VERSION_FILE)
path.readable? ? path.read.chomp : 'unknown'
end
def secret
@secret ||= begin
bytes = Base64.strict_decode64(File.read(secret_path).chomp)
raise "#{secret_path} does not contain #{SECRET_LENGTH} bytes" if bytes.length != SECRET_LENGTH
bytes
end
end
def write_secret
bytes = SecureRandom.random_bytes(SECRET_LENGTH)
File.open(secret_path, 'w:BINARY', 0600) do |f|
2016-09-26 12:21:39 +00:00
f.chmod(0600) # If the file already existed, the '0600' passed to 'open' above was a no-op.
f.write(Base64.strict_encode64(bytes))
end
end
def verify_api_request!(request_headers)
2016-08-18 14:31:44 +00:00
decode_jwt(request_headers[INTERNAL_API_REQUEST_HEADER])
end
def decode_jwt(encoded_message)
JWT.decode(
2016-08-18 14:31:44 +00:00
encoded_message,
secret,
true,
{ iss: 'gitlab-workhorse', verify_iss: true, algorithm: 'HS256' },
)
end
def secret_path
Rails.root.join('.gitlab_workhorse_secret')
end
2017-03-06 10:44:45 +00:00
def set_key_and_notify(key, value, expire: nil, overwrite: true)
Gitlab::Redis.with do |redis|
result = redis.set(key, value, ex: expire, nx: !overwrite)
if result
2017-03-06 10:44:45 +00:00
redis.publish(NOTIFICATION_CHANNEL, "#{key}=#{value}")
value
else
redis.get(key)
end
end
end
2016-02-02 13:09:55 +00:00
protected
2016-02-02 13:09:55 +00:00
def encode(hash)
Base64.urlsafe_encode64(JSON.dump(hash))
end
2016-02-01 10:33:22 +00:00
end
end
2016-02-01 11:27:35 +00:00
end