git-p4: raise exceptions from p4CmdList based on error from p4 server
[git.git] / serve.c
bloba5a7b2f7dd243c9dda3a29eda37aca8f96c3f0a5
1 #include "cache.h"
2 #include "repository.h"
3 #include "config.h"
4 #include "pkt-line.h"
5 #include "version.h"
6 #include "argv-array.h"
7 #include "ls-refs.h"
8 #include "serve.h"
9 #include "upload-pack.h"
11 static int always_advertise(struct repository *r,
12 struct strbuf *value)
14 return 1;
17 static int agent_advertise(struct repository *r,
18 struct strbuf *value)
20 if (value)
21 strbuf_addstr(value, git_user_agent_sanitized());
22 return 1;
25 struct protocol_capability {
27 * The name of the capability. The server uses this name when
28 * advertising this capability, and the client uses this name to
29 * specify this capability.
31 const char *name;
34 * Function queried to see if a capability should be advertised.
35 * Optionally a value can be specified by adding it to 'value'.
36 * If a value is added to 'value', the server will advertise this
37 * capability as "<name>=<value>" instead of "<name>".
39 int (*advertise)(struct repository *r, struct strbuf *value);
42 * Function called when a client requests the capability as a command.
43 * The function will be provided the capabilities requested via 'keys'
44 * as well as a struct packet_reader 'request' which the command should
45 * use to read the command specific part of the request. Every command
46 * MUST read until a flush packet is seen before sending a response.
48 * This field should be NULL for capabilities which are not commands.
50 int (*command)(struct repository *r,
51 struct argv_array *keys,
52 struct packet_reader *request);
55 static struct protocol_capability capabilities[] = {
56 { "agent", agent_advertise, NULL },
57 { "ls-refs", always_advertise, ls_refs },
58 { "fetch", upload_pack_advertise, upload_pack_v2 },
61 static void advertise_capabilities(void)
63 struct strbuf capability = STRBUF_INIT;
64 struct strbuf value = STRBUF_INIT;
65 int i;
67 for (i = 0; i < ARRAY_SIZE(capabilities); i++) {
68 struct protocol_capability *c = &capabilities[i];
70 if (c->advertise(the_repository, &value)) {
71 strbuf_addstr(&capability, c->name);
73 if (value.len) {
74 strbuf_addch(&capability, '=');
75 strbuf_addbuf(&capability, &value);
78 strbuf_addch(&capability, '\n');
79 packet_write(1, capability.buf, capability.len);
82 strbuf_reset(&capability);
83 strbuf_reset(&value);
86 packet_flush(1);
87 strbuf_release(&capability);
88 strbuf_release(&value);
91 static struct protocol_capability *get_capability(const char *key)
93 int i;
95 if (!key)
96 return NULL;
98 for (i = 0; i < ARRAY_SIZE(capabilities); i++) {
99 struct protocol_capability *c = &capabilities[i];
100 const char *out;
101 if (skip_prefix(key, c->name, &out) && (!*out || *out == '='))
102 return c;
105 return NULL;
108 static int is_valid_capability(const char *key)
110 const struct protocol_capability *c = get_capability(key);
112 return c && c->advertise(the_repository, NULL);
115 static int is_command(const char *key, struct protocol_capability **command)
117 const char *out;
119 if (skip_prefix(key, "command=", &out)) {
120 struct protocol_capability *cmd = get_capability(out);
122 if (*command)
123 die("command '%s' requested after already requesting command '%s'",
124 out, (*command)->name);
125 if (!cmd || !cmd->advertise(the_repository, NULL) || !cmd->command)
126 die("invalid command '%s'", out);
128 *command = cmd;
129 return 1;
132 return 0;
135 int has_capability(const struct argv_array *keys, const char *capability,
136 const char **value)
138 int i;
139 for (i = 0; i < keys->argc; i++) {
140 const char *out;
141 if (skip_prefix(keys->argv[i], capability, &out) &&
142 (!*out || *out == '=')) {
143 if (value) {
144 if (*out == '=')
145 out++;
146 *value = out;
148 return 1;
152 return 0;
155 enum request_state {
156 PROCESS_REQUEST_KEYS,
157 PROCESS_REQUEST_DONE,
160 static int process_request(void)
162 enum request_state state = PROCESS_REQUEST_KEYS;
163 struct packet_reader reader;
164 struct argv_array keys = ARGV_ARRAY_INIT;
165 struct protocol_capability *command = NULL;
167 packet_reader_init(&reader, 0, NULL, 0,
168 PACKET_READ_CHOMP_NEWLINE |
169 PACKET_READ_GENTLE_ON_EOF);
172 * Check to see if the client closed their end before sending another
173 * request. If so we can terminate the connection.
175 if (packet_reader_peek(&reader) == PACKET_READ_EOF)
176 return 1;
177 reader.options = PACKET_READ_CHOMP_NEWLINE;
179 while (state != PROCESS_REQUEST_DONE) {
180 switch (packet_reader_peek(&reader)) {
181 case PACKET_READ_EOF:
182 BUG("Should have already died when seeing EOF");
183 case PACKET_READ_NORMAL:
184 /* collect request; a sequence of keys and values */
185 if (is_command(reader.line, &command) ||
186 is_valid_capability(reader.line))
187 argv_array_push(&keys, reader.line);
188 else
189 die("unknown capability '%s'", reader.line);
191 /* Consume the peeked line */
192 packet_reader_read(&reader);
193 break;
194 case PACKET_READ_FLUSH:
196 * If no command and no keys were given then the client
197 * wanted to terminate the connection.
199 if (!keys.argc)
200 return 1;
203 * The flush packet isn't consume here like it is in
204 * the other parts of this switch statement. This is
205 * so that the command can read the flush packet and
206 * see the end of the request in the same way it would
207 * if command specific arguments were provided after a
208 * delim packet.
210 state = PROCESS_REQUEST_DONE;
211 break;
212 case PACKET_READ_DELIM:
213 /* Consume the peeked line */
214 packet_reader_read(&reader);
216 state = PROCESS_REQUEST_DONE;
217 break;
221 if (!command)
222 die("no command requested");
224 command->command(the_repository, &keys, &reader);
226 argv_array_clear(&keys);
227 return 0;
230 /* Main serve loop for protocol version 2 */
231 void serve(struct serve_options *options)
233 if (options->advertise_capabilities || !options->stateless_rpc) {
234 /* serve by default supports v2 */
235 packet_write_fmt(1, "version 2\n");
237 advertise_capabilities();
239 * If only the list of capabilities was requested exit
240 * immediately after advertising capabilities
242 if (options->advertise_capabilities)
243 return;
247 * If stateless-rpc was requested then exit after
248 * a single request/response exchange
250 if (options->stateless_rpc) {
251 process_request();
252 } else {
253 for (;;)
254 if (process_request())
255 break;