b4aff139b3b53b66721e988ae4244c4412c4dde9
[oweals/opkg-lede.git] / libopkg / opkg.c
1 /* opkg.c - the opkg  package management system
2
3    Thomas Wood <thomas@openedhand.com>
4
5    Copyright (C) 2008 OpenMoko Inc
6
7    This program is free software; you can redistribute it and/or
8    modify it under the terms of the GNU General Public License as
9    published by the Free Software Foundation; either version 2, or (at
10    your option) any later version.
11
12    This program is distributed in the hope that it will be useful, but
13    WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15    General Public License for more details.
16  */
17
18 #include <config.h>
19 #include <fnmatch.h>
20
21 #include "opkg.h"
22 #include "opkg_conf.h"
23 #include "args.h"
24
25 #include "opkg_install.h"
26 #include "opkg_configure.h"
27 #include "opkg_download.h"
28
29 #include "sprintf_alloc.h"
30 #include "file_util.h"
31
32 #include <libbb/libbb.h>
33
34 struct _opkg_t
35 {
36   args_t *args;
37   opkg_conf_t *conf;
38   opkg_option_t *options;
39 };
40
41 /** Private Functions ***/
42
43
44 static int
45 opkg_configure_packages(opkg_conf_t *conf, char *pkg_name)
46 {
47   pkg_vec_t *all;
48   int i;
49   pkg_t *pkg;
50   int r, err = 0;
51
52   all = pkg_vec_alloc ();
53   pkg_hash_fetch_available (&conf->pkg_hash, all);
54
55   for (i = 0; i < all->len; i++)
56   {
57     pkg = all->pkgs[i];
58
59     if (pkg_name && fnmatch (pkg_name, pkg->name, 0))
60       continue;
61
62     if (pkg->state_status == SS_UNPACKED)
63     {
64       r = opkg_configure (conf, pkg);
65       if (r == 0)
66       {
67         pkg->state_status = SS_INSTALLED;
68         pkg->parent->state_status = SS_INSTALLED;
69         pkg->state_flag &= ~SF_PREFER;
70       }
71       else
72       {
73         if (!err)
74           err = r;
75       }
76     }
77   }
78
79   pkg_vec_free (all);
80   return err;
81 }
82
83
84
85 /*** Public API ***/
86
87 opkg_t *
88 opkg_new ()
89 {
90   opkg_t *opkg;
91   opkg = malloc (sizeof (opkg_t));
92
93   opkg->args = malloc (sizeof (args_t));
94   args_init (opkg->args);
95
96   opkg->conf = malloc (sizeof (opkg_conf_t));
97   opkg_conf_init (opkg->conf, opkg->args);
98
99   opkg_init_options_array (opkg->conf, &opkg->options);
100   return opkg;
101 }
102
103 void
104 opkg_free (opkg_t *opkg)
105 {
106   opkg_conf_deinit (opkg->conf);
107   args_deinit (opkg->args);
108 }
109
110 int
111 opkg_read_config_files (opkg_t *opkg)
112 {
113   args_t *a = opkg->args;
114   opkg_conf_t *c = opkg->conf;
115
116   /* Unfortunatly, the easiest way to re-read the config files right now is to
117    * throw away opkg->conf and start again */
118
119   /* copy the settings we need to keep */
120   a->autoremove = c->autoremove;
121   a->force_depends = c->force_depends;
122   a->force_defaults = c->force_defaults;
123   a->force_overwrite = c->force_overwrite;
124   a->force_downgrade = c->force_downgrade;
125   a->force_reinstall = c->force_reinstall;
126   a->force_removal_of_dependent_packages = c->force_removal_of_dependent_packages;
127   a->force_removal_of_essential_packages = c->force_removal_of_essential_packages;
128   a->nodeps = c->nodeps;
129   a->noaction = c->noaction;
130   a->query_all = c->query_all;
131   a->multiple_providers = c->multiple_providers;
132   a->verbosity = c->verbosity;
133
134   if (c->offline_root)
135   {
136     if (a->offline_root) free (a->offline_root);
137     a->offline_root = strdup (c->offline_root);
138   }
139
140   if (c->offline_root_pre_script_cmd)
141   {
142     if (a->offline_root_pre_script_cmd) free (a->offline_root_pre_script_cmd);
143     a->offline_root_pre_script_cmd = strdup (c->offline_root_pre_script_cmd);
144   }
145
146   if (c->offline_root_post_script_cmd)
147   {
148     if (a->offline_root_post_script_cmd) free (a->offline_root_post_script_cmd);
149     a->offline_root_post_script_cmd = strdup (c->offline_root_post_script_cmd);
150   }
151
152   /* throw away old opkg_conf and start again */
153   opkg_conf_deinit (opkg->conf);
154   opkg_conf_init (opkg->conf, opkg->args);
155
156   free (opkg->options);
157   opkg_init_options_array (opkg->conf, &opkg->options);
158
159   return 0;
160 }
161
162 void
163 opkg_get_option (opkg_t *opkg, char *option, void **value)
164 {
165   int i = 0;
166   opkg_option_t *options = opkg->options;
167
168   /* can't store a value in a NULL pointer! */
169   if (!value)
170     return;
171
172   /* look up the option
173    * TODO: this would be much better as a hash table
174    */
175   while (options[i].name)
176   {
177     if (strcmp (options[i].name, option) != 0)
178     {
179       i++;
180       continue;
181     }
182   }
183
184   /* get the option */
185   switch (options[i].type)
186   {
187   case OPKG_OPT_TYPE_BOOL:
188     *((int *) value) = *((int *) options[i].value);
189     return;
190
191   case OPKG_OPT_TYPE_INT:
192     *((int *) value) = *((int *) options[i].value);
193     return;
194
195   case OPKG_OPT_TYPE_STRING:
196     *((char **)value) = strdup (options[i].value);
197     return;
198   }
199
200 }
201
202 void
203 opkg_set_option (opkg_t *opkg, char *option, void *value)
204 {
205   int i = 0;
206   opkg_option_t *options = opkg->options;
207
208   /* NULL values are not defined */
209   if (!value)
210     return;
211
212   /* look up the option
213    * TODO: this would be much better as a hash table
214    */
215   while (options[i].name)
216   {
217     if (strcmp (options[i].name, option) == 0)
218     {
219       break;
220     }
221     i++;
222   }
223
224   /* set the option */
225   switch (options[i].type)
226   {
227   case OPKG_OPT_TYPE_BOOL:
228     if (*((int *) value) == 0)
229       *((int *)options[i].value) = 0;
230     else
231       *((int *)options[i].value) = 1;
232     return;
233
234   case OPKG_OPT_TYPE_INT:
235     *((int *) options[i].value) = *((int *) value);
236     return;
237
238   case OPKG_OPT_TYPE_STRING:
239     *((char **)options[i].value) = strdup (value);
240     return;
241   }
242
243 }
244
245 int
246 opkg_install_package (opkg_t *opkg, char *package_name)
247 {
248   int err;
249
250   pkg_info_preinstall_check (opkg->conf);
251
252   if (opkg->conf->multiple_providers)
253   {
254     err = opkg_install_multi_by_name (opkg->conf, package_name);
255   }
256   else
257   {
258     err = opkg_install_by_name (opkg->conf, package_name);
259   }
260
261   err = opkg_configure_packages (opkg->conf, NULL);
262
263   if (opkg->conf->noaction)
264     return err;
265
266   opkg_conf_write_status_files (opkg->conf);
267   pkg_write_changed_filelists (opkg->conf);
268
269   return err;
270 }
271
272 int
273 opkg_remove_package (opkg_t *opkg, char *package_name)
274 {
275   return 1;
276 }
277
278 int
279 opkg_upgrade_package (opkg_t *opkg, char *package_name)
280 {
281   return 1;
282 }
283
284 int
285 opkg_upgrade_all (opkg_t *opkg)
286 {
287   return 1;
288 }
289
290 int
291 opkg_update_package_lists (opkg_t *opkg)
292 {
293   char *tmp;
294   int err;
295   char *lists_dir;
296   pkg_src_list_elt_t *iter;
297   pkg_src_t *src;
298
299
300   sprintf_alloc (&lists_dir, "%s",
301                  (opkg->conf->restrict_to_default_dest)
302                  ? opkg->conf->default_dest->lists_dir
303                  : opkg->conf->lists_dir);
304
305   if (!file_is_dir (lists_dir))
306   {
307     if (file_exists (lists_dir))
308     {
309       /* XXX: Error: file exists but is not a directory */
310       free (lists_dir);
311       return 1;
312     }
313
314     err = file_mkdir_hier (lists_dir, 0755);
315     if (err)
316     {
317       /* XXX: Error: failed to create directory */
318       free (lists_dir);
319       return 1;
320     }
321   }
322
323   tmp = strdup ("/tmp/opkg.XXXXXX");
324
325   if (mkdtemp (tmp) == NULL)
326   {
327     /* XXX: Error: could not create temporary file name */
328     free (lists_dir);
329     free (tmp);
330     return 1;
331   }
332
333
334   for (iter = opkg->conf->pkg_src_list.head; iter; iter = iter->next)
335   {
336     char *url, *list_file_name;
337
338     src = iter->data;
339
340     if (src->extra_data)  /* debian style? */
341       sprintf_alloc (&url, "%s/%s/%s", src->value, src->extra_data,
342                      src->gzip ? "Packages.gz" : "Packages");
343     else
344       sprintf_alloc (&url, "%s/%s", src->value, src->gzip ? "Packages.gz" : "Packages");
345
346     sprintf_alloc (&list_file_name, "%s/%s", lists_dir, src->name);
347     if (src->gzip)
348     {
349       char *tmp_file_name;
350       FILE *in, *out;
351
352       sprintf_alloc (&tmp_file_name, "%s/%s.gz", tmp, src->name);
353
354       /* XXX: Note: downloading url */
355       err = opkg_download (opkg->conf, url, tmp_file_name);
356
357       if (err == 0)
358       {
359         /* XXX: Note: Inflating downloaded file */
360         in = fopen (tmp_file_name, "r");
361         out = fopen (list_file_name, "w");
362         if (in && out)
363           unzip (in, out);
364         else
365           err = 1;
366         if (in)
367           fclose (in);
368         if (out)
369           fclose (out);
370         unlink (tmp_file_name);
371       }
372     }
373     else
374       err = opkg_download (opkg->conf, url, list_file_name);
375
376     if (err)
377     {
378       /* XXX: Error: download error */
379     }
380     free (url);
381
382 #ifdef HAVE_GPGME
383     /* download detached signitures to verify the package lists */
384     /* get the url for the sig file */
385     if (src->extra_data)  /* debian style? */
386       sprintf_alloc (&url, "%s/%s/%s", src->value, src->extra_data,
387                      "Packages.sig");
388     else
389       sprintf_alloc (&url, "%s/%s", src->value, "Packages.sig");
390
391     /* create temporary file for it */
392     char *tmp_file_name;
393
394     sprintf_alloc (&tmp_file_name, "%s/%s", tmp, "Packages.sig");
395
396     err = opkg_download (opkg->conf, url, tmp_file_name);
397     if (err)
398     {
399       /* XXX: Warning: Download failed */
400     }
401     else
402     {
403       int err;
404       err = opkg_verify_file (opkg->conf, list_file_name, tmp_file_name);
405       if (err == 0)
406       {
407         /* XXX: Notice: Signature check passed */
408       }
409       else
410       {
411         /* XXX: Warning: Signature check failed */
412       }
413     }
414     unlink (tmp_file_name);
415     free (tmp_file_name);
416     free (url);
417 #else
418     /* XXX: Note: Signiture check for %s skipped because GPG support was not
419      * enabled in this build
420      */
421 #endif
422     free (list_file_name);
423   }
424   rmdir (tmp);
425   free (tmp);
426   free (lists_dir);
427
428   return 0;
429 }