1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
#include <u.h>
#include <libc.h>
#include <ctype.h>
/*
* Absent other hints, it works reasonably well to use
* the X11 display name as the name space identifier.
* This is how sam's B has worked since the early days.
* Since most programs using name spaces are also using X,
* this still seems reasonable. Terminal-only sessions
* can set $NAMESPACE.
*/
static char*
nsfromdisplay(void)
{
int fd;
Dir *d;
char *disp, *p;
if((disp = getenv("DISPLAY")) == nil){
werrstr("$DISPLAY not set");
return nil;
}
/* canonicalize: xxx:0.0 => xxx:0 */
p = strrchr(disp, ':');
if(p){
p++;
while(isdigit((uchar)*p))
p++;
if(strcmp(p, ".0") == 0)
*p = 0;
}
p = smprint("/tmp/ns.%s.%s", getuser(), disp);
free(disp);
if(p == nil){
werrstr("out of memory");
return p;
}
if((fd=create(p, OREAD, DMDIR|0700)) >= 0){
close(fd);
return p;
}
if((d = dirstat(p)) == nil){
free(d);
werrstr("stat %s: %r", p);
free(p);
return nil;
}
if((d->mode&0777) != 0700 || strcmp(d->uid, getuser()) != 0){
werrstr("bad name space dir %s", p);
free(p);
free(d);
return nil;
}
free(d);
return p;
}
char*
getns(void)
{
char *ns;
ns = getenv("NAMESPACE");
if(ns == nil)
ns = nsfromdisplay();
if(ns == nil){
werrstr("$NAMESPACE not set, %r");
return nil;
}
return ns;
}
|