mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-15 11:20:03 +00:00
2277c5d7bb
Lots of new code imported.
34 lines
537 B
C
34 lines
537 B
C
#include <u.h>
|
|
#include <libc.h>
|
|
#include <auth.h>
|
|
#include <fcall.h>
|
|
#include <thread.h>
|
|
#include <9p.h>
|
|
|
|
/*
|
|
* simplistic permission checking. assume that
|
|
* each user is the leader of her own group.
|
|
*/
|
|
int
|
|
hasperm(File *f, char *uid, int p)
|
|
{
|
|
int m;
|
|
|
|
m = f->dir.mode & 7; /* other */
|
|
if((p & m) == p)
|
|
return 1;
|
|
|
|
if(strcmp(f->dir.uid, uid) == 0) {
|
|
m |= (f->dir.mode>>6) & 7;
|
|
if((p & m) == p)
|
|
return 1;
|
|
}
|
|
|
|
if(strcmp(f->dir.gid, uid) == 0) {
|
|
m |= (f->dir.mode>>3) & 7;
|
|
if((p & m) == p)
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|