blob: 98af3b1f2d2a13efea585a11429bc00a48451582 [file] [log] [blame]
William Hubbsc6e3fd22010-10-07 13:20:02 -05001#include <linux/slab.h> /* for kmalloc */
2#include <linux/consolemap.h>
3#include <linux/interrupt.h>
4#include <linux/sched.h>
George Spelvin593fb1ae42013-02-12 02:00:43 -05005#include <linux/device.h> /* for dev_warn */
William Hubbsc6e3fd22010-10-07 13:20:02 -05006#include <linux/selection.h>
Ben Hutchingsd7500132014-05-19 00:56:22 +01007#include <linux/workqueue.h>
Ben Hutchings28a821c2014-05-19 01:03:06 +01008#include <linux/tty.h>
9#include <linux/tty_flip.h>
Ben Hutchingsd7500132014-05-19 00:56:22 +010010#include <asm/cmpxchg.h>
William Hubbsc6e3fd22010-10-07 13:20:02 -050011
12#include "speakup.h"
13
14/* ------ cut and paste ----- */
15/* Don't take this from <ctype.h>: 011-015 on the screen aren't spaces */
16#define ishardspace(c) ((c) == ' ')
17
Samuel Thibaultca2beaf2013-01-02 02:37:40 +010018unsigned short spk_xs, spk_ys, spk_xe, spk_ye; /* our region points */
William Hubbsc6e3fd22010-10-07 13:20:02 -050019
20/* Variables for selection control. */
Valentin Iliec6ac9922013-04-05 15:42:26 +030021/* must not be deallocated */
William Hubbsc6e3fd22010-10-07 13:20:02 -050022struct vc_data *spk_sel_cons;
23/* cleared by clear_selection */
24static int sel_start = -1;
25static int sel_end;
26static int sel_buffer_lth;
27static char *sel_buffer;
28
29static unsigned char sel_pos(int n)
30{
William Hubbsa1768fb2010-10-15 22:13:35 -050031 return inverse_translate(spk_sel_cons,
32 screen_glyph(spk_sel_cons, n), 0);
William Hubbsc6e3fd22010-10-07 13:20:02 -050033}
34
35void speakup_clear_selection(void)
36{
37 sel_start = -1;
38}
39
40/* does screen address p correspond to character at LH/RH edge of screen? */
41static int atedge(const int p, int size_row)
42{
William Hubbsa1768fb2010-10-15 22:13:35 -050043 return !(p % size_row) || !((p + 2) % size_row);
William Hubbsc6e3fd22010-10-07 13:20:02 -050044}
45
46/* constrain v such that v <= u */
47static unsigned short limit(const unsigned short v, const unsigned short u)
48{
49 return (v > u) ? u : v;
50}
51
52int speakup_set_selection(struct tty_struct *tty)
53{
54 int new_sel_start, new_sel_end;
55 char *bp, *obp;
56 int i, ps, pe;
57 struct vc_data *vc = vc_cons[fg_console].d;
58
Samuel Thibaultca2beaf2013-01-02 02:37:40 +010059 spk_xs = limit(spk_xs, vc->vc_cols - 1);
60 spk_ys = limit(spk_ys, vc->vc_rows - 1);
61 spk_xe = limit(spk_xe, vc->vc_cols - 1);
62 spk_ye = limit(spk_ye, vc->vc_rows - 1);
63 ps = spk_ys * vc->vc_size_row + (spk_xs << 1);
64 pe = spk_ye * vc->vc_size_row + (spk_xe << 1);
William Hubbsc6e3fd22010-10-07 13:20:02 -050065
66 if (ps > pe) {
67 /* make sel_start <= sel_end */
68 int tmp = ps;
Aybuke Ozdemirc772bce2014-09-26 22:26:49 +030069
William Hubbsc6e3fd22010-10-07 13:20:02 -050070 ps = pe;
71 pe = tmp;
72 }
73
74 if (spk_sel_cons != vc_cons[fg_console].d) {
75 speakup_clear_selection();
76 spk_sel_cons = vc_cons[fg_console].d;
Chris Yungmanne888fab2012-06-13 12:39:55 -040077 dev_warn(tty->dev,
William Hubbsc6e3fd22010-10-07 13:20:02 -050078 "Selection: mark console not the same as cut\n");
79 return -EINVAL;
80 }
81
82 new_sel_start = ps;
83 new_sel_end = pe;
84
85 /* select to end of line if on trailing space */
86 if (new_sel_end > new_sel_start &&
87 !atedge(new_sel_end, vc->vc_size_row) &&
88 ishardspace(sel_pos(new_sel_end))) {
89 for (pe = new_sel_end + 2; ; pe += 2)
90 if (!ishardspace(sel_pos(pe)) ||
91 atedge(pe, vc->vc_size_row))
92 break;
93 if (ishardspace(sel_pos(pe)))
94 new_sel_end = pe;
95 }
96 if ((new_sel_start == sel_start) && (new_sel_end == sel_end))
97 return 0; /* no action required */
98
99 sel_start = new_sel_start;
100 sel_end = new_sel_end;
101 /* Allocate a new buffer before freeing the old one ... */
102 bp = kmalloc((sel_end-sel_start)/2+1, GFP_ATOMIC);
103 if (!bp) {
William Hubbsc6e3fd22010-10-07 13:20:02 -0500104 speakup_clear_selection();
105 return -ENOMEM;
106 }
107 kfree(sel_buffer);
108 sel_buffer = bp;
109
110 obp = bp;
111 for (i = sel_start; i <= sel_end; i += 2) {
112 *bp = sel_pos(i);
113 if (!ishardspace(*bp++))
114 obp = bp;
115 if (!((i + 2) % vc->vc_size_row)) {
116 /* strip trailing blanks from line and add newline,
Aleksei Fedotov13d825e2015-08-14 22:34:37 +0300117 * unless non-space at end of line.
118 */
William Hubbsc6e3fd22010-10-07 13:20:02 -0500119 if (obp != bp) {
120 bp = obp;
121 *bp++ = '\r';
122 }
123 obp = bp;
124 }
125 }
126 sel_buffer_lth = bp - sel_buffer;
127 return 0;
128}
129
Ben Hutchingsd7500132014-05-19 00:56:22 +0100130struct speakup_paste_work {
131 struct work_struct work;
132 struct tty_struct *tty;
133};
134
135static void __speakup_paste_selection(struct work_struct *work)
William Hubbsc6e3fd22010-10-07 13:20:02 -0500136{
Ben Hutchingsd7500132014-05-19 00:56:22 +0100137 struct speakup_paste_work *spw =
138 container_of(work, struct speakup_paste_work, work);
139 struct tty_struct *tty = xchg(&spw->tty, NULL);
William Hubbsc6e3fd22010-10-07 13:20:02 -0500140 struct vc_data *vc = (struct vc_data *) tty->driver_data;
141 int pasted = 0, count;
Ben Hutchings28a821c2014-05-19 01:03:06 +0100142 struct tty_ldisc *ld;
William Hubbsc6e3fd22010-10-07 13:20:02 -0500143 DECLARE_WAITQUEUE(wait, current);
Ben Hutchingsd7500132014-05-19 00:56:22 +0100144
Ben Hutchings28a821c2014-05-19 01:03:06 +0100145 ld = tty_ldisc_ref_wait(tty);
146 tty_buffer_lock_exclusive(&vc->port);
147
William Hubbsc6e3fd22010-10-07 13:20:02 -0500148 add_wait_queue(&vc->paste_wait, &wait);
149 while (sel_buffer && sel_buffer_lth > pasted) {
150 set_current_state(TASK_INTERRUPTIBLE);
151 if (test_bit(TTY_THROTTLED, &tty->flags)) {
William Hubbsc6e3fd22010-10-07 13:20:02 -0500152 schedule();
153 continue;
154 }
155 count = sel_buffer_lth - pasted;
Ben Hutchings28a821c2014-05-19 01:03:06 +0100156 count = tty_ldisc_receive_buf(ld, sel_buffer + pasted, NULL,
157 count);
William Hubbsc6e3fd22010-10-07 13:20:02 -0500158 pasted += count;
159 }
160 remove_wait_queue(&vc->paste_wait, &wait);
Davidlohr Bueso2be90fe2015-01-26 02:15:02 -0800161 __set_current_state(TASK_RUNNING);
Ben Hutchings28a821c2014-05-19 01:03:06 +0100162
163 tty_buffer_unlock_exclusive(&vc->port);
164 tty_ldisc_deref(ld);
Ben Hutchingsd7500132014-05-19 00:56:22 +0100165 tty_kref_put(tty);
166}
167
168static struct speakup_paste_work speakup_paste_work = {
169 .work = __WORK_INITIALIZER(speakup_paste_work.work,
170 __speakup_paste_selection)
171};
172
173int speakup_paste_selection(struct tty_struct *tty)
174{
175 if (cmpxchg(&speakup_paste_work.tty, NULL, tty) != NULL)
176 return -EBUSY;
177
178 tty_kref_get(tty);
179 schedule_work_on(WORK_CPU_UNBOUND, &speakup_paste_work.work);
William Hubbsc6e3fd22010-10-07 13:20:02 -0500180 return 0;
181}
182
Ben Hutchingsd7500132014-05-19 00:56:22 +0100183void speakup_cancel_paste(void)
184{
185 cancel_work_sync(&speakup_paste_work.work);
186 tty_kref_put(speakup_paste_work.tty);
187}