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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
|
implement Init;
#
# init program for standalone wm using TK
#
include "sys.m";
sys: Sys;
FD, Connection, sprint, Dir: import sys;
print, fprint, open, bind, mount, dial, sleep, read: import sys;
include "security.m";
auth: Auth;
include "draw.m";
draw: Draw;
Context: import draw;
include "keyring.m";
kr: Keyring;
Init: module
{
init: fn();
};
Command: module
{
init: fn(ctxt: ref Context, argv: list of string);
};
rootfs(server: string): int
{
ok, n: int;
c: Connection;
(ok, c) = dial("tcp!" + server + "!6666", nil);
if(ok < 0)
return -1;
sys->print("Connected ...");
if(kr != nil && auth != nil){
err: string;
sys->print("Authenticate ...");
ai := kr->readauthinfo("/nvfs/default");
if(ai == nil){
sys->print("readauthinfo /nvfs/default failed: %r\n");
sys->print("trying mount as `nobody'\n");
}
(c.dfd, err) = auth->client("none", ai, c.dfd);
if(c.dfd == nil){
sys->print("authentication failed: %s\n", err);
return -1;
}
}
sys->print("mount ...");
c.cfd = nil;
n = mount(c.dfd, nil, "/", sys->MREPL, "");
if(n > 0)
return 0;
return -1;
}
Bootpreadlen: con 128;
init()
{
spec: string;
sys = load Sys Sys->PATH;
kr = load Keyring Keyring->PATH;
auth = load Auth Auth->PATH;
if(auth != nil)
auth->init();
sys->print("**\n** Inferno\n** Vita Nuova\n**\n");
sys->print("Setup boot net services ...\n");
#
# Setup what we need to call a server and
# Authenticate
#
bind("#l", "/net", sys->MREPL);
bind("#I", "/net", sys->MAFTER);
bind("#c", "/dev", sys->MAFTER);
bind("#H", "/dev", sys->MAFTER);
nvramfd := sys->open("#H/hd0nvram", sys->ORDWR);
if(nvramfd != nil){
spec = "#Fhd0nvram";
if(bind(spec, "/nvfs", sys->MAFTER) < 0)
print("init: bind %s: %r\n", spec);
}
setsysname();
sys->print("bootp...");
fd := open("/net/ipifc/clone", sys->OWRITE);
if(fd == nil) {
print("init: open /net/ipifc/clone: %r\n");
exit;
}
cfg := array of byte "bind ether ether0";
if(sys->write(fd, cfg, len cfg) != len cfg) {
sys->print("could not bind interface: %r\n");
exit;
}
cfg = array of byte "bootp";
if(sys->write(fd, cfg, len cfg) != len cfg) {
sys->print("could not bootp: %r\n");
exit;
}
fd = open("/net/bootp", sys->OREAD);
if(fd == nil) {
print("init: open /net/bootp: %r");
exit;
}
buf := array[Bootpreadlen] of byte;
nr := read(fd, buf, len buf);
fd = nil;
if(nr <= 0) {
print("init: read /net/bootp: %r");
exit;
}
(ntok, ls) := sys->tokenize(string buf, " \t\n");
while(ls != nil) {
if(hd ls == "fsip"){
ls = tl ls;
break;
}
ls = tl ls;
}
if(ls == nil) {
print("init: server address not in bootp read");
exit;
}
srv := hd ls;
sys->print("server %s\nConnect ...\n", srv);
retrycount := 0;
while(rootfs(srv) < 0 && retrycount++ < 5)
sleep(1000);
cfd := sys->open("/dev/cons", Sys->OWRITE);
if (cfd != nil) {
sys->dup(cfd.fd, 1);
sys->dup(cfd.fd, 2);
}
cfd = nil;
sys->print("done\n");
#
# default namespace
#
bind("#c", "/dev", sys->MREPL); # console
bind("#t", "/dev", sys->MAFTER); # serial port
bind("#H", "/dev", sys->MAFTER);
if(spec != nil)
bind(spec, "/nvfs", sys->MBEFORE|sys->MCREATE); # our keys
bind("#E", "/dev", sys->MBEFORE); # mpeg
bind("#l", "/net", sys->MBEFORE); # ethernet
bind("#I", "/net", sys->MBEFORE); # TCP/IP
bind("#V", "/dev", sys->MAFTER); # hauppauge TV
bind("#p", "/prog", sys->MREPL); # prog device
sys->bind("#d", "/fd", Sys->MREPL);
if(bind("#m", "/dev", sys->MAFTER) >= 0){ # mouse setup device
mouse := load Command "/dis/mouse.dis";
if (mouse != nil) {
print("Setting up mouse\n");
mouse->init(nil, "/dis/mouse.dis" :: nil);
mouse = nil;
}
}
sys->print("clock...\n");
setclock();
sys->print("logon...\n");
logon := load Command "/dis/wm/logon.dis";
if(logon == nil) {
print("init: load /dis/wm/logon.dis: %r");
logon = load Command "/dis/sh.dis";
}
dc: ref Context;
spawn logon->init(dc, nil);
}
setclock()
{
(ok, dir) := sys->stat("/");
if (ok < 0) {
print("init: stat /: %r");
return;
}
fd := sys->open("/dev/time", sys->OWRITE);
if (fd == nil) {
print("init: open /dev/time: %r");
return;
}
# Time is kept as microsecs, atime is in secs
b := array of byte sprint("%d000000", dir.atime);
if (sys->write(fd, b, len b) != len b)
print("init: write /dev/time: %r");
}
#
# Set system name from nvram
#
setsysname()
{
fd := open("/nvfs/ID", sys->OREAD);
if(fd == nil)
return;
fds := open("/dev/sysname", sys->OWRITE);
if(fds == nil)
return;
buf := array[128] of byte;
nr := sys->read(fd, buf, len buf);
if(nr <= 0)
return;
sys->write(fds, buf, nr);
}
|