blob: 24d8d1e8f10f5ff48f9ef88a7f25d3d4a8953f38 [file] [log] [blame]
Nick Kralevich4fb25612009-06-17 16:03:22 -07001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server;
18
19import java.io.File;
Dianne Hackborn13579ed2012-11-28 18:05:36 -080020import java.io.FileNotFoundException;
Nick Kralevichb8cba952009-06-19 09:45:35 -070021import java.io.FileOutputStream;
Nick Kralevich4fb25612009-06-17 16:03:22 -070022import java.io.IOException;
Nick Kralevichb8cba952009-06-19 09:45:35 -070023import java.io.PrintWriter;
Nick Kralevich4fb25612009-06-17 16:03:22 -070024
Nick Kralevich79619dd2013-03-04 13:05:32 -080025import android.content.BroadcastReceiver;
26import android.content.Context;
27import android.content.Intent;
28import android.content.IntentFilter;
Nick Kralevich4fb25612009-06-17 16:03:22 -070029import android.os.Binder;
30import android.os.Environment;
31import android.os.Handler;
32import android.os.Message;
Nick Kralevichb8cba952009-06-19 09:45:35 -070033import android.os.SystemProperties;
Joe Onorato8a9b2202010-02-26 18:56:32 -080034import android.util.Slog;
Nick Kralevich4fb25612009-06-17 16:03:22 -070035
36/**
37 * A service designed to load and periodically save "randomness"
Alex Klyubin6ab3d202013-10-03 13:23:13 -070038 * for the Linux kernel RNG and to mix in data from Hardware RNG (if present)
39 * into the Linux RNG.
Nick Kralevich4fb25612009-06-17 16:03:22 -070040 *
41 * <p>When a Linux system starts up, the entropy pool associated with
42 * {@code /dev/random} may be in a fairly predictable state. Applications which
43 * depend strongly on randomness may find {@code /dev/random} or
44 * {@code /dev/urandom} returning predictable data. In order to counteract
45 * this effect, it's helpful to carry the entropy pool information across
46 * shutdowns and startups.
47 *
Alex Klyubin6ab3d202013-10-03 13:23:13 -070048 * <p>On systems with Hardware RNG (/dev/hw_random), a block of output from HW
49 * RNG is mixed into the Linux RNG on EntropyMixer's startup and whenever
50 * EntropyMixer periodically runs to save a block of output from Linux RNG on
51 * disk. This mixing is done in a way that does not increase the Linux RNG's
52 * entropy estimate is not increased. This is to avoid having to trust/verify
53 * the quality and authenticity of the &quot;randomness&quot; of the HW RNG.
54 *
Nick Kralevich4fb25612009-06-17 16:03:22 -070055 * <p>This class was modeled after the script in
56 * <a href="http://www.kernel.org/doc/man-pages/online/pages/man4/random.4.html">man
57 * 4 random</a>.
Nick Kralevich4fb25612009-06-17 16:03:22 -070058 */
Nick Kralevich6967cbc2011-11-17 13:24:32 -080059public class EntropyMixer extends Binder {
60 private static final String TAG = "EntropyMixer";
Nick Kralevich4fb25612009-06-17 16:03:22 -070061 private static final int ENTROPY_WHAT = 1;
62 private static final int ENTROPY_WRITE_PERIOD = 3 * 60 * 60 * 1000; // 3 hrs
Nick Kralevichb8cba952009-06-19 09:45:35 -070063 private static final long START_TIME = System.currentTimeMillis();
64 private static final long START_NANOTIME = System.nanoTime();
Nick Kralevich4fb25612009-06-17 16:03:22 -070065
Nick Kralevich93a68392010-03-19 16:57:21 -070066 private final String randomDevice;
Alex Klyubin6ab3d202013-10-03 13:23:13 -070067 private final String hwRandomDevice;
Nick Kralevich93a68392010-03-19 16:57:21 -070068 private final String entropyFile;
69
Nick Kralevich4fb25612009-06-17 16:03:22 -070070 /**
71 * Handler that periodically updates the entropy on disk.
72 */
73 private final Handler mHandler = new Handler() {
74 @Override
75 public void handleMessage(Message msg) {
76 if (msg.what != ENTROPY_WHAT) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080077 Slog.e(TAG, "Will not process invalid message");
Nick Kralevich4fb25612009-06-17 16:03:22 -070078 return;
79 }
Alex Klyubin6ab3d202013-10-03 13:23:13 -070080 addHwRandomEntropy();
Nick Kralevich4fb25612009-06-17 16:03:22 -070081 writeEntropy();
82 scheduleEntropyWriter();
83 }
84 };
85
Nick Kralevich79619dd2013-03-04 13:05:32 -080086 private final BroadcastReceiver mBroadcastReceiver = new BroadcastReceiver() {
87 @Override
88 public void onReceive(Context context, Intent intent) {
89 writeEntropy();
90 }
91 };
92
93 public EntropyMixer(Context context) {
Alex Klyubin6ab3d202013-10-03 13:23:13 -070094 this(context, getSystemDir() + "/entropy.dat", "/dev/urandom", "/dev/hw_random");
Nick Kralevich93a68392010-03-19 16:57:21 -070095 }
96
97 /** Test only interface, not for public use */
Alex Klyubin6ab3d202013-10-03 13:23:13 -070098 public EntropyMixer(
99 Context context,
100 String entropyFile,
101 String randomDevice,
102 String hwRandomDevice) {
Nick Kralevich93a68392010-03-19 16:57:21 -0700103 if (randomDevice == null) { throw new NullPointerException("randomDevice"); }
Alex Klyubin6ab3d202013-10-03 13:23:13 -0700104 if (hwRandomDevice == null) { throw new NullPointerException("hwRandomDevice"); }
Nick Kralevich93a68392010-03-19 16:57:21 -0700105 if (entropyFile == null) { throw new NullPointerException("entropyFile"); }
106
107 this.randomDevice = randomDevice;
Alex Klyubin6ab3d202013-10-03 13:23:13 -0700108 this.hwRandomDevice = hwRandomDevice;
Nick Kralevich93a68392010-03-19 16:57:21 -0700109 this.entropyFile = entropyFile;
Nick Kralevich4fb25612009-06-17 16:03:22 -0700110 loadInitialEntropy();
Nick Kralevichb8cba952009-06-19 09:45:35 -0700111 addDeviceSpecificEntropy();
Alex Klyubin6ab3d202013-10-03 13:23:13 -0700112 addHwRandomEntropy();
Nick Kralevich4fb25612009-06-17 16:03:22 -0700113 writeEntropy();
114 scheduleEntropyWriter();
Nick Kralevich79619dd2013-03-04 13:05:32 -0800115 IntentFilter broadcastFilter = new IntentFilter(Intent.ACTION_SHUTDOWN);
116 broadcastFilter.addAction(Intent.ACTION_POWER_CONNECTED);
117 broadcastFilter.addAction(Intent.ACTION_REBOOT);
118 context.registerReceiver(mBroadcastReceiver, broadcastFilter);
Nick Kralevich4fb25612009-06-17 16:03:22 -0700119 }
120
121 private void scheduleEntropyWriter() {
122 mHandler.removeMessages(ENTROPY_WHAT);
123 mHandler.sendEmptyMessageDelayed(ENTROPY_WHAT, ENTROPY_WRITE_PERIOD);
124 }
125
126 private void loadInitialEntropy() {
127 try {
Elliott Hughes69078912011-04-04 12:15:34 -0700128 RandomBlock.fromFile(entropyFile).toFile(randomDevice, false);
Dianne Hackborn13579ed2012-11-28 18:05:36 -0800129 } catch (FileNotFoundException e) {
130 Slog.w(TAG, "No existing entropy file -- first boot?");
Nick Kralevich4fb25612009-06-17 16:03:22 -0700131 } catch (IOException e) {
Dianne Hackborn13579ed2012-11-28 18:05:36 -0800132 Slog.w(TAG, "Failure loading existing entropy file", e);
Nick Kralevich4fb25612009-06-17 16:03:22 -0700133 }
134 }
135
136 private void writeEntropy() {
137 try {
Nick Kralevich79619dd2013-03-04 13:05:32 -0800138 Slog.i(TAG, "Writing entropy...");
Elliott Hughes69078912011-04-04 12:15:34 -0700139 RandomBlock.fromFile(randomDevice).toFile(entropyFile, true);
Nick Kralevich4fb25612009-06-17 16:03:22 -0700140 } catch (IOException e) {
Dianne Hackborn13579ed2012-11-28 18:05:36 -0800141 Slog.w(TAG, "Unable to write entropy", e);
Nick Kralevichb8cba952009-06-19 09:45:35 -0700142 }
143 }
144
145 /**
146 * Add additional information to the kernel entropy pool. The
147 * information isn't necessarily "random", but that's ok. Even
148 * sending non-random information to {@code /dev/urandom} is useful
149 * because, while it doesn't increase the "quality" of the entropy pool,
150 * it mixes more bits into the pool, which gives us a higher degree
151 * of uncertainty in the generated randomness. Like nature, writes to
152 * the random device can only cause the quality of the entropy in the
153 * kernel to stay the same or increase.
154 *
155 * <p>For maximum effect, we try to target information which varies
156 * on a per-device basis, and is not easily observable to an
157 * attacker.
158 */
159 private void addDeviceSpecificEntropy() {
160 PrintWriter out = null;
161 try {
Nick Kralevich93a68392010-03-19 16:57:21 -0700162 out = new PrintWriter(new FileOutputStream(randomDevice));
Nick Kralevichb8cba952009-06-19 09:45:35 -0700163 out.println("Copyright (C) 2009 The Android Open Source Project");
164 out.println("All Your Randomness Are Belong To Us");
165 out.println(START_TIME);
166 out.println(START_NANOTIME);
167 out.println(SystemProperties.get("ro.serialno"));
168 out.println(SystemProperties.get("ro.bootmode"));
169 out.println(SystemProperties.get("ro.baseband"));
170 out.println(SystemProperties.get("ro.carrier"));
171 out.println(SystemProperties.get("ro.bootloader"));
172 out.println(SystemProperties.get("ro.hardware"));
173 out.println(SystemProperties.get("ro.revision"));
Nick Kralevich03ce7602013-02-01 15:21:50 -0800174 out.println(SystemProperties.get("ro.build.fingerprint"));
Nick Kralevichb91ec412010-09-27 14:49:00 -0700175 out.println(new Object().hashCode());
Nick Kralevichb8cba952009-06-19 09:45:35 -0700176 out.println(System.currentTimeMillis());
177 out.println(System.nanoTime());
178 } catch (IOException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800179 Slog.w(TAG, "Unable to add device specific data to the entropy pool", e);
Nick Kralevichb8cba952009-06-19 09:45:35 -0700180 } finally {
181 if (out != null) {
182 out.close();
183 }
Nick Kralevich4fb25612009-06-17 16:03:22 -0700184 }
185 }
186
Alex Klyubin6ab3d202013-10-03 13:23:13 -0700187 /**
188 * Mixes in the output from HW RNG (if present) into the Linux RNG.
189 */
190 private void addHwRandomEntropy() {
191 try {
192 RandomBlock.fromFile(hwRandomDevice).toFile(randomDevice, false);
193 Slog.i(TAG, "Added HW RNG output to entropy pool");
194 } catch (FileNotFoundException ignored) {
195 // HW RNG not present/exposed -- ignore
196 } catch (IOException e) {
197 Slog.w(TAG, "Failed to add HW RNG output to entropy pool", e);
198 }
199 }
200
Nick Kralevich4fb25612009-06-17 16:03:22 -0700201 private static String getSystemDir() {
202 File dataDir = Environment.getDataDirectory();
203 File systemDir = new File(dataDir, "system");
204 systemDir.mkdirs();
205 return systemDir.toString();
206 }
207}