selection.c 9.5 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
L
Linus Torvalds 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * This module exports the functions:
 *
 *     'int set_selection(struct tiocl_selection __user *, struct tty_struct *)'
 *     'void clear_selection(void)'
 *     'int paste_selection(struct tty_struct *)'
 *     'int sel_loadlut(char __user *)'
 *
 * Now that /dev/vcs exists, most of this can disappear again.
 */

#include <linux/module.h>
#include <linux/tty.h>
#include <linux/sched.h>
#include <linux/mm.h>
17
#include <linux/mutex.h>
L
Linus Torvalds 已提交
18 19 20
#include <linux/slab.h>
#include <linux/types.h>

21
#include <linux/uaccess.h>
L
Linus Torvalds 已提交
22

J
Jan Engelhardt 已提交
23
#include <linux/kbd_kern.h>
L
Linus Torvalds 已提交
24 25 26 27 28
#include <linux/vt_kern.h>
#include <linux/consolemap.h>
#include <linux/selection.h>
#include <linux/tiocl.h>
#include <linux/console.h>
29
#include <linux/tty_flip.h>
L
Linus Torvalds 已提交
30 31 32 33 34 35

/* Don't take this from <ctype.h>: 011-015 on the screen aren't spaces */
#define isspace(c)	((c) == ' ')

extern void poke_blanked_console(void);

A
Alan Cox 已提交
36
/* FIXME: all this needs locking */
L
Linus Torvalds 已提交
37 38
/* Variables for selection control. */
/* Use a dynamic buffer, instead of static (Dec 1994) */
A
Alan Cox 已提交
39
struct vc_data *sel_cons;		/* must not be deallocated */
J
Jan Engelhardt 已提交
40
static int use_unicode;
L
Linus Torvalds 已提交
41 42 43 44
static volatile int sel_start = -1; 	/* cleared by clear_selection */
static int sel_end;
static int sel_buffer_lth;
static char *sel_buffer;
45
static DEFINE_MUTEX(sel_lock);
L
Linus Torvalds 已提交
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61

/* clear_selection, highlight and highlight_pointer can be called
   from interrupt (via scrollback/front) */

/* set reverse video on characters s-e of console with selection. */
static inline void highlight(const int s, const int e)
{
	invert_screen(sel_cons, s, e-s+2, 1);
}

/* use complementary color to show the pointer */
static inline void highlight_pointer(const int where)
{
	complement_pos(sel_cons, where);
}

62
static u32
L
Linus Torvalds 已提交
63 64
sel_pos(int n)
{
65 66
	if (use_unicode)
		return screen_glyph_unicode(sel_cons, n / 2);
J
Jan Engelhardt 已提交
67
	return inverse_translate(sel_cons, screen_glyph(sel_cons, n),
68
				0);
L
Linus Torvalds 已提交
69 70
}

71 72 73 74 75 76 77 78
/**
 *	clear_selection		-	remove current selection
 *
 *	Remove the current selection highlight, if any from the console
 *	holding the selection. The caller must hold the console lock.
 */
void clear_selection(void)
{
L
Linus Torvalds 已提交
79 80 81 82 83 84 85 86 87
	highlight_pointer(-1); /* hide the pointer */
	if (sel_start != -1) {
		highlight(sel_start, sel_end);
		sel_start = -1;
	}
}

/*
 * User settable table: what characters are to be considered alphabetic?
88
 * 128 bits. Locked by the console lock.
L
Linus Torvalds 已提交
89
 */
90
static u32 inwordLut[]={
L
Linus Torvalds 已提交
91
  0x00000000, /* control chars     */
92
  0x03FFE000, /* digits and "-./"  */
L
Linus Torvalds 已提交
93 94 95 96
  0x87FFFFFE, /* uppercase and '_' */
  0x07FFFFFE, /* lowercase         */
};

97 98
static inline int inword(const u32 c)
{
99
	return c > 0x7f || (( inwordLut[c>>5] >> (c & 0x1F) ) & 1);
L
Linus Torvalds 已提交
100 101
}

