7 eval $(apt-config shell APT_DIR Dir)
9 MASTER_KEYRING
='&keyring-master-filename;'
10 eval $(apt-config shell MASTER_KEYRING APT::Key::MasterKeyring)
11 ARCHIVE_KEYRING
='&keyring-filename;'
12 eval $(apt-config shell ARCHIVE_KEYRING APT::Key::ArchiveKeyring)
13 REMOVED_KEYS
='&keyring-removed-filename;'
14 eval $(apt-config shell REMOVED_KEYS APT::Key::RemovedKeys)
15 ARCHIVE_KEYRING_URI
='&keyring-uri;'
16 eval $(apt-config shell ARCHIVE_KEYRING_URI APT::Key::ArchiveKeyringURI)
18 aptkey_echo
() { echo "$@"; }
21 if [ "$(id -u)" -ne 0 ]; then
22 echo >&2 "ERROR: This command can only be used by root."
27 get_fingerprints_of_keyring
() {
28 $GPG_CMD --keyring "$1" --with-colons --fingerprint | while read publine
; do
29 # search for a public key
30 if [ "${publine%%:*}" != 'pub' ]; then continue; fi
31 # search for the associated fingerprint (should be the very next line)
32 while read fprline
; do
33 if [ "${fprline%%:*}" = 'sub' ]; then break; # should never happen
34 elif [ "${fprline%%:*}" != 'fpr' ]; then continue; fi
35 echo "$fprline" | cut
-d':' -f 10
40 add_keys_with_verify_against_master_keyring
() {
44 if [ ! -f "$ADD_KEYRING" ]; then
45 echo >&2 "ERROR: '$ADD_KEYRING' not found"
48 if [ ! -f "$MASTER" ]; then
49 echo >&2 "ERROR: '$MASTER' not found"
53 # when adding new keys, make sure that the archive-master-keyring
55 # all keys that are exported must have a valid signature
56 # from a key in the $distro-master-keyring
57 add_keys
="$(get_fingerprints_of_keyring "$ADD_KEYRING")"
58 all_add_keys
=`$GPG_CMD --keyring $ADD_KEYRING --with-colons --list-keys | grep ^[ps]ub | cut -d: -f5`
59 master_keys
=`$GPG_CMD --keyring $MASTER --with-colons --list-keys | grep ^pub | cut -d: -f5`
61 # ensure there are no colisions LP: #857472
62 for all_add_key
in $all_add_keys; do
63 for master_key
in $master_keys; do
64 if [ "$all_add_key" = "$master_key" ]; then
65 echo >&2 "Keyid collision for '$all_add_key' detected, operation aborted"
71 for add_key
in $add_keys; do
72 # export the add keyring one-by-one
73 local TMP_KEYRING
="${GPGHOMEDIR}/tmp-keyring.gpg"
74 $GPG_CMD --batch --yes --keyring "$ADD_KEYRING" --output "$TMP_KEYRING" --export "$add_key"
75 if ! $GPG_CMD --batch --yes --keyring "$TMP_KEYRING" --import "$MASTER" > "${GPGHOMEDIR}/gpgoutput.log" 2>&1; then
76 cat "${GPGHOMEDIR}/gpgoutput.log"
79 # check if signed with the master key and only add in this case
81 for master_key
in $master_keys; do
82 if $GPG_CMD --keyring $TMP_KEYRING --check-sigs --with-colons $add_key | grep '^sig:!:' | cut
-d: -f5 | grep -q $master_key; then
83 $GPG_CMD --batch --yes --keyring "$ADD_KEYRING" --export "$add_key" | $GPG --batch --yes --import
87 if [ $ADDED = 0 ]; then
88 echo >&2 "Key '$add_key' not added. It is not signed with a master key"
90 rm -f "${TMP_KEYRING}"
94 # update the current archive signing keyring from a network URI
95 # the archive-keyring keys needs to be signed with the master key
96 # (otherwise it does not make sense from a security POV)
98 # Disabled for now as code is insecure (LP: #1013639 (and 857472, 1013128))
99 APT_KEY_NET_UPDATE_ENABLED
=""
100 eval $(apt-config shell APT_KEY_NET_UPDATE_ENABLED APT::Key::Net-Update-Enabled)
101 if [ -z "$APT_KEY_NET_UPDATE_ENABLED" ]; then
105 if [ -z "$ARCHIVE_KEYRING_URI" ]; then
106 echo >&2 "ERROR: Your distribution is not supported in net-update as no uri for the archive-keyring is set"
109 # in theory we would need to depend on wget for this, but this feature
110 # isn't useable in debian anyway as we have no keyring uri nor a master key
111 if ! which wget
>/dev
/null
2>&1; then
112 echo >&2 "ERROR: an installed wget is required for a network-based update"
115 if [ ! -d ${APT_DIR}/var
/lib
/apt
/keyrings
]; then
116 mkdir -p ${APT_DIR}/var
/lib
/apt
/keyrings
118 keyring
=${APT_DIR}/var
/lib
/apt
/keyrings
/$(basename $ARCHIVE_KEYRING_URI)
120 if [ -e $keyring ]; then
121 old_mtime
=$(stat -c %Y $keyring)
123 (cd ${APT_DIR}/var
/lib
/apt
/keyrings
; wget
--timeout=90 -q -N $ARCHIVE_KEYRING_URI)
124 if [ ! -e $keyring ]; then
127 new_mtime
=$(stat -c %Y $keyring)
128 if [ $new_mtime -ne $old_mtime ]; then
129 aptkey_echo
"Checking for new archive signing keys now"
130 add_keys_with_verify_against_master_keyring
$keyring $MASTER_KEYRING
135 if [ ! -f $ARCHIVE_KEYRING ]; then
136 echo >&2 "ERROR: Can't find the archive-keyring"
137 echo >&2 "Is the &keyring-package; package installed?"
141 # add new keys from the package;
143 # we do not use add_keys_with_verify_against_master_keyring here,
144 # because "update" is run on regular package updates. A
145 # attacker might as well replace the master-archive-keyring file
146 # in the package and add his own keys. so this check wouldn't
147 # add any security. we *need* this check on net-update though
148 $GPG_CMD --quiet --batch --keyring $ARCHIVE_KEYRING --export | $GPG --import
150 if [ -r "$REMOVED_KEYS" ]; then
151 # remove no-longer supported/used keys
152 get_fingerprints_of_keyring
"$REMOVED_KEYS" | while read key
; do
153 foreach_keyring_do
'remove_key_from_keyring' "$key"
156 echo >&2 "Warning: removed keys keyring $REMOVED_KEYS missing or not readable"
160 remove_key_from_keyring
() {
161 local KEYRINGFILE
="$1"
163 # non-existent keyrings have by definition no keys
164 if [ ! -e "$KEYRINGFILE" ]; then
168 local GPG
="$GPG_CMD --keyring $KEYRINGFILE"
170 # check if the key is in this keyring: the key id is in the 5 column at the end
171 if ! get_fingerprints_of_keyring
"$KEYRINGFILE" | grep -q "^[0-9A-F]*${KEY}$"; then
174 if [ ! -w "$KEYRINGFILE" ]; then
175 echo >&2 "Key ${KEY} is in keyring ${KEYRINGFILE}, but can't be removed as it is read only."
178 # check if it is the only key in the keyring and if so remove the keyring altogether
179 if [ '1' = "$(get_fingerprints_of_keyring "$KEYRINGFILE" | wc -l)" ]; then
180 mv -f "$KEYRINGFILE" "${KEYRINGFILE}~" # behave like gpg
183 # we can't just modify pointed to files as these might be in /usr or something
185 if [ -L "$KEYRINGFILE" ]; then
186 REALTARGET
="$(readlink -f "$KEYRINGFILE")"
187 mv -f "$KEYRINGFILE" "${KEYRINGFILE}.dpkg-tmp"
188 cp -a "$REALTARGET" "$KEYRINGFILE"
190 # delete the key from the keyring
191 $GPG --batch --delete-key --yes "$KEY"
192 if [ -n "$REALTARGET" ]; then
193 # the real backup is the old link, not the copy we made
194 mv -f "${KEYRINGFILE}.dpkg-tmp" "${KEYRINGFILE}~"
199 foreach_keyring_do
() {
202 # if a --keyring was given, just remove from there
203 if [ -n "$FORCED_KEYRING" ]; then
204 $ACTION "$FORCED_KEYRING" "$@"
206 # otherwise all known keyrings are up for inspection
207 if [ -s "$TRUSTEDFILE" ]; then
208 $ACTION "$TRUSTEDFILE" "$@"
210 local TRUSTEDPARTS
="/etc/apt/trusted.gpg.d"
211 eval $(apt-config shell TRUSTEDPARTS Dir::Etc::TrustedParts/d)
212 if [ -d "$TRUSTEDPARTS" ]; then
213 # strip / suffix as gpg will double-slash in that case (#665411)
214 local STRIPPED_TRUSTEDPARTS
="${TRUSTEDPARTS%/}"
215 if [ "${STRIPPED_TRUSTEDPARTS}/" = "$TRUSTEDPARTS" ]; then
216 TRUSTEDPARTS
="$STRIPPED_TRUSTEDPARTS"
218 for trusted
in $(run-parts --list "$TRUSTEDPARTS" --regex '^.*\.gpg$'); do
219 if [ -s "$trusted" ]; then
220 $ACTION "$trusted" "$@"
227 run_cmd_on_keyring
() {
228 local KEYRINGFILE
="$1"
230 # fingerprint and co will fail if key isn't in this keyring
231 $GPG_CMD --keyring "$KEYRINGFILE" --batch "$@" 2>/dev
/null
|| true
234 import_keys_from_keyring
() {
236 local KEYRINGFILE
="$2"
237 if ! $GPG_CMD --keyring "$KEYRINGFILE" --batch --import "$IMPORT" > "${GPGHOMEDIR}/gpgoutput.log" 2>&1; then
238 cat "${GPGHOMEDIR}/gpgoutput.log"
243 merge_keys_into_keyrings
() {
244 local KEYRINGFILE
="$1"
246 if ! $GPG_CMD --keyring "$KEYRINGFILE" --batch --import --import-options 'merge-only' "$IMPORT" > "${GPGHOMEDIR}/gpgoutput.log" 2>&1; then
247 cat "${GPGHOMEDIR}/gpgoutput.log"
252 merge_back_changes
() {
253 if [ -n "$FORCED_KEYRING" ]; then
254 # if the keyring was forced merge is already done
257 if [ -s "${GPGHOMEDIR}/pubring.gpg" ]; then
258 # merge all updated keys
259 foreach_keyring_do
'merge_keys_into_keyrings' "${GPGHOMEDIR}/pubring.gpg"
261 # look for keys which were added or removed
262 get_fingerprints_of_keyring
"${GPGHOMEDIR}/pubring.orig.gpg" > "${GPGHOMEDIR}/pubring.orig.keylst"
263 get_fingerprints_of_keyring
"${GPGHOMEDIR}/pubring.gpg" > "${GPGHOMEDIR}/pubring.keylst"
264 sort "${GPGHOMEDIR}/pubring.keylst" "${GPGHOMEDIR}/pubring.orig.keylst" | uniq --unique | while read key
; do
265 if grep -q "^${key}$" "${GPGHOMEDIR}/pubring.orig.keylst"; then
266 # key isn't part of new keyring, so remove
267 foreach_keyring_do
'remove_key_from_keyring' "$key"
268 elif grep -q "^${key}$" "${GPGHOMEDIR}/pubring.keylst"; then
269 # key is part of new keyring, so we need to import it
270 create_new_keyring
"$TRUSTEDFILE"
271 if ! $GPG --batch --yes --export "$key" | $GPG_CMD --keyring "$TRUSTEDFILE" --batch --yes --import > "${GPGHOMEDIR}/gpgoutput.log" 2>&1; then
272 cat "${GPGHOMEDIR}/gpgoutput.log"
276 echo >&2 "Errror: Key ${key} (dis)appeared out of nowhere"
281 setup_merged_keyring
() {
282 if [ -z "$FORCED_KEYRING" ]; then
283 foreach_keyring_do
'import_keys_from_keyring' "${GPGHOMEDIR}/pubring.gpg"
284 if [ -r "${GPGHOMEDIR}/pubring.gpg" ]; then
285 cp -a "${GPGHOMEDIR}/pubring.gpg" "${GPGHOMEDIR}/pubring.orig.gpg"
287 touch "${GPGHOMEDIR}/pubring.gpg" "${GPGHOMEDIR}/pubring.orig.gpg"
289 GPG
="$GPG --keyring ${GPGHOMEDIR}/pubring.gpg"
291 GPG
="$GPG --keyring $TRUSTEDFILE"
292 create_new_keyring
"$TRUSTEDFILE"
296 create_new_keyring
() {
297 # gpg defaults to mode 0600 for new keyrings. Create one with 0644 instead.
298 if ! [ -e "$TRUSTEDFILE" ]; then
299 if [ -w "$(dirname "$TRUSTEDFILE")" ]; then
300 touch -- "$TRUSTEDFILE"
301 chmod 0644 -- "$TRUSTEDFILE"
307 echo "Usage: apt-key [--keyring file] [command] [arguments]"
309 echo "Manage apt's list of trusted keys"
311 echo " apt-key add <file> - add the key contained in <file> ('-' for stdin)"
312 echo " apt-key del <keyid> - remove the key <keyid>"
313 echo " apt-key export <keyid> - output the key <keyid>"
314 echo " apt-key exportall - output all trusted keys"
315 echo " apt-key update - update keys using the keyring package"
316 echo " apt-key net-update - update keys using the network"
317 echo " apt-key list - list keys"
318 echo " apt-key finger - list fingerprints"
319 echo " apt-key adv - pass advanced options to gpg (download key)"
321 echo "If no specific keyring file is given the command applies to all keyring files."
324 while [ -n "$1" ]; do
333 FORCED_SECRET_KEYRING
="$1"
336 merge_back_changes
() { true
; }
339 requires_root
() { true
; }
342 aptkey_echo
() { true
; }
345 echo >&2 "Unknown option: $1"
354 if [ -z "$TRUSTEDFILE" ]; then
355 TRUSTEDFILE
="/etc/apt/trusted.gpg"
356 eval $(apt-config shell TRUSTEDFILE Apt::GPGV::TrustedKeyring)
357 eval $(apt-config shell TRUSTEDFILE Dir::Etc::Trusted/f)
361 if [ -z "$command" ]; then
367 if [ "$command" != "help" ]; then
368 eval $(apt-config shell GPG_EXE Apt::Key::gpgcommand)
370 if [ -n "$GPG_EXE" ] && which "$GPG_EXE" >/dev
/null
2>&1; then
372 elif which gpg
>/dev
/null
2>&1; then
374 elif which gpg2
>/dev
/null
2>&1; then
377 echo >&2 "Error: gnupg or gnupg2 do not seem to be installed,"
378 echo >&2 "Error: but apt-key requires gnupg or gnupg2 for operation."
383 GPG_CMD
="$GPG_EXE --ignore-time-conflict --no-options --no-default-keyring"
385 # gpg needs (in different versions more or less) files to function correctly,
386 # so we give it its own homedir and generate some valid content for it
387 GPGHOMEDIR
="$(mktemp -d)"
388 CURRENTTRAP
="${CURRENTTRAP} rm -rf '${GPGHOMEDIR}';"
389 trap "${CURRENTTRAP}" 0 HUP INT QUIT ILL ABRT FPE SEGV PIPE TERM
390 chmod 700 "$GPGHOMEDIR"
391 # We don't use a secret keyring, of course, but gpg panics and
392 # implodes if there isn't one available - and writeable for imports
393 SECRETKEYRING
="${GPGHOMEDIR}/secring.gpg"
395 GPG_CMD
="$GPG_CMD --homedir $GPGHOMEDIR"
396 # create the trustdb with an (empty) dummy keyring
397 # older gpgs required it, newer gpgs even warn that it isn't needed,
398 # but require it nonetheless for some commands, so we just play safe
399 # here for the foreseeable future and create a dummy one
400 $GPG_CMD --quiet --check-trustdb --keyring $SECRETKEYRING >/dev
/null
2>&1
401 # tell gpg that it shouldn't try to maintain a trustdb file
402 GPG_CMD
="$GPG_CMD --no-auto-check-trustdb --trust-model always"
405 # for advanced operations, we might really need a secret keyring after all
406 if [ -n "$FORCED_SECRET_KEYRING" ] && [ -r "$FORCED_SECRET_KEYRING" ]; then
407 rm -f "$SECRETKEYRING"
408 cp -a "$FORCED_SECRET_KEYRING" "$SECRETKEYRING"
416 $GPG --quiet --batch --import "$@"
422 foreach_keyring_do
'remove_key_from_keyring' "$@"
438 foreach_keyring_do
'run_cmd_on_keyring' --list-keys "$@"
441 foreach_keyring_do
'run_cmd_on_keyring' --fingerprint "$@"
444 foreach_keyring_do
'import_keys_from_keyring' "${GPGHOMEDIR}/pubring.gpg"
445 $GPG_CMD --keyring "${GPGHOMEDIR}/pubring.gpg" --armor --export "$@"
449 aptkey_echo
"Executing: $GPG $*"
455 if which gpgv
>/dev
/null
2>&1; then
456 gpgv
--homedir "${GPGHOMEDIR}" --keyring "${GPGHOMEDIR}/pubring.gpg" --ignore-time-conflict "$@"