mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 16:44:52 +00:00
In Xinerama/Panoramix configuration there's one screen that's having special meaning - it's used for simulating as the frontend for all client operations: the clients (should) only talk to that screen, while panoramix subsystem is proxying those operations to all the other screens (with certain changed applied, eg. coordinate transformations). Historically, this screen happens to be the first one in the system (some of it's proc's are hooked up in order to achieve desired behaviour). That's why it used to be accessed via screenInfo.screens[0] - that already had been encapsulated into a tiny helper `dixGetFirstScreen()`. a) the correct terminus technicus for a situation where one device (or SW entity) entirely controlling others is a master-slave-relationship: the controlling device/entity is `master`, the controlled ones are `slave` (to that specific master). b) the term "first screen" is inacurate and misleading here: what the caller's are actually interest in isn't the first entry in the screen array, but the screen that's controlling the others. With upcoming refactoring of the Xinerama/Panoramix subsystem, this might well be a different array index than 0. c) the term `default` also wouldn't match: `default` implies there's a real practical choice, and such value applies when no explicit choice has been made. But in this case, it practically doesn't make sense (except perhaps for debugging purpose) for a client to use any different screen. Therefore fixing the function name to the correct technical terminology. (for sake of patch readability, renaming corresponding variables is left to subsequent patches). Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
926 lines
27 KiB
C
926 lines
27 KiB
C
/*
|
|
* Copyright (c) 2006, Oracle and/or its affiliates.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
* to deal in the Software without restriction, including without limitation
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice (including the next
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
* Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
* DEALINGS IN THE SOFTWARE.
|
|
*
|
|
* Copyright © 2003 Keith Packard
|
|
*
|
|
* Permission to use, copy, modify, distribute, and sell this software and its
|
|
* documentation for any purpose is hereby granted without fee, provided that
|
|
* the above copyright notice appear in all copies and that both that
|
|
* copyright notice and this permission notice appear in supporting
|
|
* documentation, and that the name of Keith Packard not be used in
|
|
* advertising or publicity pertaining to distribution of the software without
|
|
* specific, written prior permission. Keith Packard makes no
|
|
* representations about the suitability of this software for any purpose. It
|
|
* is provided "as is" without express or implied warranty.
|
|
*
|
|
* KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
|
* EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
|
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
|
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
|
|
#include <dix-config.h>
|
|
|
|
#include "dix/dix_priv.h"
|
|
#include "dix/screenint_priv.h"
|
|
#include "miext/extinit_priv.h"
|
|
#include "Xext/panoramiXsrv.h"
|
|
|
|
#include "compint.h"
|
|
#include "xace.h"
|
|
#include "protocol-versions.h"
|
|
|
|
static CARD8 CompositeReqCode;
|
|
static DevPrivateKeyRec CompositeClientPrivateKeyRec;
|
|
|
|
static int compositeUseXinerama = 0;
|
|
|
|
#define CompositeClientPrivateKey (&CompositeClientPrivateKeyRec)
|
|
RESTYPE CompositeClientWindowType;
|
|
RESTYPE CompositeClientSubwindowsType;
|
|
RESTYPE CompositeClientOverlayType;
|
|
|
|
typedef struct _CompositeClient {
|
|
int major_version;
|
|
int minor_version;
|
|
} CompositeClientRec, *CompositeClientPtr;
|
|
|
|
#define GetCompositeClient(pClient) ((CompositeClientPtr) \
|
|
dixLookupPrivate(&(pClient)->devPrivates, CompositeClientPrivateKey))
|
|
|
|
static int
|
|
FreeCompositeClientWindow(void *value, XID ccwid)
|
|
{
|
|
WindowPtr pWin = value;
|
|
|
|
compFreeClientWindow(pWin, ccwid);
|
|
return Success;
|
|
}
|
|
|
|
static int
|
|
FreeCompositeClientSubwindows(void *value, XID ccwid)
|
|
{
|
|
WindowPtr pWin = value;
|
|
|
|
compFreeClientSubwindows(pWin, ccwid);
|
|
return Success;
|
|
}
|
|
|
|
static int
|
|
FreeCompositeClientOverlay(void *value, XID ccwid)
|
|
{
|
|
CompOverlayClientPtr pOc = (CompOverlayClientPtr) value;
|
|
|
|
compFreeOverlayClient(pOc);
|
|
return Success;
|
|
}
|
|
|
|
static int
|
|
ProcCompositeQueryVersion(ClientPtr client)
|
|
{
|
|
REQUEST(xCompositeQueryVersionReq);
|
|
REQUEST_SIZE_MATCH(xCompositeQueryVersionReq);
|
|
|
|
CompositeClientPtr pCompositeClient = GetCompositeClient(client);
|
|
|
|
xCompositeQueryVersionReply rep = {
|
|
.majorVersion = SERVER_COMPOSITE_MAJOR_VERSION,
|
|
.minorVersion = SERVER_COMPOSITE_MINOR_VERSION
|
|
};
|
|
|
|
/* if client asking for a lower version, use this one */
|
|
if (stuff->majorVersion < SERVER_COMPOSITE_MAJOR_VERSION) {
|
|
rep.majorVersion = stuff->majorVersion;
|
|
rep.minorVersion = stuff->minorVersion;
|
|
}
|
|
|
|
pCompositeClient->major_version = rep.majorVersion;
|
|
pCompositeClient->minor_version = rep.minorVersion;
|
|
if (client->swapped) {
|
|
swapl(&rep.majorVersion);
|
|
swapl(&rep.minorVersion);
|
|
}
|
|
X_SEND_REPLY_SIMPLE(client, rep);
|
|
return Success;
|
|
}
|
|
|
|
#define VERIFY_WINDOW(pWindow, wid, client, mode) \
|
|
do { \
|
|
int err; \
|
|
err = dixLookupResourceByType((void **) &pWindow, wid, \
|
|
X11_RESTYPE_WINDOW, client, mode);\
|
|
if (err != Success) { \
|
|
client->errorValue = wid; \
|
|
return err; \
|
|
} \
|
|
} while (0)
|
|
|
|
static int
|
|
SingleCompositeRedirectWindow(ClientPtr client, xCompositeRedirectWindowReq *stuff)
|
|
{
|
|
WindowPtr pWin;
|
|
|
|
VERIFY_WINDOW(pWin, stuff->window, client,
|
|
DixSetAttrAccess | DixManageAccess | DixBlendAccess);
|
|
|
|
return compRedirectWindow(client, pWin, stuff->update);
|
|
}
|
|
|
|
static int
|
|
SingleRedirectSubwindows(ClientPtr client, xCompositeRedirectSubwindowsReq *stuff)
|
|
{
|
|
WindowPtr pWin;
|
|
|
|
VERIFY_WINDOW(pWin, stuff->window, client,
|
|
DixSetAttrAccess | DixManageAccess | DixBlendAccess);
|
|
|
|
return compRedirectSubwindows(client, pWin, stuff->update);
|
|
}
|
|
|
|
static int
|
|
SingleCompositeUnredirectWindow(ClientPtr client, xCompositeUnredirectWindowReq *stuff)
|
|
{
|
|
WindowPtr pWin;
|
|
|
|
VERIFY_WINDOW(pWin, stuff->window, client,
|
|
DixSetAttrAccess | DixManageAccess | DixBlendAccess);
|
|
|
|
return compUnredirectWindow(client, pWin, stuff->update);
|
|
}
|
|
|
|
static int
|
|
SingleCompositeUnredirectSubwindows(ClientPtr client, xCompositeUnredirectSubwindowsReq* stuff)
|
|
{
|
|
WindowPtr pWin;
|
|
|
|
VERIFY_WINDOW(pWin, stuff->window, client,
|
|
DixSetAttrAccess | DixManageAccess | DixBlendAccess);
|
|
|
|
return compUnredirectSubwindows(client, pWin, stuff->update);
|
|
}
|
|
|
|
static int
|
|
ProcCompositeCreateRegionFromBorderClip(ClientPtr client)
|
|
{
|
|
WindowPtr pWin;
|
|
|
|
REQUEST(xCompositeCreateRegionFromBorderClipReq);
|
|
REQUEST_SIZE_MATCH(xCompositeCreateRegionFromBorderClipReq);
|
|
|
|
VERIFY_WINDOW(pWin, stuff->window, client, DixGetAttrAccess);
|
|
LEGAL_NEW_RESOURCE(stuff->region, client);
|
|
|
|
CompWindowPtr cw = GetCompWindow(pWin);
|
|
|
|
RegionPtr pBorderClip = (cw ? &cw->borderClip : &pWin->borderClip);
|
|
|
|
RegionPtr pRegion = XFixesRegionCopy(pBorderClip);
|
|
if (!pRegion)
|
|
return BadAlloc;
|
|
|
|
RegionTranslate(pRegion, -pWin->drawable.x, -pWin->drawable.y);
|
|
|
|
if (!AddResource(stuff->region, RegionResType, (void *) pRegion))
|
|
return BadAlloc;
|
|
|
|
return Success;
|
|
}
|
|
|
|
static int
|
|
SingleCompositeNameWindowPixmap(ClientPtr client, xCompositeNameWindowPixmapReq *stuff)
|
|
{
|
|
WindowPtr pWin;
|
|
|
|
VERIFY_WINDOW(pWin, stuff->window, client, DixGetAttrAccess);
|
|
|
|
ScreenPtr pScreen = pWin->drawable.pScreen;
|
|
|
|
if (!pWin->viewable)
|
|
return BadMatch;
|
|
|
|
LEGAL_NEW_RESOURCE(stuff->pixmap, client);
|
|
|
|
CompWindowPtr cw = GetCompWindow(pWin);
|
|
if (!cw)
|
|
return BadMatch;
|
|
|
|
PixmapPtr pPixmap = pScreen->GetWindowPixmap(pWin);
|
|
if (!pPixmap)
|
|
return BadMatch;
|
|
|
|
/* security creation/labeling check */
|
|
int rc = XaceHookResourceAccess(client,
|
|
stuff->pixmap,
|
|
X11_RESTYPE_PIXMAP,
|
|
pPixmap,
|
|
X11_RESTYPE_WINDOW,
|
|
pWin,
|
|
DixCreateAccess);
|
|
if (rc != Success)
|
|
return rc;
|
|
|
|
++pPixmap->refcnt;
|
|
|
|
if (!AddResource(stuff->pixmap, X11_RESTYPE_PIXMAP, (void *) pPixmap))
|
|
return BadAlloc;
|
|
|
|
if (pScreen->NameWindowPixmap) {
|
|
rc = pScreen->NameWindowPixmap(pWin, pPixmap, stuff->pixmap);
|
|
if (rc != Success) {
|
|
FreeResource(stuff->pixmap, X11_RESTYPE_NONE);
|
|
return rc;
|
|
}
|
|
}
|
|
|
|
return Success;
|
|
}
|
|
|
|
static int
|
|
SingleCompositeGetOverlayWindow(ClientPtr client, xCompositeGetOverlayWindowReq *stuff)
|
|
{
|
|
WindowPtr pWin;
|
|
|
|
VERIFY_WINDOW(pWin, stuff->window, client, DixGetAttrAccess);
|
|
ScreenPtr pScreen = pWin->drawable.pScreen;
|
|
|
|
/*
|
|
* Create an OverlayClient structure to mark this client's
|
|
* interest in the overlay window
|
|
*/
|
|
CompOverlayClientPtr pOc = compCreateOverlayClient(pScreen, client);
|
|
if (pOc == NULL)
|
|
return BadAlloc;
|
|
|
|
/*
|
|
* Make sure the overlay window exists
|
|
*/
|
|
CompScreenPtr cs = GetCompScreen(pScreen);
|
|
if (cs->pOverlayWin == NULL)
|
|
if (!compCreateOverlayWindow(pScreen)) {
|
|
FreeResource(pOc->resource, X11_RESTYPE_NONE);
|
|
return BadAlloc;
|
|
}
|
|
|
|
int rc = XaceHookResourceAccess(client,
|
|
cs->pOverlayWin->drawable.id,
|
|
X11_RESTYPE_WINDOW,
|
|
cs->pOverlayWin, X11_RESTYPE_NONE,
|
|
NULL,
|
|
DixGetAttrAccess);
|
|
if (rc != Success) {
|
|
FreeResource(pOc->resource, X11_RESTYPE_NONE);
|
|
return rc;
|
|
}
|
|
|
|
xCompositeGetOverlayWindowReply rep = {
|
|
.overlayWin = cs->pOverlayWin->drawable.id
|
|
};
|
|
|
|
if (client->swapped) {
|
|
swapl(&rep.overlayWin);
|
|
}
|
|
X_SEND_REPLY_SIMPLE(client, rep);
|
|
return Success;
|
|
}
|
|
|
|
static int
|
|
SingleCompositeReleaseOverlayWindow(ClientPtr client, xCompositeReleaseOverlayWindowReq *stuff)
|
|
{
|
|
WindowPtr pWin;
|
|
|
|
VERIFY_WINDOW(pWin, stuff->window, client, DixGetAttrAccess);
|
|
|
|
/*
|
|
* Has client queried a reference to the overlay window
|
|
* on this screen? If not, generate an error.
|
|
*/
|
|
CompOverlayClientPtr pOc = compFindOverlayClient(pWin->drawable.pScreen, client);
|
|
if (pOc == NULL)
|
|
return BadMatch;
|
|
|
|
/* The delete function will free the client structure */
|
|
FreeResource(pOc->resource, X11_RESTYPE_NONE);
|
|
|
|
return Success;
|
|
}
|
|
|
|
static int ProcCompositeRedirectWindow(ClientPtr client);
|
|
static int ProcCompositeRedirectSubwindows(ClientPtr client);
|
|
static int ProcCompositeUnredirectWindow(ClientPtr client);
|
|
static int ProcCompositeReleaseOverlayWindow(ClientPtr client);
|
|
static int ProcCompositeUnredirectSubwindows(ClientPtr client);
|
|
static int ProcCompositeNameWindowPixmap(ClientPtr client);
|
|
static int ProcCompositeGetOverlayWindow(ClientPtr client);
|
|
|
|
static int
|
|
ProcCompositeDispatch(ClientPtr client)
|
|
{
|
|
REQUEST(xReq);
|
|
switch (stuff->data) {
|
|
case X_CompositeQueryVersion:
|
|
return ProcCompositeQueryVersion(client);
|
|
case X_CompositeRedirectWindow:
|
|
return ProcCompositeRedirectWindow(client);
|
|
case X_CompositeRedirectSubwindows:
|
|
return ProcCompositeRedirectSubwindows(client);
|
|
case X_CompositeUnredirectWindow:
|
|
return ProcCompositeUnredirectWindow(client);
|
|
case X_CompositeUnredirectSubwindows:
|
|
return ProcCompositeUnredirectSubwindows(client);
|
|
case X_CompositeCreateRegionFromBorderClip:
|
|
return ProcCompositeCreateRegionFromBorderClip(client);
|
|
case X_CompositeNameWindowPixmap:
|
|
return ProcCompositeNameWindowPixmap(client);
|
|
case X_CompositeGetOverlayWindow:
|
|
return ProcCompositeGetOverlayWindow(client);
|
|
case X_CompositeReleaseOverlayWindow:
|
|
return ProcCompositeReleaseOverlayWindow(client);
|
|
default:
|
|
return BadRequest;
|
|
}
|
|
}
|
|
|
|
static int _X_COLD
|
|
SProcCompositeQueryVersion(ClientPtr client)
|
|
{
|
|
REQUEST(xCompositeQueryVersionReq);
|
|
REQUEST_SIZE_MATCH(xCompositeQueryVersionReq);
|
|
swapl(&stuff->majorVersion);
|
|
swapl(&stuff->minorVersion);
|
|
return ProcCompositeQueryVersion(client);
|
|
}
|
|
|
|
static int _X_COLD
|
|
SProcCompositeRedirectWindow(ClientPtr client)
|
|
{
|
|
REQUEST(xCompositeRedirectWindowReq);
|
|
REQUEST_SIZE_MATCH(xCompositeRedirectWindowReq);
|
|
swapl(&stuff->window);
|
|
return ProcCompositeRedirectWindow(client);
|
|
}
|
|
|
|
static int _X_COLD
|
|
SProcCompositeRedirectSubwindows(ClientPtr client)
|
|
{
|
|
REQUEST(xCompositeRedirectSubwindowsReq);
|
|
REQUEST_SIZE_MATCH(xCompositeRedirectSubwindowsReq);
|
|
swapl(&stuff->window);
|
|
return ProcCompositeRedirectSubwindows(client);
|
|
}
|
|
|
|
static int _X_COLD
|
|
SProcCompositeUnredirectWindow(ClientPtr client)
|
|
{
|
|
REQUEST(xCompositeUnredirectWindowReq);
|
|
REQUEST_SIZE_MATCH(xCompositeUnredirectWindowReq);
|
|
swapl(&stuff->window);
|
|
return ProcCompositeUnredirectWindow(client);
|
|
}
|
|
|
|
static int _X_COLD
|
|
SProcCompositeUnredirectSubwindows(ClientPtr client)
|
|
{
|
|
REQUEST(xCompositeUnredirectSubwindowsReq);
|
|
REQUEST_SIZE_MATCH(xCompositeUnredirectSubwindowsReq);
|
|
swapl(&stuff->window);
|
|
return ProcCompositeUnredirectSubwindows(client);
|
|
}
|
|
|
|
static int _X_COLD
|
|
SProcCompositeCreateRegionFromBorderClip(ClientPtr client)
|
|
{
|
|
REQUEST(xCompositeCreateRegionFromBorderClipReq);
|
|
REQUEST_SIZE_MATCH(xCompositeCreateRegionFromBorderClipReq);
|
|
swapl(&stuff->region);
|
|
swapl(&stuff->window);
|
|
return ProcCompositeCreateRegionFromBorderClip(client);
|
|
}
|
|
|
|
static int _X_COLD
|
|
SProcCompositeNameWindowPixmap(ClientPtr client)
|
|
{
|
|
REQUEST(xCompositeNameWindowPixmapReq);
|
|
REQUEST_SIZE_MATCH(xCompositeNameWindowPixmapReq);
|
|
swapl(&stuff->window);
|
|
swapl(&stuff->pixmap);
|
|
return ProcCompositeNameWindowPixmap(client);
|
|
}
|
|
|
|
static int _X_COLD
|
|
SProcCompositeGetOverlayWindow(ClientPtr client)
|
|
{
|
|
REQUEST(xCompositeGetOverlayWindowReq);
|
|
REQUEST_SIZE_MATCH(xCompositeGetOverlayWindowReq);
|
|
swapl(&stuff->window);
|
|
return ProcCompositeGetOverlayWindow(client);
|
|
}
|
|
|
|
static int _X_COLD
|
|
SProcCompositeReleaseOverlayWindow(ClientPtr client)
|
|
{
|
|
REQUEST(xCompositeReleaseOverlayWindowReq);
|
|
REQUEST_SIZE_MATCH(xCompositeReleaseOverlayWindowReq);
|
|
swapl(&stuff->window);
|
|
return ProcCompositeReleaseOverlayWindow(client);
|
|
}
|
|
|
|
static int _X_COLD
|
|
SProcCompositeDispatch(ClientPtr client)
|
|
{
|
|
REQUEST(xReq);
|
|
switch (stuff->data) {
|
|
case X_CompositeQueryVersion:
|
|
return SProcCompositeQueryVersion(client);
|
|
case X_CompositeRedirectWindow:
|
|
return SProcCompositeRedirectWindow(client);
|
|
case X_CompositeRedirectSubwindows:
|
|
return SProcCompositeRedirectSubwindows(client);
|
|
case X_CompositeUnredirectWindow:
|
|
return SProcCompositeUnredirectWindow(client);
|
|
case X_CompositeUnredirectSubwindows:
|
|
return SProcCompositeUnredirectSubwindows(client);
|
|
case X_CompositeCreateRegionFromBorderClip:
|
|
return SProcCompositeCreateRegionFromBorderClip(client);
|
|
case X_CompositeNameWindowPixmap:
|
|
return SProcCompositeNameWindowPixmap(client);
|
|
case X_CompositeGetOverlayWindow:
|
|
return SProcCompositeGetOverlayWindow(client);
|
|
case X_CompositeReleaseOverlayWindow:
|
|
return SProcCompositeReleaseOverlayWindow(client);
|
|
default:
|
|
return BadRequest;
|
|
}
|
|
}
|
|
|
|
/** @see GetDefaultBytes */
|
|
static SizeType coreGetWindowBytes;
|
|
|
|
static void
|
|
GetCompositeWindowBytes(void *value, XID id, ResourceSizePtr size)
|
|
{
|
|
WindowPtr window = value;
|
|
|
|
/* call down */
|
|
coreGetWindowBytes(value, id, size);
|
|
|
|
/* account for redirection */
|
|
if (window->redirectDraw != RedirectDrawNone)
|
|
{
|
|
SizeType pixmapSizeFunc = GetResourceTypeSizeFunc(X11_RESTYPE_PIXMAP);
|
|
ResourceSizeRec pixmapSize = { 0, 0 };
|
|
ScreenPtr screen = window->drawable.pScreen;
|
|
PixmapPtr pixmap = screen->GetWindowPixmap(window);
|
|
pixmapSizeFunc(pixmap, pixmap->drawable.id, &pixmapSize);
|
|
size->pixmapRefSize += pixmapSize.pixmapRefSize;
|
|
}
|
|
}
|
|
|
|
void
|
|
CompositeExtensionInit(void)
|
|
{
|
|
ExtensionEntry *extEntry;
|
|
|
|
/* Assume initialization is going to fail */
|
|
noCompositeExtension = TRUE;
|
|
|
|
for (unsigned int walkScreenIdx = 0; walkScreenIdx < screenInfo.numScreens; walkScreenIdx++) {
|
|
ScreenPtr walkScreen = screenInfo.screens[walkScreenIdx];
|
|
VisualPtr vis;
|
|
|
|
/* Composite on 8bpp pseudocolor root windows appears to fail, so
|
|
* just disable it on anything pseudocolor for safety.
|
|
*/
|
|
for (vis = walkScreen->visuals; vis->vid != walkScreen->rootVisual; vis++);
|
|
if ((vis->class | DynamicClass) == PseudoColor)
|
|
return;
|
|
|
|
/* Ensure that Render is initialized, which is required for automatic
|
|
* compositing.
|
|
*/
|
|
if (GetPictureScreenIfSet(walkScreen) == NULL)
|
|
return;
|
|
}
|
|
|
|
CompositeClientWindowType = CreateNewResourceType
|
|
(FreeCompositeClientWindow, "CompositeClientWindow");
|
|
if (!CompositeClientWindowType)
|
|
return;
|
|
|
|
coreGetWindowBytes = GetResourceTypeSizeFunc(X11_RESTYPE_WINDOW);
|
|
SetResourceTypeSizeFunc(X11_RESTYPE_WINDOW, GetCompositeWindowBytes);
|
|
|
|
CompositeClientSubwindowsType = CreateNewResourceType
|
|
(FreeCompositeClientSubwindows, "CompositeClientSubwindows");
|
|
if (!CompositeClientSubwindowsType)
|
|
return;
|
|
|
|
CompositeClientOverlayType = CreateNewResourceType
|
|
(FreeCompositeClientOverlay, "CompositeClientOverlay");
|
|
if (!CompositeClientOverlayType)
|
|
return;
|
|
|
|
if (!dixRegisterPrivateKey(&CompositeClientPrivateKeyRec, PRIVATE_CLIENT,
|
|
sizeof(CompositeClientRec)))
|
|
return;
|
|
|
|
for (unsigned int walkScreenIdx = 0; walkScreenIdx < screenInfo.numScreens; walkScreenIdx++) {
|
|
ScreenPtr walkScreen = screenInfo.screens[walkScreenIdx];
|
|
if (!compScreenInit(walkScreen))
|
|
return;
|
|
}
|
|
|
|
extEntry = AddExtension(COMPOSITE_NAME, 0, 0,
|
|
ProcCompositeDispatch, SProcCompositeDispatch,
|
|
NULL, StandardMinorOpcode);
|
|
if (!extEntry)
|
|
return;
|
|
CompositeReqCode = (CARD8) extEntry->base;
|
|
|
|
/* Initialization succeeded */
|
|
noCompositeExtension = FALSE;
|
|
}
|
|
|
|
static int
|
|
ProcCompositeRedirectWindow(ClientPtr client)
|
|
{
|
|
REQUEST(xCompositeRedirectWindowReq);
|
|
REQUEST_SIZE_MATCH(xCompositeRedirectWindowReq);
|
|
|
|
#ifdef XINERAMA
|
|
if (!compositeUseXinerama)
|
|
return SingleCompositeRedirectWindow(client, stuff);
|
|
|
|
PanoramiXRes *win;
|
|
int rc = 0;
|
|
|
|
if ((rc = dixLookupResourceByType((void **) &win, stuff->window, XRT_WINDOW,
|
|
client, DixUnknownAccess))) {
|
|
client->errorValue = stuff->window;
|
|
return rc;
|
|
}
|
|
|
|
XINERAMA_FOR_EACH_SCREEN_FORWARD({
|
|
stuff->window = win->info[walkScreenIdx].id;
|
|
rc = SingleCompositeRedirectWindow(client, stuff);
|
|
if (rc != Success)
|
|
break;
|
|
});
|
|
|
|
return rc;
|
|
#else
|
|
return SingleCompositeRedirectWindow(client, stuff);
|
|
#endif /* XINERAMA */
|
|
}
|
|
|
|
static int
|
|
ProcCompositeRedirectSubwindows(ClientPtr client)
|
|
{
|
|
REQUEST(xCompositeRedirectSubwindowsReq);
|
|
REQUEST_SIZE_MATCH(xCompositeRedirectSubwindowsReq);
|
|
|
|
#ifdef XINERAMA
|
|
if (!compositeUseXinerama)
|
|
return SingleRedirectSubwindows(client, stuff);
|
|
|
|
PanoramiXRes *win;
|
|
int rc = 0;
|
|
|
|
if ((rc = dixLookupResourceByType((void **) &win, stuff->window, XRT_WINDOW,
|
|
client, DixUnknownAccess))) {
|
|
client->errorValue = stuff->window;
|
|
return rc;
|
|
}
|
|
|
|
XINERAMA_FOR_EACH_SCREEN_FORWARD({
|
|
stuff->window = win->info[walkScreenIdx].id;
|
|
rc = SingleRedirectSubwindows(client, stuff);
|
|
if (rc != Success)
|
|
break;
|
|
});
|
|
|
|
return rc;
|
|
#else
|
|
return SingleRedirectSubwindows(client, stuff);
|
|
#endif /* XINERAMA */
|
|
}
|
|
|
|
static int
|
|
ProcCompositeUnredirectWindow(ClientPtr client)
|
|
{
|
|
REQUEST(xCompositeUnredirectWindowReq);
|
|
REQUEST_SIZE_MATCH(xCompositeUnredirectWindowReq);
|
|
|
|
#ifdef XINERAMA
|
|
if (!compositeUseXinerama)
|
|
return SingleCompositeUnredirectWindow(client, stuff);
|
|
|
|
PanoramiXRes *win;
|
|
int rc = 0;
|
|
|
|
if ((rc = dixLookupResourceByType((void **) &win, stuff->window, XRT_WINDOW,
|
|
client, DixUnknownAccess))) {
|
|
client->errorValue = stuff->window;
|
|
return rc;
|
|
}
|
|
|
|
XINERAMA_FOR_EACH_SCREEN_FORWARD({
|
|
stuff->window = win->info[walkScreenIdx].id;
|
|
rc = SingleCompositeUnredirectWindow(client, stuff);
|
|
if (rc != Success)
|
|
break;
|
|
});
|
|
|
|
return rc;
|
|
#else
|
|
return SingleCompositeUnredirectWindow(client, stuff);
|
|
#endif /* XINERAMA */
|
|
}
|
|
|
|
static int
|
|
ProcCompositeUnredirectSubwindows(ClientPtr client)
|
|
{
|
|
REQUEST(xCompositeUnredirectSubwindowsReq);
|
|
REQUEST_SIZE_MATCH(xCompositeUnredirectSubwindowsReq);
|
|
|
|
#ifdef XINERAMA
|
|
if (!compositeUseXinerama)
|
|
return SingleCompositeUnredirectSubwindows(client, stuff);
|
|
|
|
PanoramiXRes *win;
|
|
int rc = 0;
|
|
|
|
if ((rc = dixLookupResourceByType((void **) &win, stuff->window, XRT_WINDOW,
|
|
client, DixUnknownAccess))) {
|
|
client->errorValue = stuff->window;
|
|
return rc;
|
|
}
|
|
|
|
XINERAMA_FOR_EACH_SCREEN_FORWARD({
|
|
stuff->window = win->info[walkScreenIdx].id;
|
|
rc = SingleCompositeUnredirectSubwindows(client, stuff);
|
|
if (rc != Success)
|
|
break;
|
|
});
|
|
|
|
return rc;
|
|
#else
|
|
return SingleCompositeUnredirectSubwindows(client, stuff);
|
|
#endif /* XINERAMA */
|
|
}
|
|
|
|
static int
|
|
ProcCompositeNameWindowPixmap(ClientPtr client)
|
|
{
|
|
REQUEST(xCompositeNameWindowPixmapReq);
|
|
REQUEST_SIZE_MATCH(xCompositeNameWindowPixmapReq);
|
|
|
|
#ifdef XINERAMA
|
|
if (!compositeUseXinerama)
|
|
return SingleCompositeNameWindowPixmap(client, stuff);
|
|
|
|
WindowPtr pWin;
|
|
CompWindowPtr cw;
|
|
PixmapPtr pPixmap;
|
|
int rc;
|
|
PanoramiXRes *win, *newPix;
|
|
|
|
if ((rc = dixLookupResourceByType((void **) &win, stuff->window, XRT_WINDOW,
|
|
client, DixUnknownAccess))) {
|
|
client->errorValue = stuff->window;
|
|
return rc;
|
|
}
|
|
|
|
LEGAL_NEW_RESOURCE(stuff->pixmap, client);
|
|
|
|
if (!(newPix = calloc(1, sizeof(PanoramiXRes))))
|
|
return BadAlloc;
|
|
|
|
newPix->type = XRT_PIXMAP;
|
|
newPix->u.pix.shared = FALSE;
|
|
panoramix_setup_ids(newPix, client, stuff->pixmap);
|
|
|
|
XINERAMA_FOR_EACH_SCREEN_BACKWARD({
|
|
rc = dixLookupResourceByType((void **) &pWin, win->info[walkScreenIdx].id,
|
|
X11_RESTYPE_WINDOW, client,
|
|
DixGetAttrAccess);
|
|
if (rc != Success) {
|
|
client->errorValue = stuff->window;
|
|
free(newPix);
|
|
return rc;
|
|
}
|
|
|
|
if (!pWin->viewable) {
|
|
free(newPix);
|
|
return BadMatch;
|
|
}
|
|
|
|
cw = GetCompWindow(pWin);
|
|
if (!cw) {
|
|
free(newPix);
|
|
return BadMatch;
|
|
}
|
|
|
|
pPixmap = (*pWin->drawable.pScreen->GetWindowPixmap) (pWin);
|
|
if (!pPixmap) {
|
|
free(newPix);
|
|
return BadMatch;
|
|
}
|
|
|
|
if (!AddResource(newPix->info[walkScreenIdx].id, X11_RESTYPE_PIXMAP, (void *) pPixmap))
|
|
return BadAlloc;
|
|
|
|
++pPixmap->refcnt;
|
|
});
|
|
|
|
if (!AddResource(stuff->pixmap, XRT_PIXMAP, (void *) newPix))
|
|
return BadAlloc;
|
|
|
|
return Success;
|
|
#else
|
|
return SingleCompositeNameWindowPixmap(client, stuff);
|
|
#endif /* XINERAMA */
|
|
}
|
|
|
|
static int
|
|
ProcCompositeGetOverlayWindow(ClientPtr client)
|
|
{
|
|
REQUEST(xCompositeGetOverlayWindowReq);
|
|
REQUEST_SIZE_MATCH(xCompositeGetOverlayWindowReq);
|
|
|
|
#ifdef XINERAMA
|
|
if (!compositeUseXinerama)
|
|
return SingleCompositeGetOverlayWindow(client, stuff);
|
|
|
|
xCompositeGetOverlayWindowReply rep;
|
|
WindowPtr pWin;
|
|
ScreenPtr pScreen;
|
|
CompOverlayClientPtr pOc;
|
|
int rc;
|
|
PanoramiXRes *win, *overlayWin = NULL;
|
|
|
|
if ((rc = dixLookupResourceByType((void **) &win, stuff->window, XRT_WINDOW,
|
|
client, DixUnknownAccess))) {
|
|
client->errorValue = stuff->window;
|
|
return rc;
|
|
}
|
|
|
|
CompScreenPtr cs = GetCompScreen(dixGetMasterScreen());
|
|
if (!cs->pOverlayWin) {
|
|
if (!(overlayWin = calloc(1, sizeof(PanoramiXRes))))
|
|
return BadAlloc;
|
|
|
|
overlayWin->type = XRT_WINDOW;
|
|
overlayWin->u.win.root = FALSE;
|
|
}
|
|
|
|
XINERAMA_FOR_EACH_SCREEN_BACKWARD({
|
|
rc = dixLookupResourceByType((void **) &pWin, win->info[walkScreenIdx].id,
|
|
X11_RESTYPE_WINDOW, client,
|
|
DixGetAttrAccess);
|
|
if (rc != Success) {
|
|
client->errorValue = stuff->window;
|
|
free(overlayWin);
|
|
return rc;
|
|
}
|
|
pScreen = pWin->drawable.pScreen;
|
|
|
|
/*
|
|
* Create an OverlayClient structure to mark this client's
|
|
* interest in the overlay window
|
|
*/
|
|
pOc = compCreateOverlayClient(pScreen, client);
|
|
if (pOc == NULL) {
|
|
free(overlayWin);
|
|
return BadAlloc;
|
|
}
|
|
|
|
/*
|
|
* Make sure the overlay window exists
|
|
*/
|
|
cs = GetCompScreen(pScreen);
|
|
if (cs->pOverlayWin == NULL)
|
|
if (!compCreateOverlayWindow(pScreen)) {
|
|
FreeResource(pOc->resource, X11_RESTYPE_NONE);
|
|
free(overlayWin);
|
|
return BadAlloc;
|
|
}
|
|
|
|
rc = XaceHookResourceAccess(client,
|
|
cs->pOverlayWin->drawable.id,
|
|
X11_RESTYPE_WINDOW, cs->pOverlayWin, X11_RESTYPE_NONE, NULL,
|
|
DixGetAttrAccess);
|
|
if (rc != Success) {
|
|
FreeResource(pOc->resource, X11_RESTYPE_NONE);
|
|
free(overlayWin);
|
|
return rc;
|
|
}
|
|
});
|
|
|
|
if (overlayWin) {
|
|
XINERAMA_FOR_EACH_SCREEN_BACKWARD({
|
|
cs = GetCompScreen(walkScreen);
|
|
overlayWin->info[walkScreenIdx].id = cs->pOverlayWin->drawable.id;
|
|
});
|
|
|
|
AddResource(overlayWin->info[0].id, XRT_WINDOW, overlayWin);
|
|
}
|
|
|
|
cs = GetCompScreen(dixGetMasterScreen());
|
|
|
|
rep = (xCompositeGetOverlayWindowReply) {
|
|
.overlayWin = cs->pOverlayWin->drawable.id
|
|
};
|
|
|
|
if (client->swapped) {
|
|
swapl(&rep.overlayWin);
|
|
}
|
|
X_SEND_REPLY_SIMPLE(client, rep);
|
|
return Success;
|
|
#else
|
|
return SingleCompositeGetOverlayWindow(client, stuff);
|
|
#endif /* XINERAMA */
|
|
}
|
|
|
|
static int
|
|
ProcCompositeReleaseOverlayWindow(ClientPtr client)
|
|
{
|
|
REQUEST(xCompositeReleaseOverlayWindowReq);
|
|
REQUEST_SIZE_MATCH(xCompositeReleaseOverlayWindowReq);
|
|
|
|
#ifdef XINERAMA
|
|
if (!compositeUseXinerama)
|
|
return SingleCompositeReleaseOverlayWindow(client, stuff);
|
|
|
|
WindowPtr pWin;
|
|
CompOverlayClientPtr pOc;
|
|
PanoramiXRes *win;
|
|
int rc;
|
|
|
|
if ((rc = dixLookupResourceByType((void **) &win, stuff->window, XRT_WINDOW,
|
|
client, DixUnknownAccess))) {
|
|
client->errorValue = stuff->window;
|
|
return rc;
|
|
}
|
|
|
|
XINERAMA_FOR_EACH_SCREEN_BACKWARD({
|
|
if ((rc = dixLookupResourceByType((void **) &pWin, win->info[walkScreenIdx].id,
|
|
XRT_WINDOW, client,
|
|
DixUnknownAccess))) {
|
|
client->errorValue = stuff->window;
|
|
return rc;
|
|
}
|
|
|
|
/*
|
|
* Has client queried a reference to the overlay window
|
|
* on this screen? If not, generate an error.
|
|
*/
|
|
pOc = compFindOverlayClient(pWin->drawable.pScreen, client);
|
|
if (pOc == NULL)
|
|
return BadMatch;
|
|
|
|
/* The delete function will free the client structure */
|
|
FreeResource(pOc->resource, X11_RESTYPE_NONE);
|
|
});
|
|
|
|
return Success;
|
|
#else
|
|
return SingleCompositeReleaseOverlayWindow(client, stuff);
|
|
#endif /* XINERAMA */
|
|
}
|
|
|
|
#ifdef XINERAMA
|
|
void
|
|
PanoramiXCompositeInit(void)
|
|
{
|
|
compositeUseXinerama = 1;
|
|
}
|
|
|
|
void
|
|
PanoramiXCompositeReset(void)
|
|
{
|
|
compositeUseXinerama = 0;
|
|
}
|
|
#endif /* XINERAMA */
|