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

« back to all changes in this revision

Viewing changes to unix/xc/programs/Xserver/hw/xfree86/common/xf86Globals.c

  • 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
/* $XFree86: xc/programs/Xserver/hw/xfree86/common/xf86Globals.c,v 1.40 2003/02/20 04:05:14 dawes Exp $ */
 
2
 
 
3
/*
 
4
 * Copyright (c) 1997 by The XFree86 Project, Inc.
 
5
 */
 
6
 
 
7
/*
 
8
 * This file contains all the XFree86 global variables.
 
9
 */
 
10
 
 
11
#include "X.h"
 
12
#include "os.h"
 
13
#include "windowstr.h"
 
14
#include "propertyst.h"
 
15
#include "xf86.h"
 
16
#include "xf86Priv.h"
 
17
#include "xf86Parser.h"
 
18
#include "xf86Xinput.h"
 
19
#include "xf86InPriv.h"
 
20
 
 
21
/* Globals that video drivers may access */
 
22
 
 
23
int xf86ScreenIndex = -1;       /* Index of ScrnInfo in pScreen.devPrivates */
 
24
int xf86CreateRootWindowIndex = -1;     /* Index into pScreen.devPrivates */
 
25
ScrnInfoPtr *xf86Screens = NULL;        /* List of ScrnInfos */
 
26
int xf86PixmapIndex = 0;
 
27
const unsigned char byte_reversed[256] =
 
28
{
 
29
    0x00, 0x80, 0x40, 0xc0, 0x20, 0xa0, 0x60, 0xe0,
 
30
    0x10, 0x90, 0x50, 0xd0, 0x30, 0xb0, 0x70, 0xf0,
 
31
    0x08, 0x88, 0x48, 0xc8, 0x28, 0xa8, 0x68, 0xe8,
 
32
    0x18, 0x98, 0x58, 0xd8, 0x38, 0xb8, 0x78, 0xf8,
 
33
    0x04, 0x84, 0x44, 0xc4, 0x24, 0xa4, 0x64, 0xe4,
 
34
    0x14, 0x94, 0x54, 0xd4, 0x34, 0xb4, 0x74, 0xf4,
 
35
    0x0c, 0x8c, 0x4c, 0xcc, 0x2c, 0xac, 0x6c, 0xec,
 
36
    0x1c, 0x9c, 0x5c, 0xdc, 0x3c, 0xbc, 0x7c, 0xfc,
 
37
    0x02, 0x82, 0x42, 0xc2, 0x22, 0xa2, 0x62, 0xe2,
 
38
    0x12, 0x92, 0x52, 0xd2, 0x32, 0xb2, 0x72, 0xf2,
 
39
    0x0a, 0x8a, 0x4a, 0xca, 0x2a, 0xaa, 0x6a, 0xea,
 
40
    0x1a, 0x9a, 0x5a, 0xda, 0x3a, 0xba, 0x7a, 0xfa,
 
41
    0x06, 0x86, 0x46, 0xc6, 0x26, 0xa6, 0x66, 0xe6,
 
42
    0x16, 0x96, 0x56, 0xd6, 0x36, 0xb6, 0x76, 0xf6,
 
43
    0x0e, 0x8e, 0x4e, 0xce, 0x2e, 0xae, 0x6e, 0xee,
 
44
    0x1e, 0x9e, 0x5e, 0xde, 0x3e, 0xbe, 0x7e, 0xfe,
 
45
    0x01, 0x81, 0x41, 0xc1, 0x21, 0xa1, 0x61, 0xe1,
 
46
    0x11, 0x91, 0x51, 0xd1, 0x31, 0xb1, 0x71, 0xf1,
 
47
    0x09, 0x89, 0x49, 0xc9, 0x29, 0xa9, 0x69, 0xe9,
 
48
    0x19, 0x99, 0x59, 0xd9, 0x39, 0xb9, 0x79, 0xf9,
 
49
    0x05, 0x85, 0x45, 0xc5, 0x25, 0xa5, 0x65, 0xe5,
 
50
    0x15, 0x95, 0x55, 0xd5, 0x35, 0xb5, 0x75, 0xf5,
 
51
    0x0d, 0x8d, 0x4d, 0xcd, 0x2d, 0xad, 0x6d, 0xed,
 
52
    0x1d, 0x9d, 0x5d, 0xdd, 0x3d, 0xbd, 0x7d, 0xfd,
 
53
    0x03, 0x83, 0x43, 0xc3, 0x23, 0xa3, 0x63, 0xe3,
 
54
    0x13, 0x93, 0x53, 0xd3, 0x33, 0xb3, 0x73, 0xf3,
 
55
    0x0b, 0x8b, 0x4b, 0xcb, 0x2b, 0xab, 0x6b, 0xeb,
 
56
    0x1b, 0x9b, 0x5b, 0xdb, 0x3b, 0xbb, 0x7b, 0xfb,
 
57
    0x07, 0x87, 0x47, 0xc7, 0x27, 0xa7, 0x67, 0xe7,
 
58
    0x17, 0x97, 0x57, 0xd7, 0x37, 0xb7, 0x77, 0xf7,
 
59
    0x0f, 0x8f, 0x4f, 0xcf, 0x2f, 0xaf, 0x6f, 0xef,
 
60
    0x1f, 0x9f, 0x5f, 0xdf, 0x3f, 0xbf, 0x7f, 0xff,
 
61
};
 
