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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
|
/*
* Copyright (c) 1999 - 2000 Kungliga Tekniska Högskolan
* (Royal Institute of Technology, Stockholm, Sweden).
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* 3. Neither the name of the Institute nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include "arla_local.h"
RCSID("$KTH: xfs.c,v 1.13 2000/10/02 22:33:25 lha Exp $");
/*
* Begining of breakout of xfs releated junk
*/
static u_int *seqnums;
static List *sleepers;
/* number of times each type of message has been sent */
static unsigned sent_stat[XFS_MSG_COUNT];
/* number of times each type of message has been received */
static unsigned recv_stat[XFS_MSG_COUNT];
static char *rcvfuncs_name[] =
{
"version",
"wakeup",
"getroot",
"installroot",
"getnode",
"installnode",
"getattr",
"installattr",
"getdata",
"installdata",
"inactivenode",
"invalidnode",
"open",
"put_data",
"put_attr",
"create",
"mkdir",
"link",
"symlink",
"remove",
"rmdir",
"rename",
"pioctl",
"wakeup_data",
"updatefid",
"advlock",
"gc nodes"
};
/*
* A interface for the userland to talk the kernel and recv
* back a integer. For larger messages implement a simularfunction
* that uses the `wakeup_data' message.
*/
int
xfs_message_rpc (int fd, struct xfs_message_header *h, u_int size)
{
int ret;
ret = xfs_message_send (fd, h, size);
if (ret)
return ret;
return xfs_message_sleep (h->sequence_num);
}
/*
* Try to probe the version on `fd', returning the version.
*/
static int
xfs_send_message_version (int fd)
{
struct xfs_message_version msg;
int ret;
msg.header.opcode = XFS_MSG_VERSION;
arla_warnx (ADEBMSG, "sending version");
ret = xfs_message_rpc (fd, (struct xfs_message_header *)&msg,
sizeof(msg));
return ret;
}
/*
* Probe for version on `fd'. Fail if != version
*/
void
xfs_probe_version (int fd, int version)
{
int ret = xfs_send_message_version (fd);
if (ret != version)
arla_errx (1, ADEBERROR,
"Wrong version of xfs. Please {up,down}grade to %d",
version);
}
/*
* Send `num' `fids' to xfs on `fd' as proposed gc-able fids
* If `num' is 0 xfs should gc everything gc:able.
*/
/* XXX VenusFid is wrong here */
void
xfs_send_message_gc_nodes (int fd, int num, VenusFid *fids)
{
struct xfs_message_gc_nodes msg;
int i;
arla_warnx (ADEBMSG,
"xfs_send_message_gc_nodes sending gc: num = %d", num);
if (num > XFS_GC_NODES_MAX_HANDLE)
num = XFS_GC_NODES_MAX_HANDLE;
msg.header.opcode = XFS_MSG_GC_NODES;
msg.len = num;
for (i = 0; i < num; i++)
memcpy (&msg.handle[i], &fids[i], sizeof(*fids));
xfs_message_send (fd, (struct xfs_message_header *)&msg,
sizeof(msg));
}
/*
* Init the xfs message passing things.
*/
void
xfs_message_init (void)
{
unsigned i;
seqnums = (u_int *)malloc (sizeof (*seqnums) * getdtablesize ());
if (seqnums == NULL)
arla_err (1, ADEBERROR, errno, "xfs_message_init: malloc");
for (i = 0; i < getdtablesize (); ++i)
seqnums[i] = 0;
sleepers = listnew ();
if (sleepers == NULL)
arla_err (1, ADEBERROR, errno, "xfs_message_init: listnew");
assert (sizeof(rcvfuncs_name) / sizeof(*rcvfuncs_name) == XFS_MSG_COUNT);
}
/*
* Go to entry in jump-table depending on entry.
*/
int
xfs_message_receive (int fd, struct xfs_message_header *h, u_int size)
{
unsigned opcode = h->opcode;
if (opcode >= XFS_MSG_COUNT || rcvfuncs[opcode] == NULL ) {
arla_warnx (ADEBMSG, "Bad message opcode = %u", opcode);
return -1;
}
++recv_stat[opcode];
arla_warnx (ADEBMSG, "Rec message: opcode = %u (%s), size = %u",
opcode, rcvfuncs_name[opcode], h->size);
return (*rcvfuncs[opcode])(fd, h, size);
}
/*
* Send a message to the kernel module.
*/
int
xfs_message_send (int fd, struct xfs_message_header *h, u_int size)
{
unsigned opcode = h->opcode;
int ret;
h->size = size;
h->sequence_num = seqnums[fd]++;
if (opcode >= XFS_MSG_COUNT) {
arla_warnx (ADEBMSG, "Bad message opcode = %u", opcode);
return -1;
}
++sent_stat[opcode];
arla_warnx (ADEBMSG, "Send message: opcode = %u (%s), size = %u",
opcode, rcvfuncs_name[opcode], h->size);
ret = kern_write (fd, h, size);
if (ret != size) {
arla_warn (ADEBMSG, errno, "xfs_message_send: write");
return errno;
} else
return 0;
}
/*
* This code can only wake up message of type `xfs_message_wakeup'
*/
int
xfs_message_wakeup (int fd, struct xfs_message_wakeup *h, u_int size)
{
Listitem *i, *next;
struct xfs_message_wakeup *w;
assert (sizeof(*w) >= size);
for (i = listhead (sleepers); i; i = next) {
next = listnext (sleepers, i);
w = (struct xfs_message_wakeup *)listdata(i);
if (w->header.sequence_num == h->sleepers_sequence_num) {
listdel (sleepers, i);
memcpy (w, h, size);
LWP_SignalProcess ((char *)w);
break;
}
}
if (i == NULL)
arla_warnx (ADEBWARN, "xfs_message_wakeup: no message to wakeup!");
return 0;
}
/*
* The middle and last part of the xfs_message_rpc.
*/
int
xfs_message_sleep (u_int seqnum)
{
struct xfs_message_wakeup h;
h.header.sequence_num = seqnum;
listaddtail (sleepers, &h);
LWP_WaitProcess ((char *)&h);
return h.error;
}
/*
* Wake up a sleeping kernel-thread that sleeps on `seqnum'
* and pass on `error' as an error the thread.
*/
int
xfs_send_message_wakeup (int fd, u_int seqnum, int error)
{
struct xfs_message_wakeup msg;
msg.header.opcode = XFS_MSG_WAKEUP;
msg.sleepers_sequence_num = seqnum;
msg.error = error;
arla_warnx (ADEBMSG, "sending wakeup: seq = %u, error = %d",
seqnum, error);
return xfs_message_send (fd, (struct xfs_message_header *)&msg,
sizeof(msg));
}
/*
* Wake-up a kernel-thread with `seqnum', and pass on `error'
* ad return value. Add also a data blob for gerneric use.
*/
int
xfs_send_message_wakeup_data (int fd, u_int seqnum, int error,
void *data, int size)
{
struct xfs_message_wakeup_data msg;
msg.header.opcode = XFS_MSG_WAKEUP_DATA;
msg.sleepers_sequence_num = seqnum;
msg.error = error;
arla_warnx (ADEBMSG,
"sending wakeup: seq = %u, error = %d", seqnum, error);
if (sizeof(msg) >= size && size != 0) {
memcpy(msg.msg, data, size);
}
msg.len = size;
return xfs_message_send (fd, (struct xfs_message_header *)&msg,
sizeof(msg));
}
/*
*
*/
struct write_buf {
unsigned char buf[MAX_XMSG_SIZE];
size_t len;
};
/*
* Return 1 it buf is full, 0 if it's not.
*/
static int
add_new_msg (int fd,
struct xfs_message_header *h, size_t size,
struct write_buf *buf)
{
/* align on 8 byte boundery */
if (size > sizeof (buf->buf) - buf->len)
return 1;
h->sequence_num = seqnums[fd]++;
h->size = (size + 8) & ~ 7;
assert (h->opcode >= 0 && h->opcode < XFS_MSG_COUNT);
++sent_stat[h->opcode];
arla_warnx (ADEBMSG, "Multi-send: opcode = %u (%s), size = %u",
h->opcode, rcvfuncs_name[h->opcode], h->size);
memcpy (buf->buf + buf->len, h, size);
memset (buf->buf + buf->len + size, 0, h->size - size);
buf->len += h->size;
return 0;
}
/*
* Blast of a `buf' to `fd'.
*/
static int
send_msg (int fd, struct write_buf *buf)
{
int ret;
if (buf->len == 0)
return 0;
ret = kern_write (fd, buf->buf, buf->len);
if (ret != buf->len) {
arla_warn (ADEBMSG, errno,
"send_msg: write");
buf->len = 0;
return errno;
}
buf->len = 0;
return 0;
}
/*
*
*/
int
xfs_send_message_vmultiple (int fd,
va_list args)
{
struct xfs_message_header *h;
struct write_buf *buf;
size_t size;
int ret;
buf = malloc (sizeof (*buf));
if (buf == NULL)
return ENOMEM;
h = va_arg (args, struct xfs_message_header *);
size = va_arg (args, size_t);
buf->len = 0;
while (h != NULL) {
if (add_new_msg (fd, h, size, buf)) {
ret = send_msg (fd, buf);
if (ret) {
free (buf);
return ret;
}
if (add_new_msg (fd, h, size, buf))
arla_warnx (ADEBERROR,
"xfs_send_message_vmultiple: "
"add_new_msg failed");
}
h = va_arg (args, struct xfs_message_header *);
size = va_arg (args, size_t);
}
ret = send_msg (fd, buf);
free (buf);
return ret;
}
/*
* Same as above but diffrent.
*/
int
xfs_send_message_multiple (int fd,
...)
{
va_list args;
int ret;
va_start (args, fd);
ret = xfs_send_message_vmultiple (fd, args);
va_end (args);
return ret;
}
/*
* Almost same as above but diffrent.
*/
int
xfs_send_message_multiple_list (int fd,
struct xfs_message_header *h,
size_t size,
u_int num)
{
struct write_buf *buf;
int ret = 0;
buf = malloc (sizeof (*buf));
if (buf == NULL)
return ENOMEM;
buf->len = 0;
while (num && ret == 0) {
if (add_new_msg (fd, h, size, buf)) {
ret = send_msg (fd, buf);
if (add_new_msg (fd, h, size, buf))
arla_warnx (ADEBERROR,
"xfs_send_message_multiple_list: "
"add_new_msg failed");
}
h = (struct xfs_message_header *) (((unsigned char *)h) + size);
num--;
}
if (ret) {
free (buf);
return ret;
}
ret = send_msg (fd, buf);
free (buf);
return ret;
}
/*
* Send multiple message to the kernel (for performace/simple resons)
*/
int
xfs_send_message_wakeup_vmultiple (int fd,
u_int seqnum,
int error,
va_list args)
{
struct xfs_message_wakeup msg;
int ret;
ret = xfs_send_message_vmultiple (fd, args);
if (ret)
arla_warnx (ADEBERROR, "xfs_send_message_wakeup_vmultiple: "
"failed sending messages with error %d", ret);
msg.header.opcode = XFS_MSG_WAKEUP;
msg.header.size = sizeof(msg);
msg.header.sequence_num = seqnums[fd]++;
msg.sleepers_sequence_num = seqnum;
msg.error = error;
++sent_stat[XFS_MSG_WAKEUP];
arla_warnx (ADEBMSG, "multi-sending wakeup: seq = %u, error = %d",
seqnum, error);
ret = kern_write (fd, &msg, sizeof(msg));
if (ret != sizeof(msg)) {
arla_warn (ADEBMSG, errno,
"xfs_send_message_wakeup_vmultiple: writev");
return -1;
}
return 0;
}
/*
* Same as above but diffrent.
*/
int
xfs_send_message_wakeup_multiple (int fd,
u_int seqnum,
int error,
...)
{
va_list args;
int ret;
va_start (args, error);
ret = xfs_send_message_wakeup_vmultiple (fd, seqnum, error, args);
va_end (args);
return ret;
}
|