102 103 104 105 106 107 108
/**
 *	set loadlut		-	load the LUT table
 *	@p: user table
 *
 *	Load the LUT table from user space. The caller must hold the console
 *	lock. Make a temporary copy so a partial update doesn't make a mess.
 */
L
Linus Torvalds 已提交
109 110
int sel_loadlut(char __user *p)
{
111 112
	u32 tmplut[ARRAY_SIZE(inwordLut)];
	if (copy_from_user(tmplut, (u32 __user *)(p+4), sizeof(inwordLut)))
113
		return -EFAULT;
114
	memcpy(inwordLut, tmplut, sizeof(inwordLut));
115
	return 0;
L
Linus Torvalds 已提交
116 117 118 119 120 121 122 123
}

/* does screen address p correspond to character at LH/RH edge of screen? */
static inline int atedge(const int p, int size_row)
{
	return (!(p % size_row)	|| !((p + 2) % size_row));
}

124 125
/* stores the char in UTF8 and returns the number of bytes used (1-4) */
static int store_utf8(u32 c, char *p)
J
Jan Engelhardt 已提交
126 127 128 129 130 131 132 133 134 135
{
	if (c < 0x80) {
		/*  0******* */
		p[0] = c;
		return 1;
	} else if (c < 0x800) {
		/* 110***** 10****** */
		p[0] = 0xc0 | (c >> 6);
		p[1] = 0x80 | (c & 0x3f);
		return 2;
136
	} else if (c < 0x10000) {
J
Jan Engelhardt 已提交
137 138 139 140 141
		/* 1110**** 10****** 10****** */
		p[0] = 0xe0 | (c >> 12);
		p[1] = 0x80 | ((c >> 6) & 0x3f);
		p[2] = 0x80 | (c & 0x3f);
		return 3;
142 143 144 145 146 147 148 149 150 151 152 153 154 155
	} else if (c < 0x110000) {
		/* 11110*** 10****** 10****** 10****** */
		p[0] = 0xf0 | (c >> 18);
		p[1] = 0x80 | ((c >> 12) & 0x3f);
		p[2] = 0x80 | ((c >> 6) & 0x3f);
		p[3] = 0x80 | (c & 0x3f);
		return 4;
	} else {
		/* outside Unicode, replace with U+FFFD */
		p[0] = 0xef;
		p[1] = 0xbf;
		p[2] = 0xbd;
		return 3;
	}
J
Jan Engelhardt 已提交
156 157
}

158 159 160 161 162 163 164 165 166 167
/**
 *	set_selection		- 	set the current selection.
 *	@sel: user selection info
 *	@tty: the console tty
 *
 *	Invoked by the ioctl handle for the vt layer.
 *
 *	The entire selection process is managed under the console_lock. It's
 *	 a lot under the lock but its hardly a performance path
 */
