]> git.saurik.com Git - apt.git/blob - cmdline/apt-helper.cc
if file is inaccessible for _apt, disable privilege drop in acquire
[apt.git] / cmdline / apt-helper.cc
1 // -*- mode: cpp; mode: fold -*-
2 // Description /*{{{*/
3 /* #####################################################################
4 apt-helper - cmdline helpers
5 ##################################################################### */
6 /*}}}*/
7 // Include Files /*{{{*/
8 #include <config.h>
9
10 #include <apt-pkg/configuration.h>
11 #include <apt-pkg/cmndline.h>
12 #include <apt-pkg/error.h>
13 #include <apt-pkg/init.h>
14 #include <apt-pkg/strutl.h>
15 #include <apt-pkg/pkgsystem.h>
16 #include <apt-pkg/fileutl.h>
17 #include <apt-pkg/acquire.h>
18 #include <apt-pkg/acquire-item.h>
19 #include <apt-pkg/proxy.h>
20
21 #include <apt-private/acqprogress.h>
22 #include <apt-private/private-output.h>
23 #include <apt-private/private-download.h>
24 #include <apt-private/private-cmndline.h>
25 #include <apt-pkg/srvrec.h>
26
27 #include <iostream>
28 #include <string>
29 #include <vector>
30
31 #include <apti18n.h>
32 /*}}}*/
33
34 static bool DoAutoDetectProxy(CommandLine &CmdL)
35 {
36 if (CmdL.FileSize() != 2)
37 return _error->Error(_("Need one URL as argument"));
38 URI ServerURL(CmdL.FileList[1]);
39 AutoDetectProxy(ServerURL);
40 std::string SpecificProxy = _config->Find("Acquire::"+ServerURL.Access+"::Proxy::" + ServerURL.Host);
41 ioprintf(std::cout, "Using proxy '%s' for URL '%s'\n",
42 SpecificProxy.c_str(), std::string(ServerURL).c_str());
43
44 return true;
45 }
46
47 static bool DoDownloadFile(CommandLine &CmdL)
48 {
49 if (CmdL.FileSize() <= 2)
50 return _error->Error(_("Must specify at least one pair url/filename"));
51
52 AcqTextStatus Stat(std::cout, ScreenWidth,_config->FindI("quiet",0));
53 pkgAcquire Fetcher(&Stat);
54
55 size_t fileind = 0;
56 std::vector<std::string> targetfiles;
57 while (fileind + 2 <= CmdL.FileSize())
58 {
59 std::string download_uri = CmdL.FileList[fileind + 1];
60 std::string targetfile = CmdL.FileList[fileind + 2];
61 std::string hash;
62 if (CmdL.FileSize() > fileind + 3)
63 hash = CmdL.FileList[fileind + 3];
64 // we use download_uri as descr and targetfile as short-descr
65 new pkgAcqFile(&Fetcher, download_uri, hash, 0, download_uri, targetfile,
66 "dest-dir-ignored", targetfile);
67 targetfiles.push_back(targetfile);
68 fileind += 3;
69 }
70
71 bool Failed = false;
72 if (AcquireRun(Fetcher, 0, &Failed, NULL) == false || Failed == true)
73 return _error->Error(_("Download Failed"));
74 if (targetfiles.empty() == false)
75 for (std::vector<std::string>::const_iterator f = targetfiles.begin(); f != targetfiles.end(); ++f)
76 if (FileExists(*f) == false)
77 return _error->Error(_("Download Failed"));
78
79 return true;
80 }
81
82 static bool DoSrvLookup(CommandLine &CmdL)
83 {
84 if (CmdL.FileSize() < 1)
85 return _error->Error(_("Must specifc at least one srv record"));
86
87 std::vector<SrvRec> srv_records;
88 c1out << "# target priority weight port" << std::endl;
89 for(int i=1; CmdL.FileList[i] != NULL; i++)
90 {
91 if(GetSrvRecords(CmdL.FileList[i], srv_records) == false)
92 _error->Warning(_("GetSrvRec failed for %s"), CmdL.FileList[i]);
93 for (std::vector<SrvRec>::const_iterator I = srv_records.begin();
94 I != srv_records.end(); ++I)
95 {
96 c1out << (*I).target.c_str() << " "
97 << (*I).priority << " "
98 << (*I).weight << " "
99 << (*I).port << " "
100 << std::endl;
101 }
102 }
103
104 return true;
105 }
106
107 static bool ShowHelp(CommandLine &)
108 {
109 ioprintf(std::cout, "%s %s (%s)\n", PACKAGE, PACKAGE_VERSION, COMMON_ARCH);
110
111 if (_config->FindB("version") == true)
112 return true;
113
114 std::cout <<
115 _("Usage: apt-helper [options] command\n"
116 " apt-helper [options] download-file uri target-path\n"
117 "\n"
118 "apt-helper is a internal helper for apt\n"
119 "\n"
120 "Commands:\n"
121 " download-file - download the given uri to the target-path\n"
122 " srv-lookup - lookup a SRV record (e.g. _http._tcp.ftp.debian.org)\n"
123 " auto-detect-proxy - detect proxy using apt.conf\n"
124 "\n"
125 " This APT helper has Super Meep Powers.\n");
126 return true;
127 }
128
129
130 int main(int argc,const char *argv[]) /*{{{*/
131 {
132 CommandLine::Dispatch Cmds[] = {{"help",&ShowHelp},
133 {"download-file", &DoDownloadFile},
134 {"srv-lookup", &DoSrvLookup},
135 {"auto-detect-proxy", &DoAutoDetectProxy},
136 {0,0}};
137
138 std::vector<CommandLine::Args> Args = getCommandArgs(
139 "apt-download", CommandLine::GetCommand(Cmds, argc, argv));
140
141 // Set up gettext support
142 setlocale(LC_ALL,"");
143 textdomain(PACKAGE);
144
145 // Parse the command line and initialize the package library
146 CommandLine CmdL;
147 ParseCommandLine(CmdL, Cmds, Args.data(), &_config, &_system, argc, argv, ShowHelp);
148
149 InitOutput();
150
151 // Match the operation
152 CmdL.DispatchArg(Cmds);
153
154 // Print any errors or warnings found during parsing
155 bool const Errors = _error->PendingError();
156 if (_config->FindI("quiet",0) > 0)
157 _error->DumpErrors();
158 else
159 _error->DumpErrors(GlobalError::DEBUG);
160 return Errors == true ? 100 : 0;
161 }
162 /*}}}*/