6 GPG_CMD
="gpg --ignore-time-conflict --no-options --no-default-keyring"
8 # gpg needs (in different versions more or less) files to function correctly,
9 # so we give it its own homedir and generate some valid content for it
10 GPGHOMEDIR
="$(mktemp -d)"
11 CURRENTTRAP
="${CURRENTTRAP} rm -rf '${GPGHOMEDIR}';"
12 trap "${CURRENTTRAP}" 0 HUP INT QUIT ILL ABRT FPE SEGV PIPE TERM
13 chmod 700 "$GPGHOMEDIR"
14 # We don't use a secret keyring, of course, but gpg panics and
15 # implodes if there isn't one available - and writeable for imports
16 SECRETKEYRING
="${GPGHOMEDIR}/secring.gpg"
18 GPG_CMD
="$GPG_CMD --homedir $GPGHOMEDIR"
19 # create the trustdb with an (empty) dummy keyring
20 # older gpgs required it, newer gpgs even warn that it isn't needed,
21 # but require it nonetheless for some commands, so we just play safe
22 # here for the foreseeable future and create a dummy one
23 $GPG_CMD --quiet --check-trustdb --keyring $SECRETKEYRING >/dev
/null
2>&1
24 # tell gpg that it shouldn't try to maintain a trustdb file
25 GPG_CMD
="$GPG_CMD --no-auto-check-trustdb --trust-model always"
30 eval $(apt-config shell APT_DIR Dir)
32 MASTER_KEYRING
='&keyring-master-filename;'
33 eval $(apt-config shell MASTER_KEYRING APT::Key::MasterKeyring)
34 ARCHIVE_KEYRING
='&keyring-filename;'
35 eval $(apt-config shell ARCHIVE_KEYRING APT::Key::ArchiveKeyring)
36 REMOVED_KEYS
='&keyring-removed-filename;'
37 eval $(apt-config shell REMOVED_KEYS APT::Key::RemovedKeys)
38 ARCHIVE_KEYRING_URI
='&keyring-uri;'
39 eval $(apt-config shell ARCHIVE_KEYRING_URI APT::Key::ArchiveKeyringURI)
40 TMP_KEYRING
=${APT_DIR}/var
/lib
/apt
/keyrings
/maybe
-import-keyring.gpg
42 aptkey_echo
() { echo "$@"; }
45 if [ "$(id -u)" -ne 0 ]; then
46 echo >&1 "ERROR: This command can only be used by root."
51 # gpg defaults to mode 0600 for new keyrings. Create one with 0644 instead.
54 if ! [ -e "$path" ]; then
61 add_keys_with_verify_against_master_keyring
() {
65 if [ ! -f "$ADD_KEYRING" ]; then
66 echo "ERROR: '$ADD_KEYRING' not found"
69 if [ ! -f "$MASTER" ]; then
70 echo "ERROR: '$MASTER' not found"
74 # when adding new keys, make sure that the archive-master-keyring
76 # all keys that are exported must have a valid signature
77 # from a key in the $distro-master-keyring
78 add_keys
=`$GPG_CMD --keyring $ADD_KEYRING --with-colons --list-keys | grep ^pub | cut -d: -f5`
79 all_add_keys
=`$GPG_CMD --keyring $ADD_KEYRING --with-colons --list-keys | grep ^[ps]ub | cut -d: -f5`
80 master_keys
=`$GPG_CMD --keyring $MASTER --with-colons --list-keys | grep ^pub | cut -d: -f5`
82 # ensure there are no colisions LP: #857472
83 for all_add_key
in $all_add_keys; do
84 for master_key
in $master_keys; do
85 if [ "$all_add_key" = "$master_key" ]; then
86 echo >&2 "Keyid collision for '$all_add_key' detected, operation aborted"
92 for add_key
in $add_keys; do
93 # export the add keyring one-by-one
95 $GPG_CMD --keyring $ADD_KEYRING --output $TMP_KEYRING --export $add_key
96 # check if signed with the master key and only add in this case
98 for master_key
in $master_keys; do
99 if $GPG_CMD --keyring $MASTER --keyring $TMP_KEYRING --check-sigs --with-colons $add_key | grep '^sig:!:' | cut
-d: -f5 | grep -q $master_key; then
100 $GPG --import $TMP_KEYRING
104 if [ $ADDED = 0 ]; then
105 echo >&2 "Key '$add_key' not added. It is not signed with a master key"
111 # update the current archive signing keyring from a network URI
112 # the archive-keyring keys needs to be signed with the master key
113 # (otherwise it does not make sense from a security POV)
115 # Disabled for now as code is insecure (LP: #1013639 (and 857472, 1013128))
116 APT_KEY_NET_UPDATE_ENABLED
=""
117 eval $(apt-config shell APT_KEY_NET_UPDATE_ENABLED APT::Key::Net-Update-Enabled)
118 if [ -z "$APT_KEY_NET_UPDATE_ENABLED" ]; then
122 if [ -z "$ARCHIVE_KEYRING_URI" ]; then
123 echo >&2 "ERROR: Your distribution is not supported in net-update as no uri for the archive-keyring is set"
127 # in theory we would need to depend on wget for this, but this feature
128 # isn't useable in debian anyway as we have no keyring uri nor a master key
129 if ! which wget
>/dev
/null
2>&1; then
130 echo >&2 "ERROR: an installed wget is required for a network-based update"
133 if [ ! -d ${APT_DIR}/var
/lib
/apt
/keyrings
]; then
134 mkdir -p ${APT_DIR}/var
/lib
/apt
/keyrings
136 keyring
=${APT_DIR}/var
/lib
/apt
/keyrings
/$(basename $ARCHIVE_KEYRING_URI)
138 if [ -e $keyring ]; then
139 old_mtime
=$(stat -c %Y $keyring)
141 (cd ${APT_DIR}/var
/lib
/apt
/keyrings
; wget
--timeout=90 -q -N $ARCHIVE_KEYRING_URI)
142 if [ ! -e $keyring ]; then
145 new_mtime
=$(stat -c %Y $keyring)
146 if [ $new_mtime -ne $old_mtime ]; then
147 aptkey_echo
"Checking for new archive signing keys now"
148 add_keys_with_verify_against_master_keyring
$keyring $MASTER_KEYRING
153 if [ ! -f $ARCHIVE_KEYRING ]; then
154 echo >&2 "ERROR: Can't find the archive-keyring"
155 echo >&2 "Is the &keyring-package; package installed?"
160 # add new keys from the package;
162 # we do not use add_keys_with_verify_against_master_keyring here,
163 # because "update" is run on regular package updates. A
164 # attacker might as well replace the master-archive-keyring file
165 # in the package and add his own keys. so this check wouldn't
166 # add any security. we *need* this check on net-update though
167 $GPG_CMD --quiet --batch --keyring $ARCHIVE_KEYRING --export | $GPG --import
169 if [ -r "$REMOVED_KEYS" ]; then
170 # remove no-longer supported/used keys
171 keys
=`$GPG_CMD --keyring $REMOVED_KEYS --with-colons --list-keys | grep ^pub | cut -d: -f5`
173 if $GPG --list-keys --with-colons | grep ^pub
| cut
-d: -f5 | grep -q $key; then
174 $GPG --quiet --batch --delete-key --yes ${key}
178 echo "Warning: removed keys keyring $REMOVED_KEYS missing or not readable" >&2
182 remove_key_from_keyring
() {
183 local GPG
="$GPG_CMD --keyring $1"
184 # check if the key is in this keyring: the key id is in the 5 column at the end
185 if ! $GPG --with-colons --list-keys 2>&1 | grep -q "^pub:[^:]*:[^:]*:[^:]*:[0-9A-F]\+$2:"; then
188 if [ ! -w "$1" ]; then
189 echo >&2 "Key ${2} is in keyring ${1}, but can't be removed as it is read only."
192 # check if it is the only key in the keyring and if so remove the keyring altogether
193 if [ '1' = "$($GPG --with-colons --list-keys | grep "^pub:[^:]*:[^:]*:[^:]*:[0-9A-F]\+:" | wc -l)" ]; then
194 mv -f "$1" "${1}~" # behave like gpg
197 # we can't just modify pointed to files as these might be in /usr or something
200 REALTARGET
="$(readlink -f "$1")"
201 mv -f "$1" "${1}.dpkg-tmp"
202 cp -a "$REALTARGET" "$1"
204 # delete the key from the keyring
205 $GPG --batch --delete-key --yes "$2"
206 if [ -n "$REALTARGET" ]; then
207 # the real backup is the old link, not the copy we made
208 mv -f "${1}.dpkg-tmp" "${1}~"
215 # if a --keyring was given, just remove from there
216 if [ -n "$FORCED_KEYRING" ]; then
217 remove_key_from_keyring
"$FORCED_KEYRING" "$1"
219 # otherwise all known keyrings are up for inspection
220 local TRUSTEDFILE
="/etc/apt/trusted.gpg"
221 eval $(apt-config shell TRUSTEDFILE Apt::GPGV::TrustedKeyring)
222 eval $(apt-config shell TRUSTEDFILE Dir::Etc::Trusted/f)
223 remove_key_from_keyring
"$TRUSTEDFILE" "$1"
224 TRUSTEDPARTS
="/etc/apt/trusted.gpg.d"
225 eval $(apt-config shell TRUSTEDPARTS Dir::Etc::TrustedParts/d)
226 if [ -d "$TRUSTEDPARTS" ]; then
227 for trusted
in $(run-parts --list "$TRUSTEDPARTS" --regex '^.*\.gpg$'); do
228 remove_key_from_keyring
"$trusted" "$1"
237 echo "Usage: apt-key [--keyring file] [command] [arguments]"
239 echo "Manage apt's list of trusted keys"
241 echo " apt-key add <file> - add the key contained in <file> ('-' for stdin)"
242 echo " apt-key del <keyid> - remove the key <keyid>"
243 echo " apt-key export <keyid> - output the key <keyid>"
244 echo " apt-key exportall - output all trusted keys"
245 echo " apt-key update - update keys using the keyring package"
246 echo " apt-key net-update - update keys using the network"
247 echo " apt-key list - list keys"
248 echo " apt-key finger - list fingerprints"
249 echo " apt-key adv - pass advanced options to gpg (download key)"
251 echo "If no specific keyring file is given the command applies to all keyring files."
254 while [ -n "$1" ]; do
260 if [ -r "$TRUSTEDFILE" ] || [ "$2" = 'add' ] || [ "$2" = 'adv' ]; then
261 GPG
="$GPG --keyring $TRUSTEDFILE --primary-keyring $TRUSTEDFILE"
263 echo >&2 "Error: The specified keyring »$TRUSTEDFILE« is missing or not readable"
269 requires_root
() { true
; }
273 aptkey_echo
() { true
; }
277 echo >&2 "Unknown option: $1"
285 if [ -z "$TRUSTEDFILE" ]; then
286 TRUSTEDFILE
="/etc/apt/trusted.gpg"
287 eval $(apt-config shell TRUSTEDFILE Apt::GPGV::TrustedKeyring)
288 eval $(apt-config shell TRUSTEDFILE Dir::Etc::Trusted/f)
289 if [ -r "$TRUSTEDFILE" ]; then
290 GPG
="$GPG --keyring $TRUSTEDFILE"
292 GPG
="$GPG --primary-keyring $TRUSTEDFILE"
293 TRUSTEDPARTS
="/etc/apt/trusted.gpg.d"
294 eval $(apt-config shell TRUSTEDPARTS Dir::Etc::TrustedParts/d)
295 if [ -d "$TRUSTEDPARTS" ]; then
296 # strip / suffix as gpg will double-slash in that case (#665411)
297 STRIPPED_TRUSTEDPARTS
="${TRUSTEDPARTS%/}"
298 if [ "${STRIPPED_TRUSTEDPARTS}/" = "$TRUSTEDPARTS" ]; then
299 TRUSTEDPARTS
="$STRIPPED_TRUSTEDPARTS"
301 for trusted
in $(run-parts --list "$TRUSTEDPARTS" --regex '^.*\.gpg$'); do
302 GPG
="$GPG --keyring $trusted"
308 if [ -z "$command" ]; then
314 if [ "$command" != "help" ] && ! which gpg
>/dev
/null
2>&1; then
315 echo >&2 "Warning: gnupg does not seem to be installed."
316 echo >&2 "Warning: apt-key requires gnupg for most operations."
323 init_keyring
"$TRUSTEDFILE"
324 $GPG --quiet --batch --import "$1"
328 init_keyring
"$TRUSTEDFILE"
332 init_keyring
"$TRUSTEDFILE"
336 init_keyring
"$TRUSTEDFILE"
340 init_keyring
"$TRUSTEDFILE"
341 $GPG --batch --list-keys
344 init_keyring
"$TRUSTEDFILE"
345 $GPG --batch --fingerprint
348 init_keyring
"$TRUSTEDFILE"
349 $GPG --armor --export "$1"
352 init_keyring
"$TRUSTEDFILE"
353 $GPG --armor --export
356 init_keyring
"$TRUSTEDFILE"
357 aptkey_echo
"Executing: $GPG $*"