Move DM helpers to separate header.
[platform/upstream/cryptsetup.git] / lib / utils_devpath.c
1 /*
2  * devname - search for device name
3  *
4  * Copyright (C) 2004, Christophe Saout <christophe@saout.de>
5  * Copyright (C) 2004-2007, Clemens Fruhwirth <clemens@endorphin.org>
6  * Copyright (C) 2009-2011, Red Hat, Inc. All rights reserved.
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License
10  * version 2 as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  */
21
22 #include <string.h>
23 #include <stdio.h>
24 #include <dirent.h>
25 #include <sys/stat.h>
26 #include <sys/types.h>
27 #include "internal.h"
28
29 #define DEVICE_DIR      "/dev"
30
31 static char *__lookup_dev(char *path, dev_t dev, int dir_level, const int max_level)
32 {
33         struct dirent *entry;
34         struct stat st;
35         char *ptr;
36         char *result = NULL;
37         DIR *dir;
38         int space;
39
40         /* Ignore strange nested directories */
41         if (dir_level > max_level)
42                 return NULL;
43
44         path[PATH_MAX - 1] = '\0';
45         ptr = path + strlen(path);
46         *ptr++ = '/';
47         *ptr = '\0';
48         space = PATH_MAX - (ptr - path);
49
50         dir = opendir(path);
51         if (!dir)
52                 return NULL;
53
54         while((entry = readdir(dir))) {
55                 if (entry->d_name[0] == '.' ||
56                     !strncmp(entry->d_name, "..", 2))
57                         continue;
58
59                 strncpy(ptr, entry->d_name, space);
60                 if (stat(path, &st) < 0)
61                         continue;
62
63                 if (S_ISDIR(st.st_mode)) {
64                         result = __lookup_dev(path, dev, dir_level + 1, max_level);
65                         if (result)
66                                 break;
67                 } else if (S_ISBLK(st.st_mode)) {
68                         /* workaround: ignore dm-X devices, these are internal kernel names */
69                         if (dir_level == 0 && !strncmp(entry->d_name, "dm-", 3))
70                                 continue;
71                         if (st.st_rdev == dev) {
72                                 result = strdup(path);
73                                 break;
74                         }
75                 }
76         }
77
78         closedir(dir);
79         return result;
80 }
81
82 /*
83  * Non-udev systemd need to scan for device here.
84  */
85 static char *lookup_dev_old(const char *dev_id)
86 {
87         int major, minor;
88         dev_t dev;
89         char *result = NULL, buf[PATH_MAX + 1];
90
91         if (sscanf(dev_id, "%d:%d", &major, &minor) != 2)
92                 return NULL;
93
94         dev = makedev(major, minor);
95         strncpy(buf, DEVICE_DIR, PATH_MAX);
96         buf[PATH_MAX] = '\0';
97
98         /* First try low level device */
99         if ((result = __lookup_dev(buf, dev, 0, 0)))
100                 return result;
101
102         /* If it is dm, try DM dir  */
103         if (dm_is_dm_device(major)) {
104                 strncpy(buf, dm_get_dir(), PATH_MAX);
105                 if ((result = __lookup_dev(buf, dev, 0, 0)))
106                         return result;
107         }
108
109         strncpy(buf, DEVICE_DIR, PATH_MAX);
110         result = __lookup_dev(buf, dev, 0, 4);
111
112         /* If not found, return NULL */
113         return result;
114 }
115
116 char *crypt_lookup_dev(const char *dev_id)
117 {
118         char link[PATH_MAX], path[PATH_MAX], *devname;
119         struct stat st;
120         ssize_t len;
121
122         if (snprintf(path, sizeof(path), "/sys/dev/block/%s", dev_id) < 0)
123                 return NULL;
124
125         len = readlink(path, link, sizeof(link));
126         if (len < 0) {
127                 if (stat("/sys/dev/block", &st) < 0)
128                         return lookup_dev_old(dev_id);
129                 return NULL;
130         }
131
132         link[len] = '\0';
133         devname = strrchr(link, '/');
134         if (!devname)
135                 return NULL;
136         devname++;
137
138         if (!strncmp(devname, "dm-", 3))
139                 return dm_device_path(dev_id);
140
141         if (snprintf(path, sizeof(path), "/dev/%s", devname) < 0)
142                 return NULL;
143
144         return strdup(path);
145 }