1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
|
// download_update_manager.cc
//
// Copyright (C) 2005, 2007-2009, 2011 Daniel Burrows
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License as
// published by the Free Software Foundation; either version 2 of
// the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; see the file COPYING. If not, write to
// the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
// Boston, MA 02111-1307, USA.
#include "download_update_manager.h"
#include "apt.h"
#include "config_signal.h"
#include "download_signal_log.h"
#include <apt-pkg/acquire-item.h>
#include <apt-pkg/cachefile.h>
#include <apt-pkg/clean.h>
#include <apt-pkg/error.h>
#include <cwidget/generic/util/exception.h>
#include <cwidget/generic/util/ssprintf.h>
#include <errno.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/wait.h>
namespace cw = cwidget;
class my_cleaner:public pkgArchiveCleaner
{
protected:
virtual void Erase(const char *file,
string pkg,
string ver,
struct stat &stat)
{
unlink(file);
}
};
download_update_manager::download_update_manager()
: log(NULL)
{
}
download_update_manager::~download_update_manager()
{
}
bool download_update_manager::prepare(OpProgress &progress,
pkgAcquireStatus &acqlog,
download_signal_log *signallog)
{
log = signallog;
if(apt_cache_file != NULL &&
!(*apt_cache_file)->save_selection_list(progress))
return false;
// FIXME: should save_selection_list do this?
progress.Done();
if(src_list.ReadMainList() == false)
{
_error->Error(_("Couldn't read list of package sources"));
return false;
}
// Abort here so we don't spew random messages below.
if(_error->PendingError())
return false;
// Lock the list directory
FileFd lock;
if(aptcfg->FindB("Debug::NoLocking", false) == false)
{
lock.Fd(GetLock(aptcfg->FindDir("Dir::State::Lists")+"lock"));
if(_error->PendingError() == true)
{
_error->Error(_("Couldn't lock list directory..are you root?"));
return false;
}
}
fetcher = new pkgAcquire();
fetcher->Setup(&acqlog);
if(!src_list.GetIndexes(fetcher))
{
delete fetcher;
fetcher = NULL;
return false;
}
else
return true;
}
// TODO: this should be lifted to generic code.
namespace
{
std::string parse_quoted_string(char quote_character,
const std::string &whole_string,
std::string::const_iterator &begin,
std::string::const_iterator end)
{
std::string rval;
while(begin != end)
{
if(*begin == quote_character)
{
++begin;
return rval;
}
else if(*begin == '\\')
{
++begin;
if(begin != end)
rval += *begin;
}
else
rval += *begin;
++begin;
}
_error->Warning(_("Unterminated quoted string in command: %s"),
whole_string.c_str());
return rval;
}
/** \brief Parse whitespace-separated arguments from the given
* string, handling both single and double quotes.
*
* Each argument in the string is pushed onto the end of the
* given vector.
*/
void parse_command_arguments(const std::string &command_line,
std::vector<std::string> &arguments)
{
std::string::const_iterator begin = command_line.begin();;
const std::string::const_iterator end = command_line.end();
while(begin != end)
{
while(begin != end && isspace(*begin))
++begin;
std::string arg;
while(begin != end && !isspace(*begin))
{
if(*begin == '"' || *begin == '\'')
{
++begin;
arg += parse_quoted_string(*begin, command_line,
begin, end);
}
else
{
arg.push_back(*begin);
++begin;
}
}
arguments.push_back(arg);
}
}
/** \brief An exception indicating that a sub-process could not be run.
*/
class SubprocessException : public cwidget::util::Exception
{
std::string msg;
public:
SubprocessException(const std::string &_msg)
: msg(_msg)
{
}
std::string errmsg() const { return msg; }
};
/** \brief Run a subprocess and redirect its output to /dev/null.
*
* $PATH is not searched, and the arguments are passed directly to
* the subprocess without shell intervention. The return value is
* the status of the subcommand as it would be returned from
* waitpid().
*/
int run_in_subprocess_to_devnull(const std::string &command,
const std::vector<std::string> &args)
{
// Merge any new information in the apt cache into the debtags cache
// by running 'debtags update'. Be safe here: don't risk running
// the wrong thing as root by using system() or scanning the PATH.
int pid = fork();
if(pid < 0)
{
int errnum = errno;
throw SubprocessException(cw::util::ssprintf(_("fork() failed: %s"),
cw::util::sstrerror(errnum).c_str()));
}
else if(pid == 0)
{
int fdnullin = open("/dev/null", O_RDONLY);
if(fdnullin < 0)
close(0);
else
{
dup2(fdnullin, 0);
close(fdnullin);
}
int fdnullout = open("/dev/null", O_WRONLY);
if(fdnullout < 0)
{
close(1);
close(2);
}
else
{
dup2(fdnullout, 1);
dup2(fdnullout, 2);
close(fdnullout);
}
char **argv = new char*[args.size() + 1];
for(std::vector<std::string>::size_type i = 0;
i < args.size(); ++i)
{
argv[i] = const_cast<char *>(args[i].c_str());
}
argv[args.size()] = NULL;
exit(execv(command.c_str(), argv));
}
else
{
while(true)
{
int status = 0;
errno = 0;
if(waitpid(pid, &status, 0) == pid)
return status;
else if(errno != EINTR)
{
int errnum = errno;
throw SubprocessException(cw::util::ssprintf(_("waitpid() failed: %s"),
cw::util::sstrerror(errnum).c_str()));
}
}
}
}
}
void download_update_manager::finish(pkgAcquire::RunResult res,
OpProgress *progress,
const sigc::slot1<void, result> &k)
{
if(log != NULL)
log->Complete();
apt_close_cache();
if(res != pkgAcquire::Continue)
{
k(failure);
return;
}
bool transientNetworkFailure = false;
result rval = success;
// We need to claim that the download failed if any source failed,
// and invoke Finished() on any failed items. Also, we shouldn't
// clean the package lists if any individual item failed because it
// makes users grumpy (see Debian bugs #201842 and #479620).
//
// See also apt-get.cc.
for(pkgAcquire::ItemIterator it = fetcher->ItemsBegin();
it != fetcher->ItemsEnd(); ++it)
{
if((*it)->Status == pkgAcquire::Item::StatDone)
continue;
(*it)->Finished();
if((*it)->Status == pkgAcquire::Item::StatTransientNetworkError)
{
transientNetworkFailure = true;
continue;
}
// Q: should I display an error message for this source?
rval = failure;
}
// Clean old stuff out
std::string listsdir = aptcfg->FindDir("Dir::State::lists");
if(rval == success && !transientNetworkFailure &&
aptcfg->FindB("APT::Get::List-Cleanup", true) == true &&
aptcfg->FindB("APT::List-Cleanup", true) == true &&
(fetcher->Clean(listsdir) == false ||
fetcher->Clean(listsdir + "partial/") == false))
{
_error->Error(_("Couldn't clean out list directories"));
k(failure);
return;
}
// Rebuild the apt caches as done in apt-get. cachefile is scoped
// so it dies before we possibly-reload the cache. This will do a
// little redundant work in visual mode, but avoids lots of
// redundant work at the command-line.
{
pkgCacheFile cachefile;
if(!cachefile.BuildCaches(progress, true))
{
_error->Error(_("Couldn't rebuild package cache"));
k(failure);
return;
}
}
bool need_forget_new =
aptcfg->FindB(PACKAGE "::Forget-New-On-Update", false);
bool need_autoclean =
aptcfg->FindB(PACKAGE "::AutoClean-After-Update", false);
#ifdef HAVE_EPT
std::string debtags = aptcfg->Find(PACKAGE "::Debtags-Binary", "/usr/bin/debtags");
if(debtags.size() == 0)
_error->Error(_("The debtags command must not be an empty string."));
// Keep the user from killing themselves without trying: a relative
// path would open a root exploit.
else if(debtags[0] != '/')
_error->Error(_("The debtags command must be an absolute path."));
// Check up-front if we can execute the command. This is not ideal
// since there's a race condition (the command could go away before
// we try to execute it) but the worst that will happen is that we
// display a confusing error message (...exited with code 255).
else if(euidaccess(debtags.c_str(), X_OK) != 0)
{
int errnum = errno;
if(errnum == ENOENT)
// Fail silently instead of annoying the user over and over.
; //_error->Warning(_("The debtags command (%s) does not exist; perhaps you need to install the debtags package?"),
//debtags.c_str());
else
_error->Error(_("The debtags command (%s) cannot be executed: %s"),
debtags.c_str(), cw::util::sstrerror(errnum).c_str());
}
else
{
progress->OverallProgress(0, 0, 1, _("Updating debtags database..."));
std::string debtags_options = aptcfg->Find(PACKAGE "::Debtags-Update-Options", "--local");
std::vector<std::string> args;
args.push_back(debtags);
args.push_back("update");
parse_command_arguments(debtags_options, args);
try
{
int status = run_in_subprocess_to_devnull(debtags, args);
if(WIFSIGNALED(status))
{
std::string coredumpstr;
#ifdef WCOREDUMP
if(WCOREDUMP(status))
coredumpstr = std::string(" ") + _("(core dumped)");
#endif
// ForTranslators: "%s update %s" gets replaced by a command line, do not translate it!
_error->Warning(_("The debtags update process (%s update %s) was killed by signal %d%s."),
debtags.c_str(), debtags_options.c_str(), WTERMSIG(status),
coredumpstr.c_str());
}
else if(WIFEXITED(status))
{
if(WEXITSTATUS(status) != 0)
// ForTranslators: "%s update %s" gets replaced by a command line, do not translate it!
_error->Warning(_("The debtags update process (%s update %s) exited abnormally (code %d)."),
debtags.c_str(), debtags_options.c_str(), WEXITSTATUS(status));
}
else
// This should never happen, but if it does something is
// wrong.
// ForTranslators: "%s update %s" gets replaced by a command line, do not translate it!
_error->Warning(_("The debtags update process (%s update %s) exited in an unexpected way (status %d)."),
debtags.c_str(), debtags_options.c_str(), status);
}
catch(cw::util::Exception &e)
{
// ForTranslators: "%s update %s" gets replaced by a command line, do not translate it!
_error->Warning(_("Updating the debtags database (%s update %s) failed (perhaps debtags is not installed?): %s"),
debtags.c_str(), debtags_options.c_str(), e.errmsg().c_str());
}
progress->Progress(1);
progress->Done();
}
#endif
if(need_forget_new || need_autoclean)
apt_load_cache(progress, true);
if(apt_cache_file != NULL && need_forget_new)
{
(*apt_cache_file)->forget_new(NULL);
post_forget_new_hook();
}
if(apt_cache_file != NULL && need_autoclean)
{
pre_autoclean_hook();
my_cleaner cleaner;
cleaner.Go(aptcfg->FindDir("Dir::Cache::archives"), *apt_cache_file);
cleaner.Go(aptcfg->FindDir("Dir::Cache::archives")+"partial/",
*apt_cache_file);
post_autoclean_hook();
}
k(rval);
return;
}
|