tty_ptm.c revision 1.25 1 1.25 martin /* $NetBSD: tty_ptm.c,v 1.25 2008/04/28 20:24:05 martin Exp $ */
2 1.1 christos
3 1.1 christos /*-
4 1.1 christos * Copyright (c) 2004 The NetBSD Foundation, Inc.
5 1.1 christos * All rights reserved.
6 1.1 christos *
7 1.1 christos * Redistribution and use in source and binary forms, with or without
8 1.1 christos * modification, are permitted provided that the following conditions
9 1.1 christos * are met:
10 1.1 christos * 1. Redistributions of source code must retain the above copyright
11 1.1 christos * notice, this list of conditions and the following disclaimer.
12 1.1 christos * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 christos * notice, this list of conditions and the following disclaimer in the
14 1.1 christos * documentation and/or other materials provided with the distribution.
15 1.1 christos *
16 1.1 christos * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
17 1.1 christos * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
18 1.1 christos * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 1.1 christos * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
20 1.1 christos * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 1.1 christos * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 1.1 christos * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 1.1 christos * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24 1.1 christos * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25 1.1 christos * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 1.1 christos * POSSIBILITY OF SUCH DAMAGE.
27 1.1 christos */
28 1.1 christos
29 1.1 christos #include <sys/cdefs.h>
30 1.25 martin __KERNEL_RCSID(0, "$NetBSD: tty_ptm.c,v 1.25 2008/04/28 20:24:05 martin Exp $");
31 1.1 christos
32 1.1 christos #include "opt_ptm.h"
33 1.1 christos
34 1.1 christos /* pty multiplexor driver /dev/ptm{,x} */
35 1.1 christos
36 1.1 christos #include <sys/param.h>
37 1.1 christos #include <sys/systm.h>
38 1.1 christos #include <sys/ioctl.h>
39 1.1 christos #include <sys/proc.h>
40 1.1 christos #include <sys/tty.h>
41 1.1 christos #include <sys/stat.h>
42 1.1 christos #include <sys/file.h>
43 1.1 christos #include <sys/uio.h>
44 1.1 christos #include <sys/kernel.h>
45 1.1 christos #include <sys/vnode.h>
46 1.1 christos #include <sys/namei.h>
47 1.1 christos #include <sys/signalvar.h>
48 1.1 christos #include <sys/filedesc.h>
49 1.1 christos #include <sys/conf.h>
50 1.1 christos #include <sys/poll.h>
51 1.1 christos #include <sys/malloc.h>
52 1.1 christos #include <sys/pty.h>
53 1.9 elad #include <sys/kauth.h>
54 1.1 christos
55 1.23 ad #include <miscfs/specfs/specdev.h>
56 1.23 ad
57 1.1 christos #ifdef DEBUG_PTM
58 1.1 christos #define DPRINTF(a) printf a
59 1.1 christos #else
60 1.1 christos #define DPRINTF(a)
61 1.1 christos #endif
62 1.1 christos
63 1.1 christos #ifdef NO_DEV_PTM
64 1.1 christos const struct cdevsw ptm_cdevsw = {
65 1.1 christos noopen, noclose, noread, nowrite, noioctl,
66 1.1 christos nostop, notty, nopoll, nommap, nokqfilter, D_TTY
67 1.1 christos };
68 1.1 christos #else
69 1.1 christos
70 1.1 christos static struct ptm_pty *ptm;
71 1.1 christos int pts_major, ptc_major;
72 1.1 christos
73 1.1 christos static dev_t pty_getfree(void);
74 1.7 christos static int pty_alloc_master(struct lwp *, int *, dev_t *);
75 1.7 christos static int pty_alloc_slave(struct lwp *, int *, dev_t);
76 1.1 christos
77 1.1 christos void ptmattach(int);
78 1.1 christos
79 1.1 christos dev_t
80 1.1 christos pty_makedev(char ms, int minor)
81 1.1 christos {
82 1.1 christos return makedev(ms == 't' ? pts_major : ptc_major, minor);
83 1.1 christos }
84 1.1 christos
85 1.5 thorpej
86 1.1 christos static dev_t
87 1.1 christos pty_getfree(void)
88 1.1 christos {
89 1.18 ad extern kmutex_t pt_softc_mutex;
90 1.1 christos int i;
91 1.1 christos
92 1.18 ad mutex_enter(&pt_softc_mutex);
93 1.1 christos for (i = 0; i < npty; i++) {
94 1.1 christos if (pty_isfree(i, 0))
95 1.1 christos break;
96 1.1 christos }
97 1.18 ad mutex_exit(&pt_softc_mutex);
98 1.1 christos return pty_makedev('t', i);
99 1.1 christos }
100 1.1 christos
101 1.1 christos /*
102 1.1 christos * Hacked up version of vn_open. We _only_ handle ptys and only open
103 1.1 christos * them with FREAD|FWRITE and never deal with creat or stuff like that.
104 1.1 christos *
105 1.1 christos * We need it because we have to fake up root credentials to open the pty.
106 1.1 christos */
107 1.1 christos int
108 1.7 christos pty_vn_open(struct vnode *vp, struct lwp *l)
109 1.1 christos {
110 1.1 christos int error;
111 1.1 christos
112 1.1 christos if (vp->v_type != VCHR) {
113 1.1 christos vput(vp);
114 1.1 christos return EINVAL;
115 1.1 christos }
116 1.1 christos
117 1.21 pooka error = VOP_OPEN(vp, FREAD|FWRITE, lwp0.l_cred);
118 1.1 christos
119 1.1 christos if (error) {
120 1.1 christos vput(vp);
121 1.1 christos return error;
122 1.1 christos }
123 1.1 christos
124 1.1 christos vp->v_writecount++;
125 1.1 christos
126 1.1 christos return 0;
127 1.1 christos }
128 1.1 christos
129 1.1 christos static int
130 1.7 christos pty_alloc_master(struct lwp *l, int *fd, dev_t *dev)
131 1.1 christos {
132 1.1 christos int error;
133 1.1 christos struct file *fp;
134 1.1 christos struct vnode *vp;
135 1.1 christos int md;
136 1.1 christos
137 1.24 ad if ((error = fd_allocfile(&fp, fd)) != 0) {
138 1.24 ad DPRINTF(("fd_allocfile %d\n", error));
139 1.1 christos return error;
140 1.1 christos }
141 1.1 christos retry:
142 1.1 christos /* Find and open a free master pty. */
143 1.1 christos *dev = pty_getfree();
144 1.1 christos md = minor(*dev);
145 1.1 christos if ((error = pty_check(md)) != 0) {
146 1.1 christos DPRINTF(("pty_check %d\n", error));
147 1.1 christos goto bad;
148 1.1 christos }
149 1.1 christos if (ptm == NULL) {
150 1.13 christos DPRINTF(("no ptm\n"));
151 1.1 christos error = EOPNOTSUPP;
152 1.1 christos goto bad;
153 1.1 christos }
154 1.13 christos if ((error = (*ptm->allocvp)(ptm, l, &vp, *dev, 'p')) != 0) {
155 1.13 christos DPRINTF(("pty_allocvp %d\n", error));
156 1.1 christos goto bad;
157 1.13 christos }
158 1.1 christos
159 1.7 christos if ((error = pty_vn_open(vp, l)) != 0) {
160 1.13 christos DPRINTF(("pty_vn_open %d\n", error));
161 1.1 christos /*
162 1.1 christos * Check if the master open failed because we lost
163 1.1 christos * the race to grab it.
164 1.1 christos */
165 1.1 christos if (error != EIO)
166 1.1 christos goto bad;
167 1.1 christos error = !pty_isfree(md, 1);
168 1.13 christos DPRINTF(("pty_isfree %d\n", error));
169 1.1 christos if (error)
170 1.1 christos goto retry;
171 1.1 christos else
172 1.1 christos goto bad;
173 1.1 christos }
174 1.1 christos fp->f_flag = FREAD|FWRITE;
175 1.1 christos fp->f_type = DTYPE_VNODE;
176 1.1 christos fp->f_ops = &vnops;
177 1.1 christos fp->f_data = vp;
178 1.1 christos VOP_UNLOCK(vp, 0);
179 1.24 ad fd_affix(curproc, fp, *fd);
180 1.1 christos return 0;
181 1.1 christos bad:
182 1.24 ad fd_abort(curproc, fp, *fd);
183 1.1 christos return error;
184 1.1 christos }
185 1.1 christos
186 1.1 christos int
187 1.7 christos pty_grant_slave(struct lwp *l, dev_t dev)
188 1.1 christos {
189 1.1 christos int error;
190 1.1 christos struct vnode *vp;
191 1.1 christos
192 1.1 christos /*
193 1.1 christos * Open the slave.
194 1.1 christos * namei -> setattr -> unlock -> revoke -> vrele ->
195 1.1 christos * namei -> open -> unlock
196 1.1 christos * Three stage rocket:
197 1.1 christos * 1. Change the owner and permissions on the slave.
198 1.1 christos * 2. Revoke all the users of the slave.
199 1.1 christos * 3. open the slave.
200 1.1 christos */
201 1.1 christos if (ptm == NULL)
202 1.1 christos return EOPNOTSUPP;
203 1.7 christos if ((error = (*ptm->allocvp)(ptm, l, &vp, dev, 't')) != 0)
204 1.1 christos return error;
205 1.1 christos
206 1.1 christos if ((vp->v_mount->mnt_flag & MNT_RDONLY) == 0) {
207 1.1 christos struct vattr vattr;
208 1.11 ad (*ptm->getvattr)(ptm, l, &vattr);
209 1.10 ad /* Do the VOP_SETATTR() as root. */
210 1.21 pooka error = VOP_SETATTR(vp, &vattr, lwp0.l_cred);
211 1.1 christos if (error) {
212 1.1 christos DPRINTF(("setattr %d\n", error));
213 1.1 christos VOP_UNLOCK(vp, 0);
214 1.1 christos vrele(vp);
215 1.1 christos return error;
216 1.1 christos }
217 1.1 christos }
218 1.1 christos VOP_UNLOCK(vp, 0);
219 1.23 ad VOP_REVOKE(vp, REVOKEALL);
220 1.1 christos
221 1.1 christos /*
222 1.1 christos * The vnode is useless after the revoke, we need to get it again.
223 1.1 christos */
224 1.1 christos vrele(vp);
225 1.1 christos return 0;
226 1.1 christos }
227 1.1 christos
228 1.1 christos static int
229 1.7 christos pty_alloc_slave(struct lwp *l, int *fd, dev_t dev)
230 1.1 christos {
231 1.1 christos int error;
232 1.1 christos struct file *fp;
233 1.1 christos struct vnode *vp;
234 1.1 christos
235 1.1 christos /* Grab a filedescriptor for the slave */
236 1.24 ad if ((error = fd_allocfile(&fp, fd)) != 0) {
237 1.24 ad DPRINTF(("fd_allocfile %d\n", error));
238 1.1 christos return error;
239 1.1 christos }
240 1.1 christos
241 1.1 christos if (ptm == NULL) {
242 1.1 christos error = EOPNOTSUPP;
243 1.1 christos goto bad;
244 1.1 christos }
245 1.1 christos
246 1.7 christos if ((error = (*ptm->allocvp)(ptm, l, &vp, dev, 't')) != 0)
247 1.1 christos goto bad;
248 1.7 christos if ((error = pty_vn_open(vp, l)) != 0)
249 1.1 christos goto bad;
250 1.1 christos
251 1.1 christos fp->f_flag = FREAD|FWRITE;
252 1.1 christos fp->f_type = DTYPE_VNODE;
253 1.1 christos fp->f_ops = &vnops;
254 1.1 christos fp->f_data = vp;
255 1.1 christos VOP_UNLOCK(vp, 0);
256 1.24 ad fd_affix(curproc, fp, *fd);
257 1.1 christos return 0;
258 1.1 christos bad:
259 1.24 ad fd_abort(curproc, fp, *fd);
260 1.1 christos return error;
261 1.1 christos }
262 1.1 christos
263 1.1 christos struct ptm_pty *
264 1.1 christos pty_sethandler(struct ptm_pty *nptm)
265 1.1 christos {
266 1.1 christos struct ptm_pty *optm = ptm;
267 1.1 christos ptm = nptm;
268 1.1 christos return optm;
269 1.1 christos }
270 1.1 christos
271 1.1 christos int
272 1.8 christos pty_fill_ptmget(struct lwp *l, dev_t dev, int cfd, int sfd, void *data)
273 1.1 christos {
274 1.1 christos struct ptmget *ptmg = data;
275 1.1 christos int error;
276 1.1 christos
277 1.1 christos if (ptm == NULL)
278 1.1 christos return EOPNOTSUPP;
279 1.1 christos
280 1.2 christos ptmg->cfd = cfd == -1 ? minor(dev) : cfd;
281 1.2 christos ptmg->sfd = sfd == -1 ? minor(dev) : sfd;
282 1.1 christos
283 1.8 christos error = (*ptm->makename)(ptm, l, ptmg->cn, sizeof(ptmg->cn), dev, 'p');
284 1.1 christos if (error)
285 1.1 christos return error;
286 1.1 christos
287 1.8 christos return (*ptm->makename)(ptm, l, ptmg->sn, sizeof(ptmg->sn), dev, 't');
288 1.1 christos }
289 1.1 christos
290 1.1 christos void
291 1.1 christos /*ARGSUSED*/
292 1.15 yamt ptmattach(int n)
293 1.1 christos {
294 1.1 christos extern const struct cdevsw pts_cdevsw, ptc_cdevsw;
295 1.1 christos /* find the major and minor of the pty devices */
296 1.1 christos if ((pts_major = cdevsw_lookup_major(&pts_cdevsw)) == -1)
297 1.1 christos panic("ptmattach: Can't find pty slave in cdevsw");
298 1.1 christos if ((ptc_major = cdevsw_lookup_major(&ptc_cdevsw)) == -1)
299 1.1 christos panic("ptmattach: Can't find pty master in cdevsw");
300 1.1 christos #ifdef COMPAT_BSDPTY
301 1.1 christos ptm = &ptm_bsdpty;
302 1.1 christos #endif
303 1.1 christos }
304 1.1 christos
305 1.5 thorpej static int
306 1.1 christos /*ARGSUSED*/
307 1.15 yamt ptmopen(dev_t dev, int flag, int mode, struct lwp *l)
308 1.1 christos {
309 1.1 christos int error;
310 1.1 christos int fd;
311 1.13 christos dev_t ttydev;
312 1.1 christos
313 1.1 christos switch(minor(dev)) {
314 1.1 christos case 0: /* /dev/ptmx */
315 1.12 christos case 2: /* /emul/linux/dev/ptmx */
316 1.13 christos if ((error = pty_alloc_master(l, &fd, &ttydev)) != 0)
317 1.1 christos return error;
318 1.12 christos if (minor(dev) == 2) {
319 1.12 christos /*
320 1.12 christos * Linux ptyfs grants the pty right here.
321 1.12 christos * Handle this case here, instead of writing
322 1.12 christos * a new linux module.
323 1.12 christos */
324 1.13 christos if ((error = pty_grant_slave(l, ttydev)) != 0) {
325 1.24 ad file_t *fp = fd_getfile(fd);
326 1.16 alc if (fp != NULL) {
327 1.24 ad fd_close(fd);
328 1.16 alc }
329 1.12 christos return error;
330 1.12 christos }
331 1.12 christos }
332 1.1 christos curlwp->l_dupfd = fd;
333 1.4 christos return EMOVEFD;
334 1.1 christos case 1: /* /dev/ptm */
335 1.1 christos return 0;
336 1.1 christos default:
337 1.1 christos return ENODEV;
338 1.1 christos }
339 1.1 christos }
340 1.1 christos
341 1.5 thorpej static int
342 1.1 christos /*ARGSUSED*/
343 1.15 yamt ptmclose(dev_t dev, int flag, int mode, struct lwp *l)
344 1.1 christos {
345 1.15 yamt
346 1.1 christos return (0);
347 1.1 christos }
348 1.1 christos
349 1.5 thorpej static int
350 1.1 christos /*ARGSUSED*/
351 1.17 christos ptmioctl(dev_t dev, u_long cmd, void *data, int flag, struct lwp *l)
352 1.1 christos {
353 1.1 christos int error;
354 1.1 christos dev_t newdev;
355 1.1 christos int cfd, sfd;
356 1.24 ad file_t *fp;
357 1.1 christos
358 1.1 christos error = 0;
359 1.1 christos switch (cmd) {
360 1.1 christos case TIOCPTMGET:
361 1.7 christos if ((error = pty_alloc_master(l, &cfd, &newdev)) != 0)
362 1.1 christos return error;
363 1.1 christos
364 1.7 christos if ((error = pty_grant_slave(l, newdev)) != 0)
365 1.1 christos goto bad;
366 1.1 christos
367 1.7 christos if ((error = pty_alloc_slave(l, &sfd, newdev)) != 0)
368 1.1 christos goto bad;
369 1.1 christos
370 1.1 christos /* now, put the indices and names into struct ptmget */
371 1.8 christos return pty_fill_ptmget(l, newdev, cfd, sfd, data);
372 1.1 christos default:
373 1.1 christos DPRINTF(("ptmioctl EINVAL\n"));
374 1.1 christos return EINVAL;
375 1.1 christos }
376 1.24 ad bad:
377 1.24 ad fp = fd_getfile(cfd);
378 1.16 alc if (fp != NULL) {
379 1.24 ad fd_close(cfd);
380 1.16 alc }
381 1.1 christos return error;
382 1.1 christos }
383 1.5 thorpej
384 1.5 thorpej const struct cdevsw ptm_cdevsw = {
385 1.5 thorpej ptmopen, ptmclose, noread, nowrite, ptmioctl,
386 1.5 thorpej nullstop, notty, nopoll, nommap, nokqfilter, D_TTY
387 1.5 thorpej };
388 1.6 he #endif
389