Module: Utils::Curl Private

Overview

This module is part of a private API. This module may only be used in the Homebrew/brew repository. Third parties should avoid using this module if possible, as it may be removed or changed without warning.

Helper function for interacting with curl.

Class Method Summary collapse

Methods included from SystemCommand::Mixin

system_command, system_command!

Methods included from Output::Mixin

issue_reporting_message, odebug, odeprecated, odie, odisabled, ofail, oh1, oh1_title, ohai, ohai_title, onoe, opoo, opoo_outside_github_actions, opoo_without_github_actions_annotation, pretty_deprecated, pretty_disabled, pretty_duration, pretty_install_status, pretty_installed, pretty_uninstalled, pretty_unmarked, pretty_upgradable, pretty_warning

Class Method Details

.clear_path_cachevoid

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

This method returns an undefined value.



94
95
96
# File 'utils/curl.rb', line 94

def clear_path_cache
  @curl_path = nil
end

.curl(*args, print_stdout: true, **options) ⇒ SystemCommand::Result

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:

  • args (String)
  • print_stdout (Boolean, Symbol) (defaults to: true)
  • options (T.untyped)

Returns:



297
298
299
300
301
# File 'utils/curl.rb', line 297

def curl(*args, print_stdout: true, **options)
  result = curl_with_workarounds(*args, print_stdout:, **options)
  result.assert_success!
  result
end

.curl_args(*extra_args, connect_timeout: nil, max_time: nil, retries: Homebrew::EnvConfig.curl_retries.to_i, retry_max_time: nil, show_output: false, show_error: true, cookies: nil, header: nil, referer: nil, user_agent: nil) ⇒ Array<String>

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:

  • extra_args (String)
  • connect_timeout (Integer, Float, nil) (defaults to: nil)
  • max_time (Integer, Float, nil) (defaults to: nil)
  • retries (Integer, nil) (defaults to: Homebrew::EnvConfig.curl_retries.to_i)
  • retry_max_time (Integer, Float, nil) (defaults to: nil)
  • show_output (Boolean, nil) (defaults to: false)
  • show_error (Boolean, nil) (defaults to: true)
  • cookies (Hash{String => String}, nil) (defaults to: nil)
  • header (String, Array<String>, nil) (defaults to: nil)
  • referer (String, nil) (defaults to: nil)
  • user_agent (String, Symbol, nil) (defaults to: nil)

Returns:



113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
# File 'utils/curl.rb', line 113

def curl_args(
  *extra_args,
  connect_timeout: nil,
  max_time: nil,
  retries: Homebrew::EnvConfig.curl_retries.to_i,
  retry_max_time: nil,
  show_output: false,
  show_error: true,
  cookies: nil,
  header: nil,
  referer: nil,
  user_agent: nil
)
  args = []

  # do not load .curlrc unless requested (must be the first argument)
  curlrc = Homebrew::EnvConfig.curlrc
  if curlrc&.start_with?("/")
    # If the file exists, we still want to disable loading the default curlrc.
    args << "--disable" << "--config" << curlrc
  elsif curlrc
    # This matches legacy behavior: `HOMEBREW_CURLRC` was a bool,
    # omitting `--disable` when present.
  else
    args << "--disable"
  end

  args << "--cookie" << if cookies
    cookies.map { |k, v| "#{k}=#{v}" }.join(";")
  else
    # Echo any cookies received on a redirect
    File::NULL
  end

  args << "--globoff"

  args << "--show-error" if show_error

  if user_agent != :curl
    args << "--user-agent" << case user_agent
    when :browser, :fake
      HOMEBREW_USER_AGENT_FAKE_SAFARI
    when :default, nil
      HOMEBREW_USER_AGENT_CURL
    when String
      user_agent
    else
      raise TypeError, ":user_agent must be :browser/:fake, :default, :curl, or a String"
    end
  end

  args << "--header" << "Accept-Language: en"
  case header
  when String
    args << "--header" << header
  when Array
    header.each { |h| args << "--header" << h.strip }
  end

  if show_output != true
    args << "--fail"
    args << "--progress-bar" unless Context.current.verbose?
    args << "--verbose" if Homebrew::EnvConfig.curl_verbose?
    args << "--silent" if !$stdout.tty? || Context.current.quiet?
  end

  args << "--connect-timeout" << connect_timeout.round(3) if connect_timeout.present?
  args << "--max-time" << max_time.round(3) if max_time.present?

  # A non-positive integer (e.g. 0) or `nil` will omit this argument
  args << "--retry" << retries if retries&.positive?

  args << "--retry-max-time" << retry_max_time.round if retry_max_time.present?

  args << "--referer" << referer if referer.present?

  (args + extra_args).map(&:to_s)
