chiark / gitweb /
Don't crash if an apk got built without source (e.g. with --no-tarball)
[fdroidserver.git] / fdroidserver / publish.py
1 #!/usr/bin/env python2
2 # -*- coding: utf-8 -*-
3 #
4 # publish.py - part of the FDroid server tools
5 # Copyright (C) 2010-13, Ciaran Gultnieks, ciaran@ciarang.com
6 # Copyright (C) 2013-2014 Daniel Martí <mvdan@mvdan.cc>
7 #
8 # This program is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU Affero General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU Affero General Public License for more details.
17 #
18 # You should have received a copy of the GNU Affero General Public License
19 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
21 import sys
22 import os
23 import shutil
24 import md5
25 import glob
26 from optparse import OptionParser
27 import logging
28
29 import common, metadata
30 from common import FDroidPopen, BuildException
31
32 config = None
33 options = None
34
35 def main():
36
37     global config, options
38
39     # Parse command line...
40     parser = OptionParser(usage="Usage: %prog [options] [APPID[:VERCODE] [APPID[:VERCODE] ...]]")
41     parser.add_option("-v", "--verbose", action="store_true", default=False,
42                       help="Spew out even more information than normal")
43     (options, args) = parser.parse_args()
44
45     config = common.read_config(options)
46
47     log_dir = 'logs'
48     if not os.path.isdir(log_dir):
49         logging.info("Creating log directory")
50         os.makedirs(log_dir)
51
52     tmp_dir = 'tmp'
53     if not os.path.isdir(tmp_dir):
54         logging.info("Creating temporary directory")
55         os.makedirs(tmp_dir)
56
57     output_dir = 'repo'
58     if not os.path.isdir(output_dir):
59         logging.info("Creating output directory")
60         os.makedirs(output_dir)
61
62     unsigned_dir = 'unsigned'
63     if not os.path.isdir(unsigned_dir):
64         logging.info("No unsigned directory - nothing to do")
65         sys.exit(0)
66
67     # It was suggested at https://dev.guardianproject.info/projects/bazaar/wiki/FDroid_Audit
68     # that a package could be crafted, such that it would use the same signing
69     # key as an existing app. While it may be theoretically possible for such a
70     # colliding package ID to be generated, it seems virtually impossible that
71     # the colliding ID would be something that would be a) a valid package ID,
72     # and b) a sane-looking ID that would make its way into the repo.
73     # Nonetheless, to be sure, before publishing we check that there are no
74     # collisions, and refuse to do any publishing if that's the case...
75     allapps = metadata.read_metadata()
76     vercodes = common.read_pkg_args(args, True)
77     allaliases = []
78     for app in allapps:
79         m = md5.new()
80         m.update(app['id'])
81         keyalias = m.hexdigest()[:8]
82         if keyalias in allaliases:
83             logging.info("There is a keyalias collision - publishing halted")
84             sys.exit(1)
85         allaliases.append(keyalias)
86     logging.info("{0} apps, {0} key aliases".format(len(allapps), len(allaliases)))
87
88     # Process any apks that are waiting to be signed...
89     for apkfile in sorted(glob.glob(os.path.join(unsigned_dir, '*.apk'))):
90
91         appid, vercode = common.apknameinfo(apkfile)
92         apkfilename = os.path.basename(apkfile)
93         if vercodes and appid not in vercodes:
94             continue
95         if appid in vercodes and vercodes[appid]:
96             if vercode not in vercodes[appid]:
97                 continue
98         logging.info("Processing " + apkfile)
99
100         # Figure out the key alias name we'll use. Only the first 8
101         # characters are significant, so we'll use the first 8 from
102         # the MD5 of the app's ID and hope there are no collisions.
103         # If a collision does occur later, we're going to have to
104         # come up with a new alogrithm, AND rename all existing keys
105         # in the keystore!
106         if appid in config['keyaliases']:
107             # For this particular app, the key alias is overridden...
108             keyalias = config['keyaliases'][appid]
109             if keyalias.startswith('@'):
110                 m = md5.new()
111                 m.update(keyalias[1:])
112                 keyalias = m.hexdigest()[:8]
113         else:
114             m = md5.new()
115             m.update(appid)
116             keyalias = m.hexdigest()[:8]
117         logging.info("Key alias: " + keyalias)
118
119         # See if we already have a key for this application, and
120         # if not generate one...
121         p = FDroidPopen(['keytool', '-list',
122             '-alias', keyalias, '-keystore', config['keystore'],
123             '-storepass', config['keystorepass']])
124         if p.returncode !=0:
125             logging.info("Key does not exist - generating...")
126             p = FDroidPopen(['keytool', '-genkey',
127                 '-keystore', config['keystore'], '-alias', keyalias,
128                 '-keyalg', 'RSA', '-keysize', '2048',
129                 '-validity', '10000',
130                 '-storepass', config['keystorepass'],
131                 '-keypass', config['keypass'],
132                 '-dname', config['keydname']])
133             if p.returncode != 0:
134                 raise BuildException("Failed to generate key")
135
136         # Sign the application...
137         p = FDroidPopen(['jarsigner', '-keystore', config['keystore'],
138             '-storepass', config['keystorepass'],
139             '-keypass', config['keypass'], '-sigalg',
140             'MD5withRSA', '-digestalg', 'SHA1',
141                 apkfile, keyalias])
142         if p.returncode != 0:
143             raise BuildException("Failed to sign application")
144
145         # Zipalign it...
146         p = FDroidPopen([os.path.join(config['sdk_path'],'tools','zipalign'),
147                             '-v', '4', apkfile,
148                             os.path.join(output_dir, apkfilename)])
149         if p.returncode != 0:
150             raise BuildException("Failed to align application")
151         os.remove(apkfile)
152
153         # Move the source tarball into the output directory...
154         tarfilename = apkfilename[:-4] + '_src.tar.gz'
155         tarfile = os.path.join(unsigned_dir, tarfilename)
156         if os.path.exists(tarfile):
157             shutil.move(tarfile, os.path.join(output_dir, tarfilename))
158
159         logging.info('Published ' + apkfilename)
160
161
162 if __name__ == "__main__":
163     main()
164