~ubuntu-branches/ubuntu/gutsy/vnc4/gutsy

« back to all changes in this revision

Viewing changes to unix/xc/programs/Xserver/hw/sunLynx/btreg.h

  • Committer: Bazaar Package Importer
  • Author(s): Ola Lundqvist
  • Date: 2006-05-15 20:35:17 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060515203517-l4lre1ku942mn26k
Tags: 4.1.1+X4.3.0-10
* Correction of critical security issue. Thanks to Martin Kogler
  <e9925248@student.tuwien.ac.at> that informed me about the issue,
  and provided the patch.
  This flaw was originally found by Steve Wiseman of intelliadmin.com.
* Applied patch from Javier Kohen <jkohen@users.sourceforge.net> that
  inform the user that only 8 first characters of the password will
  actually be used when typing more than 8 characters, closes:
  #355619.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Xorg: btreg.h,v 1.3 2000/08/17 19:48:36 cpqbld Exp $ */
 
2
/*
 
3
 * Copyright (c) 1993
 
4
 *      The Regents of the University of California.  All rights reserved.
 
5
 *
 
6
 * This software was developed by the Computer Systems Engineering group
 
7
 * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
 
8
 * contributed to Berkeley.
 
9
 *
 
10
 * All advertising materials mentioning features or use of this software
 
11
 * must display the following acknowledgement:
 
12
 *      This product includes software developed by the University of
 
13
 *      California, Lawrence Berkeley Laboratory.
 
14
 *
 
15
 * Redistribution and use in source and binary forms, with or without
 
16
 * modification, are permitted provided that the following conditions
 
17
 * are met:
 
18
 * 1. Redistributions of source code must retain the above copyright
 
19
 *    notice, this list of conditions and the following disclaimer.
 
20
 * 2. Redistributions in binary form must reproduce the above copyright
 
21
 *    notice, this list of conditions and the following disclaimer in the
 
22
 *    documentation and/or other materials provided with the distribution.
 
23
 * 3. All advertising materials mentioning features or use of this software
 
24
 *    must display the following acknowledgement:
 
25
 *      This product includes software developed by the University of
 
26
 *      California, Berkeley and its contributors.
 
27
 * 4. Neither the name of the University nor the names of its contributors
 
28
 *    may be used to endorse or promote products derived from this software
 
29
 *    without specific prior written permission.
 
30
 *
 
31
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 
32
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
33
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
34
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 
35
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 
36
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 
37
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 
38
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 
39
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 
40
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 
41
 * SUCH DAMAGE.
 
42
 *
 
43
 *      @(#)btreg.h     8.2 (Berkeley) 1/21/94
 
44
 */
 
45
/*      $NetBSD: btreg.h,v 1.2 1994/11/20 20:51:55 deraadt Exp $ */
 
46
/*      $XFree86: xc/programs/Xserver/hw/sunLynx/btreg.h,v 3.2 2001/01/17 22:36:52 dawes Exp $ */
 
47
 
 
48
/*
 
49
 * Several Sun color frame buffers use some kind of Brooktree video
 
50
 * DAC (e.g., the Bt458, -- in any case, Brooktree make the only
 
51
 * decent color frame buffer chips).
 
52
 *
 
53
 * Color map control on these is a bit funky in a SPARCstation.
 
54
 * To update the color map one would normally do byte writes, but
 
55
 * the hardware takes longword writes.  Since there are three
 
56
 * registers for each color map entry (R, then G, then B), we have
 
57
 * to set color 1 with a write to address 0 (setting 0's R/G/B and
 
58
 * color 1's R) followed by a second write to address 1 (setting
 
59
 * color 1's G/B and color 2's R/G).  Software must therefore keep
 
60
 * a copy of the current map.
 
61
 *
 
62
 * The colormap address register increments automatically, so the
 
63
 * above write is done as:
 
64
 *
 
65
 *      bt->bt_addr = 0;
 
66
 *      bt->bt_cmap = R0G0B0R1;
 
67
 *      bt->bt_cmap = G1B1R2G2;
 
68
 *      ...
 
69
 *
 
70
 * Yow!
 
71
 *
 
72
 * Bonus complication: on the cg6, only the top 8 bits of each 32 bit
 
73
 * register matter, even though the cg3 takes all the bits from all
 
74
 * bytes written to it.
 
75
 */
 
76
struct bt_regs {
 
77
        u_int   bt_addr;                /* map address register */
 
78
        u_int   bt_cmap;                /* colormap data register */
 
79
        u_int   bt_ctrl;                /* control register */
 
80
        u_int   bt_omap;                /* overlay (cursor) map register */
 
81
};