2 20662ea0 2021-04-10 stsp * Copyright (c) 2021 Stefan Sperling <stsp@openbsd.org>
4 20662ea0 2021-04-10 stsp * Permission to use, copy, modify, and distribute this software for any
5 20662ea0 2021-04-10 stsp * purpose with or without fee is hereby granted, provided that the above
6 20662ea0 2021-04-10 stsp * copyright notice and this permission notice appear in all copies.
8 20662ea0 2021-04-10 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 20662ea0 2021-04-10 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 20662ea0 2021-04-10 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 20662ea0 2021-04-10 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 20662ea0 2021-04-10 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 20662ea0 2021-04-10 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 20662ea0 2021-04-10 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 20662ea0 2021-04-10 stsp #include <sys/queue.h>
18 05118f5a 2021-06-22 stsp #include <sys/types.h>
20 05118f5a 2021-06-22 stsp #include <ctype.h>
21 20662ea0 2021-04-10 stsp #include <getopt.h>
22 20662ea0 2021-04-10 stsp #include <err.h>
23 20662ea0 2021-04-10 stsp #include <errno.h>
24 20662ea0 2021-04-10 stsp #include <locale.h>
25 05118f5a 2021-06-22 stsp #include <inttypes.h>
26 05118f5a 2021-06-22 stsp #include <sha1.h>
27 20662ea0 2021-04-10 stsp #include <stdio.h>
28 20662ea0 2021-04-10 stsp #include <stdlib.h>
29 20662ea0 2021-04-10 stsp #include <signal.h>
30 20662ea0 2021-04-10 stsp #include <string.h>
31 20662ea0 2021-04-10 stsp #include <unistd.h>
32 20662ea0 2021-04-10 stsp #include <util.h>
34 20662ea0 2021-04-10 stsp #include "got_version.h"
35 20662ea0 2021-04-10 stsp #include "got_error.h"
36 20662ea0 2021-04-10 stsp #include "got_object.h"
37 20662ea0 2021-04-10 stsp #include "got_reference.h"
38 05118f5a 2021-06-22 stsp #include "got_cancel.h"
39 20662ea0 2021-04-10 stsp #include "got_repository.h"
40 05118f5a 2021-06-22 stsp #include "got_repository_admin.h"
41 20662ea0 2021-04-10 stsp #include "got_gotconfig.h"
42 20662ea0 2021-04-10 stsp #include "got_path.h"
43 20662ea0 2021-04-10 stsp #include "got_privsep.h"
44 20662ea0 2021-04-10 stsp #include "got_opentemp.h"
46 20662ea0 2021-04-10 stsp #ifndef nitems
47 20662ea0 2021-04-10 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
50 20662ea0 2021-04-10 stsp static volatile sig_atomic_t sigint_received;
51 20662ea0 2021-04-10 stsp static volatile sig_atomic_t sigpipe_received;
54 20662ea0 2021-04-10 stsp catch_sigint(int signo)
56 20662ea0 2021-04-10 stsp sigint_received = 1;
60 20662ea0 2021-04-10 stsp catch_sigpipe(int signo)
62 20662ea0 2021-04-10 stsp sigpipe_received = 1;
65 05118f5a 2021-06-22 stsp static const struct got_error *
66 05118f5a 2021-06-22 stsp check_cancelled(void *arg)
68 05118f5a 2021-06-22 stsp if (sigint_received || sigpipe_received)
69 05118f5a 2021-06-22 stsp return got_error(GOT_ERR_CANCELLED);
70 05118f5a 2021-06-22 stsp return NULL;
73 20662ea0 2021-04-10 stsp struct gotadmin_cmd {
74 20662ea0 2021-04-10 stsp const char *cmd_name;
75 20662ea0 2021-04-10 stsp const struct got_error *(*cmd_main)(int, char *[]);
76 20662ea0 2021-04-10 stsp void (*cmd_usage)(void);
77 20662ea0 2021-04-10 stsp const char *cmd_alias;
80 20662ea0 2021-04-10 stsp __dead static void usage(int, int);
81 20662ea0 2021-04-10 stsp __dead static void usage_info(void);
82 05118f5a 2021-06-22 stsp __dead static void usage_pack(void);
83 05118f5a 2021-06-22 stsp __dead static void usage_indexpack(void);
84 05118f5a 2021-06-22 stsp __dead static void usage_listpack(void);
85 b3d68e7f 2021-07-03 stsp __dead static void usage_cleanup(void);
87 20662ea0 2021-04-10 stsp static const struct got_error* cmd_info(int, char *[]);
88 05118f5a 2021-06-22 stsp static const struct got_error* cmd_pack(int, char *[]);
89 05118f5a 2021-06-22 stsp static const struct got_error* cmd_indexpack(int, char *[]);
90 05118f5a 2021-06-22 stsp static const struct got_error* cmd_listpack(int, char *[]);
91 b3d68e7f 2021-07-03 stsp static const struct got_error* cmd_cleanup(int, char *[]);
93 20662ea0 2021-04-10 stsp static struct gotadmin_cmd gotadmin_commands[] = {
94 20662ea0 2021-04-10 stsp { "info", cmd_info, usage_info, "" },
95 05118f5a 2021-06-22 stsp { "pack", cmd_pack, usage_pack, "" },
96 05118f5a 2021-06-22 stsp { "indexpack", cmd_indexpack, usage_indexpack,"ix" },
97 05118f5a 2021-06-22 stsp { "listpack", cmd_listpack, usage_listpack, "ls" },
98 b3d68e7f 2021-07-03 stsp { "cleanup", cmd_cleanup, usage_cleanup, "cl" },
101 20662ea0 2021-04-10 stsp static void
102 20662ea0 2021-04-10 stsp list_commands(FILE *fp)
106 20662ea0 2021-04-10 stsp fprintf(fp, "commands:");
107 20662ea0 2021-04-10 stsp for (i = 0; i < nitems(gotadmin_commands); i++) {
108 20662ea0 2021-04-10 stsp struct gotadmin_cmd *cmd = &gotadmin_commands[i];
109 20662ea0 2021-04-10 stsp fprintf(fp, " %s", cmd->cmd_name);
111 20662ea0 2021-04-10 stsp fputc('\n', fp);
115 20662ea0 2021-04-10 stsp main(int argc, char *argv[])
117 20662ea0 2021-04-10 stsp struct gotadmin_cmd *cmd;
120 20662ea0 2021-04-10 stsp int hflag = 0, Vflag = 0;
121 20662ea0 2021-04-10 stsp static struct option longopts[] = {
122 20662ea0 2021-04-10 stsp { "version", no_argument, NULL, 'V' },
123 20662ea0 2021-04-10 stsp { NULL, 0, NULL, 0 }
126 20662ea0 2021-04-10 stsp setlocale(LC_CTYPE, "");
128 20662ea0 2021-04-10 stsp while ((ch = getopt_long(argc, argv, "+hV", longopts, NULL)) != -1) {
129 20662ea0 2021-04-10 stsp switch (ch) {
137 20662ea0 2021-04-10 stsp usage(hflag, 1);
138 20662ea0 2021-04-10 stsp /* NOTREACHED */
142 20662ea0 2021-04-10 stsp argc -= optind;
143 20662ea0 2021-04-10 stsp argv += optind;
144 20662ea0 2021-04-10 stsp optind = 1;
145 20662ea0 2021-04-10 stsp optreset = 1;
147 20662ea0 2021-04-10 stsp if (Vflag) {
148 20662ea0 2021-04-10 stsp got_version_print_str();
152 20662ea0 2021-04-10 stsp if (argc <= 0)
153 20662ea0 2021-04-10 stsp usage(hflag, hflag ? 0 : 1);
155 20662ea0 2021-04-10 stsp signal(SIGINT, catch_sigint);
156 20662ea0 2021-04-10 stsp signal(SIGPIPE, catch_sigpipe);
158 20662ea0 2021-04-10 stsp for (i = 0; i < nitems(gotadmin_commands); i++) {
159 20662ea0 2021-04-10 stsp const struct got_error *error;
161 20662ea0 2021-04-10 stsp cmd = &gotadmin_commands[i];
163 20662ea0 2021-04-10 stsp if (strcmp(cmd->cmd_name, argv[0]) != 0 &&
164 20662ea0 2021-04-10 stsp strcmp(cmd->cmd_alias, argv[0]) != 0)
168 20662ea0 2021-04-10 stsp gotadmin_commands[i].cmd_usage();
170 20662ea0 2021-04-10 stsp error = gotadmin_commands[i].cmd_main(argc, argv);
171 20662ea0 2021-04-10 stsp if (error && error->code != GOT_ERR_CANCELLED &&
172 20662ea0 2021-04-10 stsp error->code != GOT_ERR_PRIVSEP_EXIT &&
173 20662ea0 2021-04-10 stsp !(sigpipe_received &&
174 20662ea0 2021-04-10 stsp error->code == GOT_ERR_ERRNO && errno == EPIPE) &&
175 20662ea0 2021-04-10 stsp !(sigint_received &&
176 20662ea0 2021-04-10 stsp error->code == GOT_ERR_ERRNO && errno == EINTR)) {
177 20662ea0 2021-04-10 stsp fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
184 20662ea0 2021-04-10 stsp fprintf(stderr, "%s: unknown command '%s'\n", getprogname(), argv[0]);
185 20662ea0 2021-04-10 stsp list_commands(stderr);
189 20662ea0 2021-04-10 stsp __dead static void
190 20662ea0 2021-04-10 stsp usage(int hflag, int status)
192 20662ea0 2021-04-10 stsp FILE *fp = (status == 0) ? stdout : stderr;
194 20662ea0 2021-04-10 stsp fprintf(fp, "usage: %s [-h] [-V | --version] command [arg ...]\n",
195 20662ea0 2021-04-10 stsp getprogname());
197 20662ea0 2021-04-10 stsp list_commands(fp);
198 20662ea0 2021-04-10 stsp exit(status);
201 20662ea0 2021-04-10 stsp static const struct got_error *
202 20662ea0 2021-04-10 stsp apply_unveil(const char *repo_path, int repo_read_only)
204 20662ea0 2021-04-10 stsp const struct got_error *err;
206 20662ea0 2021-04-10 stsp #ifdef PROFILE
207 20662ea0 2021-04-10 stsp if (unveil("gmon.out", "rwc") != 0)
208 20662ea0 2021-04-10 stsp return got_error_from_errno2("unveil", "gmon.out");
210 20662ea0 2021-04-10 stsp if (repo_path && unveil(repo_path, repo_read_only ? "r" : "rwc") != 0)
211 20662ea0 2021-04-10 stsp return got_error_from_errno2("unveil", repo_path);
213 20662ea0 2021-04-10 stsp if (unveil(GOT_TMPDIR_STR, "rwc") != 0)
214 20662ea0 2021-04-10 stsp return got_error_from_errno2("unveil", GOT_TMPDIR_STR);
216 20662ea0 2021-04-10 stsp err = got_privsep_unveil_exec_helpers();
217 20662ea0 2021-04-10 stsp if (err != NULL)
218 20662ea0 2021-04-10 stsp return err;
220 20662ea0 2021-04-10 stsp if (unveil(NULL, NULL) != 0)
221 20662ea0 2021-04-10 stsp return got_error_from_errno("unveil");
223 20662ea0 2021-04-10 stsp return NULL;
226 20662ea0 2021-04-10 stsp __dead static void
227 20662ea0 2021-04-10 stsp usage_info(void)
229 20662ea0 2021-04-10 stsp fprintf(stderr, "usage: %s info [-r repository-path]\n",
230 20662ea0 2021-04-10 stsp getprogname());
234 20662ea0 2021-04-10 stsp static const struct got_error *
235 20662ea0 2021-04-10 stsp cmd_info(int argc, char *argv[])
237 20662ea0 2021-04-10 stsp const struct got_error *error = NULL;
238 20662ea0 2021-04-10 stsp char *cwd = NULL, *repo_path = NULL;
239 20662ea0 2021-04-10 stsp struct got_repository *repo = NULL;
240 20662ea0 2021-04-10 stsp const struct got_gotconfig *gotconfig = NULL;
241 20662ea0 2021-04-10 stsp int ch, npackfiles, npackedobj, nobj;
242 20662ea0 2021-04-10 stsp off_t packsize, loose_size;
243 20662ea0 2021-04-10 stsp char scaled[FMT_SCALED_STRSIZE];
245 20662ea0 2021-04-10 stsp while ((ch = getopt(argc, argv, "r:")) != -1) {
246 20662ea0 2021-04-10 stsp switch (ch) {
248 20662ea0 2021-04-10 stsp repo_path = realpath(optarg, NULL);
249 20662ea0 2021-04-10 stsp if (repo_path == NULL)
250 20662ea0 2021-04-10 stsp return got_error_from_errno2("realpath",
252 20662ea0 2021-04-10 stsp got_path_strip_trailing_slashes(repo_path);
255 20662ea0 2021-04-10 stsp usage_info();
256 20662ea0 2021-04-10 stsp /* NOTREACHED */
260 20662ea0 2021-04-10 stsp argc -= optind;
261 20662ea0 2021-04-10 stsp argv += optind;
263 20662ea0 2021-04-10 stsp #ifndef PROFILE
264 20662ea0 2021-04-10 stsp if (pledge("stdio rpath wpath flock proc exec sendfd unveil",
265 20662ea0 2021-04-10 stsp NULL) == -1)
266 20662ea0 2021-04-10 stsp err(1, "pledge");
268 20662ea0 2021-04-10 stsp cwd = getcwd(NULL, 0);
269 20662ea0 2021-04-10 stsp if (cwd == NULL) {
270 20662ea0 2021-04-10 stsp error = got_error_from_errno("getcwd");
274 20662ea0 2021-04-10 stsp error = got_repo_open(&repo, repo_path ? repo_path : cwd, NULL);
278 20662ea0 2021-04-10 stsp error = apply_unveil(got_repo_get_path_git_dir(repo), 1);
282 20662ea0 2021-04-10 stsp printf("repository: %s\n", got_repo_get_path_git_dir(repo));
284 20662ea0 2021-04-10 stsp gotconfig = got_repo_get_gotconfig(repo);
285 20662ea0 2021-04-10 stsp if (gotconfig) {
286 20662ea0 2021-04-10 stsp const struct got_remote_repo *remotes;
287 20662ea0 2021-04-10 stsp int i, nremotes;
288 20662ea0 2021-04-10 stsp if (got_gotconfig_get_author(gotconfig)) {
289 20662ea0 2021-04-10 stsp printf("default author: %s\n",
290 20662ea0 2021-04-10 stsp got_gotconfig_get_author(gotconfig));
292 20662ea0 2021-04-10 stsp got_gotconfig_get_remotes(&nremotes, &remotes, gotconfig);
293 20662ea0 2021-04-10 stsp for (i = 0; i < nremotes; i++) {
294 20662ea0 2021-04-10 stsp printf("remote \"%s\": %s\n", remotes[i].name,
295 6480c871 2021-08-30 stsp remotes[i].fetch_url);
299 20662ea0 2021-04-10 stsp error = got_repo_get_packfile_info(&npackfiles, &npackedobj,
300 20662ea0 2021-04-10 stsp &packsize, repo);
303 20662ea0 2021-04-10 stsp printf("pack files: %d\n", npackfiles);
304 20662ea0 2021-04-10 stsp if (npackfiles > 0) {
305 20662ea0 2021-04-10 stsp if (fmt_scaled(packsize, scaled) == -1) {
306 20662ea0 2021-04-10 stsp error = got_error_from_errno("fmt_scaled");
309 20662ea0 2021-04-10 stsp printf("packed objects: %d\n", npackedobj);
310 20662ea0 2021-04-10 stsp printf("packed total size: %s\n", scaled);
313 20662ea0 2021-04-10 stsp error = got_repo_get_loose_object_info(&nobj, &loose_size, repo);
316 20662ea0 2021-04-10 stsp printf("loose objects: %d\n", nobj);
317 20662ea0 2021-04-10 stsp if (nobj > 0) {
318 20662ea0 2021-04-10 stsp if (fmt_scaled(loose_size, scaled) == -1) {
319 20662ea0 2021-04-10 stsp error = got_error_from_errno("fmt_scaled");
322 20662ea0 2021-04-10 stsp printf("loose total size: %s\n", scaled);
326 20662ea0 2021-04-10 stsp got_repo_close(repo);
328 20662ea0 2021-04-10 stsp return error;
331 05118f5a 2021-06-22 stsp __dead static void
332 05118f5a 2021-06-22 stsp usage_pack(void)
334 05118f5a 2021-06-22 stsp fprintf(stderr, "usage: %s pack [-a] [-r repository-path] "
335 05118f5a 2021-06-22 stsp "[-x reference] [reference ...]\n",
336 05118f5a 2021-06-22 stsp getprogname());
340 05118f5a 2021-06-22 stsp struct got_pack_progress_arg {
341 05118f5a 2021-06-22 stsp char last_scaled_size[FMT_SCALED_STRSIZE];
342 05118f5a 2021-06-22 stsp int last_ncommits;
343 05118f5a 2021-06-22 stsp int last_nobj_total;
344 05118f5a 2021-06-22 stsp int last_p_deltify;
345 05118f5a 2021-06-22 stsp int last_p_written;
346 05118f5a 2021-06-22 stsp int last_p_indexed;
347 05118f5a 2021-06-22 stsp int last_p_resolved;
348 05118f5a 2021-06-22 stsp int verbosity;
349 05118f5a 2021-06-22 stsp int printed_something;
352 05118f5a 2021-06-22 stsp static const struct got_error *
353 05118f5a 2021-06-22 stsp pack_progress(void *arg, off_t packfile_size, int ncommits,
354 05118f5a 2021-06-22 stsp int nobj_total, int nobj_deltify, int nobj_written)
356 05118f5a 2021-06-22 stsp struct got_pack_progress_arg *a = arg;
357 05118f5a 2021-06-22 stsp char scaled_size[FMT_SCALED_STRSIZE];
358 05118f5a 2021-06-22 stsp int p_deltify, p_written;
359 05118f5a 2021-06-22 stsp int print_searching = 0, print_total = 0;
360 05118f5a 2021-06-22 stsp int print_deltify = 0, print_written = 0;
362 05118f5a 2021-06-22 stsp if (a->verbosity < 0)
363 05118f5a 2021-06-22 stsp return NULL;
365 05118f5a 2021-06-22 stsp if (fmt_scaled(packfile_size, scaled_size) == -1)
366 05118f5a 2021-06-22 stsp return got_error_from_errno("fmt_scaled");
368 05118f5a 2021-06-22 stsp if (a->last_ncommits != ncommits) {
369 05118f5a 2021-06-22 stsp print_searching = 1;
370 05118f5a 2021-06-22 stsp a->last_ncommits = ncommits;
373 05118f5a 2021-06-22 stsp if (a->last_nobj_total != nobj_total) {
374 05118f5a 2021-06-22 stsp print_searching = 1;
375 05118f5a 2021-06-22 stsp print_total = 1;
376 05118f5a 2021-06-22 stsp a->last_nobj_total = nobj_total;
379 05118f5a 2021-06-22 stsp if (packfile_size > 0 && (a->last_scaled_size[0] == '\0' ||
380 05118f5a 2021-06-22 stsp strcmp(scaled_size, a->last_scaled_size)) != 0) {
381 05118f5a 2021-06-22 stsp if (strlcpy(a->last_scaled_size, scaled_size,
382 05118f5a 2021-06-22 stsp FMT_SCALED_STRSIZE) >= FMT_SCALED_STRSIZE)
383 05118f5a 2021-06-22 stsp return got_error(GOT_ERR_NO_SPACE);
386 05118f5a 2021-06-22 stsp if (nobj_deltify > 0 || nobj_written > 0) {
387 05118f5a 2021-06-22 stsp if (nobj_deltify > 0) {
388 05118f5a 2021-06-22 stsp p_deltify = (nobj_deltify * 100) / nobj_total;
389 05118f5a 2021-06-22 stsp if (p_deltify != a->last_p_deltify) {
390 05118f5a 2021-06-22 stsp a->last_p_deltify = p_deltify;
391 05118f5a 2021-06-22 stsp print_searching = 1;
392 05118f5a 2021-06-22 stsp print_total = 1;
393 05118f5a 2021-06-22 stsp print_deltify = 1;
396 05118f5a 2021-06-22 stsp if (nobj_written > 0) {
397 05118f5a 2021-06-22 stsp p_written = (nobj_written * 100) / nobj_total;
398 05118f5a 2021-06-22 stsp if (p_written != a->last_p_written) {
399 05118f5a 2021-06-22 stsp a->last_p_written = p_written;
400 05118f5a 2021-06-22 stsp print_searching = 1;
401 05118f5a 2021-06-22 stsp print_total = 1;
402 05118f5a 2021-06-22 stsp print_deltify = 1;
403 05118f5a 2021-06-22 stsp print_written = 1;
408 05118f5a 2021-06-22 stsp if (print_searching || print_total || print_deltify || print_written)
409 05118f5a 2021-06-22 stsp printf("\r");
410 05118f5a 2021-06-22 stsp if (print_searching)
411 05118f5a 2021-06-22 stsp printf("packing %d reference%s", ncommits,
412 05118f5a 2021-06-22 stsp ncommits == 1 ? "" : "s");
413 05118f5a 2021-06-22 stsp if (print_total)
414 05118f5a 2021-06-22 stsp printf("; %d object%s", nobj_total,
415 05118f5a 2021-06-22 stsp nobj_total == 1 ? "" : "s");
416 05118f5a 2021-06-22 stsp if (print_deltify)
417 05118f5a 2021-06-22 stsp printf("; deltify: %d%%", p_deltify);
418 05118f5a 2021-06-22 stsp if (print_written)
419 05118f5a 2021-06-22 stsp printf("; writing pack: %*s %d%%", FMT_SCALED_STRSIZE,
420 05118f5a 2021-06-22 stsp scaled_size, p_written);
421 05118f5a 2021-06-22 stsp if (print_searching || print_total || print_deltify ||
422 05118f5a 2021-06-22 stsp print_written) {
423 05118f5a 2021-06-22 stsp a->printed_something = 1;
424 05118f5a 2021-06-22 stsp fflush(stdout);
426 05118f5a 2021-06-22 stsp return NULL;
429 05118f5a 2021-06-22 stsp static const struct got_error *
430 05118f5a 2021-06-22 stsp pack_index_progress(void *arg, off_t packfile_size, int nobj_total,
431 05118f5a 2021-06-22 stsp int nobj_indexed, int nobj_loose, int nobj_resolved)
433 05118f5a 2021-06-22 stsp struct got_pack_progress_arg *a = arg;
434 05118f5a 2021-06-22 stsp char scaled_size[FMT_SCALED_STRSIZE];
435 05118f5a 2021-06-22 stsp int p_indexed, p_resolved;
436 05118f5a 2021-06-22 stsp int print_size = 0, print_indexed = 0, print_resolved = 0;
438 05118f5a 2021-06-22 stsp if (a->verbosity < 0)
439 05118f5a 2021-06-22 stsp return NULL;
441 05118f5a 2021-06-22 stsp if (packfile_size > 0 || nobj_indexed > 0) {
442 05118f5a 2021-06-22 stsp if (fmt_scaled(packfile_size, scaled_size) == 0 &&
443 05118f5a 2021-06-22 stsp (a->last_scaled_size[0] == '\0' ||
444 05118f5a 2021-06-22 stsp strcmp(scaled_size, a->last_scaled_size)) != 0) {
445 05118f5a 2021-06-22 stsp print_size = 1;
446 05118f5a 2021-06-22 stsp if (strlcpy(a->last_scaled_size, scaled_size,
447 05118f5a 2021-06-22 stsp FMT_SCALED_STRSIZE) >= FMT_SCALED_STRSIZE)
448 05118f5a 2021-06-22 stsp return got_error(GOT_ERR_NO_SPACE);
450 05118f5a 2021-06-22 stsp if (nobj_indexed > 0) {
451 05118f5a 2021-06-22 stsp p_indexed = (nobj_indexed * 100) / nobj_total;
452 05118f5a 2021-06-22 stsp if (p_indexed != a->last_p_indexed) {
453 05118f5a 2021-06-22 stsp a->last_p_indexed = p_indexed;
454 05118f5a 2021-06-22 stsp print_indexed = 1;
455 05118f5a 2021-06-22 stsp print_size = 1;
458 05118f5a 2021-06-22 stsp if (nobj_resolved > 0) {
459 05118f5a 2021-06-22 stsp p_resolved = (nobj_resolved * 100) /
460 05118f5a 2021-06-22 stsp (nobj_total - nobj_loose);
461 05118f5a 2021-06-22 stsp if (p_resolved != a->last_p_resolved) {
462 05118f5a 2021-06-22 stsp a->last_p_resolved = p_resolved;
463 05118f5a 2021-06-22 stsp print_resolved = 1;
464 05118f5a 2021-06-22 stsp print_indexed = 1;
465 05118f5a 2021-06-22 stsp print_size = 1;
470 05118f5a 2021-06-22 stsp if (print_size || print_indexed || print_resolved)
471 05118f5a 2021-06-22 stsp printf("\r");
472 05118f5a 2021-06-22 stsp if (print_size)
473 05118f5a 2021-06-22 stsp printf("%*s packed", FMT_SCALED_STRSIZE, scaled_size);
474 05118f5a 2021-06-22 stsp if (print_indexed)
475 05118f5a 2021-06-22 stsp printf("; indexing %d%%", p_indexed);
476 05118f5a 2021-06-22 stsp if (print_resolved)
477 05118f5a 2021-06-22 stsp printf("; resolving deltas %d%%", p_resolved);
478 05118f5a 2021-06-22 stsp if (print_size || print_indexed || print_resolved)
479 05118f5a 2021-06-22 stsp fflush(stdout);
481 05118f5a 2021-06-22 stsp return NULL;
484 05118f5a 2021-06-22 stsp static const struct got_error *
485 05118f5a 2021-06-22 stsp add_ref(struct got_reflist_entry **new, struct got_reflist_head *refs,
486 05118f5a 2021-06-22 stsp const char *refname, struct got_repository *repo)
488 05118f5a 2021-06-22 stsp const struct got_error *err;
489 05118f5a 2021-06-22 stsp struct got_reference *ref;
491 05118f5a 2021-06-22 stsp *new = NULL;
493 05118f5a 2021-06-22 stsp err = got_ref_open(&ref, repo, refname, 0);
495 05118f5a 2021-06-22 stsp if (err->code != GOT_ERR_NOT_REF)
496 05118f5a 2021-06-22 stsp return err;
498 05118f5a 2021-06-22 stsp /* Treat argument as a reference prefix. */
499 05118f5a 2021-06-22 stsp err = got_ref_list(refs, repo, refname,
500 05118f5a 2021-06-22 stsp got_ref_cmp_by_name, NULL);
502 72acb3d8 2021-08-06 stsp err = got_reflist_insert(new, refs, ref,
503 05118f5a 2021-06-22 stsp got_ref_cmp_by_name, NULL);
504 05118f5a 2021-06-22 stsp if (err || *new == NULL /* duplicate */)
505 05118f5a 2021-06-22 stsp got_ref_close(ref);
508 05118f5a 2021-06-22 stsp return err;
511 05118f5a 2021-06-22 stsp static const struct got_error *
512 05118f5a 2021-06-22 stsp cmd_pack(int argc, char *argv[])
514 05118f5a 2021-06-22 stsp const struct got_error *error = NULL;
515 05118f5a 2021-06-22 stsp char *cwd = NULL, *repo_path = NULL;
516 05118f5a 2021-06-22 stsp struct got_repository *repo = NULL;
517 05118f5a 2021-06-22 stsp int ch, i, loose_obj_only = 1;
518 05118f5a 2021-06-22 stsp struct got_object_id *pack_hash = NULL;
519 05118f5a 2021-06-22 stsp char *id_str = NULL;
520 05118f5a 2021-06-22 stsp struct got_pack_progress_arg ppa;
521 05118f5a 2021-06-22 stsp FILE *packfile = NULL;
522 05118f5a 2021-06-22 stsp struct got_pathlist_head exclude_args;
523 05118f5a 2021-06-22 stsp struct got_pathlist_entry *pe;
524 05118f5a 2021-06-22 stsp struct got_reflist_head exclude_refs;
525 05118f5a 2021-06-22 stsp struct got_reflist_head include_refs;
526 05118f5a 2021-06-22 stsp struct got_reflist_entry *re, *new;
528 05118f5a 2021-06-22 stsp TAILQ_INIT(&exclude_args);
529 05118f5a 2021-06-22 stsp TAILQ_INIT(&exclude_refs);
530 05118f5a 2021-06-22 stsp TAILQ_INIT(&include_refs);
532 05118f5a 2021-06-22 stsp while ((ch = getopt(argc, argv, "ar:x:")) != -1) {
533 05118f5a 2021-06-22 stsp switch (ch) {
535 05118f5a 2021-06-22 stsp loose_obj_only = 0;
538 05118f5a 2021-06-22 stsp repo_path = realpath(optarg, NULL);
539 05118f5a 2021-06-22 stsp if (repo_path == NULL)
540 05118f5a 2021-06-22 stsp return got_error_from_errno2("realpath",
542 05118f5a 2021-06-22 stsp got_path_strip_trailing_slashes(repo_path);
545 05118f5a 2021-06-22 stsp got_path_strip_trailing_slashes(optarg);
546 05118f5a 2021-06-22 stsp error = got_pathlist_append(&exclude_args,
547 05118f5a 2021-06-22 stsp optarg, NULL);
549 05118f5a 2021-06-22 stsp return error;
552 05118f5a 2021-06-22 stsp usage_pack();
553 05118f5a 2021-06-22 stsp /* NOTREACHED */
557 05118f5a 2021-06-22 stsp argc -= optind;
558 05118f5a 2021-06-22 stsp argv += optind;
560 05118f5a 2021-06-22 stsp #ifndef PROFILE
561 05118f5a 2021-06-22 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd unveil",
562 05118f5a 2021-06-22 stsp NULL) == -1)
563 05118f5a 2021-06-22 stsp err(1, "pledge");
565 05118f5a 2021-06-22 stsp cwd = getcwd(NULL, 0);
566 05118f5a 2021-06-22 stsp if (cwd == NULL) {
567 05118f5a 2021-06-22 stsp error = got_error_from_errno("getcwd");
571 05118f5a 2021-06-22 stsp error = got_repo_open(&repo, repo_path ? repo_path : cwd, NULL);
575 bb5126ea 2021-06-22 stsp error = apply_unveil(got_repo_get_path_git_dir(repo), 0);
579 05118f5a 2021-06-22 stsp TAILQ_FOREACH(pe, &exclude_args, entry) {
580 05118f5a 2021-06-22 stsp const char *refname = pe->path;
581 05118f5a 2021-06-22 stsp error = add_ref(&new, &exclude_refs, refname, repo);
587 05118f5a 2021-06-22 stsp if (argc == 0) {
588 05118f5a 2021-06-22 stsp error = got_ref_list(&include_refs, repo, "",
589 05118f5a 2021-06-22 stsp got_ref_cmp_by_name, NULL);
593 05118f5a 2021-06-22 stsp for (i = 0; i < argc; i++) {
594 05118f5a 2021-06-22 stsp const char *refname;
595 05118f5a 2021-06-22 stsp got_path_strip_trailing_slashes(argv[i]);
596 05118f5a 2021-06-22 stsp refname = argv[i];
597 05118f5a 2021-06-22 stsp error = add_ref(&new, &include_refs, refname, repo);
603 05118f5a 2021-06-22 stsp /* Ignore references in the refs/got/ namespace. */
604 05118f5a 2021-06-22 stsp TAILQ_FOREACH_SAFE(re, &include_refs, entry, new) {
605 05118f5a 2021-06-22 stsp const char *refname = got_ref_get_name(re->ref);
606 05118f5a 2021-06-22 stsp if (strncmp("refs/got/", refname, 9) != 0)
608 05118f5a 2021-06-22 stsp TAILQ_REMOVE(&include_refs, re, entry);
609 05118f5a 2021-06-22 stsp got_ref_close(re->ref);
613 05118f5a 2021-06-22 stsp memset(&ppa, 0, sizeof(ppa));
614 05118f5a 2021-06-22 stsp ppa.last_scaled_size[0] = '\0';
615 05118f5a 2021-06-22 stsp ppa.last_p_indexed = -1;
616 05118f5a 2021-06-22 stsp ppa.last_p_resolved = -1;
618 05118f5a 2021-06-22 stsp error = got_repo_pack_objects(&packfile, &pack_hash,
619 05118f5a 2021-06-22 stsp &include_refs, &exclude_refs, repo, loose_obj_only,
620 05118f5a 2021-06-22 stsp pack_progress, &ppa, check_cancelled, NULL);
621 05118f5a 2021-06-22 stsp if (error) {
622 05118f5a 2021-06-22 stsp if (ppa.printed_something)
623 05118f5a 2021-06-22 stsp printf("\n");
627 05118f5a 2021-06-22 stsp error = got_object_id_str(&id_str, pack_hash);
630 05118f5a 2021-06-22 stsp printf("\nWrote %s.pack\n", id_str);
632 05118f5a 2021-06-22 stsp error = got_repo_index_pack(packfile, pack_hash, repo,
633 05118f5a 2021-06-22 stsp pack_index_progress, &ppa, check_cancelled, NULL);
636 05118f5a 2021-06-22 stsp printf("\nIndexed %s.pack\n", id_str);
638 05118f5a 2021-06-22 stsp got_pathlist_free(&exclude_args);
639 05118f5a 2021-06-22 stsp got_ref_list_free(&exclude_refs);
640 05118f5a 2021-06-22 stsp got_ref_list_free(&include_refs);
641 05118f5a 2021-06-22 stsp free(id_str);
642 05118f5a 2021-06-22 stsp free(pack_hash);
644 05118f5a 2021-06-22 stsp return error;
647 05118f5a 2021-06-22 stsp __dead static void
648 05118f5a 2021-06-22 stsp usage_indexpack(void)
650 05118f5a 2021-06-22 stsp fprintf(stderr, "usage: %s indexpack packfile-path\n",
651 05118f5a 2021-06-22 stsp getprogname());
655 05118f5a 2021-06-22 stsp static const struct got_error *
656 05118f5a 2021-06-22 stsp cmd_indexpack(int argc, char *argv[])
658 05118f5a 2021-06-22 stsp const struct got_error *error = NULL;
659 05118f5a 2021-06-22 stsp struct got_repository *repo = NULL;
661 05118f5a 2021-06-22 stsp struct got_object_id *pack_hash = NULL;
662 05118f5a 2021-06-22 stsp char *packfile_path = NULL;
663 05118f5a 2021-06-22 stsp char *id_str = NULL;
664 05118f5a 2021-06-22 stsp struct got_pack_progress_arg ppa;
665 05118f5a 2021-06-22 stsp FILE *packfile = NULL;
667 05118f5a 2021-06-22 stsp while ((ch = getopt(argc, argv, "")) != -1) {
668 05118f5a 2021-06-22 stsp switch (ch) {
670 05118f5a 2021-06-22 stsp usage_indexpack();
671 05118f5a 2021-06-22 stsp /* NOTREACHED */
675 05118f5a 2021-06-22 stsp argc -= optind;
676 05118f5a 2021-06-22 stsp argv += optind;
678 05118f5a 2021-06-22 stsp if (argc != 1)
679 05118f5a 2021-06-22 stsp usage_indexpack();
681 05118f5a 2021-06-22 stsp packfile_path = realpath(argv[0], NULL);
682 05118f5a 2021-06-22 stsp if (packfile_path == NULL)
683 05118f5a 2021-06-22 stsp return got_error_from_errno2("realpath", argv[0]);
685 05118f5a 2021-06-22 stsp #ifndef PROFILE
686 05118f5a 2021-06-22 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd unveil",
687 05118f5a 2021-06-22 stsp NULL) == -1)
688 05118f5a 2021-06-22 stsp err(1, "pledge");
691 05118f5a 2021-06-22 stsp error = got_repo_open(&repo, packfile_path, NULL);
695 05118f5a 2021-06-22 stsp error = apply_unveil(got_repo_get_path_git_dir(repo), 1);
699 05118f5a 2021-06-22 stsp memset(&ppa, 0, sizeof(ppa));
700 05118f5a 2021-06-22 stsp ppa.last_scaled_size[0] = '\0';
701 05118f5a 2021-06-22 stsp ppa.last_p_indexed = -1;
702 05118f5a 2021-06-22 stsp ppa.last_p_resolved = -1;
704 05118f5a 2021-06-22 stsp error = got_repo_find_pack(&packfile, &pack_hash, repo,
705 05118f5a 2021-06-22 stsp packfile_path);
709 05118f5a 2021-06-22 stsp error = got_object_id_str(&id_str, pack_hash);
713 05118f5a 2021-06-22 stsp error = got_repo_index_pack(packfile, pack_hash, repo,
714 05118f5a 2021-06-22 stsp pack_index_progress, &ppa, check_cancelled, NULL);
717 05118f5a 2021-06-22 stsp printf("\nIndexed %s.pack\n", id_str);
719 05118f5a 2021-06-22 stsp free(id_str);
720 05118f5a 2021-06-22 stsp free(pack_hash);
721 05118f5a 2021-06-22 stsp return error;
724 05118f5a 2021-06-22 stsp __dead static void
725 05118f5a 2021-06-22 stsp usage_listpack(void)
727 05118f5a 2021-06-22 stsp fprintf(stderr, "usage: %s listpack [-h] [-s] packfile-path\n",
728 05118f5a 2021-06-22 stsp getprogname());
732 05118f5a 2021-06-22 stsp struct gotadmin_list_pack_cb_args {
733 05118f5a 2021-06-22 stsp int nblobs;
734 05118f5a 2021-06-22 stsp int ntrees;
735 05118f5a 2021-06-22 stsp int ncommits;
737 05118f5a 2021-06-22 stsp int noffdeltas;
738 05118f5a 2021-06-22 stsp int nrefdeltas;
739 05118f5a 2021-06-22 stsp int human_readable;
742 05118f5a 2021-06-22 stsp static const struct got_error *
743 05118f5a 2021-06-22 stsp list_pack_cb(void *arg, struct got_object_id *id, int type, off_t offset,
744 05118f5a 2021-06-22 stsp off_t size, off_t base_offset, struct got_object_id *base_id)
746 05118f5a 2021-06-22 stsp const struct got_error *err;
747 05118f5a 2021-06-22 stsp struct gotadmin_list_pack_cb_args *a = arg;
748 05118f5a 2021-06-22 stsp char *id_str, *delta_str = NULL, *base_id_str = NULL;
749 05118f5a 2021-06-22 stsp const char *type_str;
751 05118f5a 2021-06-22 stsp err = got_object_id_str(&id_str, id);
753 05118f5a 2021-06-22 stsp return err;
755 05118f5a 2021-06-22 stsp switch (type) {
756 05118f5a 2021-06-22 stsp case GOT_OBJ_TYPE_BLOB:
757 05118f5a 2021-06-22 stsp type_str = GOT_OBJ_LABEL_BLOB;
758 05118f5a 2021-06-22 stsp a->nblobs++;
760 05118f5a 2021-06-22 stsp case GOT_OBJ_TYPE_TREE:
761 05118f5a 2021-06-22 stsp type_str = GOT_OBJ_LABEL_TREE;
762 05118f5a 2021-06-22 stsp a->ntrees++;
764 05118f5a 2021-06-22 stsp case GOT_OBJ_TYPE_COMMIT:
765 05118f5a 2021-06-22 stsp type_str = GOT_OBJ_LABEL_COMMIT;
766 05118f5a 2021-06-22 stsp a->ncommits++;
768 05118f5a 2021-06-22 stsp case GOT_OBJ_TYPE_TAG:
769 05118f5a 2021-06-22 stsp type_str = GOT_OBJ_LABEL_TAG;
770 05118f5a 2021-06-22 stsp a->ntags++;
772 05118f5a 2021-06-22 stsp case GOT_OBJ_TYPE_OFFSET_DELTA:
773 05118f5a 2021-06-22 stsp type_str = "offset-delta";
774 05118f5a 2021-06-22 stsp if (asprintf(&delta_str, " base-offset %llu",
775 05118f5a 2021-06-22 stsp base_offset) == -1) {
776 05118f5a 2021-06-22 stsp err = got_error_from_errno("asprintf");
779 05118f5a 2021-06-22 stsp a->noffdeltas++;
781 05118f5a 2021-06-22 stsp case GOT_OBJ_TYPE_REF_DELTA:
782 05118f5a 2021-06-22 stsp type_str = "ref-delta";
783 05118f5a 2021-06-22 stsp err = got_object_id_str(&base_id_str, base_id);
786 05118f5a 2021-06-22 stsp if (asprintf(&delta_str, " base-id %s", base_id_str) == -1) {
787 05118f5a 2021-06-22 stsp err = got_error_from_errno("asprintf");
790 05118f5a 2021-06-22 stsp a->nrefdeltas++;
793 05118f5a 2021-06-22 stsp err = got_error(GOT_ERR_OBJ_TYPE);
796 05118f5a 2021-06-22 stsp if (a->human_readable) {
797 05118f5a 2021-06-22 stsp char scaled[FMT_SCALED_STRSIZE];
799 05118f5a 2021-06-22 stsp if (fmt_scaled(size, scaled) == -1) {
800 05118f5a 2021-06-22 stsp err = got_error_from_errno("fmt_scaled");
803 05118f5a 2021-06-22 stsp s = scaled;
804 05118f5a 2021-06-22 stsp while (isspace((unsigned char)*s))
806 05118f5a 2021-06-22 stsp printf("%s %s at %llu size %s%s\n", id_str, type_str, offset,
807 05118f5a 2021-06-22 stsp s, delta_str ? delta_str : "");
809 05118f5a 2021-06-22 stsp printf("%s %s at %llu size %llu%s\n", id_str, type_str, offset,
810 05118f5a 2021-06-22 stsp size, delta_str ? delta_str : "");
813 05118f5a 2021-06-22 stsp free(id_str);
814 05118f5a 2021-06-22 stsp free(base_id_str);
815 05118f5a 2021-06-22 stsp free(delta_str);
816 05118f5a 2021-06-22 stsp return err;
819 05118f5a 2021-06-22 stsp static const struct got_error *
820 05118f5a 2021-06-22 stsp cmd_listpack(int argc, char *argv[])
822 05118f5a 2021-06-22 stsp const struct got_error *error = NULL;
823 05118f5a 2021-06-22 stsp struct got_repository *repo = NULL;
825 05118f5a 2021-06-22 stsp struct got_object_id *pack_hash = NULL;
826 05118f5a 2021-06-22 stsp char *packfile_path = NULL;
827 05118f5a 2021-06-22 stsp char *id_str = NULL;
828 05118f5a 2021-06-22 stsp struct gotadmin_list_pack_cb_args lpa;
829 05118f5a 2021-06-22 stsp FILE *packfile = NULL;
830 05118f5a 2021-06-22 stsp int show_stats = 0, human_readable = 0;
832 05118f5a 2021-06-22 stsp while ((ch = getopt(argc, argv, "hs")) != -1) {
833 05118f5a 2021-06-22 stsp switch (ch) {
835 05118f5a 2021-06-22 stsp human_readable = 1;
838 05118f5a 2021-06-22 stsp show_stats = 1;
841 05118f5a 2021-06-22 stsp usage_listpack();
842 05118f5a 2021-06-22 stsp /* NOTREACHED */
846 05118f5a 2021-06-22 stsp argc -= optind;
847 05118f5a 2021-06-22 stsp argv += optind;
849 05118f5a 2021-06-22 stsp if (argc != 1)
850 05118f5a 2021-06-22 stsp usage_listpack();
851 05118f5a 2021-06-22 stsp packfile_path = realpath(argv[0], NULL);
852 05118f5a 2021-06-22 stsp if (packfile_path == NULL)
853 05118f5a 2021-06-22 stsp return got_error_from_errno2("realpath", argv[0]);
855 05118f5a 2021-06-22 stsp #ifndef PROFILE
856 05118f5a 2021-06-22 stsp if (pledge("stdio rpath wpath flock proc exec sendfd unveil",
857 05118f5a 2021-06-22 stsp NULL) == -1)
858 05118f5a 2021-06-22 stsp err(1, "pledge");
860 05118f5a 2021-06-22 stsp error = got_repo_open(&repo, packfile_path, NULL);
864 05118f5a 2021-06-22 stsp error = apply_unveil(got_repo_get_path_git_dir(repo), 1);
868 05118f5a 2021-06-22 stsp error = got_repo_find_pack(&packfile, &pack_hash, repo,
869 05118f5a 2021-06-22 stsp packfile_path);
872 05118f5a 2021-06-22 stsp error = got_object_id_str(&id_str, pack_hash);
876 05118f5a 2021-06-22 stsp memset(&lpa, 0, sizeof(lpa));
877 05118f5a 2021-06-22 stsp lpa.human_readable = human_readable;
878 05118f5a 2021-06-22 stsp error = got_repo_list_pack(packfile, pack_hash, repo,
879 05118f5a 2021-06-22 stsp list_pack_cb, &lpa, check_cancelled, NULL);
882 05118f5a 2021-06-22 stsp if (show_stats) {
883 05118f5a 2021-06-22 stsp printf("objects: %d\n blobs: %d\n trees: %d\n commits: %d\n"
884 05118f5a 2021-06-22 stsp " tags: %d\n offset-deltas: %d\n ref-deltas: %d\n",
885 05118f5a 2021-06-22 stsp lpa.nblobs + lpa.ntrees + lpa.ncommits + lpa.ntags +
886 05118f5a 2021-06-22 stsp lpa.noffdeltas + lpa.nrefdeltas,
887 05118f5a 2021-06-22 stsp lpa.nblobs, lpa.ntrees, lpa.ncommits, lpa.ntags,
888 05118f5a 2021-06-22 stsp lpa.noffdeltas, lpa.nrefdeltas);
891 05118f5a 2021-06-22 stsp free(id_str);
892 05118f5a 2021-06-22 stsp free(pack_hash);
893 05118f5a 2021-06-22 stsp free(packfile_path);
894 05118f5a 2021-06-22 stsp return error;
897 b3d68e7f 2021-07-03 stsp __dead static void
898 b3d68e7f 2021-07-03 stsp usage_cleanup(void)
900 ef8ec606 2021-07-27 stsp fprintf(stderr, "usage: %s cleanup [-a] [-p] [-n] [-r repository-path] "
901 1124fe40 2021-07-07 stsp "[-q]\n", getprogname());
905 b3d68e7f 2021-07-03 stsp struct got_cleanup_progress_arg {
906 b3d68e7f 2021-07-03 stsp int last_nloose;
907 b3d68e7f 2021-07-03 stsp int last_ncommits;
908 b3d68e7f 2021-07-03 stsp int last_npurged;
909 b3d68e7f 2021-07-03 stsp int verbosity;
910 b3d68e7f 2021-07-03 stsp int printed_something;
911 b3d68e7f 2021-07-03 stsp int dry_run;
914 b3d68e7f 2021-07-03 stsp static const struct got_error *
915 b3d68e7f 2021-07-03 stsp cleanup_progress(void *arg, int nloose, int ncommits, int npurged)
917 b3d68e7f 2021-07-03 stsp struct got_cleanup_progress_arg *a = arg;
918 b3d68e7f 2021-07-03 stsp int print_loose = 0, print_commits = 0, print_purged = 0;
920 b3d68e7f 2021-07-03 stsp if (a->last_nloose != nloose) {
921 b3d68e7f 2021-07-03 stsp print_loose = 1;
922 b3d68e7f 2021-07-03 stsp a->last_nloose = nloose;
924 b3d68e7f 2021-07-03 stsp if (a->last_ncommits != ncommits) {
925 b3d68e7f 2021-07-03 stsp print_loose = 1;
926 b3d68e7f 2021-07-03 stsp print_commits = 1;
927 b3d68e7f 2021-07-03 stsp a->last_ncommits = ncommits;
929 b3d68e7f 2021-07-03 stsp if (a->last_npurged != npurged) {
930 b3d68e7f 2021-07-03 stsp print_loose = 1;
931 b3d68e7f 2021-07-03 stsp print_commits = 1;
932 b3d68e7f 2021-07-03 stsp print_purged = 1;
933 b3d68e7f 2021-07-03 stsp a->last_npurged = npurged;
936 b3d68e7f 2021-07-03 stsp if (a->verbosity < 0)
937 b3d68e7f 2021-07-03 stsp return NULL;
939 b3d68e7f 2021-07-03 stsp if (print_loose || print_commits || print_purged)
940 b3d68e7f 2021-07-03 stsp printf("\r");
941 b3d68e7f 2021-07-03 stsp if (print_loose)
942 b3d68e7f 2021-07-03 stsp printf("%d loose object%s", nloose, nloose == 1 ? "" : "s");
943 b3d68e7f 2021-07-03 stsp if (print_commits)
944 b3d68e7f 2021-07-03 stsp printf("; %d commit%s scanned", ncommits,
945 b3d68e7f 2021-07-03 stsp ncommits == 1 ? "" : "s");
946 b3d68e7f 2021-07-03 stsp if (print_purged) {
947 b3d68e7f 2021-07-03 stsp if (a->dry_run) {
948 b3d68e7f 2021-07-03 stsp printf("; %d object%s could be purged", npurged,
949 b3d68e7f 2021-07-03 stsp npurged == 1 ? "" : "s");
951 b3d68e7f 2021-07-03 stsp printf("; %d object%s purged", npurged,
952 b3d68e7f 2021-07-03 stsp npurged == 1 ? "" : "s");
955 b3d68e7f 2021-07-03 stsp if (print_loose || print_commits || print_purged) {
956 b3d68e7f 2021-07-03 stsp a->printed_something = 1;
957 b3d68e7f 2021-07-03 stsp fflush(stdout);
959 b3d68e7f 2021-07-03 stsp return NULL;
962 1124fe40 2021-07-07 stsp struct got_lonely_packidx_progress_arg {
963 1124fe40 2021-07-07 stsp int verbosity;
964 1124fe40 2021-07-07 stsp int printed_something;
965 1124fe40 2021-07-07 stsp int dry_run;
968 b3d68e7f 2021-07-03 stsp static const struct got_error *
969 1124fe40 2021-07-07 stsp lonely_packidx_progress(void *arg, const char *path)
971 1124fe40 2021-07-07 stsp struct got_lonely_packidx_progress_arg *a = arg;
973 1124fe40 2021-07-07 stsp if (a->verbosity < 0)
974 1124fe40 2021-07-07 stsp return NULL;
976 1124fe40 2021-07-07 stsp if (a->dry_run)
977 1124fe40 2021-07-07 stsp printf("%s could be removed\n", path);
979 1124fe40 2021-07-07 stsp printf("%s removed\n", path);
981 1124fe40 2021-07-07 stsp a->printed_something = 1;
982 1124fe40 2021-07-07 stsp return NULL;
985 1124fe40 2021-07-07 stsp static const struct got_error *
986 b3d68e7f 2021-07-03 stsp cmd_cleanup(int argc, char *argv[])
988 b3d68e7f 2021-07-03 stsp const struct got_error *error = NULL;
989 b3d68e7f 2021-07-03 stsp char *cwd = NULL, *repo_path = NULL;
990 b3d68e7f 2021-07-03 stsp struct got_repository *repo = NULL;
991 b3d68e7f 2021-07-03 stsp int ch, dry_run = 0, npacked = 0, verbosity = 0;
992 ef8ec606 2021-07-27 stsp int remove_lonely_packidx = 0, ignore_mtime = 0;
993 b3d68e7f 2021-07-03 stsp struct got_cleanup_progress_arg cpa;
994 1124fe40 2021-07-07 stsp struct got_lonely_packidx_progress_arg lpa;
995 b3d68e7f 2021-07-03 stsp off_t size_before, size_after;
996 b3d68e7f 2021-07-03 stsp char scaled_before[FMT_SCALED_STRSIZE];
997 b3d68e7f 2021-07-03 stsp char scaled_after[FMT_SCALED_STRSIZE];
998 b3d68e7f 2021-07-03 stsp char scaled_diff[FMT_SCALED_STRSIZE];
999 9188bd78 2021-07-03 stsp char **extensions;
1000 9188bd78 2021-07-03 stsp int nextensions, i;
1002 ef8ec606 2021-07-27 stsp while ((ch = getopt(argc, argv, "apr:nq")) != -1) {
1003 b3d68e7f 2021-07-03 stsp switch (ch) {
1005 ef8ec606 2021-07-27 stsp ignore_mtime = 1;
1008 1124fe40 2021-07-07 stsp remove_lonely_packidx = 1;
1011 b3d68e7f 2021-07-03 stsp repo_path = realpath(optarg, NULL);
1012 b3d68e7f 2021-07-03 stsp if (repo_path == NULL)
1013 b3d68e7f 2021-07-03 stsp return got_error_from_errno2("realpath",
1015 b3d68e7f 2021-07-03 stsp got_path_strip_trailing_slashes(repo_path);
1018 b3d68e7f 2021-07-03 stsp dry_run = 1;
1021 b3d68e7f 2021-07-03 stsp verbosity = -1;
1024 b3d68e7f 2021-07-03 stsp usage_cleanup();
1025 b3d68e7f 2021-07-03 stsp /* NOTREACHED */
1029 b3d68e7f 2021-07-03 stsp argc -= optind;
1030 b3d68e7f 2021-07-03 stsp argv += optind;
1032 b3d68e7f 2021-07-03 stsp #ifndef PROFILE
1033 b3d68e7f 2021-07-03 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
1034 b3d68e7f 2021-07-03 stsp NULL) == -1)
1035 b3d68e7f 2021-07-03 stsp err(1, "pledge");
1037 b3d68e7f 2021-07-03 stsp cwd = getcwd(NULL, 0);
1038 b3d68e7f 2021-07-03 stsp if (cwd == NULL) {
1039 b3d68e7f 2021-07-03 stsp error = got_error_from_errno("getcwd");
1040 b3d68e7f 2021-07-03 stsp goto done;
1043 b3d68e7f 2021-07-03 stsp error = got_repo_open(&repo, repo_path ? repo_path : cwd, NULL);
1044 b3d68e7f 2021-07-03 stsp if (error)
1045 b3d68e7f 2021-07-03 stsp goto done;
1047 b3d68e7f 2021-07-03 stsp error = apply_unveil(got_repo_get_path_git_dir(repo), 0);
1048 b3d68e7f 2021-07-03 stsp if (error)
1049 b3d68e7f 2021-07-03 stsp goto done;
1051 9188bd78 2021-07-03 stsp got_repo_get_gitconfig_extensions(&extensions, &nextensions,
1053 9188bd78 2021-07-03 stsp for (i = 0; i < nextensions; i++) {
1054 9188bd78 2021-07-03 stsp if (strcasecmp(extensions[i], "preciousObjects") == 0) {
1055 9188bd78 2021-07-03 stsp error = got_error_msg(GOT_ERR_GIT_REPO_EXT,
1056 9188bd78 2021-07-03 stsp "the preciousObjects Git extension is enabled; "
1057 9188bd78 2021-07-03 stsp "this implies that objects must not be deleted");
1058 9188bd78 2021-07-03 stsp goto done;
1062 1124fe40 2021-07-07 stsp if (remove_lonely_packidx) {
1063 1124fe40 2021-07-07 stsp memset(&lpa, 0, sizeof(lpa));
1064 1124fe40 2021-07-07 stsp lpa.dry_run = dry_run;
1065 1124fe40 2021-07-07 stsp lpa.verbosity = verbosity;
1066 1124fe40 2021-07-07 stsp error = got_repo_remove_lonely_packidx(repo, dry_run,
1067 1124fe40 2021-07-07 stsp lonely_packidx_progress, &lpa, check_cancelled, NULL);
1068 1124fe40 2021-07-07 stsp goto done;
1071 b3d68e7f 2021-07-03 stsp memset(&cpa, 0, sizeof(cpa));
1072 b3d68e7f 2021-07-03 stsp cpa.last_ncommits = -1;
1073 b3d68e7f 2021-07-03 stsp cpa.last_npurged = -1;
1074 b3d68e7f 2021-07-03 stsp cpa.dry_run = dry_run;
1075 b3d68e7f 2021-07-03 stsp cpa.verbosity = verbosity;
1076 b3d68e7f 2021-07-03 stsp error = got_repo_purge_unreferenced_loose_objects(repo,
1077 ef8ec606 2021-07-27 stsp &size_before, &size_after, &npacked, dry_run, ignore_mtime,
1078 b3d68e7f 2021-07-03 stsp cleanup_progress, &cpa, check_cancelled, NULL);
1079 b3d68e7f 2021-07-03 stsp if (cpa.printed_something)
1080 b3d68e7f 2021-07-03 stsp printf("\n");
1081 b3d68e7f 2021-07-03 stsp if (error)
1082 b3d68e7f 2021-07-03 stsp goto done;
1083 b3d68e7f 2021-07-03 stsp if (cpa.printed_something) {
1084 b3d68e7f 2021-07-03 stsp if (fmt_scaled(size_before, scaled_before) == -1) {
1085 b3d68e7f 2021-07-03 stsp error = got_error_from_errno("fmt_scaled");
1086 b3d68e7f 2021-07-03 stsp goto done;
1088 b3d68e7f 2021-07-03 stsp if (fmt_scaled(size_after, scaled_after) == -1) {
1089 b3d68e7f 2021-07-03 stsp error = got_error_from_errno("fmt_scaled");
1090 b3d68e7f 2021-07-03 stsp goto done;
1092 b3d68e7f 2021-07-03 stsp if (fmt_scaled(size_before - size_after, scaled_diff) == -1) {
1093 b3d68e7f 2021-07-03 stsp error = got_error_from_errno("fmt_scaled");
1094 b3d68e7f 2021-07-03 stsp goto done;
1096 b3d68e7f 2021-07-03 stsp printf("loose total size before: %s\n", scaled_before);
1097 b3d68e7f 2021-07-03 stsp printf("loose total size after: %s\n", scaled_after);
1098 b3d68e7f 2021-07-03 stsp if (dry_run) {
1099 b3d68e7f 2021-07-03 stsp printf("disk space which would be freed: %s\n",
1100 b3d68e7f 2021-07-03 stsp scaled_diff);
1102 b3d68e7f 2021-07-03 stsp printf("disk space freed: %s\n", scaled_diff);
1103 b3d68e7f 2021-07-03 stsp printf("loose objects also found in pack files: %d\n", npacked);
1107 b3d68e7f 2021-07-03 stsp got_repo_close(repo);
1108 b3d68e7f 2021-07-03 stsp free(cwd);
1109 b3d68e7f 2021-07-03 stsp return error;