]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* -*- linux-c -*- --------------------------------------------------------- * |
2 | * | |
3 | * linux/fs/devpts/inode.c | |
4 | * | |
5 | * Copyright 1998-2004 H. Peter Anvin -- All Rights Reserved | |
6 | * | |
7 | * This file is part of the Linux kernel and is made available under | |
8 | * the terms of the GNU General Public License, version 2, or at your | |
9 | * option, any later version, incorporated herein by reference. | |
10 | * | |
11 | * ------------------------------------------------------------------------- */ | |
12 | ||
04541a2f FF |
13 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
14 | ||
1da177e4 LT |
15 | #include <linux/module.h> |
16 | #include <linux/init.h> | |
17 | #include <linux/fs.h> | |
18 | #include <linux/sched.h> | |
19 | #include <linux/namei.h> | |
5a0e3ad6 | 20 | #include <linux/slab.h> |
1da177e4 LT |
21 | #include <linux/mount.h> |
22 | #include <linux/tty.h> | |
718a9163 | 23 | #include <linux/mutex.h> |
1fd7317d | 24 | #include <linux/magic.h> |
718a9163 | 25 | #include <linux/idr.h> |
1da177e4 | 26 | #include <linux/devpts_fs.h> |
7a673c6b | 27 | #include <linux/parser.h> |
3972b7f6 | 28 | #include <linux/fsnotify.h> |
b87a267e | 29 | #include <linux/seq_file.h> |
1da177e4 | 30 | |
b87a267e | 31 | #define DEVPTS_DEFAULT_MODE 0600 |
1f8f1e29 SB |
32 | /* |
33 | * ptmx is a new node in /dev/pts and will be unused in legacy (single- | |
34 | * instance) mode. To prevent surprises in user space, set permissions of | |
35 | * ptmx to 0. Use 'chmod' or remount with '-o ptmxmode' to set meaningful | |
36 | * permissions. | |
37 | */ | |
38 | #define DEVPTS_DEFAULT_PTMX_MODE 0000 | |
527b3e47 | 39 | #define PTMX_MINOR 2 |
b87a267e | 40 | |
a4834c10 KK |
41 | /* |
42 | * sysctl support for setting limits on the number of Unix98 ptys allocated. | |
43 | * Otherwise one can eat up all kernel memory by opening /dev/ptmx repeatedly. | |
44 | */ | |
45 | static int pty_limit = NR_UNIX98_PTY_DEFAULT; | |
e9aba515 | 46 | static int pty_reserve = NR_UNIX98_PTY_RESERVE; |
a4834c10 | 47 | static int pty_limit_min; |
e9aba515 | 48 | static int pty_limit_max = INT_MAX; |
0f0a0e54 | 49 | static atomic_t pty_count = ATOMIC_INIT(0); |
a4834c10 KK |
50 | |
51 | static struct ctl_table pty_table[] = { | |
52 | { | |
53 | .procname = "max", | |
54 | .maxlen = sizeof(int), | |
55 | .mode = 0644, | |
56 | .data = &pty_limit, | |
57 | .proc_handler = proc_dointvec_minmax, | |
58 | .extra1 = &pty_limit_min, | |
59 | .extra2 = &pty_limit_max, | |
e9aba515 KK |
60 | }, { |
61 | .procname = "reserve", | |
62 | .maxlen = sizeof(int), | |
63 | .mode = 0644, | |
64 | .data = &pty_reserve, | |
65 | .proc_handler = proc_dointvec_minmax, | |
66 | .extra1 = &pty_limit_min, | |
67 | .extra2 = &pty_limit_max, | |
a4834c10 KK |
68 | }, { |
69 | .procname = "nr", | |
70 | .maxlen = sizeof(int), | |
71 | .mode = 0444, | |
72 | .data = &pty_count, | |
73 | .proc_handler = proc_dointvec, | |
74 | }, | |
75 | {} | |
76 | }; | |
77 | ||
78 | static struct ctl_table pty_kern_table[] = { | |
79 | { | |
80 | .procname = "pty", | |
81 | .mode = 0555, | |
82 | .child = pty_table, | |
83 | }, | |
84 | {} | |
85 | }; | |
86 | ||
87 | static struct ctl_table pty_root_table[] = { | |
88 | { | |
89 | .procname = "kernel", | |
90 | .mode = 0555, | |
91 | .child = pty_kern_table, | |
92 | }, | |
93 | {} | |
94 | }; | |
95 | ||
31af0abb | 96 | struct pts_mount_opts { |
1da177e4 LT |
97 | int setuid; |
98 | int setgid; | |
f04c6ce2 EB |
99 | kuid_t uid; |
100 | kgid_t gid; | |
1da177e4 | 101 | umode_t mode; |
1f8f1e29 | 102 | umode_t ptmxmode; |
eedf265a | 103 | int reserve; |
e9aba515 | 104 | int max; |
31af0abb | 105 | }; |
1da177e4 | 106 | |
7a673c6b | 107 | enum { |
e9aba515 | 108 | Opt_uid, Opt_gid, Opt_mode, Opt_ptmxmode, Opt_newinstance, Opt_max, |
7a673c6b DP |
109 | Opt_err |
110 | }; | |
111 | ||
a447c093 | 112 | static const match_table_t tokens = { |
7a673c6b DP |
113 | {Opt_uid, "uid=%u"}, |
114 | {Opt_gid, "gid=%u"}, | |
115 | {Opt_mode, "mode=%o"}, | |
1f8f1e29 | 116 | {Opt_ptmxmode, "ptmxmode=%o"}, |
2a1b2dc0 | 117 | {Opt_newinstance, "newinstance"}, |
e9aba515 | 118 | {Opt_max, "max=%d"}, |
7a673c6b DP |
119 | {Opt_err, NULL} |
120 | }; | |
121 | ||
e76b7c01 SB |
122 | struct pts_fs_info { |
123 | struct ida allocated_ptys; | |
31af0abb | 124 | struct pts_mount_opts mount_opts; |
67245ff3 | 125 | struct super_block *sb; |
1f8f1e29 | 126 | struct dentry *ptmx_dentry; |
e76b7c01 SB |
127 | }; |
128 | ||
129 | static inline struct pts_fs_info *DEVPTS_SB(struct super_block *sb) | |
130 | { | |
131 | return sb->s_fs_info; | |
132 | } | |
133 | ||
311fc65c EB |
134 | static int devpts_ptmx_path(struct path *path) |
135 | { | |
136 | struct super_block *sb; | |
137 | int err; | |
138 | ||
311fc65c EB |
139 | /* Is a devpts filesystem at "pts" in the same directory? */ |
140 | err = path_pts(path); | |
141 | if (err) | |
142 | return err; | |
143 | ||
144 | /* Is the path the root of a devpts filesystem? */ | |
145 | sb = path->mnt->mnt_sb; | |
146 | if ((sb->s_magic != DEVPTS_SUPER_MAGIC) || | |
147 | (path->mnt->mnt_root != sb->s_root)) | |
148 | return -ENODEV; | |
149 | ||
150 | return 0; | |
151 | } | |
152 | ||
4e15f760 CB |
153 | /* |
154 | * Try to find a suitable devpts filesystem. We support the following | |
155 | * scenarios: | |
156 | * - The ptmx device node is located in the same directory as the devpts | |
157 | * mount where the pts device nodes are located. | |
158 | * This is e.g. the case when calling open on the /dev/pts/ptmx device | |
159 | * node when the devpts filesystem is mounted at /dev/pts. | |
160 | * - The ptmx device node is located outside the devpts filesystem mount | |
161 | * where the pts device nodes are located. For example, the ptmx device | |
162 | * is a symlink, separate device node, or bind-mount. | |
163 | * A supported scenario is bind-mounting /dev/pts/ptmx to /dev/ptmx and | |
164 | * then calling open on /dev/ptmx. In this case a suitable pts | |
165 | * subdirectory can be found in the common parent directory /dev of the | |
166 | * devpts mount and the ptmx bind-mount, after resolving the /dev/ptmx | |
167 | * bind-mount. | |
168 | * If no suitable pts subdirectory can be found this function will fail. | |
169 | * This is e.g. the case when bind-mounting /dev/pts/ptmx to /ptmx. | |
170 | */ | |
311fc65c EB |
171 | struct vfsmount *devpts_mntget(struct file *filp, struct pts_fs_info *fsi) |
172 | { | |
173 | struct path path; | |
7d71109d | 174 | int err = 0; |
311fc65c EB |
175 | |
176 | path = filp->f_path; | |
177 | path_get(&path); | |
178 | ||
a319b01d CB |
179 | /* Walk upward while the start point is a bind mount of |
180 | * a single file. | |
181 | */ | |
182 | while (path.mnt->mnt_root == path.dentry) | |
183 | if (follow_up(&path) == 0) | |
184 | break; | |
185 | ||
186 | /* devpts_ptmx_path() finds a devpts fs or returns an error. */ | |
187 | if ((path.mnt->mnt_sb->s_magic != DEVPTS_SUPER_MAGIC) || | |
188 | (DEVPTS_SB(path.mnt->mnt_sb) != fsi)) | |
7d71109d | 189 | err = devpts_ptmx_path(&path); |
311fc65c | 190 | dput(path.dentry); |
a319b01d CB |
191 | if (!err) { |
192 | if (DEVPTS_SB(path.mnt->mnt_sb) == fsi) | |
193 | return path.mnt; | |
7d71109d | 194 | |
a319b01d | 195 | err = -ENODEV; |
311fc65c | 196 | } |
7d71109d | 197 | |
a319b01d CB |
198 | mntput(path.mnt); |
199 | return ERR_PTR(err); | |
311fc65c EB |
200 | } |
201 | ||
143c97cc | 202 | struct pts_fs_info *devpts_acquire(struct file *filp) |
59e55e6c | 203 | { |
eedf265a EB |
204 | struct pts_fs_info *result; |
205 | struct path path; | |
206 | struct super_block *sb; | |
eedf265a EB |
207 | |
208 | path = filp->f_path; | |
209 | path_get(&path); | |
210 | ||
7d71109d CB |
211 | /* Has the devpts filesystem already been found? */ |
212 | if (path.mnt->mnt_sb->s_magic != DEVPTS_SUPER_MAGIC) { | |
213 | int err; | |
214 | ||
215 | err = devpts_ptmx_path(&path); | |
216 | if (err) { | |
217 | result = ERR_PTR(err); | |
218 | goto out; | |
219 | } | |
eedf265a EB |
220 | } |
221 | ||
222 | /* | |
223 | * pty code needs to hold extra references in case of last /dev/tty close | |
224 | */ | |
311fc65c | 225 | sb = path.mnt->mnt_sb; |
eedf265a EB |
226 | atomic_inc(&sb->s_active); |
227 | result = DEVPTS_SB(sb); | |
228 | ||
229 | out: | |
230 | path_put(&path); | |
231 | return result; | |
232 | } | |
233 | ||
234 | void devpts_release(struct pts_fs_info *fsi) | |
235 | { | |
236 | deactivate_super(fsi->sb); | |
59e55e6c SB |
237 | } |
238 | ||
2a1b2dc0 SB |
239 | #define PARSE_MOUNT 0 |
240 | #define PARSE_REMOUNT 1 | |
241 | ||
1f71ebed SB |
242 | /* |
243 | * parse_mount_options(): | |
04541a2f | 244 | * Set @opts to mount options specified in @data. If an option is not |
eedf265a | 245 | * specified in @data, set it to its default value. |
1f71ebed SB |
246 | * |
247 | * Note: @data may be NULL (in which case all options are set to default). | |
248 | */ | |
2a1b2dc0 | 249 | static int parse_mount_options(char *data, int op, struct pts_mount_opts *opts) |
1da177e4 | 250 | { |
7a673c6b | 251 | char *p; |
f04c6ce2 EB |
252 | kuid_t uid; |
253 | kgid_t gid; | |
7a673c6b | 254 | |
31af0abb SB |
255 | opts->setuid = 0; |
256 | opts->setgid = 0; | |
f04c6ce2 EB |
257 | opts->uid = GLOBAL_ROOT_UID; |
258 | opts->gid = GLOBAL_ROOT_GID; | |
31af0abb | 259 | opts->mode = DEVPTS_DEFAULT_MODE; |
1f8f1e29 | 260 | opts->ptmxmode = DEVPTS_DEFAULT_PTMX_MODE; |
e9aba515 | 261 | opts->max = NR_UNIX98_PTY_MAX; |
7a673c6b | 262 | |
eedf265a EB |
263 | /* Only allow instances mounted from the initial mount |
264 | * namespace to tap the reserve pool of ptys. | |
265 | */ | |
2a1b2dc0 | 266 | if (op == PARSE_MOUNT) |
eedf265a EB |
267 | opts->reserve = |
268 | (current->nsproxy->mnt_ns == init_task.nsproxy->mnt_ns); | |
2a1b2dc0 | 269 | |
7a673c6b DP |
270 | while ((p = strsep(&data, ",")) != NULL) { |
271 | substring_t args[MAX_OPT_ARGS]; | |
272 | int token; | |
273 | int option; | |
274 | ||
275 | if (!*p) | |
1da177e4 | 276 | continue; |
7a673c6b DP |
277 | |
278 | token = match_token(p, tokens, args); | |
279 | switch (token) { | |
280 | case Opt_uid: | |
281 | if (match_int(&args[0], &option)) | |
282 | return -EINVAL; | |
f04c6ce2 EB |
283 | uid = make_kuid(current_user_ns(), option); |
284 | if (!uid_valid(uid)) | |
285 | return -EINVAL; | |
286 | opts->uid = uid; | |
31af0abb | 287 | opts->setuid = 1; |
7a673c6b DP |
288 | break; |
289 | case Opt_gid: | |
290 | if (match_int(&args[0], &option)) | |
291 | return -EINVAL; | |
f04c6ce2 EB |
292 | gid = make_kgid(current_user_ns(), option); |
293 | if (!gid_valid(gid)) | |
294 | return -EINVAL; | |
295 | opts->gid = gid; | |
31af0abb | 296 | opts->setgid = 1; |
7a673c6b DP |
297 | break; |
298 | case Opt_mode: | |
299 | if (match_octal(&args[0], &option)) | |
300 | return -EINVAL; | |
31af0abb | 301 | opts->mode = option & S_IALLUGO; |
7a673c6b | 302 | break; |
1f8f1e29 SB |
303 | case Opt_ptmxmode: |
304 | if (match_octal(&args[0], &option)) | |
305 | return -EINVAL; | |
306 | opts->ptmxmode = option & S_IALLUGO; | |
307 | break; | |
2a1b2dc0 | 308 | case Opt_newinstance: |
2a1b2dc0 | 309 | break; |
e9aba515 KK |
310 | case Opt_max: |
311 | if (match_int(&args[0], &option) || | |
312 | option < 0 || option > NR_UNIX98_PTY_MAX) | |
313 | return -EINVAL; | |
314 | opts->max = option; | |
315 | break; | |
7a673c6b | 316 | default: |
04541a2f | 317 | pr_err("called with bogus options\n"); |
1da177e4 LT |
318 | return -EINVAL; |
319 | } | |
320 | } | |
1da177e4 LT |
321 | |
322 | return 0; | |
323 | } | |
324 | ||
1f8f1e29 SB |
325 | static int mknod_ptmx(struct super_block *sb) |
326 | { | |
327 | int mode; | |
328 | int rc = -ENOMEM; | |
329 | struct dentry *dentry; | |
330 | struct inode *inode; | |
331 | struct dentry *root = sb->s_root; | |
332 | struct pts_fs_info *fsi = DEVPTS_SB(sb); | |
333 | struct pts_mount_opts *opts = &fsi->mount_opts; | |
e98d4137 EB |
334 | kuid_t ptmx_uid = current_fsuid(); |
335 | kgid_t ptmx_gid = current_fsgid(); | |
1f8f1e29 | 336 | |
5955102c | 337 | inode_lock(d_inode(root)); |
1f8f1e29 SB |
338 | |
339 | /* If we have already created ptmx node, return */ | |
340 | if (fsi->ptmx_dentry) { | |
341 | rc = 0; | |
342 | goto out; | |
343 | } | |
344 | ||
345 | dentry = d_alloc_name(root, "ptmx"); | |
346 | if (!dentry) { | |
04541a2f | 347 | pr_err("Unable to alloc dentry for ptmx node\n"); |
1f8f1e29 SB |
348 | goto out; |
349 | } | |
350 | ||
351 | /* | |
352 | * Create a new 'ptmx' node in this mount of devpts. | |
353 | */ | |
354 | inode = new_inode(sb); | |
355 | if (!inode) { | |
04541a2f | 356 | pr_err("Unable to alloc inode for ptmx node\n"); |
1f8f1e29 SB |
357 | dput(dentry); |
358 | goto out; | |
359 | } | |
360 | ||
361 | inode->i_ino = 2; | |
078cd827 | 362 | inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode); |
1f8f1e29 SB |
363 | |
364 | mode = S_IFCHR|opts->ptmxmode; | |
365 | init_special_inode(inode, mode, MKDEV(TTYAUX_MAJOR, 2)); | |
e98d4137 EB |
366 | inode->i_uid = ptmx_uid; |
367 | inode->i_gid = ptmx_gid; | |
1f8f1e29 SB |
368 | |
369 | d_add(dentry, inode); | |
370 | ||
371 | fsi->ptmx_dentry = dentry; | |
372 | rc = 0; | |
1f8f1e29 | 373 | out: |
5955102c | 374 | inode_unlock(d_inode(root)); |
1f8f1e29 SB |
375 | return rc; |
376 | } | |
377 | ||
378 | static void update_ptmx_mode(struct pts_fs_info *fsi) | |
379 | { | |
380 | struct inode *inode; | |
381 | if (fsi->ptmx_dentry) { | |
2b0143b5 | 382 | inode = d_inode(fsi->ptmx_dentry); |
1f8f1e29 SB |
383 | inode->i_mode = S_IFCHR|fsi->mount_opts.ptmxmode; |
384 | } | |
385 | } | |
1f8f1e29 | 386 | |
53af8ee4 SB |
387 | static int devpts_remount(struct super_block *sb, int *flags, char *data) |
388 | { | |
1f8f1e29 | 389 | int err; |
53af8ee4 SB |
390 | struct pts_fs_info *fsi = DEVPTS_SB(sb); |
391 | struct pts_mount_opts *opts = &fsi->mount_opts; | |
392 | ||
2a1b2dc0 | 393 | err = parse_mount_options(data, PARSE_REMOUNT, opts); |
1f8f1e29 SB |
394 | |
395 | /* | |
396 | * parse_mount_options() restores options to default values | |
397 | * before parsing and may have changed ptmxmode. So, update the | |
398 | * mode in the inode too. Bogus options don't fail the remount, | |
399 | * so do this even on error return. | |
400 | */ | |
401 | update_ptmx_mode(fsi); | |
402 | ||
403 | return err; | |
53af8ee4 SB |
404 | } |
405 | ||
34c80b1d | 406 | static int devpts_show_options(struct seq_file *seq, struct dentry *root) |
b87a267e | 407 | { |
34c80b1d | 408 | struct pts_fs_info *fsi = DEVPTS_SB(root->d_sb); |
31af0abb SB |
409 | struct pts_mount_opts *opts = &fsi->mount_opts; |
410 | ||
411 | if (opts->setuid) | |
04541a2f FF |
412 | seq_printf(seq, ",uid=%u", |
413 | from_kuid_munged(&init_user_ns, opts->uid)); | |
31af0abb | 414 | if (opts->setgid) |
04541a2f FF |
415 | seq_printf(seq, ",gid=%u", |
416 | from_kgid_munged(&init_user_ns, opts->gid)); | |
31af0abb | 417 | seq_printf(seq, ",mode=%03o", opts->mode); |
1f8f1e29 | 418 | seq_printf(seq, ",ptmxmode=%03o", opts->ptmxmode); |
e9aba515 KK |
419 | if (opts->max < NR_UNIX98_PTY_MAX) |
420 | seq_printf(seq, ",max=%d", opts->max); | |
b87a267e MS |
421 | |
422 | return 0; | |
423 | } | |
424 | ||
ee9b6d61 | 425 | static const struct super_operations devpts_sops = { |
1da177e4 LT |
426 | .statfs = simple_statfs, |
427 | .remount_fs = devpts_remount, | |
b87a267e | 428 | .show_options = devpts_show_options, |
1da177e4 LT |
429 | }; |
430 | ||
67245ff3 | 431 | static void *new_pts_fs_info(struct super_block *sb) |
e76b7c01 SB |
432 | { |
433 | struct pts_fs_info *fsi; | |
434 | ||
435 | fsi = kzalloc(sizeof(struct pts_fs_info), GFP_KERNEL); | |
436 | if (!fsi) | |
437 | return NULL; | |
438 | ||
439 | ida_init(&fsi->allocated_ptys); | |
31af0abb | 440 | fsi->mount_opts.mode = DEVPTS_DEFAULT_MODE; |
1f8f1e29 | 441 | fsi->mount_opts.ptmxmode = DEVPTS_DEFAULT_PTMX_MODE; |
67245ff3 | 442 | fsi->sb = sb; |
e76b7c01 SB |
443 | |
444 | return fsi; | |
445 | } | |
446 | ||
1da177e4 LT |
447 | static int |
448 | devpts_fill_super(struct super_block *s, void *data, int silent) | |
449 | { | |
1f8f1e29 | 450 | struct inode *inode; |
dee87d47 | 451 | int error; |
1da177e4 | 452 | |
cc50a07a | 453 | s->s_iflags &= ~SB_I_NODEV; |
1da177e4 LT |
454 | s->s_blocksize = 1024; |
455 | s->s_blocksize_bits = 10; | |
456 | s->s_magic = DEVPTS_SUPER_MAGIC; | |
457 | s->s_op = &devpts_sops; | |
1da177e4 LT |
458 | s->s_time_gran = 1; |
459 | ||
dee87d47 | 460 | error = -ENOMEM; |
67245ff3 | 461 | s->s_fs_info = new_pts_fs_info(s); |
e76b7c01 SB |
462 | if (!s->s_fs_info) |
463 | goto fail; | |
464 | ||
dee87d47 EB |
465 | error = parse_mount_options(data, PARSE_MOUNT, &DEVPTS_SB(s)->mount_opts); |
466 | if (error) | |
467 | goto fail; | |
468 | ||
469 | error = -ENOMEM; | |
1da177e4 LT |
470 | inode = new_inode(s); |
471 | if (!inode) | |
3850aba7 | 472 | goto fail; |
1da177e4 | 473 | inode->i_ino = 1; |
078cd827 | 474 | inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode); |
1da177e4 LT |
475 | inode->i_mode = S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR; |
476 | inode->i_op = &simple_dir_inode_operations; | |
477 | inode->i_fop = &simple_dir_operations; | |
bfe86848 | 478 | set_nlink(inode, 2); |
1da177e4 | 479 | |
48fde701 | 480 | s->s_root = d_make_root(inode); |
180d9044 EB |
481 | if (!s->s_root) { |
482 | pr_err("get root dentry failed\n"); | |
483 | goto fail; | |
484 | } | |
1f8f1e29 | 485 | |
180d9044 EB |
486 | error = mknod_ptmx(s); |
487 | if (error) | |
488 | goto fail_dput; | |
e76b7c01 | 489 | |
180d9044 EB |
490 | return 0; |
491 | fail_dput: | |
492 | dput(s->s_root); | |
493 | s->s_root = NULL; | |
1da177e4 | 494 | fail: |
dee87d47 | 495 | return error; |
1da177e4 LT |
496 | } |
497 | ||
2a1b2dc0 | 498 | /* |
fc14f2fe | 499 | * devpts_mount() |
1bd79035 | 500 | * |
eedf265a EB |
501 | * Mount a new (private) instance of devpts. PTYs created in this |
502 | * instance are independent of the PTYs in other devpts instances. | |
d4076ac5 | 503 | */ |
fc14f2fe AV |
504 | static struct dentry *devpts_mount(struct file_system_type *fs_type, |
505 | int flags, const char *dev_name, void *data) | |
1da177e4 | 506 | { |
c1b241f0 | 507 | return mount_nodev(fs_type, flags, data, devpts_fill_super); |
1da177e4 | 508 | } |
482984f0 | 509 | |
e76b7c01 SB |
510 | static void devpts_kill_sb(struct super_block *sb) |
511 | { | |
512 | struct pts_fs_info *fsi = DEVPTS_SB(sb); | |
513 | ||
40b320e1 EB |
514 | if (fsi) |
515 | ida_destroy(&fsi->allocated_ptys); | |
e76b7c01 | 516 | kfree(fsi); |
1f8f1e29 | 517 | kill_litter_super(sb); |
e76b7c01 SB |
518 | } |
519 | ||
1da177e4 | 520 | static struct file_system_type devpts_fs_type = { |
1da177e4 | 521 | .name = "devpts", |
fc14f2fe | 522 | .mount = devpts_mount, |
e76b7c01 | 523 | .kill_sb = devpts_kill_sb, |
cc50a07a | 524 | .fs_flags = FS_USERNS_MOUNT, |
1da177e4 LT |
525 | }; |
526 | ||
527 | /* | |
528 | * The normal naming convention is simply /dev/pts/<number>; this conforms | |
529 | * to the System V naming convention | |
530 | */ | |
531 | ||
67245ff3 | 532 | int devpts_new_index(struct pts_fs_info *fsi) |
718a9163 | 533 | { |
0f0a0e54 | 534 | int index = -ENOSPC; |
e9aba515 | 535 | |
0f0a0e54 MW |
536 | if (atomic_inc_return(&pty_count) >= (pty_limit - |
537 | (fsi->mount_opts.reserve ? 0 : pty_reserve))) | |
538 | goto out; | |
718a9163 | 539 | |
0f0a0e54 MW |
540 | index = ida_alloc_max(&fsi->allocated_ptys, fsi->mount_opts.max - 1, |
541 | GFP_KERNEL); | |
542 | ||
543 | out: | |
544 | if (index < 0) | |
545 | atomic_dec(&pty_count); | |
718a9163 SB |
546 | return index; |
547 | } | |
548 | ||
67245ff3 | 549 | void devpts_kill_index(struct pts_fs_info *fsi, int idx) |
718a9163 | 550 | { |
0f0a0e54 MW |
551 | ida_free(&fsi->allocated_ptys, idx); |
552 | atomic_dec(&pty_count); | |
718a9163 SB |
553 | } |
554 | ||
1dcb8e6d JS |
555 | /** |
556 | * devpts_pty_new -- create a new inode in /dev/pts/ | |
557 | * @ptmx_inode: inode of the master | |
558 | * @device: major+minor of the node to be created | |
559 | * @index: used as a name of the node | |
560 | * @priv: what's given back by devpts_get_priv | |
561 | * | |
562 | * The created inode is returned. Remove it from /dev/pts/ by devpts_pty_kill. | |
563 | */ | |
8ead9dd5 | 564 | struct dentry *devpts_pty_new(struct pts_fs_info *fsi, int index, void *priv) |
1da177e4 | 565 | { |
1da177e4 | 566 | struct dentry *dentry; |
eedf265a | 567 | struct super_block *sb = fsi->sb; |
162b97cf | 568 | struct inode *inode; |
9ce71148 | 569 | struct dentry *root; |
9ce71148 | 570 | struct pts_mount_opts *opts; |
89a52e10 | 571 | char s[12]; |
1da177e4 | 572 | |
9ce71148 | 573 | root = sb->s_root; |
9ce71148 JT |
574 | opts = &fsi->mount_opts; |
575 | ||
162b97cf | 576 | inode = new_inode(sb); |
1da177e4 | 577 | if (!inode) |
162b97cf | 578 | return ERR_PTR(-ENOMEM); |
1da177e4 | 579 | |
f11afb61 | 580 | inode->i_ino = index + 3; |
d0eafc7d DH |
581 | inode->i_uid = opts->setuid ? opts->uid : current_fsuid(); |
582 | inode->i_gid = opts->setgid ? opts->gid : current_fsgid(); | |
078cd827 | 583 | inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode); |
8ead9dd5 | 584 | init_special_inode(inode, S_IFCHR|opts->mode, MKDEV(UNIX98_PTY_SLAVE_MAJOR, index)); |
1da177e4 | 585 | |
f11afb61 | 586 | sprintf(s, "%d", index); |
89a52e10 | 587 | |
59e55e6c | 588 | dentry = d_alloc_name(root, s); |
b12d1259 | 589 | if (dentry) { |
8ead9dd5 | 590 | dentry->d_fsdata = priv; |
89a52e10 | 591 | d_add(dentry, inode); |
2b0143b5 | 592 | fsnotify_create(d_inode(root), dentry); |
aa597bc1 AV |
593 | } else { |
594 | iput(inode); | |
8ead9dd5 | 595 | dentry = ERR_PTR(-ENOMEM); |
3972b7f6 | 596 | } |
1da177e4 | 597 | |
8ead9dd5 | 598 | return dentry; |
1da177e4 LT |
599 | } |
600 | ||
1dcb8e6d JS |
601 | /** |
602 | * devpts_get_priv -- get private data for a slave | |
603 | * @pts_inode: inode of the slave | |
604 | * | |
605 | * Returns whatever was passed as priv in devpts_pty_new for a given inode. | |
606 | */ | |
8ead9dd5 | 607 | void *devpts_get_priv(struct dentry *dentry) |
1da177e4 | 608 | { |
3e423945 LT |
609 | if (dentry->d_sb->s_magic != DEVPTS_SUPER_MAGIC) |
610 | return NULL; | |
8ead9dd5 | 611 | return dentry->d_fsdata; |
1da177e4 LT |
612 | } |
613 | ||
1dcb8e6d JS |
614 | /** |
615 | * devpts_pty_kill -- remove inode form /dev/pts/ | |
616 | * @inode: inode of the slave to be removed | |
617 | * | |
618 | * This is an inverse operation of devpts_pty_new. | |
619 | */ | |
8ead9dd5 | 620 | void devpts_pty_kill(struct dentry *dentry) |
1da177e4 | 621 | { |
8ead9dd5 | 622 | WARN_ON_ONCE(dentry->d_sb->s_magic != DEVPTS_SUPER_MAGIC); |
1da177e4 | 623 | |
8ead9dd5 LT |
624 | dentry->d_fsdata = NULL; |
625 | drop_nlink(dentry->d_inode); | |
aa597bc1 AV |
626 | d_delete(dentry); |
627 | dput(dentry); /* d_alloc_name() in devpts_pty_new() */ | |
1da177e4 LT |
628 | } |
629 | ||
630 | static int __init init_devpts_fs(void) | |
631 | { | |
632 | int err = register_filesystem(&devpts_fs_type); | |
633 | if (!err) { | |
eedf265a | 634 | register_sysctl_table(pty_root_table); |
1da177e4 LT |
635 | } |
636 | return err; | |
637 | } | |
1da177e4 | 638 | module_init(init_devpts_fs) |