ptyfs_vfsops.c revision 1.16 1 /* $NetBSD: ptyfs_vfsops.c,v 1.16 2006/06/20 03:22:12 christos Exp $ */
2
3 /*
4 * Copyright (c) 1992, 1993, 1995
5 * The Regents of the University of California. All rights reserved.
6 *
7 * This code is derived from software donated to Berkeley by
8 * Jan-Simon Pendry.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 */
35
36 /*
37 * Pseudo-tty Filesystem
38 */
39
40 #include <sys/cdefs.h>
41 __KERNEL_RCSID(0, "$NetBSD: ptyfs_vfsops.c,v 1.16 2006/06/20 03:22:12 christos Exp $");
42
43 #include <sys/param.h>
44 #include <sys/systm.h>
45 #include <sys/sysctl.h>
46 #include <sys/conf.h>
47 #include <sys/proc.h>
48 #include <sys/vnode.h>
49 #include <sys/mount.h>
50 #include <sys/namei.h>
51 #include <sys/stat.h>
52 #include <sys/dirent.h>
53 #include <sys/malloc.h>
54 #include <sys/syslog.h>
55 #include <sys/select.h>
56 #include <sys/filedesc.h>
57 #include <sys/tty.h>
58 #include <sys/pty.h>
59 #include <sys/kauth.h>
60
61 #include <fs/ptyfs/ptyfs.h>
62 #include <miscfs/specfs/specdev.h>
63
64 MALLOC_DEFINE(M_PTYFSMNT, "ptyfs mount", "ptyfs mount structures");
65
66 void ptyfs_init(void);
67 void ptyfs_reinit(void);
68 void ptyfs_done(void);
69 int ptyfs_mount(struct mount *, const char *, void *, struct nameidata *,
70 struct lwp *);
71 int ptyfs_start(struct mount *, int, struct lwp *);
72 int ptyfs_unmount(struct mount *, int, struct lwp *);
73 int ptyfs_statvfs(struct mount *, struct statvfs *, struct lwp *);
74 int ptyfs_quotactl(struct mount *, int, uid_t, void *, struct lwp *);
75 int ptyfs_sync(struct mount *, int, kauth_cred_t, struct lwp *);
76 int ptyfs_vget(struct mount *, ino_t, struct vnode **);
77
78 static int ptyfs__allocvp(struct ptm_pty *, struct lwp *, struct vnode **,
79 dev_t, char);
80 static int ptyfs__makename(struct ptm_pty *, struct lwp *, char *, size_t,
81 dev_t, char);
82 static void ptyfs__getvattr(struct ptm_pty *, struct proc *, struct vattr *);
83
84 /*
85 * ptm glue: When we mount, we make ptm point to us.
86 */
87 struct ptm_pty *ptyfs_save_ptm;
88 static int ptyfs_count;
89
90 struct ptm_pty ptm_ptyfspty = {
91 ptyfs__allocvp,
92 ptyfs__makename,
93 ptyfs__getvattr,
94 NULL
95 };
96
97 static const char *
98 ptyfs__getpath(struct lwp *l, const struct mount *mp)
99 {
100 #define MAXBUF (sizeof(mp->mnt_stat.f_mntonname) + 32)
101 struct cwdinfo *cwdi = l->l_proc->p_cwdi;
102 char *buf, *rv;
103 size_t len;
104 char *bp;
105 int error;
106
107 rv = mp->mnt_stat.f_mntonname;
108 if (cwdi->cwdi_rdir == NULL)
109 return rv;
110
111 buf = malloc(MAXBUF, M_TEMP, M_WAITOK);
112 bp = buf + MAXBUF;
113 *--bp = '\0';
114 error = getcwd_common(cwdi->cwdi_rdir, rootvnode, &bp,
115 buf, MAXBUF / 2, 0, l);
116 if (error) /* XXX */
117 goto out;
118
119 len = strlen(bp);
120 if (len < sizeof(mp->mnt_stat.f_mntonname)) /* XXX */
121 rv += len;
122 out:
123 free(buf, M_TEMP);
124 return rv;
125 }
126
127 static int
128 ptyfs__makename(struct ptm_pty *pt, struct lwp *l, char *tbuf, size_t bufsiz,
129 dev_t dev, char ms)
130 {
131 struct mount *mp = pt->arg;
132 size_t len;
133
134 switch (ms) {
135 case 'p':
136 /* We don't provide access to the master, should we? */
137 len = snprintf(tbuf, bufsiz, "/dev/null");
138 break;
139 case 't':
140 len = snprintf(tbuf, bufsiz, "%s/%d", ptyfs__getpath(l, mp),
141 minor(dev));
142 break;
143 default:
144 return EINVAL;
145 }
146
147 return len >= bufsiz ? ENOSPC : 0;
148 }
149
150
151 static int
152 /*ARGSUSED*/
153 ptyfs__allocvp(struct ptm_pty *pt, struct lwp *l, struct vnode **vpp,
154 dev_t dev, char ms)
155 {
156 struct mount *mp = pt->arg;
157 ptyfstype type;
158
159 switch (ms) {
160 case 'p':
161 type = PTYFSptc;
162 break;
163 case 't':
164 type = PTYFSpts;
165 break;
166 default:
167 return EINVAL;
168 }
169
170 return ptyfs_allocvp(mp, vpp, type, minor(dev), l);
171 }
172
173
174 static void
175 ptyfs__getvattr(struct ptm_pty *pt, struct proc *p, struct vattr *vattr)
176 {
177 struct mount *mp = pt->arg;
178 struct ptyfsmount *pmnt = VFSTOPTY(mp);
179 VATTR_NULL(vattr);
180 /* get real uid */
181 vattr->va_uid = kauth_cred_getuid(p->p_cred);
182 vattr->va_gid = pmnt->pmnt_gid;
183 vattr->va_mode = pmnt->pmnt_mode;
184 }
185
186
187 void
188 ptyfs_init(void)
189 {
190 #ifdef _LKM
191 malloc_type_attach(M_PTYFSMNT);
192 #endif
193 ptyfs_hashinit();
194 }
195
196 void
197 ptyfs_reinit(void)
198 {
199 ptyfs_hashreinit();
200 }
201
202 void
203 ptyfs_done(void)
204 {
205 #ifdef _LKM
206 malloc_type_detach(M_PTYFSMNT);
207 #endif
208 ptyfs_hashdone();
209 }
210
211 /*
212 * Mount the Pseudo tty params filesystem
213 */
214 int
215 ptyfs_mount(struct mount *mp, const char *path, void *data,
216 struct nameidata *ndp, struct lwp *l)
217 {
218 int error = 0;
219 struct ptyfsmount *pmnt;
220 struct ptyfs_args args;
221
222 if (UIO_MX & (UIO_MX - 1)) {
223 log(LOG_ERR, "ptyfs: invalid directory entry size");
224 return EINVAL;
225 }
226
227 if (mp->mnt_flag & MNT_GETARGS) {
228 pmnt = VFSTOPTY(mp);
229 if (pmnt == NULL)
230 return EIO;
231 args.version = PTYFS_ARGSVERSION;
232 args.mode = pmnt->pmnt_mode;
233 args.gid = pmnt->pmnt_gid;
234 return copyout(&args, data, sizeof(args));
235 }
236
237 /* Don't allow more than one mount */
238 if (ptyfs_count)
239 return EBUSY;
240
241 if (mp->mnt_flag & MNT_UPDATE)
242 return EOPNOTSUPP;
243
244 if (data != NULL) {
245 error = copyin(data, &args, sizeof args);
246 if (error != 0)
247 return error;
248
249 if (args.version != PTYFS_ARGSVERSION)
250 return EINVAL;
251 } else {
252 /*
253 * Arguments are mandatory.
254 */
255 return EINVAL;
256 }
257
258 pmnt = malloc(sizeof(struct ptyfsmount), M_UFSMNT, M_WAITOK);
259
260 mp->mnt_data = pmnt;
261 pmnt->pmnt_gid = args.gid;
262 pmnt->pmnt_mode = args.mode;
263 mp->mnt_flag |= MNT_LOCAL;
264 vfs_getnewfsid(mp);
265
266 if ((error = set_statvfs_info(path, UIO_USERSPACE, "ptyfs",
267 UIO_SYSSPACE, mp, l)) != 0) {
268 free(pmnt, M_UFSMNT);
269 return error;
270 }
271
272 /* Point pty access to us */
273
274 ptm_ptyfspty.arg = mp;
275 ptyfs_save_ptm = pty_sethandler(&ptm_ptyfspty);
276 ptyfs_count++;
277 return 0;
278 }
279
280 /*ARGSUSED*/
281 int
282 ptyfs_start(struct mount *mp, int flags, struct lwp *p)
283 {
284 return 0;
285 }
286
287 /*ARGSUSED*/
288 int
289 ptyfs_unmount(struct mount *mp, int mntflags, struct lwp *p)
290 {
291 int error;
292 int flags = 0;
293
294 if (mntflags & MNT_FORCE)
295 flags |= FORCECLOSE;
296
297 if ((error = vflush(mp, 0, flags)) != 0)
298 return (error);
299
300 /* Restore where pty access was pointing */
301 (void)pty_sethandler(ptyfs_save_ptm);
302 ptyfs_save_ptm = NULL;
303 ptm_ptyfspty.arg = NULL;
304
305 /*
306 * Finally, throw away the ptyfsmount structure
307 */
308 free(mp->mnt_data, M_UFSMNT);
309 mp->mnt_data = 0;
310 ptyfs_count--;
311
312 return 0;
313 }
314
315 int
316 ptyfs_root(struct mount *mp, struct vnode **vpp)
317 {
318 /* setup "." */
319 return ptyfs_allocvp(mp, vpp, PTYFSroot, 0, NULL);
320 }
321
322 /*ARGSUSED*/
323 int
324 ptyfs_quotactl(struct mount *mp, int cmd, uid_t uid, void *arg, struct lwp *p)
325 {
326 return EOPNOTSUPP;
327 }
328
329 /*ARGSUSED*/
330 int
331 ptyfs_statvfs(struct mount *mp, struct statvfs *sbp, struct lwp *p)
332 {
333 sbp->f_bsize = DEV_BSIZE;
334 sbp->f_frsize = DEV_BSIZE;
335 sbp->f_iosize = DEV_BSIZE;
336 sbp->f_blocks = 2; /* 1K to keep df happy */
337 sbp->f_bfree = 0;
338 sbp->f_bavail = 0;
339 sbp->f_bresvd = 0;
340 sbp->f_files = 1024; /* XXX lie */
341 sbp->f_ffree = 128; /* XXX lie */
342 sbp->f_favail = 128; /* XXX lie */
343 sbp->f_fresvd = 0;
344 sbp->f_namemax = MAXNAMLEN;
345 copy_statvfs_info(sbp, mp);
346 return 0;
347 }
348
349 /*ARGSUSED*/
350 int
351 ptyfs_sync(struct mount *mp, int waitfor, kauth_cred_t uc, struct lwp *p)
352 {
353 return 0;
354 }
355
356 /*
357 * Kernfs flat namespace lookup.
358 * Currently unsupported.
359 */
360 /*ARGSUSED*/
361 int
362 ptyfs_vget(struct mount *mp, ino_t ino, struct vnode **vpp)
363 {
364 return EOPNOTSUPP;
365 }
366
367 SYSCTL_SETUP(sysctl_vfs_ptyfs_setup, "sysctl vfs.ptyfs subtree setup")
368 {
369
370 sysctl_createv(clog, 0, NULL, NULL,
371 CTLFLAG_PERMANENT,
372 CTLTYPE_NODE, "vfs", NULL,
373 NULL, 0, NULL, 0,
374 CTL_VFS, CTL_EOL);
375 sysctl_createv(clog, 0, NULL, NULL,
376 CTLFLAG_PERMANENT,
377 CTLTYPE_NODE, "ptyfs",
378 SYSCTL_DESCR("Pty file system"),
379 NULL, 0, NULL, 0,
380 CTL_VFS, 23, CTL_EOL);
381 /*
382 * XXX the "23" above could be dynamic, thereby eliminating
383 * one more instance of the "number to vfs" mapping problem,
384 * but "23" is the order as taken from sys/mount.h
385 */
386 }
387
388
389 extern const struct vnodeopv_desc ptyfs_vnodeop_opv_desc;
390
391 const struct vnodeopv_desc * const ptyfs_vnodeopv_descs[] = {
392 &ptyfs_vnodeop_opv_desc,
393 NULL,
394 };
395
396 struct vfsops ptyfs_vfsops = {
397 MOUNT_PTYFS,
398 ptyfs_mount,
399 ptyfs_start,
400 ptyfs_unmount,
401 ptyfs_root,
402 ptyfs_quotactl,
403 ptyfs_statvfs,
404 ptyfs_sync,
405 ptyfs_vget,
406 NULL, /* vfs_fhtovp */
407 NULL, /* vfs_vptofp */
408 ptyfs_init,
409 ptyfs_reinit,
410 ptyfs_done,
411 NULL, /* vfs_mountroot */
412 (int (*)(struct mount *, struct vnode *, struct timespec *))eopnotsupp,
413 (int (*)(struct mount *, int, struct vnode *, int, const char *,
414 struct lwp *))eopnotsupp,
415 ptyfs_vnodeopv_descs,
416 };
417 VFS_ATTACH(ptyfs_vfsops);
418