opkg: (leak fixing, day 2) lots and lots of memory leaks fixed
[project/opkg-lede.git] / libopkg / args.c
1 /* args.c - parse command-line args
2
3 Carl D. Worth
4
5 Copyright 2001 University of Southern California
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16 */
17
18 #include <getopt.h>
19 #include <stdlib.h>
20 #include <string.h>
21 #include <unistd.h>
22
23 #include "includes.h"
24
25 #include "config.h"
26 #include "args.h"
27 #include "sprintf_alloc.h"
28
29 static void print_version(void);
30
31 enum long_args_opt
32 {
33 ARGS_OPT_FORCE_DEFAULTS = 129,
34 ARGS_OPT_FORCE_DEPENDS,
35 ARGS_OPT_FORCE_OVERWRITE,
36 ARGS_OPT_FORCE_DOWNGRADE,
37 ARGS_OPT_FORCE_REINSTALL,
38 ARGS_OPT_FORCE_REMOVAL_OF_DEPENDENT_PACKAGES,
39 ARGS_OPT_FORCE_REMOVAL_OF_ESSENTIAL_PACKAGES,
40 ARGS_OPT_FORCE_SPACE,
41 ARGS_OPT_NOACTION,
42 ARGS_OPT_NODEPS,
43 ARGS_OPT_VERBOSITY,
44 ARGS_OPT_MULTIPLE_PROVIDERS,
45 ARGS_OPT_AUTOREMOVE
46 };
47
48 int args_init(args_t *args)
49 {
50 char *conf_file_dir;
51
52 memset(args, 0, sizeof(args_t));
53
54 args->dest = ARGS_DEFAULT_DEST;
55
56 conf_file_dir = getenv("OPKG_CONF_DIR");
57 if (conf_file_dir == NULL || conf_file_dir[0] == '\0') {
58 conf_file_dir = ARGS_DEFAULT_CONF_FILE_DIR;
59 }
60 sprintf_alloc(&args->conf_file, "%s/%s", conf_file_dir,
61 ARGS_DEFAULT_CONF_FILE_NAME);
62
63 args->force_defaults = ARGS_DEFAULT_FORCE_DEFAULTS;
64 args->force_depends = ARGS_DEFAULT_FORCE_DEPENDS;
65 args->force_overwrite = ARGS_DEFAULT_FORCE_OVERWRITE;
66 args->force_downgrade = ARGS_DEFAULT_FORCE_DOWNGRADE;
67 args->force_reinstall = ARGS_DEFAULT_FORCE_REINSTALL;
68 args->force_removal_of_dependent_packages = ARGS_DEFAULT_FORCE_REMOVAL_OF_DEPENDENT_PACKAGES;
69 args->force_removal_of_essential_packages = ARGS_DEFAULT_FORCE_REMOVAL_OF_ESSENTIAL_PACKAGES;
70 args->autoremove = ARGS_DEFAULT_AUTOREMOVE;
71 args->noaction = ARGS_DEFAULT_NOACTION;
72 args->nodeps = ARGS_DEFAULT_NODEPS;
73 args->verbosity = ARGS_DEFAULT_VERBOSITY;
74 args->offline_root = ARGS_DEFAULT_OFFLINE_ROOT;
75 args->offline_root_pre_script_cmd = ARGS_DEFAULT_OFFLINE_ROOT_PRE_SCRIPT_CMD;
76 args->offline_root_post_script_cmd = ARGS_DEFAULT_OFFLINE_ROOT_POST_SCRIPT_CMD;
77 args->multiple_providers = 0;
78 args->nocheckfordirorfile = 0;
79 args->noreadfeedsfile = 0;
80
81 return 1;
82 }
83
84 void args_deinit(args_t *args)
85 {
86 free (args->offline_root);
87 free (args->offline_root_pre_script_cmd);
88 free (args->offline_root_post_script_cmd);
89
90 free (args->dest);
91 free (args->tmp_dir);
92 free(args->conf_file);
93 args->conf_file = NULL;
94 }
95
96 int args_parse(args_t *args, int argc, char *argv[])
97 {
98 int c;
99 int option_index = 0;
100 int parse_err = 0;
101 static struct option long_options[] = {
102 {"query-all", 0, 0, 'A'},
103 {"autoremove", 0, 0, ARGS_OPT_AUTOREMOVE},
104 {"conf-file", 1, 0, 'f'},
105 {"conf", 1, 0, 'f'},
106 {"dest", 1, 0, 'd'},
107 {"force-defaults", 0, 0, ARGS_OPT_FORCE_DEFAULTS},
108 {"force_defaults", 0, 0, ARGS_OPT_FORCE_DEFAULTS},
109 {"force-depends", 0, 0, ARGS_OPT_FORCE_DEPENDS},
110 {"force_depends", 0, 0, ARGS_OPT_FORCE_DEPENDS},
111 {"force-overwrite", 0, 0, ARGS_OPT_FORCE_OVERWRITE},
112 {"force_overwrite", 0, 0, ARGS_OPT_FORCE_OVERWRITE},
113 {"force_downgrade", 0, 0, ARGS_OPT_FORCE_DOWNGRADE},
114 {"force-downgrade", 0, 0, ARGS_OPT_FORCE_DOWNGRADE},
115 {"force-reinstall", 0, 0, ARGS_OPT_FORCE_REINSTALL},
116 {"force_reinstall", 0, 0, ARGS_OPT_FORCE_REINSTALL},
117 {"force-space", 0, 0, ARGS_OPT_FORCE_SPACE},
118 {"force_space", 0, 0, ARGS_OPT_FORCE_SPACE},
119 {"recursive", 0, 0,
120 ARGS_OPT_FORCE_REMOVAL_OF_DEPENDENT_PACKAGES},
121 {"force-removal-of-dependent-packages", 0, 0,
122 ARGS_OPT_FORCE_REMOVAL_OF_DEPENDENT_PACKAGES},
123 {"force_removal_of_dependent_packages", 0, 0,
124 ARGS_OPT_FORCE_REMOVAL_OF_DEPENDENT_PACKAGES},
125 {"force-removal-of-essential-packages", 0, 0,
126 ARGS_OPT_FORCE_REMOVAL_OF_ESSENTIAL_PACKAGES},
127 {"force_removal_of_essential_packages", 0, 0,
128 ARGS_OPT_FORCE_REMOVAL_OF_ESSENTIAL_PACKAGES},
129 {"multiple-providers", 0, 0, ARGS_OPT_MULTIPLE_PROVIDERS},
130 {"multiple_providers", 0, 0, ARGS_OPT_MULTIPLE_PROVIDERS},
131 {"noaction", 0, 0, ARGS_OPT_NOACTION},
132 {"nodeps", 0, 0, ARGS_OPT_NODEPS},
133 {"offline", 1, 0, 'o'},
134 {"offline-root", 1, 0, 'o'},
135 {"test", 0, 0, ARGS_OPT_NOACTION},
136 {"tmp-dir", 1, 0, 't'},
137 {"verbosity", 2, 0, 'V'},
138 {"version", 0, 0, 'v'},
139 {0, 0, 0, 0}
140 };
141
142 while (1) {
143 c = getopt_long_only(argc, argv, "Ad:f:no:t:vV:", long_options, &option_index);
144 if (c == -1)
145 break;
146
147 switch (c) {
148 case 'A':
149 args->query_all = 1;
150 break;
151 case 'd':
152 args->dest = optarg;
153 break;
154 case 'f':
155 free(args->conf_file);
156 args->conf_file = strdup(optarg);
157 break;
158 case 'o':
159 args->offline_root = optarg;
160 break;
161 case 'n':
162 args->noaction = 1;
163 break;
164 case 't':
165 args->tmp_dir = strdup(optarg);
166 break;
167 case 'v':
168 print_version();
169 exit(0);
170 case 'V':
171 case ARGS_OPT_VERBOSITY:
172 if (optarg)
173 args->verbosity = atoi(optarg);
174 else
175 args->verbosity += 1;
176 break;
177 case ARGS_OPT_AUTOREMOVE:
178 args->autoremove = 1;
179 break;
180 case ARGS_OPT_FORCE_DEFAULTS:
181 args->force_defaults = 1;
182 break;
183 case ARGS_OPT_FORCE_DEPENDS:
184 args->force_depends = 1;
185 break;
186 case ARGS_OPT_FORCE_OVERWRITE:
187 args->force_overwrite = 1;
188 break;
189 case ARGS_OPT_FORCE_DOWNGRADE:
190 args->force_downgrade = 1;
191 break;
192 case ARGS_OPT_FORCE_REINSTALL:
193 args->force_reinstall = 1;
194 break;
195 case ARGS_OPT_FORCE_REMOVAL_OF_ESSENTIAL_PACKAGES:
196 args->force_removal_of_essential_packages = 1;
197 break;
198 case ARGS_OPT_FORCE_REMOVAL_OF_DEPENDENT_PACKAGES:
199 args->force_removal_of_dependent_packages = 1;
200 break;
201 case ARGS_OPT_FORCE_SPACE:
202 args->force_space = 1;
203 break;
204 case ARGS_OPT_MULTIPLE_PROVIDERS:
205 args->multiple_providers = 1;
206 break;
207 case ARGS_OPT_NODEPS:
208 args->nodeps = 1;
209 break;
210 case ARGS_OPT_NOACTION:
211 args->noaction = 1;
212 break;
213 case ':':
214 parse_err++;
215 break;
216 case '?':
217 parse_err++;
218 break;
219 default:
220 printf("Confusion: getopt_long returned %d\n", c);
221 }
222 }
223
224 if (parse_err) {
225 return -parse_err;
226 } else {
227 return optind;
228 }
229 }
230
231 void args_usage(char *complaint)
232 {
233 if (complaint) {
234 printf("opkg: %s\n", complaint);
235 }
236 print_version();
237 printf("usage: opkg [options...] sub-command [arguments...]\n");
238 printf("where sub-command is one of:\n");
239
240 printf("\nPackage Manipulation:\n");
241 printf("\tupdate Update list of available packages\n");
242 printf("\tupgrade Upgrade all installed packages to latest version\n");
243 printf("\tinstall <pkg> Download and install <pkg> (and dependencies)\n");
244 printf("\tinstall <file.ipk> Install package <file.ipk>\n");
245 printf("\tconfigure [<pkg>] Configure unpacked packages\n");
246 printf("\tremove <pkg|regexp> Remove package <pkg|packages following regexp>\n");
247 printf("\tflag <flag> <pkg> ... Flag package(s) <pkg>\n");
248 printf("\t <flag>=hold|noprune|user|ok|installed|unpacked (one per invocation) \n");
249
250 printf("\nInformational Commands:\n");
251 printf("\tlist List available packages and descriptions\n");
252 printf("\tlist_installed List all and only the installed packages and description \n");
253 printf("\tfiles <pkg> List all files belonging to <pkg>\n");
254 printf("\tsearch <file|regexp> Search for a package providing <file>\n");
255 printf("\tinfo [pkg|regexp] Display all info for <pkg>\n");
256 printf("\tstatus [pkg|regexp] Display all status for <pkg>\n");
257 printf("\tdownload <pkg> Download <pkg> to current directory.\n");
258 printf("\tcompare_versions <v1> <op> <v2>\n");
259 printf("\t compare versions using <= < > >= = << >>\n");
260 printf("\tprint_architecture prints the architecture.\n");
261 printf("\tprint_installation_architecture\n");
262 printf("\twhatdepends [-A] [pkgname|pat]+\n");
263 printf("\twhatdependsrec [-A] [pkgname|pat]+\n");
264 printf("\twhatprovides [-A] [pkgname|pat]+\n");
265 printf("\twhatconflicts [-A] [pkgname|pat]+\n");
266 printf("\twhatreplaces [-A] [pkgname|pat]+\n");
267 printf("\t prints the installation architecture.\n");
268 printf("\nOptions:\n");
269 printf("\t-A Query all packages with whatdepends, whatprovides, whatreplaces, whatconflicts\n");
270 printf("\t-V <level> Set verbosity level to <level>. If no value is\n");
271 printf("\t--verbosity <level> provided increase verbosity by one. Verbosity levels:\n");
272 printf("\t 0 errors only\n");
273 printf("\t 1 normal messages (default)\n");
274 printf("\t 2 informative messages\n");
275 printf("\t 3 debug output\n");
276 printf("\t-f <conf_file> Use <conf_file> as the opkg configuration file\n");
277 printf("\t-conf <conf_file> Default configuration file location\n");
278 printf(" is %s/%s\n", ARGS_DEFAULT_CONF_FILE_DIR, ARGS_DEFAULT_CONF_FILE_NAME);
279 printf("\t-d <dest_name> Use <dest_name> as the the root directory for\n");
280 printf("\t-dest <dest_name> package installation, removal, upgrading.\n");
281 printf(" <dest_name> should be a defined dest name from\n");
282 printf(" the configuration file, (but can also be a\n");
283 printf(" directory name in a pinch).\n");
284 printf("\t-o <offline_root> Use <offline_root> as the root directory for\n");
285 printf("\t-offline <offline_root> offline installation of packages.\n");
286
287 printf("\tForce Options (use when opkg is too smart for its own good):\n");
288 printf("\t-force-depends Make dependency checks warnings instead of errors\n");
289 printf("\t Install/remove package in spite of failed dependences\n");
290 printf("\t-force-defaults Use default options for questions asked by opkg.\n");
291 printf(" (no prompts). Note that this will not prevent\n");
292 printf(" package installation scripts from prompting.\n");
293 printf("\t-force-reinstall Allow opkg to reinstall a package.\n");
294 printf("\t-force-overwrite Allow opkg to overwrite files from another package during an install.\n");
295 printf("\t-force-downgrade Allow opkg to downgrade packages.\n");
296 printf("\t-force_space Install even if there does not seem to be enough space.\n");
297 printf("\t-noaction No action -- test only\n");
298 printf("\t-nodeps Do not follow dependences\n");
299 printf("\t-force-removal-of-dependent-packages\n");
300 printf("\t-recursive Allow opkg to remove package and all that depend on it.\n");
301 printf("\t-autoremove Allow opkg to remove packages that where installed automatically to satisfy dependencies.\n");
302 printf("\t-test No action -- test only\n");
303 printf("\t-t Specify tmp-dir.\n");
304 printf("\t--tmp-dir Specify tmp-dir.\n");
305 printf("\n");
306 printf("\tregexp could be something like 'pkgname*' '*file*' or similar\n");
307 printf("\teg: opkg info 'libstd*' or opkg search '*libop*' or opkg remove 'libncur*'\n");
308 /* -force-removal-of-essential-packages Let opkg remove essential packages.
309 Using this option is almost guaranteed to break your system, hence this option
310 is not even advertised in the usage statement. */
311 exit(1);
312 }
313
314 static void print_version(void)
315 {
316 printf("opkg version %s\n", VERSION);
317 }