libopkg: fix --force-checksum to cover sha256sum cases as well
[project/opkg-lede.git] / src / opkg-cl.c
1 /* opkg-cl.c - the opkg package management system
2
3 Florian Boor
4 Copyright (C) 2003 kernel concepts
5
6 Carl D. Worth
7 Copyright 2001 University of Southern California
8
9 This program is free software; you can redistribute it and/or
10 modify it under the terms of the GNU General Public License as
11 published by the Free Software Foundation; either version 2, or (at
12 your option) any later version.
13
14 This program is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 General Public License for more details.
18
19 opkg command line frontend using libopkg
20 */
21
22 #include "config.h"
23
24 #include <stdio.h>
25 #include <getopt.h>
26
27 #include "opkg_conf.h"
28 #include "opkg_cmd.h"
29 #include "file_util.h"
30 #include "opkg_message.h"
31 #include "opkg_download.h"
32 #include "../libbb/libbb.h"
33
34 enum {
35 ARGS_OPT_FORCE_MAINTAINER = 129,
36 ARGS_OPT_FORCE_DEPENDS,
37 ARGS_OPT_FORCE_OVERWRITE,
38 ARGS_OPT_FORCE_DOWNGRADE,
39 ARGS_OPT_FORCE_REINSTALL,
40 ARGS_OPT_FORCE_REMOVAL_OF_DEPENDENT_PACKAGES,
41 ARGS_OPT_FORCE_REMOVAL_OF_ESSENTIAL_PACKAGES,
42 ARGS_OPT_FORCE_SPACE,
43 ARGS_OPT_FORCE_POSTINSTALL,
44 ARGS_OPT_FORCE_REMOVE,
45 ARGS_OPT_FORCE_CHECKSUM,
46 ARGS_OPT_ADD_ARCH,
47 ARGS_OPT_ADD_DEST,
48 ARGS_OPT_NOACTION,
49 ARGS_OPT_DOWNLOAD_ONLY,
50 ARGS_OPT_NODEPS,
51 ARGS_OPT_NOCASE,
52 ARGS_OPT_AUTOREMOVE,
53 ARGS_OPT_CACHE,
54 ARGS_OPT_FORCE_SIGNATURE,
55 };
56
57 static struct option long_options[] = {
58 {"query-all", 0, 0, 'A'},
59 {"autoremove", 0, 0, ARGS_OPT_AUTOREMOVE},
60 {"cache", 1, 0, ARGS_OPT_CACHE},
61 {"conf-file", 1, 0, 'f'},
62 {"conf", 1, 0, 'f'},
63 {"dest", 1, 0, 'd'},
64 {"force-maintainer", 0, 0, ARGS_OPT_FORCE_MAINTAINER},
65 {"force_maintainer", 0, 0, ARGS_OPT_FORCE_MAINTAINER},
66 {"force-depends", 0, 0, ARGS_OPT_FORCE_DEPENDS},
67 {"force_depends", 0, 0, ARGS_OPT_FORCE_DEPENDS},
68 {"force-overwrite", 0, 0, ARGS_OPT_FORCE_OVERWRITE},
69 {"force_overwrite", 0, 0, ARGS_OPT_FORCE_OVERWRITE},
70 {"force_downgrade", 0, 0, ARGS_OPT_FORCE_DOWNGRADE},
71 {"force-downgrade", 0, 0, ARGS_OPT_FORCE_DOWNGRADE},
72 {"force-reinstall", 0, 0, ARGS_OPT_FORCE_REINSTALL},
73 {"force_reinstall", 0, 0, ARGS_OPT_FORCE_REINSTALL},
74 {"force-space", 0, 0, ARGS_OPT_FORCE_SPACE},
75 {"force_space", 0, 0, ARGS_OPT_FORCE_SPACE},
76 {"recursive", 0, 0, ARGS_OPT_FORCE_REMOVAL_OF_DEPENDENT_PACKAGES},
77 {"force-removal-of-dependent-packages", 0, 0,
78 ARGS_OPT_FORCE_REMOVAL_OF_DEPENDENT_PACKAGES},
79 {"force_removal_of_dependent_packages", 0, 0,
80 ARGS_OPT_FORCE_REMOVAL_OF_DEPENDENT_PACKAGES},
81 {"force-removal-of-essential-packages", 0, 0,
82 ARGS_OPT_FORCE_REMOVAL_OF_ESSENTIAL_PACKAGES},
83 {"force_removal_of_essential_packages", 0, 0,
84 ARGS_OPT_FORCE_REMOVAL_OF_ESSENTIAL_PACKAGES},
85 {"force-postinstall", 0, 0, ARGS_OPT_FORCE_POSTINSTALL},
86 {"force_postinstall", 0, 0, ARGS_OPT_FORCE_POSTINSTALL},
87 {"force-remove", 0, 0, ARGS_OPT_FORCE_REMOVE},
88 {"force_remove", 0, 0, ARGS_OPT_FORCE_REMOVE},
89 {"force-checksum", 0, 0, ARGS_OPT_FORCE_CHECKSUM},
90 {"force_checksum", 0, 0, ARGS_OPT_FORCE_CHECKSUM},
91 {"force-signature", 0, 0, ARGS_OPT_FORCE_SIGNATURE},
92 {"force_signature", 0, 0, ARGS_OPT_FORCE_SIGNATURE},
93 {"noaction", 0, 0, ARGS_OPT_NOACTION},
94 {"download-only", 0, 0, ARGS_OPT_DOWNLOAD_ONLY},
95 {"nodeps", 0, 0, ARGS_OPT_NODEPS},
96 {"nocase", 0, 0, ARGS_OPT_NOCASE},
97 {"offline", 1, 0, 'o'},
98 {"offline-root", 1, 0, 'o'},
99 {"add-arch", 1, 0, ARGS_OPT_ADD_ARCH},
100 {"add-dest", 1, 0, ARGS_OPT_ADD_DEST},
101 {"test", 0, 0, ARGS_OPT_NOACTION},
102 {"tmp-dir", 1, 0, 't'},
103 {"tmp_dir", 1, 0, 't'},
104 {"verbosity", 2, 0, 'V'},
105 {"version", 0, 0, 'v'},
106 {0, 0, 0, 0}
107 };
108
109 static int
110 args_parse(int argc, char *argv[])
111 {
112 int c;
113 int option_index = 0;
114 int parse_err = 0;
115 char *tuple, *targ;
116
117 while (1) {
118 c = getopt_long_only(argc, argv, "Ad:f:ino:p:t:vV::",
119 long_options, &option_index);
120 if (c == -1)
121 break;
122
123 switch (c) {
124 case 'A':
125 conf->query_all = 1;
126 break;
127 case 'd':
128 conf->dest_str = xstrdup(optarg);
129 break;
130 case 'f':
131 conf->conf_file = xstrdup(optarg);
132 break;
133 case 'i':
134 conf->nocase = FNM_CASEFOLD;
135 break;
136 case 'o':
137 conf->offline_root = xstrdup(optarg);
138 break;
139 case 't':
140 conf->tmp_dir = xstrdup(optarg);
141 break;
142 case 'v':
143 printf("opkg version %s\n", VERSION);
144 exit(0);
145 case 'V':
146 conf->verbosity = INFO;
147 if (optarg != NULL)
148 conf->verbosity = atoi(optarg);
149 break;
150 case ARGS_OPT_AUTOREMOVE:
151 conf->autoremove = 1;
152 break;
153 case ARGS_OPT_CACHE:
154 free(conf->cache);
155 conf->cache = xstrdup(optarg);
156 break;
157 case ARGS_OPT_FORCE_MAINTAINER:
158 conf->force_maintainer = 1;
159 break;
160 case ARGS_OPT_FORCE_DEPENDS:
161 conf->force_depends = 1;
162 break;
163 case ARGS_OPT_FORCE_OVERWRITE:
164 conf->force_overwrite = 1;
165 break;
166 case ARGS_OPT_FORCE_DOWNGRADE:
167 conf->force_downgrade = 1;
168 break;
169 case ARGS_OPT_FORCE_REINSTALL:
170 conf->force_reinstall = 1;
171 break;
172 case ARGS_OPT_FORCE_REMOVAL_OF_ESSENTIAL_PACKAGES:
173 conf->force_removal_of_essential_packages = 1;
174 break;
175 case ARGS_OPT_FORCE_REMOVAL_OF_DEPENDENT_PACKAGES:
176 conf->force_removal_of_dependent_packages = 1;
177 break;
178 case ARGS_OPT_FORCE_SPACE:
179 conf->force_space = 1;
180 break;
181 case ARGS_OPT_FORCE_POSTINSTALL:
182 conf->force_postinstall = 1;
183 break;
184 case ARGS_OPT_FORCE_REMOVE:
185 conf->force_remove = 1;
186 break;
187 case ARGS_OPT_FORCE_CHECKSUM:
188 conf->force_checksum = 1;
189 break;
190 case ARGS_OPT_NODEPS:
191 conf->nodeps = 1;
192 break;
193 case ARGS_OPT_NOCASE:
194 conf->nocase = FNM_CASEFOLD;
195 break;
196 case ARGS_OPT_ADD_ARCH:
197 case ARGS_OPT_ADD_DEST:
198 tuple = xstrdup(optarg);
199 if ((targ = strchr(tuple, ':')) != NULL) {
200 *targ++ = 0;
201 if ((strlen(tuple) > 0) && (strlen(targ) > 0)) {
202 nv_pair_list_append(
203 (c == ARGS_OPT_ADD_ARCH)
204 ? &conf->arch_list : &conf->tmp_dest_list,
205 tuple, targ);
206 }
207 }
208 free(tuple);
209 break;
210 case ARGS_OPT_NOACTION:
211 conf->noaction = 1;
212 break;
213 case ARGS_OPT_DOWNLOAD_ONLY:
214 conf->download_only = 1;
215 break;
216 case ARGS_OPT_FORCE_SIGNATURE:
217 conf->force_signature = 1;
218 break;
219 case ':':
220 parse_err = -1;
221 break;
222 case '?':
223 parse_err = -1;
224 break;
225 default:
226 printf("Confusion: getopt_long returned %d\n", c);
227 }
228 }
229
230 if(!conf->conf_file && !conf->offline_root)
231 conf->conf_file = xstrdup("/etc/opkg.conf");
232
233 if (parse_err)
234 return parse_err;
235 else
236 return optind;
237 }
238
239 static void
240 usage()
241 {
242 printf("usage: opkg [options...] sub-command [arguments...]\n");
243 printf("where sub-command is one of:\n");
244
245 printf("\nPackage Manipulation:\n");
246 printf("\tupdate Update list of available packages\n");
247 printf("\tupgrade <pkgs> Upgrade packages\n");
248 printf("\tinstall <pkgs> Install package(s)\n");
249 printf("\tconfigure <pkgs> Configure unpacked package(s)\n");
250 printf("\tremove <pkgs|regexp> Remove package(s)\n");
251 printf("\tflag <flag> <pkgs> Flag package(s)\n");
252 printf("\t <flag>=hold|noprune|user|ok|installed|unpacked (one per invocation)\n");
253
254 printf("\nInformational Commands:\n");
255 printf("\tlist List available packages\n");
256 printf("\tlist-installed List installed packages\n");
257 printf("\tlist-upgradable List installed and upgradable packages\n");
258 printf("\tlist-changed-conffiles List user modified configuration files\n");
259 printf("\tfiles <pkg> List files belonging to <pkg>\n");
260 printf("\tsearch <file|regexp> List package providing <file>\n");
261 printf("\tfind <regexp> List packages whose name or description matches <regexp>\n");
262 printf("\tinfo [pkg|regexp] Display all info for <pkg>\n");
263 printf("\tstatus [pkg|regexp] Display all status for <pkg>\n");
264 printf("\tdownload <pkg> Download <pkg> to current directory\n");
265 printf("\tcompare-versions <v1> <op> <v2>\n");
266 printf("\t compare versions using <= < > >= = << >>\n");
267 printf("\tprint-architecture List installable package architectures\n");
268 printf("\tdepends [-A] [pkgname|pat]+\n");
269 printf("\twhatdepends [-A] [pkgname|pat]+\n");
270 printf("\twhatdependsrec [-A] [pkgname|pat]+\n");
271 printf("\twhatrecommends[-A] [pkgname|pat]+\n");
272 printf("\twhatsuggests[-A] [pkgname|pat]+\n");
273 printf("\twhatprovides [-A] [pkgname|pat]+\n");
274 printf("\twhatconflicts [-A] [pkgname|pat]+\n");
275 printf("\twhatreplaces [-A] [pkgname|pat]+\n");
276
277 printf("\nOptions:\n");
278 printf("\t-A Query all packages not just those installed\n");
279 printf("\t-V[<level>] Set verbosity level to <level>.\n");
280 printf("\t--verbosity[=<level>] Verbosity levels:\n");
281 printf("\t 0 errors only\n");
282 printf("\t 1 normal messages (default)\n");
283 printf("\t 2 informative messages\n");
284 printf("\t 3 debug\n");
285 printf("\t 4 debug level 2\n");
286 printf("\t-f <conf_file> Use <conf_file> as the opkg configuration file\n");
287 printf("\t--conf <conf_file>\n");
288 printf("\t--cache <directory> Use a package cache\n");
289 printf("\t-d <dest_name> Use <dest_name> as the the root directory for\n");
290 printf("\t--dest <dest_name> package installation, removal, upgrading.\n");
291 printf(" <dest_name> should be a defined dest name from\n");
292 printf(" the configuration file, (but can also be a\n");
293 printf(" directory name in a pinch).\n");
294 printf("\t-o <dir> Use <dir> as the root directory for\n");
295 printf("\t--offline-root <dir> offline installation of packages.\n");
296 printf("\t--add-arch <arch>:<prio> Register architecture with given priority\n");
297 printf("\t--add-dest <name>:<path> Register destination with given path\n");
298
299 printf("\nForce Options:\n");
300 printf("\t--force-depends Install/remove despite failed dependencies\n");
301 printf("\t--force-maintainer Overwrite preexisting config files\n");
302 printf("\t--force-reinstall Reinstall package(s)\n");
303 printf("\t--force-overwrite Overwrite files from other package(s)\n");
304 printf("\t--force-downgrade Allow opkg to downgrade packages\n");
305 printf("\t--force-space Disable free space checks\n");
306 printf("\t--force-postinstall Run postinstall scripts even in offline mode\n");
307 printf("\t--force-remove Remove package even if prerm script fails\n");
308 printf("\t--force-checksum Don't fail on checksum mismatches\n");
309 printf("\t--noaction No action -- test only\n");
310 printf("\t--download-only No action -- download only\n");
311 printf("\t--nodeps Do not follow dependencies\n");
312 printf("\t--nocase Perform case insensitive pattern matching\n");
313 printf("\t--force-removal-of-dependent-packages\n");
314 printf("\t Remove package and all dependencies\n");
315 printf("\t--autoremove Remove packages that were installed\n");
316 printf("\t automatically to satisfy dependencies\n");
317 printf("\t-t Specify tmp-dir.\n");
318 printf("\t--tmp-dir Specify tmp-dir.\n");
319
320 printf("\n");
321
322 printf(" regexp could be something like 'pkgname*' '*file*' or similar\n");
323 printf(" e.g. opkg info 'libstd*' or opkg search '*libop*' or opkg remove 'libncur*'\n");
324
325 /* --force-removal-of-essential-packages Let opkg remove essential packages.
326 Using this option is almost guaranteed to break your system, hence this option
327 is not even advertised in the usage statement. */
328
329 exit(1);
330 }
331
332 int
333 main(int argc, char *argv[])
334 {
335 int opts, err = -1;
336 char *cmd_name;
337 opkg_cmd_t *cmd;
338 int nocheckfordirorfile = 0;
339 int noreadfeedsfile = 0;
340
341 if (opkg_conf_init())
342 goto err0;
343
344 conf->verbosity = NOTICE;
345
346 opts = args_parse(argc, argv);
347 if (opts == argc || opts < 0) {
348 fprintf(stderr, "opkg must have one sub-command argument\n");
349 usage();
350 }
351
352 cmd_name = argv[opts++];
353
354 if (!strcmp(cmd_name,"print-architecture") ||
355 !strcmp(cmd_name,"print_architecture") ||
356 !strcmp(cmd_name,"print-installation-architecture") ||
357 !strcmp(cmd_name,"print_installation_architecture") )
358 nocheckfordirorfile = 1;
359
360 if (!strcmp(cmd_name,"flag") ||
361 !strcmp(cmd_name,"configure") ||
362 !strcmp(cmd_name,"remove") ||
363 !strcmp(cmd_name,"files") ||
364 !strcmp(cmd_name,"search") ||
365 !strcmp(cmd_name,"compare_versions") ||
366 !strcmp(cmd_name,"compare-versions") ||
367 !strcmp(cmd_name,"list_installed") ||
368 !strcmp(cmd_name,"list-installed") ||
369 !strcmp(cmd_name,"list_changed_conffiles") ||
370 !strcmp(cmd_name,"list-changed-conffiles") ||
371 !strcmp(cmd_name,"status") )
372 noreadfeedsfile = 1;
373
374 cmd = opkg_cmd_find(cmd_name);
375 if (cmd == NULL) {
376 fprintf(stderr, "%s: unknown sub-command %s\n", argv[0],
377 cmd_name);
378 usage();
379 }
380
381 conf->pfm = cmd->pfm;
382
383 if (opkg_conf_load())
384 goto err0;
385
386 if (!nocheckfordirorfile) {
387 if (!noreadfeedsfile) {
388 if (pkg_hash_load_feeds())
389 goto err1;
390 }
391
392 if (pkg_hash_load_status_files())
393 goto err1;
394 }
395
396 if (cmd->requires_args && opts == argc) {
397 fprintf(stderr,
398 "%s: the ``%s'' command requires at least one argument\n",
399 argv[0], cmd_name);
400 usage();
401 }
402
403 err = opkg_cmd_exec(cmd, argc - opts, (const char **) (argv + opts));
404
405 #ifdef HAVE_CURL
406 opkg_curl_cleanup();
407 #endif
408 err1:
409 opkg_conf_deinit();
410
411 err0:
412 print_error_list();
413 free_error_list();
414
415 return err;
416 }