]>
git.saurik.com Git - apt.git/blob - apt-private/private-download.cc
3ded9e0b9b20e64e6286e00d97071aa00510147d
1 // Include Files /*{{{*/
4 #include <apt-pkg/acquire.h>
5 #include <apt-pkg/acquire-item.h>
6 #include <apt-pkg/configuration.h>
7 #include <apt-pkg/error.h>
8 #include <apt-pkg/fileutl.h>
9 #include <apt-pkg/strutl.h>
11 #include <apt-private/private-output.h>
12 #include <apt-private/private-download.h>
19 #include <sys/types.h>
26 bool CheckDropPrivsMustBeDisabled(pkgAcquire
&Fetcher
) /*{{{*/
28 // no need/possibility to drop privs
32 // the user does not want to drop privs
33 std::string SandboxUser
= _config
->Find("APT::Sandbox::User");
34 if (SandboxUser
.empty())
37 struct passwd
const * const pw
= getpwnam(SandboxUser
.c_str());
41 if (seteuid(pw
->pw_uid
) != 0)
42 return _error
->Errno("seteuid", "seteuid %u failed", pw
->pw_uid
);
45 // check if we can write to destfile
46 for (pkgAcquire::ItemIterator I
= Fetcher
.ItemsBegin();
47 I
!= Fetcher
.ItemsEnd() && res
== true; ++I
)
49 int fd
= open((*I
)->DestFile
.c_str(), O_CREAT
| O_RDWR
, 0600);
54 strprintf(msg
, _("Can't drop privileges for downloading as file '%s' couldn't be accessed by user '%s'."),
55 (*I
)->DestFile
.c_str(), SandboxUser
.c_str());
56 c0out
<< msg
<< std::endl
;
57 _config
->Set("APT::Sandbox::User", "");
63 return _error
->Errno("seteuid", "seteuid %u failed", 0);
68 // CheckAuth - check if each download comes form a trusted source /*{{{*/
69 bool CheckAuth(pkgAcquire
& Fetcher
, bool const PromptUser
)
71 std::string UntrustedList
;
72 for (pkgAcquire::ItemIterator I
= Fetcher
.ItemsBegin(); I
< Fetcher
.ItemsEnd(); ++I
)
73 if (!(*I
)->IsTrusted())
74 UntrustedList
+= std::string((*I
)->ShortDesc()) + " ";
76 if (UntrustedList
== "")
79 return AuthPrompt(UntrustedList
, PromptUser
);
82 bool AuthPrompt(std::string
const &UntrustedList
, bool const PromptUser
)
84 ShowList(c2out
,_("WARNING: The following packages cannot be authenticated!"),UntrustedList
,"");
86 if (_config
->FindB("APT::Get::AllowUnauthenticated",false) == true)
88 c2out
<< _("Authentication warning overridden.\n");
92 if (PromptUser
== false)
93 return _error
->Error(_("Some packages could not be authenticated"));
95 if (_config
->FindI("quiet",0) < 2
96 && _config
->FindB("APT::Get::Assume-Yes",false) == false)
98 c2out
<< _("Install these packages without verification?") << std::flush
;
100 return _error
->Error(_("Some packages could not be authenticated"));
104 else if (_config
->FindB("APT::Get::Force-Yes",false) == true)
107 return _error
->Error(_("There are problems and -y was used without --force-yes"));
110 bool AcquireRun(pkgAcquire
&Fetcher
, int const PulseInterval
, bool * const Failure
, bool * const TransientNetworkFailure
)/*{{{*/
112 pkgAcquire::RunResult res
;
113 if(PulseInterval
> 0)
114 res
= Fetcher
.Run(PulseInterval
);
118 if (res
== pkgAcquire::Failed
)
121 for (pkgAcquire::ItemIterator I
= Fetcher
.ItemsBegin();
122 I
!= Fetcher
.ItemsEnd(); ++I
)
125 if ((*I
)->Status
== pkgAcquire::Item::StatDone
&&
126 (*I
)->Complete
== true)
129 if (TransientNetworkFailure
!= NULL
&& (*I
)->Status
== pkgAcquire::Item::StatIdle
)
131 *TransientNetworkFailure
= true;
135 ::URI
uri((*I
)->DescURI());
137 uri
.Password
.clear();
138 std::string descUri
= std::string(uri
);
139 _error
->Error(_("Failed to fetch %s %s\n"), descUri
.c_str(),
140 (*I
)->ErrorText
.c_str());