1 /* $NetBSD: tty_bsdpty.c,v 1.15 2009/01/22 14:38:35 yamt Exp $ */
4 * Copyright (c) 2004 The NetBSD Foundation, Inc.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
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.
16 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
17 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
18 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
20 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 * POSSIBILITY OF SUCH DAMAGE.
29 #include <sys/cdefs.h>
30 __KERNEL_RCSID(0, "$NetBSD: tty_bsdpty.c,v 1.15 2009/01/22 14:38:35 yamt Exp $");
35 /* bsd tty implementation for pty multiplexor driver /dev/ptm{,x} */
37 #include <sys/param.h>
38 #include <sys/systm.h>
39 #include <sys/ioctl.h>
45 #include <sys/kernel.h>
46 #include <sys/vnode.h>
47 #include <sys/namei.h>
48 #include <sys/signalvar.h>
49 #include <sys/filedesc.h>
53 #include <sys/kauth.h>
56 * pts == /dev/tty[pqrs]?
57 * ptc == /dev/pty[pqrs]?
61 * All this hard-coding is really evil.
64 #define TTY_PERM (S_IRUSR|S_IWUSR|S_IWGRP)
65 #define TTY_TEMPLATE "/dev/XtyXX"
66 #define TTY_NAMESIZE sizeof(TTY_TEMPLATE)
67 #define TTY_LETTERS "pqrstuvwxyzPQRST"
68 #define TTY_OLD_SUFFIX "0123456789abcdef"
69 #define TTY_NEW_SUFFIX "ghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
71 static int pty_makename(struct ptm_pty
*, struct lwp
*, char *, size_t, dev_t
,
73 static int pty_allocvp(struct ptm_pty
*, struct lwp
*, struct vnode
**,
75 static void pty_getvattr(struct ptm_pty
*, struct lwp
*, struct vattr
*);
77 struct ptm_pty ptm_bsdpty
= {
86 pty_makename(struct ptm_pty
*ptm
, struct lwp
*l
, char *bf
,
87 size_t bufsiz
, dev_t dev
, char c
)
90 dev_t minor
= minor(dev
);
93 if (bufsiz
< TTY_NAMESIZE
)
96 (void)memcpy(bf
, TTY_TEMPLATE
, TTY_NAMESIZE
);
99 suffix
= TTY_OLD_SUFFIX
;
100 nt
= sizeof(TTY_OLD_SUFFIX
) - 1;
103 suffix
= TTY_NEW_SUFFIX
;
104 nt
= sizeof(TTY_NEW_SUFFIX
) - 1;
108 bf
[8] = TTY_LETTERS
[minor
/ nt
];
109 bf
[9] = suffix
[minor
% nt
];
116 pty_allocvp(struct ptm_pty
*ptm
, struct lwp
*l
, struct vnode
**vp
, dev_t dev
,
121 char name
[TTY_NAMESIZE
];
123 error
= (*ptm
->makename
)(ptm
, l
, name
, sizeof(name
), dev
, ms
);
127 NDINIT(&nd
, LOOKUP
, NOFOLLOW
|LOCKLEAF
, UIO_SYSSPACE
, name
);
128 if ((error
= namei(&nd
)) != 0)
137 pty_getvattr(struct ptm_pty
*ptm
, struct lwp
*l
, struct vattr
*vattr
)
141 vattr
->va_uid
= kauth_cred_getuid(l
->l_cred
);
142 vattr
->va_gid
= TTY_GID
;
143 vattr
->va_mode
= TTY_PERM
;