Raw
1 #ifndef TRANSPORT_H
2 #define TRANSPORT_H
3
4 #include "run-command.h"
5 #include "remote.h"
6 #include "list-objects-filter-options.h"
7 #include "string-list.h"
8 #include "connect.h"
9
10 struct git_transport_options {
11 unsigned thin : 1;
12 unsigned keep : 1;
13 unsigned followtags : 1;
14 unsigned check_self_contained_and_connected : 1;
15 unsigned self_contained_and_connected : 1;
16 unsigned update_shallow : 1;
17 unsigned reject_shallow : 1;
18 unsigned deepen_relative : 1;
19 unsigned refetch : 1;
20
21 /* see documentation of corresponding flag in fetch-pack.h */
22 unsigned from_promisor : 1;
23
24 /*
25 * If this transport supports connect or stateless-connect,
26 * the corresponding field in struct fetch_pack_args is copied
27 * here after fetching.
28 *
29 * See the definition of connectivity_checked in struct
30 * fetch_pack_args for more information.
31 */
32 unsigned connectivity_checked:1;
33
34 int depth;
35 const char *deepen_since;
36 const struct string_list *deepen_not;
37 const char *uploadpack;
38 const char *receivepack;
39 struct push_cas_option *cas;
40 struct list_objects_filter_options filter_options;
41
42 /*
43 * This is only used during fetch. See the documentation of
44 * these member names in struct fetch_pack_args.
45 *
46 * These fields are only supported by transports that support connect or
47 * stateless_connect. Set this field directly instead of using
48 * transport_set_option().
49 */
50 struct oid_array *negotiation_restrict_tips;
51 struct oid_array *negotiation_include_tips;
52
53 /*
54 * If allocated, whenever transport_fetch_refs() is called, add known
55 * common commits to this oidset instead of fetching any packfiles.
56 */
57 struct oidset *acked_commits;
58
59 struct oid_array *object_info_oids;
60 struct object_info *object_info_data;
61 struct string_list *object_info_options;
62 };
63
64 enum transport_family {
65 TRANSPORT_FAMILY_ALL = 0,
66 TRANSPORT_FAMILY_IPV4,
67 TRANSPORT_FAMILY_IPV6
68 };
69
70 struct bundle_list;
71 struct transport {
72 const struct transport_vtable *vtable;
73
74 struct remote *remote;
75 const char *url;
76 void *data;
77 const struct ref *remote_refs;
78
79 /**
80 * Indicates whether we already called get_refs_list(); set by
81 * transport.c::transport_get_remote_refs().
82 */
83 unsigned got_remote_refs : 1;
84
85 /**
86 * Indicates whether we already called get_bundle_uri_list(); set by
87 * transport.c::transport_get_remote_bundle_uri().
88 */
89 unsigned got_remote_bundle_uri : 1;
90
91 /*
92 * The results of "command=bundle-uri", if both sides support
93 * the "bundle-uri" capability.
94 */
95 struct bundle_list *bundles;
96
97 /*
98 * Transports that call take-over destroys the data specific to
99 * the transport type while doing so, and cannot be reused.
100 */
101 unsigned cannot_reuse : 1;
102
103 /*
104 * A hint from caller that it will be performing a clone, not
105 * normal fetch. IOW the repository is guaranteed empty.
106 */
107 unsigned cloning : 1;
108
109 /*
110 * Indicates that the transport is connected via a half-duplex
111 * connection and should operate in stateless-rpc mode.
112 */
113 unsigned stateless_rpc : 1;
114
115 /*
116 * These strings will be passed to the {pre, post}-receive hook,
117 * on the remote side, if both sides support the push options capability.
118 */
119 const struct string_list *push_options;
120
121 /*
122 * These strings will be passed to the remote side on each command
123 * request, if both sides support the server-option capability.
124 */
125 const struct string_list *server_options;
126
127 struct string_list pack_lockfiles;
128
129 signed verbose : 3;
130 /**
131 * Transports should not set this directly, and should use this
132 * value without having to check isatty(2), -q/--quiet
133 * (transport->verbose < 0), etc. - checking has already been done
134 * in transport_set_verbosity().
135 **/
136 unsigned progress : 1;
137 /*
138 * If transport is at least potentially smart, this points to
139 * git_transport_options structure to use in case transport
140 * actually turns out to be smart.
141 */
142 struct git_transport_options *smart_options;
143
144 enum transport_family family;
145
146 const struct git_hash_algo *hash_algo;
147 };
148
149 #define TRANSPORT_PUSH_ALL (1<<0)
150 #define TRANSPORT_PUSH_FORCE (1<<1)
151 #define TRANSPORT_PUSH_DRY_RUN (1<<2)
152 #define TRANSPORT_PUSH_MIRROR (1<<3)
153 #define TRANSPORT_PUSH_PORCELAIN (1<<4)
154 #define TRANSPORT_PUSH_SET_UPSTREAM (1<<5)
155 #define TRANSPORT_RECURSE_SUBMODULES_CHECK (1<<6)
156 #define TRANSPORT_PUSH_PRUNE (1<<7)
157 #define TRANSPORT_RECURSE_SUBMODULES_ON_DEMAND (1<<8)
158 #define TRANSPORT_PUSH_NO_HOOK (1<<9)
159 #define TRANSPORT_PUSH_FOLLOW_TAGS (1<<10)
160 #define TRANSPORT_PUSH_CERT_ALWAYS (1<<11)
161 #define TRANSPORT_PUSH_CERT_IF_ASKED (1<<12)
162 #define TRANSPORT_PUSH_ATOMIC (1<<13)
163 #define TRANSPORT_PUSH_OPTIONS (1<<14)
164 #define TRANSPORT_RECURSE_SUBMODULES_ONLY (1<<15)
165 #define TRANSPORT_PUSH_FORCE_IF_INCLUDES (1<<16)
166 #define TRANSPORT_PUSH_AUTO_UPSTREAM (1<<17)
167
168 int transport_summary_width(const struct ref *refs);
169
170 /* Returns a transport suitable for the url */
171 struct transport *transport_get(struct remote *, const char *);
172
173 /*
174 * Check whether a transport is allowed by the environment.
175 *
176 * Type should generally be the URL scheme, as described in
177 * Documentation/git.adoc
178 *
179 * from_user specifies if the transport was given by the user. If unknown pass
180 * a -1 to read from the environment to determine if the transport was given by
181 * the user.
182 *
183 */
184 int is_transport_allowed(const char *type, int from_user);
185
186 /*
187 * Check whether a transport is allowed by the environment,
188 * and die otherwise.
189 */
190 void transport_check_allowed(const char *type);
191
192 /* Transport options which apply to git:// and scp-style URLs */
193
194 /* The program to use on the remote side to send a pack */
195 #define TRANS_OPT_UPLOADPACK "uploadpack"
196
197 /* The program to use on the remote side to receive a pack */
198 #define TRANS_OPT_RECEIVEPACK "receivepack"
199
200 /* Transfer the data as a thin pack if not null */
201 #define TRANS_OPT_THIN "thin"
202
203 /* Check the current value of the remote ref */
204 #define TRANS_OPT_CAS "cas"
205
206 /* Keep the pack that was transferred if not null */
207 #define TRANS_OPT_KEEP "keep"
208
209 /* Limit the depth of the fetch if not null */
210 #define TRANS_OPT_DEPTH "depth"
211
212 /* Limit the depth of the fetch based on time if not null */
213 #define TRANS_OPT_DEEPEN_SINCE "deepen-since"
214
215 /* Limit the depth of the fetch based on revs if not null */
216 #define TRANS_OPT_DEEPEN_NOT "deepen-not"
217
218 /* Limit the deepen of the fetch if not null */
219 #define TRANS_OPT_DEEPEN_RELATIVE "deepen-relative"
220
221 /* Aggressively fetch annotated tags if possible */
222 #define TRANS_OPT_FOLLOWTAGS "followtags"
223
224 /* Reject shallow repo transport */
225 #define TRANS_OPT_REJECT_SHALLOW "rejectshallow"
226
227 /* Accept refs that may update .git/shallow without --depth */
228 #define TRANS_OPT_UPDATE_SHALLOW "updateshallow"
229
230 /* Send push certificates */
231 #define TRANS_OPT_PUSH_CERT "pushcert"
232
233 /* Indicate that these objects are being fetched by a promisor */
234 #define TRANS_OPT_FROM_PROMISOR "from-promisor"
235
236 /* Filter objects for partial clone and fetch */
237 #define TRANS_OPT_LIST_OBJECTS_FILTER "filter"
238
239 /* Refetch all objects without negotiating */
240 #define TRANS_OPT_REFETCH "refetch"
241
242 /* Request atomic (all-or-nothing) updates when pushing */
243 #define TRANS_OPT_ATOMIC "atomic"
244
245 /* Require remote changes to be integrated locally. */
246 #define TRANS_OPT_FORCE_IF_INCLUDES "force-if-includes"
247
248 /**
249 * Returns 0 if the option was used, non-zero otherwise. Prints a
250 * message to stderr if the option is not used.
251 **/
252 int transport_set_option(struct transport *transport, const char *name,
253 const char *value);
254 void transport_set_verbosity(struct transport *transport, int verbosity,
255 int force_progress);
256
257 #define REJECT_NON_FF_HEAD 0x01
258 #define REJECT_NON_FF_OTHER 0x02
259 #define REJECT_ALREADY_EXISTS 0x04
260 #define REJECT_FETCH_FIRST 0x08
261 #define REJECT_NEEDS_FORCE 0x10
262 #define REJECT_REF_NEEDS_UPDATE 0x20
263
264 int transport_push(struct repository *repo,
265 struct transport *connection,
266 struct refspec *rs, int flags,
267 unsigned int * reject_reasons);
268
269 struct transport_ls_refs_options {
270 /*
271 * Optionally, a list of ref prefixes can be provided which can be sent
272 * to the server (when communicating using protocol v2) to enable it to
273 * limit the ref advertisement. Since ref filtering is done on the
274 * server's end (and only when using protocol v2),
275 * transport_get_remote_refs() could return refs which don't match the
276 * provided ref_prefixes.
277 */
278 struct strvec ref_prefixes;
279
280 /*
281 * If unborn_head_target is not NULL, and the remote reports HEAD as
282 * pointing to an unborn branch, transport_get_remote_refs() stores the
283 * unborn branch in unborn_head_target.
284 */
285 const char *unborn_head_target;
286 };
287 #define TRANSPORT_LS_REFS_OPTIONS_INIT { \
288 .ref_prefixes = STRVEC_INIT, \
289 }
290
291 /**
292 * Release the "struct transport_ls_refs_options".
293 */
294 void transport_ls_refs_options_release(struct transport_ls_refs_options *opts);
295
296 /*
297 * Retrieve refs from a remote.
298 */
299 const struct ref *transport_get_remote_refs(struct transport *transport,
300 struct transport_ls_refs_options *transport_options);
301
302 /**
303 * Retrieve bundle URI(s) from a remote. Populates "struct
304 * transport"'s "bundle_uri" and "got_remote_bundle_uri".
305 */
306 int transport_get_remote_bundle_uri(struct transport *transport);
307
308 /*
309 * Fetch the hash algorithm used by a remote.
310 *
311 * This can only be called after fetching the remote refs.
312 */
313 const struct git_hash_algo *transport_get_hash_algo(struct transport *transport);
314 int transport_fetch_refs(struct transport *transport, struct ref *refs);
315
316 /*
317 * Fetch the object info from remote
318 */
319 int transport_fetch_object_info(struct transport *transport);
320
321 /*
322 * If this flag is set, unlocking will avoid to call non-async-signal-safe
323 * functions. This will necessarily leave behind some data structures which
324 * cannot be cleaned up.
325 */
326 #define TRANSPORT_UNLOCK_PACK_IN_SIGNAL_HANDLER (1 << 0)
327
328 /*
329 * Unlock all packfiles locked by the transport.
330 */
331 void transport_unlock_pack(struct transport *transport, unsigned int flags);
332
333 int transport_disconnect(struct transport *transport);
334 char *transport_anonymize_url(const char *url);
335 void transport_take_over(struct transport *transport,
336 struct child_process *child);
337
338 int transport_connect(struct transport *transport,
339 enum git_connect_service service,
340 const char *exec, int fd[2]);
341
342 /* Transport methods defined outside transport.c */
343 int transport_helper_init(struct transport *transport, const char *name);
344 int bidirectional_transfer_loop(int input, int output);
345
346 /* common methods used by transport.c and builtin/send-pack.c */
347 void transport_update_tracking_ref(struct remote *remote, struct ref *ref, int verbose);
348
349 int transport_refs_pushed(struct ref *ref);
350
351 void transport_print_push_status(const char *dest, struct ref *refs,
352 int verbose, int porcelain, unsigned int *reject_reasons);
353
354 /* common method used by transport-helper.c and send-pack.c */
355 void reject_atomic_push(struct ref *refs, int mirror_mode);
356
357 /* common method to parse push-option or server-option from config */
358 int parse_transport_option(const char *var, const char *value,
359 struct string_list *transport_options);
360
361 #endif