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