Blame


1 50b0790e 2020-09-11 stsp /*
2 50b0790e 2020-09-11 stsp * Copyright (c) 2020 Stefan Sperling <stsp@openbsd.org>
3 50b0790e 2020-09-11 stsp *
4 50b0790e 2020-09-11 stsp * Permission to use, copy, modify, and distribute this software for any
5 50b0790e 2020-09-11 stsp * purpose with or without fee is hereby granted, provided that the above
6 50b0790e 2020-09-11 stsp * copyright notice and this permission notice appear in all copies.
7 50b0790e 2020-09-11 stsp *
8 50b0790e 2020-09-11 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 50b0790e 2020-09-11 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 50b0790e 2020-09-11 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 50b0790e 2020-09-11 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 50b0790e 2020-09-11 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 50b0790e 2020-09-11 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 50b0790e 2020-09-11 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 50b0790e 2020-09-11 stsp */
16 50b0790e 2020-09-11 stsp
17 50b0790e 2020-09-11 stsp #include <sys/types.h>
18 50b0790e 2020-09-11 stsp #include <sys/queue.h>
19 50b0790e 2020-09-11 stsp #include <sys/uio.h>
20 50b0790e 2020-09-11 stsp #include <sys/socket.h>
21 50b0790e 2020-09-11 stsp
22 50b0790e 2020-09-11 stsp #include <unistd.h>
23 50b0790e 2020-09-11 stsp #include <fcntl.h>
24 50b0790e 2020-09-11 stsp #include <errno.h>
25 50b0790e 2020-09-11 stsp #include <stdlib.h>
26 50b0790e 2020-09-11 stsp #include <stdio.h>
27 50b0790e 2020-09-11 stsp #include <stdint.h>
28 50b0790e 2020-09-11 stsp #include <imsg.h>
29 50b0790e 2020-09-11 stsp #include <sha1.h>
30 50b0790e 2020-09-11 stsp #include <limits.h>
31 50b0790e 2020-09-11 stsp
32 50b0790e 2020-09-11 stsp #include "got_error.h"
33 50b0790e 2020-09-11 stsp #include "got_object.h"
34 50b0790e 2020-09-11 stsp #include "got_repository.h"
35 50b0790e 2020-09-11 stsp
36 50b0790e 2020-09-11 stsp #include "got_lib_gotconfig.h"
37 50b0790e 2020-09-11 stsp
38 336075a4 2022-06-25 op #include "got_gotconfig.h"
39 336075a4 2022-06-25 op
40 50b0790e 2020-09-11 stsp void
41 50b0790e 2020-09-11 stsp got_gotconfig_free(struct got_gotconfig *conf)
42 50b0790e 2020-09-11 stsp {
43 50b0790e 2020-09-11 stsp int i;
44 50b0790e 2020-09-11 stsp
45 a9705505 2020-09-18 stsp if (conf == NULL)
46 a9705505 2020-09-18 stsp return;
47 a9705505 2020-09-18 stsp
48 50b0790e 2020-09-11 stsp free(conf->author);
49 50b0790e 2020-09-11 stsp
50 b8adfa55 2020-09-25 stsp for (i = 0; i < conf->nremotes; i++)
51 b8adfa55 2020-09-25 stsp got_repo_free_remote_repo_data(&conf->remotes[i]);
52 50b0790e 2020-09-11 stsp free(conf->remotes);
53 50b0790e 2020-09-11 stsp free(conf);
54 50b0790e 2020-09-11 stsp }
55 50b0790e 2020-09-11 stsp
56 50b0790e 2020-09-11 stsp const char *
57 50b0790e 2020-09-11 stsp got_gotconfig_get_author(const struct got_gotconfig *conf)
58 50b0790e 2020-09-11 stsp {
59 50b0790e 2020-09-11 stsp return conf->author;
60 50b0790e 2020-09-11 stsp }
61 50b0790e 2020-09-11 stsp
62 50b0790e 2020-09-11 stsp void
63 50b0790e 2020-09-11 stsp got_gotconfig_get_remotes(int *nremotes, const struct got_remote_repo **remotes,
64 50b0790e 2020-09-11 stsp const struct got_gotconfig *conf)
65 50b0790e 2020-09-11 stsp {
66 50b0790e 2020-09-11 stsp *nremotes = conf->nremotes;
67 50b0790e 2020-09-11 stsp *remotes = conf->remotes;
68 50b0790e 2020-09-11 stsp }
69 4d5ee956 2022-07-02 jrick
70 4d5ee956 2022-07-02 jrick const char *
71 4d5ee956 2022-07-02 jrick got_gotconfig_get_allowed_signers_file(const struct got_gotconfig *conf)
72 4d5ee956 2022-07-02 jrick {
73 4d5ee956 2022-07-02 jrick return conf->allowed_signers_file;
74 4d5ee956 2022-07-02 jrick }
75 4d5ee956 2022-07-02 jrick
76 4d5ee956 2022-07-02 jrick const char *
77 4d5ee956 2022-07-02 jrick got_gotconfig_get_revoked_signers_file(const struct got_gotconfig *conf)
78 4d5ee956 2022-07-02 jrick {
79 4d5ee956 2022-07-02 jrick return conf->revoked_signers_file;
80 4d5ee956 2022-07-02 jrick }
81 d68f2c0e 2022-07-05 jrick
82 d68f2c0e 2022-07-05 jrick const char *
83 d68f2c0e 2022-07-05 jrick got_gotconfig_get_signer_id(const struct got_gotconfig *conf)
84 d68f2c0e 2022-07-05 jrick {
85 d68f2c0e 2022-07-05 jrick return conf->signer_id;
86 d68f2c0e 2022-07-05 jrick }