blob: 3e1739697626ad685d18c81be590d11f85b0e270 [file] [log] [blame]
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001
2#include <sys/mount.h>
3#include <sys/stat.h>
4#include <fcntl.h>
5#include <stdio.h>
6#include <string.h>
7#include <unistd.h>
8#include <linux/loop.h>
Jeff Brownbaf6b6b2011-07-13 22:12:18 -07009#include <errno.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080010
Ken Sumrall940c8102011-07-12 19:47:06 -070011#define LOOPDEV_MAXLEN 64
12#define LOOP_MAJOR 7
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080013
Ken Sumrall940c8102011-07-12 19:47:06 -070014static int is_loop(char *dev)
15{
16 struct stat st;
17 int ret = 0;
18
19 if (stat(dev, &st) == 0) {
20 if (S_ISBLK(st.st_mode) && (major(st.st_rdev) == LOOP_MAJOR)) {
21 ret = 1;
22 }
23 }
24
25 return ret;
26}
27
28static int is_loop_mount(const char* path, char *loopdev)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080029{
30 FILE* f;
31 int count;
32 char device[256];
33 char mount_path[256];
34 char rest[256];
35 int result = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080036
37 f = fopen("/proc/mounts", "r");
38 if (!f) {
Jeff Brownbaf6b6b2011-07-13 22:12:18 -070039 fprintf(stdout, "could not open /proc/mounts: %s\n", strerror(errno));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080040 return -1;
41 }
42
43 do {
44 count = fscanf(f, "%255s %255s %255s\n", device, mount_path, rest);
45 if (count == 3) {
Ken Sumrall940c8102011-07-12 19:47:06 -070046 if (is_loop(device) && strcmp(path, mount_path) == 0) {
47 strlcpy(loopdev, device, LOOPDEV_MAXLEN);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080048 result = 1;
49 break;
50 }
51 }
52 } while (count == 3);
53
54 fclose(f);
55 return result;
56}
57
58int umount_main(int argc, char *argv[])
59{
60 int loop, loop_fd;
Ken Sumrall940c8102011-07-12 19:47:06 -070061 char loopdev[LOOPDEV_MAXLEN];
62
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080063 if(argc != 2) {
64 fprintf(stderr,"umount <path>\n");
65 return 1;
66 }
67
Ken Sumrall940c8102011-07-12 19:47:06 -070068 loop = is_loop_mount(argv[1], loopdev);
Jeff Brownbaf6b6b2011-07-13 22:12:18 -070069 if (umount(argv[1])) {
70 fprintf(stderr, "failed: %s\n", strerror(errno));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080071 return 1;
72 }
73
74 if (loop) {
75 // free the loop device
Ken Sumrall940c8102011-07-12 19:47:06 -070076 loop_fd = open(loopdev, O_RDONLY);
77 if (loop_fd < 0) {
Jeff Brownbaf6b6b2011-07-13 22:12:18 -070078 fprintf(stderr, "open loop device failed: %s\n", strerror(errno));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080079 return 1;
80 }
81 if (ioctl(loop_fd, LOOP_CLR_FD, 0) < 0) {
Jeff Brownbaf6b6b2011-07-13 22:12:18 -070082 fprintf(stderr, "ioctl LOOP_CLR_FD failed: %s\n", strerror(errno));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080083 return 1;
84 }
85
86 close(loop_fd);
87 }
88
89 return 0;
90}