blob: 079ba75acf4e84451a80aa764cad3ac77a7d667f [file] [log] [blame]
Elijah Newren5579f442023-04-11 00:41:48 -07001#include "git-compat-util.h"
Brandon Williams373d70e2017-10-16 10:55:24 -07002#include "config.h"
Elijah Newren32a8f512023-03-21 06:26:03 +00003#include "environment.h"
Brandon Williams373d70e2017-10-16 10:55:24 -07004#include "protocol.h"
Elijah Newren74ea5c92023-04-11 03:00:38 +00005#include "trace2.h"
Brandon Williams373d70e2017-10-16 10:55:24 -07006
7static enum protocol_version parse_protocol_version(const char *value)
8{
9 if (!strcmp(value, "0"))
10 return protocol_v0;
11 else if (!strcmp(value, "1"))
12 return protocol_v1;
Brandon Williams8f6982b2018-03-14 11:31:47 -070013 else if (!strcmp(value, "2"))
14 return protocol_v2;
Brandon Williams373d70e2017-10-16 10:55:24 -070015 else
16 return protocol_unknown_version;
17}
18
19enum protocol_version get_protocol_version_config(void)
20{
21 const char *value;
Jonathan Tan8cbeba02019-02-25 13:54:06 -080022 const char *git_test_k = "GIT_TEST_PROTOCOL_VERSION";
Jonathan Nieder33166f32019-12-23 17:02:28 -080023 const char *git_test_v;
Jonathan Tan8cbeba02019-02-25 13:54:06 -080024
Jeff Kingf1de9812020-08-14 12:17:36 -040025 if (!git_config_get_string_tmp("protocol.version", &value)) {
Brandon Williams373d70e2017-10-16 10:55:24 -070026 enum protocol_version version = parse_protocol_version(value);
27
28 if (version == protocol_unknown_version)
29 die("unknown value for config 'protocol.version': %s",
30 value);
31
Jonathan Nieder33166f32019-12-23 17:02:28 -080032 return version;
Brandon Williams373d70e2017-10-16 10:55:24 -070033 }
34
Jonathan Nieder33166f32019-12-23 17:02:28 -080035 git_test_v = getenv(git_test_k);
Jonathan Tan8cbeba02019-02-25 13:54:06 -080036 if (git_test_v && *git_test_v) {
37 enum protocol_version env = parse_protocol_version(git_test_v);
38
39 if (env == protocol_unknown_version)
40 die("unknown value for %s: %s", git_test_k, git_test_v);
Jonathan Nieder33166f32019-12-23 17:02:28 -080041 return env;
Jonathan Tan8cbeba02019-02-25 13:54:06 -080042 }
43
Jeff Kingeb049752020-09-25 14:34:36 -040044 return protocol_v2;
Brandon Williams373d70e2017-10-16 10:55:24 -070045}
46
47enum protocol_version determine_protocol_version_server(void)
48{
49 const char *git_protocol = getenv(GIT_PROTOCOL_ENVIRONMENT);
50 enum protocol_version version = protocol_v0;
51
52 /*
53 * Determine which protocol version the client has requested. Since
54 * multiple 'version' keys can be sent by the client, indicating that
55 * the client is okay to speak any of them, select the greatest version
56 * that the client has requested. This is due to the assumption that
57 * the most recent protocol version will be the most state-of-the-art.
58 */
59 if (git_protocol) {
60 struct string_list list = STRING_LIST_INIT_DUP;
61 const struct string_list_item *item;
62 string_list_split(&list, git_protocol, ':', -1);
63
64 for_each_string_list_item(item, &list) {
65 const char *value;
66 enum protocol_version v;
67
68 if (skip_prefix(item->string, "version=", &value)) {
69 v = parse_protocol_version(value);
70 if (v > version)
71 version = v;
72 }
73 }
74
75 string_list_clear(&list, 0);
76 }
77
Josh Steadmon626beeb2021-08-10 10:20:39 -070078 trace2_data_intmax("transfer", NULL, "negotiated-version", version);
79
Brandon Williams373d70e2017-10-16 10:55:24 -070080 return version;
81}
82
83enum protocol_version determine_protocol_version_client(const char *server_response)
84{
85 enum protocol_version version = protocol_v0;
86
87 if (skip_prefix(server_response, "version ", &server_response)) {
88 version = parse_protocol_version(server_response);
89
90 if (version == protocol_unknown_version)
91 die("server is speaking an unknown protocol");
92 if (version == protocol_v0)
93 die("protocol error: server explicitly said version 0");
94 }
95
96 return version;
97}