Project

General

Profile

TasksFunding » History » Version 3

Denis 'GNUtoo' Carikli, 12/22/2018 02:41 PM

1 2 Denis 'GNUtoo' Carikli
h1. Tasks
2 1 Denis 'GNUtoo' Carikli
3
{{>toc}}
4
5 2 Denis 'GNUtoo' Carikli
This page describes how to help Replicant if you have some time at hand.
6 1 Denis 'GNUtoo' Carikli
7 2 Denis 'GNUtoo' Carikli
h2. Project focus
8
9
While supporting many common (Samsung) phones and tablets is relatively easy and fast to do, we think that it's at lot more important to support devices that are better for freedom. Many Samsung devices we do support have an isolated modem, however we can't free their bootloader because it is signed.
10
11
Devices like the GTA04 or the LG Optimus Black don't have this bootloader issue, while still having an isolated modem.
12
We therefore strongly advise to pick tasks that would improve the support for these more freedom-friendly devices in Replicant.
13
14
We however still accept contributions for devices with isolated modems and non-free bootloaders.
15
16
Filtering the issue tracker for open issues, which have either one of the priorities "immediate":/projects/replicant/issues?set_filter=1&f[]=status_id&op[status_id]=o&f[]=priority_id&op[priority_id]=%3D&v[priority_id][]=39&f[]=&c[]=tracker&c[]=status&c[]=priority&c[]=subject&c[]=assigned_to&c[]=updated_on&c[]=category&c[]=cf_21&group_by=, "urgent":/projects/replicant/issues?set_filter=1&f[]=status_id&op[status_id]=o&f[]=priority_id&op[priority_id]=%3D&v[priority_id][]=33&f[]=&c[]=tracker&c[]=status&c[]=priority&c[]=subject&c[]=assigned_to&c[]=updated_on&c[]=category&c[]=cf_21&group_by= or "high":/projects/replicant/issues?set_filter=1&f[]=status_id&op[status_id]=o&f[]=priority_id&op[priority_id]=%3D&v[priority_id][]=27&f[]=&c[]=tracker&c[]=status&c[]=priority&c[]=subject&c[]=assigned_to&c[]=updated_on&c[]=category&c[]=cf_21&group_by=, lists the important current tasks.
17
18
Additionally, below is an overview over tasks where help is greatly appreciated.
19
20
*Note: Working on most of these tasks and projects requires a sufficiently powerful computer with enough disk space to build Replicant.*
21 1 Denis 'GNUtoo' Carikli
22
23
24 3 Denis 'GNUtoo' Carikli
25
26
27
28
29
30
h2. Various tasks that don't require specific hardware
31
32
33
h3. Access Point mode for RepWifi
34
35
RepWifi is Replicant's app for using an external USB WiFi adapter.  RepWifi is useful for Replicant because there exist USB WiFi adapters with free firmware, while the built-in WiFi chipsets in mobile phones do not have free firmware.  Right now, RepWifi doesn't support acting as an access point (e.g. for WiFi tethering purposes); you can help by adding this functionality to RepWifi.
36
37
Note that, if we receive high-quality student proposals for both this project and *Implementing generic Hardware Abstraction Layers (HALs)*, we will probably prioritize *Implementing generic Hardware Abstraction Layers (HALs)* over this project.
38
39
*Difficulty*: Easy to Medium
40
41
*Requirements/Prerequisites*: Knowledge of Java and basic shell scripting. Basic knowledge about wpa_supplicant and general network management in POSIX environments.
42
Required knowledge builds up very fast by trial and error, no need to be experts in networking, it's mostly about researching and learning.
43
44
*Expected Outcomes/Deliverables*: Make wpa_supplicant run in "Access Point mode", allowing another device to connect to the phone via WiFi, and use its mobile data connection to access the internet. Integrate the needed GUI functions into RepWifi.
45
46
*Possible Mentors*: Fil (confirmed)
47
48
h2. Port Replicant to a newer LineageOS version and support in-system updates
49
50
Replicant is currently based on LineageOS 13.  It would be desirable to upgrade Replicant to a newer release of LineageOS. While at it, it would be useful for a Replicant device to be able to update itself to a new version of Replicant without requiring being connected to a PC. LineageOS already supports this; we suspect that it should be possible to adapt this LineageOS functionality to Replicant. Whenever possible, it would be useful to complete and submit some of the code written for Replicant to LineageOS.
51
52
*Difficulty*: Medium
53
54
*Requirements/Prerequisites*: Knowledge of C, C++, and Java.
55
56
*Expected Outcomes/Deliverables*: Remove all proprietary components of LineageOS, port all the changes needed to successfully boot without any blobs, rebrand LineageOS as Replicant and support in-system updates
57
58
*Possible Mentors*: Forkbomb (confirmed), Wolfgang?
59
60
h2. Improve support for the free software compatible external WiFi adapter
61
62
All devices currently supported by Replicant have WiFi chips that requires a non-free firmware to work. So to have WiFi working with free software, users need to use external WiFi adapters. They typically use tiny ath9k_htc compatible USB WiFi adapter along with a tiny USB OTG Host adapter.
63
64
Such external USB WiFi adapters used with Replicant are originally intended for laptops, not phones. As a result, they tend to consume a lot of power. According to lsusb some ath9k_htc compatible devices can consume up to 500mA.
65
66
This poses several issues:
67
* Some smartphones and tablets might not be compatible, at the hardware level, with such big power consumption.
68
* They can adversely impact battery life
69
70
Such USB WiFi adapters can also randomly stop working completely on some devices (e.g. needing to unplug and replug the adapter periodically to keep it operational).
71
72
You will need to investigate reliability issues such as the one mentioned above and look how power consumption can be improved in the adapter firmware and/or kernel driver.
73
74
You will also need to investigate how much miliampers USB devices can use, at the hardware level, on the smartphones and tablets Replicant supports.
75
76
*Difficulty*: Medium/Hard
77
78
*Requirements/Prerequisites*: Knowledge of C
79
80
*Expected Outcomes/Deliverables*: Reliable WiFi with external WiFi adapter
81
82
*Possible Mentors*: GNUtoo (confirmed)
83
84
h2. Tackle security issues in Replicant
85
86
Replicant is plagued by various security issues, that are mostly due to using a downstream codebase. One of the most crucial issues is that Replicant uses an old version of the Android WebView (from circa 2015), which is also a functionality drawback.
87
An initial evaluation of the security issues in Replicant should be conducted, followed by the integration or update of the concerned components of the system.
88
89
It would also be nice to do the same for privacy issues. Since Replicant indirectly depends on the "Android Open Source Project" and directly depends on LineageOS, not all privacy issues might have been found fixed by Replicant. Once security issues have been fixed, it would be nice to try to identify as many privacy issues as possible, and in a second time to fix them.
90
91
*Difficulty*: Medium-Hard
92
93
*Requirements/Prerequisites*: Android build system, knowledge of system security, advanced git
94
95
*Expected Outcomes/Deliverables*: Integration or update of components of Replicant to tackle security issues
96
97
*Possible Mentors*: Wolfgang?
98
99
h2. Fix the Free software distribution guidelines issues and improve the build system.
100
101
Replicant has some issues with "FSDG (Free System Distribution Guidelines)":https://www.gnu.org/distros/free-system-distribution-guidelines.html compliance: "F-droid":https://f-droid.org/ repository is not FSDG compliant anymore (Bug #1629), and Replicant can't be built from an FSDG distribution (Bug #1861). This ought to be fixed. Replicant should also be fixed to build without issue.
102
103
It would also be nice to have the build system not depend on pre-built dependencies anymore, and to document which FSDG compliant F-droid applications crash because Replicant's incomplete EGL implementation (#705) and tag such applications as incompatible (so they are greyed out) until the EGL implemetation is fixed. Ideally Replicant builds should also be made "reproducible":https://en.wikipedia.org/wiki/Deterministic_compilation if they are not already.
104
105
*Difficulty*: Easy
106
107
*Requirements/Prerequisites*: Knowledge of shell scripts and the ability to learn the Android build system
108
109
*Expected Outcomes/Deliverables*: The ability to compile Replicant from "an FSDG distribution":https://www.gnu.org/distros/free-distros.html, F-droid only showing FSDG compliant software.
110
111
*Possible Mentors*: GNUtoo (confirmed)
112
113
h2. Projects mentored by other organizations
114
115
h3. llvmpipe ARM optimizations
116
117
Project description: Replicant's EGL is implementation is incomplete (This has many consequences: #705). The goal is to make llvmpipe usable under Replicant and replace the incomplete EGL implemetation with that. The advantage of this solution over other solutions is that it is supposed to work on all Replicant supported devices and is also used within GNU/Linux.
118
See also the "wiki page about llvmpipe":https://redmine.replicant.us/projects/replicant/wiki/GraphicsResearch#llvmpipe for more details about the issue. Other solutions fixing the problem might be acceptable too, if it makes more sense.
119
120
*Difficulty*: See with the MESA project
121
122
*Requirements/Prerequisites*: See with the MESA project
123
124
*Expected Outcomes/Deliverables*: Working EGL implementation, fast enough graphics, F-droid applications not crashing anymore because of EGL.
125
126
Possible Mentors: Mesa would probably be a good organization for mentoring this project.  If interested in working on this project, please propose it to Mesa. (Replicant contributors would also be happy to help.)
127
128
129
130
h2. Device-specific tasks
131
132
h3. U-Boot and Linux mainline related tasks and ports
133
134
h4. Select and/or port a tablet with an Allwinner SOC to mainline Linux and U-boot, and Replicant
135
136 1 Denis 'GNUtoo' Carikli
Tablets with Allwinner SOCs are an interesting targets because they do not use signed bootloaders and the SOCs and various devices using them have good Linux and u-boot mainline support. If not much work is required for that, once the code is merged, the candidate is also required to work on the generic abstraction layer project which is also documented in this page.
137
138
The chosen tablet should have:
139
* A SOC that has good mainline support, see "the Linux mainlining effort page on linux-sunxi":https://linux-sunxi.org/Linux_mainlining_effort for more details.
140
* A Free software bootloader, or the ability to easily add support for the tablet to a free software bootloader.
141
* The ability to power and use an USB WiFi card or chip that is compatible with the ath9k_htc driver.
142
143
It would be better if the chosen tablet doesn't use an AllWinner SOC with a PowerVR GPU, as MALI GPU have more probability to be usable with free software in the future.
144
145
*Difficulty*: Medium
146
147
*Requirements/Prerequisites*: C programming language, driver development
148
149
*Expected Outcomes/Deliverables*: Replicant support for a tablet using an Allwinner SOC, with free software bootloader and mainline based Linux kernel.
150
151 3 Denis 'GNUtoo' Carikli
h4. Advance the Optimus Black U-Boot and Linux mainline ports
152 1 Denis 'GNUtoo' Carikli
153
The Optimus Black from LG is an interesting device from the perspective of freedom and privacy/security. It has the ability to run a free bootloader and uses an OMAP3 SoC that is well-documented and supported in upstream U-Boot (bootloader) and Linux (kernel). Its modem is well-isolated from the rest of the device, ensuring a sane base for privacy/security. Currently, the device-specific parts of the mainline U-Boot and Linux ports are still at an early stage, where they are functional with a very limited set of supported hardware.
154
155
Advancing the Optimus Black U-Boot and Linux mainline ports would allow using the device with free, up-to-date and maintainable software and would pave the way for support in GNU/Linux systems as well as Replicant. A list of priorities in hardware support will be defined, with the objective of tackling as many as possible.
156
157
*Difficulty*: Medium
158
159
*Requirements/Prerequisites*: C programming language, driver development
160
161
*Expected Outcomes/Deliverables*: Improved hardware support for the Optimus Black in U-Boot and Linux
162
163
*Possible Mentors*: Paul (confirmed), GNUtoo (confirmed, backup)
164
165
h3. Port the Galaxy S3 and Galaxy Note 2 to Mainline Linux
166
167
The Galaxy S3 and Galaxy Note 2 currently use a vendor fork of Linux, which poses a maintainability and security issue.  Forkbomb has done some initial work on porting these devices to use mainline Linux.  You can help by continuing this work. This would also enable these devices to use generic hardware abstraction layers (HAL) when abstractions layers are ready, and to do some research on whether the "TrustZone operating system":https://blog.fossencdi.org/u-boot-galaxys3.html can be removed from such devices.
168
169
*Difficulty*: Medium to Hard
170
171
*Requirements/Prerequisites*: Knowledge of C
172
173
*Expected Outcomes/Deliverables*: Audio working, modem working, and Replicant or LineageOS booting with mainline Linux.
174
175
*Possible Mentors*: Forkbomb (confirmed), GNUtoo (confirmed)
176
177 3 Denis 'GNUtoo' Carikli
h4. Advance the Kindle Fire (first generation) U-Boot and Linux mainline ports
178 1 Denis 'GNUtoo' Carikli
179
The Kindle Fire (first generation) from Amazon is an interesting device from the perspective of freedom and privacy/security. It has the ability to run a free bootloader and uses an OMAP4 SoC that is well-documented and supported in upstream U-Boot (bootloader) and Linux (kernel). It does not embed a modem, ensuring a sane base for privacy/security. Currently, the device-specific parts of the mainline U-Boot and Linux ports are still at an early stage, where they are functional with a very limited set of supported hardware.
180
181
Advancing the Kindle Fire (first generation) U-Boot and Linux mainline ports would allow using the device with free, up-to-date and maintainable software and would pave the way for support in GNU/Linux systems as well as Replicant. A list of priorities in hardware support will be defined, with the objective of tackling as many as possible.
182
183
*Difficulty*: Medium
184
185
*Requirements/Prerequisites*: C programming language, driver development
186
187
*Expected Outcomes/Deliverables*: Improved hardware support for the Kindle Fire (first generation) in U-Boot and Linux
188
189
*Possible Mentors*: Paul (confirmed), GNUtoo (confirmed, backup)
190
191 3 Denis 'GNUtoo' Carikli
h4. Implementing generic Hardware Abstraction Layers (HALs)
192 1 Denis 'GNUtoo' Carikli
193
Currently, Replicant uses a dedicated Hardware Abstraction Layer per device, because device manufacturers implemented non-standard kernel interfaces. However, Android works with mainline kernels and supports plug-n-play hardware nowadays, so it makes sense to have generic Hardware Abstraction Layers for the standard interfaces of the Linux kernel (ALSA, V4L2, etc). In particular, this would allow supporting external Wi-Fi dongles such as the ones supported by the ath9k_htc driver and free firmwares without the need for a specific application or configuration.
194
195
*Difficulty*: Medium
196
197
*Requirements/Prerequisites*: C programming language, kernel interfaces knowledge
198
199
*Expected Outcomes/Deliverables*: A collection of generic HALs for Android and Replicant
200
201
*Possible Mentors*: Forkbomb (confirmed), Paul (confirmed, backup), GNUtoo (confirmed)
202
203 3 Denis 'GNUtoo' Carikli
h3. RIL related tasks
204 1 Denis 'GNUtoo' Carikli
205 3 Denis 'GNUtoo' Carikli
h4. Implement the missing features of Samsung-RIL
206 1 Denis 'GNUtoo' Carikli
207
Samsung-RIL is the RIL (Radio Interface Layer) that many Replicant devices use to communicate with the modem.  It is a free, reverse-engineered replacement for the proprietary RIL that the Samsung phones ship with by default (which has been found to have backdoors).
208
209
Right now, Samsung-RIL mostly implements only the protocol features that are absolutely necessary for the phone to be operable.  As a result, many more rarely used protocol features are unimplemented, which decreases functionality compared to the proprietary RIL. You can help by implementing the missing features of Samsung-RIL.
210
211
It would also be nice to fix most the reported bugs involving samsung-ril and libsamsung-ipc that are impacting users very seriously. This includes the bugs about the SIM card not being detected, and the issue about having metallic sound quality when doing voice calls over 3G (bug #1773). It would also be nice to be able to recover from EFS (the modem filesystem) corruptions (Bug #1869).
212
213
*Difficulty*: Medium to Hard
214
215
*Requirements/Prerequisites*: Knowledge of C.
216
217
*Expected Outcomes/Deliverables*: Implement the missing features listed at [[Samsung-RIL]].
218
219
*Possible Mentors*: Forkbomb (confirmed), Wolfgang?
220
221 3 Denis 'GNUtoo' Carikli
h4. Implement a fully-featured QMI-RIL
222 1 Denis 'GNUtoo' Carikli
223
The LTE variants of the Samsung Galaxy S3 and Samsung Galaxy Note 2 use a different modem from the non-LTE variants that Replicant currently supports.  You can help Replicant support those modems by implementing a QMI-RIL, which performs a similar role on the LTE variants as what Samsung-RIL performs on the currently-supported non-LTE variants.  Wolfgang has done some preliminary work on this, so you'll probably be picking up where he left off.
224
225
*Difficulty*: Hard
226
227
*Requirements/Prerequisites*: Knowledge of C.
228
229
*Expected Outcomes/Deliverables*: A QMI-RIL that supports voice calls, SMS, and data, with as complete a protocol implementation as possible.
230
231
*Possible Mentors*: Forkbomb (confirmed), Wolfgang?
232
233 3 Denis 'GNUtoo' Carikli
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
h3. Access Point mode for RepWifi
250 1 Denis 'GNUtoo' Carikli
251
RepWifi is Replicant's app for using an external USB WiFi adapter.  RepWifi is useful for Replicant because there exist USB WiFi adapters with free firmware, while the built-in WiFi chipsets in mobile phones do not have free firmware.  Right now, RepWifi doesn't support acting as an access point (e.g. for WiFi tethering purposes); you can help by adding this functionality to RepWifi.
252
253
Note that, if we receive high-quality student proposals for both this project and *Implementing generic Hardware Abstraction Layers (HALs)*, we will probably prioritize *Implementing generic Hardware Abstraction Layers (HALs)* over this project.
254
255
*Difficulty*: Easy to Medium
256
257
*Requirements/Prerequisites*: Knowledge of Java and basic shell scripting. Basic knowledge about wpa_supplicant and general network management in POSIX environments.
258
Required knowledge builds up very fast by trial and error, no need to be experts in networking, it's mostly about researching and learning.
259
260
*Expected Outcomes/Deliverables*: Make wpa_supplicant run in "Access Point mode", allowing another device to connect to the phone via WiFi, and use its mobile data connection to access the internet. Integrate the needed GUI functions into RepWifi.
261
262
*Possible Mentors*: Fil (confirmed)
263
264
h2. Port Replicant to a newer LineageOS version and support in-system updates
265
266
Replicant is currently based on LineageOS 13.  It would be desirable to upgrade Replicant to a newer release of LineageOS. While at it, it would be useful for a Replicant device to be able to update itself to a new version of Replicant without requiring being connected to a PC. LineageOS already supports this; we suspect that it should be possible to adapt this LineageOS functionality to Replicant. Whenever possible, it would be useful to complete and submit some of the code written for Replicant to LineageOS.
267
268
*Difficulty*: Medium
269
270
*Requirements/Prerequisites*: Knowledge of C, C++, and Java.
271
272
*Expected Outcomes/Deliverables*: Remove all proprietary components of LineageOS, port all the changes needed to successfully boot without any blobs, rebrand LineageOS as Replicant and support in-system updates
273
274
*Possible Mentors*: Forkbomb (confirmed), Wolfgang?
275
276
h2. Improve support for the free software compatible external WiFi adapter
277
278
All devices currently supported by Replicant have WiFi chips that requires a non-free firmware to work. So to have WiFi working with free software, users need to use external WiFi adapters. They typically use tiny ath9k_htc compatible USB WiFi adapter along with a tiny USB OTG Host adapter.
279
280
Such external USB WiFi adapters used with Replicant are originally intended for laptops, not phones. As a result, they tend to consume a lot of power. According to lsusb some ath9k_htc compatible devices can consume up to 500mA.
281
282
This poses several issues:
283
* Some smartphones and tablets might not be compatible, at the hardware level, with such big power consumption.
284
* They can adversely impact battery life
285
286
Such USB WiFi adapters can also randomly stop working completely on some devices (e.g. needing to unplug and replug the adapter periodically to keep it operational).
287
288
You will need to investigate reliability issues such as the one mentioned above and look how power consumption can be improved in the adapter firmware and/or kernel driver.
289
290
You will also need to investigate how much miliampers USB devices can use, at the hardware level, on the smartphones and tablets Replicant supports.
291
292
*Difficulty*: Medium/Hard
293
294
*Requirements/Prerequisites*: Knowledge of C
295
296
*Expected Outcomes/Deliverables*: Reliable WiFi with external WiFi adapter
297
298
*Possible Mentors*: GNUtoo (confirmed)
299
300
h2. Tackle security issues in Replicant
301
302
Replicant is plagued by various security issues, that are mostly due to using a downstream codebase. One of the most crucial issues is that Replicant uses an old version of the Android WebView (from circa 2015), which is also a functionality drawback.
303
An initial evaluation of the security issues in Replicant should be conducted, followed by the integration or update of the concerned components of the system.
304
305
It would also be nice to do the same for privacy issues. Since Replicant indirectly depends on the "Android Open Source Project" and directly depends on LineageOS, not all privacy issues might have been found fixed by Replicant. Once security issues have been fixed, it would be nice to try to identify as many privacy issues as possible, and in a second time to fix them.
306
307
*Difficulty*: Medium-Hard
308
309
*Requirements/Prerequisites*: Android build system, knowledge of system security, advanced git
310
311
*Expected Outcomes/Deliverables*: Integration or update of components of Replicant to tackle security issues
312
313
*Possible Mentors*: Wolfgang?
314
315
h2. Fix the Free software distribution guidelines issues and improve the build system.
316
317
Replicant has some issues with "FSDG (Free System Distribution Guidelines)":https://www.gnu.org/distros/free-system-distribution-guidelines.html compliance: "F-droid":https://f-droid.org/ repository is not FSDG compliant anymore (Bug #1629), and Replicant can't be built from an FSDG distribution (Bug #1861). This ought to be fixed. Replicant should also be fixed to build without issue.
318
319
It would also be nice to have the build system not depend on pre-built dependencies anymore, and to document which FSDG compliant F-droid applications crash because Replicant's incomplete EGL implementation (#705) and tag such applications as incompatible (so they are greyed out) until the EGL implemetation is fixed. Ideally Replicant builds should also be made "reproducible":https://en.wikipedia.org/wiki/Deterministic_compilation if they are not already.
320
321
*Difficulty*: Easy
322
323
*Requirements/Prerequisites*: Knowledge of shell scripts and the ability to learn the Android build system
324
325
*Expected Outcomes/Deliverables*: The ability to compile Replicant from "an FSDG distribution":https://www.gnu.org/distros/free-distros.html, F-droid only showing FSDG compliant software.
326
327
*Possible Mentors*: GNUtoo (confirmed)
328
329
h2. Projects mentored by other organizations
330
331
h3. llvmpipe ARM optimizations
332
333
Project description: Replicant's EGL is implementation is incomplete (This has many consequences: #705). The goal is to make llvmpipe usable under Replicant and replace the incomplete EGL implemetation with that. The advantage of this solution over other solutions is that it is supposed to work on all Replicant supported devices and is also used within GNU/Linux.
334
See also the "wiki page about llvmpipe":https://redmine.replicant.us/projects/replicant/wiki/GraphicsResearch#llvmpipe for more details about the issue. Other solutions fixing the problem might be acceptable too, if it makes more sense.
335
336
*Difficulty*: See with the MESA project
337
338
*Requirements/Prerequisites*: See with the MESA project
339
340
*Expected Outcomes/Deliverables*: Working EGL implementation, fast enough graphics, F-droid applications not crashing anymore because of EGL.
341
342
Possible Mentors: Mesa would probably be a good organization for mentoring this project.  If interested in working on this project, please propose it to Mesa. (Replicant contributors would also be happy to help.)