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

« back to all changes in this revision

Viewing changes to unix/xc/extras/Mesa/src/vtxfmt.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
 
 
2
/*
 
3
 * Mesa 3-D graphics library
 
4
 * Version:  3.5
 
5
 *
 
6
 * Copyright (C) 1999-2001  Brian Paul   All Rights Reserved.
 
7
 *
 
8
 * Permission is hereby granted, free of charge, to any person obtaining a
 
9
 * copy of this software and associated documentation files (the "Software"),
 
10
 * to deal in the Software without restriction, including without limitation
 
11
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 
12
 * and/or sell copies of the Software, and to permit persons to whom the
 
13
 * Software is furnished to do so, subject to the following conditions:
 
14
 *
 
15
 * The above copyright notice and this permission notice shall be included
 
16
 * in all copies or substantial portions of the Software.
 
17
 *
 
18
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 
19
 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
20
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 
21
 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
 
22
 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 
23
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
24
 *
 
25
 * Authors:
 
26
 *    Keith Whitwell <keithw@valinux.com>
 
27
 *    Gareth Hughes <gareth@valinux.com>
 
28
 */
 
29
 
 
30
#include "glheader.h"
 
31
#include "api_loopback.h"
 
32
#include "context.h"
 
33
#include "mtypes.h"
 
34
#include "state.h"
 
35
#include "vtxfmt.h"
 
36
 
 
37
 
 
38
/* The neutral vertex format.  This wraps all tnl module functions,
 
39
 * verifying that the currently-installed module is valid and then
 
40
 * installing the function pointers in a lazy fashion.  It records the
 
41
 * function pointers that have been swapped out, which allows a fast
 
42
 * restoration of the neutral module in almost all cases -- a typical
 
43
 * app might only require 4-6 functions to be modified from the neutral
 
44
 * baseline, and only restoring these is certainly preferable to doing
 
45
 * the entire module's 60 or so function pointers.
 
46
 */
 
47
 
 
48
#define PRE_LOOPBACK( FUNC )                                            \
 
