]> git.saurik.com Git - apple/xnu.git/blame - bsd/kern/tty_subr.c
xnu-1228.tar.gz
[apple/xnu.git] / bsd / kern / tty_subr.c
CommitLineData
1c79356b 1/*
2d21ac55 2 * Copyright (c) 2000-2006 Apple Computer, Inc. All rights reserved.
5d5c5d0d 3 *
2d21ac55 4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
1c79356b 5 *
2d21ac55
A
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
8f6c56a5 14 *
2d21ac55
A
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
8f6c56a5
A
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
2d21ac55
A
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
8f6c56a5 25 *
2d21ac55 26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
1c79356b
A
27 */
28/* Copyright (c) 1997 Apple Computer, Inc. All Rights Reserved */
29/*
30 * Copyright (c) 1993, 1994 Theo de Raadt
31 * All rights reserved.
32 *
33 * Redistribution and use in source and binary forms, with or without
34 * modification, are permitted provided that the following conditions
35 * are met:
36 * 1. Redistributions of source code must retain the above copyright
37 * notice unmodified, this list of conditions, and the following
38 * disclaimer.
39 * 2. Redistributions in binary form must reproduce the above copyright
40 * notice, this list of conditions and the following disclaimer in the
41 * documentation and/or other materials provided with the distribution.
42 *
43 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
44 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
45 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
46 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
47 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
48 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
49 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
50 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
51 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
52 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
53 * SUCH DAMAGE.
54 *
55 */
56
1c79356b
A
57/*
58 * We use the NetBSD based clist system, it is much more efficient than the
59 * old style clist stuff used by free bsd.
60 */
61
62#include <sys/param.h>
63#include <sys/systm.h>
1c79356b
A
64#include <sys/ioctl.h>
65#include <sys/tty.h>
66#include <sys/malloc.h>
67
1c79356b
A
68
69/*
70 * At compile time, choose:
71 * There are two ways the TTY_QUOTE bit can be stored. If QBITS is
72 * defined we allocate an array of bits -- 1/8th as much memory but
73 * setbit(), clrbit(), and isset() take more cpu. If QBITS is
74 * undefined, we just use an array of bytes.
75 *
76 * If TTY_QUOTE functionality isn't required by a line discipline,
77 * it can free c_cq and set it to NULL. This speeds things up,
78 * and also does not use any extra memory. This is useful for (say)
79 * a SLIP line discipline that wants a 32K ring buffer for data
80 * but doesn't need quoting.
81 */
82#define QBITS
83
84#ifdef QBITS
85#define QMEM(n) ((((n)-1)/NBBY)+1)
86#else
87#define QMEM(n) (n)
88#endif
89
90
91/*
92 * Initialize clists.
93 */
94void
91447636 95cinit(void)
1c79356b
A
96{
97}
98
99/*
100 * Initialize a particular clist. Ok, they are really ring buffers,
101 * of the specified length, with/without quoting support.
102 */
103int
2d21ac55 104clalloc(struct clist *clp, int size, int quot)
1c79356b 105{
0b4e3aa0 106 MALLOC_ZONE(clp->c_cs, u_char *, size, M_TTYS, M_WAITOK);
1c79356b
A
107 if (!clp->c_cs)
108 return (-1);
109 bzero(clp->c_cs, size);
110
111 if(quot) {
0b4e3aa0 112 MALLOC_ZONE(clp->c_cq, u_char *, QMEM(size), M_TTYS, M_WAITOK);
1c79356b 113 if (!clp->c_cq) {
0b4e3aa0 114 FREE_ZONE(clp->c_cs, size, M_TTYS);
1c79356b
A
115 return (-1);
116 }
117 bzero(clp->c_cs, QMEM(size));
118 } else
119 clp->c_cq = (u_char *)0;
120
121 clp->c_cf = clp->c_cl = (u_char *)0;
122 clp->c_ce = clp->c_cs + size;
123 clp->c_cn = size;
124 clp->c_cc = 0;
125 return (0);
126}
127
128void
2d21ac55 129clfree(struct clist *clp)
1c79356b
A
130{
131 if(clp->c_cs)
0b4e3aa0 132 FREE_ZONE(clp->c_cs, clp->c_cn, M_TTYS);
1c79356b 133 if(clp->c_cq)
0b4e3aa0 134 FREE_ZONE(clp->c_cq, QMEM(clp->c_cn), M_TTYS);
1c79356b
A
135 clp->c_cs = clp->c_cq = (u_char *)0;
136}
137
138
139/*
140 * Get a character from a clist.
141 */
142int
2d21ac55 143getc(struct clist *clp)
1c79356b 144{
2d21ac55 145 int c = -1;
1c79356b 146
1c79356b
A
147 if (clp->c_cc == 0)
148 goto out;
149
150 c = *clp->c_cf & 0xff;
151 if (clp->c_cq) {
152#ifdef QBITS
153 if (isset(clp->c_cq, clp->c_cf - clp->c_cs) )
154 c |= TTY_QUOTE;
155#else
156 if (*(clp->c_cf - clp->c_cs + clp->c_cq))
157 c |= TTY_QUOTE;
158#endif
159 }
160 if (++clp->c_cf == clp->c_ce)
161 clp->c_cf = clp->c_cs;
162 if (--clp->c_cc == 0)
163 clp->c_cf = clp->c_cl = (u_char *)0;
164out:
1c79356b
A
165 return c;
166}
167
168/*
169 * Copy clist to buffer.
170 * Return number of bytes moved.
171 */
172int
2d21ac55 173q_to_b(struct clist *clp, u_char *cp, int count)
1c79356b 174{
2d21ac55 175 int cc;
1c79356b 176 u_char *p = cp;
1c79356b 177
1c79356b
A
178 /* optimize this while loop */
179 while (count > 0 && clp->c_cc > 0) {
180 cc = clp->c_cl - clp->c_cf;
181 if (clp->c_cf >= clp->c_cl)
182 cc = clp->c_ce - clp->c_cf;
183 if (cc > count)
184 cc = count;
185 bcopy(clp->c_cf, p, cc);
186 count -= cc;
187 p += cc;
188 clp->c_cc -= cc;
189 clp->c_cf += cc;
190 if (clp->c_cf == clp->c_ce)
191 clp->c_cf = clp->c_cs;
192 }
193 if (clp->c_cc == 0)
194 clp->c_cf = clp->c_cl = (u_char *)0;
1c79356b
A
195 return p - cp;
196}
197
198/*
199 * Return count of contiguous characters in clist.
200 * Stop counting if flag&character is non-null.
201 */
202int
2d21ac55 203ndqb(struct clist *clp, int flag)
1c79356b
A
204{
205 int count = 0;
206 register int i;
207 register int cc;
1c79356b 208
1c79356b
A
209 if ((cc = clp->c_cc) == 0)
210 goto out;
211
212 if (flag == 0) {
213 count = clp->c_cl - clp->c_cf;
214 if (count <= 0)
215 count = clp->c_ce - clp->c_cf;
216 goto out;
217 }
218
219 i = clp->c_cf - clp->c_cs;
220 if (flag & TTY_QUOTE) {
221 while (cc-- > 0 && !(clp->c_cs[i++] & (flag & ~TTY_QUOTE) ||
222 isset(clp->c_cq, i))) {
223 count++;
224 if (i == clp->c_cn)
225 break;
226 }
227 } else {
228 while (cc-- > 0 && !(clp->c_cs[i++] & flag)) {
229 count++;
230 if (i == clp->c_cn)
231 break;
232 }
233 }
234out:
1c79356b
A
235 return count;
236}
237
238/*
239 * Flush count bytes from clist.
240 */
241void
2d21ac55 242ndflush(struct clist *clp, int count)
1c79356b 243{
2d21ac55 244 int cc;
1c79356b 245
1c79356b
A
246 if (count == clp->c_cc) {
247 clp->c_cc = 0;
248 clp->c_cf = clp->c_cl = (u_char *)0;
2d21ac55 249 return;
1c79356b
A
250 }
251 /* optimize this while loop */
252 while (count > 0 && clp->c_cc > 0) {
253 cc = clp->c_cl - clp->c_cf;
254 if (clp->c_cf >= clp->c_cl)
255 cc = clp->c_ce - clp->c_cf;
256 if (cc > count)
257 cc = count;
258 count -= cc;
259 clp->c_cc -= cc;
260 clp->c_cf += cc;
261 if (clp->c_cf == clp->c_ce)
262 clp->c_cf = clp->c_cs;
263 }
264 if (clp->c_cc == 0)
265 clp->c_cf = clp->c_cl = (u_char *)0;
1c79356b
A
266}
267
268/*
269 * Put a character into the output queue.
270 */
271int
2d21ac55 272putc(int c, struct clist *clp)
1c79356b
A
273{
274 register int i;
1c79356b 275
1c79356b
A
276 if (clp->c_cc == 0) {
277 if (!clp->c_cs) {
278#if DIAGNOSTIC
279 //printf("putc: required clalloc\n");
280#endif
281 if(clalloc(clp, 1024, 1)) {
282out:
1c79356b
A
283 return -1;
284 }
285 }
286 clp->c_cf = clp->c_cl = clp->c_cs;
287 }
288
289 if (clp->c_cc == clp->c_cn)
290 goto out;
291
292 *clp->c_cl = c & 0xff;
293 i = clp->c_cl - clp->c_cs;
294 if (clp->c_cq) {
295#ifdef QBITS
296 if (c & TTY_QUOTE)
297 setbit(clp->c_cq, i);
298 else
299 clrbit(clp->c_cq, i);
300#else
301 q = clp->c_cq + i;
302 *q = (c & TTY_QUOTE) ? 1 : 0;
303#endif
304 }
305 clp->c_cc++;
306 clp->c_cl++;
307 if (clp->c_cl == clp->c_ce)
308 clp->c_cl = clp->c_cs;
1c79356b
A
309 return 0;
310}
311
312#ifdef QBITS
313/*
314 * optimized version of
315 *
316 * for (i = 0; i < len; i++)
317 * clrbit(cp, off + len);
318 */
319void
91447636 320clrbits(u_char *cp, int off, int len)
1c79356b
A
321{
322 int sby, sbi, eby, ebi;
323 register int i;
324 u_char mask;
325
326 if(len==1) {
327 clrbit(cp, off);
328 return;
329 }
330
331 sby = off / NBBY;
332 sbi = off % NBBY;
333 eby = (off+len) / NBBY;
334 ebi = (off+len) % NBBY;
335 if (sby == eby) {
336 mask = ((1 << (ebi - sbi)) - 1) << sbi;
337 cp[sby] &= ~mask;
338 } else {
339 mask = (1<<sbi) - 1;
340 cp[sby++] &= mask;
341
342 mask = (1<<ebi) - 1;
343 cp[eby] &= ~mask;
344
345 for (i = sby; i < eby; i++)
346 cp[i] = 0x00;
347 }
348}
349#endif
350
351/*
352 * Copy buffer to clist.
353 * Return number of bytes not transfered.
354 */
355int
91447636 356b_to_q(const u_char *cp, int count, struct clist *clp)
1c79356b 357{
91447636
A
358 int cc;
359 const u_char *p = cp;
1c79356b
A
360
361 if (count <= 0)
362 return 0;
363
1c79356b
A
364
365 if (clp->c_cc == 0) {
366 if (!clp->c_cs) {
367#if DIAGNOSTIC
368 printf("b_to_q: required clalloc\n");
369#endif
370 if(clalloc(clp, 1024, 1))
371 goto out;
372 }
373 clp->c_cf = clp->c_cl = clp->c_cs;
374 }
375
376 if (clp->c_cc == clp->c_cn)
377 goto out;
378
379 /* optimize this while loop */
380 while (count > 0 && clp->c_cc < clp->c_cn) {
381 cc = clp->c_ce - clp->c_cl;
382 if (clp->c_cf > clp->c_cl)
383 cc = clp->c_cf - clp->c_cl;
384 if (cc > count)
385 cc = count;
386 bcopy(p, clp->c_cl, cc);
387 if (clp->c_cq) {
388#ifdef QBITS
389 clrbits(clp->c_cq, clp->c_cl - clp->c_cs, cc);
390#else
391 bzero(clp->c_cl - clp->c_cs + clp->c_cq, cc);
392#endif
393 }
394 p += cc;
395 count -= cc;
396 clp->c_cc += cc;
397 clp->c_cl += cc;
398 if (clp->c_cl == clp->c_ce)
399 clp->c_cl = clp->c_cs;
400 }
401out:
1c79356b
A
402 return count;
403}
404
405static int cc;
406
407/*
408 * Given a non-NULL pointer into the clist return the pointer
409 * to the next character in the list or return NULL if no more chars.
410 *
411 * Callers must not allow getc's to happen between firstc's and getc's
412 * so that the pointer becomes invalid. Note that interrupts are NOT
413 * masked.
414 */
415u_char *
2d21ac55 416nextc(struct clist *clp, u_char *cp, int *c)
1c79356b 417{
1c79356b
A
418 if (clp->c_cf == cp) {
419 /*
420 * First time initialization.
421 */
422 cc = clp->c_cc;
423 }
424 if (cc == 0 || cp == NULL)
425 return NULL;
426 if (--cc == 0)
427 return NULL;
428 if (++cp == clp->c_ce)
429 cp = clp->c_cs;
430 *c = *cp & 0xff;
431 if (clp->c_cq) {
432#ifdef QBITS
433 if (isset(clp->c_cq, cp - clp->c_cs))
434 *c |= TTY_QUOTE;
435#else
436 if (*(clp->c_cf - clp->c_cs + clp->c_cq))
437 *c |= TTY_QUOTE;
438#endif
439 }
440 return cp;
441}
442
443/*
444 * Given a non-NULL pointer into the clist return the pointer
445 * to the first character in the list or return NULL if no more chars.
446 *
447 * Callers must not allow getc's to happen between firstc's and getc's
448 * so that the pointer becomes invalid. Note that interrupts are NOT
449 * masked.
450 *
451 * *c is set to the NEXT character
452 */
453u_char *
2d21ac55 454firstc(struct clist *clp, int *c)
1c79356b 455{
2d21ac55 456 u_char *cp;
1c79356b
A
457
458 cc = clp->c_cc;
459 if (cc == 0)
460 return NULL;
461 cp = clp->c_cf;
462 *c = *cp & 0xff;
463 if(clp->c_cq) {
464#ifdef QBITS
465 if (isset(clp->c_cq, cp - clp->c_cs))
466 *c |= TTY_QUOTE;
467#else
468 if (*(cp - clp->c_cs + clp->c_cq))
469 *c |= TTY_QUOTE;
470#endif
471 }
472 return clp->c_cf;
473}
474
475/*
476 * Remove the last character in the clist and return it.
477 */
478int
2d21ac55 479unputc(struct clist *clp)
1c79356b
A
480{
481 unsigned int c = -1;
1c79356b 482
1c79356b
A
483 if (clp->c_cc == 0)
484 goto out;
485
486 if (clp->c_cl == clp->c_cs)
487 clp->c_cl = clp->c_ce - 1;
488 else
489 --clp->c_cl;
490 clp->c_cc--;
491
492 c = *clp->c_cl & 0xff;
493 if (clp->c_cq) {
494#ifdef QBITS
495 if (isset(clp->c_cq, clp->c_cl - clp->c_cs))
496 c |= TTY_QUOTE;
497#else
498 if (*(clp->c_cf - clp->c_cs + clp->c_cq))
499 c |= TTY_QUOTE;
500#endif
501 }
502 if (clp->c_cc == 0)
503 clp->c_cf = clp->c_cl = (u_char *)0;
504out:
1c79356b
A
505 return c;
506}
507
508/*
509 * Put the chars in the from queue on the end of the to queue.
510 */
511void
2d21ac55 512catq(struct clist *from, struct clist *to)
1c79356b
A
513{
514 int c;
515
516 while ((c = getc(from)) != -1)
517 putc(c, to);
518}