chiark / gitweb /
fix genkey key listing in `fdroid init`
[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     parser.add_option("-q", "--quiet", action="store_true", default=False,
44                       help="Restrict output to warnings and errors")
45     (options, args) = parser.parse_args()
46
47     config = common.read_config(options)
48
49     log_dir = 'logs'
50     if not os.path.isdir(log_dir):
51         logging.info("Creating log directory")
52         os.makedirs(log_dir)
53
54     tmp_dir = 'tmp'
55     if not os.path.isdir(tmp_dir):
56         logging.info("Creating temporary directory")
57         os.makedirs(tmp_dir)
58
59     output_dir = 'repo'
60     if not os.path.isdir(output_dir):
61         logging.info("Creating output directory")
62         os.makedirs(output_dir)
63
64     unsigned_dir = 'unsigned'
65     if not os.path.isdir(unsigned_dir):
66         logging.info("No unsigned directory - nothing to do")
67         sys.exit(0)
68
69     # It was suggested at https://dev.guardianproject.info/projects/bazaar/wiki/FDroid_Audit
70     # that a package could be crafted, such that it would use the same signing
71     # key as an existing app. While it may be theoretically possible for such a
72     # colliding package ID to be generated, it seems virtually impossible that
73     # the colliding ID would be something that would be a) a valid package ID,
74     # and b) a sane-looking ID that would make its way into the repo.
75     # Nonetheless, to be sure, before publishing we check that there are no
76     # collisions, and refuse to do any publishing if that's the case...
77     allapps = metadata.read_metadata()
78     vercodes = common.read_pkg_args(args, True)
79     allaliases = []
80     for app in allapps:
81         m = md5.new()
82         m.update(app['id'])
83         keyalias = m.hexdigest()[:8]
84         if keyalias in allaliases:
85             logging.info("There is a keyalias collision - publishing halted")
86             sys.exit(1)
87         allaliases.append(keyalias)
88     logging.info("{0} apps, {0} key aliases".format(len(allapps), len(allaliases)))
89
90     # Process any apks that are waiting to be signed...
91     for apkfile in sorted(glob.glob(os.path.join(unsigned_dir, '*.apk'))):
92
93         appid, vercode = common.apknameinfo(apkfile)
94         apkfilename = os.path.basename(apkfile)
95         if vercodes and appid not in vercodes:
96             continue
97         if appid in vercodes and vercodes[appid]:
98             if vercode not in vercodes[appid]:
99                 continue
100         logging.info("Processing " + apkfile)
101
102         # Figure out the key alias name we'll use. Only the first 8
103         # characters are significant, so we'll use the first 8 from
104         # the MD5 of the app's ID and hope there are no collisions.
105         # If a collision does occur later, we're going to have to
106         # come up with a new alogrithm, AND rename all existing keys
107         # in the keystore!
108         if appid in config['keyaliases']:
109             # For this particular app, the key alias is overridden...
110             keyalias = config['keyaliases'][appid]
111             if keyalias.startswith('@'):
112                 m = md5.new()
113                 m.update(keyalias[1:])
114                 keyalias = m.hexdigest()[:8]
115         else:
116             m = md5.new()
117             m.update(appid)
118             keyalias = m.hexdigest()[:8]
119         logging.info("Key alias: " + keyalias)
120
121         # See if we already have a key for this application, and
122         # if not generate one...
123         p = FDroidPopen(['keytool', '-list',
124             '-alias', keyalias, '-keystore', config['keystore'],
125             '-storepass:file', config['keystorepass']])
126         if p.returncode !=0:
127             logging.info("Key does not exist - generating...")
128             p = FDroidPopen(['keytool', '-genkey',
129                 '-keystore', config['keystore'], '-alias', keyalias,
130                 '-keyalg', 'RSA', '-keysize', '2048',
131                 '-validity', '10000',
132                 '-storepass:file', config['keystorepassfile'],
133                 '-keypass:file', config['keypassfile'],
134                 '-dname', config['keydname']])
135             # TODO keypass should be sent via stdin
136             if p.returncode != 0:
137                 raise BuildException("Failed to generate key")
138
139         # Sign the application...
140         p = FDroidPopen(['jarsigner', '-keystore', config['keystore'],
141             '-storepass:file', config['keystorepassfile'],
142             '-keypass:file', config['keypassfile'], '-sigalg',
143             'MD5withRSA', '-digestalg', 'SHA1',
144                 apkfile, keyalias])
145         # TODO keypass should be sent via stdin
146         if p.returncode != 0:
147             raise BuildException("Failed to sign application")
148
149         # Zipalign it...
150         p = FDroidPopen([os.path.join(config['sdk_path'],'tools','zipalign'),
151                             '-v', '4', apkfile,
152                             os.path.join(output_dir, apkfilename)])
153         if p.returncode != 0:
154             raise BuildException("Failed to align application")
155         os.remove(apkfile)
156
157         # Move the source tarball into the output directory...
158         tarfilename = apkfilename[:-4] + '_src.tar.gz'
159         tarfile = os.path.join(unsigned_dir, tarfilename)
160         if os.path.exists(tarfile):
161             shutil.move(tarfile, os.path.join(output_dir, tarfilename))
162
163         logging.info('Published ' + apkfilename)
164
165
166 if __name__ == "__main__":
167     main()
168