2 * Copyright (c) 2022 Stefan Sperling <stsp@openbsd.org>
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 #include "got_compat.h"
19 #define GOTD_UNIX_SOCKET "/var/run/gotd.sock"
20 #define GOTD_UNIX_SOCKET_BACKLOG 10
21 #define GOTD_USER "_gotd"
22 #define GOTD_CONF_PATH "/etc/gotd.conf"
23 #define GOTD_SECRETS_PATH "/etc/gotd-secrets.conf"
24 #ifndef GOTD_EMPTY_PATH
25 #define GOTD_EMPTY_PATH "/var/empty"
28 #ifndef GOT_LIBEXECDIR
29 #define GOT_LIBEXECDIR /usr/libexec
32 #define GOTD_STRINGIFY(x) #x
33 #define GOTD_STRINGVAL(x) GOTD_STRINGIFY(x)
35 #define GOTD_PROG_NOTIFY_EMAIL got-notify-email
36 #define GOTD_PROG_NOTIFY_HTTP got-notify-http
38 #define GOTD_PATH_PROG_NOTIFY_EMAIL \
39 GOTD_STRINGVAL(GOT_LIBEXECDIR) "/" \
40 GOTD_STRINGVAL(GOTD_PROG_NOTIFY_EMAIL)
41 #define GOTD_PATH_PROG_NOTIFY_HTTP \
42 GOTD_STRINGVAL(GOT_LIBEXECDIR) "/" \
43 GOTD_STRINGVAL(GOTD_PROG_NOTIFY_HTTP)
45 #define GOTD_MAXCLIENTS 1024
46 #define GOTD_MAX_CONN_PER_UID 4
47 #define GOTD_FD_RESERVE 5
48 #define GOTD_FD_NEEDED 6
49 #define GOTD_FILENO_MSG_PIPE 3
51 #define GOTD_DEFAULT_REQUEST_TIMEOUT 3600
53 /* Client hash tables need some extra room. */
54 #define GOTD_CLIENT_TABLE_SIZE (GOTD_MAXCLIENTS * 4)
71 void (*handler
)(int, short, void *);
78 GOTD_ACCESS_DENIED
= -1,
79 GOTD_ACCESS_PERMITTED
= 1
82 struct gotd_access_rule
{
83 STAILQ_ENTRY(gotd_access_rule
) entry
;
85 enum gotd_access access
;
88 #define GOTD_AUTH_READ 0x1
89 #define GOTD_AUTH_WRITE 0x2
93 STAILQ_HEAD(gotd_access_rule_list
, gotd_access_rule
);
95 enum gotd_notification_target_type
{
96 GOTD_NOTIFICATION_VIA_EMAIL
,
97 GOTD_NOTIFICATION_VIA_HTTP
100 struct gotd_notification_target
{
101 STAILQ_ENTRY(gotd_notification_target
) entry
;
103 enum gotd_notification_target_type type
;
122 STAILQ_HEAD(gotd_notification_targets
, gotd_notification_target
);
125 TAILQ_ENTRY(gotd_repo
) entry
;
130 struct gotd_access_rule_list rules
;
131 struct got_pathlist_head protected_tag_namespaces
;
132 struct got_pathlist_head protected_branch_namespaces
;
133 struct got_pathlist_head protected_branches
;
135 struct got_pathlist_head notification_refs
;
136 struct got_pathlist_head notification_ref_namespaces
;
137 struct gotd_notification_targets notification_targets
;
139 TAILQ_HEAD(gotd_repolist
, gotd_repo
);
141 struct gotd_client_capability
{
146 struct gotd_object_id_array
{
147 struct got_object_id
**ids
;
152 struct gotd_uid_connection_limit
{
157 struct gotd_child_proc
;
162 char unix_socket_path
[PATH_MAX
];
164 struct gotd_repolist repos
;
166 struct gotd_child_proc
*listen_proc
;
167 struct gotd_child_proc
*notify_proc
;
168 int notifications_enabled
;
169 struct timeval request_timeout
;
170 struct timeval auth_timeout
;
171 struct gotd_uid_connection_limit
*connection_limits
;
172 size_t nconnection_limits
;
173 struct gotd_secrets
*secrets
;
176 const char *confpath
;
181 enum gotd_imsg_type
{
182 /* An error occurred while processing a request. */
185 /* Commands used by gotctl(8). */
188 GOTD_IMSG_INFO_CLIENT
,
191 /* Request a list of references. */
193 GOTD_IMSG_LIST_REFS_INTERNAL
,
200 /* Git protocol capabilities. */
201 GOTD_IMSG_CAPABILITIES
,
202 GOTD_IMSG_CAPABILITY
,
204 /* Git protocol chatter. */
205 GOTD_IMSG_WANT
, /* The client wants an object. */
206 GOTD_IMSG_HAVE
, /* The client has an object. */
207 GOTD_IMSG_ACK
, /* The server has an object or a reference. */
208 GOTD_IMSG_NAK
, /* The server does not have an object/ref. */
209 GOTD_IMSG_REF_UPDATE
, /* The client wants to update a reference. */
210 GOTD_IMSG_REF_DELETE
, /* The client wants to delete a reference. */
211 GOTD_IMSG_FLUSH
, /* The client sent a flush packet. */
212 GOTD_IMSG_DONE
, /* The client is done chatting. */
214 /* Sending or receiving a pack file. */
215 GOTD_IMSG_SEND_PACKFILE
, /* The server is sending a pack file. */
216 GOTD_IMSG_RECV_PACKFILE
, /* The server is receiving a pack file. */
217 GOTD_IMSG_PACKIDX_FILE
, /* Temporary file handle for new pack index. */
218 GOTD_IMSG_PACKFILE_PIPE
, /* Pipe to send/receive a pack file stream. */
219 GOTD_IMSG_PACKFILE_PROGRESS
, /* Progress reporting. */
220 GOTD_IMSG_PACKFILE_READY
, /* Pack file is ready to be sent. */
221 GOTD_IMSG_PACKFILE_STATUS
, /* Received pack success/failure status. */
222 GOTD_IMSG_PACKFILE_INSTALL
, /* Received pack file can be installed. */
223 GOTD_IMSG_PACKFILE_DONE
, /* Pack file has been sent/received. */
225 /* Reference updates. */
226 GOTD_IMSG_REF_UPDATES_START
, /* Ref updates starting. */
227 GOTD_IMSG_REF_UPDATE_OK
, /* Update went OK. */
228 GOTD_IMSG_REF_UPDATE_NG
, /* Update was not good. */
229 GOTD_IMSG_REFS_UPDATED
, /* The server processed all ref updates. */
231 /* Client connections. */
232 GOTD_IMSG_DISCONNECT
,
235 /* Child process management. */
236 GOTD_IMSG_CLIENT_SESSION_READY
,
237 GOTD_IMSG_REPO_CHILD_READY
,
238 GOTD_IMSG_CONNECT_REPO_CHILD
,
240 /* Auth child process. */
241 GOTD_IMSG_AUTHENTICATE
,
242 GOTD_IMSG_ACCESS_GRANTED
,
244 /* Notify child process. */
245 GOTD_IMSG_CONNECT_NOTIFIER
,
246 GOTD_IMSG_CONNECT_SESSION
,
248 GOTD_IMSG_NOTIFICATION_SENT
,
251 GOTD_IMSG_SECRETS
, /* number of secrets */
255 /* Structure for GOTD_IMSG_ERROR. */
256 struct gotd_imsg_error
{
257 int code
; /* an error code from got_error.h */
258 int errno_code
; /* in case code equals GOT_ERR_ERRNO */
260 char msg
[GOT_ERR_MAX_MSG_SIZE
];
261 } __attribute__((__packed__
));
263 /* Structure for GOTD_IMSG_INFO. */
264 struct gotd_imsg_info
{
270 /* Followed by nrepos GOTD_IMSG_INFO_REPO messages. */
271 /* Followed by nclients GOTD_IMSG_INFO_CLIENT messages. */
274 /* Structure for GOTD_IMSG_INFO_REPO. */
275 struct gotd_imsg_info_repo
{
276 char repo_name
[NAME_MAX
];
277 char repo_path
[PATH_MAX
];
280 /* Structure for GOTD_IMSG_INFO_CLIENT */
281 struct gotd_imsg_info_client
{
284 char repo_name
[NAME_MAX
];
286 pid_t session_child_pid
;
287 pid_t repo_child_pid
;
290 /* Structure for GOTD_IMSG_LIST_REFS. */
291 struct gotd_imsg_list_refs
{
292 char repo_name
[NAME_MAX
];
293 int client_is_reading
; /* 1 if reading, 0 if writing */
296 /* Structure for GOTD_IMSG_REFLIST. */
297 struct gotd_imsg_reflist
{
300 /* Followed by nrefs times of gotd_imsg_ref/gotd_imsg_symref data. */
301 } __attribute__((__packed__
));
303 /* Structure for GOTD_IMSG_REF data. */
304 struct gotd_imsg_ref
{
305 uint8_t id
[SHA1_DIGEST_LENGTH
];
307 /* Followed by name_len data bytes. */
308 } __attribute__((__packed__
));
310 /* Structure for GOTD_IMSG_SYMREF data. */
311 struct gotd_imsg_symref
{
314 uint8_t target_id
[SHA1_DIGEST_LENGTH
];
317 * Followed by name_len + target_len data bytes.
319 } __attribute__((__packed__
));
321 /* Structure for GOTD_IMSG_CAPABILITIES data. */
322 struct gotd_imsg_capabilities
{
323 size_t ncapabilities
;
326 * Followed by ncapabilities * GOTD_IMSG_CAPABILITY.
328 } __attribute__((__packed__
));
330 /* Structure for GOTD_IMSG_CAPABILITY data. */
331 struct gotd_imsg_capability
{
336 * Followed by key_len + value_len data bytes.
338 } __attribute__((__packed__
));
340 /* Structure for GOTD_IMSG_WANT data. */
341 struct gotd_imsg_want
{
342 uint8_t object_id
[SHA1_DIGEST_LENGTH
];
343 } __attribute__((__packed__
));
345 /* Structure for GOTD_IMSG_HAVE data. */
346 struct gotd_imsg_have
{
347 uint8_t object_id
[SHA1_DIGEST_LENGTH
];
348 } __attribute__((__packed__
));
350 /* Structure for GOTD_IMSG_ACK data. */
351 struct gotd_imsg_ack
{
352 uint8_t object_id
[SHA1_DIGEST_LENGTH
];
353 } __attribute__((__packed__
));
355 /* Structure for GOTD_IMSG_NAK data. */
356 struct gotd_imsg_nak
{
357 uint8_t object_id
[SHA1_DIGEST_LENGTH
];
358 } __attribute__((__packed__
));
360 /* Structure for GOTD_IMSG_PACKFILE_STATUS data. */
361 struct gotd_imsg_packfile_status
{
364 /* Followed by reason_len data bytes. */
365 } __attribute__((__packed__
));
368 /* Structure for GOTD_IMSG_REF_UPDATE data. */
369 struct gotd_imsg_ref_update
{
370 uint8_t old_id
[SHA1_DIGEST_LENGTH
];
371 uint8_t new_id
[SHA1_DIGEST_LENGTH
];
376 /* Followed by name_len data bytes. */
377 } __attribute__((__packed__
));
379 /* Structure for GOTD_IMSG_REF_UPDATES_START data. */
380 struct gotd_imsg_ref_updates_start
{
383 /* Followed by nref_updates GOT_IMSG_REF_UPDATE_OK/NG messages. */
386 /* Structure for GOTD_IMSG_REF_UPDATE_OK data. */
387 struct gotd_imsg_ref_update_ok
{
388 uint8_t old_id
[SHA1_DIGEST_LENGTH
];
389 uint8_t new_id
[SHA1_DIGEST_LENGTH
];
393 /* Followed by name_len data bytes. */
394 } __attribute__((__packed__
));
396 /* Structure for GOTD_IMSG_REF_UPDATE_NG data. */
397 struct gotd_imsg_ref_update_ng
{
398 uint8_t old_id
[SHA1_DIGEST_LENGTH
];
399 uint8_t new_id
[SHA1_DIGEST_LENGTH
];
403 /* Followed by name_len + reason_len data bytes. */
404 } __attribute__((__packed__
));
406 /* Structure for GOTD_IMSG_SEND_PACKFILE data. */
407 struct gotd_imsg_send_packfile
{
410 /* delta cache file is sent as a file descriptor */
412 /* followed by two GOTD_IMSG_PACKFILE_PIPE messages */
415 /* Structure for GOTD_IMSG_RECV_PACKFILE data. */
416 struct gotd_imsg_recv_packfile
{
419 /* pack destination temp file is sent as a file descriptor */
423 * Structure for GOTD_IMSG_PACKFILE_PROGRESS and
424 * GOTD_IMSG_PACKFILE_READY data.
426 struct gotd_imsg_packfile_progress
{
437 /* Structure for GOTD_IMSG_PACKFILE_INSTALL. */
438 struct gotd_imsg_packfile_install
{
439 uint8_t pack_sha1
[SHA1_DIGEST_LENGTH
];
442 /* Structure for GOTD_IMSG_DISCONNECT data. */
443 struct gotd_imsg_disconnect
{
447 /* Structure for GOTD_IMSG_CONNECT. */
448 struct gotd_imsg_connect
{
454 /* Followed by username_len data bytes. */
457 /* Structure for GOTD_IMSG_CONNECT_REPO_CHILD. */
458 struct gotd_imsg_connect_repo_child
{
459 enum gotd_procid proc_id
;
461 /* repo child imsg pipe is passed via imsg fd */
464 /* Structure for GOTD_IMSG_AUTHENTICATE. */
465 struct gotd_imsg_auth
{
472 /* Structures for GOTD_IMSG_NOTIFY. */
473 enum gotd_notification_action
{
474 GOTD_NOTIF_ACTION_CREATED
,
475 GOTD_NOTIF_ACTION_REMOVED
,
476 GOTD_NOTIF_ACTION_CHANGED
478 /* IMSG_NOTIFY session <-> repo_write */
479 struct gotd_imsg_notification_content
{
480 enum gotd_notification_action action
;
481 struct got_object_id old_id
;
482 struct got_object_id new_id
;
484 /* Followed by refname_len data bytes. */
486 /* IMSG_NOTIFY session -> notify*/
487 struct gotd_imsg_notify
{
488 char repo_name
[NAME_MAX
];
489 char subject_line
[64];
491 /* Followed by username_len data bytes. */
494 int enter_chroot(const char *);
495 int parse_config(const char *, enum gotd_procid
, struct gotd_secrets
*,
497 struct gotd_repo
*gotd_find_repo_by_name(const char *, struct gotd_repolist
*);
498 struct gotd_repo
*gotd_find_repo_by_path(const char *, struct gotd
*);
499 struct gotd_uid_connection_limit
*gotd_find_uid_connection_limit(
500 struct gotd_uid_connection_limit
*limits
, size_t nlimits
, uid_t uid
);
501 int gotd_parseuid(const char *s
, uid_t
*uid
);
502 const struct got_error
*gotd_parse_url(char **, char **, char **,
503 char **, const char *);
506 const struct got_error
*gotd_imsg_flush(struct imsgbuf
*);
507 const struct got_error
*gotd_imsg_recv(struct imsg
*, struct imsgbuf
*, size_t);
508 const struct got_error
*gotd_imsg_poll_recv(struct imsg
*, struct imsgbuf
*,
510 const struct got_error
*gotd_imsg_recv_error(uint32_t *client_id
,
512 int gotd_imsg_send_error(struct imsgbuf
*ibuf
, uint32_t, uint32_t,
513 const struct got_error
*);
514 int gotd_imsg_send_error_event(struct gotd_imsgev
*, uint32_t, uint32_t,
515 const struct got_error
*);
516 void gotd_imsg_event_add(struct gotd_imsgev
*);
517 int gotd_imsg_compose_event(struct gotd_imsgev
*, uint16_t, uint32_t, int,
519 int gotd_imsg_forward(struct gotd_imsgev
*, struct imsg
*, int);
521 void gotd_imsg_send_ack(struct got_object_id
*, struct imsgbuf
*,
523 void gotd_imsg_send_nak(struct got_object_id
*, struct imsgbuf
*,