end

.curl_check_http_content(url, url_type, specs: {}, user_agents: [:default], referer: nil, check_content: false, strict: false, use_homebrew_curl: false) ⇒ String?

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:

  • url (String)
  • url_type (String)
  • specs (Hash{Symbol => String}) (defaults to: {})
  • user_agents (Array<String, Symbol>) (defaults to: [:default])
  • referer (String, nil) (defaults to: nil)
  • check_content (Boolean) (defaults to: false)
  • strict (Boolean) (defaults to: false)
  • use_homebrew_curl (Boolean) (defaults to: false)

Returns:



444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
# File 'utils/curl.rb', line 444

def curl_check_http_content(url, url_type, specs: {}, user_agents: [:default], referer: nil,
                            check_content: false, strict: false, use_homebrew_curl: false)
  return unless url.start_with? "http"

  secure_url = url.sub(/\Ahttp:/, "https:")
  secure_details = T.let(nil, T.nilable(T::Hash[Symbol, T.untyped]))
  hash_needed = T.let(false, T::Boolean)
  if url != secure_url
    user_agents.each do |user_agent|
      secure_details = begin
        curl_http_content_headers_and_checksum(
          secure_url,
          specs:,
          hash_needed:       true,
          use_homebrew_curl:,
          user_agent:,
          referer:,
        )
      rescue Timeout::Error
        next
      end

      next unless http_status_ok?(secure_details[:status_code])

      hash_needed = true
      user_agents = [user_agent]
      break
    end
  end

  details = T.let({}, T::Hash[Symbol, T.untyped])
  attempts = 0
  # The body is only read to compare an HTTP URL with its HTTPS counterpart.
  head_only = T.let(url == secure_url, T::Boolean)
  user_agents.each do |user_agent|
    loop do
      details = curl_http_content_headers_and_checksum(
        url,
        specs:,
        hash_needed:,
        head_only:,
        use_homebrew_curl:,
        user_agent:,
        referer:,
      )

      # Some servers reject `HEAD` but serve `GET`.
      # DNS and connection failures happen before the request is sent.
      head_rejected = if (status_code = details[:status_code])
        !http_status_ok?(status_code)
      else
        CURL_REQUEST_SENT_EXIT_CODES.include?(details[:exit_status])
      end

      if head_only && head_rejected
        head_only = false
        next
      end

      # Retry on network issues
      break if details[:exit_status] != 52 && details[:exit_status] != 56

      attempts += 1
      break if attempts >= Homebrew::EnvConfig.curl_retries.to_i
    end

    break if http_status_ok?(details[:status_code])
  end

  return "The #{url_type} #{url} is not reachable" unless details[:status_code]

  unless http_status_ok?(details[:status_code])
    return if details[:responses].any? do |response|
      url_protected_by_cloudflare?(response) || url_protected_by_incapsula?(response)
    end

    # TODO: `utils/shared_audits` requires this file in turn.
    require "utils/shared_audits"

    # https://github.com/Homebrew/brew/issues/13789
    # If the `:homepage` of a formula is private, it will fail an `audit`
    # since there's no way to specify a `strategy` with `using:` and
    # GitHub does not authorize access to the web UI using token
    #
    # Strategy:
    # If the `:homepage` 404s, it's a GitHub link and we have a token then
    # check the API (which does use tokens) for the repository
    repo_details = url.match(%r{https?://github\.com/(?<user>[^/]+)/(?<repo>[^/]+)/?.*})
    check_github_api = url_type == SharedAudits::URL_TYPE_HOMEPAGE &&
                       details[:status_code] == "404" &&
                       repo_details &&
                       Homebrew::EnvConfig.github_api_token.present?

    unless check_github_api
      return "The #{url_type} #{url} is not reachable (HTTP status code #{details[:status_code]})"
    end

    if SharedAudits.github_repo_data(T.must(repo_details[:user]), T.must(repo_details[:repo])).nil?
      "Unable to find homepage"
    end
  end

  if details[:final_url].present? && insecure_redirect?(url:, resolved_url: details[:final_url])
    return "The #{url_type} #{url} redirects back to HTTP"
  end

  return unless secure_details

  return if !http_status_ok?(details[:status_code]) || !http_status_ok?(secure_details[:status_code])

  etag_match = details[:etag] &&
               details[:etag] == secure_details[:etag]
  content_length_match =
    details[:content_length] &&
    details[:content_length] == secure_details[:content_length]
  file_match = details[:file_hash] == secure_details[:file_hash]

  http_with_https_available =
    url.start_with?("http://") &&
    secure_details[:final_url].present? && secure_details[:final_url].start_with?("https://")

  if (etag_match || content_length_match || file_match) && http_with_https_available
    return "The #{url_type} #{url} should use HTTPS rather than HTTP"
  end

  return unless check_content

  no_protocol_file_contents = %r{https?:\\?/\\?/}
  http_content = details[:file]&.scrub&.gsub(no_protocol_file_contents, "/")
  https_content = secure_details[:file]&.scrub&.gsub(no_protocol_file_contents, "/")

  # Check for the same content after removing all protocols
  if http_content && https_content && (http_content == https_content) && http_with_https_available
    return "The #{url_type} #{url} should use HTTPS rather than HTTP"
  end

  return unless strict

  # Same size, different content after normalization
  # (typical causes: Generated ID, Timestamp, Unix time)
  if http_content.length == https_content.length
    return "The #{url_type} #{url} may be able to use HTTPS rather than HTTP. Please verify it in a browser."
  end

  lenratio = (https_content.length * 100 / http_content.length).to_i
  return unless (90..110).cover?(lenratio)

  "The #{url_type} #{url} may be able to use HTTPS rather than HTTP. Please verify it in a browser."
end

.curl_download(*args, to:, try_partial: false, **options) ⇒ SystemCommand::Result?

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:

Returns:



311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
# File 'utils/curl.rb', line 311

def curl_download(*args, to:, try_partial: false, **options)
  destination = Pathname(to)
  destination.dirname.mkpath

  args = ["--location", *args]

  if try_partial && destination.exist?
    headers = begin
      parsed_output = curl_headers(*args, **options, wanted_headers: ["accept-ranges"])
      parsed_output.fetch(:responses).last&.fetch(:headers) || {}
    rescue ErrorDuringExecution
      # Ignore errors here and let actual download fail instead.
      {}
    end

    # Any value for `Accept-Ranges` other than `none` indicates that the server
    # supports partial requests. Its absence indicates no support.
    supports_partial = headers.fetch("accept-ranges", "none") != "none"
    content_length = headers["content-length"]&.to_i

    if supports_partial
      # We've already downloaded all bytes.
      return if destination.size == content_length

      args = ["--continue-at", "-", *args]
    end
  end

  args = ["--remote-time", "--output", destination.to_s, *args]

  curl(*args, **options)
end

.curl_executable(use_homebrew_curl: false) ⇒ Pathname, String

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:

  • use_homebrew_curl (Boolean) (defaults to: false)

Returns:



77
78
79
80
81
# File 'utils/curl.rb', line 77

def curl_executable(use_homebrew_curl: false)
  return HOMEBREW_BREWED_CURL_PATH if use_homebrew_curl

  @curl_executable ||= T.let(HOMEBREW_SHIMS_PATH/"shared/curl", T.nilable(T.any(Pathname, String)))
end

.curl_headers(*args, wanted_headers: [], **options) ⇒ Hash{Symbol => T.untyped}

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:

Returns:



362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
# File 'utils/curl.rb', line 362

def curl_headers(*args, wanted_headers: [], **options)
  base_args = ["--fail", "--location", "--silent"]
  get_retry_args = []
  if (is_post_request = args.include?("POST"))
    base_args << "--dump-header" << "-"
  else
    base_args << "--head"
    get_retry_args << "--request" << "GET"
  end

  # This is a workaround for https://github.com/Homebrew/brew/issues/18213
  get_retry_args << "--http1.1" if curl_version >= Version.new("8.7") && curl_version < Version.new("8.10")

  [[], get_retry_args].each do |request_args|
    result = curl_output(*base_args, *request_args, *args, **options)

    # We still receive usable headers with certain non-successful exit
    # statuses, so we special case them below.
    if result.success? || [
      CURL_WEIRD_SERVER_REPLY_EXIT_CODE,
      CURL_HTTP_RETURNED_ERROR_EXIT_CODE,
      CURL_RECV_ERROR_EXIT_CODE,
    ].include?(result.exit_status)
      parsed_output = parse_curl_output(result.stdout)
      return parsed_output if is_post_request

      if request_args.empty?
        # If we didn't get any wanted header yet, retry using `GET`.
        next if wanted_headers.any? &&
                parsed_output.fetch(:responses).none? { |r| r.fetch(:headers).keys.intersect?(wanted_headers) }

        # Some CDNs respond with 400 codes for `HEAD` but resolve with `GET`.
        next if (400..499).cover?(parsed_output.fetch(:responses).last&.fetch(:status_code).to_i)
      end

      return parsed_output if result.success? ||
                              result.exit_status == CURL_WEIRD_SERVER_REPLY_EXIT_CODE
    end

    result.assert_success!
  end

  {}
end

.curl_http_content_headers_and_checksum(url, specs: {}, hash_needed: false, head_only: false, use_homebrew_curl: false, user_agent: :default, referer: nil) ⇒ Hash{Symbol => T.untyped}

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:

  • url (String)
  • specs (Hash{Symbol => String}) (defaults to: {})
  • hash_needed (Boolean) (defaults to: false)
  • head_only (Boolean) (defaults to: false)
  • use_homebrew_curl (Boolean) (defaults to: false)
  • user_agent (String, Symbol) (defaults to: :default)
  • referer (String, nil) (defaults to: nil)

Returns:



605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
# File 'utils/curl.rb', line 605

def curl_http_content_headers_and_checksum(
  url, specs: {}, hash_needed: false, head_only: false,
  use_homebrew_curl: false, user_agent: :default, referer: nil
)
  file = Tempfile.new.tap(&:close)

  # Convert specs to options. This is mostly key-value options,
  # unless the value is a boolean in which case treat as a flag.
  specs = specs.flat_map do |option, argument|
    next [] if argument == false # No flag.

    args = ["--#{option.to_s.tr("_", "-")}"]
    args << argument if argument != true # It's a flag.
    args
  end

  max_time = hash_needed ? 600 : 25
  # `--head` prints the headers itself, so `--dump-header` would duplicate them.
  output_args = if head_only
    ["--head"]
  else
    ["--dump-header", "-", "--output", file.path]
  end
  output, _, status = curl_output(
    *specs, *output_args, "--location", url,
    use_homebrew_curl:,
    connect_timeout:   15,
    max_time:,
    retry_max_time:    max_time,
    user_agent:,
    referer:
  )

  parsed_output = parse_curl_output(output)
  responses = parsed_output[:responses]

  final_url = curl_response_last_location(responses)
  headers = if responses.last.present?
    status_code = responses.last[:status_code]
    responses.last[:headers]
  else
    {}
  end
  etag = headers["etag"][ETAG_VALUE_REGEX, 1] if headers["etag"].present?
  content_length = headers["content-length"]

  if !head_only && status.success? && (file_path = file.path)
    file_hash = Digest::SHA256.file(file_path).hexdigest if hash_needed

    # Only load file contents for text-based content comparison on small files.
    # Large binary files don't benefit from content comparison.
    max_read_size = 100 * 1024 * 1024
    if File.size(file_path) <= max_read_size
      open_args = {}
      content_type = headers["content-type"]

      # Use the last `Content-Type` header if there is more than one instance
      # in the response
      content_type = content_type.last if content_type.is_a?(Array)

      # Try to get encoding from Content-Type header
      # TODO: add guessing encoding by <meta http-equiv="Content-Type" ...> tag
      if content_type &&
         (match = content_type.match(/;\s*charset\s*=\s*([^\s]+)/)) &&
         (charset = match[1])
        begin
          open_args[:encoding] = Encoding.find(charset)
        rescue ArgumentError
          # Unknown charset in Content-Type header
        end
      end

      file_contents = File.read(file_path, **open_args)
    end
  end

  {
    url:,
    final_url:,
    exit_status:    status.exitstatus,
    status_code:,
    headers:,
    etag:,
    content_length:,
    file:           file_contents,
    file_hash:,
    responses:,
  }
ensure
  T.must(file).unlink
end

.curl_output(*args, **options) ⇒ SystemCommand::Result

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:

  • args (String)
  • options (T.untyped)

Returns:



351
352
353
# File 'utils/curl.rb', line 351

def curl_output(*args, **options)
  curl_with_workarounds(*args, print_stderr: false, show_output: true, **options)
end

.curl_pathString

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns:



84
85
86
87
88
89
90
91
# File 'utils/curl.rb', line 84

def curl_path
  @curl_path ||= T.let(
    Utils.popen_read(curl_executable, "--homebrew=print-path").chomp,
    T.nilable(String),
  )
  odie("Failed to get curl path") if @curl_path.blank?
  @curl_path
end

.curl_response_follow_redirections(responses, base_url) ⇒ String

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns the final URL by following location headers in cURL responses.

Parameters:

  • responses (Array<Hash{Symbol => T.untyped}>)

    An array of hashes containing response status information and headers from #parse_curl_response.

  • base_url (String)

    The URL to use as a base.

Returns:

  • (String)

    The final absolute URL after redirections.



807
808
809
810
811
812
813
814
815
816
817
818
# File 'utils/curl.rb', line 807

def curl_response_follow_redirections(responses, base_url)
  responses.each do |response|
    next if response[:headers].blank?

    location = response[:headers]["location"]
    next if location.blank?

    base_url = URI.join(base_url, location).to_s
  end

  base_url
end

.curl_response_last_location(responses, absolutize: false, base_url: nil) ⇒ String?

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns the URL from the last location header found in cURL responses, if any.

Parameters:

  • responses (Array<Hash{Symbol => T.untyped}>)

    An array of hashes containing response status information and headers from #parse_curl_response.

  • absolutize (Boolean) (defaults to: false)

    Whether to make the location URL absolute.

  • base_url (String, nil) (defaults to: nil)

    The URL to use as a base for making the location URL absolute.

Returns:

  • (String, nil)

    The URL from the last-occurring location header in the responses or nil (if no location headers found).



782
783
784
785
786
787
788
789
790
791
792
793
794
# File 'utils/curl.rb', line 782

def curl_response_last_location(responses, absolutize: false, base_url: nil)
  responses.reverse_each do |response|
    next if response[:headers].blank?

    location = response[:headers]["location"]
    next if location.blank?

    absolute_url = URI.join(base_url, location).to_s if absolutize && base_url.present?
    return absolute_url || location
  end

  nil
end

.curl_supports_fail_with_body?Boolean

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns:

  • (Boolean)


710
711
712
713
714
715
# File 'utils/curl.rb', line 710

def curl_supports_fail_with_body?
  @curl_supports_fail_with_body ||= T.let(Hash.new do |h, key|
    h[key] = curl_version >= Version.new("7.76.0")
  end, T.nilable(T::Hash[T.any(Pathname, String), T::Boolean]))
  @curl_supports_fail_with_body[curl_path]
end

.curl_supports_tls13?Boolean

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns:

  • (Boolean)


718
719
720
721
722
723
# File 'utils/curl.rb', line 718

def curl_supports_tls13?
  @curl_supports_tls13 ||= T.let(Hash.new do |h, key|
    h[key] = quiet_system(curl_executable, "--tlsv1.3", "--head", "https://brew.sh/")
  end, T.nilable(T::Hash[T.any(Pathname, String), T::Boolean]))
  @curl_supports_tls13[curl_path]
end

.curl_versionVersion

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns:



698
699
700
701
702
703
704
705
706
707
# File 'utils/curl.rb', line 698

def curl_version
  @curl_version ||= T.let({}, T.nilable(T::Hash[String, Version]))
  curl_v_stdout = curl_output("-V").stdout
  version = curl_v_stdout[/curl (\d+(?:\.\d+)+)/, 1]
  if version
    @curl_version[curl_path] ||= Version.new(version)
  else
    odie("Failed to parse curl version from #{curl_v_stdout}")
  end
end

.curl_with_workarounds(*args, secrets: [], print_stdout: false, print_stderr: false, debug: nil, verbose: nil, env: {}, timeout: nil, use_homebrew_curl: false, **options) ⇒ SystemCommand::Result

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:

  • args (String)
  • secrets (String, Array<String>) (defaults to: [])
  • print_stdout (Boolean, Symbol) (defaults to: false)
  • print_stderr (Boolean, Symbol) (defaults to: false)
  • debug (Boolean, nil) (defaults to: nil)
  • verbose (Boolean, nil) (defaults to: nil)
  • env (Hash{String => String}) (defaults to: {})
  • timeout (Integer, Float, nil) (defaults to: nil)
  • use_homebrew_curl (Boolean) (defaults to: false)
  • options (T.untyped)

Returns:

Raises:

  • (Timeout::Error)


239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
# File 'utils/curl.rb', line 239

def curl_with_workarounds(
  *args,
  secrets: [], print_stdout: false, print_stderr: false, debug: nil,
  verbose: nil, env: {}, timeout: nil, use_homebrew_curl: false, **options
)
  args = no_insecure_redirect_curl_args(args)
  end_time = Time.now + timeout if timeout

  command_options = {
    secrets:,
    print_stdout:,
    print_stderr:,
    debug:,
    verbose:,
  }.compact

  result = system_command curl_executable(use_homebrew_curl:),
                          args:    curl_args(*args, **options),
                          env:,
                          timeout: Utils::Timer.remaining(end_time),
                          **command_options

  return result if result.success? || args.include?("--http1.1")

  raise Timeout::Error, result.stderr.lines.fetch(-1).chomp if timeout && result.status.exitstatus == 28

  # Error in the HTTP2 framing layer
  if result.exit_status == 16
    return curl_with_workarounds(
      *args, "--http1.1",
      timeout: Utils::Timer.remaining(end_time), **command_options, **options
    )
  end

  # This is a workaround for https://github.com/curl/curl/issues/1618.
  if result.exit_status == 56 # Unexpected EOF
    out = curl_output("-V").stdout

    # If `curl` doesn't support HTTP2, the exception is unrelated to this bug.
    return result unless out.include?("HTTP2")

    # The bug is fixed in `curl` >= 7.60.0.
    curl_version = out[/curl (\d+(\.\d+)+)/, 1]
    return result if Gem::Version.new(curl_version) >= Gem::Version.new("7.60.0")

    return curl_with_workarounds(*args, "--http1.1", **command_options, **options)
  end

  result
end

.http_status_ok?(status) ⇒ Boolean

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:

Returns:

  • (Boolean)


726
727
728
729
730
# File 'utils/curl.rb', line 726

def http_status_ok?(status)
  return false if status.nil?

  (100..299).cover?(status.to_i)
end

.https_redirect_curl_argsArray<String>

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns:



199
200
201
# File 'utils/curl.rb', line 199

def https_redirect_curl_args
  HTTPS_REDIRECT_CURL_ARGS
end

.insecure_redirect?(url:, resolved_url:) ⇒ Boolean

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:

Returns:

  • (Boolean)


193
194
195
196
# File 'utils/curl.rb', line 193

def insecure_redirect?(url:, resolved_url:)
  Homebrew::EnvConfig.no_insecure_redirect? &&
    url.start_with?("https://") && !resolved_url.start_with?("https://")
end

.no_insecure_redirect_curl_args(args) ⇒ Array<String>

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:

Returns:



204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
# File 'utils/curl.rb', line 204

def no_insecure_redirect_curl_args(args)
  return args unless Homebrew::EnvConfig.no_insecure_redirect?

  # `--proto-redir =https` tells `curl --location` to reject any redirect
  # target that is not HTTPS. Drop caller-provided values first so they
  # cannot relax the HTTPS-only redirect policy.
  args = args.each_with_index.filter_map do |arg, i|
    next if arg == "--proto-redir"
    next if i.positive? && args.fetch(i - 1) == "--proto-redir"
    next if arg.start_with?("--proto-redir=")

    arg
  end
  return args unless args.include?("--location")

  # This blocks an HTTPS request from following a redirect to HTTP at the
  # curl layer, including cases where a preflight request saw a different
  # redirect chain than the real download.
  [*https_redirect_curl_args, *args]
end

.parse_curl_output(output, max_iterations: 25) ⇒ Hash{Symbol => T.untyped}

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Separates the output text from curl into an array of HTTP responses and the final response body (i.e. content). Response hashes contain the :status_code, :status_text and :headers.

Parameters:

  • output (String)

    The output text from curl containing HTTP responses, body content, or both.

  • max_iterations (Integer) (defaults to: 25)

    The maximum number of iterations for the while loop that parses HTTP response text. This should correspond to the maximum number of requests in the output. If curl's --max-redirs option is used, max_iterations should be max-redirs + 1, to account for any final response after the redirections.

Returns:

  • (Hash{Symbol => T.untyped})

    A hash containing an array of response hashes and the body content, if found.



745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
# File 'utils/curl.rb', line 745

def parse_curl_output(output, max_iterations: 25)
  responses = []

  iterations = 0
  output = output.lstrip
  while output.match?(%r{\AHTTP/[\d.]+ \d+}) && output.include?(HTTP_RESPONSE_BODY_SEPARATOR)
    iterations += 1
    raise "Too many redirects (max = #{max_iterations})" if iterations > max_iterations

    response_text, _, output = output.partition(HTTP_RESPONSE_BODY_SEPARATOR)
    output = output.lstrip
    next if response_text.blank?

    response_text.chomp!
    response = parse_curl_response(response_text)
    responses << response if response.present?
  end

  { responses:, body: output }
end

.parse_curl_response(response_text) ⇒ Hash{Symbol => T.untyped}

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parses HTTP response text from curl output into a hash containing the information from the status line (status code and, optionally, descriptive text) and headers.

Parameters:

  • response_text (String)

    The text of a curl response, consisting of a status line followed by header lines.

Returns:

  • (Hash{Symbol => T.untyped})

    A hash containing the response status information and headers (as a hash with header names as keys).



830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
# File 'utils/curl.rb', line 830

def parse_curl_response(response_text)
  response = {}
  return response unless (match = response_text.match(HTTP_STATUS_LINE_REGEX))

  # Parse the status line and remove it
  response[:status_code] = match["code"]
  response[:status_text] = match["text"] if match["text"].present?
  response_text = response_text.sub(%r{^HTTP/.* (\d+).*$\s*}, "")

  # Create a hash from the header lines
  response[:headers] = {}
  response_text.split("\r\n").each do |line|
    header_name, header_value = line.split(/:\s*/, 2)
    next if header_name.blank? || header_value.nil?

    header_name = header_name.strip.downcase
    header_value.strip!

    case response[:headers][header_name]
    when String
      response[:headers][header_name] = [response[:headers][header_name], header_value]
    when Array
      response[:headers][header_name].push(header_value)
    else
      response[:headers][header_name] = header_value
    end

    response[:headers][header_name]
  end

  response
end

.strip_progress_bar(string) ⇒ String

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Run after Tty.collapse_carriage_returns; a bar-only line becomes empty.

Parameters:

Returns:



346
347
348
# File 'utils/curl.rb', line 346

def strip_progress_bar(string)
  string.split("\n", -1).map { |line| line.sub(PROGRESS_BAR_REGEX, "") }.join("\n")
end

.url_protected_by_cloudflare?(response) ⇒ Boolean

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Check if a URL is protected by CloudFlare (e.g. badlion.net and jaxx.io).

Parameters:

  • response (Hash{Symbol => T.untyped})

    A response hash from #parse_curl_response.

Returns:

  • (Boolean)

    Whether a response contains headers indicating that the URL is protected by Cloudflare.



412
413
414
415
416
417
# File 'utils/curl.rb', line 412

def url_protected_by_cloudflare?(response)
  return false if response[:headers].blank?
  return false unless [403, 503].include?(response[:status_code].to_i)

  [*response[:headers]["server"]].any? { |server| server.match?(/^cloudflare/i) }
end

.url_protected_by_incapsula?(response) ⇒ Boolean

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Check if a URL is protected by Incapsula (e.g. corsair.com).

Parameters:

  • response (Hash{Symbol => T.untyped})

    A response hash from #parse_curl_response.

Returns:

  • (Boolean)

    Whether a response contains headers indicating that the URL is protected by Incapsula.



424
425
426
427
428
429
430
# File 'utils/curl.rb', line 424

def url_protected_by_incapsula?(response)
  return false if response[:headers].blank?
  return false if response[:status_code].to_i != 403

  set_cookie_header = Array(response[:headers]["set-cookie"])
  set_cookie_header.compact.any? { |cookie| cookie.match?(/^(visid_incap|incap_ses)_/i) }
end