blob: 3a4535ec0c737a70d2c969a97761d13da7afb35d [file] [log] [blame]
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001/*
2 * Copyright (C) 2008 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
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080017#include <errno.h>
Mark Salyzyn63e39f22014-04-30 09:10:31 -070018#include <fcntl.h>
19#include <stdio.h>
20#include <stdlib.h>
21#include <string.h>
22#include <sys/mount.h>
23#include <unistd.h>
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080024
25#include "sysdeps.h"
26
27#define TRACE_TAG TRACE_ADB
28#include "adb.h"
29
30
31static int system_ro = 1;
32
Colin Cross0b573352010-05-06 17:06:18 -070033/* Returns the device used to mount a directory in /proc/mounts */
34static char *find_mount(const char *dir)
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080035{
36 int fd;
37 int res;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080038 char *token = NULL;
39 const char delims[] = "\n";
Colin Cross0b573352010-05-06 17:06:18 -070040 char buf[4096];
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080041
Nick Kralevich43f94fb2014-07-18 20:57:35 -070042 fd = unix_open("/proc/mounts", O_RDONLY | O_CLOEXEC);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080043 if (fd < 0)
Colin Cross0b573352010-05-06 17:06:18 -070044 return NULL;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080045
46 buf[sizeof(buf) - 1] = '\0';
Mark Salyzyn63e39f22014-04-30 09:10:31 -070047 adb_read(fd, buf, sizeof(buf) - 1);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080048 adb_close(fd);
49
50 token = strtok(buf, delims);
51
52 while (token) {
Colin Cross0b573352010-05-06 17:06:18 -070053 char mount_dev[256];
54 char mount_dir[256];
55 int mount_freq;
56 int mount_passno;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080057
Colin Cross0b573352010-05-06 17:06:18 -070058 res = sscanf(token, "%255s %255s %*s %*s %d %d\n",
59 mount_dev, mount_dir, &mount_freq, &mount_passno);
60 mount_dev[255] = 0;
61 mount_dir[255] = 0;
62 if (res == 4 && (strcmp(dir, mount_dir) == 0))
63 return strdup(mount_dev);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080064
65 token = strtok(NULL, delims);
66 }
Colin Cross0b573352010-05-06 17:06:18 -070067 return NULL;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080068}
69
70/* Init mounts /system as read only, remount to enable writes. */
71static int remount_system()
72{
Colin Cross0b573352010-05-06 17:06:18 -070073 char *dev;
Nick Kralevich57eb3522013-04-16 16:41:32 -070074 int fd;
75 int OFF = 0;
Colin Cross0b573352010-05-06 17:06:18 -070076
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080077 if (system_ro == 0) {
78 return 0;
79 }
Colin Cross0b573352010-05-06 17:06:18 -070080
81 dev = find_mount("/system");
82
83 if (!dev)
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080084 return -1;
85
Nick Kralevich43f94fb2014-07-18 20:57:35 -070086 fd = unix_open(dev, O_RDONLY | O_CLOEXEC);
Nick Kralevich57eb3522013-04-16 16:41:32 -070087 if (fd < 0)
88 return -1;
89
90 ioctl(fd, BLKROSET, &OFF);
91 adb_close(fd);
92
Colin Cross0b573352010-05-06 17:06:18 -070093 system_ro = mount(dev, "/system", "none", MS_REMOUNT, NULL);
94
95 free(dev);
96
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080097 return system_ro;
98}
99
100static void write_string(int fd, const char* str)
101{
102 writex(fd, str, strlen(str));
103}
104
105void remount_service(int fd, void *cookie)
106{
107 int ret = remount_system();
108
109 if (!ret)
110 write_string(fd, "remount succeeded\n");
111 else {
112 char buffer[200];
113 snprintf(buffer, sizeof(buffer), "remount failed: %s\n", strerror(errno));
114 write_string(fd, buffer);
115 }
116
117 adb_close(fd);
118}
119