L
Linus Torvalds 已提交
168 169 170
int set_selection(const struct tiocl_selection __user *sel, struct tty_struct *tty)
{
	struct vc_data *vc = vc_cons[fg_console].d;
171 172
	int new_sel_start, new_sel_end, spc;
	struct tiocl_selection v;
L
Linus Torvalds 已提交
173
	char *bp, *obp;
J
Jan Engelhardt 已提交
174
	int i, ps, pe, multiplier;
175
	u32 c;
176
	int mode, ret = 0;
L
Linus Torvalds 已提交
177 178

	poke_blanked_console();
179 180
	if (copy_from_user(&v, sel, sizeof(*sel)))
		return -EFAULT;
L
Linus Torvalds 已提交
181

A
Adam Borowski 已提交
182 183 184 185
	v.xs = min_t(u16, v.xs - 1, vc->vc_cols - 1);
	v.ys = min_t(u16, v.ys - 1, vc->vc_rows - 1);
	v.xe = min_t(u16, v.xe - 1, vc->vc_cols - 1);
	v.ye = min_t(u16, v.ye - 1, vc->vc_rows - 1);
186 187
	ps = v.ys * vc->vc_size_row + (v.xs << 1);
	pe = v.ye * vc->vc_size_row + (v.xe << 1);
L
Linus Torvalds 已提交
188

189 190 191 192 193 194 195 196 197 198
	if (v.sel_mode == TIOCL_SELCLEAR) {
		/* useful for screendump without selection highlights */
		clear_selection();
		return 0;
	}

	if (mouse_reporting() && (v.sel_mode & TIOCL_SELMOUSEREPORT)) {
		mouse_report(tty, v.sel_mode & TIOCL_SELBUTTONMASK, v.xs, v.ys);
		return 0;
	}
L
Linus Torvalds 已提交
199 200

	if (ps > pe)	/* make sel_start <= sel_end */
201
		swap(ps, pe);
L
Linus Torvalds 已提交
202

203
	mutex_lock(&sel_lock);
L
Linus Torvalds 已提交
204 205 206 207
	if (sel_cons != vc_cons[fg_console].d) {
		clear_selection();
		sel_cons = vc_cons[fg_console].d;
	}
A
Alan Cox 已提交
208 209 210 211 212
	mode = vt_do_kdgkbmode(fg_console);
	if (mode == K_UNICODE)
		use_unicode = 1;
	else
		use_unicode = 0;
L
Linus Torvalds 已提交
213

214
	switch (v.sel_mode)
L
Linus Torvalds 已提交
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
	{
		case TIOCL_SELCHAR:	/* character-by-character selection */
			new_sel_start = ps;
			new_sel_end = pe;
			break;
		case TIOCL_SELWORD:	/* word-by-word selection */
			spc = isspace(sel_pos(ps));
			for (new_sel_start = ps; ; ps -= 2)
			{
				if ((spc && !isspace(sel_pos(ps))) ||
				    (!spc && !inword(sel_pos(ps))))
					break;
				new_sel_start = ps;
				if (!(ps % vc->vc_size_row))
					break;
			}
			spc = isspace(sel_pos(pe));
			for (new_sel_end = pe; ; pe += 2)
			{
				if ((spc && !isspace(sel_pos(pe))) ||
				    (!spc && !inword(sel_pos(pe))))
					break;
				new_sel_end = pe;
				if (!((pe + 2) % vc->vc_size_row))
					break;
			}
			break;
		case TIOCL_SELLINE:	/* line-by-line selection */
			new_sel_start = ps - ps % vc->vc_size_row;
			new_sel_end = pe + vc->vc_size_row
				    - pe % vc->vc_size_row - 2;
			break;
		case TIOCL_SELPOINTER:
			highlight_pointer(pe);
249
			goto unlock;
L
Linus Torvalds 已提交
250
		default:
251 252
			ret = -EINVAL;
			goto unlock;
L
Linus Torvalds 已提交
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
	}

	/* remove the pointer */
	highlight_pointer(-1);

	/* select to end of line if on trailing space */
	if (new_sel_end > new_sel_start &&
		!atedge(new_sel_end, vc->vc_size_row) &&
		isspace(sel_pos(new_sel_end))) {
		for (pe = new_sel_end + 2; ; pe += 2)
			if (!isspace(sel_pos(pe)) ||
			    atedge(pe, vc->vc_size_row))
				break;
		if (isspace(sel_pos(pe)))
			new_sel_end = pe;
	}
	if (sel_start == -1)	/* no current selection */
		highlight(new_sel_start, new_sel_end);
	else if (new_sel_start == sel_start)
	{
		if (new_sel_end == sel_end)	/* no action required */
274
			goto unlock;
L
Linus Torvalds 已提交
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
		else if (new_sel_end > sel_end)	/* extend to right */
			highlight(sel_end + 2, new_sel_end);
		else				/* contract from right */
			highlight(new_sel_end + 2, sel_end);
	}
	else if (new_sel_end == sel_end)
	{
		if (new_sel_start < sel_start)	/* extend to left */
			highlight(new_sel_start, sel_start - 2);
		else				/* contract from left */
			highlight(sel_start, new_sel_start - 2);
	}
	else	/* some other case; start selection from scratch */
	{
		clear_selection();
		highlight(new_sel_start, new_sel_end);
	}
	sel_start = new_sel_start;
	sel_end = new_sel_end;

	/* Allocate a new buffer before freeing the old one ... */
296
	multiplier = use_unicode ? 4 : 1;  /* chars can take up to 4 bytes */
297 298
	bp = kmalloc_array((sel_end - sel_start) / 2 + 1, multiplier,
			   GFP_KERNEL);
L
Linus Torvalds 已提交
299 300 301
	if (!bp) {
		printk(KERN_WARNING "selection: kmalloc() failed\n");
		clear_selection();
302 303
		ret = -ENOMEM;
		goto unlock;
L
Linus Torvalds 已提交
304
	}
J
Jesper Juhl 已提交
305
	kfree(sel_buffer);
L
Linus Torvalds 已提交
306 307 308 309
	sel_buffer = bp;

	obp = bp;
	for (i = sel_start; i <= sel_end; i += 2) {
J
Jan Engelhardt 已提交
310 311 312 313 314 315
		c = sel_pos(i);
		if (use_unicode)
			bp += store_utf8(c, bp);
		else
			*bp++ = c;
		if (!isspace(c))
L
Linus Torvalds 已提交
316 317 318 319 320 321 322 323 324 325 326 327
			obp = bp;
		if (! ((i + 2) % vc->vc_size_row)) {
			/* strip trailing blanks from line and add newline,
			   unless non-space at end of line. */
			if (obp != bp) {
				bp = obp;
				*bp++ = '\r';
			}
			obp = bp;
		}
	}
	sel_buffer_lth = bp - sel_buffer;
328 329 330
unlock:
	mutex_unlock(&sel_lock);
	return ret;
L
Linus Torvalds 已提交
331 332 333 334 335
}