49
{                                                                       \
 
50
   GET_CURRENT_CONTEXT(ctx);                                            \
 
51
   struct gl_tnl_module *tnl = &(ctx->TnlModule);                       \
 
52
                                                                        \
 
53
   ASSERT( tnl->Current );                                              \
 
54
   ASSERT( tnl->SwapCount < NUM_VERTEX_FORMAT_ENTRIES );                \
 
55
                                                                        \
 
56
   /* Save the swapped function's dispatch entry so it can be           \
 
57
    * restored later.                                                   \
 
58
    */                                                                  \
 
59
   tnl->Swapped[tnl->SwapCount][0] = (void *)&(ctx->Exec->FUNC);        \
 
60
   tnl->Swapped[tnl->SwapCount][1] = (void *)TAG(FUNC);                 \
 
61
   tnl->SwapCount++;                                                    \
 
62
                                                                        \
 
63
   if ( 0 )                                                             \
 
64
      fprintf( stderr, "   swapping gl" #FUNC"...\n" );                 \
 
65
                                                                        \
 
66
   /* Install the tnl function pointer.                                 \
 
67
    */                                                                  \
 
68
   ctx->Exec->FUNC = tnl->Current->FUNC;                                \
 
69
}
 
70
 
 
71
#define TAG(x) neutral_##x
 
72
#include "vtxfmt_tmp.h"
 
73
 
 
74
 
 
75
 
 
76
static void install_vtxfmt( struct _glapi_table *tab, GLvertexformat *vfmt )
 
77
{
 
78
   tab->ArrayElement = vfmt->ArrayElement;
 
79
   tab->Color3f = vfmt->Color3f;
 
80
   tab->Color3fv = vfmt->Color3fv;
 
81
   tab->Color3ub = vfmt->Color3ub;
 
82
   tab->Color3ubv = vfmt->Color3ubv;
 
83
   tab->Color4f = vfmt->Color4f;
 
84
   tab->Color4fv = vfmt->Color4fv;
 
85
   tab->Color4ub = vfmt->Color4ub;
 
86
   tab->Color4ubv = vfmt->Color4ubv;
 
87
   tab->EdgeFlag = vfmt->EdgeFlag;
 
88
   tab->EdgeFlagv = vfmt->EdgeFlagv;
 
89
   tab->EvalCoord1f = vfmt->EvalCoord1f;
 
90
   tab->EvalCoord1fv = vfmt->EvalCoord1fv;
 
91
   tab->EvalCoord2f = vfmt->EvalCoord2f;
 
92
   tab->EvalCoord2fv = vfmt->EvalCoord2fv;
 
93
   tab->EvalPoint1 = vfmt->EvalPoint1;
 
94
   tab->EvalPoint2 = vfmt->EvalPoint2;
 
95
   tab->FogCoordfEXT = vfmt->FogCoordfEXT;
 
96
   tab->FogCoordfvEXT = vfmt->FogCoordfvEXT;
 
97
   tab->Indexi = vfmt->Indexi;
 
98
   tab->Indexiv = vfmt->Indexiv;
 
99
   tab->Materialfv = vfmt->Materialfv;
 
100
   tab->MultiTexCoord1fARB = vfmt->MultiTexCoord1fARB;
 
101
   tab->MultiTexCoord1fvARB = vfmt->MultiTexCoord1fvARB;
 
102
   tab->MultiTexCoord2fARB = vfmt->MultiTexCoord2fARB;
 
103
   tab->MultiTexCoord2fvARB = vfmt->MultiTexCoord2fvARB;
 
104
   tab->MultiTexCoord3fARB = vfmt->MultiTexCoord3fARB;
 
105
   tab->MultiTexCoord3fvARB = vfmt->MultiTexCoord3fvARB;
 
106
   tab->MultiTexCoord4fARB = vfmt->MultiTexCoord4fARB;
 
107
   tab->MultiTexCoord4fvARB = vfmt->MultiTexCoord4fvARB;
 
108
   tab->Normal3f = vfmt->Normal3f;
 
109
   tab->Normal3fv = vfmt->Normal3fv;
 
110
   tab->SecondaryColor3fEXT = vfmt->SecondaryColor3fEXT;
 
111
   tab->SecondaryColor3fvEXT = vfmt->SecondaryColor3fvEXT;
 
112
   tab->SecondaryColor3ubEXT = vfmt->SecondaryColor3ubEXT;
 
113
   tab->SecondaryColor3ubvEXT = vfmt->SecondaryColor3ubvEXT;
 
114
   tab->TexCoord1f = vfmt->TexCoord1f;
 
115
   tab->TexCoord1fv = vfmt->TexCoord1fv;
 
116
   tab->TexCoord2f = vfmt->TexCoord2f;
 
117
   tab->TexCoord2fv = vfmt->TexCoord2fv;
 
118
   tab->TexCoord3f = vfmt->TexCoord3f;
 
119
   tab->TexCoord3fv = vfmt->TexCoord3fv;
 
120
   tab->TexCoord4f = vfmt->TexCoord4f;
 
121
   tab->TexCoord4fv = vfmt->TexCoord4fv;
 
122
   tab->Vertex2f = vfmt->Vertex2f;
 
123
   tab->Vertex2fv = vfmt->Vertex2fv;
 
124
   tab->Vertex3f = vfmt->Vertex3f;
 
125
   tab->Vertex3fv = vfmt->Vertex3fv;
 
126
   tab->Vertex4f = vfmt->Vertex4f;
 
127
   tab->Vertex4fv = vfmt->Vertex4fv;
 
128
   tab->Begin = vfmt->Begin;
 
129
   tab->End = vfmt->End;
 
130
 
 
131
/*     tab->NewList = vfmt->NewList; */
 
132
   tab->CallList = vfmt->CallList;
 
133
 
 
134
   tab->Rectf = vfmt->Rectf;
 
135
   tab->DrawArrays = vfmt->DrawArrays;
 
136
   tab->DrawElements = vfmt->DrawElements;
 
137
   tab->DrawRangeElements = vfmt->DrawRangeElements;
 
138
   tab->EvalMesh1 = vfmt->EvalMesh1;
 
139
   tab->EvalMesh2 = vfmt->EvalMesh2;
 
140
}
 
141
 
 
142
 
 
143
void _mesa_init_exec_vtxfmt( GLcontext *ctx )
 
144
{
 
145
   install_vtxfmt( ctx->Exec, &neutral_vtxfmt );
 
146
   ctx->TnlModule.SwapCount = 0;
 
147
}
 
148
 
 
149
 
 
150
void _mesa_install_exec_vtxfmt( GLcontext *ctx, GLvertexformat *vfmt )
 
151
{
 
152
   ctx->TnlModule.Current = vfmt;
 
153
   _mesa_restore_exec_vtxfmt( ctx );
 
154
   if ( ctx->ExecPrefersFloat != vfmt->prefer_float_colors )
 
155
      _mesa_loopback_prefer_float( ctx->Exec, vfmt->prefer_float_colors );
 
156
}
 
157
 
 
158
void _mesa_install_save_vtxfmt( GLcontext *ctx, GLvertexformat *vfmt )
 
159
{
 
160
   install_vtxfmt( ctx->Save, vfmt );
 
161
   if ( ctx->SavePrefersFloat != vfmt->prefer_float_colors )
 
162
      _mesa_loopback_prefer_float( ctx->Save, vfmt->prefer_float_colors );
 
163
}
 
164
 
 
165
 
 
166
void _mesa_restore_exec_vtxfmt( GLcontext *ctx )
 
167
{
 
168
   struct gl_tnl_module *tnl = &(ctx->TnlModule);
 
169
   GLuint i;
 
170
 
 
171
   /* Restore the neutral tnl module wrapper.
 
172
    */
 
173
   for ( i = 0 ; i < tnl->SwapCount ; i++ ) {
 
174
      *(void **)tnl->Swapped[i][0] = tnl->Swapped[i][1];
 
175
   }
 
176
 
 
177
   tnl->SwapCount = 0;
 
178
}