62
 
 
63
/* Globals that input drivers may access */
 
64
InputInfoPtr xf86InputDevs = NULL;
 
65
 
 
66
 
 
67
/* Globals that video drivers may not access */
 
68
 
 
69
xf86InfoRec xf86Info = {
 
70
        NULL,           /* pKeyboard */
 
71
        NULL,           /* kbdProc */
 
72
        NULL,           /* kbdEvents */
 
73
        -1,             /* consoleFd */
 
74
        -1,             /* kbdFd */
 
75
        -1,             /* vtno */
 
76
        -1,             /* kbdType */
 
77
        -1,             /* kbdRate */
 
78
        -1,             /* kbdDelay */
 
79
        -1,             /* bell_pitch */
 
80
        -1,             /* bell_duration */
 
81
        TRUE,           /* autoRepeat */
 
82
        0,              /* leds */
 
83
        0,              /* xleds */
 
84
        NULL,           /* vtinit */
 
85
        0,              /* scanPrefix */
 
86
        FALSE,          /* capsLock */
 
87
        FALSE,          /* numLock */
 
88
        FALSE,          /* scrollLock */
 
89
        FALSE,          /* modeSwitchLock */
 
90
        FALSE,          /* composeLock */
 
91
        FALSE,          /* vtSysreq */
 
92
        SKWhenNeeded,   /* ddxSpecialKeys */
 
93
        FALSE,          /* ActionKeyBindingsSet */
 
94
#if defined(SVR4) && defined(i386)
 
95
        FALSE,          /* panix106 */
 
96
#endif
 
97
#if defined(__OpenBSD__) || defined(__NetBSD__)
 
98
        0,              /* wskbdType */
 
99
#endif
 
100
        NULL,           /* pMouse */
 
101
#ifdef XINPUT
 
102
        NULL,           /* mouseLocal */
 
103
#endif
 
104
        -1,             /* lastEventTime */
 
105
        FALSE,          /* vtRequestsPending */
 
106
        FALSE,          /* inputPending */
 
107
        FALSE,          /* dontVTSwitch */
 
108
        FALSE,          /* dontZap */
 
109
        FALSE,          /* dontZoom */
 
110
        FALSE,          /* notrapSignals */
 
111
        FALSE,          /* caughtSignal */
 
112
        FALSE,          /* sharedMonitor */
 
113
        NULL,           /* currentScreen */
 
114
#ifdef CSRG_BASED
 
115
        -1,             /* screenFd */
 
116
        -1,             /* consType */
 
117
#endif
 
118
#ifdef XKB
 
119
        NULL,           /* xkbkeymap */
 
120
        NULL,           /* xkbkeycodes */
 
121
        NULL,           /* xkbtypes */
 
122
        NULL,           /* xkbcompat */
 
123
        NULL,           /* xkbsymbols */
 
124
        NULL,           /* xkbgeometry */
 
125
        FALSE,          /* xkbcomponents_specified */
 
126
        NULL,           /* xkbrules */
 
127
        NULL,           /* xkbmodel */
 
128
        NULL,           /* xkblayout */
 
129
        NULL,           /* xkbvariant */
 
130
        NULL,           /* xkboptions */
 
131
#endif
 
132
        FALSE,          /* allowMouseOpenFail */
 
133
        TRUE,           /* vidModeEnabled */
 
134
        FALSE,          /* vidModeAllowNonLocal */
 
135
        TRUE,           /* miscModInDevEnabled */
 
136
        FALSE,          /* miscModInDevAllowNonLocal */
 
137
        PCIProbe1,      /* pciFlags */
 
138
        Pix24DontCare,  /* pixmap24 */
 
139
        X_DEFAULT,      /* pix24From */
 
140
#if defined(i386) || defined(__i386__)
 
141
        FALSE,          /* pc98 */
 
142
#endif
 
143
        TRUE,           /* pmFlag */
 
144
        LogNone,        /* syncLog */
 
145
        0,              /* estimateSizesAggressively */
 
146
        FALSE,          /* kbdCustomKeycodes */
 
147
        FALSE,          /* disableRandR */
 
148
        X_DEFAULT       /* randRFrom */
 
149
};
 