/* Insert the contents of the selection buffer into the
 * queue of the tty associated with the current console.
 * Invoked by ioctl().
J
Jiri Slaby 已提交
336
 *
A
Alan Cox 已提交
337 338
 * Locking: called without locks. Calls the ldisc wrongly with
 * unsafe methods,
L
Linus Torvalds 已提交
339 340 341
 */
int paste_selection(struct tty_struct *tty)
{
A
Alan Cox 已提交
342
	struct vc_data *vc = tty->driver_data;
A
Alan Cox 已提交
343 344
	int	pasted = 0;
	unsigned int count;
L
Linus Torvalds 已提交
345 346 347
	struct  tty_ldisc *ld;
	DECLARE_WAITQUEUE(wait, current);

348
	console_lock();
L
Linus Torvalds 已提交
349
	poke_blanked_console();
350
	console_unlock();
L
Linus Torvalds 已提交
351

352
	ld = tty_ldisc_ref_wait(tty);
353 354
	if (!ld)
		return -EIO;	/* ldisc was hung up */
355
	tty_buffer_lock_exclusive(&vc->port);
A
Arnd Bergmann 已提交
356

L
Linus Torvalds 已提交
357
	add_wait_queue(&vc->paste_wait, &wait);
358
	mutex_lock(&sel_lock);
L
Linus Torvalds 已提交
359 360
	while (sel_buffer && sel_buffer_lth > pasted) {
		set_current_state(TASK_INTERRUPTIBLE);
361
		if (tty_throttled(tty)) {
362
			mutex_unlock(&sel_lock);
L
Linus Torvalds 已提交
363
			schedule();
364
			mutex_lock(&sel_lock);
L
Linus Torvalds 已提交
365 366
			continue;
		}
367
		__set_current_state(TASK_RUNNING);
L
Linus Torvalds 已提交
368
		count = sel_buffer_lth - pasted;
369 370
		count = tty_ldisc_receive_buf(ld, sel_buffer + pasted, NULL,
					      count);
L
Linus Torvalds 已提交
371 372
		pasted += count;
	}
373
	mutex_unlock(&sel_lock);
L
Linus Torvalds 已提交
374
	remove_wait_queue(&vc->paste_wait, &wait);
375
	__set_current_state(TASK_RUNNING);
L
Linus Torvalds 已提交
376

377
	tty_buffer_unlock_exclusive(&vc->port);
L
Linus Torvalds 已提交
378 379 380
	tty_ldisc_deref(ld);
	return 0;
}