aboutsummaryrefslogtreecommitdiffstats
path: root/libopkg/opkg_conf.h
blob: 3fa6ca9529effb70d4a23f87d9d2af73c8ba89ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
/* vi: set expandtab sw=4 sts=4: */
/* opkg_conf.h - the opkg package management system

   Carl D. Worth

   Copyright (C) 2001 University of Southern California

   SPDX-License-Identifier: GPL-2.0-or-later

   This program is free software; you can redistribute it and/or
   modify it under the terms of the GNU General Public License as
   published by the Free Software Foundation; either version 2, or (at
   your option) any later version.

   This program is distributed in the hope that it will be useful, but
   WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   General Public License for more details.
*/

#ifndef OPKG_CONF_H
#define OPKG_CONF_H

#include <stdarg.h>

#ifdef __cplusplus
extern "C" {
#endif

#include "hash_table.h"
#include "pkg_src_list.h"
#include "pkg_dest_list.h"
#include "nv_pair_list.h"
#include "str_list.h"

#define OPKG_CONF_DEFAULT_TMP_DIR_BASE "/tmp"
#define OPKG_CONF_TMP_DIR_SUFFIX "opkg-XXXXXX"
#define OPKG_BACKUP_SUFFIX "-opkg.backup"

#define OPKG_CONF_DEFAULT_LISTS_DIR     VARDIR "/lib/opkg/lists"
#define OPKG_CONF_DEFAULT_INFO_DIR      VARDIR "/lib/opkg/info"
#define OPKG_CONF_DEFAULT_STATUS_FILE   VARDIR "/lib/opkg/status"
#define OPKG_CONF_DEFAULT_CACHE_DIR     VARDIR "/cache/opkg"
#define OPKG_CONF_DEFAULT_CONF_FILE_DIR SYSCONFDIR "/opkg"
#define OPKG_CONF_DEFAULT_LOCK_FILE     VARDIR "/run/opkg.lock"

/* In case the config file defines no dest */
#define OPKG_CONF_DEFAULT_DEST_NAME "root"
#define OPKG_CONF_DEFAULT_DEST_ROOT_DIR "/"

#define OPKG_CONF_DEFAULT_HASH_LEN 1024

#define OPKG_CONF_DEFAULT_SIGNATURE_TYPE "gpg"
#define OPKG_CONF_GPG_DEFAULT_DIR OPKG_CONF_DEFAULT_CONF_FILE_DIR "/gpg"
#define OPKG_CONF_GPG_TRUST_ONLY "TrustOnly"
#define OPKG_CONF_GPG_TRUST_ANY "TrustAny"
#define OPKG_CONF_DEFAULT_GPG_TRUST_LEVEL OPKG_CONF_GPG_TRUST_ONLY

typedef struct opkg_conf {
    pkg_src_list_t pkg_src_list;
    pkg_src_list_t dist_src_list;
    pkg_dest_list_t pkg_dest_list;
    pkg_dest_list_t tmp_dest_list;
    nv_pair_list_t arch_list;
    str_list_t exclude_list;
    str_list_t ignore_recommends_list;

    int restrict_to_default_dest;
    pkg_dest_t *default_dest;
    char *dest_str;

    char *conf_file;

    char *tmp_dir;
    char *intercepts_dir; /* set to "/dev/null" to disable intercepts */
    char *lists_dir;
    char *cache_dir;
    char *lock_file;
    char *info_dir;
    char *status_file;
    char *fields_filter; /* specific fields the user requests */

    unsigned int pfm;       /* package field mask */

    /* For libopkg users to capture messages. */
    void (*opkg_vmessage) (int, const char *fmt, va_list ap);

    /* options */
    int autoremove;
    int ignore_uid;
    int force_depends;
    int force_maintainer;
    int ignore_maintainer;
    int force_overwrite;
    int force_downgrade;
    int force_reinstall;
    int force_space;
    int force_removal_of_dependent_packages;
    int force_removal_of_essential_packages;
    int force_postinstall;
    int force_remove;
    int force_checksum;
    int prefer_arch_to_version;
    int check_signature;
    int check_pkg_signature;
    char *gpg_dir;
    char *gpg_trust_level;
    char *signature_type;
    int nodeps;             /* do not follow dependencies */
    int no_install_recommends;
    char *offline_root;
    char *overlay_root;
    int query_all;
    int verbosity;
    int noaction;
    int size;
    int download_only;
    int download_first;
    int overwrite_no_owner;
    int volatile_cache;
    int combine;
    int cache_local_files;
    int host_cache_dir;
    int verbose_status_file;
    int compress_list_files;
    int short_description;

    /* ssl options: used only when opkg is configured with '--enable-curl',
     * otherwise always NULL or 0.
     */
    int connect_timeout_ms;
    int transfer_timeout_ms;
    int follow_location;

    /* ssl-curl options: used only when opkg is configured with
     * '--enable-ssl-curl', otherwise always NULL or 0.
     *
     * some options could be used by
     * wget if curl support isn't builtin
     * If someone want to try...
     */
    char *ssl_engine;
    char *ssl_cert;
    char *ssl_cert_type;
    char *ssl_key;
    char *ssl_key_type;
    char *ssl_key_passwd;
    char *ssl_ca_file;
    char *ssl_ca_path;
    int ssl_dont_verify_peer;
    int ftp_explicit_ssl;

    /* username and password for curl basic http authentication
     * the format is: [user name]:[password]
     */
    char *http_auth;

    /* proxy options */
    char *http_proxy;
    char *https_proxy;
    char *ftp_proxy;
    char *no_proxy;
    char *proxy_user;
    char *proxy_passwd;

    hash_table_t pkg_hash;
    hash_table_t file_hash;
    hash_table_t obs_file_hash;
    hash_table_t dir_hash;
} opkg_conf_t;

enum opkg_option_type {
    OPKG_OPT_TYPE_BOOL,
    OPKG_OPT_TYPE_INT,
    OPKG_OPT_TYPE_STRING
};
typedef enum opkg_option_type opkg_option_type_t;

typedef struct opkg_option opkg_option_t;
struct opkg_option {
    const char *name;
    const opkg_option_type_t type;
    void *const value;
};

extern opkg_conf_t *opkg_config;

int opkg_conf_init(void);
int opkg_conf_load(void);
int opkg_conf_read(void);
int opkg_conf_finalize(void);
void opkg_conf_deinit(void);

int opkg_conf_write_status_files(void);
char *root_filename_alloc(char *filename);

int opkg_conf_get_option(char *option, void *value);
int opkg_conf_set_option(const char *name, const char *value,
                         int overwrite);

int opkg_lock(void);
int opkg_unlock(void);

char *opkg_solver_version_alloc(void);

#ifdef __cplusplus
}
#endif
#endif                          /* OPKG_CONF_H */