xref: /freebsd/sys/compat/linux/linux_util.c (revision 1670a1c2a47d10ecccd001970b859caf93cd3b6e)
1 /*-
2  * Copyright (c) 1994 Christos Zoulas
3  * Copyright (c) 1995 Frank van der Linden
4  * Copyright (c) 1995 Scott Bartram
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. The name of the author may not be used to endorse or promote products
16  *    derived from this software without specific prior written permission
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  *
29  *	from: svr4_util.c,v 1.5 1995/01/22 23:44:50 christos Exp
30  */
31 
32 #include <sys/cdefs.h>
33 __FBSDID("$FreeBSD$");
34 
35 #include "opt_compat.h"
36 
37 #include <sys/param.h>
38 #include <sys/bus.h>
39 #include <sys/fcntl.h>
40 #include <sys/lock.h>
41 #include <sys/malloc.h>
42 #include <sys/linker_set.h>
43 #include <sys/mutex.h>
44 #include <sys/namei.h>
45 #include <sys/proc.h>
46 #include <sys/syscallsubr.h>
47 #include <sys/systm.h>
48 #include <sys/vnode.h>
49 
50 #include <machine/stdarg.h>
51 
52 #include <compat/linux/linux_util.h>
53 #ifdef COMPAT_LINUX32
54 #include <machine/../linux32/linux.h>
55 #else
56 #include <machine/../linux/linux.h>
57 #endif
58 
59 const char      linux_emul_path[] = "/compat/linux";
60 
61 /*
62  * Search an alternate path before passing pathname arguments on to
63  * system calls. Useful for keeping a separate 'emulation tree'.
64  *
65  * If cflag is set, we check if an attempt can be made to create the
66  * named file, i.e. we check if the directory it should be in exists.
67  */
68 int
69 linux_emul_convpath(td, path, pathseg, pbuf, cflag, dfd)
70 	struct thread	 *td;
71 	const char	 *path;
72 	enum uio_seg	  pathseg;
73 	char		**pbuf;
74 	int		  cflag;
75 	int		  dfd;
76 {
77 
78 	return (kern_alternate_path(td, linux_emul_path, path, pathseg, pbuf,
79 		cflag, dfd));
80 }
81 
82 void
83 linux_msg(const struct thread *td, const char *fmt, ...)
84 {
85 	va_list ap;
86 	struct proc *p;
87 
88 	p = td->td_proc;
89 	printf("linux: pid %d (%s): ", (int)p->p_pid, p->p_comm);
90 	va_start(ap, fmt);
91 	vprintf(fmt, ap);
92 	va_end(ap);
93 	printf("\n");
94 }
95 
96 struct device_element
97 {
98 	TAILQ_ENTRY(device_element) list;
99 	struct linux_device_handler entry;
100 };
101 
102 static TAILQ_HEAD(, device_element) devices =
103 	TAILQ_HEAD_INITIALIZER(devices);
104 
105 static struct linux_device_handler null_handler =
106 	{ "mem", "mem", "null", "null", 1, 3, 1};
107 
108 DATA_SET(linux_device_handler_set, null_handler);
109 
110 char *
111 linux_driver_get_name_dev(device_t dev)
112 {
113 	struct device_element *de;
114 	const char *device_name = device_get_name(dev);
115 
116 	if (device_name == NULL)
117 		return NULL;
118 	TAILQ_FOREACH(de, &devices, list) {
119 		if (strcmp(device_name, de->entry.bsd_driver_name) == 0)
120 			return (de->entry.linux_driver_name);
121 	}
122 
123 	return NULL;
124 }
125 
126 int
127 linux_driver_get_major_minor(char *node, int *major, int *minor)
128 {
129 	struct device_element *de;
130 
131 	if (node == NULL || major == NULL || minor == NULL)
132 		return 1;
133 
134 	if (strlen(node) > strlen("pts/") &&
135 	    strncmp(node, "pts/", strlen("pts/")) == 0) {
136 		unsigned long devno;
137 
138 		/*
139 		 * Linux checks major and minors of the slave device
140 		 * to make sure it's a pty device, so let's make him
141 		 * believe it is.
142 		 */
143 		devno = strtoul(node + strlen("pts/"), NULL, 10);
144 		*major = 136 + (devno / 256);
145 		*minor = devno % 256;
146 		return 0;
147 	}
148 
149 	TAILQ_FOREACH(de, &devices, list) {
150 		if (strcmp(node, de->entry.bsd_device_name) == 0) {
151 			*major = de->entry.linux_major;
152 			*minor = de->entry.linux_minor;
153 			return 0;
154 		}
155 	}
156 
157 	return 1;
158 }
159 
160 char *
161 linux_get_char_devices()
162 {
163 	struct device_element *de;
164 	char *temp, *string, *last;
165 	char formated[256];
166 	int current_size = 0, string_size = 1024;
167 
168 	string = malloc(string_size, M_LINUX, M_WAITOK);
169 	string[0] = '\000';
170 	last = "";
171 	TAILQ_FOREACH(de, &devices, list) {
172 		if (!de->entry.linux_char_device)
173 			continue;
174 		temp = string;
175 		if (strcmp(last, de->entry.bsd_driver_name) != 0) {
176 			last = de->entry.bsd_driver_name;
177 
178 			snprintf(formated, sizeof(formated), "%3d %s\n",
179 				 de->entry.linux_major,
180 				 de->entry.linux_device_name);
181 			if (strlen(formated) + current_size
182 			    >= string_size) {
183 				string_size *= 2;
184 				string = malloc(string_size,
185 				    M_LINUX, M_WAITOK);
186 				bcopy(temp, string, current_size);
187 				free(temp, M_LINUX);
188 			}
189 			strcat(string, formated);
190 			current_size = strlen(string);
191 		}
192 	}
193 
194 	return string;
195 }
196 
197 void
198 linux_free_get_char_devices(char *string)
199 {
200 	free(string, M_LINUX);
201 }
202 
203 static int linux_major_starting = 200;
204 
205 int
206 linux_device_register_handler(struct linux_device_handler *d)
207 {
208 	struct device_element *de;
209 
210 	if (d == NULL)
211 		return (EINVAL);
212 
213 	de = malloc(sizeof(*de),
214 	    M_LINUX, M_WAITOK);
215 	if (d->linux_major < 0) {
216 		d->linux_major = linux_major_starting++;
217 	}
218 	bcopy(d, &de->entry, sizeof(*d));
219 
220 	/* Add the element to the list, sorted on span. */
221 	TAILQ_INSERT_TAIL(&devices, de, list);
222 
223 	return (0);
224 }
225 
226 int
227 linux_device_unregister_handler(struct linux_device_handler *d)
228 {
229 	struct device_element *de;
230 
231 	if (d == NULL)
232 		return (EINVAL);
233 
234 	TAILQ_FOREACH(de, &devices, list) {
235 		if (bcmp(d, &de->entry, sizeof(*d)) == 0) {
236 			TAILQ_REMOVE(&devices, de, list);
237 			free(de, M_LINUX);
238 			return (0);
239 		}
240 	}
241 
242 	return (EINVAL);
243 }
244