150
const char *xf86ConfigFile = NULL;
 
151
const char *xf86InputDeviceList = NULL;
 
152
const char *xf86ModulePath = DEFAULT_MODULE_PATH;
 
153
MessageType xf86ModPathFrom = X_DEFAULT;
 
154
const char *xf86LogFile = DEFAULT_LOGPREFIX;
 
155
MessageType xf86LogFileFrom = X_DEFAULT;
 
156
Bool xf86LogFileWasOpened = FALSE;
 
157
serverLayoutRec xf86ConfigLayout = {NULL, };
 
158
confDRIRec xf86ConfigDRI = {0, };
 
159
XF86ConfigPtr xf86configptr = NULL;
 
160
Bool xf86Resetting = FALSE;
 
161
Bool xf86Initialising = FALSE;
 
162
Bool xf86ProbeFailed = FALSE;
 
163
Bool xf86DoProbe = FALSE;
 
164
Bool xf86DoConfigure = FALSE;
 
165
#ifdef XFree86LOADER
 
166
DriverPtr *xf86DriverList = NULL;
 
167
int xf86NumDrivers = 0;
 
168
InputDriverPtr *xf86InputDriverList = NULL;
 
169
int xf86NumInputDrivers = 0;
 
170
ModuleInfoPtr *xf86ModuleInfoList = NULL;
 
171
int xf86NumModuleInfos = 0;
 
172
#endif
 
173
int xf86NumScreens = 0;
 
174
 
 
175
const char *xf86VisualNames[] = {
 
176
        "StaticGray",
 
177
        "GrayScale",
 
178
        "StaticColor",
 
179
        "PseudoColor",
 
180
        "TrueColor",
 
181
        "DirectColor"
 
182
};
 
183
 
 
184
/* Parameters set only from the command line */
 
185
char *xf86ServerName = "no-name";
 
186
Bool xf86fpFlag = FALSE;
 
187
Bool xf86coFlag = FALSE;
 
188
Bool xf86sFlag = FALSE;
 
189
Bool xf86bsEnableFlag = FALSE;
 
190
Bool xf86bsDisableFlag = FALSE;
 
191
Bool xf86silkenMouseDisableFlag = FALSE;
 
192
char *xf86LayoutName = NULL;
 
193
char *xf86ScreenName = NULL;
 
194
char *xf86PointerName = NULL;
 
195
char *xf86KeyboardName = NULL;
 
196
Bool xf86ProbeOnly = FALSE;
 
197
int xf86Verbose = DEFAULT_VERBOSE;
 
198
int xf86LogVerbose = DEFAULT_LOG_VERBOSE;
 
199
int xf86FbBpp = -1;
 
200
Pix24Flags xf86Pix24 = Pix24DontCare;
 
201
int xf86Depth = -1;
 
202
rgb xf86Weight = {0, 0, 0};
 
203
Bool xf86FlipPixels = FALSE;
 
204
Gamma xf86Gamma = {0.0, 0.0, 0.0};
 
205
Bool xf86ShowUnresolved = DEFAULT_UNRESOLVED;
 
206
Bool xf86BestRefresh = DEFAULT_BEST_REFRESH;
 
207
Bool xf86AllowMouseOpenFail = FALSE;
 
208
#ifdef XF86VIDMODE
 
209
Bool xf86VidModeDisabled = FALSE;
 
210
Bool xf86VidModeAllowNonLocal = FALSE;
 
211
#endif
 
212
#ifdef XF86MISC
 
213
Bool xf86MiscModInDevDisabled = FALSE;
 
214
Bool xf86MiscModInDevAllowNonLocal = FALSE;
 
215
#endif
 
216
PropertyPtr *xf86RegisteredPropertiesTable = NULL;
 
217
Bool xf86inSuspend = FALSE;
 
218
 
 
219
#ifdef DLOPEN_HACK
 
220
/*
 
221
 * This stuff is a hack to allow dlopen() modules to work.  It is intended
 
222
 * only to be used when using dlopen() modules for debugging purposes.
 
223
 */
 
224
#endif