📄 shm.c
字号:
/************************************************************Copyright (c) 1989 X ConsortiumPermission is hereby granted, free of charge, to any person obtaining a copyof this software and associated documentation files (the "Software"), to dealin the Software without restriction, including without limitation the rightsto use, copy, modify, merge, publish, distribute, sublicense, and/or sellcopies of the Software, and to permit persons to whom the Software isfurnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included inall copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS ORIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THEX CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER INAN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR INCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.Except as contained in this notice, the name of the X Consortium shall not beused in advertising or otherwise to promote the sale, use or other dealingsin this Software without prior written authorization from the X Consortium.********************************************************//* THIS IS NOT AN X CONSORTIUM STANDARD *//* $XConsortium: shm.c,v 1.25 95/04/06 16:00:55 dpw Exp $ *//* $XFree86: xc/programs/Xserver/Xext/shm.c,v 3.8 1997/01/18 06:52:59 dawes Exp $ */#include <sys/types.h>#ifndef Lynx#include <sys/ipc.h>#include <sys/shm.h>#else#include <ipc.h>#include <shm.h>#endif#define NEED_REPLIES#define NEED_EVENTS#include "X.h"#include "Xproto.h"#include "misc.h"#include "os.h"#include "dixstruct.h"#include "resource.h"#include "scrnintstr.h"#include "windowstr.h"#include "pixmapstr.h"#include "gcstruct.h"#include "extnsionst.h"#include "servermd.h"#define _XSHM_SERVER_#include "shmstr.h"#include "Xfuncproto.h"typedef struct _ShmDesc { struct _ShmDesc *next; int shmid; int refcnt; char *addr; Bool writable; unsigned long size;} ShmDescRec, *ShmDescPtr;static void miShmPutImage(XSHM_PUT_IMAGE_ARGS);static void fbShmPutImage(XSHM_PUT_IMAGE_ARGS);static PixmapPtr fbShmCreatePixmap(XSHM_CREATE_PIXMAP_ARGS);static int ShmDetachSegment(#if NeedFunctionPrototypes pointer /* value */, XID /* shmseg */#endif );static void ShmResetProc(#if NeedFunctionPrototypes ExtensionEntry * /* extEntry */#endif );static void SShmCompletionEvent(#if NeedFunctionPrototypes xShmCompletionEvent * /* from */, xShmCompletionEvent * /* to */#endif );static DISPATCH_PROC(ProcShmAttach);static DISPATCH_PROC(ProcShmCreatePixmap);static DISPATCH_PROC(ProcShmDetach);static DISPATCH_PROC(ProcShmDispatch);static DISPATCH_PROC(ProcShmGetImage);static DISPATCH_PROC(ProcShmGetImage);static DISPATCH_PROC(ProcShmGetImage);static DISPATCH_PROC(ProcShmPutImage);static DISPATCH_PROC(ProcShmQueryVersion);static DISPATCH_PROC(SProcShmAttach);static DISPATCH_PROC(SProcShmCreatePixmap);static DISPATCH_PROC(SProcShmDetach);static DISPATCH_PROC(SProcShmDispatch);static DISPATCH_PROC(SProcShmGetImage);static DISPATCH_PROC(SProcShmPutImage);static DISPATCH_PROC(SProcShmQueryVersion);static unsigned char ShmReqCode;static int ShmCompletionCode;static int BadShmSegCode;static RESTYPE ShmSegType, ShmPixType;static ShmDescPtr Shmsegs;static Bool sharedPixmaps;static int pixmapFormat;static int shmPixFormat[MAXSCREENS];static ShmFuncsPtr shmFuncs[MAXSCREENS];static ShmFuncs miFuncs = {NULL, miShmPutImage};static ShmFuncs fbFuncs = {fbShmCreatePixmap, fbShmPutImage};#define VERIFY_SHMSEG(shmseg,shmdesc,client) \{ \ shmdesc = (ShmDescPtr)LookupIDByType(shmseg, ShmSegType); \ if (!shmdesc) \ { \ client->errorValue = shmseg; \ return BadShmSegCode; \ } \}#define VERIFY_SHMPTR(shmseg,offset,needwrite,shmdesc,client) \{ \ VERIFY_SHMSEG(shmseg, shmdesc, client); \ if ((offset & 3) || (offset > shmdesc->size)) \ { \ client->errorValue = offset; \ return BadValue; \ } \ if (needwrite && !shmdesc->writable) \ return BadAccess; \}#define VERIFY_SHMSIZE(shmdesc,offset,len,client) \{ \ if ((offset + len) > shmdesc->size) \ { \ return BadAccess; \ } \}#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)#include <sys/signal.h>static Bool badSysCall = FALSE;static voidSigSysHandler(signo)int signo;{ badSysCall = TRUE;}static Bool CheckForShmSyscall(){ void (*oldHandler)(); int shmid = -1; /* If no SHM support in the kernel, the bad syscall will generate SIGSYS */ oldHandler = signal(SIGSYS, SigSysHandler); badSysCall = FALSE; shmid = shmget(IPC_PRIVATE, 4096, IPC_CREAT); /* Clean up */ if (shmid != -1) { shmctl(shmid, IPC_RMID, (struct shmid_ds *)NULL); } signal(SIGSYS, oldHandler); return(!badSysCall);}#endif voidShmExtensionInit(){ ExtensionEntry *extEntry; int i;#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) if (!CheckForShmSyscall()) { ErrorF("MIT-SHM extension disabled due to lack of kernel support\n"); return; }#endif#ifdef INTERNAL_VS_EXTERNAL_PADDING sharedPixmaps = xFalse; pixmapFormat = 0;#else sharedPixmaps = xTrue; pixmapFormat = shmPixFormat[0]; for (i = 0; i < screenInfo.numScreens; i++) { if (!shmFuncs[i]) shmFuncs[i] = &miFuncs; if (!shmFuncs[i]->CreatePixmap) sharedPixmaps = xFalse; if (shmPixFormat[i] && (shmPixFormat[i] != pixmapFormat)) { sharedPixmaps = xFalse; pixmapFormat = 0; } } if (!pixmapFormat) pixmapFormat = ZPixmap;#endif ShmSegType = CreateNewResourceType(ShmDetachSegment); ShmPixType = CreateNewResourceType(ShmDetachSegment); if (ShmSegType && ShmPixType && (extEntry = AddExtension(SHMNAME, ShmNumberEvents, ShmNumberErrors, ProcShmDispatch, SProcShmDispatch, ShmResetProc, StandardMinorOpcode))) { ShmReqCode = (unsigned char)extEntry->base; ShmCompletionCode = extEntry->eventBase; BadShmSegCode = extEntry->errorBase; EventSwapVector[ShmCompletionCode] = (EventSwapPtr) SShmCompletionEvent; }}/*ARGSUSED*/static voidShmResetProc (extEntry)ExtensionEntry *extEntry;{ int i; for (i = 0; i < MAXSCREENS; i++) { shmFuncs[i] = (ShmFuncsPtr)NULL; shmPixFormat[i] = 0; }}voidShmRegisterFuncs(pScreen, funcs) ScreenPtr pScreen; ShmFuncsPtr funcs;{ shmFuncs[pScreen->myNum] = funcs;}voidShmSetPixmapFormat(pScreen, format) ScreenPtr pScreen; int format;{ shmPixFormat[pScreen->myNum] = format;}voidShmRegisterFbFuncs(pScreen) ScreenPtr pScreen;{ shmFuncs[pScreen->myNum] = &fbFuncs;}static intProcShmQueryVersion(client) register ClientPtr client;{ xShmQueryVersionReply rep; register int n; REQUEST_SIZE_MATCH(xShmQueryVersionReq); rep.type = X_Reply; rep.length = 0; rep.sequenceNumber = client->sequence; rep.sharedPixmaps = sharedPixmaps; rep.pixmapFormat = pixmapFormat; rep.majorVersion = SHM_MAJOR_VERSION; rep.minorVersion = SHM_MINOR_VERSION; rep.uid = geteuid(); rep.gid = getegid(); if (client->swapped) { swaps(&rep.sequenceNumber, n); swapl(&rep.length, n); swaps(&rep.majorVersion, n); swaps(&rep.minorVersion, n); swaps(&rep.uid, n); swaps(&rep.gid, n); } WriteToClient(client, sizeof(xShmQueryVersionReply), (char *)&rep); return (client->noClientException);}static intProcShmAttach(client) register ClientPtr client;{ struct shmid_ds buf; ShmDescPtr shmdesc; REQUEST(xShmAttachReq); REQUEST_SIZE_MATCH(xShmAttachReq); LEGAL_NEW_RESOURCE(stuff->shmseg, client); if ((stuff->readOnly != xTrue) && (stuff->readOnly != xFalse)) { client->errorValue = stuff->readOnly; return(BadValue); } for (shmdesc = Shmsegs; shmdesc && (shmdesc->shmid != stuff->shmid); shmdesc = shmdesc->next) ; if (shmdesc) { if (!stuff->readOnly && !shmdesc->writable) return BadAccess; shmdesc->refcnt++; } else { shmdesc = (ShmDescPtr) xalloc(sizeof(ShmDescRec)); if (!shmdesc) return BadAlloc; shmdesc->addr = shmat(stuff->shmid, 0, stuff->readOnly ? SHM_RDONLY : 0); if ((shmdesc->addr == ((char *)-1)) || shmctl(stuff->shmid, IPC_STAT, &buf)) { xfree(shmdesc); return BadAccess; } shmdesc->shmid = stuff->shmid; shmdesc->refcnt = 1; shmdesc->writable = !stuff->readOnly; shmdesc->size = buf.shm_segsz; shmdesc->next = Shmsegs; Shmsegs = shmdesc; } if (!AddResource(stuff->shmseg, ShmSegType, (pointer)shmdesc)) return BadAlloc; return(client->noClientException);}/*ARGSUSED*/static intShmDetachSegment(value, shmseg) pointer value; /* must conform to DeleteType */ XID shmseg;{ ShmDescPtr shmdesc = (ShmDescPtr)value; ShmDescPtr *prev; if (--shmdesc->refcnt) return TRUE; shmdt(shmdesc->addr); for (prev = &Shmsegs; *prev != shmdesc; prev = &(*prev)->next) ; *prev = shmdesc->next; xfree(shmdesc); return Success;}static intProcShmDetach(client) register ClientPtr client;{ ShmDescPtr shmdesc; REQUEST(xShmDetachReq); REQUEST_SIZE_MATCH(xShmDetachReq); VERIFY_SHMSEG(stuff->shmseg, shmdesc, client); FreeResource(stuff->shmseg, RT_NONE); return(client->noClientException);}static voidmiShmPutImage(dst, pGC, depth, format, w, h, sx, sy, sw, sh, dx, dy, data) DrawablePtr dst; GCPtr pGC; int depth, w, h, sx, sy, sw, sh, dx, dy; unsigned int format; char *data;{ PixmapPtr pmap; GCPtr putGC; putGC = GetScratchGC(depth, dst->pScreen); if (!putGC) return; pmap = (*dst->pScreen->CreatePixmap)(dst->pScreen, sw, sh, depth); if (!pmap) { FreeScratchGC(putGC); return; } ValidateGC((DrawablePtr)pmap, putGC); (*putGC->ops->PutImage)((DrawablePtr)pmap, putGC, depth, -sx, -sy, w, h, 0, (format == XYPixmap) ? XYPixmap : ZPixmap, data); FreeScratchGC(putGC); if (format == XYBitmap) (void)(*pGC->ops->CopyPlane)((DrawablePtr)pmap, dst, pGC, 0, 0, sw, sh, dx, dy, 1L); else (void)(*pGC->ops->CopyArea)((DrawablePtr)pmap, dst, pGC, 0, 0, sw, sh, dx, dy); (*pmap->drawable.pScreen->DestroyPixmap)(pmap);}static voidfbShmPutImage(dst, pGC, depth, format, w, h, sx, sy, sw, sh, dx, dy, data) DrawablePtr dst; GCPtr pGC; int depth, w, h, sx, sy, sw, sh, dx, dy; unsigned int format; char *data;{ if ((format == ZPixmap) || (depth == 1)) { PixmapPtr pPixmap; pPixmap = GetScratchPixmapHeader(dst->pScreen, w, h, depth, /*XXX*/depth, PixmapBytePad(w, depth), (pointer)data); if (!pPixmap) return; if (format == XYBitmap) (void)(*pGC->ops->CopyPlane)((DrawablePtr)pPixmap, dst, pGC, sx, sy, sw, sh, dx, dy, 1L); else (void)(*pGC->ops->CopyArea)((DrawablePtr)pPixmap, dst, pGC, sx, sy, sw, sh, dx, dy); FreeScratchPixmapHeader(pPixmap); } else miShmPutImage(dst, pGC, depth, format, w, h, sx, sy, sw, sh, dx, dy, data);}static intProcShmPutImage(client) register ClientPtr client;{ register GCPtr pGC; register DrawablePtr pDraw; long length;#ifdef INTERNAL_VS_EXTERNAL_PADDING long lengthProto; char *tmpImage; int tmpAlloced = 0;#endif ShmDescPtr shmdesc; REQUEST(xShmPutImageReq); REQUEST_SIZE_MATCH(xShmPutImageReq); VALIDATE_DRAWABLE_AND_GC(stuff->drawable, pDraw, pGC, client); VERIFY_SHMPTR(stuff->shmseg, stuff->offset, FALSE, shmdesc, client); if ((stuff->sendEvent != xTrue) && (stuff->sendEvent != xFalse)) return BadValue; if (stuff->format == XYBitmap) { if (stuff->depth != 1) return BadMatch; length = PixmapBytePad(stuff->totalWidth, 1);#ifdef INTERNAL_VS_EXTERNAL_PADDING lengthProto = PixmapBytePadProto(stuff->totalWidth, 1);#endif } else if (stuff->format == XYPixmap) { if (pDraw->depth != stuff->depth) return BadMatch; length = PixmapBytePad(stuff->totalWidth, 1); length *= stuff->depth;#ifdef INTERNAL_VS_EXTERNAL_PADDING lengthProto = PixmapBytePadProto(stuff->totalWidth, 1); lengthProto *= stuff->depth;#endif } else if (stuff->format == ZPixmap) { if (pDraw->depth != stuff->depth) return BadMatch; length = PixmapBytePad(stuff->totalWidth, stuff->depth);#ifdef INTERNAL_VS_EXTERNAL_PADDING lengthProto = PixmapBytePadProto(stuff->totalWidth, stuff->depth);#endif } else { client->errorValue = stuff->format; return BadValue; }#ifdef INTERNAL_VS_EXTERNAL_PADDING VERIFY_SHMSIZE(shmdesc, stuff->offset, lengthProto * stuff->totalHeight, client);#else VERIFY_SHMSIZE(shmdesc, stuff->offset, length * stuff->totalHeight, client);#endif if (stuff->srcX > stuff->totalWidth) { client->errorValue = stuff->srcX; return BadValue; } if (stuff->srcY > stuff->totalHeight) { client->errorValue = stuff->srcY; return BadValue; } if ((stuff->srcX + stuff->srcWidth) > stuff->totalWidth) { client->errorValue = stuff->srcWidth; return BadValue; } if ((stuff->srcY + stuff->srcHeight) > stuff->totalHeight) { client->errorValue = stuff->srcHeight; return BadValue; }#ifdef INTERNAL_VS_EXTERNAL_PADDING /* handle 64 bit case where protocol may pad to 32 and we want 64 * In this case, length is what the server wants and lengthProto is * what the protocol thinks it is. If the the two are different, * copy the protocol version (i.e. the memory shared between the * server and the client) to a version with a scanline pad of 64. */ if (length != lengthProto) { register int i; char * stuffptr, /* pointer into protocol data */ * tmpptr; /* new location to copy to */ if(!(tmpImage = (char *) ALLOCATE_LOCAL(length*stuff->totalHeight))) return (BadAlloc); tmpAlloced = 1; bzero(tmpImage,length*stuff->totalHeight); if (stuff->format == XYPixmap) { int lineBytes = PixmapBytePad(stuff->totalWidth, 1); int lineBytesProto = PixmapBytePadProto(stuff->totalWidth, 1); int depth = stuff->depth;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -