xace: add hooks + new access codes: SYNC extension

May need to revisit this extension in the future, depending on observed use.
This commit is contained in:
Eamon Walsh 2007-09-20 08:41:26 -04:00 committed by Eamon Walsh
parent 90bacdef72
commit 661b1328cf

View File

@ -433,18 +433,18 @@ SyncInitTrigger(client, pTrigger, counter, changes)
Mask changes;
{
SyncCounter *pCounter = pTrigger->pCounter;
int status;
int rc;
Bool newcounter = FALSE;
if (changes & XSyncCACounter)
{
if (counter == None)
pCounter = NULL;
else if (!(pCounter = (SyncCounter *)SecurityLookupIDByType(
client, counter, RTCounter, DixReadAccess)))
else if (Success != (rc = dixLookupResource((pointer *)&pCounter,
counter, RTCounter, client, DixReadAccess)))
{
client->errorValue = counter;
return SyncErrorBase + XSyncBadCounter;
return (rc == BadValue) ? SyncErrorBase + XSyncBadCounter : rc;
}
if (pCounter != pTrigger->pCounter)
{ /* new counter for trigger */
@ -526,8 +526,8 @@ SyncInitTrigger(client, pTrigger, counter, changes)
*/
if (newcounter)
{
if ((status = SyncAddTriggerToCounter(pTrigger)) != Success)
return status;
if ((rc = SyncAddTriggerToCounter(pTrigger)) != Success)
return rc;
}
else if (IsSystemCounter(pCounter))
{
@ -1465,7 +1465,7 @@ ProcSyncSetPriority(client)
priorityclient = client;
else {
rc = dixLookupClient(&priorityclient, stuff->id, client,
DixUnknownAccess);
DixSetAttrAccess);
if (rc != Success)
return rc;
}
@ -1502,7 +1502,7 @@ ProcSyncGetPriority(client)
priorityclient = client;
else {
rc = dixLookupClient(&priorityclient, stuff->id, client,
DixUnknownAccess);
DixGetAttrAccess);
if (rc != Success)
return rc;
}