Rearrange and clean up formatting.
[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 "includes.h"
23
24 #include <getopt.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <unistd.h>
28
29 #include "opkg_conf.h"
30 #include "opkg_cmd.h"
31 #include "file_util.h"
32 #include "opkg_message.h"
33 #include "../libbb/libbb.h"
34
35 enum {
36 ARGS_OPT_FORCE_MAINTAINER = 129,
37 ARGS_OPT_FORCE_DEPENDS,
38 ARGS_OPT_FORCE_OVERWRITE,
39 ARGS_OPT_FORCE_DOWNGRADE,
40 ARGS_OPT_FORCE_REINSTALL,
41 ARGS_OPT_FORCE_REMOVAL_OF_DEPENDENT_PACKAGES,
42 ARGS_OPT_FORCE_REMOVAL_OF_ESSENTIAL_PACKAGES,
43 ARGS_OPT_FORCE_SPACE,
44 ARGS_OPT_NOACTION,
45 ARGS_OPT_NODEPS,
46 ARGS_OPT_AUTOREMOVE,
47 ARGS_OPT_CACHE,
48 };
49
50 static struct option long_options[] = {
51 {"query-all", 0, 0, 'A'},
52 {"autoremove", 0, 0, ARGS_OPT_AUTOREMOVE},
53 {"cache", 1, 0, ARGS_OPT_CACHE},
54 {"conf-file", 1, 0, 'f'},
55 {"conf", 1, 0, 'f'},
56 {"dest", 1, 0, 'd'},
57 {"force-maintainer", 0, 0, ARGS_OPT_FORCE_MAINTAINER},
58 {"force_maintainer", 0, 0, ARGS_OPT_FORCE_MAINTAINER},
59 {"force-depends", 0, 0, ARGS_OPT_FORCE_DEPENDS},
60 {"force_depends", 0, 0, ARGS_OPT_FORCE_DEPENDS},
61 {"force-overwrite", 0, 0, ARGS_OPT_FORCE_OVERWRITE},
62 {"force_overwrite", 0, 0, ARGS_OPT_FORCE_OVERWRITE},
63 {"force_downgrade", 0, 0, ARGS_OPT_FORCE_DOWNGRADE},
64 {"force-downgrade", 0, 0, ARGS_OPT_FORCE_DOWNGRADE},
65 {"force-reinstall", 0, 0, ARGS_OPT_FORCE_REINSTALL},
66 {"force_reinstall", 0, 0, ARGS_OPT_FORCE_REINSTALL},
67 {"force-space", 0, 0, ARGS_OPT_FORCE_SPACE},
68 {"force_space", 0, 0, ARGS_OPT_FORCE_SPACE},
69 {"recursive", 0, 0, ARGS_OPT_FORCE_REMOVAL_OF_DEPENDENT_PACKAGES},
70 {"force-removal-of-dependent-packages", 0, 0,
71 ARGS_OPT_FORCE_REMOVAL_OF_DEPENDENT_PACKAGES},
72 {"force_removal_of_dependent_packages", 0, 0,
73 ARGS_OPT_FORCE_REMOVAL_OF_DEPENDENT_PACKAGES},
74 {"force-removal-of-essential-packages", 0, 0,
75 ARGS_OPT_FORCE_REMOVAL_OF_ESSENTIAL_PACKAGES},
76 {"force_removal_of_essential_packages", 0, 0,
77 ARGS_OPT_FORCE_REMOVAL_OF_ESSENTIAL_PACKAGES},
78 {"noaction", 0, 0, ARGS_OPT_NOACTION},
79 {"nodeps", 0, 0, ARGS_OPT_NODEPS},
80 {"offline", 1, 0, 'o'},
81 {"offline-root", 1, 0, 'o'},
82 {"test", 0, 0, ARGS_OPT_NOACTION},
83 {"tmp-dir", 1, 0, 't'},
84 {"tmp_dir", 1, 0, 't'},
85 {"verbosity", 2, 0, 'V'},
86 {"version", 0, 0, 'v'},
87 {0, 0, 0, 0}
88 };
89
90 static int
91 args_parse(int argc, char *argv[])
92 {
93 int c;
94 int option_index = 0;
95 int parse_err = 0;
96
97 while (1) {
98 c = getopt_long_only(argc, argv, "Ad:f:no:p:t:vV:",
99 long_options, &option_index);
100 if (c == -1)
101 break;
102
103 switch (c) {
104 case 'A':
105 conf->query_all = 1;
106 break;
107 case 'd':
108 conf->dest_str = xstrdup(optarg);
109 break;
110 case 'f':
111 conf->conf_file = xstrdup(optarg);
112 break;
113 case 'o':
114 conf->offline_root = xstrdup(optarg);
115 break;
116 case 't':
117 conf->tmp_dir = xstrdup(optarg);
118 break;
119 case 'v':
120 printf("opkg version %s\n", VERSION);
121 exit(0);
122 case 'V':
123 conf->verbosity = atoi(optarg);
124 break;
125 case ARGS_OPT_AUTOREMOVE:
126 conf->autoremove = 1;
127 break;
128 case ARGS_OPT_CACHE:
129 free(conf->cache);
130 conf->cache = xstrdup(optarg);
131 break;
132 case ARGS_OPT_FORCE_MAINTAINER:
133 conf->force_maintainer = 1;
134 break;
135 case ARGS_OPT_FORCE_DEPENDS:
136 conf->force_depends = 1;
137 break;
138 case ARGS_OPT_FORCE_OVERWRITE:
139 conf->force_overwrite = 1;
140 break;
141 case ARGS_OPT_FORCE_DOWNGRADE:
142 conf->force_downgrade = 1;
143 break;
144 case ARGS_OPT_FORCE_REINSTALL:
145 conf->force_reinstall = 1;
146 break;
147 case ARGS_OPT_FORCE_REMOVAL_OF_ESSENTIAL_PACKAGES:
148 conf->force_removal_of_essential_packages = 1;
149 break;
150 case ARGS_OPT_FORCE_REMOVAL_OF_DEPENDENT_PACKAGES:
151 conf->force_removal_of_dependent_packages = 1;
152 break;
153 case ARGS_OPT_FORCE_SPACE:
154 conf->force_space = 1;
155 break;
156 case ARGS_OPT_NODEPS:
157 conf->nodeps = 1;
158 break;
159 case ARGS_OPT_NOACTION:
160 conf->noaction = 1;
161 break;
162 case ':':
163 parse_err = -1;
164 break;
165 case '?':
166 parse_err = -1;
167 break;
168 default:
169 printf("Confusion: getopt_long returned %d\n", c);
170 }
171 }
172
173 if (parse_err)
174 return parse_err;
175 else
176 return optind;
177 }
178
179 static void
180 usage()
181 {
182 printf("usage: opkg [options...] sub-command [arguments...]\n");
183 printf("where sub-command is one of:\n");
184
185 printf("\nPackage Manipulation:\n");
186 printf("\tupdate Update list of available packages\n");
187 printf("\tupgrade Upgrade installed packages\n");
188 printf("\tinstall <pkgs> Install package(s)\n");
189 printf("\tconfigure <pkgs> Configure unpacked package(s)\n");
190 printf("\tremove <pkgs|regexp> Remove package(s)\n");
191 printf("\tflag <flag> <pkgs> Flag package(s)\n");
192 printf("\t <flag>=hold|noprune|user|ok|installed|unpacked (one per invocation)\n");
193
194 printf("\nInformational Commands:\n");
195 printf("\tlist List available packages\n");
196 printf("\tlist-installed List installed packages\n");
197 printf("\tlist-upgradable List installed and upgradable packages\n");
198 printf("\tfiles <pkg> List files belonging to <pkg>\n");
199 printf("\tsearch <file|regexp> List package providing <file>\n");
200 printf("\tinfo [pkg|regexp] Display all info for <pkg>\n");
201 printf("\tstatus [pkg|regexp] Display all status for <pkg>\n");
202 printf("\tdownload <pkg> Download <pkg> to current directory\n");
203 printf("\tcompare-versions <v1> <op> <v2>\n");
204 printf("\t compare versions using <= < > >= = << >>\n");
205 printf("\tprint-architecture List installable package architectures\n");
206 printf("\twhatdepends [-A] [pkgname|pat]+\n");
207 printf("\twhatdependsrec [-A] [pkgname|pat]+\n");
208 printf("\twhatprovides [-A] [pkgname|pat]+\n");
209 printf("\twhatconflicts [-A] [pkgname|pat]+\n");
210 printf("\twhatreplaces [-A] [pkgname|pat]+\n");
211
212 printf("\nOptions:\n");
213 printf("\t-A Query all packages not just those installed\n");
214 printf("\t-V <level> Set verbosity level to <level>.\n");
215 printf("\t--verbosity <level> Verbosity levels:\n");
216 printf("\t 0 errors only\n");
217 printf("\t 1 normal messages (default)\n");
218 printf("\t 2 informative messages\n");
219 printf("\t 3 debug\n");
220 printf("\t 4 debug level 2\n");
221 printf("\t-f <conf_file> Use <conf_file> as the opkg configuration file\n");
222 printf("\t--conf <conf_file>\n");
223 printf("\t--cache <directory> Use a package cache\n");
224 printf("\t-d <dest_name> Use <dest_name> as the the root directory for\n");
225 printf("\t--dest <dest_name> package installation, removal, upgrading.\n");
226 printf(" <dest_name> should be a defined dest name from\n");
227 printf(" the configuration file, (but can also be a\n");
228 printf(" directory name in a pinch).\n");
229 printf("\t-o <dir> Use <dir> as the root directory for\n");
230 printf("\t--offline-root <dir> offline installation of packages.\n");
231
232 printf("\nForce Options:\n");
233 printf("\t--force-depends Install/remove despite failed dependences\n");
234 printf("\t--force-maintainer Overwrite preexisting config files\n");
235 printf("\t--force-reinstall Reinstall package(s)\n");
236 printf("\t--force-overwrite Overwrite files from other package(s)\n");
237 printf("\t--force-downgrade Allow opkg to downgrade packages\n");
238 printf("\t--force-space Disable free space checks\n");
239 printf("\t--noaction No action -- test only\n");
240 printf("\t--nodeps Do not follow dependences\n");
241 printf("\t--force-removal-of-dependent-packages\n");
242 printf("\t Remove package and all dependencies\n");
243 printf("\t--autoremove Remove packages that were installed\n");
244 printf("\t automatically to satisfy dependencies\n");
245 printf("\t-t Specify tmp-dir.\n");
246 printf("\t--tmp-dir Specify tmp-dir.\n");
247
248 printf("\n");
249
250 printf(" regexp could be something like 'pkgname*' '*file*' or similar\n");
251 printf(" e.g. opkg info 'libstd*' or opkg search '*libop*' or opkg remove 'libncur*'\n");
252
253 /* --force-removal-of-essential-packages Let opkg remove essential packages.
254 Using this option is almost guaranteed to break your system, hence this option
255 is not even advertised in the usage statement. */
256
257 exit(1);
258 }
259
260 int
261 main(int argc, char *argv[])
262 {
263 int opts;
264 char *cmd_name;
265 opkg_cmd_t *cmd;
266 int nocheckfordirorfile = 0;
267 int noreadfeedsfile = 0;
268
269 opts = args_parse(argc, argv);
270 if (opts == argc || opts < 0) {
271 fprintf (stderr, "%s: unknown sub-command %s\n", argv[0],
272 cmd_name);
273 fprintf(stderr, "opkg must have one sub-command argument\n");
274 usage();
275 }
276
277 cmd_name = argv[opts++];
278
279 if (!strcmp(cmd_name,"print-architecture") ||
280 !strcmp(cmd_name,"print_architecture") ||
281 !strcmp(cmd_name,"print-installation-architecture") ||
282 !strcmp(cmd_name,"print_installation_architecture") )
283 nocheckfordirorfile = 1;
284
285 if (!strcmp(cmd_name,"flag") ||
286 !strcmp(cmd_name,"configure") ||
287 !strcmp(cmd_name,"remove") ||
288 !strcmp(cmd_name,"files") ||
289 !strcmp(cmd_name,"search") ||
290 !strcmp(cmd_name,"compare_versions") ||
291 !strcmp(cmd_name,"compare-versions") ||
292 !strcmp(cmd_name,"list_installed") ||
293 !strcmp(cmd_name,"list-installed") ||
294 !strcmp(cmd_name,"status") )
295 noreadfeedsfile = 1;
296
297 cmd = opkg_cmd_find(cmd_name);
298 if (cmd == NULL) {
299 fprintf(stderr, "%s: unknown sub-command %s\n", argv[0],
300 cmd_name);
301 usage();
302 }
303
304 conf->verbosity = NOTICE;
305 conf->pfm = cmd->pfm;
306
307 if (opkg_conf_init())
308 goto err0;
309
310 if (!nocheckfordirorfile) {
311 if (!noreadfeedsfile) {
312 if (pkg_hash_load_feeds())
313 goto err1;
314 }
315
316 if (pkg_hash_load_status_files())
317 goto err1;
318 }
319
320 if (cmd->requires_args && opts == argc) {
321 fprintf(stderr,
322 "%s: the ``%s'' command requires at least one argument\n",
323 argv[0], cmd_name);
324 usage();
325 }
326
327 if (opkg_cmd_exec(cmd, argc - opts, (const char **) (argv + opts)))
328 goto err2;
329
330 print_error_list();
331 free_error_list();
332
333 return 0;
334
335 err2:
336 #ifdef HAVE_CURL
337 opkg_curl_cleanup();
338 #endif
339 err1:
340 opkg_conf_deinit();
341
342 err0:
343 print_error_list();
344 free_error_list();
345
346 return -1;
347 }